From 411ca69400e670a3aafd980463cc5537c3f83aaa Mon Sep 17 00:00:00 2001 From: prssanna Date: Mon, 27 Jan 2020 17:36:47 +0530 Subject: [PATCH 01/22] fix: pass doc as dict to safe_eval --- frappe/email/doctype/notification/notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index d40f64b8bd..5343b557da 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -327,4 +327,4 @@ def evaluate_alert(doc, alert, event): frappe.utils.get_link_to_form('Error Log', error_log.name)))) def get_context(doc): - return {"doc": doc, "nowdate": nowdate, "frappe.utils": frappe.utils} + return {"doc": doc.as_dict(), "nowdate": nowdate, "frappe.utils": frappe.utils} From 4344348a94b438dbb1d6fe3c303bec2e44774264 Mon Sep 17 00:00:00 2001 From: prssanna Date: Tue, 28 Jan 2020 18:07:29 +0530 Subject: [PATCH 02/22] fix: don't return doc as dict in get_context --- frappe/email/doctype/notification/notification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index 5343b557da..25b299a79b 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -67,7 +67,7 @@ def get_context(context): temp_doc = frappe.new_doc(self.document_type) if self.condition: try: - frappe.safe_eval(self.condition, None, get_context(temp_doc)) + frappe.safe_eval(self.condition, None, {'doc': temp_doc.as_dict()}) except Exception: frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) @@ -327,4 +327,4 @@ def evaluate_alert(doc, alert, event): frappe.utils.get_link_to_form('Error Log', error_log.name)))) def get_context(doc): - return {"doc": doc.as_dict(), "nowdate": nowdate, "frappe.utils": frappe.utils} + return {"doc": doc, "nowdate": nowdate, "frappe.utils": frappe.utils} From dee4a7336c56a36818ce79b48eff787bb66b7ae0 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Wed, 29 Jan 2020 15:22:35 +0530 Subject: [PATCH 03/22] fix(translations): Incorrect syntax --- frappe/__init__.py | 2 +- .../automation/doctype/assignment_rule/assignment_rule.py | 2 +- frappe/client.py | 2 +- .../report/addresses_and_contacts/addresses_and_contacts.py | 2 +- frappe/core/doctype/data_import/importer.py | 2 +- frappe/core/doctype/doctype/doctype.py | 2 +- frappe/core/doctype/user/user.py | 2 +- frappe/core/doctype/user_permission/user_permission.py | 2 +- frappe/desk/doctype/todo/todo.py | 2 +- frappe/desk/form/assign_to.py | 2 +- frappe/desk/page/setup_wizard/setup_wizard.py | 3 ++- frappe/desk/query_report.py | 2 +- frappe/email/doctype/auto_email_report/auto_email_report.py | 4 ++-- frappe/email/doctype/email_account/email_account.py | 6 +++--- frappe/integrations/doctype/oauth_client/oauth_client.py | 2 +- frappe/integrations/utils.py | 4 ++-- frappe/model/base_document.py | 2 +- frappe/model/document.py | 4 ++-- frappe/model/workflow.py | 2 +- frappe/public/js/frappe/desk.js | 2 +- frappe/share.py | 2 +- frappe/templates/emails/auto_email_report.html | 2 +- frappe/utils/change_log.py | 2 +- frappe/workflow/doctype/workflow_action/workflow_action.py | 6 +++--- frappe/www/confirm_workflow_action.html | 2 +- frappe/www/third_party_apps.html | 2 +- 26 files changed, 34 insertions(+), 33 deletions(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 01187541d3..12e5204001 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -544,7 +544,7 @@ def only_for(roles, message=False): myroles = set(get_roles()) if not roles.intersection(myroles): if message: - msgprint(_('Only for {}'.format(', '.join(roles)))) + msgprint(_('Only for {}').format(', '.join(roles))) raise PermissionError def get_domain_data(module): diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.py b/frappe/automation/doctype/assignment_rule/assignment_rule.py index 55792b2648..5d8dab90ce 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.py +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.py @@ -16,7 +16,7 @@ class AssignmentRule(Document): assignment_days = self.get_assignment_days() if not len(set(assignment_days)) == len(assignment_days): repeated_days = get_repeated(assignment_days) - frappe.throw(_("Assignment Day {0} has been repeated.".format(frappe.bold(repeated_days)))) + frappe.throw(_("Assignment Day {0} has been repeated.").format(frappe.bold(repeated_days))) def on_update(self): # pylint: disable=no-self-use frappe.cache_manager.clear_doctype_map('Assignment Rule', self.name) diff --git a/frappe/client.py b/frappe/client.py index 9f42869347..045e28dd8f 100644 --- a/frappe/client.py +++ b/frappe/client.py @@ -70,7 +70,7 @@ def get_value(doctype, fieldname, filters=None, as_dict=True, debug=False, paren check_parent_permission(parent, doctype) if not frappe.has_permission(doctype): - frappe.throw(_("No permission for {0}".format(doctype)), frappe.PermissionError) + frappe.throw(_("No permission for {0}").format(doctype), frappe.PermissionError) filters = get_safe_filters(filters) diff --git a/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py b/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py index ba0ecd41d1..1b3982f251 100644 --- a/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py +++ b/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py @@ -95,7 +95,7 @@ def get_reference_details(reference_doctype, doctype, reference_list, reference_ temp_records.append(d[1:]) if not reference_list: - frappe.throw(_("No records present in {0}".format(reference_doctype))) + frappe.throw(_("No records present in {0}").format(reference_doctype)) reference_details[reference_list[0]][frappe.scrub(doctype)] = temp_records return reference_details diff --git a/frappe/core/doctype/data_import/importer.py b/frappe/core/doctype/data_import/importer.py index f3c23cbfea..b6d410d072 100644 --- a/frappe/core/doctype/data_import/importer.py +++ b/frappe/core/doctype/data_import/importer.py @@ -222,7 +222,7 @@ def upload(rows = None, submit_after_import=None, ignore_encoding_errors=False, if (autoname not in doc) or (not doc[autoname]): from frappe.model.base_document import get_controller if not hasattr(get_controller(doctype), "autoname"): - frappe.throw(_("{0} is a mandatory field".format(autoname))) + frappe.throw(_("{0} is a mandatory field").format(autoname)) return True users = frappe.db.sql_list("select name from tabUser") diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index de8221da29..da1b184cc1 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -247,7 +247,7 @@ class DocType(Document): if autoname and autoname.startswith('field:'): field = autoname.split(":")[1] if not field or field not in [ df.fieldname for df in self.fields ]: - frappe.throw(_("Invalid fieldname '{0}' in autoname".format(field))) + frappe.throw(_("Invalid fieldname '{0}' in autoname").format(field)) else: for df in self.fields: if df.fieldname == field: diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index 5dfa3b0ace..a4f546f701 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -262,7 +262,7 @@ class User(Document): if not subject: site_name = frappe.db.get_default('site_name') or frappe.get_conf().get("site_name") if site_name: - subject = _("Welcome to {0}".format(site_name)) + subject = _("Welcome to {0}").format(site_name) else: subject = _("Complete Registration") diff --git a/frappe/core/doctype/user_permission/user_permission.py b/frappe/core/doctype/user_permission/user_permission.py index 7be915cbec..48d4fcb5d4 100644 --- a/frappe/core/doctype/user_permission/user_permission.py +++ b/frappe/core/doctype/user_permission/user_permission.py @@ -53,7 +53,7 @@ class UserPermission(Document): }, limit=1) if overlap_exists: ref_link = frappe.get_desk_link(self.doctype, overlap_exists[0].name) - frappe.throw(_("{0} has already assigned default value for {1}.".format(ref_link, self.allow))) + frappe.throw(_("{0} has already assigned default value for {1}.").format(ref_link, self.allow)) @frappe.whitelist() def get_user_permissions(user=None): diff --git a/frappe/desk/doctype/todo/todo.py b/frappe/desk/doctype/todo/todo.py index 5d04f412c0..6cd7c68368 100644 --- a/frappe/desk/doctype/todo/todo.py +++ b/frappe/desk/doctype/todo/todo.py @@ -31,7 +31,7 @@ class ToDo(Document): # NOTE the previous value is only available in validate method if self.get_db_value("status") != self.status: self._assignment = { - "text": frappe._("Assignment closed by {0}".format(get_fullname(frappe.session.user))), + "text": frappe._("Assignment closed by {0}").format(get_fullname(frappe.session.user)), "comment_type": "Assignment Completed" } diff --git a/frappe/desk/form/assign_to.py b/frappe/desk/form/assign_to.py index 9714f31d1f..76c7caa63d 100644 --- a/frappe/desk/form/assign_to.py +++ b/frappe/desk/form/assign_to.py @@ -51,7 +51,7 @@ def add(args=None): from frappe.utils import nowdate if not args.get('description'): - args['description'] = _('Assignment for {0} {1}'.format(args['doctype'], args['name'])) + args['description'] = _('Assignment for {0} {1}').format(args['doctype'], args['name']) d = frappe.get_doc({ "doctype":"ToDo", diff --git a/frappe/desk/page/setup_wizard/setup_wizard.py b/frappe/desk/page/setup_wizard/setup_wizard.py index 43d4e8dde4..b297d13bb2 100755 --- a/frappe/desk/page/setup_wizard/setup_wizard.py +++ b/frappe/desk/page/setup_wizard/setup_wizard.py @@ -69,7 +69,8 @@ def setup_complete(args): for task in stage.get('tasks'): current_task = task task.get('fn')(task.get('args')) - except Exception: + except Exception as e: + print(e) handle_setup_exception(args) return {'status': 'fail', 'fail': current_task.get('fail_msg')} else: diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 99e3c2e96f..2c5025b1cf 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -444,7 +444,7 @@ def save_report(reference_report, report_name, columns): 'report_type': 'Custom Report', 'reference_report': reference_report }).insert(ignore_permissions = True) - frappe.msgprint(_("{0} saved successfully".format(new_report.name))) + frappe.msgprint(_("{0} saved successfully").format(new_report.name)) return new_report.name diff --git a/frappe/email/doctype/auto_email_report/auto_email_report.py b/frappe/email/doctype/auto_email_report/auto_email_report.py index fcf32640fc..c729795c82 100644 --- a/frappe/email/doctype/auto_email_report/auto_email_report.py +++ b/frappe/email/doctype/auto_email_report/auto_email_report.py @@ -53,8 +53,8 @@ class AutoEmailReport(Document): """ check if user has select correct report format """ valid_report_formats = ["HTML", "XLSX", "CSV"] if self.format not in valid_report_formats: - frappe.throw(_("%s is not a valid report format. Report format should \ - one of the following %s"%(frappe.bold(self.format), frappe.bold(", ".join(valid_report_formats))))) + frappe.throw(_("{0} is not a valid report format. Report format should one of the following {1}" \ + .format(frappe.bold(self.format), frappe.bold(", ".join(valid_report_formats))))) def get_report_content(self): '''Returns file in for the report in given format''' diff --git a/frappe/email/doctype/email_account/email_account.py b/frappe/email/doctype/email_account/email_account.py index 41b47a1fa2..f3eb2188b7 100755 --- a/frappe/email/doctype/email_account/email_account.py +++ b/frappe/email/doctype/email_account/email_account.py @@ -52,8 +52,8 @@ class EmailAccount(Document): "name": ("!=", self.name) }) if duplicate_email_account: - frappe.throw(_("Email ID must be unique, Email Account already exists \ - for {0}".format(frappe.bold(self.email_id)))) + frappe.throw(_("Email ID must be unique, Email Account already exists for {0}") \ + .format(frappe.bold(self.email_id))) if frappe.local.flags.in_patch or frappe.local.flags.in_test: return @@ -175,7 +175,7 @@ class EmailAccount(Document): # if called via self.receive and it leads to authentication error, disable incoming # and send email to system manager self.handle_incoming_connect_error( - description=_('Authentication failed while receiving emails from Email Account {0}. Message from server: {1}'.format(self.name, e.message)) + description=_('Authentication failed while receiving emails from Email Account {0}. Message from server: {1}').format(self.name, e.message) ) return None diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.py b/frappe/integrations/doctype/oauth_client/oauth_client.py index 2663623bfa..02f5041dfb 100644 --- a/frappe/integrations/doctype/oauth_client/oauth_client.py +++ b/frappe/integrations/doctype/oauth_client/oauth_client.py @@ -16,4 +16,4 @@ class OAuthClient(Document): def validate_grant_and_response(self): if self.grant_type == "Authorization Code" and self.response_type != "Code" or \ self.grant_type == "Implicit" and self.response_type != "Token": - frappe.throw(_("Combination of Grant Type ({0}) and Response Type ({1}) not allowed".format(self.grant_type, self.response_type))) + frappe.throw(_("Combination of Grant Type ({0}) and Response Type ({1}) not allowed").format(self.grant_type, self.response_type)) diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py index ca4c7bc3cb..811b007131 100644 --- a/frappe/integrations/utils.py +++ b/frappe/integrations/utils.py @@ -77,12 +77,12 @@ def get_payment_gateway_controller(payment_gateway): try: return frappe.get_doc("{0} Settings".format(payment_gateway)) except Exception: - frappe.throw(_("{0} Settings not found".format(payment_gateway))) + frappe.throw(_("{0} Settings not found").format(payment_gateway)) else: try: return frappe.get_doc(gateway.gateway_settings, gateway.gateway_controller) except Exception: - frappe.throw(_("{0} Settings not found".format(payment_gateway))) + frappe.throw(_("{0} Settings not found").format(payment_gateway)) @frappe.whitelist(allow_guest=True, xss_safe=True) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 28ac740580..5ab31cdf66 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -392,7 +392,7 @@ class BaseDocument(object): if df: label = df.label - frappe.msgprint(_("{0} must be unique".format(label or fieldname))) + frappe.msgprint(_("{0} must be unique").format(label or fieldname)) # this is used to preserve traceback raise frappe.UniqueValidationError(self.doctype, self.name, e) diff --git a/frappe/model/document.py b/frappe/model/document.py index 134cce3b75..68a65e0401 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -1115,9 +1115,9 @@ class Document(BaseDocument): label = doc.meta.get_label(fieldname) condition_str = error_condition_map.get(condition, condition) if doc.parentfield: - msg = _("Incorrect value in row {0}: {1} must be {2} {3}".format(doc.idx, label, condition_str, val2)) + msg = _("Incorrect value in row {0}: {1} must be {2} {3}").format(doc.idx, label, condition_str, val2) else: - msg = _("Incorrect value: {0} must be {1} {2}".format(label, condition_str, val2)) + msg = _("Incorrect value: {0} must be {1} {2}").format(label, condition_str, val2) # raise passed exception or True msgprint(msg, raise_exception=raise_exception or True) diff --git a/frappe/model/workflow.py b/frappe/model/workflow.py index 548d713e6f..647812014a 100644 --- a/frappe/model/workflow.py +++ b/frappe/model/workflow.py @@ -139,7 +139,7 @@ def validate_workflow(doc): state_row = [d for d in workflow.states if d.state == current_state] if not state_row: - frappe.throw(_('{0} is not a valid Workflow State. Please update your Workflow and try again.'.format(frappe.bold(current_state)))) + frappe.throw(_('{0} is not a valid Workflow State. Please update your Workflow and try again.').format(frappe.bold(current_state))) state_row = state_row[0] # if transitioning, check if user is allowed to transition diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index 5e642f907b..6a9b3a0b09 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -176,7 +176,7 @@ frappe.Application = Class.extend({ email_password_prompt: function(email_account,user,i) { var me = this; var d = new frappe.ui.Dialog({ - title: __('Email Account setup please enter your password for: '+email_account[i]["email_id"]), + title: __('Email Account setup please enter your password for: {0}', [email_account[i]["email_id"]]), fields: [ { 'fieldname': 'password', 'fieldtype': 'Password', diff --git a/frappe/share.py b/frappe/share.py index 03311bed4a..497e2056d5 100644 --- a/frappe/share.py +++ b/frappe/share.py @@ -145,7 +145,7 @@ def get_share_name(doctype, name, user, everyone): def check_share_permission(doctype, name): """Check if the user can share with other users""" if not frappe.has_permission(doctype, ptype="share", doc=name): - frappe.throw(_("No permission to {0} {1} {2}".format("share", doctype, name)), frappe.PermissionError) + frappe.throw(_("No permission to {0} {1} {2}").format("share", doctype, name), frappe.PermissionError) def notify_assignment(shared_by, doctype, doc_name, everyone, notify=0): diff --git a/frappe/templates/emails/auto_email_report.html b/frappe/templates/emails/auto_email_report.html index a658c988a9..129fb75cbd 100644 --- a/frappe/templates/emails/auto_email_report.html +++ b/frappe/templates/emails/auto_email_report.html @@ -54,7 +54,7 @@

- {{ _("This report was generated on {0}".format(date_time)) }} + {{ _("This report was generated on {0}").format(date_time) }}

{{ _("View report in your browser") }}: diff --git a/frappe/utils/change_log.py b/frappe/utils/change_log.py index 39be5db5c8..c94a247796 100644 --- a/frappe/utils/change_log.py +++ b/frappe/utils/change_log.py @@ -240,7 +240,7 @@ def show_update_popup(): title = app.title ) if release_links: - update_message += _("New {} releases for the following apps are available".format(update_type)) + ":

{}".format(release_links) + update_message += _("New {} releases for the following apps are available").format(update_type) + ":

{}".format(release_links) if update_message: frappe.msgprint(update_message, title=_("New updates are available"), indicator='green') diff --git a/frappe/workflow/doctype/workflow_action/workflow_action.py b/frappe/workflow/doctype/workflow_action/workflow_action.py index f32b1dfc03..ecccce7162 100644 --- a/frappe/workflow/doctype/workflow_action/workflow_action.py +++ b/frappe/workflow/doctype/workflow_action/workflow_action.py @@ -125,12 +125,12 @@ def return_action_confirmation_page(doc, action, action_link, alert_doc_change=F def return_link_expired_page(doc, doc_workflow_state): frappe.respond_as_web_page(_("Link Expired"), - _("Document {0} has been set to state {1} by {2}" + _("Document {0} has been set to state {1} by {2}") .format( frappe.bold(doc.get('name')), frappe.bold(doc_workflow_state), frappe.bold(frappe.get_value('User', doc.get("modified_by"), 'full_name')) - )), indicator_color='blue') + ), indicator_color='blue') def clear_old_workflow_actions(doc, user=None): user = user if user else frappe.session.user @@ -276,7 +276,7 @@ def get_common_email_args(doc): response = frappe.render_template(email_template.response, vars(doc)) else: subject = _('Workflow Action') - response = _('{0}: {1}'.format(doctype, docname)) + response = _('{0}: {1}').format(doctype, docname) common_args = { 'template': 'workflow_action', diff --git a/frappe/www/confirm_workflow_action.html b/frappe/www/confirm_workflow_action.html index 5f30a21676..5e6d97c153 100644 --- a/frappe/www/confirm_workflow_action.html +++ b/frappe/www/confirm_workflow_action.html @@ -1,7 +1,7 @@ {% extends "frappe/www/message.html" %} {% block message_body %}

- {{ _("Please confirm your action to {0} this document.".format(action)) }} + {{ _("Please confirm your action to {0} this document.").format(action) }}

{% if alert_doc_change %}

diff --git a/frappe/www/third_party_apps.html b/frappe/www/third_party_apps.html index b4eb6036de..d2a2e9d266 100644 --- a/frappe/www/third_party_apps.html +++ b/frappe/www/third_party_apps.html @@ -24,7 +24,7 @@

-
{{ _("This will log out {0} from all other devices".format(app.app_name)) }}
+
{{ _("This will log out {0} from all other devices").format(app.app_name) }}
From 51bae0df50bc896d3a2843a9618c0fc930b6477f Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Wed, 29 Jan 2020 15:35:28 +0530 Subject: [PATCH 04/22] fix(translations): Incorrect syntax --- frappe/database/mariadb/schema.py | 4 ++-- frappe/email/doctype/notification/notification.py | 4 ++-- frappe/workflow/doctype/workflow_action/workflow_action.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frappe/database/mariadb/schema.py b/frappe/database/mariadb/schema.py index 7fd87ba4b0..e806e8e415 100644 --- a/frappe/database/mariadb/schema.py +++ b/frappe/database/mariadb/schema.py @@ -80,7 +80,7 @@ class MariaDBTable(DBTable): frappe.throw(str(e)) elif e.args[0]==1062: fieldname = str(e).split("'")[-2] - frappe.throw(_("{0} field cannot be set as unique in {1}, as there are non-unique existing values".format( - fieldname, self.table_name))) + frappe.throw(_("{0} field cannot be set as unique in {1}, as there are non-unique existing values").format( + fieldname, self.table_name)) else: raise e diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index d40f64b8bd..0b91ed44c4 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -323,8 +323,8 @@ def evaluate_alert(doc, alert, event): frappe.throw(_("Error while evaluating Notification {0}. Please fix your template.").format(alert)) except Exception as e: error_log = frappe.log_error(message=frappe.get_traceback(), title=str(e)) - frappe.throw(_("Error in Notification: {}".format( - frappe.utils.get_link_to_form('Error Log', error_log.name)))) + frappe.throw(_("Error in Notification: {}").format( + frappe.utils.get_link_to_form('Error Log', error_log.name))) def get_context(doc): return {"doc": doc, "nowdate": nowdate, "frappe.utils": frappe.utils} diff --git a/frappe/workflow/doctype/workflow_action/workflow_action.py b/frappe/workflow/doctype/workflow_action/workflow_action.py index ecccce7162..1503df38a8 100644 --- a/frappe/workflow/doctype/workflow_action/workflow_action.py +++ b/frappe/workflow/doctype/workflow_action/workflow_action.py @@ -99,11 +99,11 @@ def confirm_action(doctype, docname, user, action): def return_success_page(doc): frappe.respond_as_web_page(_("Success"), - _("{0}: {1} is set to state {2}".format( + _("{0}: {1} is set to state {2}").format( doc.get('doctype'), frappe.bold(doc.get('name')), frappe.bold(get_doc_workflow_state(doc)) - )), indicator_color='green') + ), indicator_color='green') def return_action_confirmation_page(doc, action, action_link, alert_doc_change=False): template_params = { From 47de77b2b128c10c9c8690e7799a734a58567fc9 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 30 Jan 2020 12:23:14 +0530 Subject: [PATCH 05/22] fix: Undo print statement --- frappe/desk/page/setup_wizard/setup_wizard.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappe/desk/page/setup_wizard/setup_wizard.py b/frappe/desk/page/setup_wizard/setup_wizard.py index b297d13bb2..43d4e8dde4 100755 --- a/frappe/desk/page/setup_wizard/setup_wizard.py +++ b/frappe/desk/page/setup_wizard/setup_wizard.py @@ -69,8 +69,7 @@ def setup_complete(args): for task in stage.get('tasks'): current_task = task task.get('fn')(task.get('args')) - except Exception as e: - print(e) + except Exception: handle_setup_exception(args) return {'status': 'fail', 'fail': current_task.get('fail_msg')} else: From 41b0cf87e537d529e177379d2fdeaebfafb65a09 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 30 Jan 2020 12:31:04 +0530 Subject: [PATCH 06/22] fix: Move .format out of translation method --- frappe/email/doctype/auto_email_report/auto_email_report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/email/doctype/auto_email_report/auto_email_report.py b/frappe/email/doctype/auto_email_report/auto_email_report.py index c729795c82..cb00614019 100644 --- a/frappe/email/doctype/auto_email_report/auto_email_report.py +++ b/frappe/email/doctype/auto_email_report/auto_email_report.py @@ -53,8 +53,8 @@ class AutoEmailReport(Document): """ check if user has select correct report format """ valid_report_formats = ["HTML", "XLSX", "CSV"] if self.format not in valid_report_formats: - frappe.throw(_("{0} is not a valid report format. Report format should one of the following {1}" \ - .format(frappe.bold(self.format), frappe.bold(", ".join(valid_report_formats))))) + frappe.throw(_("{0} is not a valid report format. Report format should one of the following {1}") + .format(frappe.bold(self.format), frappe.bold(", ".join(valid_report_formats)))) def get_report_content(self): '''Returns file in for the report in given format''' From 28f541d3a66ca1d62bc03e36e15a96df9f6e34c5 Mon Sep 17 00:00:00 2001 From: prssanna Date: Thu, 30 Jan 2020 12:39:12 +0530 Subject: [PATCH 07/22] fix: get_week_ending returns wrong date --- frappe/desk/doctype/dashboard_chart/dashboard_chart.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index 6dec12efc5..63dbb1f8e0 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -232,8 +232,11 @@ def get_week_ending(date): # for 2019 it is Monday week_of_the_year = int(date.strftime('%U')) + + if week_of_the_year == 52: + date = add_to_date(date, years=1) # first day of next week - date = add_to_date('{}-01-01'.format(date.year), weeks = week_of_the_year + 1) + date = add_to_date('{}-01-01'.format(date.year), weeks = (week_of_the_year + 1)%52) # last day of this week return add_to_date(date, days=-1) From 2f32097c62ebd5eb04b4fb0616137ee6983078b8 Mon Sep 17 00:00:00 2001 From: prssanna Date: Thu, 30 Jan 2020 12:48:13 +0530 Subject: [PATCH 08/22] fix: pass doc.as_dict to get_context --- frappe/email/doctype/notification/notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index 25b299a79b..8155790adb 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -67,7 +67,7 @@ def get_context(context): temp_doc = frappe.new_doc(self.document_type) if self.condition: try: - frappe.safe_eval(self.condition, None, {'doc': temp_doc.as_dict()}) + frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) except Exception: frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) From 20785737d94ca91dfaedb2097b9e4140a4b4909d Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Thu, 30 Jan 2020 19:07:23 +0530 Subject: [PATCH 09/22] feat(translation): add Filipino language --- frappe/geo/languages.json | 4 ++++ frappe/translations/fil.csv | 0 2 files changed, 4 insertions(+) create mode 100644 frappe/translations/fil.csv diff --git a/frappe/geo/languages.json b/frappe/geo/languages.json index 88f863136b..c0f09020d4 100644 --- a/frappe/geo/languages.json +++ b/frappe/geo/languages.json @@ -119,6 +119,10 @@ "code": "fi", "name": "Suomi" }, + { + "code": "fil", + "name": "Filipino" + }, { "code": "fr", "name": "Fran\u00e7ais" diff --git a/frappe/translations/fil.csv b/frappe/translations/fil.csv new file mode 100644 index 0000000000..e69de29bb2 From 5a276efa1067e424088c102eb23ee62eb827c563 Mon Sep 17 00:00:00 2001 From: gavin Date: Fri, 31 Jan 2020 07:06:51 +0530 Subject: [PATCH 10/22] docs: update discuss.frappe.io link in template (#9358) * chore(docs): updated templates * docs: update link for markdown compatibility --- .github/CONTRIBUTING.md | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/ISSUE_TEMPLATE/question-about-using-frappe.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8f300706b9..e1f16970fe 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -6,7 +6,7 @@ Feature requests are also a great way to take the product forward. New ideas can When you are raising an Issue, you should keep a few things in mind. Remember that the developer does not have access to your machine so you must give all the information you can while raising an Issue. If you are suggesting a feature, you should be very clear about what you want. -The Issue list is not the right place to ask a question or start a general discussion. If you want to do that , then the right place is the forum [https://discuss.frappe.io](https://discuss.frappe.io). +The Issue list is not the right place to ask a question or start a general discussion. If you want to do that , then the right place is the forum ~~~~ => [stackoverflow](https://stackoverflow.com/questions/tagged/frappe) tagged under `frappe`. ### Reply and Closing Policy diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 0935b4a73a..a1c4b0a633 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -8,7 +8,7 @@ labels: bug Welcome to the Frappe Framework issue tracker! Before creating an issue, please heed the following: 1. This tracker should only be used to report bugs and request features / enhancements to Frappe - - For questions and general support, use https://discuss.frappe.io + - For questions and general support, use https://stackoverflow.com/questions/tagged/frappe - For documentation issues, refer to https://frappe.io/docs/user/en or the developer cheetsheet https://github.com/frappe/frappe/wiki/Developer-Cheatsheet 2. Use the search function before creating a new issue. Duplicates will be closed and directed to the original discussion. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 1ddaa62f05..ed5e2169a3 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,7 +8,7 @@ labels: feature-request Welcome to the Frappe Framework issue tracker! Before creating an issue, please heed the following: 1. This tracker should only be used to report bugs and request features / enhancements to Frappe - - For questions and general support, refer to https://discuss.frappe.io + - For questions and general support, refer to https://stackoverflow.com/questions/tagged/frappe - For documentation issues, use https://frappe.io/docs/user/en or the developer cheetsheet https://github.com/frappe/frappe/wiki/Developer-Cheatsheet 2. Use the search function before creating a new issue. Duplicates will be closed and directed to the original discussion. diff --git a/.github/ISSUE_TEMPLATE/question-about-using-frappe.md b/.github/ISSUE_TEMPLATE/question-about-using-frappe.md index aedec5c51d..43d987ee2c 100644 --- a/.github/ISSUE_TEMPLATE/question-about-using-frappe.md +++ b/.github/ISSUE_TEMPLATE/question-about-using-frappe.md @@ -6,7 +6,7 @@ labels: invalid Please post on our forums: -for questions about using the `Frappe Framework`: https://discuss.frappe.io +for questions about using the `Frappe Framework`: ~~https://discuss.frappe.io~~ => [stackoverflow](https://stackoverflow.com/questions/tagged/frappe) tagged under `frappe` for questions about using `ERPNext`: https://discuss.erpnext.com From 132e1da8e13e55505872ce34b7de4baf5fec7880 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 31 Jan 2020 08:34:34 +0530 Subject: [PATCH 11/22] fix: change time_format modified by --- frappe/core/doctype/system_settings/system_settings.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index 41a5a377db..1fa05bd1c3 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -411,7 +411,8 @@ ], "icon": "fa fa-cog", "issingle": 1, - "modified": "2019-09-24 10:04:28.807388", + "links": [], + "modified": "2020-01-31 06:03:35.595384", "modified_by": "Administrator", "module": "Core", "name": "System Settings", @@ -429,4 +430,4 @@ "sort_field": "modified", "sort_order": "ASC", "track_changes": 1 -} +} \ No newline at end of file From 214a494a9d5735c45ff6aa3c8ca193e4132909a1 Mon Sep 17 00:00:00 2001 From: Snyk bot Date: Fri, 31 Jan 2020 05:59:31 +0100 Subject: [PATCH 12/22] fix: .snyk & package.json to reduce vulnerabilities (#9382) The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-LODASH-450202 --- .snyk | 5 ++++- package.json | 10 +++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.snyk b/.snyk index 09063530c7..8080ce9b22 100644 --- a/.snyk +++ b/.snyk @@ -1,5 +1,5 @@ # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. -version: v1.13.3 +version: v1.14.0 # ignores vulnerabilities until expiry date; change duration by modifying expiry date ignore: SNYK-JS-AWESOMPLETE-174474: @@ -15,3 +15,6 @@ patch: 'npm:extend:20180424': - superagent > extend: patched: '2019-05-09T10:14:19.246Z' + SNYK-JS-LODASH-450202: + - frappe-datatable > lodash: + patched: '2020-01-31T01:33:09.889Z' diff --git a/package.json b/package.json index e14045f862..9ae9d7c31b 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,9 @@ "production": "FRAPPE_ENV=production node rollup/build.js", "watch": "node rollup/watch.js", "cypress:run": "cypress run --record --key 4a48f41c-11b3-425b-aa88-c58048fa69eb", - "cypress:open": "cypress open" + "cypress:open": "cypress open", + "snyk-protect": "snyk protect", + "prepare": "yarn run snyk-protect" }, "repository": { "type": "git", @@ -43,7 +45,8 @@ "superagent": "^3.8.2", "touch": "^3.1.0", "vue": "^2.6.8", - "vue-router": "^2.0.0" + "vue-router": "^2.0.0", + "snyk": "^1.288.0" }, "devDependencies": { "babel-runtime": "^6.26.0", @@ -61,5 +64,6 @@ "rollup-plugin-terser": "^4.0.4", "rollup-plugin-vue": "4.2.0", "vue-template-compiler": "^2.6.8" - } + }, + "snyk": true } From 4dc2fb47b931dafec349714873843971ba284075 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal Date: Fri, 31 Jan 2020 14:40:13 +0530 Subject: [PATCH 13/22] fix: set initial auto repeat day count to max (#9387) --- frappe/automation/doctype/auto_repeat/auto_repeat.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 2d9428d1fe..48a556bb55 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -274,13 +274,11 @@ def get_next_schedule_date(schedule_date, frequency, start_date, repeat_on_day=N else: month_count = 0 - day_count = 0 + day_count = 31 if month_count and repeat_on_last_day: - next_date = get_next_date(start_date, month_count, 31) day_count = 31 next_date = get_next_date(start_date, month_count, day_count) elif month_count and repeat_on_day: - next_date = get_next_date(start_date, month_count, repeat_on_day) day_count = repeat_on_day next_date = get_next_date(start_date, month_count, day_count) elif month_count: From 1de92794afd81ca2446bed0fb593dbe07e90d06d Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Fri, 31 Jan 2020 15:00:46 +0530 Subject: [PATCH 14/22] fix: Send password notification email if password is not set (#9385) --- frappe/core/doctype/user/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index a4f546f701..23e41a3c0a 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -97,8 +97,8 @@ class User(Document): self.share_with_self() clear_notifications(user=self.name) frappe.clear_cache(user=self.name) + self.send_password_notification(self.__new_password) if self.__new_password: - self.send_password_notification(self.__new_password) self.reset_password_key = '' create_contact(self, ignore_mandatory=True) if self.name not in ('Administrator', 'Guest') and not self.user_image: From 9fe65cb8090e6a6dc29bfb0b999c915b53cc1130 Mon Sep 17 00:00:00 2001 From: Kyra Date: Fri, 31 Jan 2020 04:16:05 -0600 Subject: [PATCH 15/22] fix(sms_settings): add support for sending data as json (#9381) * Add support for sending JSON to SMS Settings Many SMS gateways expect data in raw JSON and do not accept plain form data. This change enables this by detecting a "Content-Type" header in the parameters with a value of "application/json", and in this case decoding the message text to unicode as expected by the `requests` module before passing the data to the `json` parameter. * Update frappe/core/doctype/sms_settings/sms_settings.py Co-Authored-By: Chinmay Pai * Update frappe/core/doctype/sms_settings/sms_settings.py Co-Authored-By: Chinmay Pai Co-authored-by: Chinmay Pai --- .../core/doctype/sms_settings/sms_settings.py | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/frappe/core/doctype/sms_settings/sms_settings.py b/frappe/core/doctype/sms_settings/sms_settings.py index 8472ba8f2b..f6134e045a 100644 --- a/frappe/core/doctype/sms_settings/sms_settings.py +++ b/frappe/core/doctype/sms_settings/sms_settings.py @@ -66,8 +66,10 @@ def send_sms(receiver_list, msg, sender_name = '', success_msg = True): def send_via_gateway(arg): ss = frappe.get_doc('SMS Settings', 'SMS Settings') headers = get_headers(ss) + use_json = headers.get("Content-Type") == "application/json" - args = {ss.message_parameter: arg.get('message')} + message = frappe.safe_decode(arg.get('message')) + args = {ss.message_parameter: message} for d in ss.get("parameters"): if not d.header: args[d.parameter] = d.value @@ -75,7 +77,7 @@ def send_via_gateway(arg): success_list = [] for d in arg.get('receiver_list'): args[ss.receiver_parameter] = d - status = send_request(ss.sms_gateway_url, args, headers, ss.use_post) + status = send_request(ss.sms_gateway_url, args, headers, ss.use_post, use_json) if 200 <= status < 300: success_list.append(d) @@ -97,16 +99,24 @@ def get_headers(sms_settings=None): return headers -def send_request(gateway_url, params, headers=None, use_post=False): +def send_request(gateway_url, params, headers=None, use_post=False, use_json=False): import requests if not headers: headers = get_headers() + kwargs = {"headers": headers} + + if use_json: + kwargs["json"] = params + elif use_post: + kwargs["data"] = params + else: + kwargs["params"] = params if use_post: - response = requests.post(gateway_url, headers=headers, data=params) + response = requests.post(gateway_url, **kwargs) else: - response = requests.get(gateway_url, headers=headers, params=params) + response = requests.get(gateway_url, **kwargs) response.raise_for_status() return response.status_code From abbc93916abf55a4b14a9b83aba3963c56fbab55 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Sun, 2 Feb 2020 16:03:41 +0530 Subject: [PATCH 16/22] feat: Updated translation (#9354) Co-authored-by: sahil28297 <37302950+sahil28297@users.noreply.github.com> --- frappe/translations/af.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/am.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/ar.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/bg.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/bn.csv | 258 +++++++++++++++++++++++-------- frappe/translations/bs.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/ca.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/cs.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/da.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/de.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/el.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/en_us.csv | 1 - frappe/translations/es.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/es_pe.csv | 11 +- frappe/translations/et.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/fa.csv | 256 +++++++++++++++++++++++-------- frappe/translations/fi.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/fr.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/gu.csv | 257 +++++++++++++++++++++++-------- frappe/translations/he.csv | 42 ++--- frappe/translations/hi.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/hr.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/hu.csv | 271 +++++++++++++++++++++++++-------- frappe/translations/id.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/is.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/it.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/ja.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/km.csv | 264 ++++++++++++++++++++++++-------- frappe/translations/kn.csv | 254 +++++++++++++++++++++++-------- frappe/translations/ko.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/ku.csv | 264 ++++++++++++++++++++++++-------- frappe/translations/lo.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/lt.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/lv.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/mk.csv | 263 ++++++++++++++++++++++++-------- frappe/translations/ml.csv | 255 +++++++++++++++++++++++-------- frappe/translations/mr.csv | 259 +++++++++++++++++++++++-------- frappe/translations/ms.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/my.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/nl.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/no.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/pl.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/ps.csv | 265 ++++++++++++++++++++++++-------- frappe/translations/pt.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/pt_br.csv | 32 ++-- frappe/translations/ro.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/ru.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/si.csv | 255 +++++++++++++++++++++++-------- frappe/translations/sk.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/sl.csv | 276 +++++++++++++++++++++++++-------- frappe/translations/sq.csv | 262 +++++++++++++++++++++++-------- frappe/translations/sr.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/sr_sp.csv | 8 +- frappe/translations/sv.csv | 272 +++++++++++++++++++++++++-------- frappe/translations/sw.csv | 269 ++++++++++++++++++++++++-------- frappe/translations/ta.csv | 254 +++++++++++++++++++++++-------- frappe/translations/te.csv | 253 ++++++++++++++++++++++-------- frappe/translations/th.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/tr.csv | 279 +++++++++++++++++++++++++--------- frappe/translations/uk.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/ur.csv | 260 +++++++++++++++++++++++-------- frappe/translations/uz.csv | 273 +++++++++++++++++++++++++-------- frappe/translations/vi.csv | 274 +++++++++++++++++++++++++-------- frappe/translations/zh.csv | 276 ++++++++++++++++++++++++--------- frappe/translations/zh_tw.csv | 219 +++++++++++++++++++------- 65 files changed, 12244 insertions(+), 3950 deletions(-) diff --git a/frappe/translations/af.csv b/frappe/translations/af.csv index db548df7fa..2b87a89850 100644 --- a/frappe/translations/af.csv +++ b/frappe/translations/af.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Kies asseblief 'n Bedrag veld. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Laai invoerlêer ... DocType: Assignment Rule,Last User,Laaste gebruiker -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","'N Nuwe taak, {0}, is aan jou toegewys deur {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sessie standaard is gestoor apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Herlaai lêer DocType: Email Queue,Email Queue records.,E-pos waglys rekords. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Boom DocType: User,User Emails,Gebruiker e-posse DocType: User,Username,Gebruikersnaam apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Invoer zip +DocType: Scheduled Job Type,Create Log,Skep log apps/frappe/frappe/model/base_document.py,Value too big,Waarde te groot DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Doen Skriftoets @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,maandelikse DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktiveer Inkomende apps/frappe/frappe/core/doctype/version/version_view.html,Danger,gevaar -DocType: Address,Email Address,E-pos adres +apps/frappe/frappe/www/login.py,Email Address,E-pos adres DocType: Workflow State,th-large,ste-groot DocType: Communication,Unread Notification Sent,Ongelees kennisgewing gestuur apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Uitvoer nie toegelaat nie. Jy benodig {0} rol om te eksporteer. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Kans DocType: DocType,Is Published Field,Is gepubliseerde veld DocType: GCalendar Settings,GCalendar Settings,GCalendar-instellings DocType: Email Group,Email Group,E-posgroep +apps/frappe/frappe/__init__.py,Only for {},Net vir {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - Kon nie gebeurtenis {0} uit Google Kalender verwyder nie, foutkode {1}." DocType: Event,Pulled from Google Calendar,Van Google Kalender af getrek DocType: Note,Seen By,Gesien deur apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Voeg meerdere by -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,U het 'n paar energiepunte gekry apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nie 'n geldige gebruikersfoto nie. DocType: Energy Point Log,Reverted,teruggekeer DocType: Success Action,First Success Message,Eerste Suksesboodskap @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nie soos apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet {1} {2} wees apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Verander veld eienskappe (versteek, lees, toestemming ens)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,waardeer +DocType: Notification Settings,Document Share,Dokument Deel DocType: Workflow State,lock,sluit apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Stellings vir Kontak Ons Page. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrateur ingeteken @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","As dit geaktiveer is, word die dokument gemerk soos gesien, die eerste keer dat 'n gebruiker dit oopmaak" DocType: Auto Repeat,Repeat on Day,Herhaal op dag DocType: DocField,Color,Kleur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Merk alles as gelees DocType: Data Migration Run,Log,Meld DocType: Workflow State,indent-right,streepje-reg DocType: Has Role,Has Role,Het Rol @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Wys terugsporing DocType: DocType,Default Print Format,Standaarddrukformaat DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Skyfietipe apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Geen: Einde van Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} veld kan nie as uniek in {1} gestel word nie, aangesien daar nie-unieke bestaande waardes is" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentsoorte @@ -135,7 +138,6 @@ DocType: Language,Guest,gaste DocType: DocType,Title Field,Titel Veld DocType: Error Log,Error Log,Fout Teken apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Ongeldige URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Laaste 7 dae apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Herhalings soos "abcabcabc" is net effens harder om te raai as "abc" DocType: Notification,Channel,kanaal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","As u dink dat dit ongemagtig is, verander asseblief die Administrateur wagwoord." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,kliënt apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Kies Kolom apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Hierdie vorm is verander nadat jy dit gelaai het DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Kennisgewinglogboek DocType: System Settings,"If not set, the currency precision will depend on number format","Indien nie ingestel nie, sal die geldeenheidsprecisie afhang van die nommerformaat" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Oop Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Dit lyk asof daar 'n probleem met die bediener se streepkonfigurasie is. In geval van versuim, sal die bedrag terugbetaal word na u rekening." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Vo apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,stuur DocType: Workflow Action Master,Workflow Action Name,Werkstroom Aksie Naam apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan nie saamgevoeg word nie -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nie 'n zip-lêer nie DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,E-pos is gestuur? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Wissel grafiek apps/frappe/frappe/desk/form/save.py,Did not cancel,Het nie kanselleer nie DocType: Social Login Key,Client Information,Kliënt Inligting +DocType: Energy Point Rule,Apply this rule only once per document,Pas hierdie reël slegs een keer per dokument toe DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Lees slegs afhang van apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Aangemeld as Gaste of Administrateur DocType: Email Account,UNSEEN,ONGEZIENE apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Lêer bestuurder @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,rede DocType: Email Unsubscribe,Email Unsubscribe,E-pos Uitschrijven DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Kies 'n beeld van ongeveer 150px breedte met 'n deursigtige agtergrond vir die beste resultate. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Geen aktiwiteit nie +DocType: Server Script,Script Manager,Skripbestuurder +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Geen aktiwiteit nie apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Derdeparty-programme apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Die eerste gebruiker sal die stelselbestuurder word (jy kan dit later verander). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Geen gebeure vandag nie apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,U kan nie punte vir uself gee nie apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType moet Submitterable wees vir die gekose Doc Event DocType: Workflow State,circle-arrow-up,sirkel-pyl-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nie toegelaat vir {0}: {1}. Beperkte veld: {2} DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kontroleer dit as jy jou betaling met die Sandbox API toets apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,U mag nie 'n standaard webwerf-tema uitvee nie +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Skep u eerste {0} DocType: Data Import,Log Details,Log besonderhede DocType: Workflow Transition,Example,voorbeeld DocType: Webhook Header,Webhook Header,Webhook Header @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Klets agtergrond apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Merk as gelees apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Opdateer {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,'N Onboarding-skyfie {0} met dieselfde skyfievolgorde bestaan reeds apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Deaktiveer verslag DocType: Translation,Contributed Translation Doctype Name,Bygedrade vertaling Doctype Naam +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opstel> Pas vorm aan DocType: PayPal Settings,Redirect To,Herlei na DocType: Data Migration Mapping,Pull,trek DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript-formaat: frappe.query_reports ['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Interne rekord van dokument DocType: Energy Point Settings,Review Levels,Hersien Vlakke DocType: Workflow State,Comment,kommentaar DocType: Data Migration Plan,Postprocess Method,Na-proses Metode +DocType: DocType Action,Action Type,Aksietipe apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Neem 'n foto DocType: Assignment Rule,Round Robin,Ronde Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",U kan die ingediende dokumente verander deur hulle te kanselleer en dan te wysig. @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Stoor as DocType: Comment,Seen,gesien apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Wys meer besonderhede +DocType: Server Script,Before Submit,Voor indiening DocType: System Settings,Run scheduled jobs only if checked,Begin slegs geskeduleerde werk as dit nagegaan word apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,Sal slegs gewys word as seksieopskrifte aangeskakel is apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Argief @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox toegang sleutel apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Verkeerde veldnaam {0} in add_fetch-opstelling van persoonlike skrif apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Kies Google Kontakte waarmee die kontak gesinkroniseer moet word. DocType: Web Page,Main Section (HTML),Hoofafdeling (HTML) +DocType: Scheduled Job Type,Annual,jaarlikse DocType: Workflow State,headphones,oorfone apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Wagwoord is nodig of kies wagwoord wag DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,bv. replies@jourcomany.com. Alle antwoorde sal na hierdie inkassie kom. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Bepaal die volgorde van die skyfie in die towenaar. As die skyfie nie vertoon moet word nie, moet prioriteit op 0 gestel word." DocType: Data Migration Run,Current Mapping,Huidige kaarte apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Geldige e-pos en naam benodig apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Maak alle aanhangsels privaat @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Oorgangsreëls apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Wys slegs die eerste {0} rye in voorskou apps/frappe/frappe/core/doctype/report/report.js,Example:,voorbeeld: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Beperkings DocType: Workflow,Defines workflow states and rules for a document.,Definieer werkstroom state en reëls vir 'n dokument. DocType: Workflow State,Filter,filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Gaan na die foutlogboek vir meer inligting: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ingeteken: {1} DocType: Address,West Bengal,Wes Bengaal +DocType: Onboarding Slide,Information,inligting apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan nie Toewys indien indien nie Submittable DocType: Transaction Log,Row Index,Ry Indeks DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Knoppie Hulp DocType: Kanban Board Column,purple,pers DocType: About Us Settings,Team Members,Spanlede +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Sal slegs geskeduleerde werk slegs een keer per dag vir onaktiewe webwerwe doen. Verstek 4 dae indien ingestel op 0. DocType: Assignment Rule,System Manager,Stelselbestuurder +DocType: Scheduled Job Log,Scheduled Job,Geplande werk DocType: Custom DocPerm,Permissions,permissions apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks vir interne integrasie DocType: Dropbox Settings,Allow Dropbox Access,Laat Dropbox-toegang toe @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skand DocType: Email Flag Queue,Email Flag Queue,E-pos vlag wachtrij DocType: Access Log,Columns / Fields,Kolomme / velde apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylvelle vir drukformate +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,'N Aggregaatfunksieveld is nodig om 'n paneelbordkaart te maak apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Kan nie oop {0} identifiseer nie. Probeer iets anders. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,U inligting is ingedien apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Gebruiker {0} kan nie uitgevee word nie @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Veldnaam DocType: Assignment Rule,Assign To Users,Ken gebruikers toe apps/frappe/frappe/public/js/frappe/utils/utils.js,or,of apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,module naam ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Aanhou +DocType: Onboarding Slide,Continue,Aanhou apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google-integrasie is gedeaktiveer. DocType: Custom Field,Fieldname,field Name DocType: Workflow State,certificate,sertifikaat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verifieer ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,U opdrag oor {0} {1} is verwyder apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Eerste data kolom moet leeg wees. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Wys alle weergawes apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Bekyk kommentaar @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Beperk IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Kan nie e-posse stuur nie apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - Kon nie gebeurtenis {0} in Google Kalender opdateer nie, foutkode {1}." +DocType: Notification Log,Email Content,E-posinhoud apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Soek of tik 'n opdrag DocType: Activity Log,Timeline Name,Tydlyn Naam apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Slegs een {0} kan as primêr gestel word. DocType: Email Account,e.g. smtp.gmail.com,bv. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Voeg 'n nuwe reël by DocType: Contact,Sales Master Manager,Verkope Meester Bestuurder +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,U moet JavaScript inskakel sodat u app kan werk. DocType: User Permission,For Value,Vir Waarde DocType: Event,Google Calendar ID,Google Kalender-ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Een laaste stap @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP-middelnaamveld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Voer {0} van {1} in DocType: GCalendar Account,Allow GCalendar Access,Laat GCalendar-toegang toe apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} is 'n verpligte veld +DocType: DocType,Documentation Link,Dokumentasie skakel apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login token vereis apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Maandelikse ranglys: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Kies verskeie lysitems @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Lêer URL DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Voeg intekenaars by +DocType: Notification Log,Energy Point,Energiepunt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Komende Gebeurtenisse vir Vandag DocType: Google Calendar,Push to Google Calendar,Druk op Google Kalender DocType: Notification Recipient,Email By Document Field,E-pos per dokumentveld @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,weg DocType: Currency,Fraction Units,Breukeenhede apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} van {1} tot {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Merk as Klaar DocType: Chat Message,Type,tipe DocType: Google Settings,OAuth Client ID,OAuth-kliënt-ID DocType: Auto Repeat,Subject,Onderwerp apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Terug na die lessenaar DocType: Web Form,Amount Based On Field,Bedrag gebaseer op veld +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} het geen weergawes nie. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Gebruiker is verpligtend vir Deel DocType: DocField,Hidden,verborge DocType: Web Form,Allow Incomplete Forms,Laat onvolledige vorms toe @@ -511,6 +535,7 @@ DocType: Report,JSON,into apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Gaan asseblief jou e-pos na verifikasie apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Vou kan nie aan die einde van die vorm wees nie DocType: Communication,Bounced,gestuur +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,van DocType: Deleted Document,Deleted Name,Naam uitgevee apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Stelsel- en webwerfgebruikers DocType: Workflow Document State,Doc Status,Doc Status @@ -521,6 +546,7 @@ DocType: Language,Language Code,Taalkode DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: as standaard word e-pos vir mislukte back-ups gestuur. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Voeg filter by apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS gestuur na volgende nommers: {0} +DocType: Notification Settings,Assignments,opdragte apps/frappe/frappe/utils/data.py,{0} and {1},{0} en {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Begin 'n gesprek. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Voeg altyd "Konsep" -opskrif by vir die druk van konsepdokumente @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Huidige kaarte begin apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pos is gemerk as strooipos DocType: Comment,Website Manager,Webwerf Bestuurder apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Lêeroplaai ontkoppel. Probeer asseblief weer. +DocType: Data Import Beta,Show Failed Logs,Wys mislukte logboeke apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,vertalings apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,U het gedrukte of gekanselleerde dokumente gekies apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} is ingestel om te sê {1} deur {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Dokument wagtend DocType: GSuite Templates,Destination ID,Bestemming ID DocType: Desktop Icon,List,lys DocType: Activity Log,Link Name,Skakel Naam +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,U het \ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,Onboarding skyfie apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ongeldige Wagwoord: DocType: Print Settings,Send document web view link in email,Stuur dokumentwebbladsy skakel in e-pos apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,vorige @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,donkergrys apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Suksesvol: {0} tot {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Kan gebruikersdata nie in demo verander nie. Teken asseblief vir 'n nuwe rekening by https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,drop +DocType: Dashboard Chart,Aggregate Function Based On,Totale funksie gebaseer op apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Dui asseblief duplisering om veranderinge aan te bring apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Druk Enter om te stoor apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF-generasie het misluk weens gebroke beeldskakels @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Dae voor apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Daaglikse gebeure moet op dieselfde dag eindig. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Wysig ... DocType: Workflow State,volume-down,volume-down +DocType: Onboarding Slide,Help Links,Hulpskakels apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Toegang word nie vanaf hierdie IP-adres toegelaat nie +DocType: Notification Settings,Enable Email Notifications,Aktiveer e-poskennisgewings apps/frappe/frappe/desk/reportview.py,No Tags,Geen etikette DocType: Email Account,Send Notification to,Stuur kennisgewing aan DocType: DocField,Collapsible,opvoubare @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Laaste rugsteun aan DocType: Customize Form Field,Customize Form Field,Pas vorm veld aan DocType: Energy Point Rule,For Document Event,Vir dokumentgebeurtenis DocType: Website Settings,Chat Room Name,Kletskamer naam +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,onveranderd DocType: OAuth Client,Grant Type,Toekenningstipe apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Kyk watter dokumente deur 'n gebruiker leesbaar is DocType: Deleted Document,Hub Sync ID,Hub-sinkronisasie-ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,gebr DocType: Auto Repeat,Quarterly,kwartaallikse apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","E-pos Domein nie vir hierdie rekening gekonfigureer nie, Skep een?" DocType: User,Reset Password Key,Herstel wagwoord sleutel +DocType: Dashboard Chart,All Time,Van alle tye apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Onwettige dokumentstatus vir {0} DocType: Email Account,Enable Auto Reply,Aktiveer Outomatiese Antwoord apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nie gesien nie @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Boods DocType: Email Account,Notify if unreplied,Stel in kennis indien dit nie gereageer word nie apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skandeer die QR-kode en voer die gevolgde kode in. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktiveer gradiënte +DocType: Scheduled Job Type,Hourly Long,Uur per uur DocType: System Settings,Minimum Password Score,Minimum Wagwoord telling DocType: DocType,Fields,Velde DocType: System Settings,Your organization name and address for the email footer.,Jou organisasie se naam en adres vir die e-posvoet. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Ouer Tabel apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup voltooi! apps/frappe/frappe/config/desktop.py,Developer,Ontwikkelaar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Geskep +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Volg die instruksies in die volgende skakel om dit in staat te stel: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in ry {1} kan nie beide URL- en kinderitems hê nie apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Daar moet ten minste een ry wees vir die volgende tabelle: {0} DocType: Print Format,Default Print Language,Standaard druktaal apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Voorouers Van apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Wortel {0} kan nie uitgevee word nie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Geen mislukte logboeke nie apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Nog geen kommentaar apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Stel asseblief SMS op voordat u dit instel as 'n verifikasie metode, via SMS-instellings" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Beide DocType en Naam benodig @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Items apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Spyskaart DocType: DefaultValue,DefaultValue,Standaard waarde DocType: Auto Repeat,Daily,daaglikse +DocType: Onboarding Slide,Max Count,Maksimum telling apps/frappe/frappe/config/users_and_permissions.py,User Roles,Gebruikersrolle DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Eiendom Setter oortree 'n standaard DocType of Field eiendom apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan nie opdateer nie: Verkeerde / verouderde skakel. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,host DocType: Data Import Beta,Import File,Voer lêer in +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Sjabloonfout apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolom {0} bestaan reeds. DocType: ToDo,High,hoë apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nuwe gebeurtenis @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Wys in filter DocType: Address,Daman and Diu,Daman en Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,projek DocType: Address,Personal,persoonlike +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Instellings vir rou druk ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Raadpleeg https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region vir meer inligting. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Hernoem DocType: Email Queue,Show as cc,Wys as cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Neem video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Inleidende inligting vir die Kontak Ons Bladsy DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,duime af +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Kanselleer dokumente DocType: User,Send Notifications for Email threads,Stuur kennisgewings vir e-posdrade apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nie in ontwikkelaar af nie @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Lêer Frien DocType: DocField,In Global Search,In Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,streepje-links -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar (s) gelede apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Dit is riskant om hierdie lêer te verwyder: {0}. Kontak asseblief u stelselbestuurder. DocType: Currency,Currency Name,Geld Naam apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Geen e-posse @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Gebruikersveld DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Druk verwyder apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} reeds uitgeteken vir {1} {2} +DocType: Scheduled Job Type,Stopped,gestop apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Het nie verwyder nie apps/frappe/frappe/desk/like.py,Liked,hou apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Stuur nou apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standaard DocType kan nie standaard afdrukformaat hê nie, Gebruik pasvorm" +DocType: Server Script,Allow Guest,Laat gas toe DocType: Report,Query,navraag DocType: Customize Form,Sort Order,Sorteervolgorde apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'In lys vertoning' nie toegelaat vir tipe {0} in ry {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Twee faktor verifikasie metode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stel eers die naam en stoor die rekord. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Rekords +DocType: DocType Link,Link Fieldname,Skakelveldnaam apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Gedeel met {0} apps/frappe/frappe/email/queue.py,Unsubscribe,bedank DocType: View Log,Reference Name,Verwysingsnaam apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Verander gebruiker +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,eerste apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update vertalings DocType: Error Snapshot,Exception,uitsondering DocType: Email Account,Use IMAP,Gebruik IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Reëls wat die oorgang van die staat in die werkstroom definieer. DocType: File,Folder,gids DocType: Website Route Meta,Website Route Meta,Webwerfroete Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Aan boord glybaan DocType: DocField,Index,indeks DocType: Email Group,Newsletter Manager,Nuusbrief Bestuurder apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opsie 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ste apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Stel kaarte op DocType: User,Last IP,Laaste IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Voeg asseblief 'n onderwerp by jou e-pos -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,'N Nuwe dokument {0} is gedeel deur jou {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migrasie Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} teruggestel {1} DocType: Email Account,Track Email Status,Track e-pos status @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Verstek Uitgaande DocType: Workflow State,play,speel apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klik op die onderstaande skakel om u registrasie te voltooi en stel 'n nuwe wagwoord in apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Het nie bygevoeg nie +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} het {1} punte gekry vir {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Geen e-pos rekeninge toegeken nie DocType: S3 Backup Settings,eu-west-2,EU-wes-2 DocType: Contact Us Settings,Contact Us Settings,Kontak ons instellings @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Soek tans DocType: Workflow State,text-width,teks-wydte apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimum aanhangsel limiet vir hierdie rekord bereik. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Soek volgens lêernaam of uitbreiding +DocType: Onboarding Slide,Slide Title,Skyfietitel DocType: Notification,View Properties (via Customize Form),Bekyk eienskappe (via vorm aanpas) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik op 'n lêer om dit te kies. DocType: Note Seen By,Note Seen By,Nota Gesien Deur @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Deel URL DocType: System Settings,Allow Consecutive Login Attempts ,Laat opeenvolgende aanmeldpogings toe apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,'N Fout het voorgekom tydens die betalingproses. Kontak ons asseblief. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"As die skyfietipe is 'Create' of 'Settings', moet daar 'n 'create_onboarding_docs'-metode in die {ref_doctype} .py-lêer wees wat uitgevoer moet word nadat die skyfie voltooi is." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dae gelede DocType: Email Account,Awaiting Password,Wagwoord wag DocType: Address,Address Line 1,Adres Lyn 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nie Afstammelinge Van DocType: Contact,Company Name,maatskappynaam DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Instellings ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,na u blaaier apps/frappe/frappe/utils/data.py,Cent,sent ,Recorder,blokfluit @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Volg of u e-pos deur die ontvanger geopen is.
Nota: as u na verskeie ontvangers stuur, selfs as 1 ontvanger die e-pos lees, sal dit beskou word as "Geopen"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ontbrekende waardes word vereis apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Laat Google Kontakte toe +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,beperkte DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Merk as ongelees DocType: Activity Log,Operation,operasie @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Laat Print toe DocType: Communication,Clicked,gekliek apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Geen toestemming vir '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel asb. Standaard-e-posrekening op vanaf Opstel> E-pos> E-posrekening apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Geskeduleer om te stuur DocType: DocType,Track Seen,Spoor gesien DocType: Dropbox Settings,File Backup,Lêer rugsteun @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Geen {0} gevi apps/frappe/frappe/config/customization.py,Add custom forms.,Voeg gepasmaakte vorms by. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} in {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,hierdie dokument ingedien -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opstel> Toestemmings vir gebruikers apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Die stelsel bied baie vooraf gedefinieerde rolle. Jy kan nuwe rolle byvoeg om fyner regte te stel. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Trigger Naam -apps/frappe/frappe/public/js/frappe/desk.js,Domains,domeine +DocType: Onboarding Slide,Domains,domeine DocType: Blog Category,Blog Category,Blog Kategorie apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Kan nie kaarteer nie omdat die volgende voorwaarde misluk: DocType: Role Permission for Page and Report,Roles HTML,Rolle HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Saterdag DocType: User,Represents a User in the system.,Verteenwoordig 'n gebruiker in die stelsel. DocType: List View Setting,Disable Auto Refresh,Deaktiveer outomatiese opdatering DocType: Comment,Label,Etiket -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Die taak {0}, wat jy aan {1} toegewys het, is gesluit." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Maak asseblief hierdie venster toe DocType: Print Format,Print Format Type,Drukformaat Tipe DocType: Newsletter,A Lead with this Email Address should exist,'N Lood met hierdie e-posadres moet bestaan @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP-instellings vir ui apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,kies 'n DocType: Data Export,Filter List,Filter Lys DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Outo-antwoordboodskap DocType: Data Migration Mapping,Condition,toestand apps/frappe/frappe/utils/data.py,{0} hours ago,{0} uur gelede @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Kennisbasisbydraer DocType: Communication,Sent Read Receipt,Gestuur lees ontvangs DocType: Email Queue,Unsubscribe Method,Uitschrijven metode +DocType: Onboarding Slide,Add More Button,Voeg meer knoppie by DocType: GSuite Templates,Related DocType,Verwante DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Wysig om inhoud by te voeg apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Kies Tale apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kaartbesonderhede apps/frappe/frappe/__init__.py,No permission for {0},Geen toestemming vir {0} DocType: DocType,Advanced,Advanced +DocType: Onboarding Slide,Slide Image Source,Skyfieprentbron apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Lyk API sleutel of API Geheim is verkeerd !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Verwysing: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Mev @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,meester DocType: DocType,User Cannot Create,Gebruiker kan nie skep nie apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Suksesvol gedoen apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox toegang is goedgekeur! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Is u seker dat u {0} met {1} wil saamsmelt? DocType: Customize Form,Enter Form Type,Vul vormtipe in DocType: Google Drive,Authorize Google Drive Access,Magtig toegang tot Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Ontbrekende parameter Kanban Board Name @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Toestaan van DocType, DocType. Wees versigtig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Spesiale formate vir drukwerk, e-pos" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Som van {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Opgedateer na nuwe weergawe DocType: Custom Field,Depends On,Hang af van DocType: Kanban Board Column,Green,groen DocType: Custom DocPerm,Additional Permissions,Bykomende Toestemmings @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,sosiale apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Kalender - Kon nie kalender vir {0} skep nie, foutkode {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Redigeer tans DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Vee alles uit DocType: Custom Field,Field Type,Veldtipe apps/frappe/frappe/utils/data.py,only.,enigste. DocType: Route History,Route History,Roete geskiedenis @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Wagwoord vergeet? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Bedienerprobleem +DocType: Server Script,After Delete,Na uitvee apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Sien alle verslae in die verlede. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Aanmelding ID is nodig DocType: Website Slideshow,Website Slideshow,Webwerf skyfie apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Geen data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Skakel dit is die tuisblad van die webwerf. Standaard Links (indeks, login, produkte, blog, oor, kontak)" +DocType: Server Script,After Submit,Na indiening apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Verifikasie het misluk terwyl e-pos van e-posrekening {0} ontvang is. Boodskap van bediener: {1} DocType: User,Banner Image,Banner Beeld DocType: Custom Field,Custom Field,Aangepaste veld @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","As die gebruiker enige rol nagegaan het, word die gebruiker 'n "System User". "Stelselgebruiker" het toegang tot die lessenaar" DocType: System Settings,Date and Number Format,Datum en nommerformaat apps/frappe/frappe/model/document.py,one of,een van -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opstel> pas vorm aan apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kyk een oomblik apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Wys etikette DocType: DocField,HTML Editor,HTML Editor 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","As Streng gebruikertoestemming toegepas word, en gebruikertoestemming vir 'n DocType vir 'n gebruiker gedefinieer is, sal al die dokumente waar die waarde van die skakel leeg is, nie aan daardie gebruiker vertoon word nie." DocType: Address,Billing,Rekening DocType: Email Queue,Not Sent,Nie gestuur nie -DocType: Web Form,Actions,aksies -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opstel> Gebruiker +DocType: DocType,Actions,aksies DocType: Workflow State,align-justify,in lyn-regverdig DocType: User,Middle Name (Optional),Middelnaam (opsioneel) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nie toegelaat @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Geen result DocType: System Settings,Security,sekuriteit apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Geskeduleer om na {0} ontvangers te stuur apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,sny +DocType: Server Script,After Save,Na redding apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},hernoem van {0} tot {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} van {1} ({2} rye met kinders) DocType: Currency,**Currency** Master,** Geld ** Meester @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Filter waardes DocType: Communication,User Tags,Gebruiker-etikette DocType: Data Migration Run,Fail,misluk DocType: Workflow State,download-alt,Aflaai-alt +DocType: Scheduled Job Type,Last Execution,Laaste teregstelling DocType: Data Migration Run,Pull Failed,Trek misluk apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Wys / verberg kaarte DocType: Communication,Feedback Request,Terugvoer Versoek apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Voer data uit CSV / Excel-lêers in. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Die volgende velde word ontbreek: +DocType: Notification Log,From User,Van gebruiker apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Kanselleer {0} DocType: Web Page,Main Section,Hoofafdeling DocType: Page,Icon,ikoon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Wenk: Sluit simbole, nommers en hoofletters in die wagwoord in" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Stel kennisgewings op vir melding, opdragte, energiepunte en meer." DocType: DocField,Allow in Quick Entry,Laat toe in vinnige toegang apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / jjjj @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Tema-URL DocType: Customize Form,Sort Field,Sorteer Veld DocType: Razorpay Settings,Razorpay Settings,Razorpay instellings apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Wysig filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Voeg nog by DocType: System Settings,Session Expiry Mobile,Sessie Vervaldatum apps/frappe/frappe/utils/password.py,Incorrect User or Password,Verkeerde gebruiker of wagwoord apps/frappe/frappe/templates/includes/search_box.html,Search results for,Soek resultate vir @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energie punt reël DocType: Communication,Delayed,vertraag apps/frappe/frappe/config/settings.py,List of backups available for download,Lys van backups beskikbaar vir aflaai +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Probeer die nuwe data-invoer apps/frappe/frappe/www/login.html,Sign up,Teken aan apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Ry {0}: Nie toegelaat om te skakel nie Verpligtend vir standaard velde +DocType: Webhook,Enable Security,Aktiveer sekuriteit apps/frappe/frappe/config/customization.py,Dashboards,dashboards DocType: Test Runner,Output,uitset DocType: Milestone,Track Field,Spoorveld @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Stel Eiendom Na Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Voeg velde by vorms. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Dit lyk of daar iets fout is met die webwerf se Paypal-opset. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Voeg resensie by +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} het 'n nuwe taak {1} {2} aan u opgedra apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Lettergrootte (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Slegs standaard DocTypes mag aangepas word vanaf die Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Stel filters in DocType: Contact Us Settings,Email ID,E-pos ID DocType: Energy Point Rule,Multiplier Field,Vermenigvuldigerveld +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Kon nie Razorpay-bestelling skep nie. Kontak die administrateur DocType: Dashboard Chart,Time Interval,Tydsinteval DocType: Activity Log,Keep track of all update feeds,Hou tred met alle opdaterings feeds +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} het 'n dokument {1} {2} met jou gedeel DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,'N Lys van hulpbronne waarop die Kliënt App toegang sal hê na die gebruiker dit toelaat.
bv. projek DocType: Translation,Translated Text,Vertaalde teks DocType: Contact Us Settings,Query Options,Navraag opsies @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,sleutel DocType: Address,Contacts,kontakte DocType: System Settings,Setup Complete,Opstelling Voltooi apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Verslag van alle dokument aandele +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Invoersjabloon moet van die tipe .csv, .xlsx of .xls wees" apps/frappe/frappe/www/update-password.html,New Password,Nuwe Wagwoord apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} ontbreek apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Jammer! Jy kan nie outomaties gegenereerde opmerkings uitvee nie @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Run DocType: Blog Post,Content (HTML),Inhoud (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Opstel vir DocType: Personal Data Download Request,User Name,Gebruikersnaam DocType: Workflow State,minus-sign,minus-teken apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nie gevind nie @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Geen {0} toestemming nie apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Voer persoonlike toestemmings uit apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Geen items gevind nie. DocType: Data Export,Fields Multicheck,Velds Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Voltooi DocType: Activity Log,Login,Teken aan DocType: Web Form,Payments,betalings apps/frappe/frappe/www/qrcode.html,Hi {0},Hallo {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-integrasie. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} het u punte op {1} {2} teruggestel DocType: System Settings,Enable Scheduled Jobs,Aktiveer geskeduleerde werk apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notes: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,onaktiewe @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-pos apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Toestemming fout apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Naam van {0} kan nie {1} wees nie DocType: User Permission,Applicable For,Toepaslik vir +DocType: Dashboard Chart,From Date,Vanaf datum apps/frappe/frappe/core/doctype/version/version_view.html,Success,sukses apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessie verstryk DocType: Kanban Board Column,Kanban Board Column,Kanban Raad Kolom @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suk apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Nie toegelaat nie DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,prent -apps/frappe/frappe/www/complete_signup.html,Complete,volledige +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,volledige DocType: DocType,Image Field,Beeldveld DocType: Print Format,Custom HTML Help,Gepasmaakte HTML-hulp DocType: LDAP Settings,Default Role on Creation,Standaard rol by die skepping @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Volgende Staat DocType: User,Block Modules,Blok Modules DocType: Print Format,Custom CSS,Aangepaste CSS +DocType: Energy Point Rule,Apply Only Once,Dien slegs een keer toe apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Voeg kommentaar by DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignoreer: {0} tot {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Standaard Inkomend DocType: Workflow State,repeat,herhaling DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Waarde moet een van {0} wees +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Kanselleer alle dokumente DocType: Role,"If disabled, this role will be removed from all users.","As dit gedeaktiveer is, sal hierdie rol van alle gebruikers verwyder word." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gaan na {0} Lys apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hulp op soek @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Geregistree apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Die outo herhaal vir hierdie dokument is gedeaktiveer. DocType: DocType,Hide Copy,Versteek kopie apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Maak alle rolle skoon +DocType: Server Script,Before Save,Voordat u red apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} moet uniek wees apps/frappe/frappe/model/base_document.py,Row,ry apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,op die regte pad apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} suksesvol ingevoer DocType: User,API Key,API sleutel DocType: Email Account,Send unsubscribe message in email,Stuur unsubscribe boodskap in e-pos -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Wysig titel apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Veldnaam wat die DocType vir hierdie skakel veld sal wees. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumente wat aan u en u toegewys is. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,U kan dit ook kopieer en plak @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Heg prent aan DocType: Workflow State,list-alt,lys-alt apps/frappe/frappe/www/update-password.html,Password Updated,Wagwoord opgedateer +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opstel> Toestemmings vir gebruikers apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Stappe om jou inskrywing te verifieer apps/frappe/frappe/utils/password.py,Password not found,Wagwoord nie gevind nie +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Bladsy Lengte DocType: Email Queue,Expose Recipients,Ontvang Ontvangers apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Byvoeging is verpligtend vir inkomende posse @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,stelsel DocType: Web Form,Max Attachment Size (in MB),Maksimum aanhangsel grootte (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Het u 'n rekening? Teken aan +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Drukinstellings ... DocType: Workflow State,arrow-down,pyl-down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ry {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Gebruiker mag nie {0} uitvee nie: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sleutel j DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Dokument titel apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verpligte) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar (s) gelede DocType: Social Login Key,Social Login Provider,Sosiale aanmeldverskaffer apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Voeg nog 'n opmerking by apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Geen data in die lêer gevind nie. Herlaai asseblief die nuwe lêer met data. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Geen velde gevind wat as Kanban-kolom gebruik kan word nie. Gebruik die Customize Form om 'n Custom Field van die tipe "Select" by te voeg. DocType: Address,GST State,GST Staat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Kan nie Kanselleer sonder Submit instel nie +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Gebruiker ({0}) DocType: Website Theme,Theme,tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Herlei URI gebind om te kodeer apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Maak hulp oop DocType: DocType,Is Submittable,Is Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nuwe Noem +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nuwe Noem apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Geen nuwe Google-kontakte is gesinkroniseer nie. DocType: File,Uploaded To Google Drive,Op Google Drive opgelaai apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Waarde vir 'n tjekveld kan 0 of 1 wees @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,posbus DocType: Kanban Board Column,Red,rooi DocType: Workflow State,Tag,tag -DocType: Custom Script,Script,script +DocType: Report,Script,script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument kan nie gestoor word nie. DocType: Energy Point Rule,Maximum Points,Maksimum punte apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,My instellings @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Ladismith apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} waarderingspunte vir {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolle kan vir gebruikers van hul gebruikersblad gestel word. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Voeg kommentaar by +DocType: Dashboard Chart,Select Date Range,Kies datumreeks DocType: DocField,Mandatory,Verpligtend apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module vir Uitvoer +DocType: Scheduled Job Type,Monthly Long,Maandeliks lank apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Geen basiese toestemmings ingestel nie +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Stuur 'n e-pos na {0} om dit hier te skakel apps/frappe/frappe/utils/backups.py,Download link for your backup will be emailed on the following email address: {0},Aflaai skakel vir u rugsteun sal per e-pos op die volgende e-pos adres gestuur word: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Meaning of Submit, Cancel, Amend","Betekenis van Inskryf, Kanselleer, Verander" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Om te doen @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Volg mylpale vir en DocType: Social Login Key,Identity Details,Identiteitsbesonderhede apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Oorgang van werkvloeistaat is nie toegelaat van {0} na {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Wys Dashboard -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nuwe boodskap DocType: File,Preview HTML,Voorskou HTML DocType: Desktop Icon,query-report,navraag-verslag DocType: Data Import Beta,Template Warnings,Sjabloonwaarskuwings @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Gekoppel met apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Wysig outomatiese e-pos verslaginstellings DocType: Chat Room,Message Count,Boodskap Telling DocType: Workflow State,book,boek +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} is gekoppel aan die volgende dokumente wat voorgelê is: {2} DocType: Communication,Read by Recipient,Lees deur Ontvanger DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Fout in persoonlike skrif apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Naam apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Geen toestemmings vir hierdie kriteria gestel nie. DocType: Auto Email Report,Auto Email Report,Outo-e-posverslag +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nuwe dokument gedeel apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Vee kommentaar uit? DocType: Address Template,This format is used if country specific format is not found,Hierdie formaat word gebruik as land spesifieke formaat nie gevind word nie DocType: System Settings,Allow Login using Mobile Number,Laat aanmelding toe met mobiele nommer apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,Jy het nie genoeg permitte om toegang tot hierdie bron te kry nie. Kontak asseblief u bestuurder om toegang te verkry. DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","As dit aangeskakel is, sal gebruikers wat van beperkte IP-adres inskakel, nie gevra word vir Two Factor Auth" +DocType: Server Script,After Cancel,Na kanselleer DocType: Auto Repeat,Get Contacts,Kry kontakte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Boodskappe geliasseer onder {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Slaan sonder titel kolom oor @@ -1684,6 +1757,7 @@ DocType: User,Login After,Login Na DocType: Print Format,Monospace,mono DocType: Letter Head,Printing,druk DocType: Workflow State,thumbs-up,duime op +DocType: Notification Log,Mention,melding DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Presisie moet tussen 1 en 6 wees @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,en apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Hierdie verslag is gegenereer op {0} DocType: Error Snapshot,Frames,rame -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,opdrag +DocType: Notification Log,Assignment,opdrag DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Prent skakel DocType: Auto Email Report,Report Filters,Rapporteer filters @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Kan nie gebeurtenis bywerk nie apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Bevestigingskode is gestuur na u geregistreerde e-posadres. apps/frappe/frappe/core/doctype/user/user.py,Throttled,gewurg +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Jou teiken apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter moet 4 waardes hê (doktipe, veldnaam, operateur, waarde): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Geen naam is gespesifiseer vir {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Pas die opdragreël toe apps/frappe/frappe/utils/bot.py,show,Wys apps/frappe/frappe/utils/data.py,Invalid field name {0},Ongeldige veldnaam {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,teks-hoogte DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migrasie Plan Mapping apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Begin Frappé ... DocType: Web Form Field,Max Length,Maksimum Lengte -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Vir {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,kaart-merker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Dien 'n uitgawe in @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Bladsy ontbreek of verskui apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,resensies DocType: DocType,Route,roete apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Betaling gateway instellings +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} het {1} punt vir {2} {3} gekry apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Haal aangehegte beelde van dokument af DocType: Chat Room,Name,naam DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Jou taal DocType: Dashboard Chart,Average,Gemiddeld apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Voeg ry by -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,drukker apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Navraag moet 'n SELECT wees DocType: Auto Repeat,Completed,voltooi @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Volgende sinkroniese Token DocType: Energy Point Settings,Energy Point Settings,Instellings vir energiepunt DocType: Async Task,Succeeded,daarin geslaag om apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Verpligte velde vereis in {0} +DocType: Onboarding Slide Field,Align,align apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Stel toestemmings vir {0} terug? apps/frappe/frappe/config/desktop.py,Users and Permissions,Gebruikers en toestemmings DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup-instellings @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nuwe drukformaatnaam apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik op die skakel hieronder om die versoek goed te keur DocType: Workflow State,align-left,belyn links +DocType: Onboarding Slide,Action Settings,Aksie-instellings DocType: User,Defaults,standaard +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ter vergelyking, gebruik> 5, <10 of = 324. Gebruik reekse 5:10 (vir waardes tussen 5 en 10)." DocType: Energy Point Log,Revert Of,Keer terug apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Voeg saam met bestaande DocType: User,Birth Date,Geboortedatum @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,in DocType: Notification,Value Change,Waardeverandering DocType: Google Contacts,Authorize Google Contacts Access,Magtig toegang tot Google Kontakte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Wys slegs Numeriese velde uit Verslag +apps/frappe/frappe/utils/data.py,1 week ago,1 week gelede DocType: Data Import Beta,Import Type,Voer tipe in DocType: Access Log,HTML Page,HTML-bladsy DocType: Address,Subsidiary,filiaal @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Met briefhoof apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ongeldige uitgaande posbediener of poort DocType: Custom DocPerm,Write,Skryf -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Slegs Administrateur mag Query / Script Reports maak apps/frappe/frappe/public/js/frappe/form/save.js,Updating,opdatering DocType: Data Import Beta,Preview,voorskou apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Veld "waarde" is verpligtend. Spesifiseer asseblief die waarde wat opgedateer moet word @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Nooi as ge DocType: Data Migration Run,Started,begin apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Gebruiker {0} het nie toegang tot hierdie dokument nie DocType: Data Migration Run,End Time,Eindtyd +DocType: Dashboard Chart,Group By Based On,Groepeer op basis van apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Kies aanhangsels apps/frappe/frappe/model/naming.py, for {0},vir {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,U mag nie hierdie dokument druk nie @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,verifieer DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Aktiveer chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Los hierdie gesprek apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opsies nie ingestel vir skakelveld {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Tou / werker @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Inloggen is nie toegelaat nie DocType: Data Migration Run,Current Mapping Action,Huidige kaarte-aksie DocType: Dashboard Chart Source,Source Name,Bron Naam -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Geen e-posrekening geassosieer met die gebruiker nie. Voeg 'n rekening by onder Gebruiker> E-posboks. DocType: Email Account,Email Sync Option,E-pos Sync Opsie apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Ry nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Is vasgespyker DocType: Contact Us Settings,Introduction,inleiding +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Hulp nodig? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Speld wêreldwyd vas apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Gevolg deur DocType: LDAP Settings,LDAP Email Field,LDAP e-pos veld @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Reeds in DocType: User Email,Enable Outgoing,Aktiveer Uitgaande DocType: Address,Fax,Faks apps/frappe/frappe/config/customization.py,Custom Tags,Gepasmaakte Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opgestel nie. Skep 'n nuwe e-posrekening vanaf Setup> E-pos> E-posrekening DocType: Comment,Submitted,voorgelê DocType: Contact,Pulled from Google Contacts,Van Google Kontakte af getrek apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ongeldige Versoek @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Tuisblad / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Toewys aan my DocType: DocField,Dynamic Link,Dinamiese skakel apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Druk Alt-toets om addisionele kortpaaie in Menu en Sidebar te aktiveer +DocType: Dashboard Chart,To Date,Tot op hede DocType: List View Setting,List View Setting,List View-instelling apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Wys mislukte werksgeleenthede -DocType: Event,Details,besonderhede +DocType: Scheduled Job Log,Details,besonderhede DocType: Property Setter,DocType or Field,DocType of Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,U het hierdie dokument oopgevolg apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primêre kleur @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Sagte-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","As dit geaktiveer is, kan alle gebruikers aanmeld vanaf enige IP-adres met behulp van Two Factor Auth. Dit kan ook slegs vir spesifieke gebruikers in User Page gestel word" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Lyk publiseerbare sleutel of geheime sleutel is verkeerd !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Vinnige hulp vir die stel van toestemmings -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype to Assign Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Wys terugvalle apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-pos is na die asblik geskuif DocType: Report,Report Builder,Rapport Bouer @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,oplaai DocType: User Permission,Advanced Control,Gevorderde beheer DocType: System Settings,Date Format,Datum formaat apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nie gepubliseer nie +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Skep 'n nuwe een uit Opstel> Druk en handelsmerk> Adressjabloon. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Aksies vir werkstroom (bv. Goedkeur, Kanselleer)." DocType: Data Import,Skip rows with errors,Slaan rye oor met foute DocType: Workflow State,flag,vlag @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Druk apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring na die veld DocType: Contact Us Settings,Forward To Email Address,Stuur na e-pos adres DocType: Contact Phone,Is Primary Phone,Is primêre telefoon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Stuur 'n e-pos na {0} om dit hier te skakel. DocType: Auto Email Report,Weekdays,weeksdae apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} rekords sal uitgevoer word apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titelveld moet 'n geldige veldnaam wees @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,pos kommentaar apps/frappe/frappe/config/core.py,Documents,dokumente apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktiwiteit Log deur DocType: Social Login Key,Custom Base URL,Aangepaste basis-URL -DocType: Email Flag Queue,Is Completed,Is voltooi +DocType: Onboarding Slide,Is Completed,Is voltooi apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Kry velde apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Wysig profiel DocType: Kanban Board Column,Archived,argief @@ -2110,11 +2189,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18","Hierdie veld sal slegs verskyn as die veldnaam wat hier gedefinieer is, waarde is OF die reëls is waar (voorbeelde): myfield eval: doc.myfield == 'My Value' eval: doc.age> 18" DocType: Social Login Key,Office 365,Kantoor 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,vandag +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,vandag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sodra u dit gestel het, sal die gebruikers slegs toegangsdokumente (bv. Blog Post) hê waar die skakel bestaan (bv. Blogger)." DocType: Data Import Beta,Submit After Import,Dien na invoer in DocType: Error Log,Log of Scheduler Errors,Teken van skeduler foute DocType: User,Bio,bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Skyfiehulpskakel DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,indiening apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Ouer is die naam van die dokument waaraan die data bygevoeg sal word. @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,HOOFLETTERS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Gepasmaakte HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Voer die naam van die gids in -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Skep 'n nuwe een uit Opstel> Drukwerk en handelsmerk> Adresjabloon. apps/frappe/frappe/auth.py,Unknown User,Onbekende gebruiker apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Kies rol DocType: Comment,Deleted,geskrap @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Klets Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Skep grafiek apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Moenie invoer nie -DocType: Web Page,Center,Sentrum +DocType: Onboarding Slide Field,Center,Sentrum DocType: Notification,Value To Be Set,Waarde om ingestel te word apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Wysig {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Eerste Vlak @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Databasis Naam apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Herlaai vorm DocType: DocField,Select,Kies -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Besigtig volledige logboek +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Besigtig volledige logboek DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Eenvoudige Python-uitdrukking, voorbeeld: status == 'Open' en tik == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Lêer nie aangeheg nie apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Konneksie verlore. Sommige funksies kan dalk nie werk nie. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML vir hoofstuk. opsioneel apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Hierdie kenmerk is splinternuut en nog steeds eksperimenteel apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimum {0} rye toegelaat DocType: Dashboard Chart Link,Chart,grafiek +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dit is 'n baie algemene wagwoord. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Beskou @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,gasheernaam DocType: Data Migration Mapping,Condition Detail,Toestanddetail apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Vir geldeenheid {0}, moet die minimum transaksie bedrag {1} wees" DocType: DocField,Print Hide,Druk versteek +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Aan Gebruiker apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Voer waarde in DocType: Workflow State,tint,tint @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kode vir in apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Voeg by om te doen DocType: Footer Item,Company,maatskappy apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gemiddeld van {0} +DocType: Scheduled Job Log,Scheduled,geskeduleer DocType: User,Logout from all devices while changing Password,Logout uit alle toestelle terwyl jy wagwoord verander apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,verifieer wagwoord apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Daar was foute @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Gebruikers toestemming bestaan reeds apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kolom {0} karteer na veld {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Bekyk {0} -DocType: User,Hourly,uurlikse +DocType: Scheduled Job Type,Hourly,uurlikse apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreer OAuth Client App DocType: DocField,Fetch If Empty,Haal indien leeg DocType: Data Migration Connector,Authentication Credentials,Verifikasiebewyse @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan nie "{2}" wees nie. Dit behoort een van die "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},verkry deur {0} via outomatiese reël {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} of {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Julle is almal gereed! DocType: Workflow State,trash,asblik DocType: System Settings,Older backups will be automatically deleted,Ouer rugsteun sal outomaties verwyder word apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ongeldige toegangs sleutel ID of geheime toegang sleutel. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,U het energiepunte verloor DocType: Post,Is Globally Pinned,Is wêreldwyd vasgespeld apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Onlangse aktiwiteite DocType: Workflow Transition,Conditions,voorwaardes @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,bevestig DocType: Event,Ends on,Eindig op DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Pad na bedienersertifikaat +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript is in u blaaier gedeaktiveer apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nie genoeg toestemming om skakels te sien nie apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adres Titel is verpligtend. DocType: Google Contacts,Push to Google Contacts,Druk op Google Kontakte @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,EU-wes-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","As dit gekontroleer is, sal rye met geldige data ingevoer word en ongeldige rye sal in 'n nuwe lêer gedump word sodat u later kan invoer." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument is slegs redigeerbaar deur gebruikers van rol -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Die taak {0}, wat jy toegewys het aan {1}, is gesluit deur {2}." DocType: Print Format,Show Line Breaks after Sections,Toon lynbreuke na afdelings DocType: Communication,Read by Recipient On,Lees deur Ontvanger aan DocType: Blogger,Short Name,Kort naam @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Toew DocType: Translation,PR sent,PR gestuur DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Stuur slegs rekords wat in Laaste X Ure opgedateer is DocType: Communication,Feedback,terugvoer +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Opgedateer na 'n nuwe weergawe 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Oop Vertaling apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Hierdie e-pos is outogenerated DocType: Workflow State,Icon will appear on the button,Ikoon sal op die knoppie verskyn @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,bladsy nie DocType: DocField,Precision,presisie DocType: Website Slideshow,Slideshow Items,Diashow Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Probeer om herhaalde woorde en karakters te vermy +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Kennisgewings is afgeskakel +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Is u seker dat u alle rye wil uitvee? DocType: Workflow Action,Workflow State,Workflow State apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rye bygevoeg apps/frappe/frappe/www/list.py,My Account,My rekening @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dae Na apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-bakverbinding aktief! DocType: Contact Us Settings,Settings for Contact Us Page,Stellings vir Kontak Ons Page +DocType: Server Script,Script Type,Skrif tipe DocType: Print Settings,Enable Print Server,Aktiveer Print Server apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} weke gelede DocType: Email Account,Footer,Footer @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,waarskuwing apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Dit kan op verskeie bladsye gedruk word DocType: Data Migration Run,Percent Complete,Persent Voltooi -DocType: Tag Category,Tag Category,Tag Kategorie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ter vergelyking, gebruik> 5, <10 of = 324. Gebruik reekse 5:10 (vir waardes tussen 5 en 10)." DocType: Google Calendar,Pull from Google Calendar,Trek uit Google Kalender apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,help DocType: User,Login Before,Login voor @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Versteek naweke apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genereer outomaties herhalende dokumente. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,is +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Info-teken apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Waarde vir {0} kan nie 'n lys wees nie DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet hierdie geldeenheid geformateer word? As dit nie ingestel is nie, sal die stelsel standaard gebruik word" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Dien {0} dokumente in apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Jy moet ingeteken wees en het die stelselbestuurderrol om back-ups te kan kry. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fout met verbinding met die QZ-lade-toepassing ...

Om die Raw Print-funksie te gebruik, moet u QZ Tray-program geïnstalleer en loop.

Klik hier om QZ Tray af te laai en te installeer .
Klik hier om meer te wete te kom oor rou druk ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Drukkaart kartering apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Stoor asseblief voor aanheg. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Wil u alle gekoppelde dokumente kanselleer? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Bygevoeg {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Veldtipe kan nie verander word van {0} na {1} in ry {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rol Toestemmings DocType: Help Article,Intermediate,Intermediêre +apps/frappe/frappe/config/settings.py,Email / Notifications,E-pos / kennisgewings apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} verander na {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Gekanselleer dokument herstel as konsep DocType: Data Migration Run,Start Time,Begin Tyd @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ka apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ongeldige ontvanger adres DocType: Workflow State,step-forward,tree vorentoe DocType: System Settings,Allow Login After Fail,Laat aanmelding ná mislukking toe +DocType: DocType Link,DocType Link,Doktipe-skakel DocType: Role Permission for Page and Report,Set Role For,Stel rol vir DocType: GCalendar Account,The name that will appear in Google Calendar,Die naam wat in Google Kalender verskyn apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direkte kamer met {0} bestaan reeds. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Skep ' DocType: Contact,Google Contacts,Google Kontakte DocType: GCalendar Account,GCalendar Account,GCalendar-rekening DocType: Email Rule,Is Spam,Is Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,laaste apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Verslag {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Oop {0} DocType: Data Import Beta,Import Warnings,Invoerwaarskuwings @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok-teken apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumente verwyder apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Die CSV-formaat is hooflettergevoelig apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop-ikoon bestaan reeds +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Spesifiseer in watter domeine die skyfies moet verskyn. As niks gespesifiseer word nie, word die skyfie standaard in alle domeine gewys." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dupliseer apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Veld {1} in ry {2} kan sonder verstek verborge en verpligtend wees DocType: Newsletter,Create and Send Newsletters,Skep en stuur nuusbriewe @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Kalender-gebeurtenis-ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Ouer" beteken die ouertafel waarin hierdie ry bygevoeg moet word apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Hersieningspunte: +DocType: Scheduled Job Log,Scheduled Job Log,Geplande werklogboek +DocType: Server Script,Before Delete,Voordat u dit uitvee apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Gedeel met apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Heg lêers / URL's aan en voeg in tabel by. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Boodskap nie opstelling nie @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Stellings vir die oor ons bladsy apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Strook betaling gateway instellings apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Druk Gestuur na die drukker! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiepunte +DocType: Notification Settings,Energy Points,Energiepunte +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tyd {0} moet in formaat wees: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,bv. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Genereer sleutels apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Dit sal u data permanent verwyder. DocType: DocType,View Settings,Bekyk instellings +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nuwe kennisgewing DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Versoek struktuur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Kontroleurmetode get_razorpay_order ontbreek DocType: Personal Data Deletion Request,Pending Verification,Hangende verifikasie DocType: Website Meta Tag,Website Meta Tag,Meta-webwerf vir webwerf DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",As nie standaard poort (bv. 587). As jy in Google Cloud probeer poort 2525. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Die skoonmaak van einddatum, aangesien dit nie in die verlede vir gepubliseerde bladsye kan wees nie." DocType: User,Send Me A Copy of Outgoing Emails,Stuur vir my 'n afskrif van uitgaande e-posse -DocType: System Settings,Scheduler Last Event,Skeduler Laaste Event DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Voeg Google Analytics ID by: bv. UA-89XXX57-1. Soek asseblief hulp op Google Analytics vir meer inligting. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Wagwoord kan nie meer as 100 karakters lank wees nie DocType: OAuth Client,App Client ID,App Client ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nuwe wagwoord apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} het hierdie dokument met {1} gedeel DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Invoersjabloon moet 'n kop en minstens een ry bevat. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Kalender is opgestel. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Opstel van die top navigasie balk, footer en logo." DocType: Web Form Field,Max Value,Maksimum waarde @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Gebruikers Sosiale aanmelding apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} het u werk op {1} met {2} punt gekritiseer DocType: Contact,All,Almal DocType: Email Queue,Recipient,ontvanger +DocType: Webhook,Webhook Security,Webhook-sekuriteit DocType: Communication,Has Attachment,Het aanhangsel DocType: Address,Sales User,Verkope gebruiker apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Sleep-en-Drop-instrument om Print Formats te bou en aan te pas. @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrasie ID-veld DocType: Dashboard Chart,Last Synced On,Laas gesinkroniseer op DocType: Comment,Comment Type,Soort kommentaar DocType: OAuth Client,OAuth Client,OAuth-kliënt -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} het u werk op {1} {2} gekritiseer DocType: Assignment Rule,Users,gebruikers DocType: Address,Odisha,Odisha DocType: Report,Report Type,Verslag Tipe @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Webwerf skyfie-item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Self-goedkeuring word nie toegelaat nie DocType: GSuite Templates,Template ID,Sjabloon ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombinasie van Toekenningstipe ( {0} ) en Reaksie Tipe ( {1} ) word nie toegelaat nie -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nuwe boodskap van {0} DocType: Portal Settings,Default Role at Time of Signup,Verstekrol by tyd van inskrywing DocType: DocType,Title Case,Titel Saak apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klik op die onderstaande skakel om u data af te laai apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Aktiveer e-pos inkassie vir gebruiker {0} DocType: Data Migration Run,Data Migration Run,Data Migrasie Begin DocType: Blog Post,Email Sent,E-pos is gestuur -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,ouer DocType: DocField,Ignore XSS Filter,Ignoreer XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,verwyder apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox Friends instellings @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,tougestaan DocType: Braintree Settings,Use Sandbox,Gebruik Sandbox apps/frappe/frappe/utils/goal.py,This month,Hierdie maand apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuwe persoonlike drukformaat +DocType: Server Script,Before Save (Submitted Document),Voordat u dit stoor (ingedien dokument) DocType: Custom DocPerm,Create,Skep apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nie meer items om te vertoon nie apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Gaan na die vorige rekord @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Skuif na asblik DocType: Web Form,Web Form Fields,Web vorm velde DocType: Data Import,Amended From,Gewysig Van +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Voeg 'n hulpvideo-skakel by, net as die gebruiker nie 'n idee het oor wat hy in die skyfie moet invul nie." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Waarskuwing: Kan nie {0} vind in enige tabel wat verband hou met {1} DocType: S3 Backup Settings,eu-north-1,EU-noord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Hierdie dokument is tans in die ry vir uitvoering. Probeer asseblief weer @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Uitvoer vanaf apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Gevorderde soek apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,U mag nie die nuusbrief sien nie. +DocType: Dashboard Chart,Group By,Groep By DocType: User,Interests,Belange apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Wagwoordherstelinstruksies is na u e-pos gestuur DocType: Energy Point Rule,Allot Points To Assigned Users,Ken punte toe aan toegewese gebruikers @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Opdragreël apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Voorgestelde gebruikersnaam: {0} DocType: Assignment Rule Day,Day,dag apps/frappe/frappe/public/js/frappe/desk.js,Modules,modules +DocType: DocField,Mandatory Depends On,Verpligtend hang af apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Betaal Sukses apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Geen {0} pos DocType: OAuth Bearer Token,Revoked,herroep @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Zijbalk en kommentaar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 'n dokument verander na Kanselleer en dit stoor, sal dit 'n nuwe nommer kry wat 'n weergawe van die ou nommer is." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nie toegelaat om {0} -dokument aan te heg nie, aktiveer asseblief toelaat dat druk vir {0} in Drukinstellings toegelaat word" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opgestel nie. Skep asseblief 'n nuwe e-posrekening vanaf Opstel> E-pos> E-posrekening apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Sien die dokument by {0} DocType: Stripe Settings,Publishable Key,Publiseerbare sleutel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Begin invoer @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,breuk apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Geleentheid gesinkroniseer met Google Kalender. DocType: LDAP Settings,LDAP First Name Field,LDAP Voornaam Veld DocType: Contact,Middle Name,Middelnaam +DocType: DocField,Property Depends On,Eiendom hang af DocType: Custom Field,Field Description,Veld Beskrywing apps/frappe/frappe/model/naming.py,Name not set via Prompt,Naam nie ingestel via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Dateer {0} van {1}, {2} op" DocType: Auto Email Report,Filters Display,Filters Wys apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",'gewysigde_van' -veld moet aanwesig wees om 'n wysiging te doen. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} waardeer u werk op {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Stoor filters DocType: Address,Plant,plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Antwoord almal @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,gids-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,verslag: DocType: Print Settings,Print taxes with zero amount,Druk belasting met nul bedrag apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} mag nie hernoem word nie +DocType: Server Script,Before Insert,Voordat u dit insit DocType: Custom Script,Custom Script,Aangepaste skrif DocType: Address,Address Line 2,Adreslyn 2 DocType: Address,Reference,verwysing apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Toevertrou aan -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel asb. Standaard-e-posrekening op vanaf Opstel> E-pos> E-posrekening DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migrasie Mapping Detail DocType: Data Import,Action,aksie DocType: GSuite Settings,Script URL,Skrip URL @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,In die lys skerm DocType: Email Account,Use TLS,Gebruik TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Ongeldige aanmelding of wagwoord +DocType: Scheduled Job Type,Weekly Long,Weekliks lank apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Laai sjabloon af apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Voeg pasgemaakte javascript by vorms. ,Role Permissions Manager,Rol Toestemmings Bestuurder apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Naam van die nuwe drukformaat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Skuif sybalk +DocType: Server Script,After Save (Submitted Document),Na stoor (ingedien dokument) DocType: Data Migration Run,Pull Insert,Trek invoeging DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maksimum punte toegelaat na vermenigvuldiging van punte met die vermenigvuldigerwaarde (Let wel: laat hierdie veld leeg of stel 0 vir geen limiet nie) @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nie geïnstalleer nie apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Laai af met data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},gewysigde waardes vir {0} {1} +DocType: Server Script,Before Cancel,Voordat u kanselleer DocType: Workflow State,hand-right,hand-reg DocType: Website Settings,Subdomain,subdomein DocType: S3 Backup Settings,Region,streek @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Ou wagwoord DocType: S3 Backup Settings,us-east-1,ons-oos-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Boodskappe van {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Om kolomme te formateer, gee kolomletters in die navraag." +DocType: Onboarding Slide,Slide Fields,Skyfievelde DocType: Has Domain,Has Domain,Het Domein DocType: User,Allowed In Mentions,Toegelaat om in te noem apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Het jy nie 'n rekening? Teken aan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Kan nie ID-veld verwyder nie apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan nie Toewys Wys stel indien nie Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Ingetekende dokumente apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Gebruikerinstellings DocType: Report,Reference Report,Verwysingsverslag DocType: Activity Log,Link DocType,Skakel DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Magtig toegang tot Goo apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Die bladsy wat jy soek, word ontbreek. Dit kan wees omdat dit verskuif word of daar is 'n tik in die skakel." apps/frappe/frappe/www/404.html,Error Code: {0},Fout Kode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrywing vir aanbieding bladsy, in gewone teks, slegs 'n paar lyne. (maksimum 140 karakters)" +DocType: Server Script,DocType Event,DocType-geleentheid apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} is verpligte velde DocType: Workflow,Allow Self Approval,Laat selfgoedkeuring toe DocType: Event,Event Category,Gebeurtenis Kategorie @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Jou naam apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Verbinding Sukses DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,'N Onboarding-skyfie van skyfietipe voortgaan bestaan reeds. DocType: DocType,Default Sort Field,Standaard sorteerveld DocType: File,Is Folder,Is gids DocType: Document Follow,DocType,DocType @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Waardes DocType: Workflow State,arrow-up,pyl-up DocType: Dynamic Link,Link Document Type,Koppel dokumenttipe apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Daar moet ten minste een ry vir die {0} tabel wees +DocType: Server Script,Server Script,Bediener skrif apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Om outomatiese herhaling te konfigureer, skakel 'Laat outomatiese herhaling toe' vanaf {0}." DocType: OAuth Bearer Token,Expires In,Verval In +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Die aantal kere wat u die stel velde wil herhaal (bv. As u 3 klante in die skyfie wil hê, stel hierdie veld op 3. Slegs die eerste stel velde word as verpligtend in die skyfie getoon)" DocType: DocField,Allow on Submit,Laat toe op Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Uitsondering Tipe @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,kop apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,komende gebeure apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Voer asseblief waardes in vir die Toegangsleutel vir Toegang en App Geheime Sleutel +DocType: Email Account,Append Emails to Sent Folder,Voeg e-posse by die gestuurde vouer DocType: Web Form,Accept Payment,Aanvaar betaling apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Kies lysitem apps/frappe/frappe/config/core.py,A log of request errors,'N Teken van versoekfoute @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,bygedra apps/frappe/frappe/config/customization.py,Form Customization,Vorm aanpassing apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Geen aktiewe sessies DocType: Web Form,Route to Success Link,Roete na sukses skakel -DocType: Top Bar Item,Right,reg +DocType: Onboarding Slide Field,Right,reg apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Geen opkomende geleenthede nie DocType: User,User Type,Gebruiker Tipe DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Probeer asseblie apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL moet begin met 'http: //' of 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opsie 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Dit kan nie ongedaan gemaak word nie DocType: Workflow State,Edit,wysig DocType: Website Settings,Chat Operators,Chat Operateurs DocType: S3 Backup Settings,ca-central-1,ca-sentrale-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,U het ongestoorde veranderinge in hierdie vorm. Slaan asseblief voor jy verder gaan. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,Standaard vir {0} moet 'n opsie wees -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Verslag met meer as 10 kolomme lyk beter in Landskapmodus. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ongeldige veldnaam: {0} DocType: Milestone,Milestone,mylpaal @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Gaan na {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-posse is gedemp apps/frappe/frappe/config/integrations.py,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 weke gelede +DocType: Onboarding Slide,Slide Description,Skyfie beskrywing DocType: Communication,Error,fout apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Stel asseblief eers 'n boodskap op DocType: Auto Repeat,End Date,Einddatum @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Groepsetiket DocType: Kanban Board,Kanban Board,Kanban Raad apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakte is opgestel. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord sal uitgevoer word +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Geen e-posrekening geassosieer met die gebruiker nie. Voeg 'n rekening by onder Gebruiker> E-posboks. DocType: DocField,Report Hide,Verslag versteek apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Boombeskouing is nie beskikbaar vir {0} DocType: DocType,Restrict To Domain,Beperk om te Domein DocType: Domain,Domain,domein +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ongeldige lêer-URL. Kontak die stelseladministrateur. DocType: Custom Field,Label Help,Etikethulp DocType: Workflow State,star-empty,ster-leë apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Data is dikwels maklik om te raai. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,-Hand verlaat DocType: Data Import,If you are updating/overwriting already created records.,As u alreeds rekords opdateer / oorskryf. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Is Global DocType: Email Account,Use SSL,Gebruik SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,play-sirkel apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Die dokument kon nie korrek toegeken word nie apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ongeldige "depends_on" uitdrukking @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Laaste verfris apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Vir dokumenttipe DocType: Workflow State,arrow-right,pyl-regs +DocType: Server Script,API Method,API-metode DocType: Workflow State,Workflow state represents the current state of a document.,Werkstroomstaat verteenwoordig die huidige toestand van 'n dokument. DocType: Letter Head,Letter Head Based On,Briefhoof gebaseer op apps/frappe/frappe/utils/oauth.py,Token is missing,Token ontbreek @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,weer geskakel DocType: Print Settings,Compact Item Print,Kompakte Item Druk DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Herlei URL +DocType: Onboarding Slide Field,Placeholder,plekhouer DocType: SMS Settings,Enter url parameter for receiver nos,Gee url parameter vir ontvanger nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Gebruik altyd rekening se naam as die sender se naam @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,huis DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Gebruiker kan inskakel met e-pos-ID of gebruikersnaam DocType: Workflow State,question-sign,vraag-teken -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} is gedeaktiveer apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Veld "roete" is verpligtend vir Web Views apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Voeg kolom voor {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Die gebruiker uit hierdie veld sal punte kry @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,As Eienaar DocType: Data Migration Mapping,Push,druk apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Laat lêers hier neer DocType: OAuth Authorization Code,Expiration time,Vervaldatum +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Maak dokumente oop DocType: Web Page,Website Sidebar,Website Zijbalk DocType: Web Form,Show Sidebar,Wys Zijbalk apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Jy moet ingeteken wees om toegang te verkry tot hierdie {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale kort DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Kon nie {0} in {1} vind nie apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Name en vanne self is maklik om te raai. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument hernoem van {0} na {1} apps/frappe/frappe/config/website.py,Knowledge Base,Kennis basis DocType: Workflow State,briefcase,aktetas apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Waarde kan nie verander word vir {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Drukformaat apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Skakel Rooster View apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Gaan na die volgende rekord +DocType: System Settings,Time Format,Tydformaat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ongeldige betaling gateway credentials DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dit is die sjabloon lêer wat gegenereer word met slegs die rye wat fout het. U moet hierdie lêer gebruik vir korreksie en invoer. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Stel toestemmings op dokumentsoorte en -rolle @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,antwoord apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Bladsye in die lessenaar (plekhouers) DocType: DocField,Collapsible Depends On,Opvoubaar hang af DocType: Print Style,Print Style Name,Druk Styl Naam +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Groep per veld is verpligtend om 'n dashboardkaart te skep DocType: Print Settings,Allow page break inside tables,Laat bladsybreek binne-in tabelle toe DocType: Email Account,SMTP Server,SMTP-bediener DocType: Print Format,Print Format Help,Drukformaathulp apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} kamer moet ten minste een gebruiker hê. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,tel +DocType: Dashboard Chart,Group By Type,Groepeer volgens tipe apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nuwe opmerking oor {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},herstel {0} as {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","As u opdateer, kies asseblief "Oorskryf" anders sal bestaande rye nie uitgevee word nie." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Gebruiker DocType: Web Form,Web Form,Web vorm apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} moet in formaat wees: {1} DocType: About Us Settings,Org History Heading,Org Geskiedenis Opskrif +DocType: Scheduled Job Type,Scheduled Job Type,Geskeduleerde postipe DocType: Print Settings,Allow Print for Cancelled,Laat Print vir gekanselleer toe DocType: Communication,Integrations can use this field to set email delivery status,Integrasies kan hierdie veld gebruik om e-pos afleweringstatus te stel +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,U het nie die regte om alle gekoppelde dokumente te kanselleer nie. DocType: Web Form,Web Page Link Text,Webblad skakel teks DocType: Page,System Page,Stelsel Bladsy apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Stel standaard formaat, bladsy grootte, druk styl ens." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Aanpassings vir {0} uitgevoer na:
{1} DocType: Website Settings,Include Search in Top Bar,Sluit Soek in die boonste balk in +DocType: Scheduled Job Type,Daily Long,Daagliks lank DocType: GSuite Settings,Allow GSuite access,Laat GSuite toegang toe DocType: DocType,DESC,Latere DocType: DocType,Naming,benaming @@ -3476,6 +3597,7 @@ DocType: Notification,Send days before or after the reference date,Stuur dae voo DocType: User,Allow user to login only after this hour (0-24),Laat gebruiker toe om eers na hierdie uur in te teken (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Ken een vir een in volgorde toe DocType: Integration Request,Subscription Notification,Inskrywing kennisgewing +DocType: Customize Form Field, Allow in Quick Entry ,Laat vinnige toegang toe apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,of heg 'n DocType: Auto Repeat,Start Date,Begindatum apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,waarde @@ -3490,6 +3612,7 @@ DocType: Google Drive,Backup Folder ID,Rugsteunvouer-ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nie in ontwikkelaar af! Stel in site_config.json of maak 'Custom' DocType. DocType: Workflow State,globe,wêreld DocType: System Settings,dd.mm.yyyy,dd.mm.jjjj +DocType: Onboarding Slide Help Link,Video,video DocType: Assignment Rule,Priority,prioriteit DocType: Email Queue,Unsubscribe Param,Teken Param uit DocType: DocType,Hide Sidebar and Menu,Versteek sybalk en menu @@ -3501,6 +3624,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Laat invoer toe (via data i apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,float DocType: Print Settings,Page Settings,Bladsy instellings +DocType: Notification Settings,Notification Settings,Kennisgewinginstellings apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Spaar ... apps/frappe/frappe/www/update-password.html,Invalid Password,Ongeldige Wagwoord apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} rekord suksesvol ingevoer uit {1}. @@ -3516,6 +3640,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Letterkop-prentjie DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron-formaat apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Verslag DocType: SMS Settings,Use POST,Gebruik POST DocType: Communication,SMS,SMS @@ -3560,18 +3685,20 @@ DocType: Workflow,Allow approval for creator of the document,Laat goedkeuring vi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Stoor verslag DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Bedieneraksie apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrateur het toegang verkry op {0} op {1} via IP-adres {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Ouerveld moet 'n geldige veldnaam wees apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Misluk tydens die verandering van intekening DocType: LDAP Settings,LDAP Group Field,LDAP-groepveld +DocType: Notification Subscribed Document,Notification Subscribed Document,Kennisgewing ingeteken dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Gelykes apps/frappe/frappe/core/doctype/doctype/doctype.py,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Die opsie 'Dynamic Link' tipe veld moet na 'n ander skakelveld verwys met opsies as 'DocType' DocType: About Us Settings,Team Members Heading,Span Lede Opskrif apps/frappe/frappe/utils/csvutils.py,Invalid CSV Format,Ongeldige CSV-formaat -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fout met verbinding met die QZ-lade-toepassing ...

Die QZ Tray-toepassing moet geïnstalleer en loop om die funksie Raw Print te gebruik.

Klik hier om QZ Tray af te laai en te installeer .
Klik hier vir meer inligting oor rou drukwerk ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Stel aantal rugsteun DocType: DocField,Do not allow user to change after set the first time,Moenie toelaat dat die gebruiker die eerste keer na die stel verander nie apps/frappe/frappe/utils/data.py,1 year ago,1 jaar gelede +DocType: DocType,Links Section,Skakels Afdeling apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Kyk log van alle druk, aflaai en uitvoer van gebeure" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 maand DocType: Contact,Contact,Kontak @@ -3598,16 +3725,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,nuwe epos DocType: Custom DocPerm,Export,uitvoer apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Aktiveer {0} om Google Kalender te gebruik. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Voeg ook die statusafhanklikheidsveld {0} by +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Suksesvol opgedateer {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-bak het misluk: DocType: Dropbox Settings,Dropbox Settings,Dropbox instellings DocType: About Us Settings,More content for the bottom of the page.,Meer inhoud vir die onderkant van die bladsy. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Hierdie dokument is teruggestel apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive-rugsteun suksesvol. +DocType: Webhook,Naming Series,Naming Series DocType: Workflow,DocType on which this Workflow is applicable.,DocType waarop hierdie Workflow van toepassing is. DocType: User,Enabled,enabled apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Kon nie opstelling voltooi nie apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nuut {0}: {1} -DocType: Tag Category,Category Name,Kategorie Naam +DocType: Blog Category,Category Name,Kategorie Naam apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Ouer word benodig om data oor kindertabelle te kry apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Voer inskrywers in DocType: Print Settings,PDF Settings,PDF-instellings @@ -3643,6 +3773,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,kalender apps/frappe/frappe/client.py,No document found for given filters,Geen dokument vir gegewe filters gevind nie apps/frappe/frappe/config/website.py,A user who posts blogs.,'N Gebruiker wat blogs plaas. +DocType: DocType Action,DocType Action,DocType-aksie apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Nog {0} met die naam {1} bestaan, kies 'n ander naam" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Webwerf Tema Beeld @@ -3652,6 +3783,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Kan nie l apps/frappe/frappe/config/integrations.py,Backup,Ondersteuning apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Dokumenttipe is nodig om 'n paneelbordkaart te skep DocType: DocField,Read Only,Lees net +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Kon nie razorpay-bestelling skep nie apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nuwe Nuusbrief DocType: Energy Point Log,Energy Point Log,Energiepunt log DocType: Print Settings,Send Print as PDF,Stuur Druk as PDF @@ -3677,16 +3809,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bev apps/frappe/frappe/www/login.html,Or login with,Of log in met DocType: Error Snapshot,Locals,locals apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommunikeer via {0} op {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} het jou genoem in 'n opmerking in {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Kies groep volgens ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,bv. (55 + 434) / 4 of = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} is nodig DocType: Integration Request,Integration Type,Integrasietipe DocType: Newsletter,Send Attachements,Stuur Aanhegsels +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Geen filters gevind nie apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakte-integrasie. DocType: Transaction Log,Transaction Log,Transaksie Log apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistieke gebaseer op die prestasie van verlede maand (van {0} tot {1}) DocType: Contact Us Settings,City,Stad +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Versteek kaarte vir alle gebruikers apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktiveer Laat outomatiese herhaling toe vir die leersteks {0} in die vorm aanpas DocType: DocField,Perm Level,Permvlak apps/frappe/frappe/www/confirm_workflow_action.html,View document,Bekyk dokument @@ -3697,6 +3830,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","As dit geaktiveer is, word veranderinge aan die dokument nagespoor en in die tydlyn vertoon" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'In Global Search' word nie toegelaat vir tipe {0} in ry {1} DocType: Energy Point Log,Appreciation,waardering +DocType: Dashboard Chart,Number of Groups,Aantal groepe apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Kyk lys DocType: Workflow,Don't Override Status,Moenie die status oorheers nie apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Soekterm @@ -3738,7 +3872,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-noordwes-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limiet Aantal DB Backups DocType: Custom DocPerm,Level,vlak -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Laaste 30 dae DocType: Custom DocPerm,Report,verslag apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Bedrag moet groter as 0 wees. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Gekoppel aan QZ-skinkbord! @@ -3755,6 +3888,7 @@ DocType: S3 Backup Settings,us-west-2,ons-wes-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Kies Kindertabel apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Laai primêre aksie uit apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,verandering +DocType: Social Login Key,User ID Property,Gebruiker-ID-eiendom DocType: Email Domain,domain name,domein naam DocType: Contact Email,Contact Email,Kontak e-pos DocType: Kanban Board Column,Order,Orde @@ -3777,7 +3911,7 @@ DocType: Contact,Last Name,Van DocType: Event,Private,Privaat apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Geen waarskuwings vir vandag nie DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Stuur e-pos Print Aanhegsels as PDF (Aanbeveel) -DocType: Web Page,Left,links +DocType: Onboarding Slide Field,Left,links DocType: Event,All Day,Heeldag apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Dit lyk of daar iets fout is met die betaling gateway opset van hierdie webwerf. Geen betaling is gemaak nie. DocType: GCalendar Settings,State,staat @@ -3809,7 +3943,6 @@ DocType: Workflow State,User,gebruiker DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Wys titel in die blaaier venster as "Voorvoegsel - titel" DocType: Payment Gateway,Gateway Settings,Gateway instellings apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teks in dokument tipe -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Begin toetse apps/frappe/frappe/handler.py,Logged Out,Logged Out apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Meer ... DocType: System Settings,User can login using Email id or Mobile number,Gebruiker kan inskakel met e-pos of mobiele nommer @@ -3825,6 +3958,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,opsomming DocType: Event,Event Participants,Event Deelnemers DocType: Auto Repeat,Frequency,Frekwensie +DocType: Onboarding Slide,Slide Order,Skyfie bestel DocType: Custom Field,Insert After,Voeg na DocType: Event,Sync with Google Calendar,Sinkroniseer met Google Kalender DocType: Access Log,Report Name,Rapporteer Naam @@ -3852,6 +3986,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksimum breedte vir tipe Geld is 100px in ry {0} apps/frappe/frappe/config/website.py,Content web page.,Inhoud webblad. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Voeg 'n nuwe rol by +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besoek die webblad +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nuwe opdrag DocType: Google Contacts,Last Sync On,Laaste sinchroniseer op DocType: Deleted Document,Deleted Document,Dokument verwyder apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oeps! Iets het verkeerd geloop @@ -3862,7 +3998,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Kliënte kant skrip uitbreidings in Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Rekords vir die volgende doktipes sal gefiltreer word -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Skeduleerder onaktief +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Skeduleerder onaktief DocType: Blog Settings,Blog Introduction,Blog Inleiding DocType: Global Search Settings,Search Priorities,Soek prioriteite DocType: Address,Office,kantoor @@ -3872,12 +4008,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Skakelbord op die instrumentb DocType: User,Email Settings,E-pos instellings apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Drop hier DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","As dit geaktiveer is, kan die gebruiker vanaf enige IP-adres aanmeld met behulp van Two Factor Auth. Dit kan ook vir alle gebruikers in die stelselinstellings gestel word" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Drukkerinstellings ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Voer asseblief u wagwoord in om voort te gaan apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,my apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nie 'n geldige staat nie apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Van toepassing op alle soorte dokumente -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiepuntopdatering +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energiepuntopdatering +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Laat werk slegs daagliks as dit nie aktief is nie (dae) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Kies asseblief 'n ander betaalmetode. PayPal ondersteun nie transaksies in valuta '{0}' DocType: Chat Message,Room Type,Kamer tipe DocType: Data Import Beta,Import Log Preview,Voer logvoorskou in @@ -3886,6 +4022,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-sirkel DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP Gebruikerskepping en Kartering apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Jy kan dinge vind deur te vra om 'oranje in kliënte te vind' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Vandag se gebeure apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Jammer! Gebruiker moet volledige toegang tot hul eie rekord hê. ,Usage Info,Gebruik Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Wys sleutelbordkortpaaie @@ -3902,6 +4039,7 @@ DocType: DocField,Unique,unieke apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} waardeer op {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Gedeeltelike sukses DocType: Email Account,Service,diens +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opstel> Gebruiker DocType: File,File Name,Lêernaam apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Het nie {0} vir {0} ({1}) gevind nie apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3915,6 +4053,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Voltooi DocType: GCalendar Settings,Enable,in staat te stel DocType: Google Maps Settings,Home Address,Huisadres apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),U kan slegs op een slag maksimum 5000 rekords oplaai. (kan in sommige gevalle minder wees) +DocType: Report,"output in the form of `data = [columns, result]`","uitvoer in die vorm van 'data = [kolomme, resultaat]'" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Toepaslike dokumenttipes apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Stel reëls op vir gebruikersopdragte. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Onvoldoende Toestemming vir {0} @@ -3930,7 +4069,6 @@ DocType: Communication,To and CC,Na en bc DocType: SMS Settings,Static Parameters,Statiese Parameters DocType: Chat Message,Room,kamer apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},opgedateer na {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Agtergrondgeleenthede loop nie. Kontak die administrateur DocType: Portal Settings,Custom Menu Items,Aangepaste menu-items apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Alle prente wat aan die webwerf skyfie geheg is, moet publiek wees" DocType: Workflow State,chevron-right,Chevron-reg @@ -3945,11 +4083,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} waardes gekies DocType: DocType,Allow Auto Repeat,Laat outomatiese herhaling toe apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Geen waardes om te wys nie +DocType: DocType,URL for documentation or help,URL vir dokumentasie of hulp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-pos sjabloon apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} rekord suksesvol opgedateer. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Gebruiker {0} het nie toegang tot doktipe nie via roltoestemming vir dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Beide login en wagwoord word vereis +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,laat \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Verfris asseblief om die nuutste dokument te kry. DocType: User,Security Settings,Sekuriteitsinstellings apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Voeg kolom by @@ -3959,6 +4099,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Vind aangeheg {0}: {1} DocType: Web Page,Set Meta Tags,Stel metatags +DocType: Email Account,Use SSL for Outgoing,Gebruik SSL vir uitgaande 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 wat vir Link na webbladsy vertoon moet word as hierdie vorm 'n webblad het. Skakelroete sal outomaties gegenereer word gebaseer op `page_name` en` parent_website_route` DocType: S3 Backup Settings,Backup Limit,Rugsteunlimiet DocType: Dashboard Chart,Line,lyn @@ -3991,4 +4132,3 @@ DocType: DocField,Ignore User Permissions,Ignoreer gebruikertoestemmings apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Geslaag apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Vra asseblief u administrateur om u aanmelding te verifieer DocType: Domain Settings,Active Domains,Aktiewe domeine -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Wys log diff --git a/frappe/translations/am.csv b/frappe/translations/am.csv index 2ab79982c2..177fb0d55a 100644 --- a/frappe/translations/am.csv +++ b/frappe/translations/am.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,አንድ መጠን መስክ እባክዎ ይምረጡ. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,የማስመጣት ፋይል በመጫን ላይ ... DocType: Assignment Rule,Last User,የመጨረሻው ተጠቃሚ። -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","አዲስ ተግባር, {0}: {1} የተሰጠህ ተደርጓል. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,የክፍለ ጊዜ ነባሪዎች ተቀምጠዋል። apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ፋይልን እንደገና ጫን። DocType: Email Queue,Email Queue records.,የኢሜይል ወረፋ መዝገቦች. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ዛፍ DocType: User,User Emails,የተጠቃሚ ኢሜይሎች DocType: User,Username,የተጠቃሚ ስም apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ዚፕ ያስመጡ +DocType: Scheduled Job Type,Create Log,ምዝግብ ማስታወሻ ፍጠር apps/frappe/frappe/model/base_document.py,Value too big,ዋጋ በጣም ትልቅ ነው DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,አሂድ ስክሪፕት ሙከራ @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,ወርሃዊ DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,ገቢ አንቃ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,አደጋ -DocType: Address,Email Address,የ ኢሜል አድራሻ +apps/frappe/frappe/www/login.py,Email Address,የ ኢሜል አድራሻ DocType: Workflow State,th-large,ኛ-ትልቅ DocType: Communication,Unread Notification Sent,የተላከ ያልተነበበ ማሳወቂያ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ወደ ውጪ ላክ አይፈቀድም. እርስዎ ወደ ውጪ ወደ {0} ሚና ያስፈልገናል. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ሰ DocType: DocType,Is Published Field,መስክ የታተመ ነው DocType: GCalendar Settings,GCalendar Settings,የ GCalendar ቅንብሮች DocType: Email Group,Email Group,የኢሜይል ቡድን +apps/frappe/frappe/__init__.py,Only for {},ለ {} ብቻ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",ጉግል ቀን መቁጠሪያ - ከ Google ቀን መቁጠሪያ ክስተት {0} መሰረዝ አልተቻለም የስህተት ኮድ {1} ፡፡ DocType: Event,Pulled from Google Calendar,ከ Google ቀን መቁጠሪያ የተወሰደ። DocType: Note,Seen By,በ ተመልክቻለሁ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,በርካታ ያክሉ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,የተወሰነ የኃይል ነጥቦችን አግኝተዋል። apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,የሚሰራ የተጠቃሚ ምስል አይደለም. DocType: Energy Point Log,Reverted,ተሽሯል። DocType: Success Action,First Success Message,የመጀመሪያው የስኬት መልዕክት @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,አይደለ apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ትክክል ያልሆነ እሴት: {0} መሆን አለበት {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ለውጥ መስክ ንብረቶች (ደብቅ, ተነባቢ ብቻ, ፈቃድ ወዘተ)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,አድናቆት። +DocType: Notification Settings,Document Share,የሰነድ ድርሻ DocType: Workflow State,lock,ቁልፍ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ያግኙን ገጽ ቅንብሮች. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,አስተዳዳሪ የወጡ @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",ከነቃ ሰነዱ እንደታየው ምልክት ይደረግበታል ፣ አንድ ተጠቃሚ ለመጀመሪያ ጊዜ ሲከፍተው። DocType: Auto Repeat,Repeat on Day,በቀን ይድገሙት DocType: DocField,Color,ቀለም +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,ሁሉንም እንደተነበቡ ምልክት ያድርጉባቸው DocType: Data Migration Run,Log,ምዝግብ ማስታወሻ DocType: Workflow State,indent-right,ገብ-ቀኝ DocType: Has Role,Has Role,ሚና አለው @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback አሳይ። DocType: DocType,Default Print Format,ነባሪ ማተም ቅርጸት DocType: Workflow State,Tags,መለያዎች +DocType: Onboarding Slide,Slide Type,የተንሸራታች ዓይነት apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ማናችንም ብንሆን: ፍሰት መጨረሻ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","ያልሆኑ ልዩ ነባር እሴቶች አሉ እንደ {0} መስክ, {1} ውስጥ እንደ ልዩ ሊዘጋጅ አይችልም" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,የሰነድ አይነቶች @@ -135,7 +138,6 @@ DocType: Language,Guest,እንግዳ DocType: DocType,Title Field,የርእስ መስክ DocType: Error Log,Error Log,ስህተት ምዝግብ ማስታወሻ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,የተሳሳተ ዩ.አር.ኤል. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,ያለፉት 7 ቀናት። apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" ብቻ በትንሹ አስቸጋሪ "ABC" ይልቅ ለመገመት ያሉ ይደግማል DocType: Notification,Channel,ሰርጥ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ይህ ያልተፈቀደለት ነው ብለው የሚያስቡ ከሆነ, የ አስተዳዳሪ የይለፍ ቃል መለወጥ እባክዎ." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,ደምበኛ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,አምድ ይምረጡ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,እርስዎ ሊጫን በኋላ ይህ ቅጽ ተቀይሯል DocType: Address,Himachal Pradesh,Himachal ፕራዴሽ +DocType: Notification Log,Notification Log,የማሳወቂያ ምዝግብ ማስታወሻ DocType: System Settings,"If not set, the currency precision will depend on number format","ካልተዘጋጀ, ምንዛሬ ዝንፍ ቁጥር ቅርጸት ላይ ይወሰናል" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,አሪፍ አሞሌን ይክፈቱ። apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","በአገልጋዩ የሽቦ ውቅር ላይ ችግር ያለ ይመስላል. ካልተሳካ, ገንዘቡ ወደ ሂሳብዎ ተመላሽ ይደረጋል." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ላክ DocType: Workflow Action Master,Workflow Action Name,የስራ ፍሰት የእርምጃ ስም apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ሊዋሃዱ አይችሉም -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,አይደለም ዚፕ ፋይል DocType: Global Search DocType,Global Search DocType,ሁለንተናዊ ፍለጋ DocTpepe። DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,ኢሜይል የላከው ማን ነው? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ገበታን ቀያይር apps/frappe/frappe/desk/form/save.py,Did not cancel,ይቅር ማለት ነበር DocType: Social Login Key,Client Information,የደንበኛ መረጃ +DocType: Energy Point Rule,Apply this rule only once per document,ይህንን ሰነድ በአንድ ሰነድ አንድ ጊዜ ብቻ ይተግብሩ DocType: Workflow State,plus,እና +DocType: DocField,Read Only Depends On,አንብብ በ ላይ ብቻ የተመካ ነው apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,እንግዳ ወይም ጫኚውን እንደ አስተዳዳሪ ውስጥ ገብቷል DocType: Email Account,UNSEEN,ሩቁን apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,የፋይል አቀናባሪ @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,ምክንያት 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,ምንም እንቅስቃሴ የለም ፡፡ +DocType: Server Script,Script Manager,የስክሪፕት አቀናባሪ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ምንም እንቅስቃሴ የለም ፡፡ apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,የሶስተኛ ወገን መተግበሪያዎች apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,የ የስርዓት አስተዳዳሪ ይሆናል የመጀመሪያው ተጠቃሚ (ይህንን በኋላ ላይ መቀየር ይችላሉ). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ዛሬ ምንም ክስተቶች የሉም apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,የግምገማ ነጥቦችን ለራስዎ መስጠት አይችሉም። apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ለተመረጠው የ Docc ክስተት ማስገባት አለበት DocType: Workflow State,circle-arrow-up,ክበብ-ቀስት-ምትኬ @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},ለ {0}: {1} አልተፈቀደም። የተገደበ መስክ: {2} 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,You are not allowed to delete a standard Website Theme,አንድ መደበኛ ድረ-ገጽታ መሰረዝ አይፈቀድም +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},የመጀመሪያዎን {0} ይፍጠሩ DocType: Data Import,Log Details,የምዝግብ ማስታወሻዎች DocType: Workflow Transition,Example,ለምሳሌ DocType: Webhook Header,Webhook Header,Webhook ራስጌ @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,የውይይት ጀርባ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,አንብብ ምልክት አድርግበት apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} በማዘመን ላይ +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,የተመሳሳዩ የተንሸራታች ቅደም ተከተል ቀድሞውኑ የሚገኝ ሰሌዳ ላይ ተንሸራታች {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,አሰናክል ሪፖርት DocType: Translation,Contributed Translation Doctype Name,የተበረዘ ትርጉም የትርጉም ስም። +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ቅጽ አብጅ DocType: PayPal Settings,Redirect To,ወደ አቅጣጫ አዙር DocType: Data Migration Mapping,Pull,ይጎትቱ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ጃቫስክሪፕት ቅርጸት: frappe.query_reports [ 'REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,ሰነድ ማጋራቶች DocType: Energy Point Settings,Review Levels,የግምገማ ደረጃዎች DocType: Workflow State,Comment,አስተያየት DocType: Data Migration Plan,Postprocess Method,የድህረ-ዘርፍ ዘዴ +DocType: DocType Action,Action Type,የድርጊት አይነት apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ፎቶ አንሳ DocType: Assignment Rule,Round Robin,ክብ ሮቢን። apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","ከእነርሱ ፈርመውበት, ከዚያም በመሰረዝ እና በ ገብቷል ሰነዶችን መቀየር ይችላሉ." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,አስቀምጥ እንደ DocType: Comment,Seen,የታየው apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,ተጨማሪ ዝርዝሮችን አሳይ +DocType: Server Script,Before Submit,ከማስረከብዎ በፊት DocType: System Settings,Run scheduled jobs only if checked,መርጠነው ከሆነ ብቻ ነው መርሐግብር ስራዎችን አሂድ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,ክፍል ርዕሶች የነቃ ከሆነ ብቻ ነው ይታያሉ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,ማህደር @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,መሸወጃ መዳረሻ ቁልፍ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,በብጁ እስክሪፕት ውስጥ የ «_ < የተሳሳተ ቅጥያ» {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ለየትኛው እውቂያ መመሳሰል እንዳለበት የ Google እውቂያዎችን ይምረጡ። DocType: Web Page,Main Section (HTML),ዋና ክፍል (ኤችቲኤምኤል) +DocType: Scheduled Job Type,Annual,ዓመታዊ DocType: Workflow State,headphones,ማዳመጫዎች apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,የይለፍ ቃል ያስፈልጋል ወይም በመጠባበቅ ላይ የይለፍ ቃል መምረጥ ነው DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ለምሳሌ replies@yourcomany.com. ሁሉንም ምላሾች ይህን ገቢ መልዕክት ሳጥን ይመጣል. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook ዩ አር ኤል +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",በጠንቋዩ ውስጥ የተንሸራታችውን ቅደም ተከተል ይወስናል. ተንሸራታቹ መታየት የማይችል ከሆነ ፣ ቅድሚያ ወደ 0 መዋቀር አለበት። DocType: Data Migration Run,Current Mapping,የአሁኑ ካርታ apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,ልክ የሆነ የኢሜይል እና ስም ያስፈልጋል apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,ሁሉንም አባሪዎች የግል አድርገው ፡፡ @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,የሽግግር ደንቦች apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,በቅድመ እይታ ውስጥ {0} ረድፎችን ብቻ በማሳየት ላይ። apps/frappe/frappe/core/doctype/report/report.js,Example:,ለምሳሌ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ገደቦች DocType: Workflow,Defines workflow states and rules for a document.,አንድ ሰነድ የስራ ፍሰት ስቴቶች እና ደንቦች ይገልፃል. DocType: Workflow State,Filter,ማጣሪያ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},ለተጨማሪ መረጃ የስህተት ምዝግብሩን ይመልከቱ ፦ {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ኢዮብ። apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ዘግተው የወጡ: {1} DocType: Address,West Bengal,የምዕራብ ቤንጋል +DocType: Onboarding Slide,Information,መረጃ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: መድብ Submittable አይደለም ከሆነ አስገባ ማዘጋጀት አይቻልም DocType: Transaction Log,Row Index,የረድፍ ማውጫ DocType: Social Login Key,Facebook,ፌስቡክ @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,የአዝራር እገዛ DocType: Kanban Board Column,purple,ሐምራዊ DocType: About Us Settings,Team Members,ቡድን አባላት +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,የቀዘቀዙ ሥራዎችን በቀን ውስጥ አንድ ጊዜ ብቻ እንቅስቃሴ-አልባ ለሆኑ ጣቢያዎች ያካሂዳል ፡፡ ወደ 0 ከተዋቀረ ነባሪ 4 ቀናት DocType: Assignment Rule,System Manager,የስርዓት አስተዳዳሪ +DocType: Scheduled Job Log,Scheduled Job,መርሃግብር የተያዘለት ኢዮብ DocType: Custom DocPerm,Permissions,ፍቃዶች apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ለውስጣዊ ውህደት የተሸሸግ ዌብች DocType: Dropbox Settings,Allow Dropbox Access,መሸወጃ መዳረሻ ፍቀድ @@ -397,6 +415,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ባ DocType: Email Flag Queue,Email Flag Queue,የኢሜይል ይጠቁሙ ወረፋ DocType: Access Log,Columns / Fields,አምዶች / እርሻዎች። apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,የቅርጫት ቅርጸቶች ለህትመት ቅርጸቶች +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,የዳሽቦርድ ገበታ ለመፍጠር አጠቃላይ ተግባር መስክ ያስፈልጋል apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ክፍት መለየት አይቻልም {0}. ሌላ ነገር ይሞክሩ. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,የእርስዎ መረጃ ገብቷል apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} ተጠቃሚ ሊሰረዝ አይችልም @@ -412,11 +431,12 @@ DocType: Property Setter,Field Name,የመስክ ስም DocType: Assignment Rule,Assign To Users,ለተጠቃሚዎች መድብ ፡፡ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ወይም apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ሞጁል ስም ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ቀጥል +DocType: Onboarding Slide,Continue,ቀጥል apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,ጉግል ማዋሃድ ተሰናክሏል። DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,የምስክር ወረቀት apps/frappe/frappe/templates/includes/login/login.js,Verifying...,በማረጋገጥ ላይ ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,በ {0} {1} ላይ የእርስዎ ምደባ ተወግ hasል apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,የመጀመሪያው ውሂብ ዓምድ ባዶ መሆን አለበት. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,ሁሉንም ስሪቶች አሳይ apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,አስተያየት ይመልከቱ ፡፡ @@ -426,12 +446,14 @@ DocType: User,Restrict IP,የ IP ገድብ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ዳሽቦርድ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,በዚህ ጊዜ ኢሜይሎችን መላክ አልተቻለም apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",ጉግል ቀን መቁጠሪያ - በ Google ቀን መቁጠሪያ ውስጥ ክስተት {0} ን ማዘመን አልተቻለም ፣ የስህተት ኮድ {1}። +DocType: Notification Log,Email Content,የኢሜል ይዘት apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ይፈልጉ ወይም ትእዛዝ ይተይቡ DocType: Activity Log,Timeline Name,የጊዜ መስመር ስም apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,አንድ {0} ብቻ እንደ ዋና ሊቀናበር ይችላል። DocType: Email Account,e.g. smtp.gmail.com,ለምሳሌ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,አዲስ ደንብ አክል DocType: Contact,Sales Master Manager,የሽያጭ መምህር አስተዳዳሪ +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,መተግበሪያዎ እንዲሰራ ጃቫስክሪፕትን ማንቃት አለብዎት። DocType: User Permission,For Value,ለህሴ DocType: Event,Google Calendar ID,የ Google ቀን መቁጠሪያ መታወቂያ apps/frappe/frappe/www/complete_signup.html,One Last Step,አንድ የመጨረሻ ደረጃ @@ -446,6 +468,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP የመካከለኛ ስም መ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} ከ {1} በማስመጣት ላይ DocType: GCalendar Account,Allow GCalendar Access,የ GCalendar መዳረሻን ፍቀድ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} አስገዳጅ መስክ ነው +DocType: DocType,Documentation Link,የሰነድ አገናኝ apps/frappe/frappe/templates/includes/login/login.js,Login token required,የመግቢያ ማስመሰያ ይጠየቃል apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ወርሃዊ ደረጃ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,በርካታ የዝርዝር ንጥል ነገሮችን ይምረጡ። @@ -467,6 +490,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ፋይል ዩ አር ኤል DocType: Version,Table HTML,ማውጫ ኤችቲኤምኤል apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,ተመዝጋቢዎች ያክሉ +DocType: Notification Log,Energy Point,የኢነርጂ ነጥብ apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,ዛሬ ለ መጪ ክስተቶች DocType: Google Calendar,Push to Google Calendar,ወደ Google ቀን መቁጠሪያ ግፋ። DocType: Notification Recipient,Email By Document Field,ሰነድ መስክ በ ኢሜይል @@ -482,12 +506,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ውጪ DocType: Currency,Fraction Units,ክፍልፋይ አሃዶች apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} ከ {1} ወደ {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,እንደተከናወነ ምልክት አድርግበት DocType: Chat Message,Type,ዓይነት DocType: Google Settings,OAuth Client ID,OAuth የደንበኛ መታወቂያ DocType: Auto Repeat,Subject,ትምህርት apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ወደ መስሪያው ተመለስ DocType: Web Form,Amount Based On Field,የገንዘብ መጠን መስክ ላይ የተመሠረተ +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} ክትትል የሚደረግባቸው ስሪቶች የሉትም። apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,የተጠቃሚ አጋራ ግዴታ ነው DocType: DocField,Hidden,የተደበቀ DocType: Web Form,Allow Incomplete Forms,ያልተሟላ ቅጾች ፍቀድ @@ -510,6 +534,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,ማረጋገጫ ለማግኘት እባክዎ ኢሜይልዎን ያረጋግጡ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም DocType: Communication,Bounced,ካረፈ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,የ DocType: Deleted Document,Deleted Name,ተሰርዟል ስም apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,ሥርዓት እና የድር ጣቢያ ተጠቃሚዎች DocType: Workflow Document State,Doc Status,doc ሁኔታ @@ -520,6 +545,7 @@ DocType: Language,Language Code,የቋንቋ ኮድ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ማሳሰቢያ: በነባር ኢሜይሎች ለተሳኩ ምትኬዎች በነባሪነት ይላካሉ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,ማጣሪያ አክል apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},ኤስ ኤም ኤስ የሚከተሉትን ቁጥሮች ላከ: {0} +DocType: Notification Settings,Assignments,ምደባዎች apps/frappe/frappe/utils/data.py,{0} and {1},{0} እና {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,አንድ ውይይት ይጀምሩ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ሁልጊዜ የሕትመት ረቂቅ ሰነዶች ርዕስ "ረቂቅ" ለማከል @@ -528,6 +554,7 @@ DocType: Data Migration Run,Current Mapping Start,የአሁኑ የካርታ ጀ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,የኢሜይል እንደ አይፈለጌ መልዕክት ምልክት ተደርጎበታል DocType: Comment,Website Manager,የድር ጣቢያ አስተዳዳሪ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,የፋይል ሰቀላ አልተያያዘም. እባክዎ ዳግም ይሞክሩ. +DocType: Data Import Beta,Show Failed Logs,ያልተሳኩ የምዝግብ ማስታወሻዎችን አሳይ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ትርጉሞች apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,የመረጡት ረቂቅ ወይም የተሰረዙ ሰነዶችን apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ሰነድ {0} {1} በ {2} ውስጥ እንዲገለጽ ተዘጋጅቷል @@ -535,7 +562,9 @@ apps/frappe/frappe/model/document.py,Document Queued,የሰነድ ወረፋ DocType: GSuite Templates,Destination ID,መድረሻ መታወቂያ DocType: Desktop Icon,List,ዝርዝር DocType: Activity Log,Link Name,አገናኝ ስም +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,የለዎትም \ DocType: System Settings,mm/dd/yyyy,ወር / ቀን / ዓመት +DocType: Onboarding Slide,Onboarding Slide,በጀልባ ላይ ተንሸራታች ተንሸራታች apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,የተሳሳተ የሚስጥርቃል: DocType: Print Settings,Send document web view link in email,በኢሜይል ውስጥ ሰነድ የድር እይታ አገናኝ ላክ apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,ቀዳሚ @@ -596,6 +625,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},ስኬታማ: {0} ወደ {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,በማሳያ ውስጥ ተጠቃሚ ዝርዝሮችን መቀየር አይቻልም. https://erpnext.com ላይ አዲስ መለያ ለመመዝገብ እባክዎ apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ጣል ያድርጉ። +DocType: Dashboard Chart,Aggregate Function Based On,ድምር ተግባር ላይ የተመሠረተ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,ለውጦችን ለማድረግ ይህን የተባዙ እባክዎ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,ለማስቀመጥ አስገባን ይጫኑ apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,የፒዲኤፍ ትውልድ ምክንያቱም ይሰበር ምስል አገናኞች አልተሳካም @@ -609,7 +639,9 @@ DocType: Notification,Days Before,ቀናት በፊት apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ዕለታዊ ዝግጅቶች በተመሳሳይ ቀን መጨረስ አለባቸው። apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ያርትዑ ... DocType: Workflow State,volume-down,ድምጽ-ታች +DocType: Onboarding Slide,Help Links,የእገዛ አገናኞች apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ከዚህ የአይፒ አድራሻ ድረስ መድረሻ አይፈቀድም ፡፡ +DocType: Notification Settings,Enable Email Notifications,የኢሜይል ማሳወቂያዎችን ያንቁ apps/frappe/frappe/desk/reportview.py,No Tags,ምንም መለያዎች DocType: Email Account,Send Notification to,ወደ ማሳወቂያ ላክ DocType: DocField,Collapsible,ሊሰበሰቡ @@ -638,6 +670,7 @@ DocType: Google Drive,Last Backup On,የመጨረሻው ምትኬ በርቷል DocType: Customize Form Field,Customize Form Field,ቅጽ መስክ ያብጁ DocType: Energy Point Rule,For Document Event,ለሰነድ ዝግጅት። DocType: Website Settings,Chat Room Name,የውይይት ክፍል ስም +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,አልተለወጠም DocType: OAuth Client,Grant Type,ፍቃድ ስጥ አይነት apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,አንድ ተጠቃሚ የማበጀት ናቸው ሰነዶች ይመልከቱ DocType: Deleted Document,Hub Sync ID,የሃብ ማመሳሰል መታወቂያ @@ -645,6 +678,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,እ DocType: Auto Repeat,Quarterly,የሩብ ዓመት apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",የኢሜይል ጎራ አንድ ፍጠር: ለዚህ መለያ አልተዋቀረም? DocType: User,Reset Password Key,ዳግም አስጀምር የይለፍ ቁልፍ +DocType: Dashboard Chart,All Time,ሁልጊዜ apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},ሕገ ወጥ የሰነድ ሁኔታ ለ {0} DocType: Email Account,Enable Auto Reply,ራስ-መልስ አንቃ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,አይቼዋለሁ አይደለም @@ -657,6 +691,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,መ DocType: Email Account,Notify if unreplied,unreplied ከሆነ አሳውቅ apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR Code ይቃኙና የተከፈተውን ኮድ ያስገቡ. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ተመራቂዎችን ያንቁ። +DocType: Scheduled Job Type,Hourly Long,በየሰዓቱ ረዥም DocType: System Settings,Minimum Password Score,ዝቅተኛ የይለፍ ውጤት DocType: DocType,Fields,መስኮች DocType: System Settings,Your organization name and address for the email footer.,የኢሜይል ግርጌ የእርስዎ ድርጅት ስም እና አድራሻ. @@ -664,11 +699,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ወላጅ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 ምትኬ ተጠናቅቋል! apps/frappe/frappe/config/desktop.py,Developer,ገንቢ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,የተፈጠረ +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},እሱን ለማንቃት በሚከተለው አገናኝ ውስጥ ያሉትን መመሪያዎች ይከተሉ-{0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} ረድፍ ውስጥ {1} ሁለቱም ዩአርኤል እና ልጅ ንጥሎች ሊኖሩት አይችልም apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},ለሚከተሉት ሠንጠረ oneች ቢያንስ አንድ ረድፍ መኖር አለበት-{0} DocType: Print Format,Default Print Language,ነባሪ የህትመት ቋንቋ። apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,የቀድሞ አባቶች apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} ሥር ሊሰረዝ አይችልም +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,ምንም ያልተሳካ ምዝግብ ማስታወሻ የለም apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,እስካሁን ምንም አስተያየቶች የሉም apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",እባክዎ በኤስ.ኤም.ኤስ. ቅንብሮች በኩል እንደ አረጋጋጭ ስልት ከማዘጋጀቱ በፊት እባክዎ ኤስኤምኤስን ያዋቅሩ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,ያስፈልጋል ሁለቱም DocType እና ስም @@ -692,6 +729,7 @@ DocType: Website Settings,Footer Items,ግርጌ ንጥሎች apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,ማውጫ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,በየቀኑ +DocType: Onboarding Slide,Max Count,ከፍተኛ ብዛት apps/frappe/frappe/config/users_and_permissions.py,User Roles,የተጠቃሚ ሚናዎችን DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ንብረት አቀናጅ መደበኛ DocType ወይም የመስክ ንብረት ይሽራል apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,አዘምን አይቻልም: ትክክል ያልሆነ / ጊዜው አገናኝ. @@ -710,6 +748,7 @@ DocType: Footer Item,"target = ""_blank""",target = "ባዶን" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,አስተናጋጅ DocType: Data Import Beta,Import File,ፋይልን ያስመጡ። +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,የአብነት ስህተት apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,አምድ {0} አስቀድመው አሉ. DocType: ToDo,High,ከፍ ያለ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,አዲስ ክስተት @@ -725,6 +764,7 @@ DocType: Web Form Field,Show in filter,በማጣሪያ ውስጥ አሳይ DocType: Address,Daman and Diu,Daman እና Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,ፕሮጀክት DocType: Address,Personal,የግል +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,ጥሬ ማተም ቅንብሮች ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,ለዝርዝሮች https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region ን ይመልከቱ። apps/frappe/frappe/config/settings.py,Bulk Rename,የጅምላ ይቀየር DocType: Email Queue,Show as cc,ካርቦን እንደ አሳይ @@ -734,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ቪዲዮ ውሰድ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ከዚያም Contact Us የሚለውን ገጽ የሚሆን መሠረታዊ መረጃ DocType: Print Style,CSS,የሲ ኤስ ኤስ DocType: Workflow State,thumbs-down,አሪፍ-ታች +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,ሰነዶችን በመሰረዝ ላይ DocType: User,Send Notifications for Email threads,ለኢሜይል ክሮች ማሳወቂያዎችን ይላኩ። apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ፕሮፌሰር apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,አይደለም የገንቢ ሁነታ ላይ @@ -741,7 +782,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,የፋይ DocType: DocField,In Global Search,* Global Search ውስጥ DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,ገብ-ግራ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ዓመት (ቶች) በፊት apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,ይህ ፋይል መሰረዝ አደገኛ ነው: {0}. እባክዎ የስርዓት አስተዳዳሪዎን ያግኙ. DocType: Currency,Currency Name,የምንዛሬ ስም apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ምንም ኢሜይሎች @@ -756,10 +796,12 @@ DocType: Energy Point Rule,User Field,የተጠቃሚ መስክ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,ሰርዝን ይጫኑ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ለ አስቀድመው ከደንበኝነት {1} {2} +DocType: Scheduled Job Type,Stopped,አቁሟል apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ማስወገድ አይችሉም ነበር apps/frappe/frappe/desk/like.py,Liked,የተወደደ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,አሁን ላክ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","መደበኛ DocType አብጅ ቅጽ መጠቀም, ነባሪ ህትመት ቅርጸት ሊኖረው አይችልም" +DocType: Server Script,Allow Guest,እንግዳ ይፍቀዱ DocType: Report,Query,ጥያቄ DocType: Customize Form,Sort Order,የድርድር ቅደም ተከተል apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} @@ -781,10 +823,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,ሁለት ሁነታ ማረጋገጥ ዘዴ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,በመጀመሪያ ስም አስቀምጠው መዝገቡን ያስቀምጡ. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 መዛግብቶች +DocType: DocType Link,Link Fieldname,የመስክ ስም አገናኝ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ጋር ተጋርቷል {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ከደንበኝነት DocType: View Log,Reference Name,የማጣቀሻ ስም apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ተጠቃሚን ለውጥ። +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,አንደኛ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ዝመናዎችን ያዘምኑ DocType: Error Snapshot,Exception,ያልተለመደ ሁናቴ DocType: Email Account,Use IMAP,ተጠቀም የ IMAP @@ -798,6 +842,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,የስራ ፍሰቱ ውስጥ ግዛት ሽግግር ፍቺ ደንቦች. DocType: File,Folder,አቃፊ DocType: Website Route Meta,Website Route Meta,ድርጣቢያ መስመር ሜታ። +DocType: Onboarding Slide Field,Onboarding Slide Field,የመርከብ ሰሌዳ ተንሸራታች መስክ DocType: DocField,Index,ማውጫ DocType: Email Group,Newsletter Manager,በራሪ ጽሑፍ አቀናባሪ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,አማራጭ 1 @@ -824,7 +869,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ግ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ገበታዎች ያዋቅሩ DocType: User,Last IP,የመጨረሻው የ IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,እባክዎን አንድ ርእስ ለኢሜልዎ ያክሉ -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,አዲስ ሰነድ {0} ከእርስዎ ጋር የተጋራ {1} ሆኗል. DocType: Data Migration Connector,Data Migration Connector,የውሂብ ስደት ማገናኛ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} አድህሯል {1} DocType: Email Account,Track Email Status,የኢሜይል ሁኔታን ተከታተል @@ -876,6 +920,7 @@ DocType: Email Account,Default Outgoing,ነባሪ የወጪ DocType: Workflow State,play,ይጫወታሉ apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,ከታች ምዝገባ ለማጠናቀቅ አገናኝ ላይ ጠቅ ያድርጉ እና አዲስ የይለፍ ቃል ማዘጋጀት apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,ማከል ነበር +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ለ {2} {3} ነጥቦች {1} ነጥቦች አግኝተዋል apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ምንም የኢሜይል መለያዎች የተሰየሙ DocType: S3 Backup Settings,eu-west-2,ኢዩ-ምዕራብ -2። DocType: Contact Us Settings,Contact Us Settings,ከእኛ ቅንብሮች ያነጋግሩ @@ -883,6 +928,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,በመፈ DocType: Workflow State,text-width,ጽሑፍ-ስፋት apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ይህ መዝገብ ከፍተኛው አባሪ ገደብ ላይ ተደርሷል. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,በፋይሌ ስም ወይም በቅጥያ ይፈልጉ። +DocType: Onboarding Slide,Slide Title,የተንሸራታች ርዕስ DocType: Notification,View Properties (via Customize Form),(ብጁ ቅጽ በኩል) ይመልከቱ ንብረቶች apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,እሱን ለመምረጥ ፋይል ላይ ጠቅ ያድርጉ። DocType: Note Seen By,Note Seen By,የታየ ማስታወሻ @@ -909,13 +955,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL አጋራ DocType: System Settings,Allow Consecutive Login Attempts ,ተከታታይ መግቢያ ትግባሮችን ፍቀድ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,በክፍያ ሂደቱ ወቅት ስህተት ተከስቷል. እባክዎ ያነጋግሩን. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,የስላይድ አይነት ከተፈጠረ ወይም ቅንጅቶች ስላይድ ከተጠናቀቀ በኋላ የሚከናወነው በ {ref_doctype} .py ፋይል ውስጥ የ ‹create_onboarding_docs 'ዘዴ ሊኖር ይገባል። apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ቀናት በፊት DocType: Email Account,Awaiting Password,በመጠባበቅ ላይ የይለፍ ቃል DocType: Address,Address Line 1,አድራሻ መስመር 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,የዝርያዎች አይደለም DocType: Contact,Company Name,የድርጅት ስም DocType: Custom DocPerm,Role,ሚና -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ቅንብሮች ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ወደ አሳሽዎ ይሂዱ። apps/frappe/frappe/utils/data.py,Cent,በመቶ ,Recorder,መቅዳት ፡፡ @@ -975,6 +1021,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","የእርስዎ ኢሜይል በተቀባዩ ከተከፈተ ተከታተል.
ማሳሰቢያ: ወደ ብዙ ተቀባዮች እየላኩ ከሆነ, ምንም እንኳን አንድ ተቀባይ ኢሜይሉን ቢያነብ እንኳ «እንደከፈተ» ይቆጠራል." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,የሚጎድሉ እሴቶች የሚያስፈልግ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,የጉግል ዕውቂያዎችን ፍቀድ ፡፡ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,የተከለከለ DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,ያልተነበቡ እንደ ምልክት DocType: Activity Log,Operation,ቀዶ ጥገና @@ -1027,6 +1074,7 @@ DocType: Web Form,Allow Print,አትም ፍቀድ DocType: Communication,Clicked,ጠቅ ተደርጓል apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,አትከተል apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ነባሪውን የኢሜል አካውንት ያዋቅሩ ከማዋቀር> ኢሜል> ከኢሜል አካውንት apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ለመላክ የተያዘለት DocType: DocType,Track Seen,ትራክ አይቼዋለሁ DocType: Dropbox Settings,File Backup,የፋይል መጠባበቂያ @@ -1035,12 +1083,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,ምንም {0} apps/frappe/frappe/config/customization.py,Add custom forms.,ብጁ ቅጾች ያክሉ. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ውስጥ ከ {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ይህ ሰነድ ገብቷል -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ስርዓቱ ብዙ ቀድሞ የተበየነ ሚና ያቀርባል. እርስዎ በመረጡት ፍቃዶችን ማዘጋጀት አዲስ ሚና ማከል ይችላሉ. DocType: Communication,CC,ዝግ መግለጫ DocType: Country,Geo,የጂኦ DocType: Data Migration Run,Trigger Name,የጉዞ ስም -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ጎራዎች +DocType: Onboarding Slide,Domains,ጎራዎች DocType: Blog Category,Blog Category,የጦማር ምድብ apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,የሚከተሉት ሁኔታ ካልተሳካ ምክንያቱም ካርታ አልተቻለም: DocType: Role Permission for Page and Report,Roles HTML,ሚናዎችን ኤችቲኤምኤል @@ -1080,7 +1127,6 @@ DocType: Assignment Rule Day,Saturday,ቅዳሜ DocType: User,Represents a User in the system.,በስርዓቱ ውስጥ አንድ ተጠቃሚ ይወክላል. DocType: List View Setting,Disable Auto Refresh,ራስ-አድስን ያሰናክሉ። DocType: Comment,Label,ምልክት -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","ወደ ተግባር {0} ከ {1}, ዝግ ተደርጓል የተመደበ ነው." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ይህን መስኮት ዝጋ እባክዎ DocType: Print Format,Print Format Type,አትም ቅርጸት አይነት DocType: Newsletter,A Lead with this Email Address should exist,በዚህ ኢሜይል አድራሻ ጋር አንድ ሊድ ሊኖር ይገባል @@ -1097,6 +1143,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,ለወጪ ኢሜይሎ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ሀ ይምረጡ DocType: Data Export,Filter List,የማጣሪያ ዝርዝር DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,ራስ-ምላሽ መልዕክት DocType: Data Migration Mapping,Condition,ሁኔታ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ሰዓታት በፊት @@ -1115,12 +1162,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,እውቀት ቤዝን አበርካች DocType: Communication,Sent Read Receipt,የተላከ አንብብ ደረሰኝ DocType: Email Queue,Unsubscribe Method,ከደንበኝነት ዘዴ +DocType: Onboarding Slide,Add More Button,ተጨማሪ አዘራር ያክሉ DocType: GSuite Templates,Related DocType,ተዛማጅ DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,ይዘት ለማከል አርትዕ apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ይምረጡ ቋንቋዎች apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,የካርድ ዝርዝሮች apps/frappe/frappe/__init__.py,No permission for {0},ምንም ፍቃድ {0} DocType: DocType,Advanced,የላቀ +DocType: Onboarding Slide,Slide Image Source,የተንሸራታች የምስል ምንጭ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,የኤ ፒ አይ ቁልፍ ይመስላል ወይም ኤ ሚስጥር ስህተት ነው !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},ማጣቀሻ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,ወይዘሮ @@ -1137,6 +1186,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ባለቤ DocType: DocType,User Cannot Create,ተጠቃሚ ይፍጠሩ አይቻልም apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,በተሳካ ሁኔታ ተከናውኗል apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,መሸወጃ መዳረሻ ፀድቋል ነው! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,እርግጠኛ ነዎት {0} ከ {1} ጋር ማዋሃድ ይፈልጋሉ? DocType: Customize Form,Enter Form Type,ቅጽ አይነት ያስገቡ DocType: Google Drive,Authorize Google Drive Access,የጉግል ድራይቭ ፍቀድ ፡፡ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,የጎደለ መለኪያ የካንቦን ቦርድ ስም @@ -1146,7 +1196,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType መፍቀድ. ተጥንቀቅ!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ማተም, ኢሜይል ብጁ ቅርጸቶች" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},የ {0} ድምር -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,አዲስ ስሪት ወደ ዘምኗል DocType: Custom Field,Depends On,እንደ ሁኔታው DocType: Kanban Board Column,Green,አረንጓዴ DocType: Custom DocPerm,Additional Permissions,ተጨማሪ ፍቃዶች @@ -1174,6 +1223,7 @@ DocType: Energy Point Log,Social,ማህበራዊ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",ጉግል ቀን መቁጠሪያ - የቀን መቁጠሪያ ለ {0} ፣ የስህተት ኮድ {1} መፍጠር አልተቻለም። apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,የአርትዖት ረድፍ DocType: Workflow Action Master,Workflow Action Master,የስራ ፍሰት እርምጃ መምህር +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,ሁሉንም ሰርዝ DocType: Custom Field,Field Type,የመስክ ዓይነት apps/frappe/frappe/utils/data.py,only.,ብቻ ነው. DocType: Route History,Route History,የመሄጃ ታሪክ @@ -1209,11 +1259,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,መክፈቻ ቁልፉን ረ DocType: System Settings,yyyy-mm-dd,ዓዓዓዓ-ወወ-ቀቀ apps/frappe/frappe/desk/report/todo/todo.py,ID,መታወቂያ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,የአገልጋይ ስህተት +DocType: Server Script,After Delete,ከተሰረዘ በኋላ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,ያለፉትን ሪፖርቶች ሁሉ ይመልከቱ። apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,መግቢያ መታወቂያ ያስፈልጋል DocType: Website Slideshow,Website Slideshow,የድር ጣቢያ የተንሸራታች ትዕይንት apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ምንም ውሂብ DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","ድር መነሻ ገጽ ነው አገናኝ. መደበኛ አገናኞች (ኢንዴክስ: የመግቢያ, ምርቶች, ጦማር, ስለ እውቂያ)" +DocType: Server Script,After Submit,ካስረከቡ በኋላ apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},የኢሜይል መለያ {0} ኢሜይሎች መቀበል ላይ ሳለ ማረጋገጥ አልተሳካም. ከአገልጋዩ መልዕክት: {1} DocType: User,Banner Image,ሰንደቅ ምስል DocType: Custom Field,Custom Field,ብጁ መስክ @@ -1254,15 +1306,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","ተጠቃሚው በተደረገባቸው ማንኛውም ሚና እንዳለው ከሆነ, ተጠቃሚው የ «System ተጠቃሚ» ይሆናል. "የስርዓት ተጠቃሚ» ዴስክቶፕ መዳረሻ እንዳለው" DocType: System Settings,Date and Number Format,ቀን እና የቁጥር ቅርጸት apps/frappe/frappe/model/document.py,one of,አንዱ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ቅጽ አብጅ apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,አንድ አፍታ በማረጋገጥ ላይ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,አሳይ መለያዎች DocType: DocField,HTML Editor,HTML አርታዒ 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,እርምጃዎች -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ማዋቀር> ተጠቃሚ +DocType: DocType,Actions,እርምጃዎች DocType: Workflow State,align-justify,አሰልፍ-ሰበብ DocType: User,Middle Name (Optional),የመካከለኛ ስም (አማራጭ) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,አይፈቀድም @@ -1277,6 +1327,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ምንም DocType: System Settings,Security,መያዣ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} ተቀባዮች መላክ የተያዘለት apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ቆርጠህ +DocType: Server Script,After Save,ካስቀመጡ በኋላ apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},ከ ተሰይሟል {0} ወደ {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} የ {1} ({2} ረድፎች ከልጆች ጋር) DocType: Currency,**Currency** Master,** ምንዛሬ ** መምህር @@ -1303,15 +1354,18 @@ DocType: Prepared Report,Filter Values,ማጣሪያዎች DocType: Communication,User Tags,የተጠቃሚ መለያዎች DocType: Data Migration Run,Fail,አልተሳካም DocType: Workflow State,download-alt,አውርድ-alt +DocType: Scheduled Job Type,Last Execution,የመጨረሻው ግድያ DocType: Data Migration Run,Pull Failed,መሸከም አልተሳካም apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,ካርዶችን አሳይ / ደብቅ DocType: Communication,Feedback Request,ግብረ ጥያቄ apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,ውሂብ ከ CSV / Excel ፋይሎች ያስመጡ. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,የሚከተሉት መስኮች ይጎድላሉ: +DocType: Notification Log,From User,ከተጠቃሚ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},በመሰረዝ ላይ {0} DocType: Web Page,Main Section,ዋና ክፍል DocType: Page,Icon,አዶ apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","ፍንጭ: የይለፍ ላይ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",ለመጥቀሻዎች ፣ ምደባዎች ፣ የኃይል ነጥቦች እና ሌሎችን በተመለከተ ማሳወቂያዎችን ያዋቅሩ። DocType: DocField,Allow in Quick Entry,በፈጣን መግቢያ ውስጥ ፍቀድ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,ፒዲኤፍ DocType: System Settings,dd/mm/yyyy,ቀን / ወር / ዓ.ም @@ -1343,7 +1397,6 @@ DocType: Website Theme,Theme URL,ገጽታ ዩ.አር.ኤል. DocType: Customize Form,Sort Field,ደርድር መስክ DocType: Razorpay Settings,Razorpay Settings,Razorpay ቅንብሮች apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,አርትዕ ማጣሪያ -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,አክል ተጨማሪ DocType: System Settings,Session Expiry Mobile,ክፍለ ጊዜ የሚቃጠልበት ሞባይል apps/frappe/frappe/utils/password.py,Incorrect User or Password,የተሳሳተ ተጠቃሚ ወይም የይለፍ ቃል apps/frappe/frappe/templates/includes/search_box.html,Search results for,የፍለጋ ውጤቶች @@ -1359,8 +1412,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,የኢነርጂ ነጥብ ደንብ። DocType: Communication,Delayed,ዘግይቷል apps/frappe/frappe/config/settings.py,List of backups available for download,ለመውረድ የሚገኙ ምትኬዎች ዝርዝር +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,አዲሱን የውሂብ ማስመጣት ይሞክሩ apps/frappe/frappe/www/login.html,Sign up,ተመዝገቢ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,ረድፍ {0}: መደበኛ መስኮችን ግዴታ ለማሰናከል አልተፈቀደለትም +DocType: Webhook,Enable Security,ደህንነት ያንቁ apps/frappe/frappe/config/customization.py,Dashboards,ዳሽቦርዶች DocType: Test Runner,Output,ዉጤት DocType: Milestone,Track Field,የትራክ መስክ @@ -1368,6 +1423,7 @@ DocType: Notification,Set Property After Alert,ማንቂያ በኋላ ንብረ apps/frappe/frappe/config/customization.py,Add fields to forms.,ቅጾች መስኮች ያክሉ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ነገር ይመስላል ይህ ጣቢያ የ Paypal ውቅር ጋር ስህተት ነው. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,ግምገማ ያክሉ። +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} ለእርስዎ አዲስ ተግባር ተመድቧል {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),የቅርጸ-ቁምፊ መጠን (ፒክስል) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ደረጃውን የጠበቀ DocTypes ብቻ ከግል ብጁ (ቅጅ) እንዲበጅ ይፈቀድላቸዋል ፡፡ DocType: Email Account,Sendgrid,Sendgrid @@ -1379,8 +1435,10 @@ DocType: Portal Menu Item,Portal Menu Item,ፖርታል ምናሌ ንጥል apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ማጣሪያዎችን ያዘጋጁ። DocType: Contact Us Settings,Email ID,የኢሜይል መታወቂያ DocType: Energy Point Rule,Multiplier Field,ባለብዙ አምራች መስክ። +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay ቅደም ተከተል መፍጠር አልተቻለም። እባክዎ አስተዳዳሪውን ያነጋግሩ DocType: Dashboard Chart,Time Interval,የጊዜ ልዩነት። DocType: Activity Log,Keep track of all update feeds,የሁሉም ዝመናዎች ምግቦች ዱካ ይከታተሉ +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} አንድ ሰነድ አጋርተዋል {1} {2} ከእርስዎ ጋር 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,የመጠይቅ አማራጮች @@ -1399,6 +1457,7 @@ DocType: DefaultValue,Key,ቁልፍ DocType: Address,Contacts,እውቂያዎች DocType: System Settings,Setup Complete,ተጠናቋል apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ሁሉ ሰነዱን ማጋራቶች ሪፖርት +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",አብነት ማስመጣት አብነት .csv ፣ .xlsx ወይም .xls ዓይነት መሆን አለበት apps/frappe/frappe/www/update-password.html,New Password,አዲስ የይለፍ ቃል apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ማጣሪያ {0} የሚጎድል apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,አዝናለሁ! አንተ በራስ-የመነጨ አስተያየቶች መሰረዝ አይችሉም @@ -1414,6 +1473,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,ሩጫ DocType: Blog Post,Content (HTML),ይዘት (ኤችቲኤምኤል) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,ለ DocType: Personal Data Download Request,User Name,የተጠቃሚ ስም DocType: Workflow State,minus-sign,ሲቀነስ-ምልክት apps/frappe/frappe/public/js/frappe/request.js,Not Found,አልተገኘም @@ -1421,11 +1481,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,ምንም {0} ፍቃድ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ወደ ውጪ ላክ ብጁ ፍቃዶች apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ምንም ንጥሎች አልተገኙም. DocType: Data Export,Fields Multicheck,መስኮች የበዙት +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} ተጠናቀቀ DocType: Activity Log,Login,ግባ DocType: Web Form,Payments,ክፍያዎች apps/frappe/frappe/www/qrcode.html,Hi {0},ሰላም {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,የ Google Drive ውህደት። -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} ነጥቦችዎን በ {1} {2} ላይ አድህረዋል DocType: System Settings,Enable Scheduled Jobs,መርሃግብር የተያዘላቸው ሥራዎችን አንቃ apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,ማስታወሻዎች: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,ገባሪ አይደለም @@ -1450,6 +1510,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,የተ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,የፈቃድ ስህተት apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},ስም {0} ሊሆን አይችልም {1} DocType: User Permission,Applicable For,ለ ተገቢነት +DocType: Dashboard Chart,From Date,ቀን ጀምሮ apps/frappe/frappe/core/doctype/version/version_view.html,Success,ስኬት apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ክፍለ ጊዜ ጊዜው አልፎበታል DocType: Kanban Board Column,Kanban Board Column,Kanban ቦርድ አምድ @@ -1461,7 +1522,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ስ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ሁኔታ ውስጥ አይፈቀድም DocType: Async Task,Async Task,በተለያየ ጊዜ ተግባር DocType: Workflow State,picture,ሥዕል -apps/frappe/frappe/www/complete_signup.html,Complete,ተጠናቀቀ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ተጠናቀቀ DocType: DocType,Image Field,ምስል መስክ DocType: Print Format,Custom HTML Help,ብጁ ኤችቲኤምኤል እገዛ DocType: LDAP Settings,Default Role on Creation,በፍጥረት ላይ ነባሪ ሚና። @@ -1469,6 +1530,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,ቀጣይ መንግስት DocType: User,Block Modules,አግድ ሞዱሎች DocType: Print Format,Custom CSS,ብጁ CSS +DocType: Energy Point Rule,Apply Only Once,አንድ ጊዜ ብቻ ይተግብሩ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,አስተያየት ያክሉ DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},ችላ: {0} ወደ {1} @@ -1480,6 +1542,7 @@ DocType: Email Account,Default Incoming,ነባሪ ገቢ DocType: Workflow State,repeat,ደገመ DocType: Website Settings,Banner,ሰንደቅ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},እሴት ከ {0} አንድ መሆን አለበት +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,ሁሉንም ሰነዶች ሰርዝ DocType: Role,"If disabled, this role will be removed from all users.","ተሰናክሏል ከሆነ, ይህ ሚና ሁሉም ተጠቃሚዎች ይወገዳል." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,ወደ {0} ዝርዝር ይሂዱ። apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ፍለጋ ላይ እገዛ @@ -1488,6 +1551,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,የተመ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ለዚህ ሰነድ ራስ-ድገም ተሰናክሏል። DocType: DocType,Hide Copy,ገልብጥ ደብቅ apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ሁሉም ሚናዎች አጽዳ +DocType: Server Script,Before Save,ከማስቀመጥዎ በፊት apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ልዩ መሆን አለበት apps/frappe/frappe/model/base_document.py,Row,ረድፍ apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC እና የኢሜል አብነት" @@ -1498,7 +1562,6 @@ DocType: Chat Profile,Offline,ከመስመር ውጭ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},በተሳካ ሁኔታ እንዲመጣ {0} DocType: User,API Key,የኤ ፒ አይ ቁልፍ DocType: Email Account,Send unsubscribe message in email,በኢሜይል ውስጥ ከአባልነት መልዕክት ይላኩ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ርዕስ አርትዕ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,ይህን አገናኝ መስክ ላይ DocType ይሆናል ይህም Fieldname. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,ለአንተም ሆነ እናንተ የተመደበ ሰነዶች. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,ይህንንም መገልበጥ ይችላሉ ፡፡ @@ -1530,8 +1593,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,ምስል ያያይዙ DocType: Workflow State,list-alt,ዝርዝር-alt apps/frappe/frappe/www/update-password.html,Password Updated,የይለፍ ቃል ዘምኗል +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች apps/frappe/frappe/www/qrcode.html,Steps to verify your login,የእርስዎን መግቢያ ለማረጋገጥ የእርምጃዎች ደረጃዎች apps/frappe/frappe/utils/password.py,Password not found,የይለፍ ቃል አልተገኘም +DocType: Webhook,Webhook Secret,Webhook ምስጢር DocType: Data Migration Mapping,Page Length,የገጽ ርዝመት DocType: Email Queue,Expose Recipients,ተቀባዮች የሚያጋልጡ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ወደ ገቢ ኢሜይሎች የግድ አስፈላጊ ነው ጨምር @@ -1559,6 +1624,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,ስርዓት DocType: Web Form,Max Attachment Size (in MB),(ሜባ ውስጥ) ከፍተኛ አባሪ መጠን apps/frappe/frappe/www/login.html,Have an account? Login,አንድ መለያ አለህ? ግባ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,ቅንብሮችን አትም ... DocType: Workflow State,arrow-down,ቀስት ወደ ታች apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ረድፍ {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ተጠቃሚ መሰረዝ አይፈቀድም {0}: {1} @@ -1579,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,የይለ DocType: Dropbox Settings,Dropbox Access Secret,መሸወጃ መዳረሻ ሚስጥር DocType: Tag Link,Document Title,የሰነድ ርዕስ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(አስገዳጅ) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ዓመት (ቶች) በፊት DocType: Social Login Key,Social Login Provider,የማኅበራዊ ድጋፍ አቅራቢ apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ሌላው አስተያየት ያክሉ apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,በፋይል ውስጥ ምንም ውሂብ አልተገኘም. እባክዎ አዲሱን ፋይል ከውሂብ ጋር ያያይዙት. @@ -1593,11 +1660,12 @@ DocType: Workflow State,hand-down,እጅ-ታች apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",እንደ ካባን አምድ ሊያገለግል የሚችል ምንም መስኮች አልተገኙም። የ “Select” ዓይነት ብጁ መስክ ለመጨመር የጉምሩክ ቅጽን ይጠቀሙ። DocType: Address,GST State,GST ግዛት apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: ያለ አስገባ ሰርዝ ማዘጋጀት አይቻልም +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ተጠቃሚ ({0}) DocType: Website Theme,Theme,ገጽታ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ማረጋገጫ ኮድ ያመጣቸው አዘዋውር apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,ክፍት እገዛ። DocType: DocType,Is Submittable,Submittable ነው -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,አዲስ ጭብጥ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,አዲስ ጭብጥ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ምንም አዲስ የ Google እውቂያዎች አልተመሳሰሉም። DocType: File,Uploaded To Google Drive,ወደ Google Drive ተሰቅሏል። apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ቼክ መስክ እሴት 0 ወይም 1 ሊሆን ይችላል @@ -1609,7 +1677,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,የገቢ መልዕክት ሳጥን DocType: Kanban Board Column,Red,ቀይ DocType: Workflow State,Tag,መለያ -DocType: Custom Script,Script,ስክሪፕት +DocType: Report,Script,ስክሪፕት apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ሰነድ ሊቀመጥ አልቻለም. DocType: Energy Point Rule,Maximum Points,ከፍተኛ ነጥቦች። apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,የእኔ ቅንብሮች @@ -1639,9 +1707,12 @@ DocType: Address,Haryana,ፑርጃን apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} ለ {1} {2} የአመስጋኝነት ነጥቦች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ሚናዎችን ያላቸውን የአባል ገጽ ተጠቃሚዎች ሊዘጋጁ ይችላሉ. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,አስተያየት ያክሉ +DocType: Dashboard Chart,Select Date Range,የቀን ክልል ይምረጡ DocType: DocField,Mandatory,የግዴታ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ሞዱል Export ወደ +DocType: Scheduled Job Type,Monthly Long,ወርሃዊ ረዥም apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: ምንም መሠረታዊ ፍቃዶች ስብስብ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,ወደዚህ ለማገናኘት አንድ ኢሜይል ወደ {0} ይላኩ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","ሰርዝ, አስገባ ትርጉም, አዋጅን" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ለመስራት @@ -1650,7 +1721,6 @@ DocType: Milestone Tracker,Track milestones for any document,ለማንኛውም DocType: Social Login Key,Identity Details,የማንነት ዝርዝሮች apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},የስራ ፍሰት ሁኔታ ሽግግር ከ {0} ወደ {1} አይፈቀድም apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ዳሽቦርድ አሳይ። -apps/frappe/frappe/desk/form/assign_to.py,New Message,አዲስ መልዕክት DocType: File,Preview HTML,ቅድመ እይታ ኤችቲኤምኤል DocType: Desktop Icon,query-report,ጥያቄ-ሪፖርት DocType: Data Import Beta,Template Warnings,የአብነት ማስጠንቀቂያዎች። @@ -1661,18 +1731,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,ጋር የ apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,የራስ-ኢሜይል አድራሻ ሪፖርት ቅንብሮችን ያርትዑ DocType: Chat Room,Message Count,መልዕክት ይቆጠራል DocType: Workflow State,book,መጽሐፍ +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ከሚከተሉት የቀረቡ ሰነዶች ጋር ተገናኝቷል {{2} DocType: Communication,Read by Recipient,በተቀባዩ ያንብቡ DocType: Website Settings,Landing Page,የማረፊያ ገጽ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,ብጁ ስክሪፕት ላይ ስህተት apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} ስም apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ምንም ፍቃዶች ይህን መስፈርት የተዘጋጀ ነው. DocType: Auto Email Report,Auto Email Report,ራስ-ኢሜይል ሪፖርት +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,አዲስ ሰነድ ተጋርቷል apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,አስተያየት ይሰረዝ? DocType: Address Template,This format is used if country specific format is not found,አገር የተወሰነ ቅርጸት አልተገኘም ከሆነ ይህ ቅርጸት ጥቅም ላይ ነው DocType: System Settings,Allow Login using Mobile Number,የመግቢያ ሞባይል ቁጥር መጠቀም ፍቀድ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,ይህን ሀብት ለመድረስ በቂ ፍቃዶች የለዎትም. መዳረሻ ለማግኘት የእርስዎን አስተዳዳሪ ያነጋግሩ. DocType: Custom Field,Custom,ብጁ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ከነቃ, ከተከለከለ አይ ፒ አድራሻ በመለያ የሚገቡ ተጠቃሚዎች ለሁለት እውነታ ማረጋገጫ አይጠየቁም" +DocType: Server Script,After Cancel,ከተሰረዘ በኋላ DocType: Auto Repeat,Get Contacts,እውቂያዎችን ያግኙ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ስር የቀረቡ ልጥፎች {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ርዕስ-አልባ ዓምድ በመዝለል ላይ። @@ -1683,6 +1756,7 @@ DocType: User,Login After,መግቢያ በኋላ DocType: Print Format,Monospace,ሞኖስፔስ DocType: Letter Head,Printing,ማተም DocType: Workflow State,thumbs-up,አሪፍ-ባይ +DocType: Notification Log,Mention,መጥቀስ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ቅርጸ ቁምፊዎች apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,ተሰልቶ 1 እና 6 መካከል መሆን አለበት @@ -1690,7 +1764,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},ፍሬድ apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ና apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},ይህ ሪፖርት በ {0} ላይ DocType: Error Snapshot,Frames,ክፈፎች -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,የምደባ +DocType: Notification Log,Assignment,የምደባ DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,ምስል አገናኝ DocType: Auto Email Report,Report Filters,ሪፖርት ማጣሪያዎች @@ -1707,7 +1781,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ክስተት ማዘመን አልተቻለም apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,የማረጋገጫ ኮድ ወደተመዘገበው የኢሜይል አድራሻ ተልኳል. apps/frappe/frappe/core/doctype/user/user.py,Throttled,የተቆለፈ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,የእርስዎ .ላማ apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ማጣሪያ 4 እሴቶች (doctype, fieldname, ከዋኝ, ዋጋ) ሊኖረው ይገባል: {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},ለ {0} ምንም ስም አልተገለጸም apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,የምደባ ደንብ ይተግብሩ። apps/frappe/frappe/utils/bot.py,show,አሳይ apps/frappe/frappe/utils/data.py,Invalid field name {0},ልክ ያልሆነ የመስክ ስም {0} @@ -1717,7 +1793,6 @@ DocType: Workflow State,text-height,ጽሑፍ-ቁመት DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,የውሂብ ጎዳና የዕቅድ ካርታ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,ሽግግር መጀመር ... DocType: Web Form Field,Max Length,ከፍተኛ ርዝመት -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},ለ {0} {1} DocType: Print Format,Jinja,ጂንጃ DocType: Workflow State,map-marker,ካርታ-ማድረጊያ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,አንድ ችግር አስገባ @@ -1753,6 +1828,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,የጠፋ ወይም ተን apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,ግምገማዎች DocType: DocType,Route,መንገድ apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay የክፍያ ፍኖት ቅንብሮች +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ለ {2} {3} ነጥብ {1} ነጥብ አግኝቷል apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,ከማያያዝ የተያያዙ ምስሎችን ከምር DocType: Chat Room,Name,ስም DocType: Contact Us Settings,Skype,ስካይፕ @@ -1763,7 +1839,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,አገናኝ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,የእርስዎ ቋንቋ DocType: Dashboard Chart,Average,አማካይ። apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,ረድፍ አክል -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,አታሚ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,መጠይቅ ይምረጡ መሆን አለበት DocType: Auto Repeat,Completed,የተጠናቀቁ @@ -1822,6 +1897,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,የኢነርጂ ነጥብ ቅንጅቶች። DocType: Async Task,Succeeded,ተሳክቷል apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ውስጥ ያስፈልጋል አስገዳጅ መስኮች {0} +DocType: Onboarding Slide Field,Align,አሰልፍ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,ለ ዳግም አስጀምር ፍቃዶች {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ተጠቃሚዎች እና ፈቃዶች DocType: S3 Backup Settings,S3 Backup Settings,S3 የምትኬ ቅንብሮች @@ -1838,7 +1914,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,አዲስ የህትመት ቅርጸት ስም። apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ጥያቄውን ለማፅደቅ ከዚህ በታች ባለው አገናኝ ላይ ጠቅ ያድርጉ ፡፡ DocType: Workflow State,align-left,-አሰልፍ ግራ +DocType: Onboarding Slide,Action Settings,የድርጊት ቅንጅቶች DocType: User,Defaults,ነባሪዎች +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",ለማነፃፀር> 5 ፣ ‹10 ወይም = 324 ይጠቀሙ። ለደረጃዎች 5 10 ይጠቀሙ (ከ 5 እና 10 መካከል ላሉት እሴቶች)። DocType: Energy Point Log,Revert Of,አድህር apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ነባር ጋር አዋህድ DocType: User,Birth Date,የልደት ቀን @@ -1893,6 +1971,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ውስጥ DocType: Notification,Value Change,እሴት ለውጥ DocType: Google Contacts,Authorize Google Contacts Access,የጉግል ዕውቂያዎች መዳረሻ ፍቀድ ፡፡ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ከሪፖርት ብቻ የቁጥር መስኮችን ብቻ በማሳየት ላይ +apps/frappe/frappe/utils/data.py,1 week ago,ከ 1 ሳምንት በፊት DocType: Data Import Beta,Import Type,የማስመጫ ዓይነት። DocType: Access Log,HTML Page,HTML ገጽ። DocType: Address,Subsidiary,ተጪማሪ @@ -1902,7 +1981,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,የደብዳቤ ጋር apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ልክ ያልሆነ የወጪ ደብዳቤ አገልጋይ ወይም ወደብ DocType: Custom DocPerm,Write,ጻፈ -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ብቻ አስተዳዳሪ መጠይቅ / ስክሪፕት ሪፖርቶችን መፍጠር አይፈቀድም apps/frappe/frappe/public/js/frappe/form/save.js,Updating,በማዘመን ላይ DocType: Data Import Beta,Preview,ቅድመ-እይታ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",የመስክ "ዋጋ" የግዴታ ነው. መዘመን ዋጋ ይግለጹ @@ -1912,6 +1990,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,የተጠ DocType: Data Migration Run,Started,ተጀምሯል apps/frappe/frappe/permissions.py,User {0} does not have access to this document,ተጠቃሚው {0} ለዚህ ሰነድ መዳረሻ የለውም። DocType: Data Migration Run,End Time,መጨረሻ ሰዓት +DocType: Dashboard Chart,Group By Based On,በቡድን መሠረት apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ይምረጡ አባሪዎች apps/frappe/frappe/model/naming.py, for {0},ለ {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,እርስዎ ይህን ሰነድ ማተም አይፈቀድም @@ -1953,6 +2032,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,አረጋግጥ DocType: Workflow Document State,Update Field,አዘምን መስክ DocType: Chat Profile,Enable Chat,ውይይት አንቃ DocType: LDAP Settings,Base Distinguished Name (DN),Base ልዩ ስም (DN) +DocType: Server Script,API,ኤ ፒ አይ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ይህን ውይይት ውጣ apps/frappe/frappe/model/base_document.py,Options not set for link field {0},አማራጮች አገናኝ መስክ ካልተዋቀረ {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,ወረፋ / ሠራተኛ። @@ -2019,12 +2099,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,በዚህ ጊዜ አይፈቀድም ይግቡና DocType: Data Migration Run,Current Mapping Action,የአሁኑ የካርታ ስራ እርምጃ DocType: Dashboard Chart Source,Source Name,ምንጭ ስም -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ከተጠቃሚው ጋር የተገናኘ ምንም የኢሜይል መለያ የለም ፡፡ እባክዎን በተጠቃሚ> በኢሜል ገቢ መልእክት ሳጥን ስር ያክሉ ፡፡ DocType: Email Account,Email Sync Option,ኢሜይል አስምር አማራጭ apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,ረድፍ ቁጥር DocType: Async Task,Runtime,የሚፈጀውን ጊዜ DocType: Post,Is Pinned,ተሰክቷል DocType: Contact Us Settings,Introduction,መግቢያ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,እርዳታ ያስፈልጋል? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ግሎባላይን ሰካ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,የሚከተለው በ DocType: LDAP Settings,LDAP Email Field,የኤልዲኤፒ የኢሜይል መስክ @@ -2034,7 +2114,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,አስቀ DocType: User Email,Enable Outgoing,የወጪ አንቃ DocType: Address,Fax,ፋክስ apps/frappe/frappe/config/customization.py,Custom Tags,ብጁ መለያዎች -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ ማዋቀር እባክዎ ከማዋቀር> ኢሜል> ከኢሜል አካውንት ውስጥ አዲስ የኢሜይል አካውንት ይፍጠሩ DocType: Comment,Submitted,ገብቷል DocType: Contact,Pulled from Google Contacts,ከ Google እውቂያዎች የተወሰደ። apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,በትክክለኛ ጥያቄ @@ -2055,9 +2134,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,መነሻ / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,እኔ መድብ DocType: DocField,Dynamic Link,ተለዋዋጭ አገናኝ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,በምናሌ እና በጎን አሞሌ ውስጥ ተጨማሪ አቋራጮችን ለማስነሳት Alt ቁልፍን ተጫን ፡፡ +DocType: Dashboard Chart,To Date,ቀን ወደ DocType: List View Setting,List View Setting,የዝርዝር እይታ ቅንጅት። apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,ያልተሳኩ ሥራዎች አሳይ -DocType: Event,Details,ዝርዝሮች +DocType: Scheduled Job Log,Details,ዝርዝሮች DocType: Property Setter,DocType or Field,DocType ወይም የመስክ apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,ይህንን ሰነድ አልተከተሉም። apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,የመጀመሪያ ቀለም @@ -2065,7 +2145,6 @@ DocType: Communication,Soft-Bounced,-ለስላሳ ካረፈ DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",ከነቃ ሁሉም ተጠቃሚዎች የሁለት እቃዎችን ማረጋገጫ በመጠቀም ከማንኛውም የአይ.ፒ. አድራሻ ይግቡ. ይሄ በተጠቃሚ ገጽ ላይ ለተወሰኑ ለተጠቃሚዎች (ዎች) ሊዋቀር ይችላል apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publishable ቁልፍ ይመስላል ወይም ምስጢር ቁልፍ ስህተት ነው !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,ፍቃዶች በማቀናበር ላይ ፈጣን እርዳታ -DocType: Tag Doc Category,Doctype to Assign Tags,መለያዎች መድብ ወደ Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,አሳይ መነጋገሬ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ኢሜይል ወደ መጣያ ተወስዷል DocType: Report,Report Builder,ሪፖርት ገንቢ @@ -2080,6 +2159,7 @@ DocType: Workflow State,Upload,ስቀል DocType: User Permission,Advanced Control,የላቀ መቆጣጠሪያ DocType: System Settings,Date Format,ቀን ቅርጸት apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,የታተመ አይደለም +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም። እባክዎ ከማዋቀር> ማተሚያ እና የምርት ስም አወጣጥ> የአድራሻ አብነት አዲስ ይፍጠሩ። apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","የስራ ፍሰት ለ እርምጃዎች (ለምሳሌ, ይቅር አጽድቅ)." DocType: Data Import,Skip rows with errors,ስህተቶች ያላቸው ረድፎችን ዝለል DocType: Workflow State,flag,ሰንደቅ ዓላማ @@ -2089,7 +2169,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,የ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ወደ መስክ ዝለል DocType: Contact Us Settings,Forward To Email Address,አስተላልፍ አድራሻ ኢሜይል ወደ DocType: Contact Phone,Is Primary Phone,ዋናው ስልክ ነው ፡፡ -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ወደዚህ ለማገናኘት አንድ ኢሜይል ወደ {0} ይላኩ። DocType: Auto Email Report,Weekdays,የሳምንቱ ቀናት apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} መዝገቦች ይላካሉ። apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት @@ -2097,7 +2176,7 @@ DocType: Post Comment,Post Comment,አስተያየት ለጥፍ apps/frappe/frappe/config/core.py,Documents,ሰነዶች apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,የእንቅስቃሴ ምዝግብ ማስታወሻ በ DocType: Social Login Key,Custom Base URL,ብጁ መሰረታዊ URL -DocType: Email Flag Queue,Is Completed,የተጠናቀቁ ነው +DocType: Onboarding Slide,Is Completed,የተጠናቀቁ ነው apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,መስኮች ያግኙ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,አርትዕ መገለጫ DocType: Kanban Board Column,Archived,በማህደር @@ -2108,11 +2187,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",እዚህ ላይ በተገለጸው fieldname እሴት አለው ወይም ደንብ እውነተኛ (ምሳሌዎች) ናቸው ብቻ ከሆነ ይህ መስክ ይታያል: myfield ኢቫል: doc.myfield == 'የእኔ እሴት »ኢቫል: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ዛሬ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ዛሬ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ይህን ካዋቀሩት በኋላ, ተጠቃሚዎች ብቻ ነው የሚችል መዳረሻ ሰነዶችን ይሆናል (ለምሳሌ. ልጥፍ ብሎግ) አገናኝ (ለምሳሌ. ብሎገር) አለ ቦታ." DocType: Data Import Beta,Submit After Import,ከመጣ በኋላ ያስገቡ DocType: Error Log,Log of Scheduler Errors,መርሐግብር ስህተቶች መካከል መዝገብ DocType: User,Bio,የህይወት ታሪክ +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,በመሳፈሪያ ላይ የተንሸራታች የእገዛ አገናኝ DocType: OAuth Client,App Client Secret,የመተግበሪያ የደንበኛ ሚስጥር apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,በማስገባት ላይ apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,ወላጅ መረጃው የሚገባበት የሰነድ ስም ነው. @@ -2120,7 +2200,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,በትልቁ ሆሄያት apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,ብጁ ኤችቲኤምኤል apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,የአቃፊ ስም ያስገቡ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም። እባክዎ ከማዋቀር> ማተሚያ እና የምርት ስም አወጣጥ> የአድራሻ አብነት አዲስ ይፍጠሩ። apps/frappe/frappe/auth.py,Unknown User,ያልታወቀ ተጠቃሚ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,ይምረጡ ሚና DocType: Comment,Deleted,ተሰርዟል @@ -2136,7 +2215,7 @@ DocType: Chat Token,Chat Token,የውይይት ቶክ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ገበታ ፍጠር። apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,አታስመጣ። -DocType: Web Page,Center,መሃል +DocType: Onboarding Slide Field,Center,መሃል DocType: Notification,Value To Be Set,ዋጋ እንዲዘጋጅ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},አርትዕ {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,በመጀመሪያ ደረጃ @@ -2144,7 +2223,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,የውሂብ ጎታ ስም apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,አድስ ቅጽ DocType: DocField,Select,ይምረጡ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,ሙሉ ምዝግብ ማስታወሻን ይመልከቱ። +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ሙሉ ምዝግብ ማስታወሻን ይመልከቱ። DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",ቀላል የ Python መግለጫ ፣ ምሳሌ-ሁኔታ == 'ክፍት' እና type == 'ሳንካ' apps/frappe/frappe/utils/csvutils.py,File not attached,ፋይል አልተያያዘም apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ግንኙነት ጠፍቷል. አንዳንድ ባህሪያት ላይሰሩ ይችላሉ. @@ -2176,6 +2255,7 @@ DocType: Web Page,HTML for header section. Optional,ራስጌ ክፍል ለ ኤ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,ይህ ባህሪ አሁንም ፍጹም አዲስ እና የሙከራ ነው apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,ከፍተኛ {0} ረድፎች አይፈቀድም DocType: Dashboard Chart Link,Chart,ሰንጠረዥ +DocType: Scheduled Job Type,Cron,ክሮን DocType: Email Unsubscribe,Global Unsubscribe,ዓለም አቀፍ ከደንበኝነት apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ይህ በጣም የተለመደ የይለፍ ቃል ነው. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,ይመልከቱ @@ -2192,6 +2272,7 @@ DocType: Data Migration Connector,Hostname,የአስተናጋጅ ስም DocType: Data Migration Mapping,Condition Detail,የሁኔታዎች ዝርዝር ሁኔታ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","ለክን {ል {0}, ዝቅተኛው የግብይት መጠን {1} መሆን አለበት" DocType: DocField,Print Hide,አትም ደብቅ +DocType: System Settings,HH:mm:ss,Hh: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ለተጠቃሚ። apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,እሴት ያስገቡ DocType: Workflow State,tint,ቅልም @@ -2258,6 +2339,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ለመግቢ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ማድረግ ወደ አክል DocType: Footer Item,Company,ኩባንያ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},አማካኝ የ {0} +DocType: Scheduled Job Log,Scheduled,የተያዘለት DocType: User,Logout from all devices while changing Password,የይለፍ ቃልን በሚቀይርበት ጊዜ ከሁሉም መሳሪያዎች መውጣት apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,የይለፍ ቃል ያረጋግጡ apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,ስህተቶች ነበሩ @@ -2283,7 +2365,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,የተጠቃሚ ፍቃድ አስቀድሞ አለ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},አምድ {0} ወደ መስክ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},አሳይ {0} -DocType: User,Hourly,በሰዓት +DocType: Scheduled Job Type,Hourly,በሰዓት apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth ደንበኛ መተግበሪያ ይመዝገቡ DocType: DocField,Fetch If Empty,ባዶ ከሆነ አምጣ DocType: Data Migration Connector,Authentication Credentials,የማረጋገጫ ምስክርነቶች @@ -2293,10 +2375,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,የነጥብ አቀ DocType: SMS Settings,SMS Gateway URL,ኤስ ኤም ኤስ ጌትዌይ ዩ አር ኤል apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ሊሆን አይችልም "{2}». ከዚህ ውስጥ አንዱ መሆን አለበት "{3}» apps/frappe/frappe/utils/data.py,{0} or {1},{0} ወይም {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,ሁላችሁም ተዘጋጅተሻል! DocType: Workflow State,trash,መጣያ DocType: System Settings,Older backups will be automatically deleted,የቆዩ መጠባበቂያዎች በራስ-ሰር ይሰረዛል apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ልክ ያልሆነ የመዳረሻ ቁልፍ መታወቂያ ወይም ሚስጥራዊ መገናኛ ቁልፍ. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,አንዳንድ የኃይል ነጥቦችን አጥተዋል። DocType: Post,Is Globally Pinned,በዓለም ዙሪያ ተያይዟል apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,የቅርብ ጊዜ እንቅስቃሴ DocType: Workflow Transition,Conditions,ሁኔታዎች @@ -2305,6 +2387,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,ተረጋግ DocType: Event,Ends on,ላይ ያበቃል DocType: Payment Gateway,Gateway,መዉጫ DocType: LDAP Settings,Path to Server Certificate,የአገልጋይ ሰርቲፊኬት። +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,ጃቫ ስክሪፕት በአሳሽዎ ላይ ተሰናክሏል apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,አገናኞች ለማየት በቂ ፍቃድ apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,አድራሻ ርዕስ የግዴታ ነው. DocType: Google Contacts,Push to Google Contacts,ወደ Google እውቂያዎች ይግፉ። @@ -2323,7 +2406,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,ኢዩ-ምዕራብ -1። DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",ይሄ ከተመረጠ ትክክለኛ ውሂብ የያዘ ረድፎች እንዲመጡ ይደረጋሉ እና ልክ ያልሆኑ ረድፎች በኋላ ላይ እንዲያስገቡ ወደ አዲስ ፋይል ይጣላሉ. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,የሰነድ ሚና ተጠቃሚዎች ብቻ ሊደረግበት ነው -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",እርስዎ {1} በ {2} ተዘግቷል የሰጠውን ሥራ {0}:. DocType: Print Format,Show Line Breaks after Sections,አሳይ መስመር ክፍሎች በኋላ ሰበረ DocType: Communication,Read by Recipient On,በ ተቀባይ ላይ ያንብቡ DocType: Blogger,Short Name,አጭር ስም @@ -2355,6 +2437,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,ት DocType: Translation,PR sent,PR ተልኳል። DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ብቻ መዛግብት ለመጨረሻ X ሰዓቶች ውስጥ የዘመነ ላክ DocType: Communication,Feedback,ግብረ-መልስ +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ወደ አዲስ ስሪት Updated ተዘምኗል apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ትርጉምን ክፈት apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,ይሄ ኢሜይል በራስ-መርሐግብር ነው DocType: Workflow State,Icon will appear on the button,አዶ አዝራር ላይ ይታያል @@ -2393,6 +2476,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,ገጹ አ DocType: DocField,Precision,ትክክልነት DocType: Website Slideshow,Slideshow Items,የተንሸራታች ትዕይንት ንጥሎች apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,በተደጋጋሚ ቃላት እና ቁምፊዎች ለማስወገድ ይሞክሩ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,ማስታወቂያዎች ተሰናክለዋል +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,እርግጠኛ ነዎት ሁሉንም ረድፎች መሰረዝ ይፈልጋሉ? DocType: Workflow Action,Workflow State,የስራ ፍሰት መንግስት apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ረድፎች ታክሏል apps/frappe/frappe/www/list.py,My Account,አካውንቴ @@ -2401,6 +2486,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,ቀናት በኋላ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,የ QZ ትሪ ትስስር ገባሪ! DocType: Contact Us Settings,Settings for Contact Us Page,ያግኙን ገጽ ቅንብሮች +DocType: Server Script,Script Type,ስክሪፕት አይነት DocType: Print Settings,Enable Print Server,የአታሚ አገልጋይ አንቃ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} ሳምንቶች በፊት DocType: Email Account,Footer,ግርጌ @@ -2426,8 +2512,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,ማስጠንቀቂያ apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,ይህ በበርካታ ገጾች ላይ ሊታተም ይችላል። DocType: Data Migration Run,Percent Complete,መቶኛ የተጠናቀቀ -DocType: Tag Category,Tag Category,መለያ ምድብ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",ለማነፃፀር> 5 ፣ ‹10 ወይም = 324 ይጠቀሙ። ክልሎች ፣ 5 10 (5 እና 10 መካከል ላሉት እሴቶች) ይጠቀሙ ፡፡ DocType: Google Calendar,Pull from Google Calendar,ከ Google ቀን መቁጠሪያ ጎትት። apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,እርዳታ DocType: User,Login Before,መግቢያ በፊት @@ -2437,17 +2521,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,የሳምንት እረፍት ቀናት ደብቅ apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ተደጋጋሚ ሰነዶችን በራስ-ሰር ያወጣል። apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ናት +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,መረጃ-ምልክት apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ዝርዝር ሊሆን አይችልም እሴት DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ይህን ምንዛሬ እንዴት መቀረጽ አለበት? ካልተዘጋጀ, ሥርዓት ነባሪዎችን ይጠቀማል" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,የ {0} ሰነዶች አስገባ? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,በእናንተ ውስጥ መግባት እና መጠባበቂያ መድረስ መቻል የስርዓት አቀናባሪ ሚና እንዲኖረው ማድረግ ያስፈልጋል. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ከ QZ ትሬድ መተግበሪያ ጋር መገናኘት ላይ ስህተት ...

ጥሬ ማተም ባህሪን ለመጠቀም QZ ትሪ ትግበራ እንዲጫን እና እንዲሠራ ያስፈልግዎታል።

QZ ትሪ ለመጫን እና ለመጫን እዚህ ጠቅ ያድርጉ
ስለ ጥሬ ማተሚያ የበለጠ ለማወቅ እዚህ ጠቅ ያድርጉ ።" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,አታሚ ካርታ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,በማያያዝ በፊት ያስቀምጡ. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ሁሉንም የተገናኙ ሰነዶች መሰረዝ ይፈልጋሉ? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ታክሏል {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ከ ሊቀየር አይችልም {0} ወደ {1} ረድፍ ውስጥ {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,ሚና ፍቃዶች DocType: Help Article,Intermediate,መካከለኛ +apps/frappe/frappe/config/settings.py,Email / Notifications,ኢሜይል / ማስታወቂያዎች apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} ተቀይሯል {1} ወደ {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,የተሰረዘ ሰነድ እንደ ረቂቁ ተመልሷል DocType: Data Migration Run,Start Time,ጀምር ሰዓት @@ -2464,6 +2552,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,ልክ ያልሆነ የተቀባይ አድራሻ DocType: Workflow State,step-forward,ደረጃ-ወደፊት DocType: System Settings,Allow Login After Fail,ከአደጋ በኋላ ፍቀድ +DocType: DocType Link,DocType Link,DocType አገናኝ DocType: Role Permission for Page and Report,Set Role For,ለ አዘጋጅ ሚና DocType: GCalendar Account,The name that will appear in Google Calendar,በ Google ቀን መቁጠሪያ ውስጥ የሚታይ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ቀድሞውኑ ክፍት ቦታ አለ. @@ -2480,6 +2569,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ፍጠር DocType: Contact,Google Contacts,ጉግል ዕውቂያዎች DocType: GCalendar Account,GCalendar Account,የ GCalendar መለያ DocType: Email Rule,Is Spam,አይፈለጌ መልዕክት ነው +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,የመጨረሻው apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ሪፖርት {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ክፍት {0} DocType: Data Import Beta,Import Warnings,ማስመጣት ማስጠንቀቂያዎች @@ -2491,6 +2581,7 @@ DocType: Workflow State,ok-sign,ok-ምልክት apps/frappe/frappe/config/settings.py,Deleted Documents,የተሰረዙ ሰነዶች apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,የ CSV ቅርፀት ለጉዳዩ ተፅዕኖ ነው apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ዴስክቶፕ አዶ ቀድሞውንም አለ +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ተንሸራታቾቹ በሙሉ እንደሚታዩ ይግለጹ። ምንም ነገር ካልተገለጸ ተንሸራታቹ በሁሉም ጎራዎች በነባሪነት ይታያል። apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,የተባዛ ነገር apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: መስክ {1} በረድፍ {2} ያለ ነባሪ መደበቅ እና የግዴታ መሆን አይችልም። DocType: Newsletter,Create and Send Newsletters,ፍጠር እና ላክ ጋዜጣዎች @@ -2501,6 +2592,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,የጉግል ቀን መቁጠሪያ ክስተት መታወቂያ። apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","ወላጅ" በዚህ ረድፍ መታከል አለበት ውስጥ ወላጅ ጠረጴዛ ያመለክታል apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,የግምገማ ነጥቦች +DocType: Scheduled Job Log,Scheduled Job Log,መርሃግብር የተያዘለት የሥራ መዝገብ +DocType: Server Script,Before Delete,ከመሰረዝዎ በፊት apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,ጋር የተጋራ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ፋይሎችን / ዩአርኤሎችን ያያይዙ እና በሠንጠረዥ ውስጥ ያክሉ. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,መልዕክት አልተዋቀረም @@ -2523,19 +2616,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,በ ስለ እኛ ገጽ ቅንብሮች apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ሰንበር የክፍያ ፍኖት ቅንብሮች apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ወደ አታሚ ተልኳል! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,የኃይል ነጥቦች +DocType: Notification Settings,Energy Points,የኃይል ነጥቦች +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},ሰዓት {0} ቅርጸት መሆን አለበት: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ለምሳሌ pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,ቁልፎችን ያፈጥራል apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ይህ ውሂብዎን እስከመጨረሻው ያስወግዳል። DocType: DocType,View Settings,ይመልከቱ ቅንብሮች +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,አዲስ ማስታወቂያ DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,የጥያቄ መዋቅር +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,ተቆጣጣሪው ዘዴ get_razorpay_order ይጎድላል DocType: Personal Data Deletion Request,Pending Verification,ማረጋገጫ በመጠባበቅ ላይ። DocType: Website Meta Tag,Website Meta Tag,ድርጣቢያ ሜታ መለያ። DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","መደበኛ ያልሆነ ወደብ (ለምሳሌ 587). በ Google ደመና ውስጥ, 2525 ፖር ይሞክሩ." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",ቀደም ብለው የታተሙ ገጾችን መጠበቅ ስለማይችል የመጨረሻውን ቀን በማጽዳት. DocType: User,Send Me A Copy of Outgoing Emails,የወጪ ፖስታዎች ቅጂ ቅጂ ላክልኝ -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.,የ Google Analytics መታወቂያ ያክሉ: ለምሳሌ. UA-89XXX57-1. ተጨማሪ መረጃ ለማግኘት በ Google ትንታኔዎች ላይ እርዳታ ፍለጋ ያድርጉ. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,የይለፍ ቃል ከ 100 በላይ ቁምፊዎች ርዝመት መሆን አይችልም DocType: OAuth Client,App Client ID,የመተግበሪያ የደንበኛ መታወቂያ @@ -2564,6 +2659,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,አዲስ የ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ጋር ይህን ሰነድ አጋርቷል {1} DocType: Website Settings,Brand Image,የምርት ምስል DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,አብነት ማስመጣት አርዕስት እና ቢያንስ አንድ ረድፍ መያዝ አለበት። apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,ጉግል ቀን መቁጠሪያ ተዋቅሯል። apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","ከላይ የዳሰሳ አሞሌ, ግርጌ እና ዓርማ ማዋቀር." DocType: Web Form Field,Max Value,ከፍተኛ እሴት @@ -2573,6 +2669,7 @@ DocType: User Social Login,User Social Login,የተጠቃሚ ማህበራዊ መ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} በ {2} ነጥብ ላይ በ {1} ላይ የሰራዎትን ስራ ላይ አውግ criticizedል ፡፡ DocType: Contact,All,ሁሉ DocType: Email Queue,Recipient,ተቀባይ +DocType: Webhook,Webhook Security,የድርሆክ ደህንነት DocType: Communication,Has Attachment,አባሪ አለው DocType: Address,Sales User,የሽያጭ ተጠቃሚ apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ይጎትቱ እና ጣል መሣሪያ ለመገንባት እና የህትመት ቅርጸቶች ለማበጀት. @@ -2639,7 +2736,6 @@ DocType: Data Migration Mapping,Migration ID Field,የስደት መታወቂያ DocType: Dashboard Chart,Last Synced On,ለመጨረሻ ጊዜ የተመሳሰለ DocType: Comment,Comment Type,የአስተያየት አይነት DocType: OAuth Client,OAuth Client,OAuth ደንበኛ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} ሥራዎን በ {1} {2} ላይ ነቀፌታ DocType: Assignment Rule,Users,ተጠቃሚዎች DocType: Address,Odisha,Odisha DocType: Report,Report Type,ሪፖርት አይነት @@ -2664,14 +2760,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,የድር ጣቢያ የ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,ራስን ማጽደቅ አይፈቀድም DocType: GSuite Templates,Template ID,የአብነት መታወቂያ apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,የእርዳታ አይነት ( {0} ) እና የተላላፊነት አይነት ( {1} ) ጥምር አይፈቀድም -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},አዲስ መልዕክት ከ {0} DocType: Portal Settings,Default Role at Time of Signup,ምዝገባ በጊዜ ላይ ነባሪ ሚና DocType: DocType,Title Case,ርዕስ መያዣ apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,ውሂብዎን ለማውረድ ከዚህ በታች ባለው አገናኝ ላይ ጠቅ ያድርጉ። apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},የነባር ኢሜይል የገቢ መልዕክት ሳጥን {0} DocType: Data Migration Run,Data Migration Run,የውሂብ ስደት አሂድ DocType: Blog Post,Email Sent,ኢሜይል ተልኳል -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,በጣም የቆየ DocType: DocField,Ignore XSS Filter,XSS ማጣሪያ ችላ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ተወግዷል apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox የመጠባበቂያ ቅንብሮች @@ -2726,6 +2820,7 @@ DocType: Async Task,Queued,ተሰልፏል DocType: Braintree Settings,Use Sandbox,ይጠቀሙ ማጠሪያ apps/frappe/frappe/utils/goal.py,This month,በዚህ ወር apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,አዲስ ብጁ ማተም ቅርጸት +DocType: Server Script,Before Save (Submitted Document),ከማስቀመጥዎ በፊት (ያስገቡት ሰነድ) DocType: Custom DocPerm,Create,ፈጠረ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,ምንም የሚታዩ ተጨማሪ ንጥሎች የሉም። apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,ወደ ቀዳሚው መዝገብ ይሂዱ። @@ -2782,6 +2877,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ወደ መጣያ አንቀሳቅስ DocType: Web Form,Web Form Fields,የድር ቅጽ መስኮች DocType: Data Import,Amended From,ከ እንደተሻሻለው +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,ተጠቃሚው ተንሸራታቹን ምን መሙላት እንዳለበት ምንም ሀሳብ ከሌለው ብቻ የእገዛ ቪዲዮ አገናኝ ያክሉ። apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},ማስጠንቀቂያ: አልተቻለም ለማግኘት ወደ {0} ጋር የሚዛመድ ማንኛውም ሰንጠረዥ ውስጥ {1} DocType: S3 Backup Settings,eu-north-1,ኢዩ-ሰሜን -1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ይህ ሰነድ በአሁኑ ጊዜ እንዲገደል ወረፋ ነው. እባክዎ ዳግም ይሞክሩ @@ -2803,6 +2899,7 @@ DocType: Blog Post,Blog Post,የጦማር ልጥፍ DocType: Access Log,Export From,ከ ላክ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,የላቀ ፍለጋ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ጋዜጣውን ለማየት አይፈቀድልዎትም. +DocType: Dashboard Chart,Group By,ቡድን በ DocType: User,Interests,ፍላጎቶች apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል DocType: Energy Point Rule,Allot Points To Assigned Users,ለተመደቡ ተጠቃሚዎች የተሰጡ ነጥቦች @@ -2818,6 +2915,7 @@ DocType: Assignment Rule,Assignment Rule,የምደባ ደንብ ፡፡ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},የተጠቆሙ የተጠቃሚ ስም: {0} DocType: Assignment Rule Day,Day,ቀን apps/frappe/frappe/public/js/frappe/desk.js,Modules,ሞዱሎች +DocType: DocField,Mandatory Depends On,የግዴታ ጥገኛ በ apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,የክፍያ ስኬት apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,ምንም {0} ደብዳቤ DocType: OAuth Bearer Token,Revoked,ተሽሯል @@ -2825,6 +2923,7 @@ DocType: Web Page,Sidebar and Comments,የጎን አሞሌ እና አስተያ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",አንድ ሰነድ በኋላ ይቅር እና ማስቀመጥ እንዲሻሻል ጊዜ: አሮጌውን ቁጥር አንድ ስሪት ነው አዲስ ቁጥር ያገኛሉ. apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","ሰነድ {0} ለማያያዝ አልተፈቀደለትም, እባክዎ በእርስዎ Print Settings ውስጥ ለ {0} ፍቀድ አትም" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ ማዋቀር እባክዎ ከማዋቀር> ኢሜል> ከኢሜል አካውንት ውስጥ አዲስ የኢሜል አካውንት ይፍጠሩ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ሰነዱን በ {0} ይመልከቱ DocType: Stripe Settings,Publishable Key,Publishable ቁልፍ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ማስመጣት ይጀምሩ @@ -2838,13 +2937,13 @@ DocType: Currency,Fraction,ክፍልፋይ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ዝግጅት ከ Google ቀን መቁጠሪያ ጋር ተመሳስሏል። DocType: LDAP Settings,LDAP First Name Field,ኤልዲኤፒ የመጀመሪያ ስም መስክ DocType: Contact,Middle Name,የአባት ስም +DocType: DocField,Property Depends On,ንብረት የሚወሰነው በ DocType: Custom Field,Field Description,የመስክ መግለጫ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ተከታትላችሁ በኩል አልተዘጋጀም ስም apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,የኢሜይል ገቢ መልዕክት ሳጥን apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",{0} ከ {1} ፣ {2} ማዘመን DocType: Auto Email Report,Filters Display,ማጣሪያዎችን አሳይ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ማሻሻያ ለማድረግ «የተሻሻለ_ዋጋ» መስክ መገኘት አለበት። -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} በ {1} {2} ላይ ያደረጉት ስራ አድናቆት አሳይቷል apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ማጣሪያዎችን ያስቀምጡ ፡፡ DocType: Address,Plant,ተክል apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ለሁሉም መልስ @@ -2885,11 +2984,11 @@ DocType: Workflow State,folder-close,አቃፊ-ዝጋ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,ሪፖርት DocType: Print Settings,Print taxes with zero amount,በዜሮ መጠን ግብር ያትሙ apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ተሰይሟል ዘንድ አይፈቀድም +DocType: Server Script,Before Insert,ከማስገባትዎ በፊት DocType: Custom Script,Custom Script,ብጁ ስክሪፕት DocType: Address,Address Line 2,የአድራሻ መስመር 2 DocType: Address,Reference,ማጣቀሻ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,የተመደበ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,እባክዎን ነባሪውን የኢሜል አካውንት ያዋቅሩ ከማዋቀር> ኢሜል> ከኢሜል አካውንት DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,የውሂብ ጎዳና ማዛመጃ ዝርዝር DocType: Data Import,Action,እርምጃ DocType: GSuite Settings,Script URL,ስክሪፕት ዩ አር ኤል @@ -2915,11 +3014,13 @@ DocType: User,Api Access,የ Api መዳረሻ DocType: DocField,In List View,ዝርዝር ይመልከቱ DocType: Email Account,Use TLS,ይጠቀሙ TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,ልክ ያልሆነ አገባብ ወይም የይለፍ ቃል +DocType: Scheduled Job Type,Weekly Long,ሳምንታዊ ረዥም apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,አውርድ አብነት apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ቅጾች ብጁ ጃቫስክሪፕት ያክሉ. ,Role Permissions Manager,ሚና ፍቃዶች አስተዳዳሪ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,አዲስ የህትመት ቅርጸት ስም apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,የጎን አሞሌን ይቀያይሩ +DocType: Server Script,After Save (Submitted Document),ካስቀመጡ በኋላ (ያስገቡት ሰነድ) DocType: Data Migration Run,Pull Insert,ሳጥኑን አስገባ DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ከተባዛ እሴት ጋር ነጥቦችን ካባዙ በኋላ የሚፈቀደው ከፍተኛው ነጥብ (ማስታወሻ-ይህንን መስክ ባዶ ይተው ወይም 0 ያዘጋጁ) @@ -2939,6 +3040,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ጦማር apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,የኤልዲኤፒ አልተጫነም apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ውሂብ ጋር አውርድ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ለ {0} {1} የተለወጡ እሴቶች +DocType: Server Script,Before Cancel,ከመሰረዝ በፊት DocType: Workflow State,hand-right,እጅ-ቀኝ DocType: Website Settings,Subdomain,ንዑስ ጎራ DocType: S3 Backup Settings,Region,ክልል @@ -2984,12 +3086,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,የድሮ የይለፍ DocType: S3 Backup Settings,us-east-1,እኛ-ምስራቅ -1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ልጥፎች {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","ቅርጸት ወደ አምዶች, የሚከተለው መጠይቅ ውስጥ አምድ መለያዎችን ይሰጣሉ." +DocType: Onboarding Slide,Slide Fields,የተንሸራታች መስኮች DocType: Has Domain,Has Domain,ጎራ አለው DocType: User,Allowed In Mentions,በአዕምሮዎች ውስጥ ተፈቅ .ል ፡፡ apps/frappe/frappe/www/login.html,Don't have an account? Sign up,መለያ የለህም? ተመዝገቢ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,የመታወቂያ መስክን ማስወገድ አልተቻለም apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም DocType: Address,Bihar,ቢሃር +DocType: Notification Settings,Subscribed Documents,የተመዘገቡ ሰነዶች apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,የተጠቃሚ ቅንብሮች። DocType: Report,Reference Report,የማጣቀሻ ዘገባ DocType: Activity Log,Link DocType,አገናኝ DocType @@ -3007,6 +3111,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,የጉግል የቀን apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,እናንተ የምትፈልጉት ገጽ ይጎድለዋል. ይህ ተንቀሳቅሷል ወይም አገናኝ ውስጥ የትየባ በዚያ ነው; ምክንያቱም ይህ ሊሆን ይችላል. apps/frappe/frappe/www/404.html,Error Code: {0},የስህተት ኮድ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",", ስነጣ አልባ ጽሑፍ ውስጥ, መስመሮች ብቻ አንድ ባልና ሚስት ዝርዝር ገፅ የሚሆን መግለጫ. (ቢበዛ 140 ቁምፊዎች)" +DocType: Server Script,DocType Event,DocType ክስተት apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} የግዴታ መስኮች ናቸው። DocType: Workflow,Allow Self Approval,ራስን ማጽደቅ ፍቀድ DocType: Event,Event Category,የክስተት ምድብ @@ -3023,6 +3128,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,የአንተ ስም apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,የግንኙነት ስኬት DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,የተንሸራታች ዓይነት የተንሸራታች አይነት ተንሸራታች ዓይነት ቀድሞውኑ አለ። DocType: DocType,Default Sort Field,ነባሪ የድርድር መስክ። DocType: File,Is Folder,አቃፊ ነው DocType: Document Follow,DocType,DocType @@ -3060,7 +3166,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,እሴ DocType: Workflow State,arrow-up,ቀስት-ምትኬ DocType: Dynamic Link,Link Document Type,የአገናኝ ሰነድ ዓይነት apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,ለ {0} ሠንጠረዥ ቢያንስ አንድ ረድፍ መኖር አለበት። +DocType: Server Script,Server Script,የአገልጋይ ስክሪፕት DocType: OAuth Bearer Token,Expires In,ውስጥ ጊዜው ያበቃል +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",የመስክን ስብስቦችን ለመድገም የሚፈልጓቸው ጊዜዎች ብዛት (ለምሳሌ ፣ በተንሸራታች ውስጥ 3 ደንበኞችን ከፈለጉ ፣ ይህንን መስክ ወደ 3. ያቀናብሩ የመጀመሪያዎቹ የመስኮች ስብስብ በተንሸራታች ላይ እንደ አስገዳጅ ይታያል) DocType: DocField,Allow on Submit,አስገባ ላይ ፍቀድ DocType: DocField,HTML,ኤችቲኤምኤል DocType: Error Snapshot,Exception Type,ለየት አይነት @@ -3070,6 +3178,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,ራስጌዎች apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,መጪ ክስተቶች apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,የመተግበሪያ መዳረሻ ቁልፍ እና የመተግበሪያ ሚስጥር ቁልፍ እሴቶች ያስገቡ +DocType: Email Account,Append Emails to Sent Folder,ኢሜሎችን ለተላከ አቃፊ ያያይዙ DocType: Web Form,Accept Payment,ክፍያ ተቀበል apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,የዝርዝር ንጥል ይምረጡ። apps/frappe/frappe/config/core.py,A log of request errors,ጥያቄ ስህተቶች አንድ መዝገብ @@ -3088,7 +3197,7 @@ DocType: Translation,Contributed,ተበርክቷል። apps/frappe/frappe/config/customization.py,Form Customization,የቅጽ ማበጀት። apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ምንም ንቁ ክፍለ ጊዜዎች የሉም DocType: Web Form,Route to Success Link,ለስኬት አገናኝ መንገድ -DocType: Top Bar Item,Right,ቀኝ +DocType: Onboarding Slide Field,Right,ቀኝ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,ምንም መጪ ክስተቶች የሉም። DocType: User,User Type,የተጠቃሚ አይነት DocType: Prepared Report,Ref Report DocType,የ DOCType ሪፖርት ሪፖርቶች @@ -3106,6 +3215,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,እባክዎ ዳ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL በ ‹http: // 'ወይም' https: // 'መጀመር አለበት apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,አማራጭ 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,ይህ ሊቀለበስ አይችልም DocType: Workflow State,Edit,አርትዕ DocType: Website Settings,Chat Operators,የውይይት ኦፕሬተሮች DocType: S3 Backup Settings,ca-central-1,ca-ማዕከላዊ -1 @@ -3117,7 +3227,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,በዚህ ቅጽ ላይ ያልተቀመጡ ለውጦች አለዎት. ደረጃ ከመሔድ በፊት ያስቀምጡ. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ -DocType: Tag Doc Category,Tag Doc Category,መለያ ሰነድ ምድብ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,ከ 10 በላይ አምዶች ጋር ሪፖርት በወርድ ገጽታ ውስጥ የተሻሉ ይመስላል። apps/frappe/frappe/database/database.py,Invalid field name: {0},ልክ ያልሆነ የመስክ ስም: {0} DocType: Milestone,Milestone,ማይልስ @@ -3126,7 +3235,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},ወደ {0} ይሂ apps/frappe/frappe/email/queue.py,Emails are muted,ኢሜይሎች ድምጸ-ናቸው apps/frappe/frappe/config/integrations.py,Google Services,የ Google አገልግሎቶች apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + እስከ -apps/frappe/frappe/utils/data.py,1 weeks ago,1 ሳምንት በፊት +DocType: Onboarding Slide,Slide Description,የስላይድ መግለጫ DocType: Communication,Error,ስሕተት apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,እባክዎ መጀመሪያ መልዕክት ያዘጋጁ DocType: Auto Repeat,End Date,የመጨረሻ ቀን @@ -3147,10 +3256,12 @@ DocType: Footer Item,Group Label,የቡድን መለያ ስም DocType: Kanban Board,Kanban Board,Kanban ቦርድ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ጉግል ዕውቂያዎች ተዋቅረዋል። apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 መዝገብ ይላካል +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ከተጠቃሚው ጋር የተገናኘ ምንም የኢሜይል መለያ የለም ፡፡ እባክዎን በተጠቃሚ> በኢሜል ገቢ መልእክት ሳጥን ስር ያክሉ ፡፡ DocType: DocField,Report Hide,ሪፖርት ደብቅ apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},አይገኝም ዛፍ እይታ {0} DocType: DocType,Restrict To Domain,ወደ ጎራ ከልክል DocType: Domain,Domain,የጎራ +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,የተሳሳተ ፋይል ዩ.አር.ኤል. እባክዎ የስርዓት አስተዳዳሪን ያነጋግሩ። DocType: Custom Field,Label Help,መለያ እገዛ DocType: Workflow State,star-empty,ኮከብ-ባዶ apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ቀኖች ብዙውን ጊዜ ለመገመት ቀላል ናቸው. @@ -3175,6 +3286,7 @@ DocType: Workflow State,hand-left,እጅ-ግራ DocType: Data Import,If you are updating/overwriting already created records.,ቀደም ብለው የተፈጠሩ መዝገቦችን እያዘመኑ / እየተተላለፉ ከሆኑ. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,አለም አቀፍ ነው DocType: Email Account,Use SSL,SSL ተጠቀም +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,ጨዋታ-ክበብ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ሰነዱ በትክክል አልተመደበም apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",ልክ ያልሆነ «የተደገፈ_ን» መግለጫ @@ -3191,6 +3303,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,ለመጨረሻ ጊዜ ታድሷል ፡፡ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ለሰነድ ዓይነት። DocType: Workflow State,arrow-right,ቀስት-ቀኝ +DocType: Server Script,API Method,የኤ.ፒ.አይ. ዘዴ DocType: Workflow State,Workflow state represents the current state of a document.,የስራ ፍሰት ሁኔታ አንድ ሰነድ የአሁኑ ሁኔታ ያመለክታል. DocType: Letter Head,Letter Head Based On,ፊደል ላይ የተመሠረተ ፡፡ apps/frappe/frappe/utils/oauth.py,Token is missing,ማስመሰያ ይጎድለዋል @@ -3230,6 +3343,7 @@ DocType: Comment,Relinked,ተገናኝቷል DocType: Print Settings,Compact Item Print,ውሱን ንጥል አትም DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,ዩ አር ኤል አቅጣጫ አዙር +DocType: Onboarding Slide Field,Placeholder,ቦታ ያዥ DocType: SMS Settings,Enter url parameter for receiver nos,ተቀባይ ቁጥሮች ለ አር ኤል ግቤት ያስገቡ DocType: Chat Profile,Online,የመስመር ላይ DocType: Email Account,Always use Account's Name as Sender's Name,የመለያውን ስም እንደ የላኪ ስም ሁልጊዜ ይጠቀሙ ፡፡ @@ -3239,7 +3353,6 @@ DocType: Workflow State,Home,መኖሪያ ቤት DocType: OAuth Provider Settings,Auto,ራስ- DocType: System Settings,User can login using Email id or User Name,ተጠቃሚው በኢሜል መታወቂያ ወይም በተጠቃሚ ስም መጠቀም ይችላል DocType: Workflow State,question-sign,ጥያቄ-ምልክት -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ተሰናክሏል apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ለድር እይታዎች የግብዓት "መስመር" ግዴታ ነው apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},አምድ ከ {0} በፊት DocType: Energy Point Rule,The user from this field will be rewarded points,ከዚህ መስክ ተጠቃሚው ይሸልማል ነጥቦችን ያገኛል ፡፡ @@ -3264,6 +3377,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ባለቤት ከሆ DocType: Data Migration Mapping,Push,ይግፉ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ፋይሎችን እዚህ ይጣሉ። DocType: OAuth Authorization Code,Expiration time,የሚያልፍበት ሰዓት +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,ሰነዶች ይክፈቱ DocType: Web Page,Website Sidebar,የድር ጣቢያ የጎን DocType: Web Form,Show Sidebar,የጎን አሞሌን አሳይ apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,ይህን ለመድረስ ውስጥ መግባት አለብዎት {0}. @@ -3279,6 +3393,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ግሎባል DocType: Desktop Icon,Page,ገጽ apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},ማግኘት አልተቻለም {0} ውስጥ {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ራሳቸውን ስሞች እና አይበልጥም. ለመገመት ቀላል ናቸው. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},ሰነድ ከ {0} ወደ {1} እንደገና ተሰይሟል apps/frappe/frappe/config/website.py,Knowledge Base,እውቀት መሰረት DocType: Workflow State,briefcase,የእጅ ቦርሳ apps/frappe/frappe/model/document.py,Value cannot be changed for {0},እሴት መለወጥ አይችልም {0} @@ -3315,6 +3430,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,አትም ቅርጸት apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,የፍርግርግ እይታ ይቀያይሩ apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ወደ ቀጣዩ መዝገብ ይሂዱ። +DocType: System Settings,Time Format,የጊዜ ቅርጸት apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ልክ ያልሆነ የክፍያ ፍኖት ምስክርነቶች DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ይሄ የተወሰነ ስህተት ካላቸው ረድፎች ጋር የሚፈጠር የአብነት ፋይል ነው. ይህንን ፋይል ለማረም እና ለማስመጣት መጠቀም ይኖርብዎታል. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,የሰነድ አይነቶች እና ሚናዎች ላይ አዘጋጅ ፍቃዶች @@ -3357,12 +3473,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,መልስ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ዴስክ ውስጥ የሚገኙ ገጾች (ቦታ ያዢዎች) DocType: DocField,Collapsible Depends On,ሊሰበሰቡ ላይ ይመረኮዛል DocType: Print Style,Print Style Name,የቅጥ ስም አትም +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ዳሽቦርድ ገበታ ለመፍጠር በሜዳ ያስፈልጋል DocType: Print Settings,Allow page break inside tables,ሰንጠረዦች ውስጥ ገጽ ከፋይ ፍቀድ DocType: Email Account,SMTP Server,SMTP አገልጋይ DocType: Print Format,Print Format Help,አትም ቅርጸት እገዛ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ክፍሉ አንድ ተጠቃሚ ሊኖረው ይገባል. DocType: DocType,Beta,ይሁንታ DocType: Dashboard Chart,Count,ቆጠር። +DocType: Dashboard Chart,Group By Type,ዓይነት በቡድን apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},በ {0} ላይ አዲስ አስተያየት: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ወደነበረበት {0} እንደ {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ከማዘመን ከሆነ, "ተካ" የሚለውን ይምረጡ እባክዎ ሌላ ነባር ረድፎች አይሰረዙም." @@ -3373,14 +3491,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,የተጠ DocType: Web Form,Web Form,የድር ቅጽ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},ቀን {0} በ ቅርፀት መሆን አለበት: {1} DocType: About Us Settings,Org History Heading,ርዕስ ድርጅት ታሪክ +DocType: Scheduled Job Type,Scheduled Job Type,መርሃግብር የተያዘለት የሥራ ዓይነት DocType: Print Settings,Allow Print for Cancelled,ተሰርዟል ለ አትም ፍቀድ DocType: Communication,Integrations can use this field to set email delivery status,ውህደቶች ኢሜይል መላክ ሁኔታ ለማዘጋጀት ይህን መስክ መጠቀም ይችላሉ +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,ሁሉንም የተገናኙ ሰነዶችን ለመሰረዝ ፈቃድ የለዎትም። DocType: Web Form,Web Page Link Text,ድረ-ገጽ አገናኝ ጽሑፍ DocType: Page,System Page,የስርዓት ገጽ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","ወዘተ አዘጋጅ ነባሪ ቅርጽ, መጠን, የህትመት ቅጥ" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ወደ {5} የታከሉ ብጁነቶች ወደ:
{1} DocType: Website Settings,Include Search in Top Bar,ከፍተኛ ቡና ቤት ውስጥ ፍለጋ ይጨምሩ +DocType: Scheduled Job Type,Daily Long,በየቀኑ ሎንግ DocType: GSuite Settings,Allow GSuite access,GSuite መዳረሻ ፍቀድ DocType: DocType,DESC,DESC DocType: DocType,Naming,መሰየምን @@ -3472,6 +3593,7 @@ DocType: Notification,Send days before or after the reference date,በፊት ወ DocType: User,Allow user to login only after this hour (0-24),ተጠቃሚ ብቻ ከዚህ ሰዓት በኋላ መግባት (0-24) ፍቀድ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",በቅደም ተከተል አንድ በአንድ መድብ ፡፡ DocType: Integration Request,Subscription Notification,የደንበኝነት ምዝገባ ማሳወቂያ +DocType: Customize Form Field, Allow in Quick Entry ,በፈጣን ግቤት ውስጥ ፍቀድ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ወይም ያያይዙ ሀ DocType: Auto Repeat,Start Date,ቀን ጀምር apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,ዋጋ @@ -3486,6 +3608,7 @@ DocType: Google Drive,Backup Folder ID,ምትኬ አቃፊ መታወቂያ። apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,አይደለም የገንቢ ሁነታ ላይ! site_config.json ውስጥ አዘጋጅ ወይም 'ብጁ' DocType ማድረግ. DocType: Workflow State,globe,ክበብ ምድር DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ቪዲዮ ፡፡ DocType: Assignment Rule,Priority,ቅድሚያ DocType: Email Queue,Unsubscribe Param,ከደንበኝነት PARAM DocType: DocType,Hide Sidebar and Menu,የጎን አሞሌ እና ምናሌ ደብቅ። @@ -3497,6 +3620,7 @@ DocType: DocType,Allow Import (via Data Import Tool),አስመጣ ፍቀድ (ው apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,SR DocType: DocField,Float,ተንሳፈፈ DocType: Print Settings,Page Settings,የገፅ ቅንብሮች +DocType: Notification Settings,Notification Settings,የማሳወቂያ ቅንብሮች apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,በማስቀመጥ ላይ ... apps/frappe/frappe/www/update-password.html,Invalid Password,የተሳሳተ የሚስጥርቃል DocType: Contact,Purchase Master Manager,የግዢ መምህር አስተዳዳሪ @@ -3511,6 +3635,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,የ GMail DocType: Letter Head,Letter Head Image,የደብዳቤ ምስል። DocType: Address,Party GSTIN,የድግስ GSTIN +DocType: Scheduled Job Type,Cron Format,ክሮን ቅርጸት apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} ሪፖርት DocType: SMS Settings,Use POST,POST ይጠቀሙ DocType: Communication,SMS,ኤስኤምኤስ @@ -3555,18 +3680,20 @@ DocType: Workflow,Allow approval for creator of the document,ለሰነዱ ፈጣ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ሪፖርት ይቆጥቡ DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,ኤፒአይ መጨረሻ ነጥብ Args +DocType: DocType Action,Server Action,የአገልጋይ ተግባር apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,አስተዳዳሪ ማግኘት {0} ላይ {1} የአይ ፒ አድራሻ በኩል {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,የወላጅ መስክ ትክክለኛ የመስሪያ ስም መሆን አለበት። apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,የደንበኝነት ምዝገባን በማሻሻል ላይ አልተሳካም DocType: LDAP Settings,LDAP Group Field,LDAP ቡድን መስክ ፡፡ +DocType: Notification Subscribed Document,Notification Subscribed Document,ማስታወቂያ የተመዘገበ ሰነድ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,እኩል apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,ልክ ያልሆነ የ CSV ቅርጸት -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ከ QZ ትሪ ትግበራ ጋር መገናኘት ላይ ስህተት ...

ጥሬ ማተም ባህሪን ለመጠቀም QZ ትሪ መተግበሪያ ተጭኖ እና አሂድ ያስፈልግዎታል።

QZ ትሪ ለመጫን እና ለመጫን እዚህ ጠቅ ያድርጉ
ስለ ጥሬ ማተሚያ የበለጠ ለማወቅ እዚህ ጠቅ ያድርጉ ።" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,ምትኬዎች ቁጥር አዘጋጅ DocType: DocField,Do not allow user to change after set the first time,ለመጀመሪያ ጊዜ ተጠቃሚው በኋላ ለማዘጋጀት ሊለወጥ አትፍቀድ apps/frappe/frappe/utils/data.py,1 year ago,1 ዓመት በፊት +DocType: DocType,Links Section,የአገናኞች ክፍል apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",የሁሉም የህትመት ፣ የማውረድ እና ወደ ውጭ መላኪያ ክስተቶች ምዝግብ ይመልከቱ። apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ወር DocType: Contact,Contact,እውቂያ @@ -3593,16 +3720,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,አዲስ ኢሜይል DocType: Custom DocPerm,Export,ወደ ውጪ ላክ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",ጉግል ቀን መቁጠሪያን ለመጠቀም {0} ን ያንቁ። +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},እንዲሁም የሁኔታ ጥገኛ መስክን ማከል {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},በተሳካ ሁኔታ ዘምነዋል {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,የ QZ ትሬድ አልተሳካም DocType: Dropbox Settings,Dropbox Settings,dropbox ቅንብሮች DocType: About Us Settings,More content for the bottom of the page.,ከገጹ ግርጌ ተጨማሪ ይዘት. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ይህ ሰነድ አድህሯል። apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive ምትኬ ተሳክቷል። +DocType: Webhook,Naming Series,መሰየምን ተከታታይ DocType: Workflow,DocType on which this Workflow is applicable.,DocType ይህም ላይ ይህን ፍሰት የሚመለከታቸው ነው. DocType: User,Enabled,ነቅቷል apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,ማዋቀርን ለማጠናቀቅ አልተሳካም apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},አዲስ {0}: {1} -DocType: Tag Category,Category Name,ምድብ ስም +DocType: Blog Category,Category Name,ምድብ ስም apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,የሕፃናት ሰንጠረዥ መረጃ ለማግኘት ወላጅ ያስፈልጋል ፡፡ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,አስመጣ ተመዝጋቢዎች DocType: Print Settings,PDF Settings,የፒዲኤፍ ቅንብሮች @@ -3638,6 +3768,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ቀን መቁጠሪያ apps/frappe/frappe/client.py,No document found for given filters,የተሰጠው ማጣሪያዎች አልተገኙም ምንም ሰነድ apps/frappe/frappe/config/website.py,A user who posts blogs.,ብሎጎችን የሚለጥፍ ተጠቃሚ። +DocType: DocType Action,DocType Action,DocType እርምጃ apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","ሌላው {0} ስም {1} አለ ጋር, ሌላ ስም ይምረጡ" DocType: DocType,Custom?,ብጁ? DocType: Website Settings,Website Theme Image,የድር ጣቢያ ገጽታ ምስል @@ -3647,6 +3778,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},መጫን apps/frappe/frappe/config/integrations.py,Backup,ምትኬ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,የዳሽቦርድ ገበታ ለመፍጠር የሰነድ ዓይነት ያስፈልጋል። DocType: DocField,Read Only,ለማንበብ ብቻ የተፈቀደ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,የ razorpay ቅደም ተከተል መፍጠር አልተቻለም apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,አዲስ ጋዜጣ DocType: Energy Point Log,Energy Point Log,የኢነርጂ ነጥብ ምዝግብ ማስታወሻ። DocType: Print Settings,Send Print as PDF,እንደ PDF Print ላክ @@ -3672,16 +3804,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,የ apps/frappe/frappe/www/login.html,Or login with,ወይስ ጋር መግባት DocType: Error Snapshot,Locals,የአካባቢው ሰዎች apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},በኩል እንዳልተካፈለች {0} ላይ {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ውስጥ አስተያየት ውስጥ ጠቅሶሃል {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ቡድን ይምረጡ በ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ለምሳሌ: (55 + 434) / 4 ወይም = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ያስፈልጋል DocType: Integration Request,Integration Type,የውህደት አይነት DocType: Newsletter,Send Attachements,Attachements ላክ +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,ምንም ማጣሪያዎች አልተገኙም apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,የጉግል ዕውቂያዎች ማዋሃድ ፡፡ DocType: Transaction Log,Transaction Log,የግብይት ምዝግብ ማስታወሻ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),በመጨረሻው ወር አፈፃፀም ላይ የተመሰረቱ ስታቲስቲክስ (ከ {0} እስከ {1}) DocType: Contact Us Settings,City,ከተማ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,ለሁሉም ተጠቃሚዎች ካርዶችን ደብቅ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,ለግልጽ ማድረጊያ ራስ-ድግግሞሹን አንቃ {0} ን ያበጁ ቅጽ ውስጥ ያንቁ። DocType: DocField,Perm Level,Perm ደረጃ apps/frappe/frappe/www/confirm_workflow_action.html,View document,ሰነድ ይመልከቱ @@ -3692,6 +3825,7 @@ DocType: Blog Category,Blogger,ብሎገር DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline",ከነቃ በሰነዱ ላይ ለውጦች ተደርገው ክትትል ይደረግባቸዋል እንዲሁም በሰዓት ውስጥ ይታያሉ። apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1} DocType: Energy Point Log,Appreciation,አድናቆት ፡፡ +DocType: Dashboard Chart,Number of Groups,የቡድኖች ብዛት apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,ይመልከቱ ዝርዝር DocType: Workflow,Don't Override Status,ሁኔታ ሻር አትበል apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,የፍለጋ ቃል @@ -3733,7 +3867,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn- ሰሜን ምዕራብ -1 DocType: Dropbox Settings,Limit Number of DB Backups,የ DB መጠባበቂያ ቁጥር ገደብ DocType: Custom DocPerm,Level,ደረጃ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,ያለፉት 30 ቀናት። DocType: Custom DocPerm,Report,ሪፖርት apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,የገንዘብ መጠን 0 የበለጠ መሆን አለበት. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,ከ QZ ትራምፕ ጋር ተገናኝቷል! @@ -3750,6 +3883,7 @@ DocType: S3 Backup Settings,us-west-2,እኛ-ምዕራብ -2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,የሕፃናት ጠረጴዛን ይምረጡ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ትሪጅ አንደኛ እርምጃ። apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,ለዉጥ +DocType: Social Login Key,User ID Property,የተጠቃሚ መታወቂያ ንብረት DocType: Email Domain,domain name,የጎራ ስም DocType: Contact Email,Contact Email,የዕውቂያ ኢሜይል DocType: Kanban Board Column,Order,ትእዛዝ @@ -3772,7 +3906,7 @@ DocType: Contact,Last Name,የአያት ሥም DocType: Event,Private,የግል apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,ዛሬ ምንም ማንቂያዎች DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),እንደ ፒዲኤፍ የኢሜይል የህትመት አባሪዎች ይላኩ (የሚመከር) -DocType: Web Page,Left,ግራ +DocType: Onboarding Slide Field,Left,ግራ DocType: Event,All Day,ሙሉ ቀን apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ነገር ይመስላል ይህን ጣቢያ የክፍያ ፍኖት ውቅር ጋር ስህተት ነው. ምንም ክፍያ አልተደረገም. DocType: GCalendar Settings,State,ሁኔታ @@ -3804,7 +3938,6 @@ DocType: Workflow State,User,ተጠቃሚ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",እንደ የአሳሽ መስኮት ውስጥ አሳይ ርዕስ "ቅድመ ቅጥያ - ርዕስ" DocType: Payment Gateway,Gateway Settings,የመግቢያ ቅንብሮች apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ሰነድ ዓይነት ውስጥ ጽሑፍ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,አሂድ ፈተናዎች apps/frappe/frappe/handler.py,Logged Out,ውጪ ገብቷል apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ተጨማሪ ... DocType: System Settings,User can login using Email id or Mobile number,የተጠቃሚ የኢሜይል መታወቂያ ወይም የሞባይል ቁጥር በመጠቀም መግባት ይችላሉ @@ -3820,6 +3953,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,ማጠቃለያ DocType: Event,Event Participants,የዝግጅቱ ተሳታፊዎች DocType: Auto Repeat,Frequency,መደጋገም +DocType: Onboarding Slide,Slide Order,የተንሸራታች ትዕዛዝ DocType: Custom Field,Insert After,በኋላ አስገባ DocType: Event,Sync with Google Calendar,ከ Google ቀን መቁጠሪያ ጋር አመሳስል። DocType: Access Log,Report Name,ሪፖርት ስም @@ -3847,6 +3981,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0} apps/frappe/frappe/config/website.py,Content web page.,የይዘት ድረ-ገጽ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,አዲስ ሚና አክል +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,የድር ገጽን ይጎብኙ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,አዲስ ምደባ DocType: Google Contacts,Last Sync On,የመጨረሻው አስምር በርቷል DocType: Deleted Document,Deleted Document,ተሰርዟል ሰነድ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ውይ! የሆነ ስህተት ተከስቷል @@ -3857,7 +3993,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,የመሬት ገጽ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ጃቫስክሪፕት ውስጥ ደንበኛ ጎን ስክሪፕት ቅጥያዎች DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,የሚከተሏቸው ዶክተሮች መዛግብት ይጣራሉ -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,መርሐግብር አስያዥ ንቁ ያልሆነ። +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,መርሐግብር አስያዥ ንቁ ያልሆነ። DocType: Blog Settings,Blog Introduction,የጦማር መግቢያ DocType: Global Search Settings,Search Priorities,ቅድሚያ የሚሰጣቸውን ነገሮች ፈልግ DocType: Address,Office,ቢሮ @@ -3867,12 +4003,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ዳሽቦርድ ገበታ አ DocType: User,Email Settings,የኢሜይል ቅንብሮች apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,እዚህ ጣል ያድርጉ። DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",ከነቃ ተጠቃሚው ሁለት ተጨባጭ ማረጋገጫዎችን በመጠቀም ከማንኛውም የአይፒ አድራሻ መግባት ይችላል ፣ ይህ በስርዓት ቅንብሮች ውስጥ ለሁሉም ተጠቃሚዎች ሊዋቀር ይችላል ፡፡ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,የአታሚ ቅንብሮች ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,ለመቀጠል እባክዎ የይለፍ ቃልዎን ያስገቡ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,እኔ። apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} አይደለም የሚሰራ መንግስት apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,ለሁሉም የሰነዶች ዓይነቶች ይተግብሩ። -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,የኃይል ምንጭ ዝመና +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,የኃይል ምንጭ ዝመና +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),የስራ ቀናት ካልሰሩ በየቀኑ ብቻ በየቀኑ ይሮጡ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ሌላ የክፍያ ስልት ይምረጡ. PayPal «{0}» ምንዛሬ ግብይቶችን አይደግፍም DocType: Chat Message,Room Type,የክፍል አይነት DocType: Data Import Beta,Import Log Preview,የምዝግብ ማስታወሻ ቅድመ እይታን ያስመጡ። @@ -3881,6 +4017,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-ክበብ DocType: LDAP Settings,LDAP User Creation and Mapping,የኤል.ዲ.ኤፍ. ተጠቃሚ ፈጠራ እና ካርታ ሥራ apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',አንተ 'ደንበኞች ውስጥ ብርቱካናማ ማግኘት' በመጠየቅ ነገሮችን ማግኘት ይችላሉ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,የዛሬ ክስተቶች apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,አዝናለሁ! ተጠቃሚ የራሳቸውን መዝገብ ሙሉ መዳረሻ ሊኖራቸው ይገባል. ,Usage Info,አጠቃቀም መረጃ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,የቁልፍ ሰሌዳ አቋራጮችን አሳይ። @@ -3897,6 +4034,7 @@ DocType: DocField,Unique,የተለየ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} በ {1} ላይ አድናቆት apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ከፊል ስኬት DocType: Email Account,Service,አገልግሎት +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ማዋቀር> ተጠቃሚ DocType: File,File Name,የመዝገብ ስም apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ማግኘት አልተቻለም ነበር {0} ለ {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3910,6 +4048,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ሙሉ DocType: GCalendar Settings,Enable,አንቃ DocType: Google Maps Settings,Home Address,የቤት አድራሻ apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),አንተ ብቻ አንድ በመሄድ በ 5000 መዝገቦች እስከሁለት መስቀል ይችላሉ. (በአንዳንድ አጋጣሚዎች ያነሰ ሊሆን ይችላል) +DocType: Report,"output in the form of `data = [columns, result]`",ውፅዓት በ ‹data = [አምዶች ፣ ውጤት ]` መልክ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,የሚመለከታቸው የሰነድ ዓይነቶች። apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ለተጠቃሚ ምደባዎች ደንቦችን ያዘጋጁ ፡፡ apps/frappe/frappe/model/document.py,Insufficient Permission for {0},በቂ ፈቃድ {0} @@ -3925,7 +4064,6 @@ DocType: Communication,To and CC,እና ዝግ መግለጫ DocType: SMS Settings,Static Parameters,አይለወጤ መለኪያዎች DocType: Chat Message,Room,ክፍል apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ወደ ዘምኗል {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,የጀርባ ሥራዎች አይሰሩም ፡፡ እባክዎ አስተዳዳሪውን ያነጋግሩ። DocType: Portal Settings,Custom Menu Items,ብጁ ምናሌ ንጥሎች apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ድህረ ገጽ ተንሸራታች ትዕይንት የተያያዙ ምስሎች በሙሉ ይፋዊ መሆን አለባቸው DocType: Workflow State,chevron-right,ሸቭሮን-ቀኝ @@ -3940,11 +4078,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ዋጋዎች ተመርጠዋል። DocType: DocType,Allow Auto Repeat,ራስ-ድገም ፍቀድ። apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ምንም የሚታዩ እሴቶች የሉም። +DocType: DocType,URL for documentation or help,ለሰነድ ወይም ለእርዳታ ዩ.አር.ኤል. DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,የኢሜይል አብነት apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,በተሳካ ሁኔታ ዘምኗል {0} መዝገብ። apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ተጠቃሚው {0} ለሰነድ በሰነድ ፍቃድ በኩል የመሠረታዊ የመዳረሻ ፍቃድ የለውም {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ያስፈልጋል ሁለቱም መግቢያ እና የይለፍ ቃል +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,እንሂድ \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,የቅርብ ጊዜ ሰነዱን ለማግኘት እባክዎ ያድሱ. DocType: User,Security Settings,የደህንነት ቅንብሮች apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,አምድ ያክሉ @@ -3954,6 +4094,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Meta አጣራ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},እባክዎ የተያያዘውን {0}: {1} ያግኙ DocType: Web Page,Set Meta Tags,ሜታ መለያዎችን ያዘጋጁ። +DocType: Email Account,Use SSL for Outgoing,ለወጪ ለማውጣት SSL ይጠቀሙ 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: S3 Backup Settings,Backup Limit,መጠባበቂያ ገደብ DocType: Dashboard Chart,Line,መስመር። @@ -3986,4 +4127,3 @@ DocType: DocField,Ignore User Permissions,የተጠቃሚ ፍቃዶችን ችላ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,በተሳካ ሁኔታ ተቀም .ል። apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,የእርስዎ በመለያ-ምትኬ ለማረጋገጥ የእርስዎን አስተዳዳሪውን ይጠይቁ DocType: Domain Settings,Active Domains,ንቁ ጎራዎች -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,አሳይ ምዝግብ ማስታወሻ diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv index b1fdf354a5..073c393f33 100644 --- a/frappe/translations/ar.csv +++ b/frappe/translations/ar.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,الرجاء تحديد حقل المبلغ. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,جارٍ تحميل ملف الاستيراد ... DocType: Assignment Rule,Last User,آخر مستخدم -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",مهمة جديدة، {0}، أسندت إليك بواسطة {1}. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,تم حفظ الإعدادات الافتراضية للجلسة apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,إعادة تحميل الملف DocType: Email Queue,Email Queue records.,سجلات البريد الإلكتروني قائمة الانتظار. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} شجرة DocType: User,User Emails,مراسلات المستخدم DocType: User,Username,اسم االمستخدم apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,استيراد الرمز البريدي +DocType: Scheduled Job Type,Create Log,إنشاء سجل apps/frappe/frappe/model/base_document.py,Value too big,قيمة كبيرة جدا DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,تشغيل اختبار البرنامج النصي @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,شهريا DocType: Address,Uttarakhand,أوتارانتشال DocType: Email Account,Enable Incoming,تمكين الوارد apps/frappe/frappe/core/doctype/version/version_view.html,Danger,خطر -DocType: Address,Email Address,عنوان البريد الإلكتروني +apps/frappe/frappe/www/login.py,Email Address,عنوان البريد الإلكتروني DocType: Workflow State,th-large,TH-الكبيرة DocType: Communication,Unread Notification Sent,إعلام مقروء المرسلة apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,الصادرات غير مسموح به. تحتاج {0} صلاحية التصدير. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,إل DocType: DocType,Is Published Field,ونشرت الميدان DocType: GCalendar Settings,GCalendar Settings,إعدادات GCalendar DocType: Email Group,Email Group,البريد الإلكتروني المجموعة +apps/frappe/frappe/__init__.py,Only for {},فقط ل {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",تقويم Google - تعذر حذف الحدث {0} من تقويم Google ، رمز الخطأ {1}. DocType: Event,Pulled from Google Calendar,تم سحبها من تقويم Google DocType: Note,Seen By,تمت رؤيته بواسطة apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,إضافة متعددة -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,لقد ربحت بعض نقاط الطاقة apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ليست صورة مستخدم صالحة. DocType: Energy Point Log,Reverted,عادت DocType: Success Action,First Success Message,رسالة النجاح الأولى @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,لا تعجب apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},قيمة غير صحيحة: {0} يجب أن يكون {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",تغيير خصائص الحقل (إخفاء ، للقراءة فقط ، إذن الخ ) apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,يستفسر +DocType: Notification Settings,Document Share,مشاركة المستند DocType: Workflow State,lock,قفل apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,إعدادات صفحة الاتصال بنا apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,تسجيل دخول مسؤول النظام @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",في حالة التمكين ، يتم تمييز المستند على أنه مرئي ، وهي المرة الأولى التي يقوم فيها المستخدم بفتحها DocType: Auto Repeat,Repeat on Day,كرر يوم DocType: DocField,Color,اللون +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,اشر عليها بانها قرات DocType: Data Migration Run,Log,سجل DocType: Workflow State,indent-right,المسافة البادئة اليمنى DocType: Has Role,Has Role,له صلاحية @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,إظهار التتبع DocType: DocType,Default Print Format,طباعة شكل الافتراضي DocType: Workflow State,Tags,بطاقات +DocType: Onboarding Slide,Slide Type,نوع الشريحة apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,لا شيء: نهاية سير العمل apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",الحقل {0} لا يمكن ضبطه كفريد في {1}، لعدم وجود قيم فريدة من نوعها apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,أنواع المستندات @@ -135,7 +138,6 @@ DocType: Language,Guest,ضيف DocType: DocType,Title Field,حقل العنوان DocType: Error Log,Error Log,سجل الأخطاء apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL غير صالح -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,اخر 7 ايام apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",يكرر مثل "abcabcabc" ليست سوى أصعب قليلا لتخمين من "اي بي سي" DocType: Notification,Channel,قناة apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",إذا كنت تعتقد أن هذا غير المصرح به، الرجاء تغيير كلمة مرور المسؤول. @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,عميل apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,حدد العمود apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,تم تعديل هذا النموذج بعد أن كنت قد تحميلها DocType: Address,Himachal Pradesh,هيماشال براديش +DocType: Notification Log,Notification Log,سجل الإخطار DocType: System Settings,"If not set, the currency precision will depend on number format",إذا لم يتم تعيينها، فإن دقة العملة تعتمد على تنسيق الأرقام apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,افتح شريط ممتاز apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",يبدو أن هناك مشكلة في تكوين شريطية للخادم. في حالة الفشل ، سيتم رد المبلغ إلى حسابك. @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,ت apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,إرسال DocType: Workflow Action Master,Workflow Action Name,سير العمل اسم العمل apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,لا يمكن دمج DOCTYPE -DocType: Web Form Field,Fieldtype,نوع الحقل +DocType: Onboarding Slide Field,Fieldtype,نوع الحقل apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ليس ملف مضغوط DocType: Global Search DocType,Global Search DocType,البحث العالمي DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,ارسال البريد الالكترونى ؟ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,تبديل الرسم البياني apps/frappe/frappe/desk/form/save.py,Did not cancel,لم يتم الإلغاء DocType: Social Login Key,Client Information,معلومات العميل +DocType: Energy Point Rule,Apply this rule only once per document,قم بتطبيق هذه القاعدة مرة واحدة فقط لكل وثيقة DocType: Workflow State,plus,زائد +DocType: DocField,Read Only Depends On,قراءة يعتمد فقط على apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,دخولك كضيف أو المسؤول DocType: Email Account,UNSEEN,غير مرئي apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,مدير الملفات @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,سبب 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,لا يوجد نشاط +DocType: Server Script,Script Manager,مدير البرنامج النصي +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,لا يوجد نشاط apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,تطبيقات الجهات الخارجية apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,المستخدم الأول سوف تصبح مدير النظام (يمكنك تغيير هذا لاحقا). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,لا أحداث اليوم apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,لا يمكنك إعطاء نقاط مراجعة لنفسك apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,يجب تقديم دوكتيب للحدث دوك المحدد DocType: Workflow State,circle-arrow-up,دائرة السهم إلى أعلى @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},غير مسموح لـ {0}: {1}. المجال المقيد: {2} 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,You are not allowed to delete a standard Website Theme,لا يسمح لك بحذف موضوع الموقع القياسي +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},قم بإنشاء أول {0} DocType: Data Import,Log Details,تفاصيل السجل DocType: Workflow Transition,Example,مثال DocType: Webhook Header,Webhook Header,رأس ويبهوك @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,دردشة الخلفية apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,ضع إشارة مقروء apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},تحديث {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,توجد Onboarding Slide {0} بنفس ترتيب الشريحة بالفعل apps/frappe/frappe/core/doctype/report/report.js,Disable Report,تعطيل تقرير DocType: Translation,Contributed Translation Doctype Name,ساهم في الترجمة الترجمة +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج DocType: PayPal Settings,Redirect To,إعادة توجيه ل DocType: Data Migration Mapping,Pull,سحب. شد DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جافا سكريبت الصيغة: frappe.query_reports [' REPORTNAME '] = { } @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,السجل الداخلي DocType: Energy Point Settings,Review Levels,مراجعة المستويات DocType: Workflow State,Comment,تعليق DocType: Data Migration Plan,Postprocess Method,طريقة Postprocess +DocType: DocType Action,Action Type,نوع العمل apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,تصوير DocType: Assignment Rule,Round Robin,جولة روبن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",يمكنك تغيير الوثائق المسجلة من خلال إلغائها ، ثم تعديلها . @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,حفظ باسم DocType: Comment,Seen,رأيت apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,إظهار مزيد من التفاصيل +DocType: Server Script,Before Submit,قبل إرسال DocType: System Settings,Run scheduled jobs only if checked,تشغيل المهام المجدولة الا إذا دققت apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,سيتم عرض فقط إذا تم تمكين عناوين المقطع apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,أرشيف @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,دروببوإكس مفتاح ال apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,اسم الحقل غير صحيح {0} في add_fetch تكوين البرنامج النصي المخصص apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,حدد جهات اتصال Google التي يجب مزامنتها مع جهة الاتصال. DocType: Web Page,Main Section (HTML),القسم الرئيسي (HTML) +DocType: Scheduled Job Type,Annual,سنوي DocType: Workflow State,headphones,سماعة الرأس apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,مطلوب كلمة السر أو اختر بانتظار كلمة السر DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,على سبيل المثال، replies@yourcomany.com. سيأتي كل الردود على هذا البريد. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",يحدد ترتيب الشريحة في المعالج. في حالة عدم عرض الشريحة ، يجب تعيين الأولوية على 0. DocType: Data Migration Run,Current Mapping,التخطيط الحالي apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,مطلوب بريد إلكتروني صالح واسم صالح apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,اجعل جميع المرفقات خاصة @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,الانتقال قوانين apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,عرض أول صف {0} فقط في المعاينة apps/frappe/frappe/core/doctype/report/report.js,Example:,على سبيل المثال: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,قيود DocType: Workflow,Defines workflow states and rules for a document.,تحديد حالات و قواعد سير العمل للوثيقة DocType: Workflow State,Filter,فلتر apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},تحقق من سجل الأخطاء لمزيد من المعلومات: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,مهنة apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} تسجيل الخروج: {1} DocType: Address,West Bengal,البنغال الغربي +DocType: Onboarding Slide,Information,معلومات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد DocType: Transaction Log,Row Index,مؤشر الصف DocType: Social Login Key,Facebook,الفيسبوك @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,زر المساعدة DocType: Kanban Board Column,purple,أرجواني DocType: About Us Settings,Team Members,أعضاء الفريق +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,سيتم تشغيل المهام المجدولة مرة واحدة فقط يوميًا للمواقع غير النشطة. الافتراضي 4 أيام إذا تم تعيينه على 0. DocType: Assignment Rule,System Manager,مدير النظام +DocType: Scheduled Job Log,Scheduled Job,الوظيفة المجدولة DocType: Custom DocPerm,Permissions,أذونات apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks من أجل التكامل الداخلي DocType: Dropbox Settings,Allow Dropbox Access,السماح بDropbox access @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,مس DocType: Email Flag Queue,Email Flag Queue,البريد الإلكتروني العلم قائمة الانتظار DocType: Access Log,Columns / Fields,الأعمدة / الحقول apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ستايلشيتس فور برينت فورماتس +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,حقل تجميع الوظائف مطلوب لإنشاء مخطط لوحة القيادة apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,لا يمكن تحديد {0} المفتوح. جرب شيئا آخر. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,تم تقديم المعلومات الخاصة بك apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,المستخدم {0} لا يمكن حذف @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,اسم الحقل DocType: Assignment Rule,Assign To Users,تخصيص للمستخدمين apps/frappe/frappe/public/js/frappe/utils/utils.js,or,أو apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,اسم الوحدة برمجية ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,استمر +DocType: Onboarding Slide,Continue,استمر apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,تم تعطيل Google التكامل. DocType: Custom Field,Fieldname,اسم الحقل DocType: Workflow State,certificate,شهادة apps/frappe/frappe/templates/includes/login/login.js,Verifying...,التحقق من ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,تمت إزالة واجبك على {0} {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,يجب أن يكون عمود البيانات الأولى فارغة. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,عرض كل الإصدارات apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,عرض التعليق @@ -427,12 +447,14 @@ DocType: User,Restrict IP,تقييد IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,لوحة القيادة apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,غير قادر على إرسال رسائل البريد الإلكتروني في هذا الوقت apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",تقويم Google - تعذر تحديث الحدث {0} في تقويم Google ، رمز الخطأ {1}. +DocType: Notification Log,Email Content,محتوى البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,بحث أو كتابة أمر DocType: Activity Log,Timeline Name,اسم الزمني apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,يمكن تعيين {0} واحد فقط على أنه أساسي. DocType: Email Account,e.g. smtp.gmail.com,على سبيل المثال، smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,إضافة قاعدة جديدة DocType: Contact,Sales Master Manager,المدير الرئيسي للمبيعات +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,تحتاج إلى تمكين JavaScript لتشغيل تطبيقك. DocType: User Permission,For Value,للقيمة DocType: Event,Google Calendar ID,معرف تقويم Google apps/frappe/frappe/www/complete_signup.html,One Last Step,خطوة أخيرة واحدة @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,حقل الاسم الأوسط LDA apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},استيراد {0} من {1} DocType: GCalendar Account,Allow GCalendar Access,السماح للوصول لـ GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} حقل إلزامي +DocType: DocType,Documentation Link,رابط التوثيق apps/frappe/frappe/templates/includes/login/login.js,Login token required,رمز الدخول المطلوب apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,الرتبة الشهرية: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,حدد عناصر قائمة متعددة @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ملف URL DocType: Version,Table HTML,جدول HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,إضافة المشتركين +DocType: Notification Log,Energy Point,نقطة الطاقة apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,الأحداث القادمة لهذا اليوم DocType: Google Calendar,Push to Google Calendar,اضغط على تقويم Google DocType: Notification Recipient,Email By Document Field,البريد الإلكتروني بواسطة حقل الوثيقة @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,بالخارج DocType: Currency,Fraction Units,جزء الوحدات apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} من {1} إلى {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,حدده ك مُنتَهٍ DocType: Chat Message,Type,النوع DocType: Google Settings,OAuth Client ID,معرف عميل OAuth DocType: Auto Repeat,Subject,موضوع apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,العودة الى المكتب DocType: Web Form,Amount Based On Field,المبلغ بناء على الحقل +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} لا يحتوي على إصدارات متعقبة. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,المستخدم إلزامي للمشاركة DocType: DocField,Hidden,مخفي DocType: Web Form,Allow Incomplete Forms,السماح للنماذج الغير مكتمله @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,يرجى التحقق من بريدك الالكتروني للتحقق apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج DocType: Communication,Bounced,وثب +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,من DocType: Deleted Document,Deleted Name,الاسم المحذوف apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,النظام و الموقع الالكتروني للمستخدمين DocType: Workflow Document State,Doc Status,حالة الوثيقة @@ -521,6 +546,7 @@ DocType: Language,Language Code,كود اللغة DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ملاحظة: يتم إرسال رسائل البريد الإلكتروني الافتراضية لعمليات النسخ الاحتياطي الفاشلة. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,إضافة تصفية (فلترة) apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},رسائل SMS أرسلت الى الارقام التالية: {0} +DocType: Notification Settings,Assignments,تعيينات apps/frappe/frappe/utils/data.py,{0} and {1},{0} و {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,بدء محادثة. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","دائما إضافة ""كلمة مسودة"" عند طباعة المسودات" @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,بدء تعيين الخرائ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,تم وضع علامة على البريد الإلكتروني كغير مرغوب فيه DocType: Comment,Website Manager,مدير الموقع apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,تم إلغاء تحميل الملف. حاول مرة اخرى. +DocType: Data Import Beta,Show Failed Logs,إظهار السجلات الفاشلة apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ترجمة apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,لقد حددت مسودة أو مستندات تم إلغاؤها apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},تم تعيين المستند {0} على الحالة {1} بواسطة {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,قائمة الانتظار DocType: GSuite Templates,Destination ID,رقم تعريف الوجهة DocType: Desktop Icon,List,قائمة DocType: Activity Log,Link Name,اسم الرابط +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,كنت ملاذ\ DocType: System Settings,mm/dd/yyyy,شهر/يوم/سنة +DocType: Onboarding Slide,Onboarding Slide,على متن الشريحة apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,رمز مرور خاطئ: DocType: Print Settings,Send document web view link in email,إرسال ثيقة الارتباط عرض على شبكة الإنترنت في البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,سابق @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,الرمادي الداكن apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},ناجح: {0} إلى {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,لا يمكن تغيير تفاصيل المستخدم في العرض التوضيحي. يرجى الاشتراك للحصول على حساب جديد في https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,قطرة +DocType: Dashboard Chart,Aggregate Function Based On,مجموع وظيفة بناء على apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,يرجى تكرار هذه إلى إجراء تغييرات apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,اضغط على إنتر للحفظ apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,فشل الجيل PDF بسبب الروابط صورة مكسورة @@ -610,7 +640,9 @@ DocType: Notification,Days Before,أيام قبل apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,يجب أن تنتهي الأحداث اليومية في نفس اليوم. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,تصحيح... DocType: Workflow State,volume-down,حجم إلى أسفل +DocType: Onboarding Slide,Help Links,روابط المساعدة apps/frappe/frappe/auth.py,Access not allowed from this IP Address,الوصول غير مسموح به من عنوان IP هذا +DocType: Notification Settings,Enable Email Notifications,تمكين إشعارات البريد الإلكتروني apps/frappe/frappe/desk/reportview.py,No Tags,لا علامات DocType: Email Account,Send Notification to,إرسال إشعار ل DocType: DocField,Collapsible,للطي @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,آخر النسخ الاحتياطي على DocType: Customize Form Field,Customize Form Field,تخصيص حقل نموذج DocType: Energy Point Rule,For Document Event,لوثيقة الحدث DocType: Website Settings,Chat Room Name,اسم غرفة الدردشة +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,دون تغيير DocType: OAuth Client,Grant Type,منحة نوع apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,تحقق من وثائق قابلة للقراءة من قبل العضو DocType: Deleted Document,Hub Sync ID,معرف مزامنة المحور @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,اس DocType: Auto Repeat,Quarterly,فصلي apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","عنوان مجال البريد الألكتروني غير معرف لهذا الحساب, إنشيء واحد ؟" DocType: User,Reset Password Key,إعادة تعيين كلمة المرور الرئيسية +DocType: Dashboard Chart,All Time,كل الوقت apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},حالة المستند غير القانوني لـ {0} DocType: Email Account,Enable Auto Reply,تمكين الرد التلقائي apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,لا أرى @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,رس DocType: Email Account,Notify if unreplied,يخطر إذا لا تحوي على ردود apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,مسح رمز الاستجابة السريعة وأدخل رمز الناتجة عرضها. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,تمكين التدرجات +DocType: Scheduled Job Type,Hourly Long,كل ساعة طويلة DocType: System Settings,Minimum Password Score,الحد الأدنى من كلمة المرور DocType: DocType,Fields,الحقول DocType: System Settings,Your organization name and address for the email footer.,اسم المؤسسة وعنوانك لتذييل البريد الإلكتروني. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,الجدو apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,اكتمل النسخ الاحتياطي S3! apps/frappe/frappe/config/desktop.py,Developer,مطور apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,إنشاء +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},لتمكينه ، اتبع التعليمات في الرابط التالي: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} في الصف {1} لا يمكن أن يكون لها عنوان URL وبنود فرعية في نفس الوقت apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},يجب أن يكون هناك صف واحد على الأقل للجداول التالية: {0} DocType: Print Format,Default Print Language,لغة الطباعة الافتراضية apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,أجداد apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,الجذر {0} لا يمكن حذف +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,لا سجلات فاشلة apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,لا توجد تعليقات حتى الآن apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,كلا DOCTYPE واسم المطلوبة @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,تذييل العناصر apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,الخيارات DocType: DefaultValue,DefaultValue,القيمة الافتراضية DocType: Auto Repeat,Daily,يوميا +DocType: Onboarding Slide,Max Count,ماكس العد apps/frappe/frappe/config/users_and_permissions.py,User Roles,أدوار المستخدم DocType: Property Setter,Property Setter overrides a standard DocType or Field property,الملكية واضعة يتجاوز على DOCTYPE القياسية أو الممتلكات الميدان apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,لا يمكن تحديث : رابط غير الصحيحة / منتهية الصلاحية . @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",الهدف = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,مضيف DocType: Data Import Beta,Import File,استيراد ملف +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,خطأ في القالب apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,عمود {0} موجودة بالفعل. DocType: ToDo,High,مستوى عالي apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,حدث جديد @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,اعرض في الفلتر DocType: Address,Daman and Diu,دامان و ديو apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,مشروع DocType: Address,Personal,الشخصية +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,إعدادات الطباعة الخام ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,راجع https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region للحصول على التفاصيل. apps/frappe/frappe/config/settings.py,Bulk Rename,إعادة تسمية بالجمله DocType: Email Queue,Show as cc,كما تظهر سم مكعب @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,اتخاذ الفي DocType: Contact Us Settings,Introductory information for the Contact Us Page,المعلومات التمهيدية لصفحة اتصل بنا DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,علامة إستهجان +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,إلغاء الوثائق DocType: User,Send Notifications for Email threads,إرسال الإخطارات عن المواضيع البريد الإلكتروني apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,بروفيسور apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ليس في وضع المطور @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ملف ال DocType: DocField,In Global Search,في البحث العالمية DocType: System Settings,Brute Force Security,القوة الغاشمة للأمن DocType: Workflow State,indent-left,المسافة البادئة اليسرى -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سنة مضت apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,أنه أمر محفوف بالمخاطر لحذف هذا الملف: {0}. يرجى الاتصال بمدير النظام الخاص بك. DocType: Currency,Currency Name,اسم العملة apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,لا رسائل البريد الإلكتروني @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,حقل المستخدم DocType: DocType,MyISAM,MYISAM DocType: Data Migration Run,Push Delete,اضغط على حذف apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} غير مشترك بـ{1} {2} +DocType: Scheduled Job Type,Stopped,توقف apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,لم تقم بإزالة apps/frappe/frappe/desk/like.py,Liked,أحب apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,أرسل الآن apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدم كوستميز فورم +DocType: Server Script,Allow Guest,اسمح للضيف DocType: Report,Query,سؤال DocType: Customize Form,Sort Order,ترتيب apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,اثنان عامل المصادقة الأسلوب apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,قم أولاً بتعيين الاسم وحفظ السجل. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 السجلات +DocType: DocType Link,Link Fieldname,اسم الحقل الرابط apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},مشترك مع {0} apps/frappe/frappe/email/queue.py,Unsubscribe,إلغاء الاشتراك DocType: View Log,Reference Name,اسم المرجع apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,تغيير المستخدم +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,أول apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,تحديث الترجمات DocType: Error Snapshot,Exception,استثناء DocType: Email Account,Use IMAP,استخدام IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,قواعد تحديد الانتقال من الدولة في سير العمل. DocType: File,Folder,مجلد DocType: Website Route Meta,Website Route Meta,موقع ميتا الطريق +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,مؤشر DocType: Email Group,Newsletter Manager,مدير النشرة الإخبارية apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,الخيار 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ت apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,تكوين المخططات البيانية DocType: User,Last IP,أخر IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,الرجاء إضافة موضوع إلى بريدك الإلكتروني -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,مستند جديد {0} تمت مشاركته معك {1}. DocType: Data Migration Connector,Data Migration Connector,موصل ترحيل البيانات apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} تم التراجع {1} DocType: Email Account,Track Email Status,تتبع حالة البريد الإلكتروني @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,النفقات الافتراضية DocType: Workflow State,play,لعب apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,انقر على الرابط أدناه لإكمال التسجيل وتعيين كلمة مرور جديدة apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,لم تضف +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} حصل على {1} نقاط لـ {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,لا حسابات البريد الإلكتروني المخصصة DocType: S3 Backup Settings,eu-west-2,الاتحاد الأوروبي الغربي-2 DocType: Contact Us Settings,Contact Us Settings,إعدادات الاتصال بنا @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,جاري DocType: Workflow State,text-width,عرض النص apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,تم بلوغ الحد الأقصى لمرفقات هذا السجل apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,البحث عن طريق اسم الملف أو التمديد +DocType: Onboarding Slide,Slide Title,عنوان الشريحة DocType: Notification,View Properties (via Customize Form),عرض خصائص (عن طريق نموذج تخصيص) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,انقر على ملف لتحديده. DocType: Note Seen By,Note Seen By,ملاحظة يراها @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,مشاركة عنوان URL DocType: System Settings,Allow Consecutive Login Attempts ,السماح لمحاولات تسجيل الدخول المتتالية apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,حدث خطأ أثناء عملية الدفع. الرجاء التواصل معنا. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,إذا كان "نوع الشريحة" هو "إنشاء" أو "إعدادات" ، فيجب أن يكون هناك طريقة "create_onboarding_docs" في ملف .py {ref_doctype} الذي سيتم تنفيذه بعد اكتمال الشريحة. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,قبل {0} أيام DocType: Email Account,Awaiting Password,في انتظار كلمة المرور DocType: Address,Address Line 1,العنوان سطر 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,ليس من أحفاد DocType: Contact,Company Name,اسم الشركة DocType: Custom DocPerm,Role,صلاحية -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,إعدادات... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,لمتصفحك apps/frappe/frappe/utils/data.py,Cent,سنت ,Recorder,مسجل @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",تتبع إذا تم فتح البريد الإلكتروني الخاص بك من قبل المستلم.
ملاحظة: إذا كنت ترسل إلى عدة مستلمين ، حتى إذا قرأ أحد المستلمين البريد الإلكتروني ، فسيتم اعتباره "مفتوح" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,قيم مفقودة مطلوبة apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,السماح بوصول جهات اتصال Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,محدد DocType: Data Migration Connector,Frappe,فرابي apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,حدده كغير مقروء DocType: Activity Log,Operation,عملية @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,السماح للطباعة DocType: Communication,Clicked,النقر apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,الغاء المتابعة apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,من المقرر أن ترسل DocType: DocType,Track Seen,المسار رأيت DocType: Dropbox Settings,File Backup,ملف النسخ الاحتياطي @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,لا {0} وج apps/frappe/frappe/config/customization.py,Add custom forms.,إضافة نماذج مخصصة. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} في {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,هذه الوثيقة مقدمة / مسجلة -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,الإعداد> أذونات المستخدم apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ويوفر النظام العديد من أدوار محددة مسبقا. يمكنك إضافة أدوار جديدة لتعيين أذونات الدقيقة. DocType: Communication,CC,CC DocType: Country,Geo,الجغرافية DocType: Data Migration Run,Trigger Name,اسم الزناد -apps/frappe/frappe/public/js/frappe/desk.js,Domains,المجالات +DocType: Onboarding Slide,Domains,المجالات DocType: Blog Category,Blog Category,تصنيف المدونة apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,لا يمكن تعيين بسبب فشل الشرط التالي: DocType: Role Permission for Page and Report,Roles HTML,الأدوار HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,السبت DocType: User,Represents a User in the system.,يمثل العضو في النظام. DocType: List View Setting,Disable Auto Refresh,تعطيل التحديث التلقائي DocType: Comment,Label,ملصق -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",مهمة {0}، الذي قمت بتعيينه إلى {1}، تم إغلاق. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,الرجاء إغلاق هذه النافذة DocType: Print Format,Print Format Type,طباعة نوع تنسيق DocType: Newsletter,A Lead with this Email Address should exist,يجب أن يوجد الرصاص مع هذا عنوان البريد الإلكتروني @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,إعدادات SMTP ل apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,اختيار DocType: Data Export,Filter List,قائمة تصفية DocType: Data Export,Excel,تفوق +DocType: System Settings,HH:mm,HH: مم DocType: Email Account,Auto Reply Message,رد تلقائي على الرسائل DocType: Data Migration Mapping,Condition,الحالة apps/frappe/frappe/utils/data.py,{0} hours ago,{0} قبل ساعات @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,مشارك قاعدة المعرفة DocType: Communication,Sent Read Receipt,أرسلت مقروءة إيصال DocType: Email Queue,Unsubscribe Method,طريقة إلغاء الاشتراك +DocType: Onboarding Slide,Add More Button,إضافة المزيد من زر DocType: GSuite Templates,Related DocType,دوكتيب ذات الصلة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,تعديل لإضافة محتوى apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,اختر اللغات apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,معلومات البطاقة apps/frappe/frappe/__init__.py,No permission for {0},لا إذن ل{0} DocType: DocType,Advanced,متقدم +DocType: Onboarding Slide,Slide Image Source,الشريحة مصدر الصورة apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,يبدو مفتاح API أو API سر من الخطأ !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},إشارة: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,السيدة @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,سيد DocType: DocType,User Cannot Create,لا يمكن للمستخدم إنشاء apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,فعلت بنجاح apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,تمت الموافقة الوصول دروببوإكس! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,هل أنت متأكد من رغبتك في دمج {0} مع {1}؟ DocType: Customize Form,Enter Form Type,أدخل نوع النموذج DocType: Google Drive,Authorize Google Drive Access,تخويل Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,المعلمة مفقودة كانبان اسم المجلس @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",السماح DOCTYPE ، DOCTYPE . كن حذرا! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",تنسيقات مخصصة للطباعة البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},مجموع {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,تحديث إلى الإصدار الجديد DocType: Custom Field,Depends On,يعتمد على DocType: Kanban Board Column,Green,أخضر DocType: Custom DocPerm,Additional Permissions,ضوابط إضافية @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,اجتماعي apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",تقويم Google - تعذر إنشاء تقويم لـ {0} ، رمز الخطأ {1}. apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,تحرير صف DocType: Workflow Action Master,Workflow Action Master,سير العمل الاجراء الاساسي +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,حذف الكل DocType: Custom Field,Field Type,نوع الحقل apps/frappe/frappe/utils/data.py,only.,فقط. DocType: Route History,Route History,سجل الطريق @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,هل نسيت كلمة الم DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,هوية شخصية apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,خطأ في الخادم +DocType: Server Script,After Delete,بعد الحذف apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,عرض جميع التقارير السابقة apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,مطلوب معرف تسجيل الدخول DocType: Website Slideshow,Website Slideshow,موقع عرض الشرائح apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,لا توجد بيانات DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",ربط هذا هو الصفحة الرئيسية ل موقع الويب. روابط القياسية ( مؤشر ، تسجيل الدخول ، والمنتجات، بلوق ، عن، الاتصال ) +DocType: Server Script,After Submit,بعد تقديم apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},فشل المصادقة في حين تلقي رسائل البريد الإلكتروني من البريد الإلكتروني حساب {0}. رسالة من الخادم: {1} DocType: User,Banner Image,راية صورة DocType: Custom Field,Custom Field,حقل مخصص @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",إذا كان المستخدم لديه أي دور فحصها، ثم يصبح المستخدم "النظام المستخدم". "النظام المستخدم" لديه حق الوصول إلى سطح المكتب DocType: System Settings,Date and Number Format,صيغة التاريخ و الرقم apps/frappe/frappe/model/document.py,one of,واحدة من -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,فحص لحظة واحدة apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,إظهار البطاقات DocType: DocField,HTML Editor,محرر HTML 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,الإجراءات -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,الإعداد> المستخدم +DocType: DocType,Actions,الإجراءات DocType: Workflow State,align-justify,محاذاة-تبرير DocType: User,Middle Name (Optional),الاسم الأوسط (اختياري) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,لا يسمح @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,لا يوج DocType: System Settings,Security,أمن apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,من المقرر أن يرسل إلى {0} المتلقين apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,قطع +DocType: Server Script,After Save,بعد الحفظ apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},إعادة تسمية من {0} إلى {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} من {1} ({2} صفوف تحتوي على أطفال) DocType: Currency,**Currency** Master,سجل **العملات** @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,قيم التصفية DocType: Communication,User Tags,بطاقات المستخدم DocType: Data Migration Run,Fail,فشل DocType: Workflow State,download-alt,تحميل بديل +DocType: Scheduled Job Type,Last Execution,آخر تنفيذ DocType: Data Migration Run,Pull Failed,أخفق السحب apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,إظهار / إخفاء البطاقات DocType: Communication,Feedback Request,طلب التعليق apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,استيراد البيانات من ملفات CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,الحقول التالية مفقودة: +DocType: Notification Log,From User,من المستخدم apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},الغاء {0} DocType: Web Page,Main Section,القسم العام DocType: Page,Icon,رمز apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",قم بتكوين الإشعارات الخاصة بالإشارات والتعيينات ونقاط الطاقة والمزيد. DocType: DocField,Allow in Quick Entry,السماح لأدخال سريع apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,اليوم / الشهر / السنة @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,عنوان URL الموضوع DocType: Customize Form,Sort Field,نوع الحقل DocType: Razorpay Settings,Razorpay Settings,إعدادات Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,تحرير تصفية (فلترة) -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,أضف المزيد DocType: System Settings,Session Expiry Mobile,جلسة انتهاء موبايل apps/frappe/frappe/utils/password.py,Incorrect User or Password,مستخدم غير صحيح أو كلمة مرور apps/frappe/frappe/templates/includes/search_box.html,Search results for,نتائج البحث عن @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,قاعدة نقطة الطاقة DocType: Communication,Delayed,مؤجل apps/frappe/frappe/config/settings.py,List of backups available for download,قائمة احتياطية متوفرة للتحميل +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,جرب استيراد البيانات الجديد apps/frappe/frappe/www/login.html,Sign up,سجل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,الصف {0}: غير مسموح بتعطيل إلزامي للحقول القياسية +DocType: Webhook,Enable Security,تمكين الأمن apps/frappe/frappe/config/customization.py,Dashboards,لوحات DocType: Test Runner,Output,الناتج DocType: Milestone,Track Field,حقل المسار @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,تعيين الملكية بعد apps/frappe/frappe/config/customization.py,Add fields to forms.,إضافة حقول إلى النماذج. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,يبدو أن هناك شيئا خاطئا مع هذا التكوين باي بال لهذا الموقع. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,إضافة مراجعة +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} خصص مهمة جديدة {1} {2} لك apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),حجم الخط (بكسل) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,بوابة عنصر القائمة apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ضبط المرشحات DocType: Contact Us Settings,Email ID,البريد الإلكتروني DocType: Energy Point Rule,Multiplier Field,حقل المضاعف +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,لا يمكن إنشاء طلب Razorpay. يرجى الاتصال المسؤول DocType: Dashboard Chart,Time Interval,الفاصل الزمني DocType: Activity Log,Keep track of all update feeds,تتبع جميع يغذي التحديث +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} شارك مستند {1} {2} معك 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,خيارات الاستعلام @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,مفتاح DocType: Address,Contacts,اتصالات DocType: System Settings,Setup Complete,الإعداد كاملة apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,تقرير عن سهم ثيقة +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",يجب أن يكون قالب الاستيراد من النوع .csv أو .xlsx أو .xls apps/frappe/frappe/www/update-password.html,New Password,كلمة مرور جديدة apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,مرشح {0} مفقود apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,"عذراَ ! ,لا يمكنك حذف التعليقات الذي تم إنشاؤه تلقائيا" @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,علامة المفضلة apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,يركض DocType: Blog Post,Content (HTML),المحتوى (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,الإعداد ل DocType: Personal Data Download Request,User Name,اسم المستخدم DocType: Workflow State,minus-sign,علامة ناقص apps/frappe/frappe/public/js/frappe/request.js,Not Found,لم يتم العثور على @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,لا {0} إذن apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,تصدير ضوابط مخصص apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,لم يتم العثور على العناصر. DocType: Data Export,Fields Multicheck,الحقول متعددة +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} اكتمال DocType: Activity Log,Login,دخول DocType: Web Form,Payments,المدفوعات apps/frappe/frappe/www/qrcode.html,Hi {0},أهلا{0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,جوجل محرك التكامل. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} التراجع عن نقاطك في {1} {2} DocType: System Settings,Enable Scheduled Jobs,تمكين المهام المجدولة apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,الملاحظات : apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,غير نشط @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,قوا apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,خطأ في الإذن apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},اسم {0} لا يمكن أن يكون {1} DocType: User Permission,Applicable For,قابل للتطبيق ل +DocType: Dashboard Chart,From Date,من تاريخ apps/frappe/frappe/core/doctype/version/version_view.html,Success,نجاح apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,انتهت الجلسة DocType: Kanban Board Column,Kanban Board Column,عمود لوح كانبان @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ن apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; غير مسموح به في حالة DocType: Async Task,Async Task,المتزامن العمل DocType: Workflow State,picture,صور -apps/frappe/frappe/www/complete_signup.html,Complete,أكمال +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,أكمال DocType: DocType,Image Field,صورة الميدان DocType: Print Format,Custom HTML Help,مخصصةHTML مساعدة DocType: LDAP Settings,Default Role on Creation,دور افتراضي في الخلق @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,الحالية التالية DocType: User,Block Modules,كتلة وحدات DocType: Print Format,Custom CSS,مخصصةCSS +DocType: Energy Point Rule,Apply Only Once,تطبق مرة واحدة فقط apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,إضافة تعليق DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},تجاهل: {0} إلى {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,الايرادات الافتراضية DocType: Workflow State,repeat,كرر DocType: Website Settings,Banner,راية apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},يجب أن تكون القيمة واحدة من {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,الغاء جميع الوثائق DocType: Role,"If disabled, this role will be removed from all users.",إذا تعطيل، ستتم إزالة هذه الصلاحية من كافة المستخدمين. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,انتقل إلى قائمة {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,المساعدة في البحث @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,سجل لك apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,تم تعطيل التكرار التلقائي لهذا المستند. DocType: DocType,Hide Copy,إخفاء النسخة apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,مسح كافة الأدوار +DocType: Server Script,Before Save,قبل الحفظ apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} يجب أن تكون فريدة من نوعها apps/frappe/frappe/model/base_document.py,Row,صف apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template",CC ، BCC والبريد الإلكتروني قالب @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,غير متصل بالإنترنت apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},تم الاستيراد بنجاح {0} DocType: User,API Key,مفتاح API DocType: Email Account,Send unsubscribe message in email,إرسال رسالة إلغاء الاشتراك في البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,تحرير العنوان apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الارتباط. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,وثائق الملقاة على عاتقكم ولك. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,يمكنك أيضا نسخ ولصق هذا @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,إرفاق صورة DocType: Workflow State,list-alt,قائمة بديل apps/frappe/frappe/www/update-password.html,Password Updated,تم تحديث كلمة المرور +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,الإعداد> أذونات المستخدم apps/frappe/frappe/www/qrcode.html,Steps to verify your login,خطوات التحقق من تسجيل الدخول apps/frappe/frappe/utils/password.py,Password not found,لم يتم العثور على كلمة السر +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,طول الصفحة DocType: Email Queue,Expose Recipients,كشف المستلمين apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,إلحاق إلزامي لرسائل واردة @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,نظام DocType: Web Form,Max Attachment Size (in MB),أقصى حجم للمرفقات (ميغابايت) apps/frappe/frappe/www/login.html,Have an account? Login,هل لديك حساب ؟ تسجيل الدخول +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,إعدادات الطباعة ... DocType: Workflow State,arrow-down,سهم لأسفل apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},الصف {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},المستخدم لا يسمح لحذف {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ادخل DocType: Dropbox Settings,Dropbox Access Secret,دروببوإكس الدخول السرية DocType: Tag Link,Document Title,عنوان المستند apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(إلزامي) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سنة مضت DocType: Social Login Key,Social Login Provider,موفر تسجيل الدخول الاجتماعي apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,إضافة تعليق آخر apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,لم يتم العثور على بيانات في الملف. الرجاء إعادة إرفاق الملف الجديد بالبيانات. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,إلى أسفل اليد apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",لم يتم العثور على الحقول التي يمكن استخدامها كعمود كانبان. استخدم "تخصيص نموذج" لإضافة حقل مخصص من النوع "تحديد". DocType: Address,GST State,غست الدولة apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : لا يمكن تحديد الغاء دون تأكيد +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),المستخدم ({0}) DocType: Website Theme,Theme,موضوع DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,إعادة التوجيه URI ملزمة لكود التفويض apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,افتح المساعدة DocType: DocType,Is Submittable,هو Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ذكر جديد +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,ذكر جديد apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,لم تتم مزامنة جهات اتصال Google الجديدة. DocType: File,Uploaded To Google Drive,تم الرفع إلى Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,يمكن أن تكون قيمة حقل التحقق إما 0 أو 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,صندوق الوارد DocType: Kanban Board Column,Red,أحمر DocType: Workflow State,Tag,بطاقة -DocType: Custom Script,Script,سيناريو +DocType: Report,Script,سيناريو apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,لا يمكن حفظ المستند. DocType: Energy Point Rule,Maximum Points,النقاط القصوى apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,إعداداتي @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,هاريانا apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} نقاط التقدير لـ {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,الأدوار يمكن تعيين للمستخدمين من صفحة المستخدم الخاصة بهم. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,أضف تعليق +DocType: Dashboard Chart,Select Date Range,اختر نطاق التاريخ DocType: DocField,Mandatory,إلزامي apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,وحدة لتصدير +DocType: Scheduled Job Type,Monthly Long,الشهرية الطويلة apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : لم يتم تحديد صلاحيات أساسية +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,أرسل بريدًا إلكترونيًا إلى {0} لربطه هنا apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",معنى تسجيل ، إلغاء وتعديل apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,قائمة المهام @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,تتبع المعا DocType: Social Login Key,Identity Details,تفاصيل الهوية apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},انتقال حالة سير العمل غير مسموح به من {0} إلى {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,عرض لوحة القيادة -apps/frappe/frappe/desk/form/assign_to.py,New Message,رسالة جديدة DocType: File,Preview HTML,معاينة HTML DocType: Desktop Icon,query-report,استعلام تقرير DocType: Data Import Beta,Template Warnings,تحذيرات القالب @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,ترتبط apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,تحرير إعدادات تقرير البريد الإلكتروني الآلي DocType: Chat Room,Message Count,عدد الرسائل DocType: Workflow State,book,كتاب +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} مرتبط بالمستندات المرسلة التالية: {2} DocType: Communication,Read by Recipient,قراءة من قبل المتلقي DocType: Website Settings,Landing Page,الصفحة المقصودة apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,خطأ في سيناريو مخصص apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} الاسم apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,لم يحدد ضوابط لهذه المعايير. DocType: Auto Email Report,Auto Email Report,ارسال التقارير عبر البريد الالكتروني الياً +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,مستند جديد مشترك apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,حذف التعليق؟ DocType: Address Template,This format is used if country specific format is not found,ويستخدم هذا الشكل إذا لم يتم العثور على صيغة محددة البلاد DocType: System Settings,Allow Login using Mobile Number,السماح بتسجيل الدخول باستخدام رقم الجوال apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,لم يكن لديك أذونات كافية للوصول إلى هذه الموارد. يرجى الاتصال بمدير الخاص بك للوصول. DocType: Custom Field,Custom,مخصص DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",في حالة التمكين ، لن تتم مطالبة المستخدمين الذين يقومون بتسجيل الدخول من عنوان IP المقيد بـ Two Factor Auth +DocType: Server Script,After Cancel,بعد الغاء DocType: Auto Repeat,Get Contacts,الحصول على اتصالات apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},الوظائف المقدمة في إطار {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,تخطي العمود بلا عنوان @@ -1684,6 +1757,7 @@ DocType: User,Login After,بعد الدخول DocType: Print Format,Monospace,معدل النصوص والشروط DocType: Letter Head,Printing,طبع DocType: Workflow State,thumbs-up,الابهام إلى أعلى +DocType: Notification Log,Mention,أشير DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,الخطوط apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,يجب أن تكون الدقة بين 1 و 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,و apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},تم إنشاء هذا التقرير في {0} DocType: Error Snapshot,Frames,إطارات -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,مهمة +DocType: Notification Log,Assignment,مهمة DocType: Notification,Slack Channel,قناة سلاك DocType: About Us Team Member,Image Link,رابط الصورة DocType: Auto Email Report,Report Filters,مرشحات تقرير @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,غير قادر على تحديث الحدث apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,تم إرسال رمز التحقق إلى عنوان بريدك الإلكتروني المسجل. apps/frappe/frappe/core/doctype/user/user.py,Throttled,مخنوق +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,الهدف الخاص بك apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",يجب أن يحتوي الفلتر على 4 قيم (دوكتيب، فيلدنام، أوبيراتور، فالو): {0} +apps/frappe/frappe/model/naming.py,No Name Specified for {0},لا يوجد اسم محدد لـ {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,تطبيق قاعدة الواجب apps/frappe/frappe/utils/bot.py,show,تبين apps/frappe/frappe/utils/data.py,Invalid field name {0},اسم الحقل غير صالح {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,ارتفاع النص DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,تخطيط خطة ترحيل البيانات apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,جار بدء Frappé ... DocType: Web Form Field,Max Length,الحد الاقصى للطول -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},من أجل {0} {1} DocType: Print Format,Jinja,جينجا DocType: Workflow State,map-marker,محدد الخريطة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,يقدم العدد @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,الصفحة مفقودة apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,التعليقات DocType: DocType,Route,طريق apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,إعدادات بوابة الدفع Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} حصل على {1} نقطة لـ {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,إحضار الصور المرفقة من المستند DocType: Chat Room,Name,اسم DocType: Contact Us Settings,Skype,سكايب @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,فتح ال apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,لغتك DocType: Dashboard Chart,Average,معدل apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,اضف سطر -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,طابعة apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,يجب أن يكون الاستعلام SELECT DocType: Auto Repeat,Completed,أكتمل @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,إعدادات نقطة الطاقة DocType: Async Task,Succeeded,نجح apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},الحقول الإلزامية المطلوبة في {0} +DocType: Onboarding Slide Field,Align,محاذاة apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,إعادة تعيين أذونات ل {0} ؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,المستخدمين والأذونات DocType: S3 Backup Settings,S3 Backup Settings,إعدادات النسخ الاحتياطي لـ S3 @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,اسم تنسيق طباعة جديد apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,انقر على الرابط أدناه للموافقة على الطلب DocType: Workflow State,align-left,محاذاة يسار +DocType: Onboarding Slide,Action Settings,إعدادات العمل DocType: User,Defaults,الافتراضات +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10). DocType: Energy Point Log,Revert Of,العودة من apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,دمج مع الحالي DocType: User,Birth Date,تاريخ الميلاد @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,في DocType: Notification,Value Change,قيمة التغير DocType: Google Contacts,Authorize Google Contacts Access,السماح بوصول جهات اتصال Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,عرض حقول رقمية فقط من التقرير +apps/frappe/frappe/utils/data.py,1 week ago,1 قبل أسبوع DocType: Data Import Beta,Import Type,نوع الاستيراد DocType: Access Log,HTML Page,صفحة HTML DocType: Address,Subsidiary,شركة فرعية @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,مع رأسية apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,خادم البريد الصادر غير صالحة أو ميناء DocType: Custom DocPerm,Write,الكتابة -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,المسؤول الوحيد المسموح به لإنشاء تقارير الاستعلام / سكربت apps/frappe/frappe/public/js/frappe/form/save.js,Updating,يتم التحديث DocType: Data Import Beta,Preview,معاينة apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","الحقل ""القيمة"" إلزامي. يرجى تحديد قيمة ليتم تحديثه" @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,دعوة DocType: Data Migration Run,Started,بدأت apps/frappe/frappe/permissions.py,User {0} does not have access to this document,المستخدم {0} ليس لديه حق الوصول إلى هذا المستند DocType: Data Migration Run,End Time,وقت الانتهاء +DocType: Dashboard Chart,Group By Based On,تجميع حسب apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,حدد المرفقات apps/frappe/frappe/model/naming.py, for {0},ل{0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,لا يسمح لك طباعة هذه الوثيقة @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,تأكد من DocType: Workflow Document State,Update Field,تحديث الحقل DocType: Chat Profile,Enable Chat,تمكين الدردشة DocType: LDAP Settings,Base Distinguished Name (DN),قاعدة الاسم المميز (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ترك هذه المحادثة apps/frappe/frappe/model/base_document.py,Options not set for link field {0},خيارات لم يتم تعيين لحقل الرابط {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,طابور / عامل @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,الدخول غير مسموح به في هذا الوقت DocType: Data Migration Run,Current Mapping Action,إجراء رسم الخرائط الحالي DocType: Dashboard Chart Source,Source Name,اسم المصدر -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,لا يوجد حساب بريد إلكتروني مرتبط بالمستخدم. الرجاء إضافة حساب أسفل المستخدم> البريد الوارد للبريد الإلكتروني. DocType: Email Account,Email Sync Option,مزامنة البريد الإلكتروني الخيار apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,الصف رقم DocType: Async Task,Runtime,وقت التشغيل DocType: Post,Is Pinned,مثبت DocType: Contact Us Settings,Introduction,مقدمة +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,تحتاج مساعدة؟ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,دبوس على الصعيد العالمي apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,تليها DocType: LDAP Settings,LDAP Email Field,LDAP البريد الإلكتروني الميدان @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,بالف DocType: User Email,Enable Outgoing,تمكين المنتهية ولايته DocType: Address,Fax,فاكس apps/frappe/frappe/config/customization.py,Custom Tags,كلمات دلائلية حخصصة -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني DocType: Comment,Submitted,مسجلة DocType: Contact,Pulled from Google Contacts,سحبت من اتصالات جوجل apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,طلب غير صالح @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,الصفح apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,تعيين لي DocType: DocField,Dynamic Link,الارتباط الحيوي apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,اضغط على مفتاح Alt لتشغيل اختصارات إضافية في القائمة والشريط الجانبي +DocType: Dashboard Chart,To Date,حتى الان DocType: List View Setting,List View Setting,قائمة عرض الإعداد apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,مشاهدة فشل الوظائف -DocType: Event,Details,تفاصيل +DocType: Scheduled Job Log,Details,تفاصيل DocType: Property Setter,DocType or Field,DOCTYPE أو حقل apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,لقد قمت بإلغاء متابعة هذا المستند apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,لون أصلي @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,لينة المرتجعة DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",إذا تم تمكينه ، يمكن لكافة المستخدمين تسجيل الدخول من أي عنوان IP باستخدام "عامل عامل". يمكن أيضًا تعيين ذلك لمستخدمين محددين في صفحة المستخدم apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,يبدو مفتاح النشر أو المفتاح السري خاطئ! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,مساعدة سريعة لوضع ضوابط -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE لتعيين خلف apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,مشاهدة المعاودة apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,تم نقل البريد الإلكتروني إلى المهملات DocType: Report,Report Builder,تقرير منشئ @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,تحميل DocType: User Permission,Advanced Control,تحكم متقدم DocType: System Settings,Date Format,تنسيق التاريخ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,لم تنشر +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. يرجى إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","اجراءات سير العمل مثال : الموافقة,الرفض" DocType: Data Import,Skip rows with errors,تخطي الصفوف التي بها أخطاء DocType: Workflow State,flag,علم @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,طب apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,القفز الى الميدان DocType: Contact Us Settings,Forward To Email Address,انتقل إلى عنوان البريد الإلكتروني DocType: Contact Phone,Is Primary Phone,هو الهاتف الأساسي -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,أرسل بريدًا إلكترونيًا إلى {0} لربطه هنا. DocType: Auto Email Report,Weekdays,أيام الأسبوع apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,سيتم تصدير {0} السجلات apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,أضف تعليقا apps/frappe/frappe/config/core.py,Documents,وثائق apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,سجل النشاط بواسطة DocType: Social Login Key,Custom Base URL,عنوان ورل لقاعدة مخصصة -DocType: Email Flag Queue,Is Completed,قد اكتمل +DocType: Onboarding Slide,Is Completed,قد اكتمل apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,احصل على الحقول apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,تعديل الملف الشخصي DocType: Kanban Board Column,Archived,أرشفة @@ -2110,11 +2189,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",سيظهر هذا المجال إلا إذا كان FIELDNAME المحدد هنا له قيمة أو قواعد صحيحة (أمثلة): myfield حدة التقييم: doc.myfield == 'بلدي القيمة "وحدة التقييم: doc.age> 18 DocType: Social Login Key,Office 365,مكتب 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,اليوم +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,اليوم apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",وبمجرد الانتهاء من تعيين هذه ، سوف يكون المستخدمون قادرين فقط الوصول إلى المستندات (على سبيل المثال مدونة بوست) حيث يوجد رابط (مثل مدون ) . DocType: Data Import Beta,Submit After Import,إرسال بعد الاستيراد DocType: Error Log,Log of Scheduler Errors,سجل من الأخطاء جدولة DocType: User,Bio,نبذة +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help Link DocType: OAuth Client,App Client Secret,كلمة مرور التطبيق الثانوي apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,تقديم apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,الأصل هو اسم المستند الذي ستتم إضافة البيانات إليه. @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,الأحرف الكبيرة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,مخصصةHTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,أدخل اسم المجلد -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. يرجى إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان. apps/frappe/frappe/auth.py,Unknown User,مستخدم غير معروف apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,حدد الصلاحية DocType: Comment,Deleted,حذف @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,دردشة دردشة apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,إنشاء مخطط apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,لا تستورد -DocType: Web Page,Center,مركز +DocType: Onboarding Slide Field,Center,مركز DocType: Notification,Value To Be Set,قيمة ليتم تعيينها apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},تحرير {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,المستوى الأول @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,اسم قاعدة البيانات apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,نموذج التحديث DocType: DocField,Select,حدد -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,عرض السجل الكامل +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,عرض السجل الكامل DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",تعبير Python البسيط ، مثال: status == 'Open' واكتب == 'Bug' apps/frappe/frappe/utils/csvutils.py,File not attached,الملف غير مرفق apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,فقد الاتصال، بعض الميزات قد لا تعمل. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML لرأس القسم. ا apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,هذه الميزة هي العلامة التجارية الجديدة والتجريبية لا يزال apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,الحد الأقصى {0} الصفوف المسموح DocType: Dashboard Chart Link,Chart,خريطة +DocType: Scheduled Job Type,Cron,كرون DocType: Email Unsubscribe,Global Unsubscribe,إلغاء الاشتراك العالمية apps/frappe/frappe/utils/password_strength.py,This is a very common password.,هذا هو كلمة شائعة جدا. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,عرض @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,اسم المضيف DocType: Data Migration Mapping,Condition Detail,حالة التفاصيل apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",للعملة {0} ، يجب أن يكون الحد الأدنى لمبلغ المعاملة {1} DocType: DocField,Print Hide,طباعة إخفاء +DocType: System Settings,HH:mm:ss,HH: MM: SS apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,إلى المستخدم apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,أدخل القيمة DocType: Workflow State,tint,لون @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,رمز الا apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,إضافة إلى المهام DocType: Footer Item,Company,شركة apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},متوسط {0} +DocType: Scheduled Job Log,Scheduled,من المقرر DocType: User,Logout from all devices while changing Password,الخروج من جميع الأجهزة أثناء تغيير كلمة المرور apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,التحقق من كلمة المرور apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,كانت هناك أخطاء @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,إذن المستخدم موجود بالفعل apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},تعيين العمود {0} إلى الحقل {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},عرض {0} -DocType: User,Hourly,باستمرار +DocType: Scheduled Job Type,Hourly,باستمرار apps/frappe/frappe/config/integrations.py,Register OAuth Client App,تسجيل أوث العميل التطبيقات DocType: DocField,Fetch If Empty,إحضار إذا كانت فارغة DocType: Data Migration Connector,Authentication Credentials,مصادقة بيانات الاعتماد @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS بوابة URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} لا يمكن أن يكون ""{2}"". ينبغي أن يكون واحدا من ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},حصلت عليه {0} عبر القاعدة التلقائية {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} أو {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,لقد تم إعدادك جميعًا! DocType: Workflow State,trash,القمامة DocType: System Settings,Older backups will be automatically deleted,سيتم حذف النسخ الاحتياطية القديمة تلقائيا apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,معرف مفتاح الوصول غير صالح أو مفتاح الوصول السري. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,لقد فقدت بعض نقاط الطاقة DocType: Post,Is Globally Pinned,مثبت على الصعيد العالمي apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,النشاط الأخير DocType: Workflow Transition,Conditions,الظروف @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,مؤكد DocType: Event,Ends on,ينتهي في DocType: Payment Gateway,Gateway,بوابة DocType: LDAP Settings,Path to Server Certificate,المسار إلى شهادة الخادم +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,تم تعطيل Javascript على متصفحك apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ليس هناك إذن كاف لمشاهدة الروابط apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,إسم العنوان إلزامى (لابد من إدخاله) DocType: Google Contacts,Push to Google Contacts,اضغط على جهات اتصال Google @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,الاتحاد الأوروبي الغربي-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",إذا تم تحديد ذلك ، فسيتم استيراد الصفوف التي تحتوي على بيانات صالحة وسيتم طرح صفوف غير صالحة في ملف جديد يمكنك استيراده لاحقًا. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,الوثيقة للتحرير فقط من قبل المستخدمين من دور -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,قراءة من قبل المتلقي DocType: Blogger,Short Name,الاسم المختصر @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,عي DocType: Translation,PR sent,أرسلت العلاقات العامة DocType: Auto Email Report,Only Send Records Updated in Last X Hours,فقط إرسال السجلات التي تم تحديثها في آخر X ساعات DocType: Communication,Feedback,Feedback +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,تم التحديث إلى إصدار جديد 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,فتح الترجمة apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,تم إنشاء هذا البريد الإلكتروني تلقائيا DocType: Workflow State,Icon will appear on the button,سيظهر الرمز على الزر @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,لم يت DocType: DocField,Precision,دقة DocType: Website Slideshow,Slideshow Items,عرض الشرائح عناصر apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,في محاولة لتجنب الكلمات المكررة وشخصيات +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,تم تعطيل الإشعارات +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,هل تريد بالتأكيد حذف جميع الصفوف؟ DocType: Workflow Action,Workflow State,حالة سير العمل apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,واضاف الصفوف apps/frappe/frappe/www/list.py,My Account,حسابي @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,أيام بعد apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,اتصال صينية QZ بالموقع! DocType: Contact Us Settings,Settings for Contact Us Page,إعدادات صفحة الاتصال بنا +DocType: Server Script,Script Type,نوع البرنامج النصي DocType: Print Settings,Enable Print Server,تمكين خادم الطباعة apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,قبل {0} أسبوع /أسابيع DocType: Email Account,Footer,تذييل @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,تحذير apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,قد تتم طباعة هذا على صفحات متعددة DocType: Data Migration Run,Percent Complete,في المئة كاملة -DocType: Tag Category,Tag Category,العلامة الفئة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10). DocType: Google Calendar,Pull from Google Calendar,سحب من تقويم جوجل apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,مساعدة DocType: User,Login Before,تسجيل الدخول قبل @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,إخفاء عطلة نهاية الأسبوع apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,يولد تلقائيا الوثائق المتكررة. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,هل +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,معلومات تسجيل الدخول، apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,قيمة {0} لا يمكن أن تكون قائمة DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا لم يتم تعيين و، استخدم افتراضيات النظام apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,إرسال {0} وثائق؟ apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطأ في الاتصال بـ QZ Tray Application ...

تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.

انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,تعيين الطابعة apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,الرجاء حفظ قبل إرفاق. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,هل تريد إلغاء جميع الوثائق المرتبطة؟ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),وأضاف {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype لا يمكن تغييرها من {0} إلى {1} في {2} الصف apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,اذونات الصلاحيات DocType: Help Article,Intermediate,متوسط +apps/frappe/frappe/config/settings.py,Email / Notifications,اشعارات البريد الالكتروني apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},تم تغيير {0} {1} إلى {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,تم استعادة المستند الملغى كمسودة DocType: Data Migration Run,Start Time,توقيت البدء @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,ي apps/frappe/frappe/email/smtp.py,Invalid recipient address,عنوان المستلم غير صالحة DocType: Workflow State,step-forward,خطوة إلى الأمام DocType: System Settings,Allow Login After Fail,السماح بتسجيل الدخول بعد الفشل +DocType: DocType Link,DocType Link,رابط نوع الوثيقة DocType: Role Permission for Page and Report,Set Role For,تعيين صلاحية لل DocType: GCalendar Account,The name that will appear in Google Calendar,الاسم الذي سيظهر في تقويم Google apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,توجد غرفة مباشرة بها {0} بالفعل. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},انشا DocType: Contact,Google Contacts,اتصالات جوجل DocType: GCalendar Account,GCalendar Account,حساب GCalendar DocType: Email Rule,Is Spam,هو المزعج +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,الاخير apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},تقرير {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},مفتوحة {0} DocType: Data Import Beta,Import Warnings,استيراد تحذيرات @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,علامة OK- apps/frappe/frappe/config/settings.py,Deleted Documents,المستندات المحذوفة apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,تنسيق كسف حساس لحالة الأحرف apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,رمز سطح المكتب موجود بالفعل +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,حدد ما ستظهره جميع المجالات. إذا لم يتم تحديد أي شيء ، فسيتم عرض الشريحة في جميع المجالات افتراضيًا. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,مكررة apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: الحقل {1} في الصف {2} لا يمكن إخفاؤه وإجباره دون التقصير DocType: Newsletter,Create and Send Newsletters,إنشاء وإرسال النشرات الإخبارية @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,معرف حدث تقويم Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""الأم"" يدل على الجدول الأصل الذي يجب أن يضاف هذا الصف" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,نقاط المراجعة: +DocType: Scheduled Job Log,Scheduled Job Log,سجل الوظائف المجدولة +DocType: Server Script,Before Delete,قبل الحذف apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,مشترك مع apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,إرفاق الملفات / عناوين واضافة في الجدول. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,رسالة لا الإعداد @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,إعدادات لمن نحن الصفحة apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,إعدادات بوابة الدفع الشريطية apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,طباعة المرسلة إلى الطابعة! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,نقاط الطاقة +DocType: Notification Settings,Energy Points,نقاط الطاقة +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},يجب أن يكون الوقت {0} بالتنسيق: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,على سبيل المثال، pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,توليد مفاتيح apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,سيؤدي هذا إلى إزالة بياناتك نهائيًا. DocType: DocType,View Settings,عرض إعدادات +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,إخطار جديد DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,طلب هيكل +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,طريقة تحكم get_razorpay_order مفقودة DocType: Personal Data Deletion Request,Pending Verification,في انتظار التحقق DocType: Website Meta Tag,Website Meta Tag,موقع العلامة الوصفية DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",إذا كان المنفذ غير قياسي (على سبيل المثال 587). إذا كنت على Google Cloud ، فجرّب المنفذ 2525. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",تاريخ انتهاء المقاصة ، لأنه لا يمكن أن يكون في الماضي للصفحات المنشورة. DocType: User,Send Me A Copy of Outgoing Emails,أرسل لي نسخة من رسائل البريد الإلكتروني الصادرة -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,Password cannot be more than 100 characters long,كلمة السر لا يمكن أن تكون أطول من 100 حرفا @@ -2568,6 +2663,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,كلمة مر apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} مشاركة هذه الوثيقة مع {1} DocType: Website Settings,Brand Image,صورة العلامة التجارية DocType: Print Settings,A4,أ4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,يجب أن يحتوي قالب الاستيراد على رأس صف واحد على الأقل. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,تم تكوين تقويم Google. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",الإعداد من أعلى الملاحة تذييل وبار والشعار. DocType: Web Form Field,Max Value,القيمة القصوى @@ -2577,6 +2673,7 @@ DocType: User Social Login,User Social Login,المستخدم تسجيل الد apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} انتقد عملك على {1} بنقطة {2} DocType: Contact,All,جميع DocType: Email Queue,Recipient,مستلم +DocType: Webhook,Webhook Security,Webhook الأمن DocType: Communication,Has Attachment,لديها مرفق DocType: Address,Sales User,عضو المبيعات apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,سحب وإسقاط أداة لبناء وتخصيص تنسيقات طباعة. @@ -2643,7 +2740,6 @@ DocType: Data Migration Mapping,Migration ID Field,حقل رقم تعريف ال DocType: Dashboard Chart,Last Synced On,آخر مزامنة في DocType: Comment,Comment Type,تعليق نوع DocType: OAuth Client,OAuth Client,مصادقة المستخدم -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} انتقد عملك على {1} {2} DocType: Assignment Rule,Users,المستخدمين DocType: Address,Odisha,أوديشا DocType: Report,Report Type,نوع التقرير @@ -2668,14 +2764,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,موقع السلعة ع apps/frappe/frappe/model/workflow.py,Self approval is not allowed,الموافقة الذاتية غير مسموح بها DocType: GSuite Templates,Template ID,معرف القالب apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,الجمع بين نوع المنحة ( {0} ) ونوع الاستجابة ( {1} ) غير مسموح به -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},رسالة جديدة من {0} DocType: Portal Settings,Default Role at Time of Signup,الصلاحية الافتراضية وقت الاشتراك DocType: DocType,Title Case,عنوان القضية apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,انقر على الرابط أدناه لتنزيل بياناتك apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},صندوق الوارد للبريد الإلكتروني المُمكّن للمستخدم {0} DocType: Data Migration Run,Data Migration Run,تشغيل ترحيل البيانات DocType: Blog Post,Email Sent,إرسال البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,اكبر سنا DocType: DocField,Ignore XSS Filter,تجاهل XSS تصفية apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,إزالة apps/frappe/frappe/config/integrations.py,Dropbox backup settings,إعدادات النسخ الاحتياطي دروببوإكس @@ -2730,6 +2824,7 @@ DocType: Async Task,Queued,قائمة الانتظار DocType: Braintree Settings,Use Sandbox,استخدام رمل apps/frappe/frappe/utils/goal.py,This month,هذا الشهر apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,تنسيق طباعة مخصص جديد +DocType: Server Script,Before Save (Submitted Document),قبل الحفظ (المستند المقدم) DocType: Custom DocPerm,Create,انشاء apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,لا مزيد من العناصر لعرضها apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,الذهاب إلى السجل السابق @@ -2786,6 +2881,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ارسال الى سلة المحذوفات DocType: Web Form,Web Form Fields,الحقول نموذج ويب DocType: Data Import,Amended From,معدل من +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,أضف رابط فيديو للمساعدة فقط في حال لم يكن لدى المستخدم أي فكرة عما يملأ الشريحة. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},تحذير: غير قادر على العثور على {0} في أي جدول المتعلقة {1} DocType: S3 Backup Settings,eu-north-1,الاتحاد الأوروبي الشمالي-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,هذه الوثيقة في قائمة الانتظار حاليا لتنفيذها. حاول مرة اخرى @@ -2807,6 +2903,7 @@ DocType: Blog Post,Blog Post,منشور المدونه DocType: Access Log,Export From,تصدير من apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,البحث المتقدم apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,لا يسمح لك بعرض الرسالة الإخبارية. +DocType: Dashboard Chart,Group By,المجموعة حسب DocType: User,Interests,الإهتمامات apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني DocType: Energy Point Rule,Allot Points To Assigned Users,تخصيص نقاط للمستخدمين المعينين @@ -2822,6 +2919,7 @@ DocType: Assignment Rule,Assignment Rule,قاعدة الاحالة apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},اسم المستخدم اقترح: {0} DocType: Assignment Rule Day,Day,يوم apps/frappe/frappe/public/js/frappe/desk.js,Modules,وحدات برمجية +DocType: DocField,Mandatory Depends On,إلزامي يعتمد على apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,دفع النجاح apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,لا {0} الإلكتروني DocType: OAuth Bearer Token,Revoked,إلغاء @@ -2829,6 +2927,7 @@ DocType: Web Page,Sidebar and Comments,الشريط الجانبي وتعليق apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",عند تعديل مستند بعد الغاء وحفظه ، وسوف تحصل على عدد جديد هو نسخة من الرقم القديم . apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",غير مسموح بإرفاق مستند {0} ، يرجى تمكين السماح بالطباعة لـ {0} في "إعدادات الطباعة" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},انظر المستند على {0} DocType: Stripe Settings,Publishable Key,مفتاح قابل للنشر apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,بدء الاستيراد @@ -2842,13 +2941,13 @@ DocType: Currency,Fraction,جزء apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,حدث مزامنة مع تقويم Google. DocType: LDAP Settings,LDAP First Name Field,LDAP الاسم الميدان DocType: Contact,Middle Name,الاسم الأوسط +DocType: DocField,Property Depends On,الملكية تعتمد على DocType: Custom Field,Field Description,وصف الحقل apps/frappe/frappe/model/naming.py,Name not set via Prompt,الأسم: لم تحدد عن طريق موجه apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,البريد الإلكتروني الوارد apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",تحديث {0} من {1} ، {2} DocType: Auto Email Report,Filters Display,عرض المرشحات apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",يجب أن يكون الحقل "amended_from" حاضرًا لإجراء تعديل. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} قدر عملك على {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,حفظ المرشحات DocType: Address,Plant,مصنع apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,الرد على الجميع @@ -2889,11 +2988,11 @@ DocType: Workflow State,folder-close,غلق مجلد apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,أبلغ عن: DocType: Print Settings,Print taxes with zero amount,طباعة الضرائب مع مبلغ صفر apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} غير مسموح بإعادة تسميته +DocType: Server Script,Before Insert,قبل إدراج DocType: Custom Script,Custom Script,نص مخصص DocType: Address,Address Line 2,العنوان سطر 2 DocType: Address,Reference,مرجع apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,كلف إلى -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,بيانات ترحيل بيانات التفاصيل DocType: Data Import,Action,حدث DocType: GSuite Settings,Script URL,عنوان ورل للنص البرمجي @@ -2919,11 +3018,13 @@ DocType: User,Api Access,الوصول إلى Api DocType: DocField,In List View,في عرض القائمة DocType: Email Account,Use TLS,استخدام TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,تسجيل الدخول أو كلمة المرور غير صالحة +DocType: Scheduled Job Type,Weekly Long,أسبوعي طويل apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,تنزيل نموذج apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,إضافة جافا سكريبت الى (forms) ,Role Permissions Manager,مدير ضوابط الصلاحيات apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,اسم الشكل الجديد طباعة apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,تبديل الشريط الجانبي +DocType: Server Script,After Save (Submitted Document),بعد الحفظ (المستند المقدم) DocType: Data Migration Run,Pull Insert,سحب إدراج DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",الحد الأقصى للنقاط المسموح بها بعد ضرب نقاط بقيمة المضاعف (ملاحظة: بلا حدود ، اترك هذا الحقل فارغًا أو حدد 0) @@ -2943,6 +3044,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,مدونة apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,لم يتم تثبيت لداب apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,تحميل مع البيانات apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},القيم المتغيرة لـ {0} {1} +DocType: Server Script,Before Cancel,قبل الإلغاء DocType: Workflow State,hand-right,ومن جهة اليمين DocType: Website Settings,Subdomain,مجال فرعي DocType: S3 Backup Settings,Region,منطقة @@ -2988,12 +3090,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,كلمة المرور DocType: S3 Backup Settings,us-east-1,لنا شرق-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},مشاركات {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",لتنسيق الأعمدة، وإعطاء تسميات الأعمدة في الاستعلام. +DocType: Onboarding Slide,Slide Fields,حقول الشريحة DocType: Has Domain,Has Domain,لديه نطاق DocType: User,Allowed In Mentions,سمح في المذكرات apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ليس لديك حساب ؟ تسجيل الدخول apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,لا يمكن إزالة معرف الحقل apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد DocType: Address,Bihar,بيهار +DocType: Notification Settings,Subscribed Documents,المستندات المشتركة apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,إعدادات المستخدم DocType: Report,Reference Report,تقرير مرجعي DocType: Activity Log,Link DocType,رابط DOCTYPE @@ -3011,6 +3115,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,تخويل الوصو apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,الصفحة التي تبحث عن مفقود. يمكن أن يكون هذا ليتم نقله أو أن هناك خطأ مطبعي في الارتباط. apps/frappe/frappe/www/404.html,Error Code: {0},رمز الخطأ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",وصف لصفحة القائمة، في نص عادي، فقط بضعة أسطر. (حد أقصى 140 حرف) +DocType: Server Script,DocType Event,حدث DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} هي حقول إلزامية DocType: Workflow,Allow Self Approval,اسمح بالموافقة الذاتية DocType: Event,Event Category,فئة الحدث @@ -3027,6 +3132,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,اسمك apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,نجاح الاتصال DocType: DocType,InnoDB,ك InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,توجد شريحة Onboarding من نوع الشريحة متابعة بالفعل. DocType: DocType,Default Sort Field,حقل التصنيف الافتراضي DocType: File,Is Folder,هو مجلد DocType: Document Follow,DocType,DOCTYPE @@ -3065,8 +3171,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,الق DocType: Workflow State,arrow-up,سهم لأعلى DocType: Dynamic Link,Link Document Type,رابط نوع الوثيقة apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,يجب أن يكون هناك صف واحد على الأقل لجدول {0} +DocType: Server Script,Server Script,خادم النصي apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",لتهيئة التكرار التلقائي ، قم بتمكين "السماح بالتكرار التلقائي" من {0}. DocType: OAuth Bearer Token,Expires In,ينتهي في +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",عدد المرات التي تريد فيها تكرار مجموعة الحقول (على سبيل المثال: إذا كنت تريد 3 عملاء في الشريحة ، قم بتعيين هذا الحقل على 3. المجموعة الأولى فقط من الحقول تظهر إلزامية في الشريحة) DocType: DocField,Allow on Submit,السماح بالإعتماد DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,نوع الاستثناء @@ -3076,6 +3184,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,الترويسات apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,الأحداث القادمة apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,الرجاء إدخال قيم التطبيقات مفتاح الوصول والتطبيقات سر مفتاح +DocType: Email Account,Append Emails to Sent Folder,إلحاق رسائل البريد الإلكتروني إلى مجلد المرسلة DocType: Web Form,Accept Payment,يوافق على الدفع apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,حدد عنصر القائمة apps/frappe/frappe/config/core.py,A log of request errors,سجل الاخطاء @@ -3094,7 +3203,7 @@ DocType: Translation,Contributed,ساهم apps/frappe/frappe/config/customization.py,Form Customization,تخصيص النموذج apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ليست هناك جلسات نشطة DocType: Web Form,Route to Success Link,الطريق إلى النجاح رابط -DocType: Top Bar Item,Right,حق +DocType: Onboarding Slide Field,Right,حق apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,لا الأحداث القادمة DocType: User,User Type,نوع المستخدم DocType: Prepared Report,Ref Report DocType,المرجع تقرير DocType @@ -3112,6 +3221,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,حاول مرة apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',يجب أن يبدأ عنوان URL بـ "http: //" أو "https: //" apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,الخيار 3 DocType: Communication,uid,رمز المستخدم +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,هذا لا يمكن التراجع عنها DocType: Workflow State,Edit,تحرير DocType: Website Settings,Chat Operators,مشغلي الدردشة DocType: S3 Backup Settings,ca-central-1,كاليفورنيا-وسط-1 @@ -3123,7 +3233,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,لديك تغييرات لم يتم حفظها في هذا النموذج، يرجى حفظها اولا قبل الاستمرار DocType: Address,Telangana,تيلانجانا apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا -DocType: Tag Doc Category,Tag Doc Category,العلامة دوك الفئة apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي. apps/frappe/frappe/database/database.py,Invalid field name: {0},اسم الحقل غير صالح: {0} DocType: Milestone,Milestone,معلم @@ -3132,7 +3241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},اذهب إلى {0} apps/frappe/frappe/email/queue.py,Emails are muted,رسائل البريد الإلكتروني هي صامتة apps/frappe/frappe/config/integrations.py,Google Services,خدمات جوجل apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,CTRL + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,منذ اسبوع +DocType: Onboarding Slide,Slide Description,وصف الشريحة DocType: Communication,Error,خطأ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,يرجى إعداد رسالة أولاً DocType: Auto Repeat,End Date,نهاية التاريخ @@ -3153,10 +3262,12 @@ DocType: Footer Item,Group Label,تسمية مجموعة DocType: Kanban Board,Kanban Board,لوح كانبان apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,تم تكوين جهات اتصال Google. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,سيتم تصدير سجل واحد +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,لا يوجد حساب بريد إلكتروني مرتبط بالمستخدم. الرجاء إضافة حساب ضمن المستخدم> البريد الوارد للبريد الإلكتروني. DocType: DocField,Report Hide,تقرير إخفاء apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},العرض المشجر غير متوفر ل{0} DocType: DocType,Restrict To Domain,تقييد النطاق DocType: Domain,Domain,مجال +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,عنوان URL للملف غير صالح. يرجى الاتصال بمسؤول النظام. DocType: Custom Field,Label Help,التسمية تعليمات DocType: Workflow State,star-empty,النجوم فارغة apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,التواريخ غالبا ما تكون سهلة التخمين. @@ -3181,6 +3292,7 @@ DocType: Workflow State,hand-left,اليد اليسرى DocType: Data Import,If you are updating/overwriting already created records.,إذا كنت تقوم بتحديث / الكتابة فوق السجلات التي تم إنشاؤها بالفعل. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,هو عالمي DocType: Email Account,Use SSL,استخدام SSL +DocType: Webhook,HOOK-.####,صنارة صيد-.#### DocType: Workflow State,play-circle,لعب دائرة apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,لا يمكن تعيين المستند بشكل صحيح apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",تعبير "under_on" غير صالح @@ -3197,6 +3309,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,آخر تحديث apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,لنوع المستند DocType: Workflow State,arrow-right,سهم يمين +DocType: Server Script,API Method,طريقة API DocType: Workflow State,Workflow state represents the current state of a document.,تمثل حالة سير العمل الحالة الراهنة للوثيقة. DocType: Letter Head,Letter Head Based On,رسالة رئيس بناء على apps/frappe/frappe/utils/oauth.py,Token is missing,رمز مفقود @@ -3236,6 +3349,7 @@ DocType: Comment,Relinked,إعادة ربط DocType: Print Settings,Compact Item Print,مدمجة البند طباعة DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,إعادة توجيه URL +DocType: Onboarding Slide Field,Placeholder,نائب DocType: SMS Settings,Enter url parameter for receiver nos,ادخل معامل العنوان لمشغل شبكة المستقبل DocType: Chat Profile,Online,متصل بالإنترنت DocType: Email Account,Always use Account's Name as Sender's Name,استخدم دائمًا اسم الحساب كاسم المرسل @@ -3245,7 +3359,6 @@ DocType: Workflow State,Home,الصفحة الرئيسية DocType: OAuth Provider Settings,Auto,السيارات DocType: System Settings,User can login using Email id or User Name,يمكن للمستخدم تسجيل الدخول باستخدام معرف البريد الإلكتروني أو اسم المستخدم DocType: Workflow State,question-sign,علامة سؤال -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} معطل apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",حقل "الطريق" إلزامي للويب المشاهدات apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},إدراج عمود قبل {0} DocType: Energy Point Rule,The user from this field will be rewarded points,سيتم مكافأة نقاط المستخدم من هذا المجال @@ -3270,6 +3383,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,إذا المالك DocType: Data Migration Mapping,Push,إدفع apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,قم بوضع الملفات هنا DocType: OAuth Authorization Code,Expiration time,وقت انتهاء الصلاحية +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,المستندات المفتوحة DocType: Web Page,Website Sidebar,الشريط الجانبي الموقع DocType: Web Form,Show Sidebar,مشاهدة الشريط الجانبي apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,تحتاج إلى تسجيل الدخول للوصول إلى هذه {0}. @@ -3285,6 +3399,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,اختصار DocType: Desktop Icon,Page,صفحة apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},لا يمكن أن تجد {0} في {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,الأسماء والألقاب في حد ذاتها سهلة التخمين. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},تمت إعادة تسمية المستند من {0} إلى {1} apps/frappe/frappe/config/website.py,Knowledge Base,قاعدة المعرفة DocType: Workflow State,briefcase,حقيبة apps/frappe/frappe/model/document.py,Value cannot be changed for {0},لا يمكن تغير القيمة ل {0} @@ -3321,6 +3436,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,طباعة شكل apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,تبديل عرض الشبكة apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,انتقل إلى السجل التالي +DocType: System Settings,Time Format,تنسيق الوقت apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,أوراق بوابة الدفع غير صالحة DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,هذا هو ملف القالب ولدت مع الصفوف فقط وجود بعض الأخطاء. يجب استخدام هذا الملف للتصحيح والاستيراد. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,مجموعة ضوابط على أنواع المستندات والصلاحيات @@ -3363,12 +3479,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,رد apps/frappe/frappe/config/core.py,Pages in Desk (place holders),الصفحات في مكتب (أصحاب مكان) DocType: DocField,Collapsible Depends On,الضم يعتمد على DocType: Print Style,Print Style Name,اسم نمط الطباعة +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة DocType: Print Settings,Allow page break inside tables,السماح بفواصل الصفحات داخل الجداول DocType: Email Account,SMTP Server,SMTP خادم DocType: Print Format,Print Format Help,تنسيق الطباعة مساعدة apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,الحد الأقصى للغرفة {0} هو مستخدم واحد فقط. DocType: DocType,Beta,بيتا DocType: Dashboard Chart,Count,عد +DocType: Dashboard Chart,Group By Type,مجموعة حسب النوع apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},تعليق جديد على {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},استعادة {0} ك {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","إذا كنت تقوم بتحديث، يرجى تحديد ""الكتابة"" لن يتم حذف الصفوف الموجودة آخر." @@ -3379,14 +3497,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ملف ت DocType: Web Form,Web Form,نموذج ويب apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},يجب أن يكون التاريخ {0} بالشكل: {1} DocType: About Us Settings,Org History Heading,عنوان تاريخ المنظمة +DocType: Scheduled Job Type,Scheduled Job Type,نوع الوظيفة المجدولة DocType: Print Settings,Allow Print for Cancelled,السماح بالطباعة للملغيات DocType: Communication,Integrations can use this field to set email delivery status,يمكن التكامل استخدام هذا الحقل لتغيير الحالة تسليم البريد الإلكتروني +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,ليس لديك أذونات لإلغاء كافة المستندات المرتبطة. DocType: Web Form,Web Page Link Text,نص رابط صفحة الانترنت DocType: Page,System Page,صفحة النظام apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",تعيين تنسيق افتراضي، حجم الصفحة، نمط الطباعة الخ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,زر ESC فى الكيبورد apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},تم تصدير التخصيصات ل {0} إلى:
{1} DocType: Website Settings,Include Search in Top Bar,اضافة البحث في الشريط العلوي +DocType: Scheduled Job Type,Daily Long,يوميا طويلة DocType: GSuite Settings,Allow GSuite access,السماح بالدخول إلى GSuite DocType: DocType,DESC,تنازلي DocType: DocType,Naming,التسمية @@ -3490,6 +3611,7 @@ DocType: Notification,Send days before or after the reference date,إرسال أ DocType: User,Allow user to login only after this hour (0-24),تسمح للمستخدم لتسجيل الدخول فقط بعد هذه الساعة (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",تعيين واحد تلو الآخر ، في التسلسل DocType: Integration Request,Subscription Notification,إشعار الاشتراك +DocType: Customize Form Field, Allow in Quick Entry ,السماح في الدخول السريع apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,أو إرفاق DocType: Auto Repeat,Start Date,تاريخ البدء apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,قيمة @@ -3504,6 +3626,7 @@ DocType: Google Drive,Backup Folder ID,معرف مجلد النسخ الاحتي apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE ""مخصص""." DocType: Workflow State,globe,العالم DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,فيديو DocType: Assignment Rule,Priority,أفضلية DocType: Email Queue,Unsubscribe Param,إلغاء الاشتراك بارام DocType: DocType,Hide Sidebar and Menu,إخفاء الشريط الجانبي والقائمة @@ -3515,6 +3638,7 @@ DocType: DocType,Allow Import (via Data Import Tool),السماح بالاستي apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,ر.ت DocType: DocField,Float,رقم عشري DocType: Print Settings,Page Settings,إعدادات الصفحة +DocType: Notification Settings,Notification Settings,إعدادات الإشعار apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,إنقاذ... apps/frappe/frappe/www/update-password.html,Invalid Password,رمز مرور خاطئ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,تم استيراد {0} بنجاح من السجل {1}. @@ -3530,6 +3654,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,بريد جوجل DocType: Letter Head,Letter Head Image,صورة رأس الرسالة DocType: Address,Party GSTIN,حزب غستين +DocType: Scheduled Job Type,Cron Format,تنسيق كرون apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} تقرير DocType: SMS Settings,Use POST,استخدام بوست DocType: Communication,SMS,رسالة قصيرة @@ -3574,18 +3699,20 @@ DocType: Workflow,Allow approval for creator of the document,السماح بال apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,احفظ التقرير DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,نقطة وصول API Args +DocType: DocType Action,Server Action,عمل الخادم apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,.{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,يجب أن يكون حقل الأصل اسمًا صالحًا للحقل apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,فشل أثناء تعديل الاشتراك DocType: LDAP Settings,LDAP Group Field,حقل مجموعة LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,وثيقة الاشتراك المكتوبة apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,تساوي apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,تنسيق CSV غير صالح -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطأ في الاتصال بـ QZ Tray Application ...

تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.

انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,تعيين عدد من النسخ الاحتياطية DocType: DocField,Do not allow user to change after set the first time,لا تسمح للمستخدم لتغيير بعد تعيين أول مرة apps/frappe/frappe/utils/data.py,1 year ago,منذ سنة +DocType: DocType,Links Section,قسم الروابط apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",عرض سجل لجميع أحداث الطباعة وتنزيل وتصدير apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,شهر واحد DocType: Contact,Contact,جهة اتصال @@ -3612,16 +3739,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,بريد إلكتروني جديد DocType: Custom DocPerm,Export,تصدير apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",لاستخدام تقويم Google ، قم بتمكين {0}. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},إضافة حقل تبعية الحالة أيضًا {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},تم التحديث بنجاح {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,فشل علبة QZ: DocType: Dropbox Settings,Dropbox Settings,إعدادات دروببوإكس DocType: About Us Settings,More content for the bottom of the page.,المزيد من المحتوى لأسفل الصفحة. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,تم إرجاع هذا المستند apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive Backup Successful. +DocType: Webhook,Naming Series,التسمية التسلسلية DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE على سير العمل هذا الذي ينطبق. DocType: User,Enabled,تمكين apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,فشل في إكمال الإعداد apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},جديد {0}: {1} -DocType: Tag Category,Category Name,اسم التصنيف +DocType: Blog Category,Category Name,اسم التصنيف apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,اﻷصل مطلوب للحصول على بيانات الجدول الفرعي apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,المشتركون استيراد DocType: Print Settings,PDF Settings,إعدادات PDF @@ -3657,6 +3787,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,تقويم apps/frappe/frappe/client.py,No document found for given filters,لم يتم العثور على أي مستند لمرشحات معينة apps/frappe/frappe/config/website.py,A user who posts blogs.,مستخدم ينشر المدونات. +DocType: DocType Action,DocType Action,عمل DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",آخر {0} مع اسم {1} موجودا، حدد اسم آخر DocType: DocType,Custom?,مخصص DocType: Website Settings,Website Theme Image,موضوع الموقع صورة @@ -3666,6 +3797,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},غير ق apps/frappe/frappe/config/integrations.py,Backup,النسخ الإحتياطي apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,نوع المستند مطلوب لإنشاء مخطط لوحة معلومات DocType: DocField,Read Only,للقراءة فقط +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,لا يمكن إنشاء ترتيب razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,النشرة الإخبارية جديدة DocType: Energy Point Log,Energy Point Log,سجل نقطة الطاقة DocType: Print Settings,Send Print as PDF,PDF إرسال طباعة بصيغة @@ -3691,16 +3823,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ت apps/frappe/frappe/www/login.html,Or login with,أو الدخول مع DocType: Error Snapshot,Locals,السكان المحليين apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ترسل عن طريق {0} على {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} المذكور لكم في تعليق في {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,اختر مجموعة حسب ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,على سبيل المثال، (55 + 434) / 4 أو = Math.sin(Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} مطلوب DocType: Integration Request,Integration Type,نوع التكامل DocType: Newsletter,Send Attachements,إرسال المرفقات +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,لم يتم العثور على مرشحات apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,اتصالات جوجل التكامل. DocType: Transaction Log,Transaction Log,سجل المعاملات apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),الإحصائيات بناءً على أداء الشهر الماضي (من {0} إلى {1}) DocType: Contact Us Settings,City,مدينة +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,إخفاء البطاقات لجميع المستخدمين apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,تمكين السماح للتكرار التلقائي للنمط {0} في تخصيص النموذج DocType: DocField,Perm Level,بيرم المستوى apps/frappe/frappe/www/confirm_workflow_action.html,View document,عرض المستند @@ -3711,6 +3844,7 @@ DocType: Blog Category,Blogger,مدون DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline",في حالة التمكين ، يتم تعقب التغييرات في المستند وعرضها في المخطط الزمني apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}" DocType: Energy Point Log,Appreciation,تقدير +DocType: Dashboard Chart,Number of Groups,عدد المجموعات apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,عرض القائمة DocType: Workflow,Don't Override Status,لا تجاوز الحالة apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,مصطلح البحث @@ -3752,7 +3886,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-شمال غرب-1 DocType: Dropbox Settings,Limit Number of DB Backups,الحد من عدد النسخ الاحتياطية DB DocType: Custom DocPerm,Level,مستوى -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,آخر 30 يومًا DocType: Custom DocPerm,Report,تقرير apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,يجب أن تكون كمية أكبر من 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,متصلا علبة QZ! @@ -3769,6 +3902,7 @@ DocType: S3 Backup Settings,us-west-2,لنا غرب-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,حدد جدول الطفل apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,الزناد العمل الأساسي apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,تغيير +DocType: Social Login Key,User ID Property,خاصية معرف المستخدم DocType: Email Domain,domain name,اسم النطاق DocType: Contact Email,Contact Email,عنوان البريد الإلكتروني DocType: Kanban Board Column,Order,طلب @@ -3791,7 +3925,7 @@ DocType: Contact,Last Name,اسم العائلة DocType: Event,Private,خاص apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,لا تنبيهات لهذا اليوم DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),إرسال البريد الإلكتروني المرفقات طباعة بصيغة PDF (مستحسن) -DocType: Web Page,Left,ترك +DocType: Onboarding Slide Field,Left,ترك DocType: Event,All Day,كل يوم apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,يبدو أن هناك خطأ ما مع التكوين بوابة الدفع لهذا الموقع. لم يتم إحراز أي دفع. DocType: GCalendar Settings,State,دولة @@ -3823,7 +3957,6 @@ DocType: Workflow State,User,مستخدم DocType: Website Settings,"Show title in browser window as ""Prefix - title""","اظهار العنوان في نافذة المتصفح كما ""بادئة - عنوان""" DocType: Payment Gateway,Gateway Settings,إعدادات البوابة apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,النص في نوع الوثيقة -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,تشغيل الاختبارات apps/frappe/frappe/handler.py,Logged Out,تسجيل الخروج apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,المزيد... DocType: System Settings,User can login using Email id or Mobile number,يمكن للمستخدم تسجيل الدخول باستخدام معرف البريد الإلكتروني أو رقم الجوال @@ -3839,6 +3972,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,ملخص DocType: Event,Event Participants,المشاركون في الحدث DocType: Auto Repeat,Frequency,تردد +DocType: Onboarding Slide,Slide Order,ترتيب الشرائح DocType: Custom Field,Insert After,إدراج بعد DocType: Event,Sync with Google Calendar,مزامنة مع تقويم Google DocType: Access Log,Report Name,تقرير الاسم @@ -3866,6 +4000,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0} apps/frappe/frappe/config/website.py,Content web page.,محتوى الويب الصفحة. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,إضافة دور جديد +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,زيارة صفحة الويب +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,مهمة جديدة DocType: Google Contacts,Last Sync On,آخر مزامنة تشغيل DocType: Deleted Document,Deleted Document,المستند المحذوف apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,عذرا! هناك خطأ ما. @@ -3876,7 +4012,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,المناظر ال apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ملحقات النصي جانب العميل في جافا سكريبت DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,سيتم تصفية السجلات الخاصة بالمجموعات التالية -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,المجدول غير نشط +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,المجدول غير نشط DocType: Blog Settings,Blog Introduction,مقدمة المدونه DocType: Global Search Settings,Search Priorities,أولويات البحث DocType: Address,Office,مكتب @@ -3886,12 +4022,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,لوحة الرسم البي DocType: User,Email Settings,إعدادات البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,إسقاط هنا DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",في حالة التمكين ، يمكن للمستخدم تسجيل الدخول من أي عنوان IP باستخدام المصادقة الثنائية ، كما يمكن تعيين ذلك لجميع المستخدمين في إعدادات النظام -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,إعدادات الطابعة... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,يرجى إدخال كلمة المرور للمتابعة apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,أنا apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ليست حالة صالحة apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,تنطبق على جميع أنواع الوثائق -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,تحديث نقطة الطاقة +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,تحديث نقطة الطاقة +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),شغِّل الوظائف فقط يوميًا إذا كان غير نشط (أيام) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',يرجى تحديد طريقة دفع أخرى. باي بال لا تدعم المعاملات بالعملة '{0}' DocType: Chat Message,Room Type,نوع الغرفة DocType: Data Import Beta,Import Log Preview,استيراد سجل معاينة @@ -3900,6 +4036,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,دائرة OK- DocType: LDAP Settings,LDAP User Creation and Mapping,إنشاء مستخدم LDAP ورسم الخرائط apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',يمكنك العثور على الأشياء عن طريق طلب 'find orange in customers' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,أحداث اليوم apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,آسف! وينبغي أن يكون المستخدم الوصول الكامل إلى سجل الخاصة بهم. ,Usage Info,معلومات الاستخدام apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,إظهار اختصارات لوحة المفاتيح @@ -3916,6 +4053,7 @@ DocType: DocField,Unique,فريد من نوعه apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} موضع تقدير في {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,نجاح جزئي DocType: Email Account,Service,خدمة +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,الإعداد> المستخدم DocType: File,File Name,اسم الملف apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),لم يتم العثور على {0} لـ {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},الدقة: {0} @@ -3929,6 +4067,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,أكما DocType: GCalendar Settings,Enable,تمكين DocType: Google Maps Settings,Home Address,عنوان المنزل apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),يمكنك تحميل فقط حتى 5000 دفعة واحدة. (قد يكون أقل في بعض الحالات) +DocType: Report,"output in the form of `data = [columns, result]`",الإخراج في شكل `بيانات = [أعمدة ، نتيجة]` apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,أنواع المستندات القابلة للتطبيق apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,إعداد القواعد لتعيينات المستخدم. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},عدم كفاية الإذن {0} @@ -3944,7 +4083,6 @@ DocType: Communication,To and CC,لوCC DocType: SMS Settings,Static Parameters,ثابت معلمات DocType: Chat Message,Room,قاعة apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},تحديث ل{0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,وظائف الخلفية ليست قيد التشغيل. يرجى الاتصال المسؤول DocType: Portal Settings,Custom Menu Items,قائمة مخصصة عناصر apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,يجب أن تكون جميع الصور الملحقة لموقع معرض الصور على العام DocType: Workflow State,chevron-right,شيفرون اليمين @@ -3959,11 +4097,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} القيم المحددة DocType: DocType,Allow Auto Repeat,السماح للتكرار التلقائي apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,لا توجد قيم لإظهارها +DocType: DocType,URL for documentation or help,عنوان URL للتوثيق أو المساعدة DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,قالب البريد الإلكتروني apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,تم تحديث السجل بنجاح {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},لا يملك المستخدم {0} حق الوصول إلى النمط عبر إذن دور للمستند {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,كل من تسجيل الدخول وكلمة المرور المطلوبة +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,دعونا \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,يرجى تحديث للحصول على أحدث وثيقة. DocType: User,Security Settings,إعدادات الأمان apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,إضافة عمود @@ -3973,6 +4113,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,تصفية ميتا apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},يرجى الاطلاع على المرفق {0}: {1} DocType: Web Page,Set Meta Tags,تعيين العلامات الفوقية +DocType: Email Account,Use SSL for Outgoing,استخدام طبقة المقابس الآمنة للخارج 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: S3 Backup Settings,Backup Limit,الحد الاحتياطي DocType: Dashboard Chart,Line,خط @@ -4005,4 +4146,3 @@ DocType: DocField,Ignore User Permissions,تجاهل أذونات المستخد apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,حفظ بنجاح apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,الرجاء اطلب من المشرف التأكد من تسجيلك DocType: Domain Settings,Active Domains,المجالات النشطة -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,إظهار السجل diff --git a/frappe/translations/bg.csv b/frappe/translations/bg.csv index 4ee045cb5c..3023930110 100644 --- a/frappe/translations/bg.csv +++ b/frappe/translations/bg.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Моля, изберете сума Невярно." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Зареждането на файла за импортиране ... DocType: Assignment Rule,Last User,Последен потребител -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е определена за Вас от {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Настройките за сесия са запазени apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Презареждане на файл DocType: Email Queue,Email Queue records.,Email Queue записи. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Дървов DocType: User,User Emails,потребителски имейли DocType: User,Username,Потребителско име apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Импортиране на Zip +DocType: Scheduled Job Type,Create Log,Създайте дневник apps/frappe/frappe/model/base_document.py,Value too big,Стойността е твърде голяма DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Стартирайте теста на скрипта @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Месечно DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Активиране Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасност -DocType: Address,Email Address,Имейл Адрес +apps/frappe/frappe/www/login.py,Email Address,Имейл Адрес DocType: Workflow State,th-large,TH-голяма DocType: Communication,Unread Notification Sent,Непрочетена изпратеното apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Износът не оставя. Трябва {0} роля за износ. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От DocType: DocType,Is Published Field,Е публикувано поле DocType: GCalendar Settings,GCalendar Settings,Настройки в GCalendar DocType: Email Group,Email Group,Email група +apps/frappe/frappe/__init__.py,Only for {},Само за {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Календар - Не можа да се изтрие събитие {0} от Google Календар, код за грешка {1}." DocType: Event,Pulled from Google Calendar,Изтеглено от Google Календар DocType: Note,Seen By,Видяно от apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Добави няколко -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Спечелихте някои енергийни точки apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Не е валидно потребителско изображение. DocType: Energy Point Log,Reverted,Върнато DocType: Success Action,First Success Message,Първото съобщение за успех @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не като apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неправилна стойност: {0} трябва да е {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Промени свойства на поле (скрий, само за четене, разрешение и т.н.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ценя +DocType: Notification Settings,Document Share,Документ за споделяне DocType: Workflow State,lock,заключен apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,"Настройки на ""Връзка с нас""." apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Администраторът е логнат @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ако е активиран, документът се маркира като видян, когато потребителят го отваря за първи път" DocType: Auto Repeat,Repeat on Day,Повторете в деня DocType: DocField,Color,Цвят +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Маркирай всички като прочетени DocType: Data Migration Run,Log,Журнал DocType: Workflow State,indent-right,дясно подравняване DocType: Has Role,Has Role,Има роля @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Показване на Traceback DocType: DocType,Default Print Format,Формат за печат по подразбиране DocType: Workflow State,Tags,Етикети +DocType: Onboarding Slide,Slide Type,Тип слайд apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Няма: Край на Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поле не може да бъде зададено като уникално в {1}, тъй като има не-уникални съществуващи стойности" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Типове документи @@ -135,7 +138,6 @@ DocType: Language,Guest,Гост DocType: DocType,Title Field,Заглавие на поле DocType: Error Log,Error Log,Error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,невалиден адрес -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Последните 7 дни apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Повторения като "abcabcabc" са само малко по-трудно да се отгатне, отколкото "ABC"" DocType: Notification,Channel,канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ако мислите, че това е разрешено, моля, променете паролата на администратора." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Клиент apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Изберете Колона apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Тази форма е била променена, след като сте я заредили" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Дневник на известията DocType: System Settings,"If not set, the currency precision will depend on number format","Ако не е зададена, точната валута ще зависи от формата на числата" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Отваряне на Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Изглежда, че има проблем с конфигурацията на лентата на сървъра. В случай на неуспех, сумата ще бъде възстановена в профила Ви." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,К apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Изпращам DocType: Workflow Action Master,Workflow Action Name,Име Action Workflow apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType не могат да бъдат слети -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не е компресиран (zip) файл DocType: Global Search DocType,Global Search DocType,Глобален DocType за търсене DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Email изпратен? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Превключване на диаграмата apps/frappe/frappe/desk/form/save.py,Did not cancel,Не бяха отменени DocType: Social Login Key,Client Information,Информация за клиента +DocType: Energy Point Rule,Apply this rule only once per document,Прилагайте това правило само веднъж на документ DocType: Workflow State,plus,плюс +DocType: DocField,Read Only Depends On,Само за четене зависи от това apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Влезли сте като Гост или администратор DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Файлов мениджър @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Причина 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Без активност +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Без активност apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Приложения от трети страни apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Първият потребителят ще стане мениджър System (можете да промените това по-късно). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Днес няма събития apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Не можете да давате точки за преглед на себе си apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType трябва да може да се поддава на избраното събитие Doc DocType: Workflow State,circle-arrow-up,Стрелка в кръг-нагоре @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Не е разрешено за {0}: {1}. Ограничено поле: {2} 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,You are not allowed to delete a standard Website Theme,Не е позволено да изтривате стандартна тема на уебсайт +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Създайте своя първи {0} DocType: Data Import,Log Details,Детайли на дневник DocType: Workflow Transition,Example,Пример DocType: Webhook Header,Webhook Header,Заглавие на Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Фон на чата apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Маркирай като прочетено apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Актуализиране на {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Бордърен слайд {0} със същия ред слайдове вече съществува apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Неактивен Доклад DocType: Translation,Contributed Translation Doctype Name,Име на принос на превода +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализирайте формуляр DocType: PayPal Settings,Redirect To,пренасочи към DocType: Data Migration Mapping,Pull,дърпам DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Формат: frappe.query_reports ['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Вътрешен запис DocType: Energy Point Settings,Review Levels,Прегледайте нивата DocType: Workflow State,Comment,Коментар DocType: Data Migration Plan,Postprocess Method,Метод на последващия процес +DocType: DocType Action,Action Type,Тип на действието apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Направи снимка DocType: Assignment Rule,Round Robin,Кръгъл Робин apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Можете да промените Подадените документи, като ги анулира, а след това, за изменение на тях." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Запази като DocType: Comment,Seen,Видян apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Покажи още детайли +DocType: Server Script,Before Submit,Преди да изпратите DocType: System Settings,Run scheduled jobs only if checked,"Стартирай редовни работни места, само ако се проверява" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,Ще се показва само ако са разрешени заглавия на раздели apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Архив @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Грешно име на поле {0} в add_fetch конфигурация на персонализиран скрипт apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Изберете Google Контакти, към които контакта трябва да се синхронизира." DocType: Web Page,Main Section (HTML),Основен раздел (HTML) +DocType: Scheduled Job Type,Annual,Годишен DocType: Workflow State,headphones,слушалки apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Парола е необходима или изберете Очаква парола DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,напр replies@yourcomany.com. Всички отговори ще дойдат на тази пощенска кутия. DocType: Slack Webhook URL,Slack Webhook URL,Откажи URL адреса на Webhook +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Определя реда на слайда в съветника. Ако слайдът не се показва, приоритетът трябва да бъде зададен на 0." DocType: Data Migration Run,Current Mapping,Текущо картографиране apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Валиден имейл и име се изисква apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Направете всички прикачени файлове частни @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Правила за прехвърляне apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Показва се само първите {0} редове в преглед apps/frappe/frappe/core/doctype/report/report.js,Example:,Пример: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ограничения DocType: Workflow,Defines workflow states and rules for a document.,Определя работния процес членки и правила за достъп до документ. DocType: Workflow State,Filter,Филтър apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Проверете журнала за грешки за повече информация: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,работа apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} излезли: {1} DocType: Address,West Bengal,Западен Бенгал +DocType: Onboarding Slide,Information,Информация apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Cannot set Assign Submit if not Submittable DocType: Transaction Log,Row Index,Индекс на ред DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Бутон Помощ DocType: Kanban Board Column,purple,лилаво DocType: About Us Settings,Team Members,Членове на екипа +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Ще изпълнява планирани задания само веднъж на ден за неактивни сайтове. По подразбиране 4 дни, ако е зададено на 0." DocType: Assignment Rule,System Manager,Мениджър на система +DocType: Scheduled Job Log,Scheduled Job,Планирана работа DocType: Custom DocPerm,Permissions,Права за достъп apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Отпуснете Webhooks за вътрешна интеграция DocType: Dropbox Settings,Allow Dropbox Access,Разрешаване на Dropbox Access @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Ск DocType: Email Flag Queue,Email Flag Queue,Email Flag Queue DocType: Access Log,Columns / Fields,Колони / полета apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Стилове за печатни формати +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Необходимо е поле за агрегирана функция за създаване на диаграма на таблото apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Не може да се идентифицира с отворен {0}. Опитайте нещо друго. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Вашата информация е подадена apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Потребителят {0} не може да бъде изтрит @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Наименование на полето DocType: Assignment Rule,Assign To Users,Присвояване на потребителите apps/frappe/frappe/public/js/frappe/utils/utils.js,or,или apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Име на модул ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Продължи +DocType: Onboarding Slide,Continue,Продължи apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Интеграцията е деактивирана. DocType: Custom Field,Fieldname,Име на поле DocType: Workflow State,certificate,сертификат apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Проверка на ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Вашата задача на {0} {1} е премахната apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Първата колона на данни трябва да е празна. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Покажи всички версии apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Преглед на коментар @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Ограничаване на IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Табло apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Не може да се изпращат имейли в този момент apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Календар - Не можа да се актуализира събитие {0} в Google Календар, код за грешка {1}." +DocType: Notification Log,Email Content,Съдържание по имейл apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Търси или въведи команда DocType: Activity Log,Timeline Name,Timeline Име apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Само един {0} може да бъде зададен като основен. DocType: Email Account,e.g. smtp.gmail.com,напр smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Добави ново правило DocType: Contact,Sales Master Manager,Мениджър на данни за продажби +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Трябва да активирате JavaScript, за да работи приложението ви." DocType: User Permission,For Value,За стойност DocType: Event,Google Calendar ID,Идентификатор на Google Календар apps/frappe/frappe/www/complete_signup.html,One Last Step,Една последна стъпка @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Поле със средно им apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Импортиране на {0} от {1} DocType: GCalendar Account,Allow GCalendar Access,Разрешаване на достъп до GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} е задължително поле +DocType: DocType,Documentation Link,Връзка към документацията apps/frappe/frappe/templates/includes/login/login.js,Login token required,Изисква се означение за вход apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Месечен ранг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изберете няколко елемента от списъка @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL на файла DocType: Version,Table HTML,Таблица HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Добави Абонати +DocType: Notification Log,Energy Point,Енергийна точка apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Предстоящи събития за днес DocType: Google Calendar,Push to Google Calendar,Премини към Google Календар DocType: Notification Recipient,Email By Document Field,Email от документ Невярно @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,далеч DocType: Currency,Fraction Units,Фракционни единици apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} от {1} до {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Маркирайте като Готово DocType: Chat Message,Type,Тип DocType: Google Settings,OAuth Client ID,Идентификационен номер на клиента на OAuth DocType: Auto Repeat,Subject,Предмет apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Назад към бюрото DocType: Web Form,Amount Based On Field,Сума на база на поле +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} няма проследени версии. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Потребителят е задължително за споделяне DocType: DocField,Hidden,Скрит DocType: Web Form,Allow Incomplete Forms,Разрешаване на Непълни формуляри @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,"Моля, проверете електронната си поща за проверка" apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold не може да бъде в края на формата DocType: Communication,Bounced,Върнат +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,на DocType: Deleted Document,Deleted Name,Изтрито Име apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Системни и Сайт Потребители DocType: Workflow Document State,Doc Status,Doc Status @@ -521,6 +546,7 @@ DocType: Language,Language Code,Код на език DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Забележка: По подразбиране се изпращат имейли за неуспешни архиви. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Добавяне на филтър apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS изпратен на следните номера: {0} +DocType: Notification Settings,Assignments,Задачи apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Започнете разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Винаги се добави "Проект" Функция за печат проекти на документи @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Текущо стартира apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Имейл бе маркиран като спам DocType: Comment,Website Manager,Сайт на мениджъра apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Файловото качване е прекъснато. Моля, опитайте отново." +DocType: Data Import Beta,Show Failed Logs,Показване на неуспешни дневници apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Преводи apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Избрали сте проектирани или анулирани документи apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} е настроен да посочва {1} до {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Документ Чакащ DocType: GSuite Templates,Destination ID,Идентификационен номер на дестинацията DocType: Desktop Icon,List,Списък DocType: Activity Log,Link Name,Препратка - Име +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Нямаш \ DocType: System Settings,mm/dd/yyyy,дд/мм/гггг +DocType: Onboarding Slide,Onboarding Slide,Вграден слайд apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Грешна парола: DocType: Print Settings,Send document web view link in email,Изпрати документ уеб оглед връзката в имейл apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Предишен @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,тъмно сив apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Успешно: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"Не можете да променяте потребителските детайли в демонстрацията. Моля, регистрирайте се за нов профил на адрес https://erpnext.com" apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Изпускайте +DocType: Dashboard Chart,Aggregate Function Based On,Обобщена функция въз основа на apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Моля дублирайте това за да направите промени apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Натиснете Enter, за да го запазите" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"PDF поколение се провали, защото на счупени графични връзки" @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Дни преди apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Ежедневните събития трябва да приключат в същия ден. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Редактиране... DocType: Workflow State,volume-down,Намаляване на звука +DocType: Onboarding Slide,Help Links,Помощни връзки apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Достъпът не е разрешен от този IP адрес +DocType: Notification Settings,Enable Email Notifications,Активиране на известията по имейл apps/frappe/frappe/desk/reportview.py,No Tags,Няма тагове DocType: Email Account,Send Notification to,Изпрати съобщение на DocType: DocField,Collapsible,Свиваем @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Последното архивиране DocType: Customize Form Field,Customize Form Field,Персонализирайте Фирма - Поле DocType: Energy Point Rule,For Document Event,За документално събитие DocType: Website Settings,Chat Room Name,Име на стаята за чат +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Непроменен DocType: OAuth Client,Grant Type,Вид Grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Проверете какви документи са достъпни за Потребител DocType: Deleted Document,Hub Sync ID,Идент @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,из DocType: Auto Repeat,Quarterly,Тримесечно apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Email на домейн не е конфигурирана за този профил, Създаване на един?" DocType: User,Reset Password Key,Reset Password Key +DocType: Dashboard Chart,All Time,Всички времена apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Незаконно състояние на документа за {0} DocType: Email Account,Enable Auto Reply,Активирайте автоматичен отговор apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не е видян @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Съ DocType: Email Account,Notify if unreplied,Уведоми за неотговорени apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Сканирайте QR кода и въведете получения резултат. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Активиране на градиентите +DocType: Scheduled Job Type,Hourly Long,Часово дълго DocType: System Settings,Minimum Password Score,Минимален резултат за парола DocType: DocType,Fields,Полета DocType: System Settings,Your organization name and address for the email footer.,Име и адрес на организацията ви за долното поле на електронни писма. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Табли apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup завършен! apps/frappe/frappe/config/desktop.py,Developer,Разработчик apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Създаден +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"За да го активирате, следвайте инструкциите в следната връзка: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} на ред {1} не може да има и двете URL и под-артикули apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Трябва да има поне един ред за следните таблици: {0} DocType: Print Format,Default Print Language,Език за печат по подразбиране apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предци на apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корен {0} не може да бъде изтрит +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Няма неуспешни регистрационни файлове apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Все още няма коментари apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Моля, настройте SMS преди да я зададете като метод за удостоверяване чрез SMS настройки" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,И двете DocType и Име са задължителни @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Футер елементи apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Меню DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Ежедневно +DocType: Onboarding Slide,Max Count,Максимален брой apps/frappe/frappe/config/users_and_permissions.py,User Roles,Потребителски роли DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property сетер надделява стандартен DocType или имущество Невярно apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не можете да актуализирате: Неправилно / Изтекла Препратка. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,домакин DocType: Data Import Beta,Import File,Импортиране на файл +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Грешка в шаблона apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Колона {0} вече съществува. DocType: ToDo,High,Високо apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ново събитие @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Показване в филтъра DocType: Address,Daman and Diu,Даман и Диу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Проект DocType: Address,Personal,Персонален +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Настройки за суров печат ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Вижте https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region за подробности. apps/frappe/frappe/config/settings.py,Bulk Rename,Масово преименуване DocType: Email Queue,Show as cc,Покажи като куб.см. @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Направи ви DocType: Contact Us Settings,Introductory information for the Contact Us Page,"Встъпителна информация за страница ""За контакти""" DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,неодобрение +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Анулиране на документи DocType: User,Send Notifications for Email threads,Изпращане на известия за нишки по имейл apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,проф apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не е в режим за разработчици @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Архив DocType: DocField,In Global Search,В глобално търсене DocType: System Settings,Brute Force Security,Брутална сигурност DocType: Workflow State,indent-left,ляво подравняване -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} преди (и) година apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Рисковано е да изтриете този файл: {0}. Моля, обърнете се към вашия System Manager." DocType: Currency,Currency Name,Валута Име apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Няма имейли @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Поле на потребителя DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Натиснете Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} е вече отписан за {1} {2} +DocType: Scheduled Job Type,Stopped,Спряно apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Не премахва apps/frappe/frappe/desk/like.py,Liked,Хареса apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Изпрати сега apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандартният DocType не може да има стандартния формат на печат, използвайте Персонализиране на формуляра" +DocType: Server Script,Allow Guest,Разрешаване на гост DocType: Report,Query,Запитване DocType: Customize Form,Sort Order,Ред на сортиране apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Метод за удостоверяване с два фактора apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Първо задайте името и запазете записа. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 записа +DocType: DocType Link,Link Fieldname,Име на полето за връзка apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Споделено с {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Отписване DocType: View Log,Reference Name,Референтен номер Име apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Промяна на потребителя +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,първи apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Обновяване на преводите DocType: Error Snapshot,Exception,Изключение DocType: Email Account,Use IMAP,Използвайте IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, които определят преход от състоянието, в работния процес." DocType: File,Folder,Папка DocType: Website Route Meta,Website Route Meta,Уебсайт Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Бордово поле за слайдове DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Newsletter мениджъра apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Вариант 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,О apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Конфигуриране на диаграми DocType: User,Last IP,Последен IP адрес apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Моля, добавете тема към имейла си" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Нов документ {0} бе споделен с вас {1}. DocType: Data Migration Connector,Data Migration Connector,Конектор за мигриране на данни apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} обърнат {1} DocType: Email Account,Track Email Status,Проследяване на състоянието на имейла @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Default Outgoing DocType: Workflow State,play,играя apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Кликнете върху линка по-долу, за да завършите регистрацията си и да зададете нова парола" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Не бяха добавени +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} спечели {1} точки за {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Не е зададен имейл DocType: S3 Backup Settings,eu-west-2,ес-запад-2 DocType: Contact Us Settings,Contact Us Settings,"Настройки на ""Свържете се с нас""" @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Търс DocType: Workflow State,text-width,текст-ширина apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Максимална граница за този запис Attachment постигнато. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Търсене по име или разширение на файла +DocType: Onboarding Slide,Slide Title,Слайд заглавие DocType: Notification,View Properties (via Customize Form),Преглед на Properties (чрез Customize форма) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Кликнете върху файл, за да го изберете." DocType: Note Seen By,Note Seen By,Забележка видяна от @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Споделяне на URL адрес DocType: System Settings,Allow Consecutive Login Attempts ,Позволете опити за последователни влизания apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,"Възникна грешка по време на процеса на плащане. Моля, свържете се с нас." +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ако типът слайд е Създаване или Настройки, трябва да има метод 'create_onboarding_docs' в {ref_doctype} .py файла, който трябва да бъде изпълнен след завършване на слайда." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Преди {0} дни DocType: Email Account,Awaiting Password,Очаква парола DocType: Address,Address Line 1,Адрес - Ред 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Не потомците на DocType: Contact,Company Name,Име на фирмата DocType: Custom DocPerm,Role,Роля -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Настройки... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,към вашия браузър apps/frappe/frappe/utils/data.py,Cent,Цент ,Recorder,магнетофон @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Проследявайте дали имейлът ви е бил отворен от получателя.
Забележка: Ако изпращате до няколко получатели, дори и 1 получател да прочете имейла, той ще бъде считан за "Отворен"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Липсват задължителни стойности apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Разрешаване на достъп до Google Контакти +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ограничен DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Маркирай като непрочетено DocType: Activity Log,Operation,Операция @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Разрешаване на печат DocType: Communication,Clicked,Кликнато apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Не следвай apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Няма разрешение за '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунта от Setup> Email> Email account" apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Планирана да изпратите DocType: DocType,Track Seen,Track Погледнато DocType: Dropbox Settings,File Backup,Архивиране на файлове @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Номер {0 apps/frappe/frappe/config/customization.py,Add custom forms.,Добавяне на персонализирани форми. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} в {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,подадено този документ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Разрешения за потребители apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Системата осигурява много предварително определени роли. Можете да добавяте нови роли за да зададете по-фини разрешения. DocType: Communication,CC,CC DocType: Country,Geo,Гео DocType: Data Migration Run,Trigger Name,Име на задействане -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Домейни +DocType: Onboarding Slide,Domains,Домейни DocType: Blog Category,Blog Category,Блог Категория apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Не може да се карта, защото следното условие не успее:" DocType: Role Permission for Page and Report,Roles HTML,Роли HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Събота DocType: User,Represents a User in the system.,Представлява потребителя в системата. DocType: List View Setting,Disable Auto Refresh,Деактивирайте автоматичното опресняване DocType: Comment,Label,Етикет -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Задачата {0}, която сте задали за {1}, е била затворена." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Моля затворете този прозорец DocType: Print Format,Print Format Type,Тип печат Format DocType: Newsletter,A Lead with this Email Address should exist,Потенциален клиент с този имейл адрес трябва да съществува @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Настройки SMTP apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,изберете DocType: Data Export,Filter List,Списък с филтри DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Reply Message DocType: Data Migration Mapping,Condition,Състояние apps/frappe/frappe/utils/data.py,{0} hours ago,Преди {0} часа @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,База от знание - Сътрудник DocType: Communication,Sent Read Receipt,Изпратено потвърждение за прочитане DocType: Email Queue,Unsubscribe Method,Отписване Метод +DocType: Onboarding Slide,Add More Button,Добавяне на още бутон DocType: GSuite Templates,Related DocType,Свързани DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Редактирайте да добавите съдържание apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,избиране на език apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Детайли за картата apps/frappe/frappe/__init__.py,No permission for {0},Няма разрешение за {0} DocType: DocType,Advanced,Разширени +DocType: Onboarding Slide,Slide Image Source,Източник на слайда на изображението apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Изглежда API Key или API Secret не е наред !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Референтен номер: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,г-жа @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Майст DocType: DocType,User Cannot Create,Потребителят не може да създаде apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно завършено apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,достъп Dropbox е одобрен! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,"Сигурни ли сте, че искате да слеете {0} с {1}?" DocType: Customize Form,Enter Form Type,Въведете Форма Type DocType: Google Drive,Authorize Google Drive Access,Упълномощавайте достъпа до Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Липсва параметър Kanban Board Name @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешаването DocType, DocType. Бъди внимателен!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Индивидуално формати за печат, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Сума от {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Актуализиран до нова версия DocType: Custom Field,Depends On,Зависи От DocType: Kanban Board Column,Green,Зелен DocType: Custom DocPerm,Additional Permissions,Допълнителни Права @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,социален apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Календар - Не можа да се създаде Календар за {0}, код за грешка {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Редакция на ред DocType: Workflow Action Master,Workflow Action Master,Workflow Action магистър +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Изтриване на всички DocType: Custom Field,Field Type,Тип поле apps/frappe/frappe/utils/data.py,only.,само. DocType: Route History,Route History,История на маршрута @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Забравена парол DocType: System Settings,yyyy-mm-dd,ГГГГ-ММ-ДД apps/frappe/frappe/desk/report/todo/todo.py,ID,Идентификатор apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,грешка в сървъра +DocType: Server Script,After Delete,След изтриване apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Вижте всички минали доклади. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Изисква се идентификатор за влизане DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Няма Данни DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Препратката, която е първа страница на сайта. Стандартни препратки (индекс, вход, продукти, блог, за, контакт)" +DocType: Server Script,After Submit,След Изпращане apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Неуспешно удостоверяване, докато получавате имейли от имейл акаунт {0}. Съобщение от сървъра: {1}" DocType: User,Banner Image,Banner Изображение DocType: Custom Field,Custom Field,Персонализирано поле @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ако потребителят има някаква проверява роля, след това потребителят се превръща в "Система за потребителя". "Система за потребителя" има достъп до работния плот" DocType: System Settings,Date and Number Format,Форма на дати и числа apps/frappe/frappe/model/document.py,one of,един от -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализирайте формуляр apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,"Проверка. Един момент, моля." apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Покажи Етикети DocType: DocField,HTML Editor,HTML редактор 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,Действия -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Потребител +DocType: DocType,Actions,Действия DocType: Workflow State,align-justify,подравняване-justify DocType: User,Middle Name (Optional),Презиме (по избор) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Не е разрешен @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Няма р DocType: System Settings,Security,Сигурност apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Планирана да изпрати на {0} получатели apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Изрежи +DocType: Server Script,After Save,След Запазване apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},преименуван от {0} на {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} от {1} ({2} редове с деца) DocType: Currency,**Currency** Master,** Валути ** Главна @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Филтърни стойности DocType: Communication,User Tags,Потребителски етикети DocType: Data Migration Run,Fail,Неуспех DocType: Workflow State,download-alt,изтегляне-н +DocType: Scheduled Job Type,Last Execution,Последно изпълнение DocType: Data Migration Run,Pull Failed,Пултът не успя apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Показване / скриване на карти DocType: Communication,Feedback Request,Обратна връзка - Заявка apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Импортиране на данни от CSV / Excel файлове. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Следните полета са изчезнали: +DocType: Notification Log,From User,От потребителя apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Отмяна на {0} DocType: Web Page,Main Section,Основен раздел DocType: Page,Icon,Икона apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Съвет: Въведете в паролата символи, цифри и главни букви" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Конфигурирайте известия за споменавания, задания, енергийни точки и други." DocType: DocField,Allow in Quick Entry,Оставете в Quick Entry apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,дд/мм/гггг @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL адрес на темата DocType: Customize Form,Sort Field,Поле за сортиране DocType: Razorpay Settings,Razorpay Settings,Настройки Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Редактиране на Филтър -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Добави още DocType: System Settings,Session Expiry Mobile,Session Изтичане Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неправилен потребител или парола apps/frappe/frappe/templates/includes/search_box.html,Search results for,Резултати от търсенето за @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Правило за енергийна точка DocType: Communication,Delayed,Отложен apps/frappe/frappe/config/settings.py,List of backups available for download,Списък на резервни копия на разположение за изтегляне +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Опитайте новия импорт на данни apps/frappe/frappe/www/login.html,Sign up,Регистрирай се apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Ред {0}: Не е позволено да деактивирате Задължително за стандартни полета +DocType: Webhook,Enable Security,Активиране на сигурността apps/frappe/frappe/config/customization.py,Dashboards,табла за управление DocType: Test Runner,Output,продукция DocType: Milestone,Track Field,Track Field @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Задайте собствено apps/frappe/frappe/config/customization.py,Add fields to forms.,Добави полета към форми. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Изглежда, че нещо не е наред с конфигурацията на Paypal на този сайт." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Добавете рецензия +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} ви зададе нова задача {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Размер на шрифта (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Само стандартните DocTypes могат да бъдат персонализирани от Персонализирайте формуляр. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Меню apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Задаване на филтри DocType: Contact Us Settings,Email ID,Email ID DocType: Energy Point Rule,Multiplier Field,Поле за умножение +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,"Поръчката Razorpay не можа да се създаде. Моля, свържете се с администратора" DocType: Dashboard Chart,Time Interval,Времеви интервал DocType: Activity Log,Keep track of all update feeds,Следете всички емисии за актуализации +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} сподели документ {1} {2} с вас 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,Опции Критерии @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Ключ DocType: Address,Contacts,Контакти DocType: System Settings,Setup Complete,Настройката е извършена apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Справка за всички акции на документи +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблонът за импортиране трябва да бъде от тип .csv, .xlsx или .xls" apps/frappe/frappe/www/update-password.html,New Password,Нова Парола apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Филтър {0} липсва apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,За съжаление! Не можете да изтриете автоматично генерирани коментари @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,тичам DocType: Blog Post,Content (HTML),Съдържание (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Настройка за DocType: Personal Data Download Request,User Name,Потребителско име DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не е намерен @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Няма {0} разреш apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Експортните персонализирани разрешения apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Няма намерени елементи. DocType: Data Export,Fields Multicheck,Полетата Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Завършен DocType: Activity Log,Login,Влизане DocType: Web Form,Payments,Плащания apps/frappe/frappe/www/qrcode.html,Hi {0},Здравей {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Интеграция с Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} върна точките си на {1} {2} DocType: System Settings,Enable Scheduled Jobs,Активиране планирани заявки apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Забележки: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,неактивен @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаб apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Грешка при разрешението apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Име на {0} не може да бъде {1} DocType: User Permission,Applicable For,Подходящ за +DocType: Dashboard Chart,From Date,От дата apps/frappe/frappe/core/doctype/version/version_view.html,Success,Успех apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Сесията изтече DocType: Kanban Board Column,Kanban Board Column,Канбан Табло - колона @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Не е позволено в условие DocType: Async Task,Async Task,Асинхр. задача DocType: Workflow State,picture,снимка -apps/frappe/frappe/www/complete_signup.html,Complete,Завършен +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Завършен DocType: DocType,Image Field,Поле за Изображение DocType: Print Format,Custom HTML Help,Персонализиран HTML Help DocType: LDAP Settings,Default Role on Creation,Роля по подразбиране при създаване @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Следващ статус DocType: User,Block Modules,Блок модули DocType: Print Format,Custom CSS,Потребителски CSS +DocType: Energy Point Rule,Apply Only Once,Прилагайте само веднъж apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Добавяне на коментар DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Игнорирани: {0} до {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Default Incoming DocType: Workflow State,repeat,повторение DocType: Website Settings,Banner,Реклама apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Стойността трябва да е една от {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Анулиране на всички документи DocType: Role,"If disabled, this role will be removed from all users.","Ако е забранено, тази роля ще бъде отстранен от всички потребители." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Отидете на {0} Списък apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помощ за Търсене @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Регис apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоматичното повторение на този документ е деактивирано. DocType: DocType,Hide Copy,Скриване Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Изчистване на всички роли +DocType: Server Script,Before Save,Преди запазване apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} трябва да е уникално apps/frappe/frappe/model/base_document.py,Row,Ред apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC и имейл шаблон" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Извън линия apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Успешно импортиран {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Изпрати отпишете съобщение в имейл -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Редактиране на заглавие apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname която ще бъде DOCTYPE за това поле линк. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Документи свързани към вас и от вас. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Можете също да копирате и поставите това @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Прикрепете Изображение DocType: Workflow State,list-alt,Списък-н apps/frappe/frappe/www/update-password.html,Password Updated,Паролата е променена +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Разрешения за потребители apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Стъпки за потвърждаване на данните за вход apps/frappe/frappe/utils/password.py,Password not found,Парола не е намерена +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Дължина на страницата DocType: Email Queue,Expose Recipients,Expose Получатели apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Добавяне към е задължително за входящи съобщения @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимален размер на Прикачен файл (в MB) apps/frappe/frappe/www/login.html,Have an account? Login,Имате акаунт? Влезте +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Настройки за печат ... DocType: Workflow State,arrow-down,стрелка надолу apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ред {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Потребителят не му е разрешено да изтрива {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Въве DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Заглавие на документ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Задължителен) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} преди (и) година DocType: Social Login Key,Social Login Provider,Доставчик на социални данни apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Добави Друг коментар apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"Няма данни във файла. Моля, презаредете новия файл с данни." @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,ръка-надолу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Няма намерени полета, които могат да бъдат използвани като графа на Kanban. Използвайте Персонализирания формуляр, за да добавите персонализирано поле от тип "Избор"." DocType: Address,GST State,GST State apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Не може да отмените непотвърден документ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Потребител ({0}) DocType: Website Theme,Theme,Тема DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Пренасочването URI длъжен да Код за упълномощаване apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Отворете Помощ DocType: DocType,Is Submittable,Дали Правят -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Ново споменаване +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Ново споменаване apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Не са синхронизирани нови контакти в Google. DocType: File,Uploaded To Google Drive,Качено в Google Диск apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Цена поле проверка може да бъде или 0 или 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Входящи DocType: Kanban Board Column,Red,Червен DocType: Workflow State,Tag,Етикет -DocType: Custom Script,Script,Скрипт +DocType: Report,Script,Скрипт apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Документът не може да бъде запазен. DocType: Energy Point Rule,Maximum Points,Максимални точки apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мои Настройки @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} оценяващи точки за {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Ролите могат да бъдат определени за потребители от тяхната страница на потребителя. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Добави коментар +DocType: Dashboard Chart,Select Date Range,Изберете Диапазон от дати DocType: DocField,Mandatory,Задължителен apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модул за експорт +DocType: Scheduled Job Type,Monthly Long,Месечно дълго apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Няма основен набор разрешения +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Изпратете имейл до {0}, за да го свържете тук" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Значение на Знаете, Отмени, изменя" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Да направя @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Проследяв DocType: Social Login Key,Identity Details,Детайли за самоличността apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Преходът на състоянието на работния процес не е разрешен от {0} до {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Показване на таблото за управление -apps/frappe/frappe/desk/form/assign_to.py,New Message,Ново съобщение DocType: File,Preview HTML,Преглед HTML DocType: Desktop Icon,query-report,заявка-доклад DocType: Data Import Beta,Template Warnings,Предупреждения за шаблони @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Свърза apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Редактиране на настройките за автоматично имейл съобщения DocType: Chat Room,Message Count,Брой съобщения DocType: Workflow State,book,книга +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} е свързан със следните представени документи: {2} DocType: Communication,Read by Recipient,Прочетете от получателя DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Грешка в персонализиран скрипт apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Име apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Няма разрешение за определени за тези критерии. DocType: Auto Email Report,Auto Email Report,Auto Email Доклад +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Нов документ споделен apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Изтриване на коментар? DocType: Address Template,This format is used if country specific format is not found,"Този формат се използва, ако не се намери специфичен формат за държавата" DocType: System Settings,Allow Login using Mobile Number,Да се разреши влизането чрез мобилен номер apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Вие нямате достатъчно права за достъп до този ресурс. Моля, свържете се с вашия мениджър, за да получите достъп." DocType: Custom Field,Custom,Персонализиран DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ако е активирано, потребителите, които влизат от Ограничен IP адрес, няма да бъдат подканени за двуфакторен автор" +DocType: Server Script,After Cancel,След Отказ DocType: Auto Repeat,Get Contacts,Получаване на контакти apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Постове намира под {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Прескачане на неозаглавена колона @@ -1684,6 +1757,7 @@ DocType: User,Login After,Вход След DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Печатане DocType: Workflow State,thumbs-up,одобрение +DocType: Notification Log,Mention,Споменавам DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Шрифтове apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Прецизността трябва да бъде между 1 и 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,и apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Този отчет бе генериран на {0} DocType: Error Snapshot,Frames,Frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,назначение +DocType: Notification Log,Assignment,назначение DocType: Notification,Slack Channel,Свободен канал DocType: About Us Team Member,Image Link,Линк към снимката DocType: Auto Email Report,Report Filters,Справка Филтри @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Не може да се актуализира събитие apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Кодът за потвърждение е изпратен на регистрирания ви имейл адрес. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Потиснат +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Вашата цел apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Филтърът трябва да има 4 стойности (доктоп, име на поле, оператор, стойност): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Няма посочено име за {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Прилагане на правило за присвояване apps/frappe/frappe/utils/bot.py,show,покажи apps/frappe/frappe/utils/data.py,Invalid field name {0},Невалидно име на поле {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,текст-височина DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Картографиране на плана за миграция на данни apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Стартиране на Frappe ... DocType: Web Form Field,Max Length,Максимална дължина -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},За {0} {1} DocType: Print Format,Jinja,Джинджа DocType: Workflow State,map-marker,Карта-маркер apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Пуснете Issue @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Страницата ли apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Отзиви DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay настройки портал на плащане +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} спечели {1} точка за {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Извличане на приложените изображения от документа DocType: Chat Room,Name,Име DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Твоят език DocType: Dashboard Chart,Average,Средно аритметично apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Добави ред -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,печатар apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Query трябва да бъде SELECT DocType: Auto Repeat,Completed,Завършен @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Следващо синхронизи DocType: Energy Point Settings,Energy Point Settings,Настройки на енергийната точка DocType: Async Task,Succeeded,Успя apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Задължителни полета в {0} +DocType: Onboarding Slide Field,Align,Изравнете apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Фабрични Разрешения за {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Потребители и права DocType: S3 Backup Settings,S3 Backup Settings,S3 Настройки за архивиране @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Ново име на формата за печат apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Кликнете върху връзката по-долу, за да одобрите заявката" DocType: Workflow State,align-left,подравняване-ляво +DocType: Onboarding Slide,Action Settings,Настройки за действие DocType: User,Defaults,Настройки по подразбиране +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За сравнение използвайте> 5, <10 или = 324. За диапазони използвайте 5:10 (за стойности между 5 и 10)." DocType: Energy Point Log,Revert Of,Възвръщане на apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Обединяване със съществуващото DocType: User,Birth Date,Рождена Дата @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,В DocType: Notification,Value Change,Промяна на стойност DocType: Google Contacts,Authorize Google Contacts Access,Упълномощавайте достъпа до Google Контакти apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Показани са само числови полета от Отчет +apps/frappe/frappe/utils/data.py,1 week ago,преди 1 седмица DocType: Data Import Beta,Import Type,Тип импортиране DocType: Access Log,HTML Page,HTML страница DocType: Address,Subsidiary,Филиал @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,С бланки apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невалиден Outgoing Mail Server или Port DocType: Custom DocPerm,Write,Напиши -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Само Администратор може да позволи да създадете Справки за заявки / скриптове apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Актуализиране DocType: Data Import Beta,Preview,Предварителен преглед apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Поле ""стойност"" е задължително. Моля, посочете стойност да бъде актуализирана" @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Покан DocType: Data Migration Run,Started,Започната apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Потребителят {0} няма достъп до този документ DocType: Data Migration Run,End Time,Край (време) +DocType: Dashboard Chart,Group By Based On,Групиране въз основа на apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Изберете Приложения apps/frappe/frappe/model/naming.py, for {0},за {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Вие нямате право да отпечатате този документ @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,"Уверете се," DocType: Workflow Document State,Update Field,Актуализация на поле DocType: Chat Profile,Enable Chat,Активиране на чата DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Оставете този разговор apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Опции не са определени за поле {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Опашка / работник @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Не е позволено влизането в този момент DocType: Data Migration Run,Current Mapping Action,Текущо действие за картографиране DocType: Dashboard Chart Source,Source Name,Източник Име -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Няма имейл акаунт, свързан с Потребителя. Моля, добавете акаунт в Потребител> Входяща поща." DocType: Email Account,Email Sync Option,Email Sync опция apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Ред № DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Привързан е DocType: Contact Us Settings,Introduction,Въведение +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Нужда от помощ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Пин в световен мащаб apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Следван от DocType: LDAP Settings,LDAP Email Field,LDAP Email - Поле @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Още п DocType: User Email,Enable Outgoing,Активиране на изходящо DocType: Address,Fax,Факс apps/frappe/frappe/config/customization.py,Custom Tags,Персонализирани Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Не се настройва имейл акаунт. Моля, създайте нов имейл акаунт от Setup> Email> Email account" DocType: Comment,Submitted,Изпратено DocType: Contact,Pulled from Google Contacts,Изтеглено от Google Контакти apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Невалидна заявка @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Начал apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Присвояване на мен DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Натиснете клавиша Alt, за да задействате допълнителни клавишни комбинации в менюто и страничната лента" +DocType: Dashboard Chart,To Date,Към Дата DocType: List View Setting,List View Setting,Настройка за изглед на списък apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Покажи провали работни места -DocType: Event,Details,Детайли +DocType: Scheduled Job Log,Details,Детайли DocType: Property Setter,DocType or Field,DocType или Поле apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Оттеглихте този документ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Основен цвят @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-Върната DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ако е разрешено, всички потребители могат да влизат от всеки IP адрес с помощта на Two Factor Auth. Това може да бъде зададено само за конкретен потребител (и) в потребителската страница" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Изглежда, че ключът за публикуване или тайният ключ е грешен!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Помощ за определяне на права -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype да поставяте етикети apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Покажи Рецидивите apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Имейлът бе преместен в кошчето DocType: Report,Report Builder,Report Builder @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Качи DocType: User Permission,Advanced Control,Разширено управление DocType: System Settings,Date Format,Формат на дата apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Не е публикуван +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е намерен шаблон за адрес по подразбиране. Моля, създайте нов от Настройка> Печат и брандиране> Шаблон на адреса." apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Дейаствия за работния процес (напр. Одобрение, Отказ)." DocType: Data Import,Skip rows with errors,Пропускайте редове с грешки DocType: Workflow State,flag,флаг @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Пе apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Направо на поле DocType: Contact Us Settings,Forward To Email Address,Препрати на имейл адрес DocType: Contact Phone,Is Primary Phone,Основен телефон е -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Изпратете имейл до {0}, за да го свържете тук." DocType: Auto Email Report,Weekdays,делници apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ще бъдат експортирани записи apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Публикувай коментар apps/frappe/frappe/config/core.py,Documents,Документи apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Регистрация на дейности от DocType: Social Login Key,Custom Base URL,Потребителски базов URL адрес -DocType: Email Flag Queue,Is Completed,е завършен +DocType: Onboarding Slide,Is Completed,е завършен apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Получаване на полета apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Редактирай профил DocType: Kanban Board Column,Archived,Архивиран @@ -2110,11 +2189,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",В това поле ще се появи само ако FIELDNAME определено тук има стойност или правилата са верни (примери): myfield Оценка: doc.myfield == "My Value" Оценка: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Днес +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Днес apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Изпращане след импортиране DocType: Error Log,Log of Scheduler Errors,Журнал на грешки за Scheduler DocType: User,Bio,Био +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Връзка за помощ на слайда на борда DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Изпращане apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Родител е името на документа, към който ще бъдат добавени данните." @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ГЛАВНИ БУКВИ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Потребителски HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Въведете име на папка -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е намерен шаблон за адрес по подразбиране. Моля, създайте нов от Настройка> Печат и брандиране> Шаблон на адреса." apps/frappe/frappe/auth.py,Unknown User,Неизвестен потребител apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Изберете роля DocType: Comment,Deleted,Изтрити @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Часовник на чата apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Създайте диаграма apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не импортирайте -DocType: Web Page,Center,Център +DocType: Onboarding Slide Field,Center,Център DocType: Notification,Value To Be Set,"Стойност, която трябва да бъде зададена" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Редактиране на {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Първо ниво @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Име на базата данни apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Обновяване Form DocType: DocField,Select,Изберете -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Вижте пълния дневник +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Вижте пълния дневник DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Example: status == 'Open' и напишете == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Файлът не е прикачен apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Изгубената връзка. Възможно е някои функции да не работят. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML за раздел гл apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Тази функция е нова и все още експериментална apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Позволен брой редове {0} DocType: Dashboard Chart Link,Chart,диаграма +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Глобално отписване apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Това е много често срещана парола. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Изглед @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Име на хост DocType: Data Migration Mapping,Condition Detail,Подробно състояние apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",За валута {0} минималната стойност на транзакцията трябва да бъде {1} DocType: DocField,Print Hide,Print Скрий +DocType: System Settings,HH:mm:ss,HH: мм: сс apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,За потребителя apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Въведете стойност DocType: Workflow State,tint,нюанс @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR код за apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Добави към To Do DocType: Footer Item,Company,Компания apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Средно {0} +DocType: Scheduled Job Log,Scheduled,Планиран DocType: User,Logout from all devices while changing Password,"Излизайте от всички устройства, докато променяте паролата" apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Потвърдете Паролата apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Има грешки @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Потребителското разрешение вече съществува apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Съставяне на колона {0} в поле {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Преглед на {0} -DocType: User,Hourly,всеки час +DocType: Scheduled Job Type,Hourly,всеки час apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрирайте OAuth Client App DocType: DocField,Fetch If Empty,"Извличане, ако е празно" DocType: Data Migration Connector,Authentication Credentials,Удостоверения за удостоверяване @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може да бъде ""{2}"". Тя трябва да бъде една от ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},спечелено от {0} чрез автоматично правило {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} или {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Всички сте настроени! DocType: Workflow State,trash,боклук DocType: System Settings,Older backups will be automatically deleted,"По-стари архиви, да се изтриват автоматично" apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Невалиден ключ за достъп или ключ за достъп. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Загубихте някои енергийни точки DocType: Post,Is Globally Pinned,Е глобално закачен apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Последна активност DocType: Workflow Transition,Conditions,условия @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Потвър DocType: Event,Ends on,Завършва на DocType: Payment Gateway,Gateway,Врата DocType: LDAP Settings,Path to Server Certificate,Път към сертификата за сървър +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript е деактивиран във вашия браузър apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Няма достатъчно разрешение да виждате връзки apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Заглавие на Адрес е задължително. DocType: Google Contacts,Push to Google Contacts,Премини към Google Контакти @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,ес-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ако това е отметнато, редове с валидни данни ще бъдат импортирани, а невалидни редове ще бъдат изхвърлени в нов файл, който да импортирате по-късно." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ може да се редактира само от потребителите на роля -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Задачата {0}, която сте задали за {1}, е затворена от {2}." DocType: Print Format,Show Line Breaks after Sections,Покажи Line Breaks след раздели DocType: Communication,Read by Recipient On,Прочетете от получателя DocType: Blogger,Short Name,Кратко Име @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Пр DocType: Translation,PR sent,PR е изпратен DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Само изпращане на записи, актуализирани в последните X часа" DocType: Communication,Feedback,Обратна връзка +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Актуализирана до нова версия 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Отворете превод apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Този имейл е автоматично генериран DocType: Workflow State,Icon will appear on the button,Ще се появи иконата на бутона @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Стран DocType: DocField,Precision,Точност DocType: Website Slideshow,Slideshow Items,Slideshow артикули apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Опитайте се да се избегне повтарящи се думи и знаци +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Известията са деактивирани +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,"Сигурни ли сте, че искате да изтриете всички редове?" DocType: Workflow Action,Workflow State,Workflow-членка apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Редове добавени apps/frappe/frappe/www/list.py,My Account,Моят Профил @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Дни след apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ връзка на тавата активна! DocType: Contact Us Settings,Settings for Contact Us Page,"Настройки на ""Връзка с нас""" +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Активиране на сървър за печат apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Преди {0} седмици DocType: Email Account,Footer,Footer @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Предупреждение apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Това може да се отпечата на няколко страници DocType: Data Migration Run,Percent Complete,Процента завършени -DocType: Tag Category,Tag Category,Етикет - Категория -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За сравнение използвайте> 5, <10 или = 324. За диапазони използвайте 5:10 (за стойности между 5 и 10)." DocType: Google Calendar,Pull from Google Calendar,Издърпайте от Google Календар apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Помощ DocType: User,Login Before,Вход Преди @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Скриване на уикендите apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматично генерира повтарящи се документи. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Е +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Инфо-знак apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Цена {0} не може да бъде даден списък DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как трябва да се форматира тази валута? Ако не е зададена, ще използва системните настройки" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Изпратете {0} документи? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Трябва да влезете в профила и да имате роля на системен мениджър, за да бъдете в състояние за достъп до архиви." +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при свързването към приложението QZ Tray ...

За да използвате функцията Raw Print, трябва да имате инсталирано и работещо приложение QZ Tray.

Щракнете тук, за да изтеглите и инсталирате QZ Tray .
Щракнете тук, за да научите повече за необработения печат ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Картографиране на принтера apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Моля, запишете преди да поставите." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Искате ли да анулирате всички свързани документи? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Добавен {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се променя от {0} на {1} в ред {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Роля - Права DocType: Help Article,Intermediate,Междинен +apps/frappe/frappe/config/settings.py,Email / Notifications,Имейл / Известия apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} промени {1} в {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,"Отменен документ, възстановен като чернова" DocType: Data Migration Run,Start Time,Начален Час @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Д apps/frappe/frappe/email/smtp.py,Invalid recipient address,Невалиден адрес на получателя DocType: Workflow State,step-forward,стъпка напред DocType: System Settings,Allow Login After Fail,Разрешаване на влизането след неуспех +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Задайте роля DocType: GCalendar Account,The name that will appear in Google Calendar,"Името, което ще се показва в Google Календар" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Директната стая с {0} вече съществува. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Създ DocType: Contact,Google Contacts,Google Контакти DocType: GCalendar Account,GCalendar Account,GCalendar акаунт DocType: Email Rule,Is Spam,е спам +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,последно apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Справка {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} DocType: Data Import Beta,Import Warnings,Предупреждения за импортиране @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ОК-знак apps/frappe/frappe/config/settings.py,Deleted Documents,Изтрити документи apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Форматът CSV е чувствителен към главни и малки букви apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Иконата на работния плот вече съществува +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Посочете в какви домейни трябва да се показват слайдовете. Ако нищо не е посочено, слайдът се показва във всички домейни по подразбиране." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дубликат apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Поле {1} в ред {2} не може да бъде скрито и задължително без по подразбиране DocType: Newsletter,Create and Send Newsletters,Създаване и изпращане на бюлетини @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Идентификационен номер на събитието в Google Календар apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Родителска"" означава главната таблица, в която трябва да се добави този ред" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Точки за преглед: +DocType: Scheduled Job Log,Scheduled Job Log,Планиран дневник +DocType: Server Script,Before Delete,Преди изтриване apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Споделено с apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Прикачете файлове / URL адреси и добавете в таблицата. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Съобщението не е настроено @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,"Настройки на ""За нас"" страницата" apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Настройки на порта за плащане за ленти apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Печат Изпратен на принтера! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Енергийни точки +DocType: Notification Settings,Energy Points,Енергийни точки +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Времето {0} трябва да е във формат: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,напр pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Генериране на клавиши apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Това ще премахне трайно вашите данни. DocType: DocType,View Settings,Преглед на настройките +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ново известие DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Структура на заявката +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Липсва методът на контролера get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Предстои потвърждение DocType: Website Meta Tag,Website Meta Tag,Мета етикет на уебсайта DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ако нестандартния порт (например 587). Ако сте в Google Cloud, опитайте порт 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Изчистване на крайната дата, тъй като не може да бъде в миналото за публикувани страници." DocType: User,Send Me A Copy of Outgoing Emails,Изпратете ми копие на изходящи имейли -DocType: System Settings,Scheduler Last Event,Scheduler последното събитие DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Добави Google Analytics ID: напр. UA-89XXX57-1. Моля потърсете помощ в Google Analytics. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Парола не може да бъде по-дълга от 100 знака DocType: OAuth Client,App Client ID,App Client ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Нужна е apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} сподели този документ с {1} DocType: Website Settings,Brand Image,Изображение на марката DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Шаблонът за импортиране трябва да съдържа заглавие и най-малко един ред. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Календар е конфигуриран. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Setup на горната навигационна лента, долния и лого." DocType: Web Form Field,Max Value,Максимална стойност @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Потребителско соци apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} разкритикува работата ви {1} с точка {2} DocType: Contact,All,Всички DocType: Email Queue,Recipient,Получател +DocType: Webhook,Webhook Security,Сигурност на уебхоката DocType: Communication,Has Attachment,С прикачен файл DocType: Address,Sales User,Продажби - потребител apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,"Drag и Drop инструмент, за да се изгради и да персонализирате формати на печат." @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Поле за ID на миг DocType: Dashboard Chart,Last Synced On,Последно синхронизирано DocType: Comment,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,OAuth клиент -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} разкритикува работата ви в {1} {2} DocType: Assignment Rule,Users,Потребители DocType: Address,Odisha,Одиша DocType: Report,Report Type,Тип на отчета @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Еле apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Не се допуска само одобрение DocType: GSuite Templates,Template ID,Идент. № на шаблона apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Комбинацията от типа безвъзмездни средства ( {0} ) и типа на отговора ( {1} ) не е разрешена -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Ново съобщение от {0} DocType: Portal Settings,Default Role at Time of Signup,Default Роля по време на членство DocType: DocType,Title Case,Заглавие Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Кликнете върху връзката по-долу, за да изтеглите вашите данни" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Активирана пощенска кутия за потребител за {0} DocType: Data Migration Run,Data Migration Run,Мигриране на данни DocType: Blog Post,Email Sent,Email Изпратено -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,По-стари DocType: DocField,Ignore XSS Filter,Игнорирайте XSS Филтър apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,премахнат apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Настройки на Dropbox архивиране @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,На опашка DocType: Braintree Settings,Use Sandbox,Използвайте Sandbox apps/frappe/frappe/utils/goal.py,This month,Този месец apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нов персонализиран Print Format +DocType: Server Script,Before Save (Submitted Document),Преди запазване (изпратен документ) DocType: Custom DocPerm,Create,Създай apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Няма повече елементи за показване apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Към предишния запис @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Преместване в кошчето DocType: Web Form,Web Form Fields,Web Form Полета DocType: Data Import,Amended From,Променен от +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Добавете помощна видео връзка само в случай, че потребителят няма представа какво да попълни в слайда." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Внимание: Не може да се намери {0} в таблица свързана с {1} DocType: S3 Backup Settings,eu-north-1,ес-север-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Този документ е в момента опашка за изпълнение. Моля, опитайте отново" @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Блог - Статия DocType: Access Log,Export From,Експорт от apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Разширено Търсене apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Не ви е позволено да разглеждате бюлетина. +DocType: Dashboard Chart,Group By,Групирай по DocType: User,Interests,Интереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл DocType: Energy Point Rule,Allot Points To Assigned Users,Отделяйте точки на назначени потребители @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Правило за възлагане apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Примерен Потребител: {0} DocType: Assignment Rule Day,Day,ден apps/frappe/frappe/public/js/frappe/desk.js,Modules,модули +DocType: DocField,Mandatory Depends On,Задължително зависи от apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Успешно плащане apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Няма {0} поща DocType: OAuth Bearer Token,Revoked,Отменен @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Когато се изменя документ след Отмени и спести нея, тя ще получи нов номер, който е версия на стария номер." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Не е разрешено да поставяте документ {0}, моля, активирайте Разрешаване на отпечатване за {0} в настройките за печат" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Не се настройва имейл акаунт. Моля, създайте нов имейл акаунт от Setup> Email> Email account" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Вижте документа на {0} DocType: Stripe Settings,Publishable Key,Ключ за публикуване apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Стартирайте импортирането @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,Фракция apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Събитието е синхронизирано с Google Календар. DocType: LDAP Settings,LDAP First Name Field,LDAP Име - Поле DocType: Contact,Middle Name,Презиме +DocType: DocField,Property Depends On,Имотът зависи от DocType: Custom Field,Field Description,Поле Описание apps/frappe/frappe/model/naming.py,Name not set via Prompt,Името не определя чрез Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Входящи apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Актуализиране на {0} от {1}, {2}" DocType: Auto Email Report,Filters Display,Показване на филтри apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","За да направите изменение, трябва да присъства полето "изменено_от"." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} оцениха работата ви на {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Запазване на филтрите DocType: Address,Plant,Завод apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Отговори на всички @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,папка-затворена apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Отчет: DocType: Print Settings,Print taxes with zero amount,Печатайте данъци с нулева сума apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} не е позволено да бъде преименуван +DocType: Server Script,Before Insert,Преди вмъкване DocType: Custom Script,Custom Script,Потребителски Script DocType: Address,Address Line 2,Адрес - Ред 2 DocType: Address,Reference,Препратка apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Възложените -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунта от Setup> Email> Email account" DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Данни за картографиране на данни за мигриране DocType: Data Import,Action,Действие DocType: GSuite Settings,Script URL,URL адрес на скрипта @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,В списъчен изглед DocType: Email Account,Use TLS,Използване на TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Невалидна парола или потребителско име +DocType: Scheduled Job Type,Weekly Long,Седмично дълго apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Изтеглете шаблони apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Добави JavaScript форми. ,Role Permissions Manager,Мениджър на права за роля apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Името на новия Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Превключване на страничната лента +DocType: Server Script,After Save (Submitted Document),След запазване (изпратен документ) DocType: Data Migration Run,Pull Insert,Издърпайте вложката DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Максимално разрешени точки след умножаване на точки със стойността на умножителя (Забележка: За ограничение не оставяйте това поле празно или задайте 0) @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP не е инсталиран apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Свали с данни apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},променени стойности за {0} {1} +DocType: Server Script,Before Cancel,Преди Отказ DocType: Workflow State,hand-right,ръка-надясно DocType: Website Settings,Subdomain,Поддомейн DocType: S3 Backup Settings,Region,Област @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Стара Парола DocType: S3 Backup Settings,us-east-1,ни-изток-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Мнения на {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","За колони формат, даде етикети на колони в заявката." +DocType: Onboarding Slide,Slide Fields,Плъзгащи се полета DocType: Has Domain,Has Domain,Има Домейн DocType: User,Allowed In Mentions,Разрешено в споменавания apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Не сте регистриран? Регистрирай се apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Не може да се премахне полето ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Абонирани документи apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Настройки на потребителя DocType: Report,Reference Report,Справочен доклад DocType: Activity Log,Link DocType,Препратка DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Упълномощав apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Страницата, която търсите липсва. Това би могло да бъде, защото тя е преместена или има печатна грешка в линка." apps/frappe/frappe/www/404.html,Error Code: {0},Код на грешка: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание на обявата страница, в обикновен текст, само няколко линии. (макс 140 знака)" +DocType: Server Script,DocType Event,DocType събитие apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} са задължителни полета DocType: Workflow,Allow Self Approval,Позволете само одобрение DocType: Event,Event Category,Категория събития @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Вашето име apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успешно свързване DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Вграден слайд с продължение на тип слайд вече съществува. DocType: DocType,Default Sort Field,Поле за сортиране по подразбиране DocType: File,Is Folder,Е папка DocType: Document Follow,DocType,DocType @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Про DocType: Workflow State,arrow-up,стрелка нагоре DocType: Dynamic Link,Link Document Type,Тип документ за връзка apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Трябва да има най-малко един ред за {0} таблица +DocType: Server Script,Server Script,Сървър скрипт apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","За да конфигурирате автоматично повторение, активирайте „Разрешаване на автоматично повторение“ от {0}." DocType: OAuth Bearer Token,Expires In,Изтича В +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Колко пъти искате да повторите набора от полета (например: ако искате 3 клиенти в слайда, задайте това поле на 3. Само първото множество полета се показва като задължително в слайда)" DocType: DocField,Allow on Submit,Разрешаване на Изпращане DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Тип Изключение @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Заглавия apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Предстоящи събития apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Моля, въведете стойности за App ключа за достъп и App Secret Key" +DocType: Email Account,Append Emails to Sent Folder,Добавете имейли към изпратената папка DocType: Web Form,Accept Payment,Приеми плащане apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Изберете елемент от списъка apps/frappe/frappe/config/core.py,A log of request errors,Журнал с грешки на заявки @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,Предоставено apps/frappe/frappe/config/customization.py,Form Customization,Персонализиране на формуляри apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Няма активни сесии DocType: Web Form,Route to Success Link,Маршрут към успешна връзка -DocType: Top Bar Item,Right,Дясно +DocType: Onboarding Slide Field,Right,Дясно apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Няма предстоящи събития DocType: User,User Type,Вид потребител DocType: Prepared Report,Ref Report DocType,Ref Доклад DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Моля, оп apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL адресът трябва да започва с „http: //“ или „https: //“ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Вариант 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Това не може да бъде отменено DocType: Workflow State,Edit,Редактирай DocType: Website Settings,Chat Operators,Чат оператори DocType: S3 Backup Settings,ca-central-1,ва централен-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Имате незапазени промени в тази форма. Моля, запишете преди да продължите." DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Отчетът с повече от 10 колони изглежда по-добре в режим Пейзаж. apps/frappe/frappe/database/database.py,Invalid field name: {0},Невалидно име на полето: {0} DocType: Milestone,Milestone,важно събитие @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Отидете на apps/frappe/frappe/email/queue.py,Emails are muted,Имейлите са заглушени apps/frappe/frappe/config/integrations.py,Google Services,Услуги на Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Нагоре -apps/frappe/frappe/utils/data.py,1 weeks ago,преди 1 седмица +DocType: Onboarding Slide,Slide Description,Описание на слайда DocType: Communication,Error,Грешка apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,"Моля, първо поставете съобщение" DocType: Auto Repeat,End Date,Крайна Дата @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Група - Заглавие DocType: Kanban Board,Kanban Board,Канбан Табло apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Контакти са конфигурирани. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 запис ще бъде изнесен +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Няма имейл акаунт, свързан с Потребителя. Моля, добавете акаунт в Потребител> Входяща поща." DocType: DocField,Report Hide,Справка Скрий apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},изглед Tree не е на разположение за {0} DocType: DocType,Restrict To Domain,Ограничаване до домейн DocType: Domain,Domain,Домейн +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,"Невалиден URL адрес на файл. Моля, свържете се със системния администратор." DocType: Custom Field,Label Help,Етикет - Помощ DocType: Workflow State,star-empty,звезда-празна apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Датите са често лесни за отгатване. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,ръка-наляво DocType: Data Import,If you are updating/overwriting already created records.,Ако актуализирате / презаписвате вече създадени записи. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Това е глобално DocType: Email Account,Use SSL,Използване на SSL +DocType: Webhook,HOOK-.####,Хук -. #### DocType: Workflow State,play-circle,игра-кръг apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документът не може да бъде зададен правилно apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Невалиден израз "зависи_на" @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Последно освежена apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,За тип документ DocType: Workflow State,arrow-right,стрелка надясно +DocType: Server Script,API Method,Метод на API DocType: Workflow State,Workflow state represents the current state of a document.,Членка Workflow представлява текущото състояние на даден документ. DocType: Letter Head,Letter Head Based On,Писмо главата на базата apps/frappe/frappe/utils/oauth.py,Token is missing,Token липсва @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,свързва отново DocType: Print Settings,Compact Item Print,Компактен печат на елементи DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Пренасочване на URL +DocType: Onboarding Slide Field,Placeholder,Заместител DocType: SMS Settings,Enter url parameter for receiver nos,Въведете URL параметър за приемник с номера DocType: Chat Profile,Online,На линия DocType: Email Account,Always use Account's Name as Sender's Name,Винаги използвайте името на акаунта като име на подателя @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,Начална страница DocType: OAuth Provider Settings,Auto,Автоматичен DocType: System Settings,User can login using Email id or User Name,Потребителят може да влезе с имейл или потребителско име DocType: Workflow State,question-sign,въпрос-знак -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} е деактивиран apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Полето "маршрут" е задължително за уеб изгледи apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вмъкване на колона преди {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Потребителят от това поле ще получи награди @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ако Собств DocType: Data Migration Mapping,Push,тласък apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Пускайте файлове тук DocType: OAuth Authorization Code,Expiration time,време изтичане +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Отворете документи DocType: Web Page,Website Sidebar,Сайт Sidebar DocType: Web Form,Show Sidebar,Покажи Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Трябва да сте влезли, за да получите достъп до този {0}." @@ -3282,6 +3396,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобал DocType: Desktop Icon,Page,Страница apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Не можах да намеря {0} в {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имена и фамилии сами по себе си са лесни за отгатване. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Документът е преименуван от {0} на {1} apps/frappe/frappe/config/website.py,Knowledge Base,База от знание DocType: Workflow State,briefcase,куфарче apps/frappe/frappe/model/document.py,Value cannot be changed for {0},"Стойността не може да бъде променяна, за {0}" @@ -3318,6 +3433,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Превключване на изглед от мрежата apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Към следващия запис +DocType: System Settings,Time Format,Времеви формат apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Невалидни пълномощията на шлюза за плащане DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Това е шаблонният файл, генериран само с някои грешки. Трябва да използвате този файл за корекция и импортиране." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Задаване на разрешения за видовете и Роли на документи @@ -3360,12 +3476,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Отгов apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Страници в Desk (място притежателите) DocType: DocField,Collapsible Depends On,Свиваем - зависи от DocType: Print Style,Print Style Name,Име на стил на печат +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Групиране по поле е необходимо за създаване на диаграма на таблото DocType: Print Settings,Allow page break inside tables,Разрешаване на пренос на страница вътре в таблица DocType: Email Account,SMTP Server,SMTP сървър DocType: Print Format,Print Format Help,Print Format Помощ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} стаята трябва да има най-много един потребител. DocType: DocType,Beta,Бета DocType: Dashboard Chart,Count,Броя +DocType: Dashboard Chart,Group By Type,Групиране по тип apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Нов коментар за {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},възстановено {0} като {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ако обновявате, моля изберете "Презаписване" друго съществуващи редове няма да бъдат изтрити." @@ -3376,14 +3494,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Потр DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Дата {0} трябва да бъде във формат: {1} DocType: About Us Settings,Org History Heading,Орг История - Заглавие +DocType: Scheduled Job Type,Scheduled Job Type,Планиран тип работа DocType: Print Settings,Allow Print for Cancelled,Разрешаване на печат за Отменен документ DocType: Communication,Integrations can use this field to set email delivery status,Интеграции могат да използват тази област да се създаде статут на имейл доставка +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Нямате разрешения за анулиране на всички свързани документи. DocType: Web Form,Web Page Link Text,Web Page Link Текст DocType: Page,System Page,Системна страница apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Определете формат по подразбиране, размер на страница, печат стил и т.н." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Персонализациите за {0} са експортирани на:
{1} DocType: Website Settings,Include Search in Top Bar,Включи Търсене в Top Bar +DocType: Scheduled Job Type,Daily Long,Ежедневно дълго DocType: GSuite Settings,Allow GSuite access,Разрешете достъп на GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Именуване @@ -3475,6 +3596,7 @@ DocType: Notification,Send days before or after the reference date,Изпрат DocType: User,Allow user to login only after this hour (0-24),Позволи на потребителя да се логнете само след този час (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Присвойте едно по едно, последователно" DocType: Integration Request,Subscription Notification,Нотификация за абонамент +DocType: Customize Form Field, Allow in Quick Entry ,Разрешаване при бързо влизане apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,или прикачете a DocType: Auto Repeat,Start Date,Начална Дата apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Стойност @@ -3489,6 +3611,7 @@ DocType: Google Drive,Backup Folder ID,Идент. № на папката за apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не е в режим на програмиста! Разположен в site_config.json или да направите "по поръчка" DocType. DocType: Workflow State,globe,глобус DocType: System Settings,dd.mm.yyyy,дд.мм.гггг +DocType: Onboarding Slide Help Link,Video,Видео DocType: Assignment Rule,Priority,Приоритет DocType: Email Queue,Unsubscribe Param,Отписване Парам DocType: DocType,Hide Sidebar and Menu,Скриване на страничната лента и менюто @@ -3500,6 +3623,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Позволете Import ( apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Номер DocType: DocField,Float,Плаващ DocType: Print Settings,Page Settings,Настройки на страницата +DocType: Notification Settings,Notification Settings,Настройки за известията apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Се запазва ... apps/frappe/frappe/www/update-password.html,Invalid Password,грешна парола apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Успешно импортиран {0} запис от {1}. @@ -3515,6 +3639,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Изображение на буквата DocType: Address,Party GSTIN,Партия GSTIN +DocType: Scheduled Job Type,Cron Format,Формат на крона apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Доклад DocType: SMS Settings,Use POST,Използвайте POST DocType: Communication,SMS,SMS @@ -3559,18 +3684,20 @@ DocType: Workflow,Allow approval for creator of the document,Позволете apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Запазване на отчета DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Действие на сървъра apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Администратора е влизал на {0} на {1} чрез IP адрес {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Родителското поле трябва да бъде валидно име на полето apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Неуспешно при промяна на абонамента DocType: LDAP Settings,LDAP Group Field,LDAP Group Field +DocType: Notification Subscribed Document,Notification Subscribed Document,Известие Абониран документ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Равно apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Невалиден CSV формат -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при свързването към приложението QZ Tray ...

За да използвате функцията Raw Print, трябва да имате инсталирано и работещо приложение QZ Tray.

Щракнете тук, за да изтеглите и инсталирате QZ Tray .
Щракнете тук, за да научите повече за необработения печат ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Определете брой резервни копия DocType: DocField,Do not allow user to change after set the first time,Да не се допуска потребител да се промени след задаване за първи път apps/frappe/frappe/utils/data.py,1 year ago,Преди 1 година +DocType: DocType,Links Section,Секция за връзки apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Преглед на дневника на всички събития за печат, изтегляне и експортиране" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месец DocType: Contact,Contact,Контакт @@ -3597,16 +3724,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Нов имейл DocType: Custom DocPerm,Export,Експорт apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","За да използвате Google Календар, активирайте {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Също така се добавя полето за зависимост на състоянието {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Успешно актуализиран {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ тава не бе успешно: DocType: Dropbox Settings,Dropbox Settings,Настройки Dropbox DocType: About Us Settings,More content for the bottom of the page.,Повече съдържание за долната част на страницата. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Този документ е възстановен apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Резервно копие на Google Диск успешно. +DocType: Webhook,Naming Series,Поредни Номера DocType: Workflow,DocType on which this Workflow is applicable.,"DocType, на която тази Workflow е приложимо." DocType: User,Enabled,Активен apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Неуспешно завършване на настройката apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Ново {0}: {1} -DocType: Tag Category,Category Name,Категория Име +DocType: Blog Category,Category Name,Категория Име apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,За получаване на данни от детската таблица е необходим родител apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Импорт - Абонати DocType: Print Settings,PDF Settings,PDF Настройки @@ -3642,6 +3772,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Календар apps/frappe/frappe/client.py,No document found for given filters,За даден филтър не е намерен документ apps/frappe/frappe/config/website.py,A user who posts blogs.,"Потребител, който публикува блогове." +DocType: DocType Action,DocType Action,DocType действие apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Друг {0} с име {1} съществува, изберете друго име" DocType: DocType,Custom?,Персонализиран? DocType: Website Settings,Website Theme Image,Website Theme Изображение @@ -3651,6 +3782,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Не мо apps/frappe/frappe/config/integrations.py,Backup,Резервно копие apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Тип документ е необходим за създаване на диаграма на таблото DocType: DocField,Read Only,Само За Четене +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Поръчката за разплащане не можа да се създаде apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Нов бюлетин DocType: Energy Point Log,Energy Point Log,Дневник на енергийната точка DocType: Print Settings,Send Print as PDF,Изпрати Принтирай като PDF @@ -3676,16 +3808,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П apps/frappe/frappe/www/login.html,Or login with,Или влезте с DocType: Error Snapshot,Locals,Местните жители apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Съобщено посредством {0} от {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ви спомена в коментар в {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Изберете група по ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,напр (55 + 434) / 4 или = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} е задължително DocType: Integration Request,Integration Type,Вид интеграция DocType: Newsletter,Send Attachements,Изпрати прикачванията +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Няма намерени филтри apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграция с контакти на Google. DocType: Transaction Log,Transaction Log,Дневник на транзакциите apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Статистика въз основа на резултатите от миналия месец (от {0} до {1}) DocType: Contact Us Settings,City,Град +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Скриване на карти за всички потребители apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Активирайте Разрешаване на автоматично повторение за доктрип {0} в Персонализирайте Формата DocType: DocField,Perm Level,Ниво на достъп apps/frappe/frappe/www/confirm_workflow_action.html,View document,Преглед на документа @@ -3696,6 +3829,7 @@ DocType: Blog Category,Blogger,Списвач на блог DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Ако е активирана, промените в документа се проследяват и се показват в времевата линия" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1} DocType: Energy Point Log,Appreciation,признателност +DocType: Dashboard Chart,Number of Groups,Брой групи apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Вижте Списък DocType: Workflow,Don't Override Status,Не променяй статуса apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Дума за търсене @@ -3737,7 +3871,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-северозападна-1 DocType: Dropbox Settings,Limit Number of DB Backups,Ограничаване броя архивиране на DB DocType: Custom DocPerm,Level,Ниво -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Последни 30 дни DocType: Custom DocPerm,Report,Справка apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Сумата трябва да бъде по-голямо от 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Свързан е с QZ Tray! @@ -3754,6 +3887,7 @@ DocType: S3 Backup Settings,us-west-2,ни-запад-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Изберете Детска таблица apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Задейства първично действие apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Промяна +DocType: Social Login Key,User ID Property,User ID Property DocType: Email Domain,domain name,име на домейн DocType: Contact Email,Contact Email,Контакт Email DocType: Kanban Board Column,Order,Поръчка @@ -3776,7 +3910,7 @@ DocType: Contact,Last Name,Фамилия DocType: Event,Private,Частен apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Няма сигнали за днес DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Изпрати Email Print Прикачени като PDF (препоръчително) -DocType: Web Page,Left,Наляво +DocType: Onboarding Slide Field,Left,Наляво DocType: Event,All Day,Цял Ден apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Изглежда, че нещо не е наред с конфигурация за плащане на този сайт. Не е извършено плащането." DocType: GCalendar Settings,State,Състояние @@ -3808,7 +3942,6 @@ DocType: Workflow State,User,Потребител DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи заглавие в прозореца на браузъра като "Prefix - заглавие" DocType: Payment Gateway,Gateway Settings,Настройки на порта apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,текст на вида документ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Изпълнявайте тестове apps/frappe/frappe/handler.py,Logged Out,Излязохте apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Повече... DocType: System Settings,User can login using Email id or Mobile number,Потребителят може да влезе с имейл или мобилен номер @@ -3824,6 +3957,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,резюме DocType: Event,Event Participants,Участници в събитието DocType: Auto Repeat,Frequency,честота +DocType: Onboarding Slide,Slide Order,Слайд поръчка DocType: Custom Field,Insert After,Вмъкни след DocType: Event,Sync with Google Calendar,Синхронизирайте с Google Календар DocType: Access Log,Report Name,Справка Име @@ -3851,6 +3985,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0} apps/frappe/frappe/config/website.py,Content web page.,Съдържание уеб страница. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Добави нова роля +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетете уеб страницата +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ново задание DocType: Google Contacts,Last Sync On,Последно синхронизиране на DocType: Deleted Document,Deleted Document,Изтрити Документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ами сега! Нещо се обърка @@ -3861,7 +3997,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,пейзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client страна скрипт разширения в Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Записите за следващите доктове ще бъдат филтрирани -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Графикът е неактивен +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Графикът е неактивен DocType: Blog Settings,Blog Introduction,Блог - Въведение DocType: Global Search Settings,Search Priorities,Приоритети на търсенето DocType: Address,Office,Офис @@ -3871,12 +4007,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Връзка на диагр DocType: User,Email Settings,Email настройки apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Пусни тук DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ако е активиран, потребителят може да влезе от всеки IP адрес с помощта на Two Factor Auth, това може да бъде зададено и за всички потребители в System Settings" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Настройки на принтера ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Моля, въведете паролата си, за да продължите" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,мен apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} не е валидна Област apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Прилага се към всички видове документи -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Актуализация на енергийната точка +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Актуализация на енергийната точка +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Работете ежедневно само ако е неактивен за (дни) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Моля, изберете друг начин на плащане. PayPal не поддържа транзакции с валута "{0}"" DocType: Chat Message,Room Type,Тип стая DocType: Data Import Beta,Import Log Preview,Импортиране на преглед на дневника @@ -3885,6 +4021,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-кръг DocType: LDAP Settings,LDAP User Creation and Mapping,Създаване и картографиране на LDAP потребители apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Можете да намерите неща, като попита "намери оранжево в клиенти"" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Днешните събития apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,За съжаление! Потребителят трябва да има пълен достъп до собствения си рекорд. ,Usage Info,Информация за употребата apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Покажи клавишните комбинации @@ -3901,6 +4038,7 @@ DocType: DocField,Unique,Уникален apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} оценява се на {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Частичен успех DocType: Email Account,Service,Обслужване +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Потребител DocType: File,File Name,Име На Файл apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не намерихте {0} за {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3914,6 +4052,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Пълн DocType: GCalendar Settings,Enable,Активиране DocType: Google Maps Settings,Home Address,Начален адрес apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Можете да качите само до запълването 5000 записи с един замах. (Може да бъде по-малко в някои случаи) +DocType: Report,"output in the form of `data = [columns, result]`","изведете под формата на „данни = [колони, резултат]“" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Приложими типове документи apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Задайте правила за задачи на потребители. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостатъчно разрешение за {0} @@ -3929,7 +4068,6 @@ DocType: Communication,To and CC,До и Копие до DocType: SMS Settings,Static Parameters,Статични параметри DocType: Chat Message,Room,Стая apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},актуализиран до {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,"Фоновите задания не се изпълняват. Моля, свържете се с администратора" DocType: Portal Settings,Custom Menu Items,Персонализирани елементи на менюто apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Всички изображения, прикачени към уебсайт слайдшоу, трябва да бъдат обществени" DocType: Workflow State,chevron-right,Стрелка-надясно @@ -3944,11 +4082,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Избрани са стойности {0} DocType: DocType,Allow Auto Repeat,Разрешаване на автоматично повторение apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Няма стойности за показване +DocType: DocType,URL for documentation or help,URL адрес за документация или помощ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Шаблон за имейл apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Успешно актуализиран {0} запис. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Потребителят {0} няма достъп до доктрип чрез разрешение за роля за документ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Изисква се въвеждане на двете: потребителско име и парола +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Позволявам\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Моля, опреснете, за да получите най-новата документа." DocType: User,Security Settings,Настройки за сигурност apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Добави Колона @@ -3958,6 +4098,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Филтър Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},"Моля, намерете прикачен {0}: {1}" DocType: Web Page,Set Meta Tags,Задайте мета тагове +DocType: Email Account,Use SSL for Outgoing,Използвайте SSL за изходящи 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: S3 Backup Settings,Backup Limit,Грешка при архивиране DocType: Dashboard Chart,Line,линия @@ -3990,4 +4131,3 @@ DocType: DocField,Ignore User Permissions,Игнориране на потреб apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Запазено успешно apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Моля, посъветвайте се с администратора си, за да потвърдите регистрацията" DocType: Domain Settings,Active Domains,Активни домейни -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Покажи дневник diff --git a/frappe/translations/bn.csv b/frappe/translations/bn.csv index 601e09c777..06faf4dcb2 100644 --- a/frappe/translations/bn.csv +++ b/frappe/translations/bn.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,একটি পরিমাণ ক্ষেত্র নির্বাচন করুন. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,আমদানি ফাইল লোড হচ্ছে ... DocType: Assignment Rule,Last User,শেষ ব্যবহারকারী -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","একটি নতুন টাস্ক, {0}, {1} দ্বারা আপনার জন্য নির্দিষ্ট করা হয়েছে. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,সেশন ডিফল্ট সংরক্ষণ করা হয়েছে apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ফাইলটি পুনরায় লোড করুন DocType: Email Queue,Email Queue records.,ইমেল সারি রেকর্ড. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} বৃক্ DocType: User,User Emails,ব্যবহারকারীর ই-মেইল DocType: User,Username,ইউজারনেম apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,জিপ আমদানি করুন +DocType: Scheduled Job Type,Create Log,লগ তৈরি করুন apps/frappe/frappe/model/base_document.py,Value too big,মান অত্যন্ত বড় DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,চালান স্ক্রিপ্ট টেস্ট @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,মাসিক DocType: Address,Uttarakhand,উত্তরাখন্ডে DocType: Email Account,Enable Incoming,ইনকামিং সক্রিয় apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ঝুঁকি -DocType: Address,Email Address,ইমেল ঠিকানা +apps/frappe/frappe/www/login.py,Email Address,ইমেল ঠিকানা DocType: Workflow State,th-large,ম-বড় DocType: Communication,Unread Notification Sent,প্রেরিত অপঠিত বিজ্ঞপ্তি apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,রপ্তানি অনুমোদিত নয়. আপনি এক্সপোর্ট করতে {0} ভূমিকা প্রয়োজন. @@ -83,10 +83,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,প্রকাশিত ক্ষেত্র DocType: GCalendar Settings,GCalendar Settings,GCalendar সেটিংস DocType: Email Group,Email Group,ই-মেইল গ্রুপ +apps/frappe/frappe/__init__.py,Only for {},শুধুমাত্র {} এর জন্য DocType: Event,Pulled from Google Calendar,গুগল ক্যালেন্ডার থেকে টানা DocType: Note,Seen By,দ্বারা দেখা apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,একাধিক যোগ করুন -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,আপনি কিছু শক্তি পয়েন্ট অর্জন করেছেন apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,একটি বৈধ ব্যবহারকারী চিত্র নয় DocType: Energy Point Log,Reverted,প্রত্যাবর্তিত DocType: Success Action,First Success Message,প্রথম সফল বার্তা @@ -94,6 +94,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,এমন ন apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ভুল মান: {0} হতে হবে {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","পরিবর্তন ক্ষেত্রের বৈশিষ্ট্য (আড়াল, কেবলমাত্র অনুমতি ইত্যাদি)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,তারিফ করা +DocType: Notification Settings,Document Share,দলিল ভাগ DocType: Workflow State,lock,তালা apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,আমাদের সাথে যোগাযোগ করুন পৃষ্ঠা জন্য সেটিংস. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,অ্যাডমিনিস্ট্রেটর লগ ইন @@ -107,6 +108,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","যদি সক্ষম করা থাকে, দস্তাবেজটি হিসাবে চিহ্নিত হিসাবে চিহ্নিত করা হবে, কোনও ব্যবহারকারী এটি প্রথমবার খুলবে" DocType: Auto Repeat,Repeat on Day,দিন পুনরাবৃত্তি DocType: DocField,Color,রঙ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,সবগুলো পঠিত বলে সনাক্ত কর DocType: Data Migration Run,Log,লগিন DocType: Workflow State,indent-right,ইন্ডেন্ট-ডান DocType: Has Role,Has Role,ভূমিকা আছে @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ট্রেসব্যাক প্রদর্শন করুন DocType: DocType,Default Print Format,পূর্বনির্ধারিত মুদ্রণ বিন্যাস DocType: Workflow State,Tags,ট্যাগ্স +DocType: Onboarding Slide,Slide Type,স্লাইড প্রকার apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,কোনটি: কর্মপ্রবাহ শেষ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","অ অনন্য বিদ্যমান মান আছে {0} ক্ষেত্র, {1} হিসাবে অনন্য সেট করা যাবে না" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,নথি ধরনের @@ -134,7 +137,6 @@ DocType: Language,Guest,অতিথি DocType: DocType,Title Field,শিরোনাম মাঠ DocType: Error Log,Error Log,ত্রুটি লগ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,অবৈধ ইউআরএল -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,শেষ 7 দিন apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" শুধুমাত্র সামান্য কঠিন "ABC" চেয়ে অনুমান করা হয় মত পুনরাবৃত্তি DocType: Notification,Channel,চ্যানেল apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","আপনি এই অননুমোদিত যদি মনে করেন, অ্যাডমিনিস্ট্রেটর পাসওয়ার্ড পরিবর্তন করুন." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,মক্কেল apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,কলাম নির্বাচন করুন apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,আপনি এটা লোড হওয়ার পরে এই ফর্ম পরিবর্তন করা হয়েছে DocType: Address,Himachal Pradesh,হিমাচল প্রদেশ +DocType: Notification Log,Notification Log,বিজ্ঞপ্তি লগ DocType: System Settings,"If not set, the currency precision will depend on number format","যদি সেট না করা, মুদ্রা স্পষ্টতা নম্বর বিন্যাস উপর নির্ভর করবে" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,অসাধারণ বার খুলুন apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","মনে হচ্ছে যে সার্ভারের স্ট্রাপ কনফিগারেশনের সাথে একটি সমস্যা আছে ব্যর্থতার ক্ষেত্রে, এই পরিমাণটি আপনার অ্যাকাউন্টে ফেরত পাঠানো হবে।" @@ -162,7 +165,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,পাঠান DocType: Workflow Action Master,Workflow Action Name,কর্মপ্রবাহ কর্ম নাম apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE মার্জ করা যাবে না -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,না একটি জিপ ফাইল DocType: Global Search DocType,Global Search DocType,গ্লোবাল অনুসন্ধান ডকটাইপ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -175,7 +178,9 @@ DocType: Newsletter,Email Sent?,ইমেইল পাঠানো? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,টগল করুন চার্ট apps/frappe/frappe/desk/form/save.py,Did not cancel,বাতিল করা হয়নি DocType: Social Login Key,Client Information,ক্লায়েন্ট তথ্য +DocType: Energy Point Rule,Apply this rule only once per document,এই নীতিটি প্রতি নথি প্রতি একবার প্রয়োগ করুন DocType: Workflow State,plus,যোগ +DocType: DocField,Read Only Depends On,পঠন কেবল নির্ভর করে apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,গেস্ট অথবা অ্যাডমিনিস্ট্রেটর হিসেবে লগ ইন DocType: Email Account,UNSEEN,অদৃশ্য apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,নথি ব্যবস্থাপক @@ -199,9 +204,11 @@ DocType: Communication,BCC,বিসিসি DocType: Unhandled Email,Reason,কারণ 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,কোন কার্যকলাপ নেই +DocType: Server Script,Script Manager,স্ক্রিপ্ট ম্যানেজার +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,কোন কার্যকলাপ নেই apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,তৃতীয় পক্ষের অ্যাপস apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,সিস্টেম ম্যানেজার হয়ে যাবে প্রথম ব্যবহারকারী (আপনি পরে তা পরিবর্তন করতে পারবেন). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,আজকের কোন ইভেন্ট নেই apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,আপনি নিজেকে পর্যালোচনা পয়েন্ট দিতে পারবেন না apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,নির্বাচিত ডক ইভেন্টের জন্য ডক টাইপ সাবমিট করা আবশ্যক DocType: Workflow State,circle-arrow-up,বৃত্ত-তীর-আপ @@ -249,6 +256,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},আপডেট হচ্ছে {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,নিষ্ক্রিয় প্রতিবেদন DocType: Translation,Contributed Translation Doctype Name,অবদানযুক্ত অনুবাদ ডক্টাইপের নাম +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> স্বনির্ধারিত ফর্ম DocType: PayPal Settings,Redirect To,পুনর্নির্দেশ DocType: Data Migration Mapping,Pull,টান DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},জাভাস্ক্রিপ্ট বিন্যাস: frappe.query_reports ['REPORTNAME'] = {} @@ -263,6 +271,7 @@ DocType: DocShare,Internal record of document shares,ডকুমেন্ট DocType: Energy Point Settings,Review Levels,পর্যালোচনা স্তর DocType: Workflow State,Comment,মন্তব্য DocType: Data Migration Plan,Postprocess Method,পোস্টপ্রসেস পদ্ধতি +DocType: DocType Action,Action Type,ক্রিয়া প্রকার apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ছবি তোল DocType: Assignment Rule,Round Robin,রাউন্ড রবিন apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","আপনি তাদের সংশোধনের, তারপর তাদের বাতিল ও জমা নথি পরিবর্তন করতে পারেন." @@ -276,6 +285,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,সংরক্ষণ করুন DocType: Comment,Seen,দেখা apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,অধিক বিবরণের দেখাও +DocType: Server Script,Before Submit,জমা দেওয়ার আগে DocType: System Settings,Run scheduled jobs only if checked,চেক যদি শুধুমাত্র নির্ধারিত কাজ চালান apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,শুধুমাত্র যদি অধ্যায় শিরোনামের সক্রিয় করা হয় প্রদর্শন করা হবে apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,সংরক্ষাণাগার @@ -288,10 +298,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ড্রপবক্স অ্য apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,কাস্টম স্ক্রিপ্টের add_fetch কনফিগারেশনে ভুল ক্ষেত্রের নাম {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,গুগল পরিচিতিগুলি নির্বাচন করুন যার সাথে যোগাযোগের সিঙ্ক করা উচিত। DocType: Web Page,Main Section (HTML),প্রধান বিভাগ (এইচটিএমএল) +DocType: Scheduled Job Type,Annual,বার্ষিক DocType: Workflow State,headphones,হেডফোন apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,পাসওয়ার্ড প্রয়োজন বা প্রতীক্ষমাণ পাসওয়ার্ড নির্বাচন করা হয় DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,যেমন replies@yourcomany.com. সব জবাব এই ইনবক্সে আসা হবে. DocType: Slack Webhook URL,Slack Webhook URL,স্ল্যাক ওয়েহুক ইউআরএল +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",উইজার্ডে স্লাইডের ক্রম নির্ধারণ করে। স্লাইডটি প্রদর্শিত না হলে অগ্রাধিকার 0 তে সেট করা উচিত। DocType: Data Migration Run,Current Mapping,বর্তমান ম্যাপিং apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,বৈধ ইমেইল এবং নামের প্রয়োজন apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,সমস্ত সংযুক্তি ব্যক্তিগত করুন @@ -314,6 +326,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,স্থানান্তরণ বিধি apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,পূর্বরূপে কেবল প্রথম {0} সারি দেখানো হচ্ছে apps/frappe/frappe/core/doctype/report/report.js,Example:,উদাহরণ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,বিধিনিষেধ DocType: Workflow,Defines workflow states and rules for a document.,একটি নথি জন্য কর্মপ্রবাহ যুক্তরাষ্ট্র ও নিয়ম নির্ধারণ করা হয়. DocType: Workflow State,Filter,ফিল্টার apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},আরও তথ্যের জন্য ত্রুটি লগ চেক করুন: {0} @@ -325,6 +338,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,কাজ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} লগ আউট: {1} DocType: Address,West Bengal,পশ্চিমবঙ্গ +DocType: Onboarding Slide,Information,তথ্য apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: বরাদ্দ Submittable না হলে জমা সেট করা যায় না DocType: Transaction Log,Row Index,সারি সূচক DocType: Social Login Key,Facebook,ফেসবুক @@ -342,7 +356,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,দ্ব DocType: Web Form,Button Help,বোতাম সাহায্য DocType: Kanban Board Column,purple,রক্তবর্ণ DocType: About Us Settings,Team Members,দলের সদস্যরা +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,নিষ্ক্রিয় সাইটগুলির জন্য দিনে একবার নির্ধারিত কাজগুলি চালাবে। ডিফল্ট 4 দিন সেট করা থাকলে। DocType: Assignment Rule,System Manager,সিস্টেম ম্যানেজার +DocType: Scheduled Job Log,Scheduled Job,তফসিলি কাজ DocType: Custom DocPerm,Permissions,অনুমতি apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,অভ্যন্তরীণ ইন্টিগ্রেশন জন্য স্ল্যাক Webhooks DocType: Dropbox Settings,Allow Dropbox Access,ড্রপবক্স ব্যবহারের অনুমতি @@ -395,6 +411,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ব DocType: Email Flag Queue,Email Flag Queue,ইমেল পতাকা সারি DocType: Access Log,Columns / Fields,কলাম / ক্ষেত্রসমূহ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,মুদ্রণ ফরম্যাটের জন্য স্টাইলশীট +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,ড্যাশবোর্ড চার্ট তৈরি করতে সমষ্টিগত ফাংশন ক্ষেত্রের প্রয়োজন apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,খোলা চিহ্নিত করা যাবে না {0}. অন্য কিছু করার চেষ্টা করুন. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,আপনার তথ্য জমা দেওয়া হয়েছে apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} ব্যবহারকারী মোছা যাবে না @@ -410,7 +427,7 @@ DocType: Property Setter,Field Name,ক্ষেত্র নাম DocType: Assignment Rule,Assign To Users,ব্যবহারকারীদের বরাদ্দ করুন apps/frappe/frappe/public/js/frappe/utils/utils.js,or,বা apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,মডিউল নাম ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,চালিয়ে +DocType: Onboarding Slide,Continue,চালিয়ে apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,গুগল ইন্টিগ্রেশন অক্ষম। DocType: Custom Field,Fieldname,ক্ষেত্র নাম DocType: Workflow State,certificate,শংসাপত্র @@ -423,12 +440,14 @@ DocType: Energy Point Log,Review,পর্যালোচনা DocType: User,Restrict IP,আইপি সীমাবদ্ধ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ড্যাশবোর্ড apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,এই সময়ে ইমেইল পাঠাতে অক্ষম +DocType: Notification Log,Email Content,ইমেল সামগ্রী apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,অনুসন্ধান বা কমান্ডটি টাইপ করুন DocType: Activity Log,Timeline Name,সময়রেখা নাম apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,শুধুমাত্র একটি {0} প্রাথমিক হিসাবে সেট করা যায়। DocType: Email Account,e.g. smtp.gmail.com,যেমন smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,একটি নতুন নিয়ম যোগ DocType: Contact,Sales Master Manager,সেলস ম্যানেজার মাস্টার +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,আপনার অ্যাপ্লিকেশনটি কাজ করার জন্য আপনাকে জাভাস্ক্রিপ্ট সক্ষম করতে হবে। DocType: User Permission,For Value,মূল্য জন্য DocType: Event,Google Calendar ID,Google ক্যালেন্ডার আইডি apps/frappe/frappe/www/complete_signup.html,One Last Step,গত এক ধাপ @@ -443,6 +462,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,এলডিএপি মিডল apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} এর {0} আমদানি করা হচ্ছে DocType: GCalendar Account,Allow GCalendar Access,GCalendar অ্যাক্সেসের অনুমতি দিন apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} একটি বাধ্যতামূলক ক্ষেত্র +DocType: DocType,Documentation Link,ডকুমেন্টেশন লিঙ্ক apps/frappe/frappe/templates/includes/login/login.js,Login token required,লগইন টোকেন প্রয়োজন apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,মাসিক র‌্যাঙ্ক: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,একাধিক তালিকা আইটেম নির্বাচন করুন @@ -464,6 +484,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ফাইল URL DocType: Version,Table HTML,ছক এইচটিএমএল apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,গ্রাহক +DocType: Notification Log,Energy Point,এনার্জি পয়েন্ট apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,আজকের আপকামিং ইভেন্টস DocType: Google Calendar,Push to Google Calendar,গুগল ক্যালেন্ডারে পুশ করুন DocType: Notification Recipient,Email By Document Field,ডকুমেন্ট ক্ষেত্র দ্বারা ইমেইল @@ -479,7 +500,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,দূরে DocType: Currency,Fraction Units,ভগ্নাংশ ইউনিট apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} থেকে {1} থেকে {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,সম্পন্ন হিসাবে চিহ্নিত করুন DocType: Chat Message,Type,শ্রেণী DocType: Google Settings,OAuth Client ID,OAuth ক্লায়েন্ট আইডি DocType: Auto Repeat,Subject,বিষয় @@ -507,6 +527,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,যাচাইয়ের জন্য আপনার ইমেইল চেক করুন apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না DocType: Communication,Bounced,ফেরত +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,এর DocType: Deleted Document,Deleted Name,মোছা নাম apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,সিস্টেম এবং ওয়েবসাইট ব্যবহারকারীদের DocType: Workflow Document State,Doc Status,ডক স্থিতি @@ -517,6 +538,7 @@ DocType: Language,Language Code,ভাষার কোড DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,দ্রষ্টব্য: ব্যর্থ ব্যাকআপের জন্য ডিফল্ট ইমেলগুলি পাঠানো হয়। apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,ফিল্টার যোগ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},এসএমএস নিম্নলিখিত সংখ্যা পাঠানো: {0} +DocType: Notification Settings,Assignments,অ্যাসাইমেন্ট apps/frappe/frappe/utils/data.py,{0} and {1},{0} এবং {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,একটি কথোপকথন শুরু করুন DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",সর্বদা মুদ্রণ খসড়া নথি জন্য শিরোলেখ "খসড়া" যোগ @@ -525,6 +547,7 @@ DocType: Data Migration Run,Current Mapping Start,বর্তমান ম্ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ইমেইল স্প্যাম হিসাবে চিহ্নিত হয়েছে DocType: Comment,Website Manager,ওয়েবসাইট ম্যানেজার apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ফাইল আপলোড সংযোগ বিচ্ছিন্ন। অনুগ্রহপূর্বক আবার চেষ্টা করুন. +DocType: Data Import Beta,Show Failed Logs,ব্যর্থ লগগুলি প্রদর্শন করুন apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,অনুবাদ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,আপনার কাছে নির্বাচিত খসড়া বা বাতিল কাগজপত্র apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ডকুমেন্ট {0} রাষ্ট্র {1} দ্বারা {2} অনুসারে নির্ধারণ করা হয়েছে @@ -532,7 +555,9 @@ apps/frappe/frappe/model/document.py,Document Queued,ডকুমেন্ট- DocType: GSuite Templates,Destination ID,গন্তব্যস্থান আইডি DocType: Desktop Icon,List,তালিকা DocType: Activity Log,Link Name,লিংক নাম +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,আপনি স্বর্গ DocType: System Settings,mm/dd/yyyy,মিমি / ডিডি / YYYY +DocType: Onboarding Slide,Onboarding Slide,স্লাইড অনবোর্ডিং apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,অবৈধ পাসওয়ার্ড: DocType: Print Settings,Send document web view link in email,পাঠান ইমেল নথি ওয়েব ভিউতে লিংক apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,পূর্ববর্তী @@ -593,6 +618,7 @@ DocType: Kanban Board Column,darkgrey,গাঢ় ধূসর apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},সফল: {0} থেকে {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ডেমো ব্যবহারকারী বিশদ বিবরণ পরিবর্তন করা যাবে না। https://erpnext.com একটি নতুন অ্যাকাউন্টের জন্য সাইনআপ করুন apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ড্রপ +DocType: Dashboard Chart,Aggregate Function Based On,সমষ্টিগত ফাংশন ভিত্তিক apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,সমস্ত পরিবর্তন করতে পারবেন এই ডুপ্লিকেট অনুগ্রহ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,সংরক্ষণের জন্য Enter চাপুন apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,পিডিএফ প্রজন্মের কারণ ভাঙা ইমেজ লিঙ্ক ব্যর্থ @@ -606,7 +632,9 @@ DocType: Notification,Days Before,দিন আগে apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,প্রতিদিনের ইভেন্টগুলি একই দিনে সমাপ্ত হওয়া উচিত। apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,সম্পাদনা করুন ... DocType: Workflow State,volume-down,শব্দ কম +DocType: Onboarding Slide,Help Links,সহায়তা লিঙ্ক apps/frappe/frappe/auth.py,Access not allowed from this IP Address,এই আইপি ঠিকানা থেকে অ্যাক্সেসের অনুমতি নেই +DocType: Notification Settings,Enable Email Notifications,ইমেল বিজ্ঞপ্তি সক্ষম করুন apps/frappe/frappe/desk/reportview.py,No Tags,কোন ট্যাগ DocType: Email Account,Send Notification to,বিজ্ঞপ্তি পাঠাতে DocType: DocField,Collapsible,বন্ধ হইতে সক্ষম @@ -635,6 +663,7 @@ DocType: Google Drive,Last Backup On,সর্বশেষ ব্যাকআপ DocType: Customize Form Field,Customize Form Field,ফরম ক্ষেত্র কাস্টমাইজ DocType: Energy Point Rule,For Document Event,নথি ইভেন্টের জন্য DocType: Website Settings,Chat Room Name,রুম নাম চ্যাট করুন +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,অপরিবর্তিত DocType: OAuth Client,Grant Type,গ্রান্ট প্রকার apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,কোনো ব্যবহারকারীর দ্বারা পাঠযোগ্য যা দস্তাবেজ চেক DocType: Deleted Document,Hub Sync ID,হাব সিঙ্ক আইডি @@ -642,6 +671,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ও DocType: Auto Repeat,Quarterly,ত্রৈমাসিক apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","ইমেল ডোমেন এই অ্যাকাউন্টের জন্য কনফিগার করা না থাকে, এক তৈরি করতে চান?" DocType: User,Reset Password Key,পাসওয়ার্ড রিসেট করুন কী +DocType: Dashboard Chart,All Time,সব সময় apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} জন্য অবৈধ দস্তাবেজ স্থিতি DocType: Email Account,Enable Auto Reply,অটো উত্তর সক্রিয় apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,দেখা যায় না @@ -654,6 +684,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ব DocType: Email Account,Notify if unreplied,Unreplied যদি অবহিত apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR কোড স্ক্যান করুন এবং প্রদর্শিত কোডটি প্রদর্শিত হবে। apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,গ্রেডিয়েন্টগুলি সক্ষম করুন +DocType: Scheduled Job Type,Hourly Long,আওয়ারলি লম্বা DocType: System Settings,Minimum Password Score,নূন্যতম পাসওয়ার্ড স্কোর DocType: DocType,Fields,ক্ষেত্রসমূহ DocType: System Settings,Your organization name and address for the email footer.,ইমেল পাদচরণ জন্য আপনার প্রতিষ্ঠানের নাম ও ঠিকানা. @@ -661,11 +692,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,মূল apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 ব্যাকআপ সম্পূর্ণ! apps/frappe/frappe/config/desktop.py,Developer,ডেভেলপার apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,নির্মিত +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},এটি সক্ষম করতে নিম্নলিখিত লিঙ্কে নির্দেশাবলী অনুসরণ করুন: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} সারিতে {1} উভয় URL এবং সন্তানের আইটেম থাকতে পারে না apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},নিম্নলিখিত টেবিলগুলির জন্য কমপক্ষে একটি সারি থাকা উচিত: {0} DocType: Print Format,Default Print Language,ডিফল্ট মুদ্রণ ভাষা apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,পূর্বপুরুষদের apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} রুট মোছা যাবে না +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,কোনও ব্যর্থ লগ নেই apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,এখনো কোন মন্তব্য নেই apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",এসএমএস সেটিংস এর মাধ্যমে এটি একটি প্রমাণীকরণ পদ্ধতি হিসাবে সেট করার আগে এসএমএস সেট আপ করুন apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,প্রয়োজন উভয় DOCTYPE এবং নাম @@ -688,6 +721,7 @@ DocType: Website Settings,Footer Items,পাদলেখ চলছে apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,মেনু DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,দৈনিক +DocType: Onboarding Slide,Max Count,সর্বোচ্চ গণনা apps/frappe/frappe/config/users_and_permissions.py,User Roles,ব্যবহারকারী ভূমিকা DocType: Property Setter,Property Setter overrides a standard DocType or Field property,প্রপার্টি সেটার একটি স্ট্যান্ডার্ড DOCTYPE বা ক্ষেত্র সম্পত্তি অগ্রাহ্য করা apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,আপডেট করতে পারবেন না: ভুল / মেয়াদউত্তীর্ণ লিংক. @@ -706,6 +740,7 @@ DocType: Footer Item,"target = ""_blank""",টার্গেট = "_blank& DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,নিমন্ত্রণকর্তা DocType: Data Import Beta,Import File,ফাইল আমদানি +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,টেমপ্লেট ত্রুটি apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,কলাম {0} ইতিমধ্যে বিদ্যমান. DocType: ToDo,High,উচ্চ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,নতুন ঘটনা @@ -721,6 +756,7 @@ DocType: Web Form Field,Show in filter,ফিল্টার দেখান DocType: Address,Daman and Diu,দমন ও দিউ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,প্রকল্প DocType: Address,Personal,ব্যক্তিগত +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,কাঁচা মুদ্রণ সেটিংস ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,বিশদের জন্য https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region দেখুন। apps/frappe/frappe/config/settings.py,Bulk Rename,বাল্ক পুনঃনামকরণ DocType: Email Queue,Show as cc,সিসি হিসেবে দেখান @@ -730,6 +766,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ভিডিওট DocType: Contact Us Settings,Introductory information for the Contact Us Page,আমাদের সাথে যোগাযোগ করুন পৃষ্ঠা জন্য পরিচায়ক তথ্য DocType: Print Style,CSS,সিএসএস DocType: Workflow State,thumbs-down,হতাশা +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,নথি বাতিল হচ্ছে DocType: User,Send Notifications for Email threads,ইমেল থ্রেডের জন্য বিজ্ঞপ্তি প্রেরণ করুন apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,অধ্যাপক apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,না বিকাশকারী মোডে @@ -737,7 +774,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ফাই DocType: DocField,In Global Search,বৈশ্বিক অনুসন্ধান DocType: System Settings,Brute Force Security,ব্রাউন ফোর্স নিরাপত্তা DocType: Workflow State,indent-left,ইন্ডেন্ট-বাম -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} বছর আগে apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,এটা এই ফাইলটি মোছার জন্য ঝুঁকিপূর্ণ: {0}. আপনার সিস্টেম ম্যানেজার সাথে যোগাযোগ করুন. DocType: Currency,Currency Name,মুদ্রার নাম apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,কোন ইমেল @@ -750,10 +786,12 @@ DocType: Energy Point Rule,User Field,ব্যবহারকারী ক্ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,মুছুন মুছুন apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} জন্য ইতিমধ্যে আন-সাবস্ক্রাইব {1} {2} +DocType: Scheduled Job Type,Stopped,বন্ধ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,অপসারণ করা হয়নি apps/frappe/frappe/desk/like.py,Liked,পছন্দ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,এখন পাঠান apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","স্ট্যান্ডার্ড DOCTYPE ডিফল্ট মুদ্রণ বিন্যাসে থাকতে পারে না, কাস্টমাইজ ফর্মটি ব্যবহার" +DocType: Server Script,Allow Guest,অতিথিকে অনুমতি দিন DocType: Report,Query,প্রশ্ন DocType: Customize Form,Sort Order,সজ্জাক্রম apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় @@ -775,10 +813,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,দুটি ফ্যাক্টর প্রমাণীকরণ পদ্ধতি apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,প্রথমে নাম সেট করুন এবং রেকর্ডটি সংরক্ষণ করুন। apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 রেকর্ড +DocType: DocType Link,Link Fieldname,লিঙ্ক ক্ষেত্রের নাম apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},এদের সাথে শেয়ার {0} apps/frappe/frappe/email/queue.py,Unsubscribe,সদস্যতা ত্যাগ করুন DocType: View Log,Reference Name,রেফারেন্স নাম apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ব্যবহারকারী পরিবর্তন +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,প্রথম apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,আপডেট অনুবাদ DocType: Error Snapshot,Exception,ব্যতিক্রম DocType: Email Account,Use IMAP,ব্যবহার আইম্যাপ @@ -792,6 +832,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,কর্মপ্রবাহ মধ্যে রাষ্ট্র রূপান্তর সংজ্ঞা বিধি. DocType: File,Folder,ফোল্ডার DocType: Website Route Meta,Website Route Meta,ওয়েবসাইট রুট মেটা +DocType: Onboarding Slide Field,Onboarding Slide Field,স্লাইড ফিল্ড অনবোর্ডিং DocType: DocField,Index,সূচক DocType: Email Group,Newsletter Manager,নিউজলেটার ম্যানেজার apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,বিকল্প 1 @@ -818,7 +859,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ল apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,চার্ট কনফিগার করুন DocType: User,Last IP,সর্বশেষ আইপি apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,আপনার ইমেইল একটি বিষয় যোগ করুন -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,একটি নতুন ডকুমেন্ট {0} আপনার সাথে ভাগ করা হয়েছে {1}। DocType: Data Migration Connector,Data Migration Connector,ডেটা মাইগ্রেশন সংযোগকারী apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} উল্টানো {1} DocType: Email Account,Track Email Status,ট্র্যাক ইমেইল স্থিতি @@ -874,6 +914,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,অনু DocType: Workflow State,text-width,টেক্সট-প্রস্থ apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,এই রেকর্ডের জন্য এটাচমেন্টের সর্বাধিক সীমায় পৌঁছেছে. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ফাইলের নাম বা এক্সটেনশন দ্বারা অনুসন্ধান করুন +DocType: Onboarding Slide,Slide Title,স্লাইড শিরোনাম DocType: Notification,View Properties (via Customize Form),(কাস্টমাইজ ফরম মাধ্যমে) বৈশিষ্ট্য দেখুন apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,এটি নির্বাচন করতে একটি ফাইল ক্লিক করুন। DocType: Note Seen By,Note Seen By,দ্বারা দেখা নোট @@ -900,13 +941,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,ইউআরএল শেয়ার করুন DocType: System Settings,Allow Consecutive Login Attempts ,অনুলিপি লগইন প্রচেষ্টা অনুমোদন apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,পেমেন্ট প্রক্রিয়ার সময় একটি ত্রুটি ঘটেছে। আমাদের সাথে যোগাযোগ করুন. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,স্লাইডের ধরণটি যদি তৈরি বা সেটিংস হয় তবে স্লাইডটি সম্পন্ন হওয়ার পরে কার্যকর হওয়া আবশ্যক {ref_doctype} .py ফাইলে একটি 'create_onboarding_docs' পদ্ধতি থাকা উচিত। apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} দিন আগে DocType: Email Account,Awaiting Password,প্রতীক্ষমাণ পাসওয়ার্ড DocType: Address,Address Line 1,ঠিকানা লাইন 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,না DocType: Contact,Company Name,কোমপানির নাম DocType: Custom DocPerm,Role,ভূমিকা -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,সেটিংস... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,আপনার ব্রাউজারে apps/frappe/frappe/utils/data.py,Cent,সেন্ট ,Recorder,রেকর্ডার @@ -965,6 +1006,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","প্রাপক দ্বারা যদি আপনার ইমেলটি খোলা হয় তবে ট্র্যাক করুন
দ্রষ্টব্য: আপনি একাধিক প্রাপক পাঠিয়ে থাকেন, এমনকি যদি 1 প্রাপক ইমেলটি পড়ে থাকেন তবে এটি "খোলা" হিসাবে বিবেচিত হবে" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,অনুপস্থিত মানের প্রয়োজনীয় apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,গুগল পরিচিতি অ্যাক্সেসের অনুমতি দিন +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,বিধিনিষেধযুক্ত DocType: Data Migration Connector,Frappe,ফ্র্যাপে apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,অপঠিত হিসাবে চিহ্নিত DocType: Activity Log,Operation,অপারেশন @@ -1017,6 +1059,7 @@ DocType: Web Form,Allow Print,প্রিন্ট করার অনুমত DocType: Communication,Clicked,ক্লিক apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,অনুসরণ apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},কোন অনুমতি '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে ডিফল্ট ইমেল অ্যাকাউন্ট সেটআপ করুন apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,পাঠাতে তফসিলি DocType: DocType,Track Seen,ট্র্যাক Seen DocType: Dropbox Settings,File Backup,ফাইল ব্যাকআপ @@ -1025,12 +1068,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,কোন {0} apps/frappe/frappe/config/customization.py,Add custom forms.,নিজস্ব ফর্ম যুক্ত করো. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} মধ্যে {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,এই দলিল পেশ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,সেটআপ> ব্যবহারকারীর অনুমতি apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,সিস্টেম অনেক পূর্ব নির্ধারিত ভূমিকা প্রদান করে. আপনি তীক্ষ্ণ স্বরূপ অনুমতি সেট করতে নতুন ভূমিকা যোগ করতে পারেন. DocType: Communication,CC,সিসি DocType: Country,Geo,জিও DocType: Data Migration Run,Trigger Name,ট্রিগার নাম -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ডোমেইন +DocType: Onboarding Slide,Domains,ডোমেইন DocType: Blog Category,Blog Category,ব্লগ বিভাগ apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,নিম্নলিখিত শর্ত ব্যর্থ কারণ ম্যাপ করা যাবে না: DocType: Role Permission for Page and Report,Roles HTML,ভূমিকা এইচটিএমএল @@ -1070,7 +1112,6 @@ DocType: Assignment Rule Day,Saturday,শনিবার DocType: User,Represents a User in the system.,সিস্টেমের মধ্যে একটি ব্যবহারকারীর তথ্য উপস্থিত. DocType: List View Setting,Disable Auto Refresh,অটো রিফ্রেশ অক্ষম করুন DocType: Comment,Label,লেবেল -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","টাস্ক {0}, আপনি {1}, বন্ধ করা হয়েছে নির্ধারিত হয়." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,এই উইন্ডোটি বন্ধ করুন দয়া করে DocType: Print Format,Print Format Type,মুদ্রণ বিন্যাস ধরন DocType: Newsletter,A Lead with this Email Address should exist,এই ইমেইল ঠিকানা দিয়ে একটি লিড এখোনো @@ -1087,6 +1128,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,বহির্গা apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,একটি চয়ন করুন DocType: Data Export,Filter List,ফিল্টার তালিকা DocType: Data Export,Excel,সীমা অতিক্রম করা +DocType: System Settings,HH:mm,এইচ: মিমি DocType: Email Account,Auto Reply Message,স্বয়ংক্রিয় উত্তর বার্তা DocType: Data Migration Mapping,Condition,শর্ত apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ঘণ্টা আগে @@ -1105,12 +1147,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,নলেজ বেস অবদানকারী DocType: Communication,Sent Read Receipt,Sent পঠিত রসিদ DocType: Email Queue,Unsubscribe Method,আন-সাবস্ক্রাইব পদ্ধতি +DocType: Onboarding Slide,Add More Button,আরও বোতাম যুক্ত করুন DocType: GSuite Templates,Related DocType,সংশ্লিষ্ট DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,কন্টেন্ট যোগ করতে সম্পাদন apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ভাষা নির্বাচন apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,কার্ড বিবরণ apps/frappe/frappe/__init__.py,No permission for {0},জন্য কোন অনুমতি {0} DocType: DocType,Advanced,অগ্রসর +DocType: Onboarding Slide,Slide Image Source,স্লাইড চিত্র উত্স apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API কী মনে হয় বা API সিক্রেট ভুল হয় !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},রেফারেন্স: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,শ্রীমতী @@ -1127,6 +1171,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,গুর DocType: DocType,User Cannot Create,ইউজার তৈরি করতে পারবেন না apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,সাফল্যের সাথে সম্পন্ন হয়েছে apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ড্রপবক্স এক্সেস অনুমোদিত! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,আপনি কি নিশ্চিত যে {0} কে {1} এর সাথে একীভূত করতে চান? DocType: Customize Form,Enter Form Type,ফরম প্রকার লিখুন DocType: Google Drive,Authorize Google Drive Access,গুগল ড্রাইভ অ্যাক্সেস অনুমোদন apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,অনুপস্থিত পরামিতি Kanban বোর্ডের নাম @@ -1136,7 +1181,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE সক্ষম হবেন. সতর্ক হোন!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","মুদ্রণ, ইমেইল জন্য কাস্টমাইজড ফর্ম্যাট" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} এর যোগফল -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,নতুন সংস্করণে আপডেট করা হয়েছে DocType: Custom Field,Depends On,নির্ভর করে DocType: Kanban Board Column,Green,সবুজ DocType: Custom DocPerm,Additional Permissions,অতিরিক্ত অনুমতির @@ -1163,6 +1207,7 @@ DocType: Address,Is Your Company Address,আপনার কোম্পান DocType: Energy Point Log,Social,সামাজিক apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,সম্পাদনা সারি DocType: Workflow Action Master,Workflow Action Master,কর্মপ্রবাহ কর্ম মাস্টার +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,সব মুছে ফেলুন DocType: Custom Field,Field Type,ক্ষেত্র প্রকার apps/frappe/frappe/utils/data.py,only.,কেবল. DocType: Route History,Route History,পথ ইতিহাস @@ -1197,11 +1242,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,পাসওয়ার্ DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,আইডি apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,সার্ভার সমস্যা +DocType: Server Script,After Delete,মুছুন পরে apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,সমস্ত অতীত রিপোর্ট দেখুন। apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,লগইন আইডি আবশ্যক DocType: Website Slideshow,Website Slideshow,ওয়েবসাইট স্লাইড apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,কোন ডেটা DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","ওয়েবসাইট হোম পেজে যে লিংক. স্ট্যান্ডার্ড লিংক (সূচক, লগইন, পণ্য, ব্লগ, সম্পর্কে, যোগাযোগ)" +DocType: Server Script,After Submit,জমা দেওয়ার পরে apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ইমেইল অ্যাকাউন্ট {0} থেকে ইমেইল প্রাপ্তির যখন প্রমাণীকরণ ব্যর্থ হয়েছে. সার্ভার থেকে বার্তা: {1} DocType: User,Banner Image,ব্যানার চিত্র DocType: Custom Field,Custom Field,কাস্টম ক্ষেত্র @@ -1242,15 +1289,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","ব্যবহারকারী কোনো ভূমিকা পরীক্ষিত থাকে, তাহলে ব্যবহারকারী একটি "সিস্টেম ব্যবহারকারী" হয়ে. "সিস্টেম ব্যবহারকারী" ডেস্কটপ অ্যাক্সেস রয়েছে" DocType: System Settings,Date and Number Format,তারিখ এবং সংখ্যার বিন্যাস apps/frappe/frappe/model/document.py,one of,অন্যতম -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> স্বনির্ধারিত ফর্ম apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,এক মুহূর্ত চেক করা হচ্ছে apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,দেখান ট্যাগ DocType: DocField,HTML Editor,এইচটিএমএল সম্পাদক 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,পদক্ষেপ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,সেটআপ> ব্যবহারকারী +DocType: DocType,Actions,পদক্ষেপ DocType: Workflow State,align-justify,সারিবদ্ধ-ন্যায্যতা DocType: User,Middle Name (Optional),মধ্য নাম (ঐচ্ছিক) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,অননুমোদিত @@ -1264,6 +1309,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,কোন DocType: System Settings,Security,নিরাপত্তা apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} প্রাপকদের পাঠাতে তফসিলি apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,কাটা +DocType: Server Script,After Save,সংরক্ষণের পরে apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},থেকে নামকরণ করা {0} থেকে {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} এর {0} (বাচ্চাদের সাথে {2} সারি) DocType: Currency,**Currency** Master,** ** মুদ্রা মাস্টার @@ -1289,15 +1335,18 @@ DocType: Prepared Report,Filter Values,ফিল্টার মান DocType: Communication,User Tags,ব্যবহারকারী ট্যাগ্স DocType: Data Migration Run,Fail,ব্যর্থ DocType: Workflow State,download-alt,ডাউনলোড-Alt +DocType: Scheduled Job Type,Last Execution,শেষ নির্বাহ DocType: Data Migration Run,Pull Failed,টানুন ব্যর্থ apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,কার্ডগুলি দেখান / লুকান DocType: Communication,Feedback Request,প্রতিক্রিয়া অনুরোধ apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel ফাইলগুলি থেকে তথ্য আমদানি করুন apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,নিম্নলিখিত ক্ষেত্রগুলি অনুপস্থিত হয়: +DocType: Notification Log,From User,ব্যবহারকারী থেকে apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} বাতিল হচ্ছে DocType: Web Page,Main Section,প্রধান ধারা DocType: Page,Icon,আইকন apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","ইঙ্গিত: পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","উল্লেখ, অ্যাসাইনমেন্ট, শক্তি পয়েন্ট এবং আরও অনেক কিছুর জন্য বিজ্ঞপ্তিগুলি কনফিগার করুন।" DocType: DocField,Allow in Quick Entry,কুইক এণ্ট্রিতে অনুমতি দিন apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,পিডিএফ DocType: System Settings,dd/mm/yyyy,ডিডি / MM / YYYY @@ -1329,7 +1378,6 @@ DocType: Website Theme,Theme URL,থিম ইউআরএল DocType: Customize Form,Sort Field,সাজান মাঠ DocType: Razorpay Settings,Razorpay Settings,Razorpay সেটিংস apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,সম্পাদনা ফিল্টার -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,আরো যোগ করো DocType: System Settings,Session Expiry Mobile,সেশন মেয়াদ উত্তীর্ন মোবাইল apps/frappe/frappe/utils/password.py,Incorrect User or Password,ভুল ব্যবহারকারী বা পাসওয়ার্ড apps/frappe/frappe/templates/includes/search_box.html,Search results for,এর জন্য অনুসন্ধানের ফলাফল @@ -1345,8 +1393,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,এনার্জি পয়েন্ট বিধি DocType: Communication,Delayed,বিলম্বিত apps/frappe/frappe/config/settings.py,List of backups available for download,ডাউনলোডের জন্য উপলব্ধ ব্যাকআপ তালিকা +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,নতুন ডেটা আমদানির চেষ্টা করুন apps/frappe/frappe/www/login.html,Sign up,নিবন্ধন করুন apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,সারি {0}: স্ট্যান্ডার্ড ক্ষেত্রগুলি জন্য অযথা অক্ষম অক্ষম করা যাবে না +DocType: Webhook,Enable Security,সুরক্ষা সক্ষম করুন apps/frappe/frappe/config/customization.py,Dashboards,ড্যাশবোর্ডের DocType: Test Runner,Output,আউটপুট DocType: Milestone,Track Field,ট্র্যাক ফিল্ড @@ -1365,6 +1415,7 @@ DocType: Portal Menu Item,Portal Menu Item,পোর্টাল মেনু apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ফিল্টার সেট করুন DocType: Contact Us Settings,Email ID,ইমেইল আইডি DocType: Energy Point Rule,Multiplier Field,গুণক ক্ষেত্র +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,রেজারপে অর্ডার তৈরি করতে পারেনি। প্রশাসকের সাথে যোগাযোগ করুন DocType: Dashboard Chart,Time Interval,সময়ের ব্যবধান DocType: Activity Log,Keep track of all update feeds,সব আপডেট ফিডগুলির নজর রাখুন DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,সম্পদের একটি তালিকা যা ক্লায়েন্ট অ্যাপ ব্যবহারকারী এটি করতে সক্ষম হবেন পরে অ্যাক্সেস থাকবে.
যেমন প্রকল্প @@ -1384,6 +1435,7 @@ DocType: DefaultValue,Key,চাবি DocType: Address,Contacts,যোগাযোগ DocType: System Settings,Setup Complete,সম্পূর্ণ সেটআপ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,সব নথি শেয়ারের প্রতিবেদন +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","আমদানি টেমপ্লেট .csv, .xlsx বা .xls প্রকারের হওয়া উচিত" apps/frappe/frappe/www/update-password.html,New Password,নতুন পাসওয়ার্ড apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ফিল্টার {0} অনুপস্থিত apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,দুঃখিত! আপনি স্বয়ংক্রিয় উত্পন্ন মন্তব্য মুছতে পারবেন না @@ -1398,6 +1450,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ফেভিকন apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,চালান DocType: Blog Post,Content (HTML),সামগ্রী (এইচটিএমএল) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,জন্য সেটআপ DocType: Personal Data Download Request,User Name,ব্যবহারকারীর নাম DocType: Workflow State,minus-sign,মাইনাস টু সাইন apps/frappe/frappe/public/js/frappe/request.js,Not Found,খুঁজে পাওয়া যাচ্ছে না @@ -1405,6 +1458,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,কোন {0} অনুম apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,রপ্তানি কাস্টম অনুমতি apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,কোন আইটেম পাওয়া যায় নি DocType: Data Export,Fields Multicheck,ক্ষেত্র মাল্টিচেক +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,} Lete সম্পূর্ণ DocType: Activity Log,Login,লগইন DocType: Web Form,Payments,পেমেন্টস্ apps/frappe/frappe/www/qrcode.html,Hi {0},হাই {0} @@ -1432,6 +1486,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,সা apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,অনুমতি ত্রুটি apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},নাম {0} হতে পারবেন না {1} DocType: User Permission,Applicable For,জন্য প্রযোজ্য +DocType: Dashboard Chart,From Date,তারিখ থেকে apps/frappe/frappe/core/doctype/version/version_view.html,Success,সাফল্য apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,সময় মেয়াদ শেষ DocType: Kanban Board Column,Kanban Board Column,Kanban বোর্ড কলাম @@ -1443,7 +1498,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,স apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; শর্ত অনুমোদিত নয় DocType: Async Task,Async Task,ASYNC কার্য DocType: Workflow State,picture,ছবি -apps/frappe/frappe/www/complete_signup.html,Complete,সম্পূর্ণ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,সম্পূর্ণ DocType: DocType,Image Field,চিত্র ফিল্ড DocType: Print Format,Custom HTML Help,কাস্টম এইচটিএমএল হেল্প DocType: LDAP Settings,Default Role on Creation,সৃষ্টিতে ডিফল্ট ভূমিকা @@ -1451,6 +1506,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,পরবর্তী রাজ্য DocType: User,Block Modules,ব্লক মডিউল DocType: Print Format,Custom CSS,কাস্টম CSS +DocType: Energy Point Rule,Apply Only Once,একবার প্রয়োগ করুন apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,একটা মন্তব্য যোগ করুন DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},উপেক্ষিত: {0} থেকে {1} @@ -1461,6 +1517,7 @@ DocType: Address,Postal,ঠিকানা DocType: Email Account,Default Incoming,ডিফল্ট ইনকামিং DocType: Workflow State,repeat,পুনরাবৃত্তি DocType: Website Settings,Banner,নিশান +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,সমস্ত নথি বাতিল করুন DocType: Role,"If disabled, this role will be removed from all users.","যদি অক্ষম, এই ভূমিকা সব ব্যবহারকারীদের কাছ থেকে সরানো হবে." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} তালিকায় যান apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,খুজে পেতে সাহায্য নিন @@ -1469,6 +1526,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,নিব apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,এই দস্তাবেজের জন্য স্বতঃ পুনরাবৃত্তি অক্ষম করা হয়েছে। DocType: DocType,Hide Copy,কপি লুকান apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,সব ভূমিকা পরিষ্কার +DocType: Server Script,Before Save,সংরক্ষণের আগে apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} অনন্য হওয়া আবশ্যক apps/frappe/frappe/model/base_document.py,Row,সারি apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","সিসি, বিসিসি এবং ইমেইল টেমপ্লেট" @@ -1479,7 +1537,6 @@ DocType: Chat Profile,Offline,অফলাইন apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},সফলভাবে আমদানি করা হয়েছে {0} DocType: User,API Key,API কী DocType: Email Account,Send unsubscribe message in email,ইমেলে সদস্যতা রদ করার বার্তা পাঠান -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,সম্পাদনা শিরোনাম apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"এই লিঙ্কটি ক্ষেত্রের জন্য DOCTYPE হতে হবে, যা FIELDNAME." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,আপনি এবং আপনার দ্বারা নির্ধারিত ডকুমেন্টস. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,আপনি এটি অনুলিপি করতে পারেন @@ -1509,8 +1566,10 @@ DocType: Data Migration Run,Total Pages,মোট পৃষ্ঠাগুলি DocType: DocField,Attach Image,চিত্র সংযুক্ত DocType: Workflow State,list-alt,তালিকায়-Alt apps/frappe/frappe/www/update-password.html,Password Updated,পাসওয়ার্ড আপডেট করা +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,সেটআপ> ব্যবহারকারীর অনুমতি apps/frappe/frappe/www/qrcode.html,Steps to verify your login,আপনার লগইন যাচাই করার জন্য পদক্ষেপ apps/frappe/frappe/utils/password.py,Password not found,পাসওয়ার্ড পাওয়া যায়নি +DocType: Webhook,Webhook Secret,ওয়েবহুক সিক্রেট DocType: Data Migration Mapping,Page Length,পৃষ্ঠা লেন্থ DocType: Email Queue,Expose Recipients,প্রাপক এক্সপোজ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,অন্তর্মুখী মেইল জন্য বাধ্যতামূলক সংযোজন @@ -1537,6 +1596,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,পদ্ধতি DocType: Web Form,Max Attachment Size (in MB),ম্যাক্স সংযুক্তি মাপ (মেগাবাইটে) apps/frappe/frappe/www/login.html,Have an account? Login,একটি একাউন্ট আছে? লগইন +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,মুদ্রণ সেটিংস ... DocType: Workflow State,arrow-down,তীর-ডাউন apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ব্যবহারকারী মোছার জন্য অনুমোদিত নয় {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} এর {0} @@ -1556,6 +1616,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,আপন DocType: Dropbox Settings,Dropbox Access Secret,ড্রপবক্স অ্যাক্সেস গোপন DocType: Tag Link,Document Title,নথির শিরোনাম apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(বাধ্যতামূলক) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} বছর আগে DocType: Social Login Key,Social Login Provider,সামাজিক লগইন প্রদানকারী apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,আরেকটি মন্তব্য যোগ করুন apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ফাইলে কোন ডেটা পাওয়া যায়নি। দয়া করে ডেটা সহ নতুন ফাইল পুনরায় সংযুক্ত করুন। @@ -1570,11 +1631,12 @@ DocType: Workflow State,hand-down,হাত নিচে করো apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",এমন কোনও ক্ষেত্র খুঁজে পাওয়া যায় নি যা কানবান কলাম হিসাবে ব্যবহৃত হতে পারে। "নির্বাচন করুন" টাইপের একটি কাস্টম ফিল্ড যুক্ত করতে কাস্টমাইজ ফর্মটি ব্যবহার করুন। DocType: Address,GST State,GST রাজ্য apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: ছাড়া জমা বাতিল সেট করা যায় না +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ব্যবহারকারী ({0}) DocType: Website Theme,Theme,বিষয়বস্তু DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,পুনর্নির্দেশ কোনো URI প্রমাণীকরণ কোড আবদ্ধ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,ওপেন সহায়তা DocType: DocType,Is Submittable,Submittable হয় -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,নতুন উল্লেখ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,নতুন উল্লেখ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,কোনও নতুন গুগল পরিচিতি সিঙ্ক হয়নি। DocType: File,Uploaded To Google Drive,গুগল ড্রাইভে আপলোড করা হয়েছে apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,একটি চেক ক্ষেত্রের জন্য মান 0 অথবা 1 হতে পারে @@ -1584,7 +1646,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,সিরিজ ব DocType: Workflow State,Inbox,ইনবক্স DocType: Kanban Board Column,Red,লাল DocType: Workflow State,Tag,ট্যাগ -DocType: Custom Script,Script,লিপি +DocType: Report,Script,লিপি apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,দস্তাবেজ সংরক্ষণ করা যাবে না DocType: Energy Point Rule,Maximum Points,সর্বোচ্চ পয়েন্ট apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,আমার সেটিংস @@ -1614,8 +1676,10 @@ DocType: Address,Haryana,হরিয়ানা apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{1} {2} এর জন্য {0} প্রশংসা পয়েন্ট apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ভূমিকা তাদের ব্যবহারকারীর পাতা থেকে ব্যবহারকারীদের জন্য নির্ধারণ করা যাবে. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,মন্তব্য যোগ করুন +DocType: Dashboard Chart,Select Date Range,তারিখের সীমা নির্বাচন করুন DocType: DocField,Mandatory,কার্যভার apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,মডিউল রপ্তানি করতে +DocType: Scheduled Job Type,Monthly Long,মাসিক দীর্ঘ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} থে মৌলিক অনুমতি সেট apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","বাতিল, জমা অর্থ সংশোধন" @@ -1625,7 +1689,6 @@ DocType: Milestone Tracker,Track milestones for any document,যে কোনও DocType: Social Login Key,Identity Details,পরিচয় বিবরণ apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},কর্মপ্রবাহের রাজ্য স্থানান্তর {0} থেকে {1} এ অনুমোদিত নয় apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ড্যাশবোর্ড প্রদর্শন করুন -apps/frappe/frappe/desk/form/assign_to.py,New Message,নতুন বার্তা DocType: File,Preview HTML,পূর্বদৃশ্য এইচটিএমএল DocType: Desktop Icon,query-report,ক্যোয়ারী-প্রতিবেদন DocType: Data Import Beta,Template Warnings,টেমপ্লেট সতর্কতা @@ -1642,12 +1705,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} নাম apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,কোন অনুমতি এই মানদণ্ড নির্ধারণ করা. DocType: Auto Email Report,Auto Email Report,অটো ইমেল প্রতিবেদন +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,নতুন দস্তাবেজ ভাগ করা হয়েছে apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,মন্তব্য মুছে ফেলতে চান? DocType: Address Template,This format is used if country specific format is not found,দেশ নির্দিষ্ট ফরম্যাটে পাওয়া না গেলে এই বিন্যাস ব্যবহার করা হয়েছে DocType: System Settings,Allow Login using Mobile Number,লগইন মোবাইল নম্বর ব্যবহার করার অনুমতি দেয় apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,আপনি এই রিসোর্স অ্যাক্সেস করার অনুমতি নেই. প্রবেশাধিকার পেতে আপনার ম্যানেজারের সাথে যোগাযোগ করুন. DocType: Custom Field,Custom,প্রথা DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","যদি সক্ষম করা হয়, ব্যবহারকারীরা যে সীমাবদ্ধ IP ঠিকানা থেকে লগইন করে, তাদের দুটি ফ্যাক্টর Auth এর জন্য অনুরোধ করা হবে না" +DocType: Server Script,After Cancel,বাতিল করার পরে DocType: Auto Repeat,Get Contacts,পরিচিতিগুলি পান apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},অধীনে দায়ের করা পোস্ট {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,শিরোনামহীন কলাম বাদ দেওয়া হচ্ছে @@ -1658,6 +1723,7 @@ DocType: User,Login After,লগইন করার পর DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,মুদ্রণ DocType: Workflow State,thumbs-up,অঙ্গুষ্ঠ আপ +DocType: Notification Log,Mention,উল্লেখ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ফন্ট apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,যথার্থ 1 এবং 6 এর মধ্যে হতে হবে @@ -1665,7 +1731,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,এবং apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},এই রিপোর্টটি {0} DocType: Error Snapshot,Frames,ফ্রেম -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,কাজ +DocType: Notification Log,Assignment,কাজ DocType: Notification,Slack Channel,স্ল্যাক চ্যানেল DocType: About Us Team Member,Image Link,চিত্র লিংক DocType: Auto Email Report,Report Filters,গালাগাল প্রতিবেদন ফিল্টার @@ -1682,6 +1748,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ইভেন্ট আপডেট করতে অক্ষম apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,যাচাইকরণ কোড আপনার নিবন্ধিত ইমেল ঠিকানাতে পাঠানো হয়েছে। apps/frappe/frappe/core/doctype/user/user.py,Throttled,রোধ করা +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,আপনার লক্ষ্য apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ফিল্টার 4 মান (DOCTYPE, FIELDNAME, অপারেটর, মান) থাকতে হবে: {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,নিয়োগের বিধি প্রয়োগ করুন apps/frappe/frappe/utils/bot.py,show,প্রদর্শনী @@ -1692,7 +1759,6 @@ DocType: Workflow State,text-height,টেক্সট-উচ্চতা DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ডেটা মাইগ্রেশন প্ল্যান ম্যাপিং apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé শুরু হচ্ছে ... DocType: Web Form Field,Max Length,সর্বোচ্চ দৈর্ঘ্য -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} এর জন্য DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,মানচিত্র-মার্কার apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,একটি সমস্যার জমা @@ -1738,7 +1804,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,খোলা apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,তোমার ভাষা DocType: Dashboard Chart,Average,গড় apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,সারি যোগ করুন -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,মুদ্রাকর apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,ক্যোয়ারী নির্বাচন হতে হবে DocType: Auto Repeat,Completed,সম্পন্ন @@ -1781,6 +1846,7 @@ DocType: Note,Seen By Table,দ্বারা ছক দেখেছি apps/frappe/frappe/www/third_party_apps.html,Logged in,লগ ইন apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ডিফল্ট পাঠানোর এবং ইনবক্স DocType: System Settings,OTP App,OTP অ্যাপ্লিকেশন +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,সফলভাবে {1} এর মধ্যে {0} রেকর্ড আপডেট হয়েছে} DocType: Google Drive,Send Email for Successful Backup,সফল ব্যাকআপের জন্য ইমেল পাঠান apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,সময়সূচী নিষ্ক্রিয়। ডেটা আমদানি করা যায় না। DocType: Print Settings,Letter,চিঠি @@ -1796,6 +1862,7 @@ DocType: GCalendar Account,Next Sync Token,পরবর্তী সিঙ্ক DocType: Energy Point Settings,Energy Point Settings,শক্তি পয়েন্ট সেটিংস DocType: Async Task,Succeeded,অনুসৃত apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},এ প্রয়োজন আবশ্যিক ক্ষেত্র {0} +DocType: Onboarding Slide Field,Align,সারিবদ্ধ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,রিসেট অনুমতি {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ব্যবহারকারী এবং অনুমতি DocType: S3 Backup Settings,S3 Backup Settings,S3 ব্যাকআপ সেটিংস @@ -1812,7 +1879,9 @@ DocType: DocType,ASC,উচ্চক্রমে apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,নতুন মুদ্রণ ফর্ম্যাট নাম apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,অনুরোধ অনুমোদনের জন্য নীচের লিঙ্কে ক্লিক করুন DocType: Workflow State,align-left,সারিবদ্ধ বাম +DocType: Onboarding Slide,Action Settings,ক্রিয়া সেটিংস DocType: User,Defaults,ডিফল্ট +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","তুলনার জন্য,> 5, <10 বা = 324 ব্যবহার করুন। ব্যাপ্তিগুলির জন্য, 5:10 (5 এবং 10 এর মধ্যে মানের জন্য) ব্যবহার করুন।" DocType: Energy Point Log,Revert Of,রিভার্ট অফ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,বিদ্যমান সাথে একত্রীকরণ DocType: User,Birth Date,জন্ম তারিখ @@ -1867,6 +1936,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,মধ্যে DocType: Notification,Value Change,মান পরিবর্তন DocType: Google Contacts,Authorize Google Contacts Access,গুগল পরিচিতি অ্যাক্সেস অনুমোদন apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,রিপোর্ট থেকে শুধুমাত্র সাংখ্যিক ক্ষেত্র দেখাচ্ছে +apps/frappe/frappe/utils/data.py,1 week ago,1 সপ্তাহ আগে DocType: Data Import Beta,Import Type,আমদানির প্রকার DocType: Access Log,HTML Page,এইচটিএমএল পৃষ্ঠা DocType: Address,Subsidiary,সহায়ক @@ -1876,7 +1946,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,লেটারহেড সঙ্গে apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,অকার্যকর বহির্গামী মেইল সার্ভার বা পোর্ট DocType: Custom DocPerm,Write,লেখা -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,কেবলমাত্র প্রশাসক ক্যোয়ারী / স্ক্রিপ্ট রিপোর্ট তৈরি করার অনুমতি apps/frappe/frappe/public/js/frappe/form/save.js,Updating,আপডেট করার প্রণালী DocType: Data Import Beta,Preview,সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ফিল্ড "মান" বাধ্যতামূলক. আপডেট করা মান উল্লেখ করুন @@ -1886,6 +1955,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,ব্য DocType: Data Migration Run,Started,শুরু apps/frappe/frappe/permissions.py,User {0} does not have access to this document,ব্যবহারকারীর {0} এই দস্তাবেজটিতে অ্যাক্সেস নেই DocType: Data Migration Run,End Time,শেষ সময় +DocType: Dashboard Chart,Group By Based On,গ্রুপ বাই বেসড apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,নির্বাচন সংযুক্তি apps/frappe/frappe/model/naming.py, for {0},জন্য {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,আপনি এই নথীটি ছাপানোর জন্য অনুমতি দেওয়া হয় না @@ -1927,6 +1997,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,যাচাই কর DocType: Workflow Document State,Update Field,আপডেট মাঠ DocType: Chat Profile,Enable Chat,চ্যাট সক্ষম করুন DocType: LDAP Settings,Base Distinguished Name (DN),বেজ বিশিষ্ট নাম (ডিএন) +DocType: Server Script,API,এপিআই apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,এই কথোপকথন ত্যাগ apps/frappe/frappe/model/base_document.py,Options not set for link field {0},বিকল্প লিংক ক্ষেত্রের জন্য নির্ধারণ করে না {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,সারি / কর্মী @@ -1993,21 +2064,21 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,এই সময়ে অনুমোদিত নয় লগইন DocType: Data Migration Run,Current Mapping Action,বর্তমান ম্যাপিং অ্যাকশন DocType: Dashboard Chart Source,Source Name,উত্স নাম -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ব্যবহারকারীর সাথে কোনও ইমেল অ্যাকাউন্ট যুক্ত নেই। ব্যবহারকারী> ইমেল ইনবক্সের অধীনে একটি অ্যাকাউন্ট যুক্ত করুন। DocType: Email Account,Email Sync Option,ইমেইল সিঙ্ক অপশন apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,রো নং DocType: Async Task,Runtime,রানটাইম DocType: Post,Is Pinned,পিন করা হয় DocType: Contact Us Settings,Introduction,ভূমিকা +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,সাহায্য দরকার? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,বিশ্বব্যাপী পিন করুন apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,অনুসরণ করেছে DocType: LDAP Settings,LDAP Email Field,দ্বারা LDAP ইমেল ফিল্ড apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} তালিকা +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} রেকর্ড রফতানি করুন apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ইতিমধ্যে ব্যবহারকারীর মধ্যে তালিকার কি DocType: User Email,Enable Outgoing,আউটগোয়িং কলের সক্রিয় DocType: Address,Fax,ফ্যাক্স apps/frappe/frappe/config/customization.py,Custom Tags,কাস্টম ট্যাগ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ করা হয়নি। দয়া করে সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন DocType: Comment,Submitted,উপস্থাপিত DocType: Contact,Pulled from Google Contacts,গুগল পরিচিতিগুলি থেকে টানা apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,অনুরোধ অগ্রহণযোগ্য @@ -2028,9 +2099,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,হোম / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,আমার ধার্য DocType: DocField,Dynamic Link,ডাইনামিক লিংক apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,মেনু এবং সাইডবারে অতিরিক্ত শর্টকাটগুলি ট্রিগার করতে Alt কী টিপুন +DocType: Dashboard Chart,To Date,এখন পর্যন্ত DocType: List View Setting,List View Setting,তালিকা দেখুন সেটিং apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,দেখান ব্যর্থ কাজ -DocType: Event,Details,বিবরণ +DocType: Scheduled Job Log,Details,বিবরণ DocType: Property Setter,DocType or Field,DOCTYPE বা ক্ষেত্র apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,আপনি এই দস্তাবেজটি অনুসরণ করেন নি apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,মৌলিক রঙ @@ -2038,7 +2110,6 @@ DocType: Communication,Soft-Bounced,নরম-ফেরত DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","যদি সক্ষম হয়, তবে সমস্ত ব্যবহারকারী দুটি ফ্যাক্টর Auth ব্যবহার করে যেকোনো IP ঠিকানা থেকে লগইন করতে পারবেন। এটি শুধুমাত্র নির্দিষ্ট ব্যবহারকারী (গুলি) ব্যবহারকারী পৃষ্ঠাতে সেট করা যেতে পারে" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,মনে প্রকাশযোগ্য কী অথবা গোপন কী ভুল !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,সেটিং অনুমতি জন্য দ্রুত সহায়তা -DocType: Tag Doc Category,Doctype to Assign Tags,ট্যাগ্স ধার্য করতে DOCTYPE apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,দেখান relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ইমেইল ট্র্যাশে সরানো হয়েছে DocType: Report,Report Builder,প্রতিবেদন নির্মাতা @@ -2053,6 +2124,7 @@ DocType: Workflow State,Upload,আপলোড DocType: User Permission,Advanced Control,উন্নত কন্ট্রোল DocType: System Settings,Date Format,তারিখ বিন্যাস apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,প্রকাশিত হয়নি +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনও ডিফল্ট ঠিকানা টেম্পলেট পাওয়া যায় নি। দয়া করে সেটআপ> মুদ্রণ ও ব্র্যান্ডিং> ঠিকানা টেম্পলেট থেকে একটি নতুন তৈরি করুন। apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","দেখাবার জন্য পদক্ষেপ (যেমন, বাতিল Approve)." DocType: Data Import,Skip rows with errors,ত্রুটির সঙ্গে সারি এড়িয়ে যান DocType: Workflow State,flag,পতাকা @@ -2069,7 +2141,7 @@ DocType: Post Comment,Post Comment,মন্তব্য প্রকাশ ক apps/frappe/frappe/config/core.py,Documents,কাগজপত্র apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,ক্রিয়াকলাপ দ্বারা লগ DocType: Social Login Key,Custom Base URL,কাস্টম বেস URL -DocType: Email Flag Queue,Is Completed,সম্পন্ন হয় +DocType: Onboarding Slide,Is Completed,সম্পন্ন হয় apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ক্ষেত্রগুলি পান apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,জীবন বৃত্তান্ত সম্পাদনা DocType: Kanban Board Column,Archived,আর্কাইভ করা @@ -2080,11 +2152,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",এই ক্ষেত্রটি প্রদর্শিত হবে শুধুমাত্র যদি FIELDNAME এখানে সংজ্ঞায়িত মূল্য আছে বা নিয়ম সত্য (উদাহরণ) হয়: myfield Eval: doc.myfield == 'আমার মূল্য' Eval: doc.age> 18 DocType: Social Login Key,Office 365,অফিস 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,আজ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,আজ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","আপনি এই সেট করে থাকেন, শুধুমাত্র সেই ব্যবহারকারীদের ক্ষেত্রে সক্ষম এক্সেস নথি হতে হবে (যেমন. ব্লগ পোস্ট) লিংক (যেমন. ব্লগার) যেখানে বিদ্যমান." DocType: Data Import Beta,Submit After Import,আমদানির পরে জমা দিন DocType: Error Log,Log of Scheduler Errors,নির্ধারণকারী ত্রুটি কার্যবিবরণী DocType: User,Bio,বায়ো +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,স্লাইড সহায়তা লিঙ্ক অনবোর্ডিং DocType: OAuth Client,App Client Secret,অ্যাপ ক্লায়েন্ট সিক্রেট apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,জমা দেওয়ার apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,মূল ডকুমেন্টের নাম যা ডেটাকে যুক্ত করা হবে। @@ -2092,7 +2165,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,বড় হাতের apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,কাস্টম এইচটিএমএল apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ফোল্ডারের নাম লিখুন -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনও ডিফল্ট ঠিকানা টেম্পলেট পাওয়া যায় নি। দয়া করে সেটআপ> মুদ্রণ ও ব্র্যান্ডিং> ঠিকানা টেম্পলেট থেকে একটি নতুন তৈরি করুন। apps/frappe/frappe/auth.py,Unknown User,অপরিচিত ব্যবহারকারী apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,নির্বাচন ভূমিকা DocType: Comment,Deleted,মোছা @@ -2108,7 +2180,7 @@ DocType: Chat Token,Chat Token,চ্যাট টোকেন apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,চার্ট তৈরি করুন apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,আমদানি করবেন না -DocType: Web Page,Center,কেন্দ্র +DocType: Onboarding Slide Field,Center,কেন্দ্র DocType: Notification,Value To Be Set,মূল্য সেট হওয়ার apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} সম্পাদনা করুন apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,প্রথম ধাপ @@ -2116,7 +2188,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ডেটাবেস নাম apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,সুদ্ধ ফরম DocType: DocField,Select,নির্বাচন করা -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,সম্পূর্ণ লগ দেখুন +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,সম্পূর্ণ লগ দেখুন DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","সাধারণ পাইথন এক্সপ্রেশন, উদাহরণ: অবস্থা == 'খুলুন' এবং টাইপ করুন == 'বাগ'" apps/frappe/frappe/utils/csvutils.py,File not attached,ফাইল সংযুক্ত করা apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,সংযোগ বিচ্ছিন্ন. কিছু বৈশিষ্ট্য কাজ করতে পারে না। @@ -2148,6 +2220,7 @@ DocType: Web Page,HTML for header section. Optional,হেডার বিভা apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,এই বৈশিষ্ট্যটি ব্র্যান্ড নতুন এবং এখনও পরীক্ষামূলক apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,সর্বাধিক {0} সারি অনুমতি DocType: Dashboard Chart Link,Chart,তালিকা +DocType: Scheduled Job Type,Cron,ক্রন DocType: Email Unsubscribe,Global Unsubscribe,গ্লোবাল আনসাবস্ক্রাইব apps/frappe/frappe/utils/password_strength.py,This is a very common password.,এটি একটি খুব সাধারণ পাসওয়ার্ড. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,দৃশ্য @@ -2164,6 +2237,7 @@ DocType: Data Migration Connector,Hostname,হোস্টনাম DocType: Data Migration Mapping,Condition Detail,শর্ত বিস্তারিত apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","কারেন্সি {0} জন্য, ন্যূনতম লেনদেনের পরিমাণটি {1} হওয়া উচিত" DocType: DocField,Print Hide,প্রিন্ট লুকান +DocType: System Settings,HH:mm:ss,Hh: mm: SS apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ব্যবহারকারীকে apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,মান লিখুন DocType: Workflow State,tint,আভা @@ -2227,6 +2301,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,লগইন apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,কি যোগ DocType: Footer Item,Company,কোম্পানি apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},গড় {0} +DocType: Scheduled Job Log,Scheduled,তালিকাভুক্ত DocType: User,Logout from all devices while changing Password,পাসওয়ার্ড পরিবর্তন করার সময় সব ডিভাইস থেকে লগ আউট করুন apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,গোপন শব্দ যাচাই apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,ত্রুটি ছিল @@ -2251,7 +2326,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ব্যবহারকারীর অনুমতি ইতিমধ্যে বিদ্যমান apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} দেখুন -DocType: User,Hourly,ঘনঘন +DocType: Scheduled Job Type,Hourly,ঘনঘন apps/frappe/frappe/config/integrations.py,Register OAuth Client App,নিবন্ধন OAUTH ক্লায়েন্ট অ্যাপ্লিকেশন DocType: DocField,Fetch If Empty,খালি হলে আনুন DocType: Data Migration Connector,Authentication Credentials,প্রমাণীকরণ শংসাপত্রগুলি @@ -2261,10 +2336,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,পয়েন্ DocType: SMS Settings,SMS Gateway URL,এসএমএস গেটওয়ে ইউআরএল apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} হতে পারে না "{2}". এটা এক হতে হবে "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} বা {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,আপনি সব সেট আপ করা হয়! DocType: Workflow State,trash,আবর্জনা DocType: System Settings,Older backups will be automatically deleted,পুরাতন ব্যাক-আপ স্বয়ংক্রিয়ভাবে মুছে ফেলা হবে apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,অবৈধ অ্যাক্সেস কী আইডি বা সিক্রেট অ্যাক্সেস কী -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,আপনি কিছু শক্তি পয়েন্ট হারিয়েছেন DocType: Post,Is Globally Pinned,বিশ্বব্যাপী পিন করা হয় apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,সাম্প্রতিক কার্যকলাপ DocType: Workflow Transition,Conditions,পরিবেশ @@ -2273,6 +2348,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,নিশ্ DocType: Event,Ends on,এ শেষ DocType: Payment Gateway,Gateway,প্রবেশপথ DocType: LDAP Settings,Path to Server Certificate,সার্ভার শংসাপত্রের পথে +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,জাভাস্ক্রিপ্ট আপনার ব্রাউজারে অক্ষম করা আছে apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,লিঙ্ক দেখতে যথেষ্ট অনুমতি apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,ঠিকানা শিরোনাম বাধ্যতামূলক. DocType: Google Contacts,Push to Google Contacts,গুগল পরিচিতিতে ঠেলাও @@ -2290,7 +2366,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,ইইউ-পশ্চিমে -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","এটি পরীক্ষা করা হলে, বৈধ ডেটা দিয়ে সারিগুলি আমদানি করা হবে এবং অবৈধ সারিগুলি নতুন ফাইলের মধ্যে ডাম্প করা হবে।" apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ডকুমেন্ট ভূমিকা ব্যবহারকারীদের দ্বারা শুধুমাত্র সম্পাদনাযোগ্য -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",আপনি {1} দ্বারা {2} বন্ধ করা হয়েছে নির্ধারিত যে টাস্ক {0}. DocType: Print Format,Show Line Breaks after Sections,দেখান লাইন সেকশনস পর Breaks DocType: Communication,Read by Recipient On,প্রাপক অন দ্বারা পড়া DocType: Blogger,Short Name,সংক্ষিপ্ত নাম @@ -2322,6 +2397,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,দ DocType: Translation,PR sent,পিআর প্রেরণ করা হয়েছে DocType: Auto Email Report,Only Send Records Updated in Last X Hours,শুধু পাঠান রেকর্ডস গত এক্স ঘন্টা আপডেট DocType: Communication,Feedback,প্রতিক্রিয়া +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,নতুন সংস্করণে আপডেট হয়েছে 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,খোলা অনুবাদ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,এই ইমেলটি স্বয়ংক্রিয়ভাবে তৈরি করা হয়েছে DocType: Workflow State,Icon will appear on the button,আইকন বাটন প্রদর্শিত হবে @@ -2359,6 +2435,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,পৃষ DocType: DocField,Precision,স্পষ্টতা DocType: Website Slideshow,Slideshow Items,স্লাইডশো আইটেম apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,পুনরাবৃত্তি শব্দ এবং অক্ষর থেকে বিরত থাকুন +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,বিজ্ঞপ্তি অক্ষম করা হয়েছে +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,আপনি কি নিশ্চিত যে আপনি সমস্ত সারি মুছে ফেলতে চান? DocType: Workflow Action,Workflow State,কর্মপ্রবাহ রাজ্য apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,সারি যোগ করা apps/frappe/frappe/www/list.py,My Account,আমার অ্যাকাউন্ট @@ -2367,6 +2445,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,দিন পরে apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,কিউজেড ট্রে সংযোগ সক্রিয়! DocType: Contact Us Settings,Settings for Contact Us Page,আমাদের সাথে যোগাযোগ করুন পৃষ্ঠা জন্য সেটিংস +DocType: Server Script,Script Type,স্ক্রিপ্টের ধরন DocType: Print Settings,Enable Print Server,প্রিন্ট সার্ভার সক্ষম করুন apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} সপ্তাহ আগে DocType: Email Account,Footer,পাদলেখ @@ -2391,8 +2470,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,সতর্কতা apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,এটি একাধিক পৃষ্ঠায় মুদ্রিত হতে পারে DocType: Data Migration Run,Percent Complete,শতাংশ সম্পূর্ণ -DocType: Tag Category,Tag Category,ট্যাগ শ্রেণী -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","তুলনার জন্য,> 5, <10 বা = 324 ব্যবহার করুন। ব্যাপ্তিগুলির জন্য, 5:10 ব্যবহার করুন (5 এবং 10 এর মধ্যে মানের জন্য)।" DocType: Google Calendar,Pull from Google Calendar,গুগল ক্যালেন্ডার থেকে টানুন apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,সাহায্য DocType: User,Login Before,লগইন আগে @@ -2402,17 +2479,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,সপ্তাহে লুকান apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,স্বয়ংক্রিয়ভাবে পুনরাবৃত্তির ডকুমেন্টগুলি তৈরি করে। apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,হয় +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,তথ্য-চিহ্ন apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,জন্য {0} একটি তালিকা হতে পারে না মূল্য DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","এই কারেন্সি কিভাবে ফরম্যাট করা উচিত? যদি সেট না থাকে, সিস্টেম ডিফল্ট-গুলি ব্যবহার করবে" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} নথি জমা দিন? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,আপনি লগইন এবং ব্যাকআপ অ্যাক্সেস পাবে সিস্টেম ম্যানেজার ভূমিকা আছে হবে. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","কিউজেড ট্রে অ্যাপ্লিকেশনটিতে সংযোগ করার সময় ত্রুটি ...

কাঁচা মুদ্রণ বৈশিষ্ট্যটি ব্যবহার করতে আপনার কিউজেড ট্রে অ্যাপ্লিকেশন ইনস্টল এবং চলমান থাকা দরকার।

কিউজেড ট্রে ডাউনলোড এবং ইনস্টল করতে এখানে ক্লিক করুন
কাঁচা মুদ্রণ সম্পর্কে আরও জানতে এখানে ক্লিক করুন ।" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,প্রিন্টার ম্যাপিং apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,সংযোজনের পূর্বে সংরক্ষণ করুন. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,আপনি কি সমস্ত লিঙ্কযুক্ত নথি বাতিল করতে চান? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),যোগ করা হয়েছে {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype থেকে পরিবর্তন করা যাবে না {0} থেকে {1} সারিতে {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,ভূমিকা অনুমতি DocType: Help Article,Intermediate,অন্তর্বর্তী +apps/frappe/frappe/config/settings.py,Email / Notifications,ইমেল বিজ্ঞপ্তি apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,খসড়া হিসাবে নথি পুনরুদ্ধার বাতিল DocType: Data Migration Run,Start Time,সময় শুরু apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} {{2}} {3} {4} এর সাথে লিঙ্কযুক্ত কারণ মুছে ফেলা বা বাতিল করা যাবে না @@ -2427,6 +2508,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,অবৈধ প্রাপক অঙ্ক DocType: Workflow State,step-forward,ধাপে এগিয়ে DocType: System Settings,Allow Login After Fail,ব্যর্থ হলে লগইন করার অনুমতি দিন +DocType: DocType Link,DocType Link,ডকটাইপ লিঙ্ক DocType: Role Permission for Page and Report,Set Role For,ভূমিকার জন্য সেট DocType: GCalendar Account,The name that will appear in Google Calendar,নাম যা Google ক্যালেন্ডারে প্রদর্শিত হবে apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} এর সাথে সরাসরি কক্ষ ইতিমধ্যে বিদ্যমান। @@ -2443,6 +2525,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},তৈর DocType: Contact,Google Contacts,গুগল যোগাযোগ DocType: GCalendar Account,GCalendar Account,GCalendar অ্যাকাউন্ট DocType: Email Rule,Is Spam,স্প্যাম +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,গত apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},গালাগাল প্রতিবেদন {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ওপেন {0} DocType: Data Import Beta,Import Warnings,সতর্কতা আমদানি করুন @@ -2454,6 +2537,7 @@ DocType: Workflow State,ok-sign,OK-সাইন apps/frappe/frappe/config/settings.py,Deleted Documents,মোছা ডকুমেন্টস apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV বিন্যাসটি কেস সংবেদনশীল apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ডেস্কটপ আইকন আগে থেকেই আছে +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,সমস্ত ডোমেন কী স্লাইডে প্রদর্শিত হবে তা উল্লেখ করুন। যদি কিছুই নির্দিষ্ট না করা থাকে তবে স্লাইডটি সমস্ত ডোমেনে ডিফল্টরূপে প্রদর্শিত হয়। apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,নকল apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ক্ষেত্রের {1} সারিতে {2} ডিফল্ট ছাড়া লুকানো এবং বাধ্যতামূলক করা যায় না DocType: Newsletter,Create and Send Newsletters,তৈরি করুন এবং পাঠান লেটার @@ -2464,6 +2548,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,গুগল ক্যালেন্ডার ইভেন্ট আইডি apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","মূল" এই সারিতে যোগ করা হবে যা প্যারেন্ট টেবিল উল্লেখ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,পর্যালোচনা পয়েন্ট: +DocType: Scheduled Job Log,Scheduled Job Log,নির্ধারিত কাজের লগ +DocType: Server Script,Before Delete,মোছার আগে apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,সাথে ভাগ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ফাইল / URL গুলি সংযুক্ত করুন এবং টেবিলে যোগ করুন apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,বার্তা সেটআপ না @@ -2486,19 +2572,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,আমাদের সম্পর্কে পৃষ্ঠার জন্য সেটিংস apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ডোরা পেমেন্ট গেটওয়ে সেটিংস apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,প্রিন্টারে প্রিন্ট প্রেরণ! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,শক্তি পয়েন্টস +DocType: Notification Settings,Energy Points,শক্তি পয়েন্টস +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},সময় {0} অবশ্যই ফর্ম্যাটে থাকতে হবে: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,যেমন pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,কীগুলি জেনারেট করুন apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,এটি স্থায়ীভাবে আপনার ডেটা সরিয়ে ফেলবে। DocType: DocType,View Settings,সেটিংস দেখুন +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,নতুন বিজ্ঞপ্তি DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,অনুরোধ কাঠামো +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,কন্ট্রোলার পদ্ধতিটি get_razorpay_order অনুপস্থিত DocType: Personal Data Deletion Request,Pending Verification,অপেক্ষারত যাচাই DocType: Website Meta Tag,Website Meta Tag,ওয়েবসাইট মেটা ট্যাগ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",যদি অ স্ট্যান্ডার্ড পোর্ট (যেমন 587)। যদি Google ক্লাউডে থাকে তবে পোর্ট 2525 দেখুন। apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","ক্লিয়ারিং শেষ তারিখ, কারণ এটি প্রকাশিত পৃষ্ঠাগুলির জন্য অতীতের মতো হতে পারে না।" DocType: User,Send Me A Copy of Outgoing Emails,আমাকে আউটগোইং ইমেইলের একটি কপি পাঠান -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.,Google এনালিটিক্স আইডি যোগ করুন যেমন. ইউএ-89XXX57-1. আরো তথ্যের জন্য Google এনালিটিক্স সহায়তার অনুসন্ধান করুন. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,পাসওয়ার্ড 100 টিরও বেশি অক্ষরের হতে পারে না DocType: OAuth Client,App Client ID,অ্যাপ ক্লায়েন্ট আইডি @@ -2527,6 +2615,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,নতুন apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} সঙ্গে এই নথিটি ভাগ {1} DocType: Website Settings,Brand Image,প্রতিকি ছবি DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,আমদানি টেমপ্লেটে একটি শিরোনাম এবং কমপক্ষে এক সারি থাকা উচিত। apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,গুগল ক্যালেন্ডার কনফিগার করা হয়েছে। apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","উপরের ন্যাভিগেশন বারের মধ্যে, ফুটার ও লোগোর সেটআপ." DocType: Web Form Field,Max Value,সর্বোচ্চ মূল্য @@ -2535,6 +2624,7 @@ DocType: Auto Repeat,Preview Message,পূর্বরূপ বার্তা DocType: User Social Login,User Social Login,ব্যবহারকারী সামাজিক লগইন DocType: Contact,All,সব DocType: Email Queue,Recipient,প্রাপক +DocType: Webhook,Webhook Security,ওয়েবহুক সুরক্ষা DocType: Communication,Has Attachment,সংযুক্তি আছে DocType: Address,Sales User,সেলস ব্যবহারকারী apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ড্র্যাগ এবং ড্রপ টুল নির্মাণ ও মুদ্রণ বিন্যাস কাস্টমাইজ. @@ -2624,14 +2714,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,ওয়েবসাই apps/frappe/frappe/model/workflow.py,Self approval is not allowed,স্ব অনুমোদন অনুমোদিত নয় DocType: GSuite Templates,Template ID,টেমপ্লেট আইডি apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,গ্রান্ট প্রকারের সংমিশ্রণ ( {0} ) এবং প্রতিক্রিয়া প্রকার ( {1} ) অনুমোদিত নয় -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} থেকে নতুন বার্তা DocType: Portal Settings,Default Role at Time of Signup,সাইনআপ করার সময় ডিফল্ট ভূমিকা DocType: DocType,Title Case,শিরোনাম কেস apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,আপনার ডেটা ডাউনলোড করতে নীচের লিঙ্কে ক্লিক করুন apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},ব্যবহারকারীর জন্য সক্রিয় ইমেল ইনবক্স {0} DocType: Data Migration Run,Data Migration Run,ডেটা মাইগ্রেশন রান DocType: Blog Post,Email Sent,ইমেইল পাঠানো -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,পুরাতন DocType: DocField,Ignore XSS Filter,XSS ফিল্টার Ignore apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,অপসারিত apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ড্রপবক্স ব্যাকআপ সেটিংস @@ -2686,6 +2774,7 @@ DocType: Async Task,Queued,সারিবদ্ধ DocType: Braintree Settings,Use Sandbox,ব্যবহারের স্যান্ডবক্স apps/frappe/frappe/utils/goal.py,This month,এই মাস apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,নতুন কাস্টম মুদ্রন বিন্যাস +DocType: Server Script,Before Save (Submitted Document),সংরক্ষণের আগে (জমা দেওয়া দস্তাবেজ) DocType: Custom DocPerm,Create,তৈরি করুন apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,প্রদর্শন করার জন্য আর আইটেম নেই apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,পূর্ববর্তী রেকর্ডে যান @@ -2741,6 +2830,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,আবর্জনা সরান DocType: Web Form,Web Form Fields,ওয়েব ফরম ক্ষেত্র DocType: Data Import,Amended From,সংশোধিত +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,স্লাইডটি কী পূরণ করতে হবে সে সম্পর্কে ব্যবহারকারীদের কোনও ধারণা নেই কেবলমাত্র একটি সহায়তা ভিডিও লিঙ্ক যুক্ত করুন। apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},সতর্কতা: অক্ষম এটি {0} এর সাথে সম্পর্কিত কোন টেবিলে {1} DocType: S3 Backup Settings,eu-north-1,ইইউ-উত্তর-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,এই দস্তাবেজটি বর্তমানে সঞ্চালনের জন্য সারিবদ্ধ হয়. অনুগ্রহপূর্বক আবার চেষ্টা করুন @@ -2761,6 +2851,7 @@ DocType: Blog Post,Blog Post,ব্লগ পোস্ট DocType: Access Log,Export From,থেকে রফতানি করুন apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,উন্নত অনুসন্ধান apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,আপনি নিউজলেটার দেখতে অনুমতি নেই। +DocType: Dashboard Chart,Group By,গ্রুপ দ্বারা DocType: User,Interests,রুচি apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে DocType: Energy Point Rule,Allot Points To Assigned Users,নির্ধারিত ব্যবহারকারীদের জন্য পয়েন্ট বরাদ্দ করুন @@ -2776,6 +2867,7 @@ DocType: Assignment Rule,Assignment Rule,নিয়োগের বিধি apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},প্রস্তাবিত ইউজারনেম: {0} DocType: Assignment Rule Day,Day,দিন apps/frappe/frappe/public/js/frappe/desk.js,Modules,মডিউল +DocType: DocField,Mandatory Depends On,বাধ্যতামূলক উপর নির্ভর করে apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,পেমেন্ট সাফল্য apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,কোন {0} মেইল DocType: OAuth Bearer Token,Revoked,প্রত্যাহার করা হয়েছে @@ -2783,6 +2875,7 @@ DocType: Web Page,Sidebar and Comments,সাইডবার এবং মন্ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","আপনি একটি নথি পরে তা বাতিল এবং সংরক্ষণ সংশোধন হলে, এটা পুরানো সংখ্যা একটি সংস্করণ যে একটি নতুন নম্বর পেতে হবে." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} নথি সংযুক্ত করার অনুমতি নেই, প্রিন্ট সেটিংসে {0} জন্য মুদ্রণ অনুমতি দিন" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ করা হয়নি। দয়া করে সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} নথিটি দেখুন DocType: Stripe Settings,Publishable Key,প্রকাশযোগ্য কী apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,আমদানি শুরু করুন @@ -2795,6 +2888,7 @@ DocType: Currency,Fraction,ভগ্নাংশ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ইভেন্ট গুগল ক্যালেন্ডারের সাথে সিঙ্ক হয়েছে। DocType: LDAP Settings,LDAP First Name Field,দ্বারা LDAP প্রথম নাম ফিল্ড DocType: Contact,Middle Name,নামের মধ্যাংশ +DocType: DocField,Property Depends On,সম্পত্তি নির্ভর করে DocType: Custom Field,Field Description,মাঠ বর্ণনা apps/frappe/frappe/model/naming.py,Name not set via Prompt,প্রম্পট মাধ্যমে নির্ধারণ করে না নাম apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ইমেল ইনবক্স @@ -2841,11 +2935,11 @@ DocType: Workflow State,folder-close,ফোল্ডারের-বন্ধ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,প্রতিবেদন: DocType: Print Settings,Print taxes with zero amount,শূন্য পরিমাণ সঙ্গে করের প্রিন্ট করুন apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} এর নাম বদলানো যাবে না +DocType: Server Script,Before Insert,Sertোকানোর আগে DocType: Custom Script,Custom Script,কাস্টম স্ক্রিপ্ট DocType: Address,Address Line 2,ঠিকানা লাইন ২ DocType: Address,Reference,উল্লেখ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,নিযুক্ত করা -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে ডিফল্ট ইমেল অ্যাকাউন্ট সেটআপ করুন DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ডেটা মাইগ্রেশন ম্যাপিং বিস্তারিত DocType: Data Import,Action,কর্ম DocType: GSuite Settings,Script URL,স্ক্রিপ্ট URL- @@ -2871,11 +2965,13 @@ DocType: User,Api Access,Api অ্যাক্সেস DocType: DocField,In List View,তালিকা দেখুন DocType: Email Account,Use TLS,ব্যবহারের জন্য TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,অবৈধ লগইন অথবা পাসওয়ার্ড +DocType: Scheduled Job Type,Weekly Long,সাপ্তাহিক দীর্ঘ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ডাউনলোড টেমপ্লেট apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ফর্ম কাস্টম জাভাস্ক্রিপ্ট করো. ,Role Permissions Manager,ভূমিকা অনুমতি ম্যানেজার apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,নতুন মুদ্রণ বিন্যাস নাম apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,সাইডবার টগল করুন +DocType: Server Script,After Save (Submitted Document),সংরক্ষণের পরে (জমা দেওয়া দস্তাবেজ) DocType: Data Migration Run,Pull Insert,ঢোকান সন্নিবেশ DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",গুণক মান দিয়ে গুণমান পয়েন্টের পরে সর্বাধিক পয়েন্ট অনুমোদিত (দ্রষ্টব্য: কোনও সীমা ছাড়াই এই ক্ষেত্রটি খালি ছেড়ে দিন বা 0 সেট করুন) @@ -2893,6 +2989,7 @@ DocType: User Permission,User Permission,ব্যবহারকারীর apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ব্লগ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,দ্বারা LDAP ইনস্টল করা হয়নি apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,তথ্য দিয়ে ডাউনলোড +DocType: Server Script,Before Cancel,বাতিল করার আগে DocType: Workflow State,hand-right,হাত-ডান DocType: Website Settings,Subdomain,সাবডোমেন DocType: S3 Backup Settings,Region,এলাকা @@ -2937,12 +3034,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,পুরনো পা DocType: S3 Backup Settings,us-east-1,উস-পূর্ব-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},দ্বারা পোস্ট {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","বিন্যাস কলামে, ক্যোয়ারী কলাম লেবেল দিতে." +DocType: Onboarding Slide,Slide Fields,স্লাইড ক্ষেত্র DocType: Has Domain,Has Domain,ডোমেন হয়েছে DocType: User,Allowed In Mentions,অনুমোদিত অনুমোদিত apps/frappe/frappe/www/login.html,Don't have an account? Sign up,একটি একাউন্ট আছে না? নিবন্ধন করুন apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,আইডি ক্ষেত্রটি সরাতে পারে না apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না DocType: Address,Bihar,বিহার +DocType: Notification Settings,Subscribed Documents,সাবস্ক্রাইব করা ডকুমেন্টস apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,ব্যবহারকারীর সেটিংস DocType: Report,Reference Report,রেফারেন্স রিপোর্ট DocType: Activity Log,Link DocType,লিংক DOCTYPE @@ -2960,6 +3059,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,গুগল ক্য apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,আপনি যে পৃষ্ঠাটি খুঁজছেন অনুপস্থিত. এটা এ কারণে যে এটি সরানো হয় বা সেখানে লিংক একটি টাইপো হয় হতে পারে. apps/frappe/frappe/www/404.html,Error Code: {0},ত্রুটি কোড: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",", প্লেইন টেক্সট, লাইন মাত্র কয়েক পৃষ্ঠা তালিকা জন্য বর্ণনা. (সর্বোচ্চ 140 অক্ষরের)" +DocType: Server Script,DocType Event,ডকটাইপ ইভেন্ট DocType: Workflow,Allow Self Approval,স্ব অনুমোদন মঞ্জুরি DocType: Event,Event Category,ইভেন্ট বিভাগ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,জন ডো @@ -2975,6 +3075,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,তোমার নাম apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,সংযোগ সাফল্য DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,স্লাইড প্রকারের একটি আনবোর্ডিং স্লাইড ইতিমধ্যে বিদ্যমান। DocType: DocType,Default Sort Field,ডিফল্ট বাছাই ক্ষেত্র DocType: File,Is Folder,ফোল্ডার DocType: Document Follow,DocType,DOCTYPE @@ -3007,11 +3108,14 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,চলো DocType: Address,Preferred Billing Address,পছন্দের বিলিং ঠিকানা apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,অনেকগুলি এক অনুরোধে লিখেছেন. ছোট অনুরোধ পাঠান apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,গুগল ড্রাইভ কনফিগার করা হয়েছে। +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,নথির প্রকার {0} পুনরাবৃত্তি হয়েছে। apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,মান পরিবর্তিত DocType: Workflow State,arrow-up,তীর-আপ DocType: Dynamic Link,Link Document Type,লিঙ্ক নথি প্রকার apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} টেবিলের জন্য কমপক্ষে একটি সারি থাকা উচিত +DocType: Server Script,Server Script,সার্ভার স্ক্রিপ্ট DocType: OAuth Bearer Token,Expires In,মেয়াদ শেষ +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",ক্ষেত্রের সেটের পরিমাণ আপনি কতবার পুনরাবৃত্তি করতে চান (উদাহরণস্বরূপ: যদি আপনি স্লাইডে 3 জন গ্রাহক চান তবে এই ক্ষেত্রটি 3 এ সেট করুন Only কেবলমাত্র ক্ষেত্রের প্রথম সেটটি স্লাইডে বাধ্যতামূলক হিসাবে দেখানো হয়েছে) DocType: DocField,Allow on Submit,জমা দিন মঞ্জুরি দিন DocType: DocField,HTML,এইচটিএমএল DocType: Error Snapshot,Exception Type,ব্যতিক্রম ধরণ @@ -3021,6 +3125,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,শিরোলেখ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,আসন্ন ঘটনাবলী apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,অ্যাপ্লিকেশন অ্যাক্সেস কী এবং অ্যাপ সিক্রেট কী জন্য মান লিখুন দয়া করে +DocType: Email Account,Append Emails to Sent Folder,প্রেরিত ফোল্ডারে ইমেল যুক্ত করুন DocType: Web Form,Accept Payment,পেমেন্ট গ্রহণ করুন apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,তালিকা আইটেম নির্বাচন করুন apps/frappe/frappe/config/core.py,A log of request errors,অনুরোধ ত্রুটি লগ @@ -3039,7 +3144,7 @@ DocType: Translation,Contributed,অবদান apps/frappe/frappe/config/customization.py,Form Customization,ফর্ম কাস্টমাইজেশন apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,কোনও সক্রিয় সেশন নেই DocType: Web Form,Route to Success Link,সফল সংযোগ পথ -DocType: Top Bar Item,Right,ডান +DocType: Onboarding Slide Field,Right,ডান apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,কোন আসন্ন ইভেন্ট নেই DocType: User,User Type,ব্যবহারকারীর ধরন DocType: Prepared Report,Ref Report DocType,ডক টাইপ প্রতিবেদনের রেফারেন্স @@ -3056,6 +3161,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,অনুগ্ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL টি অবশ্যই 'http: //' বা 'https: //' দিয়ে শুরু করা উচিত apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,অপশন 3 DocType: Communication,uid,ইউআইডি +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,এটা অসম্পূর্ণ থাকতে পারে না DocType: Workflow State,Edit,সম্পাদন করা DocType: Website Settings,Chat Operators,অপারেটর চ্যাট করুন DocType: S3 Backup Settings,ca-central-1,CA-কেন্দ্রীয় -1 @@ -3067,7 +3173,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,আপনি এই ফর্মটি আবার এ অসংরক্ষিত পরিবর্তন রয়েছে. আপনি অবিরত করার পূর্বে সংরক্ষণ করুন. DocType: Address,Telangana,তেলেঙ্গানা apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট -DocType: Tag Doc Category,Tag Doc Category,ট্যাগ ডক শ্রেণী apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 টিরও বেশি কলাম সহ রিপোর্ট ল্যান্ডস্কেপ মোডে আরও ভাল দেখাচ্ছে। apps/frappe/frappe/database/database.py,Invalid field name: {0},অবৈধ মাঠের নাম: {0} DocType: Milestone,Milestone,মাইলস্টোন @@ -3076,7 +3181,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} এ যান apps/frappe/frappe/email/queue.py,Emails are muted,ইমেইল নিঃশব্দ apps/frappe/frappe/config/integrations.py,Google Services,গুগল সার্ভিসেস apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + আপ -apps/frappe/frappe/utils/data.py,1 weeks ago,1 সপ্তাহ আগে +DocType: Onboarding Slide,Slide Description,স্লাইড বিবরণ DocType: Communication,Error,ভুল apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,প্রথমে একটি বার্তা সেট আপ করুন DocType: Auto Repeat,End Date,শেষ তারিখ @@ -3097,10 +3202,12 @@ DocType: Footer Item,Group Label,দলের লেবেল DocType: Kanban Board,Kanban Board,Kanban বোর্ড apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,গুগল পরিচিতিগুলি কনফিগার করা হয়েছে। apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 রেকর্ড রফতানি করা হবে +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ব্যবহারকারীর সাথে কোনও ইমেল অ্যাকাউন্ট যুক্ত নেই। ব্যবহারকারী> ইমেল ইনবক্সের অধীনে একটি অ্যাকাউন্ট যুক্ত করুন। DocType: DocField,Report Hide,গালাগাল প্রতিবেদন লুকান apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ট্রি ভিউ জন্য পাওয়া যায় না {0} DocType: DocType,Restrict To Domain,ডোমেনে সীমাবদ্ধ DocType: Domain,Domain,ডোমেইন +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,অবৈধ ফাইল ইউআরএল। সিস্টেম প্রশাসকের সাথে যোগাযোগ করুন। DocType: Custom Field,Label Help,ট্যাগ সাহায্য DocType: Workflow State,star-empty,তারকা-খালি apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,তারিখগুলি প্রায়ই অনুমান করা সহজ. @@ -3124,6 +3231,7 @@ DocType: Workflow State,hand-left,হাত-বাম DocType: Data Import,If you are updating/overwriting already created records.,আপনি যদি ইতিমধ্যে তৈরি রেকর্ডগুলি আপলোড / ওভাররাইট করছেন apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,গ্লোবাল হয় DocType: Email Account,Use SSL,ব্যবহারের SSL- র +DocType: Webhook,HOOK-.####,অতিথি -। #### DocType: Workflow State,play-circle,খেলার-বৃত্ত apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,নথি সঠিকভাবে বরাদ্দ করা যাবে না apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",অবৈধ "নির্ভর_অন" এক্সপ্রেশন @@ -3140,6 +3248,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,সর্বশেষ সতেজতা apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,নথির প্রকারের জন্য DocType: Workflow State,arrow-right,তীর-ডান +DocType: Server Script,API Method,এপিআই পদ্ধতি DocType: Workflow State,Workflow state represents the current state of a document.,কর্মপ্রবাহ রাষ্ট্র একটি নথির বর্তমান রাষ্ট্র প্রতিনিধিত্ব করে. DocType: Letter Head,Letter Head Based On,চিঠি হেড ভিত্তিক apps/frappe/frappe/utils/oauth.py,Token is missing,টোকেন অনুপস্থিত @@ -3178,6 +3287,7 @@ DocType: Comment,Relinked,পুনঃলিঙ্ক DocType: Print Settings,Compact Item Print,কম্প্যাক্ট আইটেম প্রিন্ট DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,পুনঃনির্দেশ URL +DocType: Onboarding Slide Field,Placeholder,প্লেসহোল্ডার DocType: SMS Settings,Enter url parameter for receiver nos,রিসিভার আমরা জন্য URL প্যারামিটার লিখুন DocType: Chat Profile,Online,অনলাইন DocType: Email Account,Always use Account's Name as Sender's Name,সর্বদা অ্যাকাউন্টের নাম প্রেরকের নাম হিসাবে ব্যবহার করুন @@ -3187,7 +3297,6 @@ DocType: Workflow State,Home,বাড়ি DocType: OAuth Provider Settings,Auto,অটো DocType: System Settings,User can login using Email id or User Name,ব্যবহারকারী ইমেল আইডি বা ব্যবহারকারী নাম ব্যবহার করে লগইন করতে পারেন DocType: Workflow State,question-sign,প্রশ্ন-চিহ্ন -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} অক্ষম apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ক্ষেত্র "রুট" ওয়েব দৃশ্য জন্য বাধ্যতামূলক apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} আগে কলাম ঢোকান DocType: Energy Point Rule,The user from this field will be rewarded points,এই ক্ষেত্র থেকে ব্যবহারকারী পুরষ্কার পয়েন্ট হবে @@ -3212,6 +3321,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,মালিক য DocType: Data Migration Mapping,Push,ধাক্কা apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ফাইলগুলি এখানে ফেলে দিন DocType: OAuth Authorization Code,Expiration time,মেয়াদ অতিক্রান্ত হওয়ার সময় +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,নথি খুলুন DocType: Web Page,Website Sidebar,ওয়েবসাইট সাইডবার DocType: Web Form,Show Sidebar,পার্শ্বদণ্ড দেখান apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,আপনি এই অ্যাক্সেস করতে লগ করা প্রয়োজন {0}. @@ -3262,6 +3372,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,মুদ্রণ বিন্যাস apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,গ্রিড দেখুন টগল করুন apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,পরবর্তী রেকর্ডে যান +DocType: System Settings,Time Format,সময় ফর্ম্যাট apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,অবৈধ পেমেন্ট গেটওয়ে পরিচয়পত্র DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,এই টেমপ্লেট ফাইলটি শুধুমাত্র কিছু সারিগুলির সাথে তৈরি করা হয়েছে যা কিছু ত্রুটি আছে। আপনি এই ফাইলটি সংশোধন এবং আমদানি করার জন্য ব্যবহার করা উচিত। apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,নথি ধরনের এবং ভূমিকা অনুমতি সেট @@ -3304,12 +3415,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,উত্ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ডেস্ক অন্তর্ভুক্ত নিবন্ধসমূহ (জায়গা ধারক) DocType: DocField,Collapsible Depends On,বন্ধ হইতে উপর নির্ভর DocType: Print Style,Print Style Name,প্রিন্ট স্টাইল নাম +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,দলবদ্ধ ক্ষেত্রের জন্য ড্যাশবোর্ড চার্ট তৈরি করতে হবে DocType: Print Settings,Allow page break inside tables,টেবিল ভিতরে পৃষ্ঠা বিরতি মঞ্জুর করুন DocType: Email Account,SMTP Server,SMTP সার্ভার DocType: Print Format,Print Format Help,মুদ্রণ বিন্যাস সাহায্য apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} রুমটিতে অন্তত এক ব্যবহারকারী থাকা আবশ্যক। DocType: DocType,Beta,বেটা DocType: Dashboard Chart,Count,গণনা +DocType: Dashboard Chart,Group By Type,টাইপ গ্রুপ apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},নতুন মন্তব্য {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},পুনরুদ্ধার {0} যেমন {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","আপনি আপডেট করা হয়, "ওভাররাইট" নির্বাচন করুন অন্য ভাষার বিদ্যমান সারি মুছে ফেলা হবে না." @@ -3320,14 +3433,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ব্য DocType: Web Form,Web Form,ওয়েব ফরম apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},তারিখ {0} ফর্ম্যাটে থাকা আবশ্যক: {1} DocType: About Us Settings,Org History Heading,শীর্ষক অর্গ ইতিহাস +DocType: Scheduled Job Type,Scheduled Job Type,নির্ধারিত কাজের ধরণ DocType: Print Settings,Allow Print for Cancelled,বাতিলকৃত জন্য প্রিন্ট করার অনুমতি দিন DocType: Communication,Integrations can use this field to set email delivery status,ঐক্যবদ্ধতার ইমেইল বিতরণ অবস্থা সেট এই ক্ষেত্র ব্যবহার করতে পারেন +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,সমস্ত লিঙ্কযুক্ত নথি বাতিল করার অনুমতি আপনার কাছে নেই। DocType: Web Form,Web Page Link Text,ওয়েব লিংক পাতা শিরোনাম DocType: Page,System Page,সিস্টেম পৃষ্ঠা apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","ইত্যাদি ডিফল্ট বিন্যাস, পৃষ্ঠার মাপ, মুদ্রণ এবং প্রতিচ্ছবিকরণ যন্ত্রসমূহ" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,প্রস্থান apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} এর জন্য কাস্টমাইজেশনগুলি রপ্তানি করা হয়েছে:
{1} DocType: Website Settings,Include Search in Top Bar,অন্তর্ভুক্ত করুন উপরের বারে অনুসন্ধান +DocType: Scheduled Job Type,Daily Long,ডেইলি লং DocType: GSuite Settings,Allow GSuite access,GSuite অ্যাক্সেস মঞ্জুর DocType: DocType,DESC,DESC DocType: DocType,Naming,নামকরণ @@ -3416,6 +3532,7 @@ DocType: Notification,Send days before or after the reference date,আগে ব DocType: User,Allow user to login only after this hour (0-24),ব্যবহারকারী শুধুমাত্র এই ঘন্টা পর লগইন করতে (0-24) অনুমতি দিন apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",একের পর এক ক্রম বরাদ্দ করুন DocType: Integration Request,Subscription Notification,সাবস্ক্রিপশন বিজ্ঞপ্তি +DocType: Customize Form Field, Allow in Quick Entry ,দ্রুত প্রবেশের অনুমতি দিন in apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,বা সংযুক্ত করুন DocType: Auto Repeat,Start Date,শুরুর তারিখ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,মূল্য @@ -3430,6 +3547,7 @@ DocType: Google Drive,Backup Folder ID,ব্যাকআপ ফোল্ডা apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,না বিকাশকারী মোডে! Site_config.json সেট অথবা 'কাস্টম' DOCTYPE করতে. DocType: Workflow State,globe,পৃথিবী DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ভিডিও DocType: Assignment Rule,Priority,অগ্রাধিকার DocType: Email Queue,Unsubscribe Param,আন-সাবস্ক্রাইব পরম DocType: DocType,Hide Sidebar and Menu,সাইডবার এবং মেনু লুকান @@ -3441,6 +3559,7 @@ DocType: DocType,Allow Import (via Data Import Tool),আমদানি মঞ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,সিনিয়র DocType: DocField,Float,ভাসা DocType: Print Settings,Page Settings,পৃষ্ঠা সেটিংস +DocType: Notification Settings,Notification Settings,বিজ্ঞপ্তি সেটিংস apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,সংরক্ষণ করা হচ্ছে ... apps/frappe/frappe/www/update-password.html,Invalid Password,অবৈধ পাসওয়ার্ড DocType: Contact,Purchase Master Manager,ক্রয় মাস্টার ম্যানেজার @@ -3455,6 +3574,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,জিমেইল DocType: Letter Head,Letter Head Image,লেটার হেড ইমেজ DocType: Address,Party GSTIN,পার্টির GSTIN +DocType: Scheduled Job Type,Cron Format,ক্রোন ফর্ম্যাট apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} প্রতিবেদন DocType: SMS Settings,Use POST,পোস্ট ব্যবহার করুন DocType: Communication,SMS,খুদেবার্তা @@ -3498,18 +3618,20 @@ DocType: Workflow,Allow approval for creator of the document,নথি স্র apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,প্রতিবেদন সংরক্ষণ করুন DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API এন্ডপয়েন্ট আর্গস +DocType: DocType Action,Server Action,সার্ভার অ্যাকশন apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,অ্যাডমিনিস্ট্রেটর ব্যবহার {0} থেকে {1} IP ঠিকানা মাধ্যমে {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,মূল ক্ষেত্র অবশ্যই একটি বৈধ ক্ষেত্রের নাম হতে হবে apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,সাবস্ক্রিপশন সংশোধন করার সময় ব্যর্থ হয়েছে DocType: LDAP Settings,LDAP Group Field,এলডিএপি গ্রুপ ফিল্ড +DocType: Notification Subscribed Document,Notification Subscribed Document,বিজ্ঞপ্তি সাবস্ক্রাইব করা ডকুমেন্ট apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,সমান apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,অবৈধ CSV বিন্যাসে -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","কিউজেড ট্রে অ্যাপ্লিকেশনটিতে সংযোগ করার সময় ত্রুটি ...

কাঁচা মুদ্রণ বৈশিষ্ট্যটি ব্যবহার করতে আপনার কিউজেড ট্রে অ্যাপ্লিকেশন ইনস্টল এবং চলমান থাকা দরকার।

কিউজেড ট্রে ডাউনলোড এবং ইনস্টল করতে এখানে ক্লিক করুন
কাঁচা মুদ্রণ সম্পর্কে আরও জানতে এখানে ক্লিক করুন ।" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,সেট ব্যাক-আপ সংখ্যা DocType: DocField,Do not allow user to change after set the first time,প্রথমবার ব্যবহারকারী পর সেট পরিবর্তন করার অনুমতি দেয় না apps/frappe/frappe/utils/data.py,1 year ago,1 বছর আগে +DocType: DocType,Links Section,লিংক বিভাগ apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","সমস্ত মুদ্রণ, ডাউনলোড এবং রফতানি ইভেন্ট দেখুন লগ" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 মাস DocType: Contact,Contact,যোগাযোগ @@ -3535,16 +3657,18 @@ DocType: Auto Email Report,Dynamic Report Filters,গতিশীল রিপ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,নতুন ইমেইল DocType: Custom DocPerm,Export,রপ্তানি +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},সফলভাবে আপডেট হয়েছে {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,কিউজেড ট্রে ব্যর্থ হয়েছে: DocType: Dropbox Settings,Dropbox Settings,ড্রপবক্স সেটিংস DocType: About Us Settings,More content for the bottom of the page.,পৃষ্ঠার নীচের অংশে আরো কন্টেন্ট জন্য. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,এই দস্তাবেজটি ফেরত দেওয়া হয়েছে apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,গুগল ড্রাইভের ব্যাকআপ সফল। +DocType: Webhook,Naming Series,নামকরণ সিরিজ DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE যা এই কর্মপ্রবাহ প্রযোজ্য. DocType: User,Enabled,সক্রিয় apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,সেটআপ সম্পূর্ণ করতে ব্যর্থ হয়েছে apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},নতুন {0}: {1} -DocType: Tag Category,Category Name,নামের তালিকা +DocType: Blog Category,Category Name,নামের তালিকা apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,সন্তানের টেবিল ডেটা পেতে পিতামাতার প্রয়োজন apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,আমদানি সদস্যবৃন্দ DocType: Print Settings,PDF Settings,পিডিএফ সেটিংস @@ -3580,6 +3704,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ক্যালেন্ডার apps/frappe/frappe/client.py,No document found for given filters,কোন দস্তাবেজ দেওয়া ফিল্টারের পাওয়া apps/frappe/frappe/config/website.py,A user who posts blogs.,একজন ব্যবহারকারী যারা ব্লগ পোস্ট করেন। +DocType: DocType Action,DocType Action,ডকটাইপ অ্যাকশন apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","আরেকটি {0} নামের {1} বিদ্যমান সাথে, অন্য নাম নির্বাচন" DocType: DocType,Custom?,কাস্টম? DocType: Website Settings,Website Theme Image,ওয়েবসাইট বিষয়বস্তু চিত্র @@ -3589,6 +3714,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},লোড apps/frappe/frappe/config/integrations.py,Backup,ব্যাকআপ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ড্যাশবোর্ড চার্ট তৈরি করতে নথি প্রকারের প্রয়োজন DocType: DocField,Read Only,শুধুমাত্র পঠনযোগ্য +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,রেজারপে অর্ডার তৈরি করতে পারেনি apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,নতুন নিউজলেটার DocType: Energy Point Log,Energy Point Log,শক্তি পয়েন্ট লগ DocType: Print Settings,Send Print as PDF,পিডিএফ হিসাবে প্রিন্ট পাঠান @@ -3613,16 +3739,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,আ apps/frappe/frappe/www/login.html,Or login with,অথবা লগইন করুন DocType: Error Snapshot,Locals,অঁচলবাসী apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},মাধ্যমে আদানপ্রদান {0} উপর {1} {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} একটি মন্তব্যে উল্লেখ {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,দ্বারা গ্রুপ নির্বাচন করুন ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,যেমন (55 + + 434) / 4 বা = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} প্রয়োজন DocType: Integration Request,Integration Type,ইন্টিগ্রেশন ধরণ DocType: Newsletter,Send Attachements,Attachements পাঠান +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,কোনও ফিল্টার পাওয়া যায় নি apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,গুগল পরিচিতি সংহত। DocType: Transaction Log,Transaction Log,লেনদেন লগ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),গত মাসের পারফরম্যান্সের ভিত্তিতে পরিসংখ্যান ({0} থেকে {1} থেকে) DocType: Contact Us Settings,City,শহর +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,সমস্ত ব্যবহারকারীর জন্য কার্ড লুকান DocType: DocField,Perm Level,স্থায়ী ঢেউ তোলা শ্রেনী apps/frappe/frappe/www/confirm_workflow_action.html,View document,নথিটি দেখুন apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,আজকের ক্যালেন্ডার ঘটনাগুলি @@ -3632,6 +3759,7 @@ DocType: Blog Category,Blogger,ব্লগার DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","সক্ষম করা থাকলে, দস্তাবেজের পরিবর্তনগুলি ট্র্যাক করা হয় এবং সময়রেখায় প্রদর্শিত হয়" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1} DocType: Energy Point Log,Appreciation,রসাস্বাদন +DocType: Dashboard Chart,Number of Groups,গোষ্ঠীর সংখ্যা apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,তালিকা দেখুন DocType: Workflow,Don't Override Status,স্থিতি ওভাররাইড না apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,অনুসন্ধানের শর্ত @@ -3670,7 +3798,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,সিএন-উত্তর দক্ষিণে -1 DocType: Dropbox Settings,Limit Number of DB Backups,ডিবি ব্যাকআপ সংখ্যা সীমিত DocType: Custom DocPerm,Level,শ্রেনী -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,শেষ 30 দিন DocType: Custom DocPerm,Report,রিপোর্ট apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,পরিমাণ 0 অনেক বেশী হতে হবে. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,কিউজেড ট্রেতে সংযুক্ত! @@ -3687,6 +3814,7 @@ DocType: S3 Backup Settings,us-west-2,উস-পশ্চিমে-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,শিশু ছক নির্বাচন করুন apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ট্রিগার প্রাথমিক ক্রিয়া apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,পরিবর্তন +DocType: Social Login Key,User ID Property,ব্যবহারকারী আইডি সম্পত্তি DocType: Email Domain,domain name,ডোমেন নাম DocType: Contact Email,Contact Email,যোগাযোগের ই - মেইল DocType: Kanban Board Column,Order,ক্রম @@ -3709,7 +3837,7 @@ DocType: Contact,Last Name,নামের শেষাংশ DocType: Event,Private,ব্যক্তিগত apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,আজকের জন্য কোন সতর্কতা DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),পিডিএফ হিসেবে ইমেইল প্রিন্ট সংযুক্তি পাঠান (প্রস্তাবিত) -DocType: Web Page,Left,বাম +DocType: Onboarding Slide Field,Left,বাম DocType: Event,All Day,সারাদিন apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,কিছু দেখে মনে হচ্ছে এই সাইটের পেমেন্ট গেটওয়ে কনফিগারেশন সাথে ভুল। কোনো অর্থ প্রদানের তৈরি করা হয়েছে। DocType: GCalendar Settings,State,রাষ্ট্র @@ -3740,7 +3868,6 @@ DocType: Workflow State,User,ব্যবহারকারী DocType: Website Settings,"Show title in browser window as ""Prefix - title""",হিসাবে ব্রাইজার উইণ্ডোয় দেখান শিরোনাম "উপসর্গ - শিরোনাম" DocType: Payment Gateway,Gateway Settings,গেটওয়ে সেটিংস apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ডকুমেন্ট টাইপ টেক্সট -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,চালান টেস্ট apps/frappe/frappe/handler.py,Logged Out,প্রস্থান apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,আরো ... DocType: System Settings,User can login using Email id or Mobile number,ব্যবহারকারী ইমেইল আইডি বা মোবাইল নম্বর ব্যবহার করে লগইন করতে পারেন @@ -3756,6 +3883,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,সারাংশ DocType: Event,Event Participants,ইভেন্ট অংশগ্রহণকারীদের DocType: Auto Repeat,Frequency,ফ্রিকোয়েন্সি +DocType: Onboarding Slide,Slide Order,স্লাইড অর্ডার DocType: Custom Field,Insert After,পরে ঢোকান DocType: Event,Sync with Google Calendar,গুগল ক্যালেন্ডারের সাথে সিঙ্ক করুন DocType: Access Log,Report Name,গালাগাল প্রতিবেদন নাম @@ -3783,6 +3911,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0} apps/frappe/frappe/config/website.py,Content web page.,বিষয়বস্তু ওয়েবপৃষ্ঠাটি. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,একটি নতুন ভূমিকা করো +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ওয়েব পৃষ্ঠা দেখুন +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,নতুন অ্যাসাইনমেন্ট DocType: Google Contacts,Last Sync On,শেষ সিঙ্ক অন DocType: Deleted Document,Deleted Document,মোছা ডকুমেন্ট apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ওহো! কিছু ভুল হয়েছে @@ -3792,7 +3922,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ভূদৃশ্ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,জাভাস্ক্রিপ্ট ক্লায়েন্ট সাইড স্ক্রিপ্ট এক্সটেনশন DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,নিম্নলিখিত doctypes জন্য রেকর্ড ফিল্টার করা হবে -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,সময়সূচী নিষ্ক্রিয় +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,সময়সূচী নিষ্ক্রিয় DocType: Blog Settings,Blog Introduction,ব্লগ পরিচিতি DocType: Global Search Settings,Search Priorities,অগ্রাধিকার অনুসন্ধান করুন DocType: Address,Office,অফিস @@ -3802,12 +3932,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ড্যাশবোর্ DocType: User,Email Settings,ইমেইল সেটিংস apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,এখানে ড্রপ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","যদি সক্ষম করা থাকে তবে ব্যবহারকারী দুটি ফ্যাক্টর এথ ব্যবহার করে যে কোনও আইপি ঠিকানা থেকে লগইন করতে পারেন, এটি সিস্টেম সেটিংসে সমস্ত ব্যবহারকারীর জন্যও সেট করা যেতে পারে" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,মুদ্রক সেটিংস ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,অবিরত আপনার পাসওয়ার্ড দিন apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,আমাকে apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} কোনো বৈধ অবস্থা না apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,সমস্ত নথি প্রকারের জন্য প্রয়োগ করুন -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,শক্তি পয়েন্ট আপডেট +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,শক্তি পয়েন্ট আপডেট +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),যদি (দিনগুলির জন্য) নিষ্ক্রিয় থাকে তবে কেবল দৈনিক চাকরিগুলি চালান apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',দয়া করে অন্য একটি অর্থ প্রদানের পদ্ধতি নির্বাচন করুন। পেপ্যাল মুদ্রায় লেনদেন অবলম্বন পাওয়া যায়নি '{0}' DocType: Chat Message,Room Type,ঘরের বিবরণ DocType: Data Import Beta,Import Log Preview,আমদানি পূর্বরূপ দেখুন @@ -3816,6 +3946,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-বৃত্ত DocType: LDAP Settings,LDAP User Creation and Mapping,এলডিএপি ব্যবহারকারী তৈরি এবং ম্যাপিং apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',আপনি জিজ্ঞাসা 'গ্রাহকদের মধ্যে কমলা এটি' দ্বারা জিনিষ খুঁজে পেতে পারেন +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,আজকের ঘটনা apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,দুঃখিত! ব্যবহারকারী তাদের নিজের রেকর্ড করতে সম্পূর্ণ সুযোগ থাকা উচিত. ,Usage Info,ইনফো ব্যবহার apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,কীবোর্ড শর্টকাটগুলি দেখান @@ -3831,6 +3962,7 @@ DocType: Communication,Communication Type,কমিউনিকেশন প্ DocType: DocField,Unique,অনন্য apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,আংশিক সাফল্য DocType: Email Account,Service,সেবা +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,সেটআপ> ব্যবহারকারী DocType: File,File Name,ফাইল নাম apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),এটি করা হয়নি {0} জন্য {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},পুনরায়: {0} @@ -3844,6 +3976,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,সম DocType: GCalendar Settings,Enable,সক্ষম করা DocType: Google Maps Settings,Home Address,বাসার ঠিকানা apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),আপনি শুধুমাত্র এক বারেই 5000 রেকর্ড অবধি আপলোড করতে পারেন. (কিছু কিছু ক্ষেত্রে কম হতে পারে) +DocType: Report,"output in the form of `data = [columns, result]`","output ডেটা = [কলাম, ফলাফল] form আকারে আউটপুট `" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,প্রযোজ্য নথি প্রকার apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ব্যবহারকারীর কার্যভারের জন্য বিধিগুলি সেট আপ করুন। apps/frappe/frappe/model/document.py,Insufficient Permission for {0},জন্য অপর্যাপ্ত অনুমতি {0} @@ -3859,7 +3992,6 @@ DocType: Communication,To and CC,থেকে এবং সিসি DocType: SMS Settings,Static Parameters,স্ট্যাটিক পরামিতি DocType: Chat Message,Room,কক্ষ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},আপডেট করা {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,পটভূমি কাজ চলছে না। প্রশাসকের সাথে যোগাযোগ করুন DocType: Portal Settings,Custom Menu Items,কাস্টম মেনু আইটেম apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ওয়েবসাইট স্লাইডশো সংযুক্ত সমস্ত চিত্র পাবলিক করা উচিত DocType: Workflow State,chevron-right,শেভ্রন-ডান @@ -3872,10 +4004,12 @@ DocType: Website Settings,Brand HTML,ব্র্যান্ড এইচটি apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,ব্যাকআপ নিন DocType: DocType,Allow Auto Repeat,স্বতঃ পুনরাবৃত্তি করার অনুমতি দিন apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,দেখানোর জন্য কোনও মান নেই +DocType: DocType,URL for documentation or help,ডকুমেন্টেশন বা সাহায্যের জন্য ইউআরএল DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ইমেল টেমপ্লেট apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,সফলভাবে {0} রেকর্ড আপডেট হয়েছে। apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,প্রয়োজন উভয় লগইন এবং পাসওয়ার্ড +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,দিন\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,সর্বশেষ নথি পেতে রিফ্রেশ করুন. DocType: User,Security Settings,নিরাপত্তা বিন্যাস apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,কলাম যুক্ত @@ -3884,6 +4018,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},রপ্তানি প্রতিবেদন: {0} DocType: Auto Email Report,Filter Meta,ফিল্টার মেটা DocType: Web Page,Set Meta Tags,মেটা ট্যাগ সেট করুন +DocType: Email Account,Use SSL for Outgoing,বহির্গামী জন্য SSL ব্যবহার করুন 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: S3 Backup Settings,Backup Limit,ব্যাকআপ সীমা DocType: Dashboard Chart,Line,লাইন @@ -3915,4 +4050,3 @@ DocType: DocField,Ignore User Permissions,ব্যবহারকারীর apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,সফলভাবে সংরক্ষিত apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,অনুগ্রহ করে আপনার প্রশাসক আপনার সাইন-আপ যাচাই করার জন্য জিজ্ঞেস DocType: Domain Settings,Active Domains,সক্রিয় ডোমেন -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,দেখান লগ diff --git a/frappe/translations/bs.csv b/frappe/translations/bs.csv index 9771343baf..915a93be4d 100644 --- a/frappe/translations/bs.csv +++ b/frappe/translations/bs.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Molimo odaberite polje za iznos. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Učitavanje datoteke za uvoz ... DocType: Assignment Rule,Last User,Poslednji korisnik -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, je dodijeljen od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Zadržane sesije su spremljene apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Učitaj datoteku DocType: Email Queue,Email Queue records.,E-mail Queue Records. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Stablo DocType: User,User Emails,korisnika Email DocType: User,Username,Korisničko apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Kreirajte dnevnik apps/frappe/frappe/model/base_document.py,Value too big,Vrijednost prevelika DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mjesečno DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Enable Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Opasnost -DocType: Address,Email Address,E-mail adresa +apps/frappe/frappe/www/login.py,Email Address,E-mail adresa DocType: Workflow State,th-large,og veliki DocType: Communication,Unread Notification Sent,Nepročitane Obavijest poslana apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz . @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Otka DocType: DocType,Is Published Field,Je objavljen Field DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings DocType: Email Group,Email Group,E-mail Group +apps/frappe/frappe/__init__.py,Only for {},Samo za {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google kalendar - Ne mogu se izbrisati događaj {0} iz Google kalendara, kod greške {1}." DocType: Event,Pulled from Google Calendar,Preuzeto sa Google kalendara DocType: Note,Seen By,Viđeno od strane apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,dodavanje više -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Stekli ste neke energetske bodove apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nije važeća slika korisnika. DocType: Energy Point Log,Reverted,Obrnuto DocType: Success Action,First Success Message,Prva poruka o uspehu @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ne kao apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Svojstva Promjena polje (skrivanje , samo za čitanje , dozvola i sl. )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cenite +DocType: Notification Settings,Document Share,Document Share DocType: Workflow State,lock,Zaključati apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Podešavanja za Kontaktirajte nas stranicu. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator prijavljeni @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ako je omogućen, dokument je označen kao vidljiv, prvi put kada ga korisnik otvori" DocType: Auto Repeat,Repeat on Day,Ponavljam na dan DocType: DocField,Color,Boja +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Označi sve kao pročitano DocType: Data Migration Run,Log,Prijavite DocType: Workflow State,indent-right,alineje-desno DocType: Has Role,Has Role,ima uloga @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Prikaži Traceback DocType: DocType,Default Print Format,Zadani oblik ispisa DocType: Workflow State,Tags,tagovi +DocType: Onboarding Slide,Slide Type,Tip slajda apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ništa: Kraj Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polja se ne može postaviti kao jedinstven u {1}, jer postoje nejedinstvene postojeće vrijednosti" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Vrste dokumenata @@ -135,7 +138,6 @@ DocType: Language,Guest,Gost DocType: DocType,Title Field,Naslov Field DocType: Error Log,Error Log,Error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Nevažeća URL adresa -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Zadnjih 7 dana apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ponavlja poput "abcabcabc" su samo malo teže pogoditi nego "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ako mislite da je ovo neovlašćeno, molimo promijenite lozinku administratora." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Klijent apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Izaberite kolonu apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ovaj oblik je promijenjen nakon što ste ga pre DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Dnevnik obavijesti DocType: System Settings,"If not set, the currency precision will depend on number format","Ako nije postavljena, valuta preciznost zavisi od broja formata" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otvorite Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Čini se da postoji problem sa konfiguracijom trake servera. U slučaju neuspeha, iznos će biti vraćen na vaš račun." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Po apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Poslati DocType: Workflow Action Master,Workflow Action Name,Workflow Akcija Ime apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Vrsta dokumenta se ne može spajati -DocType: Web Form Field,Fieldtype,Polja +DocType: Onboarding Slide Field,Fieldtype,Polja apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nije zip datoteku DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Je li e-mail poslan? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart apps/frappe/frappe/desk/form/save.py,Did not cancel,Nije otkazano DocType: Social Login Key,Client Information,Informacije o klijentu +DocType: Energy Point Rule,Apply this rule only once per document,Primijenite ovo pravilo samo jednom na dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Samo za čitanje ovisi apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Prijavljeni kao gost ili administrator DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Razlog 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Nema aktivnosti +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nema aktivnosti apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacije treće strane apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nema događaja danas apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ne možete sebi dati ocjene apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mora biti podnošljiv za izabrani Doc događaj DocType: Workflow State,circle-arrow-up,krug sa strelicom prema gore @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nije dozvoljeno za {0}: {1}. Ograničeno polje: {2} 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,You are not allowed to delete a standard Website Theme,Vam nije dozvoljeno da obrišete standardni Web Theme +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Kreirajte svoj prvi {0} DocType: Data Import,Log Details,Detalji o evidenciji DocType: Workflow Transition,Example,Primjer DocType: Webhook Header,Webhook Header,Webhook Header @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat Background apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Označi kao pročitano apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ažuriranje {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Već postoji brodski slajd {0} s istim redoslijedom dijapozitiva apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Report DocType: Translation,Contributed Translation Doctype Name,Navedeno ime doktorskog prijevoda +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavke> Prilagodite obrazac DocType: PayPal Settings,Redirect To,preusmeriti na DocType: Data Migration Mapping,Pull,Povucite DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript format : frappe.query_reports [ ' REPORTNAME ' ] = { } @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Interni rekord akcija dokum DocType: Energy Point Settings,Review Levels,Razina pregleda DocType: Workflow State,Comment,Komentar DocType: Data Migration Plan,Postprocess Method,Postproces metod +DocType: DocType Action,Action Type,Tip radnje apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Uslikaj DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Možete promijeniti Poslao dokumente tako da ih otkazuje , a zatim , njihovih izmjena i dopuna ." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Pokaži više detalja +DocType: Server Script,Before Submit,Prije slanja 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,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,Archive,Arhiva @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox pristupni ključ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Pogrešno polje {0} u add_fetch konfiguraciji prilagođenog skripta apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Odaberite Google kontakte s kojima kontakt treba sinkronizirati. DocType: Web Page,Main Section (HTML),Glavni odjeljak (HTML) +DocType: Scheduled Job Type,Annual,godišnji DocType: Workflow State,headphones,slušalice apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Lozinka je potrebno ili odaberite Čekanje lozinku DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,npr replies@yourcomany.com. Svi odgovori će doći na ovu inbox. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Određuje redoslijed slajdova u čarobnjaku. Ako slajd neće biti prikazan, prioritet treba postaviti na 0." DocType: Data Migration Run,Current Mapping,Trenutni mapiranje apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Valjana email i ime potrebna apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Sve priloge učinite privatnim @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Prijelazna pravila apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Prikazivanje samo prvih {0} redaka u pregledu apps/frappe/frappe/core/doctype/report/report.js,Example:,Primjer: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ograničenja DocType: Workflow,Defines workflow states and rules for a document.,Definira workflow država i pravila za dokument. DocType: Workflow State,Filter,filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Provjerite dnevnik grešaka za više informacija: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Posao apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} prijavljeni od: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Informacije apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable DocType: Transaction Log,Row Index,Indeks reda DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Button Pomoć DocType: Kanban Board Column,purple,purple DocType: About Us Settings,Team Members,Članovi tima +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Izvoditi će zakazane zadatke samo jednom dnevno za neaktivne stranice. Zadano 4 dana ako je postavljeno na 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Zakazani posao DocType: Custom DocPerm,Permissions,Dopuštenja apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks za internu integraciju DocType: Dropbox Settings,Allow Dropbox Access,Dopusti pristup Dropbox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skeni DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Queue DocType: Access Log,Columns / Fields,Stupci / polja apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets za formate štampanja +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Za izradu grafikona nadzorne ploče potrebno je polje Zbirne funkcije apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Ne može identificirati otvoreno {0}. Pokušajte nešto drugo. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaše informacije su dostavljeni apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Korisnik {0} se ne može izbrisati @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Naziv polja DocType: Assignment Rule,Assign To Users,Dodijeli korisnicima apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ili apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Naziv modula ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Nastaviti +DocType: Onboarding Slide,Continue,Nastaviti apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google integracija je onemogućena. DocType: Custom Field,Fieldname,"Podataka, Naziv Polja" DocType: Workflow State,certificate,certifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Provjera ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Zadatak {0} {1} je uklonjen apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Prvi stupac podataka mora biti prazan. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Prikaži sve verzije apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Pogledajte komentar @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Zabraniti IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,komandna tabla apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google kalendar - Nije moguće ažurirati događaj {0} u Google kalendaru, kôd pogreške {1}." +DocType: Notification Log,Email Content,Sadržaj e-pošte apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Traži ili upišite komandu DocType: Activity Log,Timeline Name,Timeline ime apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Samo jedan {0} može se postaviti kao primarni. DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Sales Manager Master +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Morate omogućiti JavaScript da bi vaša aplikacija radila. DocType: User Permission,For Value,Za vrijednost DocType: Event,Google Calendar ID,ID Google kalendara apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Polje LDAP-ovog imena apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: GCalendar Account,Allow GCalendar Access,Dozvoli GCalendar pristup apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je obavezno polje +DocType: DocType,Documentation Link,Link za dokumentaciju apps/frappe/frappe/templates/includes/login/login.js,Login token required,Potreban je token token apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mjesečni rang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Odaberite više stavki s liste @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL datoteke DocType: Version,Table HTML,Tabela HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Dodaj Pretplatnici +DocType: Notification Log,Energy Point,Energetska tačka apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Buduća događanja za danas DocType: Google Calendar,Push to Google Calendar,Pritisnite Google kalendar DocType: Notification Recipient,Email By Document Field,E-mail dokumentom Field @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,U gostima DocType: Currency,Fraction Units,Frakcije Jedinice apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} od {1} na {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Označi kao Gotovo DocType: Chat Message,Type,Vrsta DocType: Google Settings,OAuth Client ID,OAuth ID klijenta DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Nazad na Desk DocType: Web Form,Amount Based On Field,Iznos po osnovu Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nema praćenu verziju. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Korisnik je obavezna za Share DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dozvolite Nepotpune Obrasci @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Molimo provjerite svoj e-mail za verifikaciju apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca DocType: Communication,Bounced,Odbijeno +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,od DocType: Deleted Document,Deleted Name,Deleted ime apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Korisnici sustava i web stranice DocType: Workflow Document State,Doc Status,Doc status @@ -521,6 +546,7 @@ DocType: Language,Language Code,Jezik Kod DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Napomena: Po defaultu se pošalju e-pošta za neuspele rezervne kopije. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Dodaj Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS poslati na sljedeće brojeve: {0} +DocType: Notification Settings,Assignments,Zadaci apps/frappe/frappe/utils/data.py,{0} and {1},{0} {1} i apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Započnite razgovor. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Uvek dodajte "Nacrt" Heading za štampanje nacrta dokumenata @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Početak trenutnog mapiranja apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail je označena kao spam DocType: Comment,Website Manager,Web Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Datoteka je prekinuta. Molimo pokušajte ponovo. +DocType: Data Import Beta,Show Failed Logs,Prikaži neuspjele zapisnike apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Prevodi apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Ste odabrali Nacrt ili Otkazano dokumenata apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} je podešen na stanje {1} za {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokument redu za slanje DocType: GSuite Templates,Destination ID,Destinacija ID DocType: Desktop Icon,List,popis DocType: Activity Log,Link Name,link ime +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Niste \ DocType: System Settings,mm/dd/yyyy,dd / mm / gggg +DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,prijašnji @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,tamno siva apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Uspješna: {0} do {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Spusti +DocType: Dashboard Chart,Aggregate Function Based On,Zbirna funkcija na osnovu apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Molimo Vas da duplikat to napraviti promjene apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Pritisnite taster Enter da biste sačuvali apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF generacije nije uspio zbog slomljena slike linkovi @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Dana prije apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dnevni događaji trebali bi završiti istog dana. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Uredi ... DocType: Workflow State,volume-down,glasnoće prema dolje +DocType: Onboarding Slide,Help Links,Linkovi pomoći apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Pristup sa ove IP adrese nije dozvoljen +DocType: Notification Settings,Enable Email Notifications,Omogući Obavijesti putem e-pošte apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Pošalji Obavještenje DocType: DocField,Collapsible,Sklopivi @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Zadnja sigurnosna kopija uključena DocType: Customize Form Field,Customize Form Field,Prilagodba polja obrasca DocType: Energy Point Rule,For Document Event,Za događaj s dokumentima DocType: Website Settings,Chat Room Name,Soba Ime sobe +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Nepromijenjena DocType: OAuth Client,Grant Type,Grant Tip apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Provjerite koji dokumenti su čitljivi od strane Korisnika DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,kori DocType: Auto Repeat,Quarterly,Kvartalno apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Sve vrijeme apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status ilegalnog dokumenta za {0} DocType: Email Account,Enable Auto Reply,Enable Auto Odgovor apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nisam vidio @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Poruk DocType: Email Account,Notify if unreplied,Obavijesti ako Unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skenirajte QR kod i ukucajte prikazani kôd. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Omogući gradijente +DocType: Scheduled Job Type,Hourly Long,Svakog sata DocType: System Settings,Minimum Password Score,Minimalna Password Score DocType: DocType,Fields,Polja DocType: System Settings,Your organization name and address for the email footer.,Vaše ime i adresu organizacije za e-footer. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tabe apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup complete! apps/frappe/frappe/config/desktop.py,Developer,Razvijač apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Objavio +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Da biste ga omogućili slijedite upute na sljedećoj vezi: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} je u redu {1} Ne možete imati i URL i podredjene stavke apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Za sljedeće tablice treba biti najmanje jedan red: {0} DocType: Print Format,Default Print Language,Podrazumevani jezik ispisa apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predniki Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Korijen {0} se ne može izbrisati +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nema neuspjelih dnevnika apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Još nema komentara apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Molimo da podesite SMS poruku pre nego što ga podesite kao metod autentifikacije putem SMS-a apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Oba DOCTYPE i Ime potrebno @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Proizvodi apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meni DocType: DefaultValue,DefaultValue,Zadana vrijednost DocType: Auto Repeat,Daily,Svakodnevno +DocType: Onboarding Slide,Max Count,Maks apps/frappe/frappe/config/users_and_permissions.py,User Roles,Korisničke Uloge DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Nekretnine seter nadjačava standardni DOCTYPE ili Field imovinu apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ne možete ažurirati : Nepravilan / istekla . @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,domaćin DocType: Data Import Beta,Import File,Uvezi datoteku +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Greška predloška apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolona {0} već postoji. DocType: ToDo,High,Visok apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Novi događaj @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Prikaži u filteru DocType: Address,Daman and Diu,Daman and Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekat DocType: Address,Personal,Osobno +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Neobrađene postavke štampanja ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Detalje potražite na https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Prikaži kao cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Uzmi video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Uvodni podaci za stranicu Kontaktirajte nas DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,palac dolje +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Otkazivanje dokumenata DocType: User,Send Notifications for Email threads,Pošalji obavijesti za teme e-pošte apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne u Developer Mode @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Izrada dato DocType: DocField,In Global Search,U Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alineje-lijevo -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina prije apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,To je rizično izbrisati ovu datoteku: {0}. Molimo vas da se obratite System Manager. DocType: Currency,Currency Name,Valuta Ime apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No Email @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Korisničko polje DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} već odjavljeni za {1} {2} +DocType: Scheduled Job Type,Stopped,Zaustavljen apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nije uklonjeno apps/frappe/frappe/desk/like.py,Liked,Liked apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Pošalji odmah apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType ne mogu imati zadani format za ispis, koristite Customize obrazac" +DocType: Server Script,Allow Guest,Dozvoli gostu DocType: Report,Query,Upit DocType: Customize Form,Sort Order,Poredak sortiranja apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Dva faktorska autentikacijska metoda apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Prvo podesite ime i sačuvajte zapis. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Zapisa +DocType: DocType Link,Link Fieldname,Naziv polja veze apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Podijeljeno sa {0} apps/frappe/frappe/email/queue.py,Unsubscribe,unsubscribe DocType: View Log,Reference Name,Referenca Ime apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Promenite korisnika +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Prvo apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update Translations DocType: Error Snapshot,Exception,Izuzetak DocType: Email Account,Use IMAP,Koristite IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Pravila definiraju prijelaz stanja u tijek rada. DocType: File,Folder,Fascikla DocType: Website Route Meta,Website Route Meta,Website Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Klizno polje na brodu DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Menadžer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opcija 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Pos apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurirajte grafikone DocType: User,Last IP,Posljednja IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Molimo dodajte temu vašoj e-pošti -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Novi dokument {0} je podeljen sa vama {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vratio se {1} DocType: Email Account,Track Email Status,Status e-pošte @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Uobičajeno Odlazni DocType: Workflow State,play,igrati apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Kliknite na link ispod da završite registraciju i postaviti novu lozinku apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nije dodano +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} dobio je {1} poena za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ne-mail Accounts Assigned DocType: S3 Backup Settings,eu-west-2,eu-zapad-2 DocType: Contact Us Settings,Contact Us Settings,Kontaktirajte nas Settings @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Tražim . DocType: Workflow State,text-width,tekst širine apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimalni Prilog Limit za ovaj rekord postignut. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Pretražite po imenu datoteke ili ekstenziji +DocType: Onboarding Slide,Slide Title,Naslov slajda DocType: Notification,View Properties (via Customize Form),Pogledajte nekretnine (preko Prilagodi obrazac) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknite na datoteku da biste je odabrali. DocType: Note Seen By,Note Seen By,Napomena vidi @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Podeli URL adresu DocType: System Settings,Allow Consecutive Login Attempts ,Dozvoli konusne pokušaje za prijavljivanje apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Došlo je do greške tokom procesa plaćanja. Kontaktirajte nas. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ako je tip slajda Kreiraj ili Postavke, trebalo bi postojati metoda 'create_onboarding_docs' u datoteci {ref_doctype} .py koja se mora izvesti nakon dovršetka slajda." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dana DocType: Email Account,Awaiting Password,čeka lozinke DocType: Address,Address Line 1,Adresa - linija 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ne potomci DocType: Contact,Company Name,Naziv preduzeća DocType: Custom DocPerm,Role,Uloga -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Postavke ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,na vaš pretraživač apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Diktafon @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Pratite ako je vaš e-pošta otvorio primalac.
Napomena: Ako šaljete više primaoca, čak i ako 1 primalac čita e-poštu, smatraće se "otvorenim"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Nedostaje vrijednosti potrebne apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Omogući pristup Google kontaktima +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ograničena DocType: Data Migration Connector,Frappe,frape apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Označi kao nepročitano DocType: Activity Log,Operation,Operacija @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Dozvolite Print DocType: Communication,Clicked,Kliknuli apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Ne prati apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz programa Setup> Email> Account Email apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Zakazan za slanje DocType: DocType,Track Seen,Seen Track DocType: Dropbox Settings,File Backup,File Backup @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Nije našao { apps/frappe/frappe/config/customization.py,Add custom forms.,Dodaj prilagođenu formu. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} u {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,dostavio ovaj dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Podešavanje> Dozvole korisnika apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sustav nudi brojne unaprijed definirane uloge . Možete dodavati nove uloge postaviti finije dozvole. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domena +DocType: Onboarding Slide,Domains,Domena DocType: Blog Category,Blog Category,Blog kategorija apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Ne mogu mapirati jer sljedeći uvjet ne uspije: DocType: Role Permission for Page and Report,Roles HTML,Uloge HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Subota DocType: User,Represents a User in the system.,Predstavlja korisnika u sistemu. DocType: List View Setting,Disable Auto Refresh,Onemogući automatsko osvežavanje DocType: Comment,Label,Oznaka -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Zadatak {0}, koje ste dodijelili {1}, je zatvoren." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Molimo vas da zatvorite ovaj prozor DocType: Print Format,Print Format Type,Ispis formatu DocType: Newsletter,A Lead with this Email Address should exist,Elektrode sa ovim e-mail adresa treba da postoji @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP postavke za odlazn apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izaberite DocType: Data Export,Filter List,Lista filtera DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,VH: mm DocType: Email Account,Auto Reply Message,Auto poruka odgovora DocType: Data Migration Mapping,Condition,Stanje apps/frappe/frappe/utils/data.py,{0} hours ago,{0} sata @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Baza znanja saradnik DocType: Communication,Sent Read Receipt,Sent Pročitajte Prijem DocType: Email Queue,Unsubscribe Method,Odjava Način +DocType: Onboarding Slide,Add More Button,Dodajte još dugmeta DocType: GSuite Templates,Related DocType,Povezani DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Uredi za dodavanje sadržaja apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Izaberite jezike apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detalji kartice apps/frappe/frappe/__init__.py,No permission for {0},Bez dozvole za {0} DocType: DocType,Advanced,Napredan +DocType: Onboarding Slide,Slide Image Source,Izvor slide slike apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},{0} {1}: Reference apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Gđa @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Majstor DocType: DocType,User Cannot Create,Korisnik ne može stvoriti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspješno završeno apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,pristup Dropbox je odobren! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Jeste li sigurni da želite spojiti {0} sa {1}? DocType: Customize Form,Enter Form Type,Unesite Obrazac Vid DocType: Google Drive,Authorize Google Drive Access,Autorizirajte pristup Google disku apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Nedostatak parametra Kanban Board Name @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Prilagođeni formati za tapete, E-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Zbroj {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Ažurirani u New Version DocType: Custom Field,Depends On,Zavisi od DocType: Kanban Board Column,Green,Zelenilo DocType: Custom DocPerm,Additional Permissions,Dodatne dozvole @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Socijalno apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google kalendar - Nije moguće kreirati kalendar za {0}, kôd pogreške {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Uređivanje Row DocType: Workflow Action Master,Workflow Action Master,Workflow Akcija Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Izbrisati sve DocType: Custom Field,Field Type,Vrsta polja apps/frappe/frappe/utils/data.py,only.,samo. DocType: Route History,Route History,Istorija rute @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Zaboravili ste lozinku? DocType: System Settings,yyyy-mm-dd,gggg-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,greska servera +DocType: Server Script,After Delete,Nakon brisanja apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Pogledajte sve prethodne izvještaje. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Prijava je potrebno Id DocType: Website Slideshow,Website Slideshow,Web Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nema podataka DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link koji jepočetna stranica web stranice . Standardni linkovi ( indeks , prijava , proizvodi , blog , o, kontakt)" +DocType: Server Script,After Submit,Nakon slanja apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Provjera autentičnosti nije uspjela dok primanje e-pošte iz e-pošte {0}. {1}: Poruka od poslužitelja DocType: User,Banner Image,Slika banera DocType: Custom Field,Custom Field,Prilagođeno polje @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ukoliko korisnik ima bilo kakvu ulogu pregledava, onda korisnik postaje "System korisnika". "System User" ima pristup na desktop" DocType: System Settings,Date and Number Format,Datum i oblik brojeva apps/frappe/frappe/model/document.py,one of,Jedan od -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavke> Prilagodite obrazac apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Provjera jednom trenutku apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Prikazi tagove DocType: DocField,HTML Editor,HTML Editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Podešavanje> Korisnik +DocType: DocType,Actions,Akcije DocType: Workflow State,align-justify,poravnanje-jednako DocType: User,Middle Name (Optional),Krsno ime (opcionalno) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ne Dozvoljena @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,nema Rezult DocType: System Settings,Security,Sigurnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planirano za slanje na {0} primaoca apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cut +DocType: Server Script,After Save,Nakon Save apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},preimenovan iz {0} do {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} od {1} ({2} redova sa decom) DocType: Currency,**Currency** Master,** Valuta ** Master @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Vrednosti filtera DocType: Communication,User Tags,Korisnicki tagovi DocType: Data Migration Run,Fail,Fail DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Poslednje izvršenje DocType: Data Migration Run,Pull Failed,Pull Failed apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Prikaži / sakrij kartice DocType: Communication,Feedback Request,povratne informacije Upit apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Uvoz podataka iz datoteka CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Nakon polja nedostaju: +DocType: Notification Log,From User,Od korisnika apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Otkazivanje {0} DocType: Web Page,Main Section,Glavni Odjeljak DocType: Page,Icon,ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Uključiti simboli, brojevi i slova u lozinku" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurišite obavijesti za spomene, zadatke, energetske bodove i još mnogo toga." DocType: DocField,Allow in Quick Entry,Dozvoli u brzom unosu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / gggg @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL teme DocType: Customize Form,Sort Field,Sortiraj polje DocType: Razorpay Settings,Razorpay Settings,Razorpay Postavke apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Dodaj još DocType: System Settings,Session Expiry Mobile,Session Istek Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Pogrešan korisnik ili lozinka apps/frappe/frappe/templates/includes/search_box.html,Search results for,Rezultati pretrage za @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske tačke DocType: Communication,Delayed,Odgođen apps/frappe/frappe/config/settings.py,List of backups available for download,Popis backup dostupan za preuzimanje +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Isprobajte novi uvoz podataka apps/frappe/frappe/www/login.html,Sign up,Prijaviti se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Red {0}: Nije dozvoljeno da onemogućite Obavezno za standardna polja +DocType: Webhook,Enable Security,Omogući sigurnost apps/frappe/frappe/config/customization.py,Dashboards,Nadzorne ploče DocType: Test Runner,Output,izlaz DocType: Milestone,Track Field,Track Field @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Set imovine nakon Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj polja na obrasce. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu sa PayPal konfiguraciji ovog sajta. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Dodaj recenziju +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} dodelio vam je novi zadatak {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Veličina slova (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Samo standardni DocTypes mogu se prilagoditi iz Customize obrasca. DocType: Email Account,Sendgrid,SendGrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Postavljanje filtera DocType: Contact Us Settings,Email ID,E-mail ID DocType: Energy Point Rule,Multiplier Field,Polje množitelja +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nije moguće kreirati nalog za Razorpay. Molimo kontaktirajte administratora DocType: Dashboard Chart,Time Interval,Vremenski interval DocType: Activity Log,Keep track of all update feeds,Pratite sve feedove ažuriranja +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} je sa vama podelio dokument {1} {2} 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Ključ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Podešavanje je okončano apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Izvještaj svih dijeljenih dokumenata +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Uvozni predložak treba biti tipa .csv, .xlsx ili .xls" apps/frappe/frappe/www/update-password.html,New Password,Nova lozinka apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} nedostaje apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Žao mi je! Ne možete izbrisati automatski generišu komentare @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Trči DocType: Blog Post,Content (HTML),Sadržaj (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Podešavanje za DocType: Personal Data Download Request,User Name,Korisničko ime DocType: Workflow State,minus-sign,minus znak apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not found @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Ne {0} dopuštenje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz Custom Dozvole apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ništa nije pronađeno. DocType: Data Export,Fields Multicheck,Fields Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Dovršeno DocType: Activity Log,Login,Prijava DocType: Web Form,Payments,Plaćanja apps/frappe/frappe/www/qrcode.html,Hi {0},Zdravo {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integracija Google diska. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} preusmerio je bodove na {1} {2} DocType: System Settings,Enable Scheduled Jobs,Omogućite rasporedu radnih mjesta apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Bilješke : apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Neaktivan @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Šablo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Dozvola za dozvolu apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Naziv od {0} ne može biti {1} DocType: User Permission,Applicable For,primjenjivo za +DocType: Dashboard Chart,From Date,Od datuma apps/frappe/frappe/core/doctype/version/version_view.html,Success,Uspješno apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,sesija je istekla DocType: Kanban Board Column,Kanban Board Column,Kanban Board Kolona @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Usp apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nije dozvoljeno u stanju DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,slika -apps/frappe/frappe/www/complete_signup.html,Complete,Kompletan +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Kompletan DocType: DocType,Image Field,Slika Field DocType: Print Format,Custom HTML Help,Custom HTML Pomoć DocType: LDAP Settings,Default Role on Creation,Zadata uloga na kreaciji @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Sljedeća država DocType: User,Block Modules,Blok Moduli DocType: Print Format,Custom CSS,Prilagođeni CSS +DocType: Energy Point Rule,Apply Only Once,Primijeni samo jednom apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorisani: {0} do {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Uobičajeno Incoming DocType: Workflow State,repeat,ponoviti DocType: Website Settings,Banner,Baner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vrijednost mora biti jedna od {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Otkaži sve dokumente 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Idite na listu {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoć u pretraživanju @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrovan apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatsko ponavljanje ovog dokumenta onemogućeno je. DocType: DocType,Hide Copy,Sakrij kopiju apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Poništi sve uloge +DocType: Server Script,Before Save,Pre Save apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} mora biti jedinstvena apps/frappe/frappe/model/base_document.py,Row,Red apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC i Email Template" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Uspješno uvežen {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Pošalji unsubscribe poruku u e-mail -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Uredi naslov apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Podataka, Naziv Polja koji će biti DOCTYPE za ovaj link području." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumenti dodijeljeni vama i oni koje ste vi dodijelili. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,To možete i kopirati i zalijepiti @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Priložiti slike DocType: Workflow State,list-alt,popis-alt apps/frappe/frappe/www/update-password.html,Password Updated,Lozinka je ažurirana +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Podešavanje> Dozvole korisnika apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Koraci za potvrđivanje vašeg prijavljivanja apps/frappe/frappe/utils/password.py,Password not found,Password nije pronađen +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Dužina stranice DocType: Email Queue,Expose Recipients,izložiti primatelja apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Doda je obavezno za dolazne mailove @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sustav DocType: Web Form,Max Attachment Size (in MB),Max Prilog Veličina (u MB) apps/frappe/frappe/www/login.html,Have an account? Login,Imate račun? Prijavi se +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Postavke ispisa ... DocType: Workflow State,arrow-down,Strelica prema dole apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Red {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite l DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup DocType: Tag Link,Document Title,Naslov dokumenta apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obavezno) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije godinu dana DocType: Social Login Key,Social Login Provider,Socijalni Login Provider apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodali još jedan komentar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Podaci nisu pronađeni u datoteci. Molimo da ponovo unesete novu datoteku sa podacima. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,ruka-dole apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Nisu pronađena polja koja se mogu koristiti kao Kanbanski stupac. Upotrijebite obrazac za prilagođavanje kako biste dodali prilagođeno polje tipa "Odaberi". DocType: Address,GST State,PDV država apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Ne mozemo Odustati prije nego potvrdimo +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Korisnik ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmjeriti URI Bound To Auth kod apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Otvorite pomoć DocType: DocType,Is Submittable,Je Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova Mention +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nova Mention apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nisu sinkronizirani novi Google kontakti. DocType: File,Uploaded To Google Drive,Otpremljeno na Google disk apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Vrijednost za kontrola polja može biti 0 ili 1. @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Crven DocType: Workflow State,Tag,Privjesak -DocType: Custom Script,Script,Skripta +DocType: Report,Script,Skripta apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument ne može biti sačuvan. DocType: Energy Point Rule,Maximum Points,Maksimalni bodovi apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moja podešavanja @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} bodovi zahvalnosti za {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Uloge se mogu postaviti za korisnike iz svoje korisničke stranice . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Dodaj komentar +DocType: Dashboard Chart,Select Date Range,Odaberite Raspon datuma DocType: DocField,Mandatory,Obavezan apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul za izvoz +DocType: Scheduled Job Type,Monthly Long,Mjesečno dugo apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : nisu podesena osnovna prava pristupa +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Pošaljite poruku e-pošte {0} da biste je povezali ovdje apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Značenje Podnijeti, Odustani, Izmijeniti" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Pratite prekretnice DocType: Social Login Key,Identity Details,Detalji o identitetu apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Prijelaz stanja tijeka rada nije dopušten sa {0} na {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Prikaži nadzornu ploču -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nova poruka DocType: File,Preview HTML,Pregled HTML DocType: Desktop Icon,query-report,upit-izvještaj DocType: Data Import Beta,Template Warnings,Upozorenja predloga @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Povezan s apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Izmenite podešavanja automatskog izveštavanja o e-pošti DocType: Chat Room,Message Count,Broj poruka DocType: Workflow State,book,knjiga +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} povezan je sa sljedećim dostavljenim dokumentima: {2} DocType: Communication,Read by Recipient,Pročitajte Recipient DocType: Website Settings,Landing Page,Odredišna stranica apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Greška u Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Ime apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nema dozvole postavljen za ove kriterije. DocType: Auto Email Report,Auto Email Report,Auto-mail Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Novi dokument je podijeljen apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Izbriši komentar? DocType: Address Template,This format is used if country specific format is not found,Ovaj format se koristi ako država specifičan format nije pronađena DocType: System Settings,Allow Login using Mobile Number,Dozvolite Prijava koristeći Broj mobilnog apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ako je omogućeno, korisnici koji se prijavljuju iz ograničene IP adrese neće biti zatraženi za Two Factor Auth" +DocType: Server Script,After Cancel,Nakon otkaza DocType: Auto Repeat,Get Contacts,Dobijte kontakte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Poruke podneseno je pod {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskakanje bez naslova @@ -1684,6 +1757,7 @@ DocType: User,Login After,Prijavite Nakon DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Štampanje DocType: Workflow State,thumbs-up,palac gore +DocType: Notification Log,Mention,Spomenuti DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fontovi apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision treba biti između 1 i 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,i apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ovaj izveštaj je generisan na {0} DocType: Error Snapshot,Frames,Okviri -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,zadatak +DocType: Notification Log,Assignment,zadatak DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Link slike DocType: Auto Email Report,Report Filters,izvještaj Filteri @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nije moguće ažurirati događaja apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Verifikacioni kod je upućen na vašu registrovanu adresu e-pošte. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Lagano +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Vaša meta apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter mora imati 4 vrijednosti (doctype, Naziv Polja, operater, vrijednost): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nije navedeno ime za {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Primijenite pravilo dodjele apps/frappe/frappe/utils/bot.py,show,pokazati apps/frappe/frappe/utils/data.py,Invalid field name {0},Nevažeće ime polja {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,tekst-visina DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapiranje plana prenosa podataka apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Pokretanje Frappé ... DocType: Web Form Field,Max Length,Max dužina -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Za {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,Karta marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Slanje problem @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page nedostaju ili preseli apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Recenzije DocType: DocType,Route,ruta apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay postavke Payment Gateway +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} dobio je {1} poen za {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Izvadite slike iz dokumenta DocType: Chat Room,Name,Ime DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tvoj jezik DocType: Dashboard Chart,Average,Prosječno apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Dodaj Row -DocType: Tag Category,Doctypes,Doctype apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Upit mora biti SELECT DocType: Auto Repeat,Completed,Dovršen @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Postavke energetske tačke DocType: Async Task,Succeeded,Slijedi apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obavezna polja potrebni u {0} +DocType: Onboarding Slide Field,Align,Poravnajte apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset dopuštenja za {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Korisnici i dozvole DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo ime formata ispisa apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kliknite na donju vezu kako biste odobrili zahtjev DocType: Workflow State,align-left,poravnanje-lijevo +DocType: Onboarding Slide,Action Settings,Postavke akcije DocType: User,Defaults,Zadani +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu, koristite> 5, <10 ili = 324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." DocType: Energy Point Log,Revert Of,Povrat od apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merge sa postojećim DocType: User,Birth Date,Datum rođenja @@ -1896,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,U DocType: Notification,Value Change,Vrijednost Promjena DocType: Google Contacts,Authorize Google Contacts Access,Autorizirajte pristup Google kontaktima apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazuju se samo Numerička polja iz Izveštaja +apps/frappe/frappe/utils/data.py,1 week ago,Pre 1 nedelju DocType: Data Import Beta,Import Type,Vrsta uvoza DocType: Access Log,HTML Page,HTML stranica DocType: Address,Subsidiary,Podružnica @@ -1905,7 +1984,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,S zaglavljem apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nevažeći server odlazne pošte ili port DocType: Custom DocPerm,Write,Pisati -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Samo administrator dopustio stvaranje upita / Skripta Izvješća apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ažuriranje DocType: Data Import Beta,Preview,Pregled apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Polje "vrijednost" je obavezno. Molimo navedite vrijednost se ažurira @@ -1915,6 +1993,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Pozovi kao DocType: Data Migration Run,Started,Počelo apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Korisnik {0} nema pristup ovom dokumentu DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Grupiranje na osnovu apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Odaberite priloge apps/frappe/frappe/model/naming.py, for {0},za {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument @@ -1956,6 +2035,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Provjeriti DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Omogući ćaskanje DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Ostavite ovaj razgovor apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opcije nije postavljen za link polju {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Red čekanja / radnik @@ -2022,12 +2102,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Data Migration Run,Current Mapping Action,Aktuelna akcija mapiranja DocType: Dashboard Chart Source,Source Name,izvor ime -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun u okviru Korisnik> Inbox. DocType: Email Account,Email Sync Option,E-mail Sync Opcija apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Red broj DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Is Pinned DocType: Contact Us Settings,Introduction,Uvod +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Trebati pomoć? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin globalno apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Pratio DocType: LDAP Settings,LDAP Email Field,LDAP-mail Field @@ -2037,7 +2117,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Već u us DocType: User Email,Enable Outgoing,Enable Odlazni DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Custom Tagovi -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije podešen. Izradite novi račun e-pošte iz programa Setup> Email> Account Email DocType: Comment,Submitted,Potvrđeno DocType: Contact,Pulled from Google Contacts,Preuzeto iz Google kontakata apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,U važećem zahtevu @@ -2058,9 +2137,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Početna / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Dodijeli meni DocType: DocField,Dynamic Link,Dinamička poveznica apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pritisnite tipku Alt da pokrenete dodatne prečice u meniju i bočnoj traci +DocType: Dashboard Chart,To Date,Za datum DocType: List View Setting,List View Setting,Podešavanje prikaza liste apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Pokaži nije posao -DocType: Event,Details,Detalji +DocType: Scheduled Job Log,Details,Detalji DocType: Property Setter,DocType or Field,Vrsta dokumenta ili polje apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ponovno pratite ovaj dokument apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primarna boja @@ -2068,7 +2148,6 @@ DocType: Communication,Soft-Bounced,Soft-odbijeno DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ako je omogućeno, svi korisnici mogu se prijaviti sa bilo koje IP adrese pomoću Two Factor Auth. Ovo takođe može biti podešeno samo za određene korisnike (e) na Korisničkoj strani" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Čini mogu objaviti Key ili tajni ključ nije u redu !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Brza pomoć za postavljanje dopuštenja -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype da dodeli Tagovi apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Pokaži recidiva apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail je preselio u smece DocType: Report,Report Builder,Generator izvjestaja @@ -2083,6 +2162,7 @@ DocType: Workflow State,Upload,upload DocType: User Permission,Advanced Control,Napredna kontrola DocType: System Settings,Date Format,Format datuma apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nije objavljen +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Kreirajte novu iz Podešavanje> Štampanje i markiranje> Predložak adresa. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Akcije za tok dokumentacije (npr: Odobri, Otkaži)." DocType: Data Import,Skip rows with errors,Preskočite redove sa greškama DocType: Workflow State,flag,zastava @@ -2092,7 +2172,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Šta apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skok u polje DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu DocType: Contact Phone,Is Primary Phone,Je primarni telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošaljite poruku e-pošte {0} da biste je povezali ovdje. DocType: Auto Email Report,Weekdays,Radnim danima apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} zapisi će se izvoziti apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" @@ -2100,7 +2179,7 @@ DocType: Post Comment,Post Comment,Objavite komentar apps/frappe/frappe/config/core.py,Documents,Dokumenti apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Prijavljivanje aktivnosti DocType: Social Login Key,Custom Base URL,Prilagođeni bazni URL -DocType: Email Flag Queue,Is Completed,je završen +DocType: Onboarding Slide,Is Completed,je završen apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Get Fields apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Uredi profil DocType: Kanban Board Column,Archived,Arhivirani @@ -2111,11 +2190,12 @@ 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 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,danas +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,danas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Pošaljite nakon uvoza DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Errors DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Linija za pomoć na brodu za klizanje DocType: OAuth Client,App Client Secret,App Klijent Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Podnošenje apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Roditelj je naziv dokumenta kojem će se podaci dodati. @@ -2123,7 +2203,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,VELIKA SLOVA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Unesite ime foldera -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Kreirajte novu iz Podešavanje> Štampanje i markiranje> Predložak adresa. apps/frappe/frappe/auth.py,Unknown User,Nepoznati korisnik apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Odaberite ulogu DocType: Comment,Deleted,Deleted @@ -2139,7 +2218,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Kreirajte grafikon apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne uvozi -DocType: Web Page,Center,Centar +DocType: Onboarding Slide Field,Center,Centar DocType: Notification,Value To Be Set,Vrijednosti za podešavanje apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Izmeni {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prvog nivoa @@ -2147,7 +2226,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Ime baze podataka apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh obrazac DocType: DocField,Select,Odaberi -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Pogledajte cijeli dnevnik +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Pogledajte cijeli dnevnik DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Jednostavna Python Expression, Primjer: status == 'Open' i upišite == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,File nije priključen apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Izgubljena konekcija. Neke funkcije možda neće raditi. @@ -2179,6 +2258,7 @@ DocType: Web Page,HTML for header section. Optional,HTML za sekcije zaglavlja. O apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ova funkcija je potpuno nov i još uvijek eksperimentalna apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimalne {0} redovi dopušteno DocType: Dashboard Chart Link,Chart,Grafikon +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global Odjava apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ovo je vrlo čest lozinku. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Pogled @@ -2195,6 +2275,7 @@ DocType: Data Migration Connector,Hostname,Ime hosta DocType: Data Migration Mapping,Condition Detail,Detalji detalja apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Za valutu {0}, minimalna transakcija iznosi {1}" DocType: DocField,Print Hide,Ispis Sakrij +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Korisniku apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Unesite vrijednost DocType: Workflow State,tint,nijansa @@ -2261,6 +2342,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kod za veri apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,"Dodaj u ""To Do listu""" DocType: Footer Item,Company,Preduzeće apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Prosjek {0} +DocType: Scheduled Job Log,Scheduled,Planirano DocType: User,Logout from all devices while changing Password,Odjavite se sa svih uređaja dok menjate lozinku apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Provjerite lozinku apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Bilo je grešaka @@ -2286,7 +2368,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Korisnička dozvola već postoji apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Preslikavanje stupca {0} u polje {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Pregled {0} -DocType: User,Hourly,Po satu +DocType: Scheduled Job Type,Hourly,Po satu apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registracija OAuth Klijent App DocType: DocField,Fetch If Empty,Dohvati ako je prazno DocType: Data Migration Connector,Authentication Credentials,Autentifikacijski akreditivi @@ -2297,10 +2379,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},stekao {0} automatskim pravilom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} {1} ili +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Svi ste spremni! DocType: Workflow State,trash,smeće DocType: System Settings,Older backups will be automatically deleted,Stariji kopije će biti automatski obrisane apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Invalid Key Access Key ili Secret Access Key. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Izgubili ste neke energetske bodove DocType: Post,Is Globally Pinned,Da li je globalno pričvršćen apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Nedavne aktivnosti DocType: Workflow Transition,Conditions,Uslovi @@ -2309,6 +2391,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Potvrđen DocType: Event,Ends on,Završava DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Put do sertifikata servera +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript je onemogućen u vašem pretraživaču apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nije dovoljno dozvolu da vidite linkove apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Naziv adrese je obavezan. DocType: Google Contacts,Push to Google Contacts,Pritisnite Google kontakte @@ -2327,7 +2410,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-zapad-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ako je ovo potvrđeno, redovi sa važećim podacima će biti uvezeni i nevažeći redovi će biti deponovani u novu datoteku koja će vam kasnije biti uvezena." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument može uređivati samo korisnik -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Zadatak {0}, koji ste dodijelili {1}, je zatvorio /la {2}." DocType: Print Format,Show Line Breaks after Sections,Pokaži Line Breaks nakon Sekcije DocType: Communication,Read by Recipient On,Pročitajte Recipient On DocType: Blogger,Short Name,Kratki naziv @@ -2359,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Dodi DocType: Translation,PR sent,PR poslan DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Poslati samo Records izmjene u zadnjoj X vreme DocType: Communication,Feedback,Povratna veza +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Ažurirano na novu verziju 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Otvorite prevod apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ovaj e-mail je autogenerisan DocType: Workflow State,Icon will appear on the button,Ikona će se pojaviti na dugmetu @@ -2397,6 +2480,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Stranica n DocType: DocField,Precision,Preciznost DocType: Website Slideshow,Slideshow Items,Slideshow artikala apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Pokušati izbjeći ponovio riječi i slova +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Obavijesti su onemogućene +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Jeste li sigurni da želite izbrisati sve redove? DocType: Workflow Action,Workflow State,Workflow država apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,redovi Dodano apps/frappe/frappe/www/list.py,My Account,Moj račun @@ -2405,6 +2490,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Nakon dana apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ Tray Connection Active! DocType: Contact Us Settings,Settings for Contact Us Page,Postavke za Kontakt stranicu +DocType: Server Script,Script Type,Skripta Tip DocType: Print Settings,Enable Print Server,Omogući Server za štampanje apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,prije {0} nedjelja DocType: Email Account,Footer,Footer @@ -2430,8 +2516,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Upozorenje apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Ovo se može otisnuti na više stranica DocType: Data Migration Run,Percent Complete,Percent Complete -DocType: Tag Category,Tag Category,Tag Kategorija -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu, koristite> 5, <10 ili = 324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." DocType: Google Calendar,Pull from Google Calendar,Povucite iz Google kalendara apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Pomoć DocType: User,Login Before,Prijavite Prije @@ -2441,17 +2525,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sakrij vikende apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatski generira ponavljajuće dokumente. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-znak apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vrijednost za {0} ne može biti lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi ova valuta morala biti formatirana? Ako nije postavljeno, koristit će zadane postavke sustava" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pošalji {0} dokumente? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pogreška prilikom povezivanja s aplikacijom QZ Tray ...

Za upotrebu funkcije Raw Print morate imati instaliranu i pokrenutu aplikaciju QZ Tray.

Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
Kliknite ovdje kako biste saznali više o sirovoj štampi ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapiranje printera apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Sačuvajte prije pričvršćivanja. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Želite li otkazati sve povezane dokumente? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ne mogu se mijenjati iz {0} u {1} u redu {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Prava pristupa DocType: Help Article,Intermediate,srednji +apps/frappe/frappe/config/settings.py,Email / Notifications,Email / Obavijesti apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} promenjen {1} u {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Otkazan dokument je obnovljen kao Nacrt DocType: Data Migration Run,Start Time,Start Time @@ -2468,6 +2556,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Mo apps/frappe/frappe/email/smtp.py,Invalid recipient address,Pogrešna adresa primatelja DocType: Workflow State,step-forward,korak naprijed DocType: System Settings,Allow Login After Fail,Dozvoli prijavu nakon neuspjeha +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Set Uloga DocType: GCalendar Account,The name that will appear in Google Calendar,Ime koje će se pojaviti u Google kalendaru apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direktna soba sa {0} već postoji. @@ -2484,6 +2573,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Stvaranje DocType: Contact,Google Contacts,Google kontakti DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Email Rule,Is Spam,je spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Poslednja apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Izvještaj {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otvorena {0} DocType: Data Import Beta,Import Warnings,Uvozna upozorenja @@ -2495,6 +2585,7 @@ DocType: Workflow State,ok-sign,ok-prijava apps/frappe/frappe/config/settings.py,Deleted Documents,izbrisan Dokumenti apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV format je osjetljiv na slovo apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Ikona već postoji +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Navedite u kojim sve domenama trebaju biti prikazani slajdovi. Ako ništa nije navedeno, slajd se prema zadanim postavkama prikazuje u svim domenama." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Polje {1} u redu {2} ne može se sakriti i obavezno bez zadanih postavki DocType: Newsletter,Create and Send Newsletters,Kreiranje i slanje newsletter @@ -2505,6 +2596,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID događaja Google kalendara apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Parent"" označava parent tabelu u kojoj se red mora dodati" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Pregled bodova: +DocType: Scheduled Job Log,Scheduled Job Log,Zakazani dnevnik poslova +DocType: Server Script,Before Delete,Prije brisanja apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Podijeljeno sa apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Priložite datoteke / urls i dodajte u tablicu. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Poruka nije podešena @@ -2527,19 +2620,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Postavke za O nama Page apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Traka postavke payment gateway apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Ispis poslan na štampač! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energetski bodovi +DocType: Notification Settings,Energy Points,Energetski bodovi +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Vrijeme {0} mora biti u formatu: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generiši ključeve apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,To će trajno ukloniti vaše podatke. DocType: DocType,View Settings,Postavke prikaza +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nova obavijest DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktura zahtjeva +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Nedostaje metoda kontrolera get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Čeka se verifikacija DocType: Website Meta Tag,Website Meta Tag,Meta Tag web stranice DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ako je nestandardna luka (npr. 587). Ako ste u Google Cloud-u, probajte port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Brisanje datuma završetka, jer to ne može biti u prošlosti za objavljene stranice." DocType: User,Send Me A Copy of Outgoing Emails,Pošaljite mi kopiju Outgoing emails-a -DocType: System Settings,Scheduler Last Event,Planer zadnjoj utrci DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Dodaj Google Analytics ID: npr: UA-89XXX57-1. Molimo potražite pomoć na Google Analytics za više informacija. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Lozinka ne može biti duži od 100 znakova DocType: OAuth Client,App Client ID,App ID klijenta @@ -2568,6 +2663,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,New Password apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} je podijelio/la ovaj dokument sa {1} DocType: Website Settings,Brand Image,imidž brenda DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Predložak uvoza treba sadržavati zaglavlje i najmanje jedan red. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google kalendar je konfiguriran. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Postavljanje gornjoj navigacijskoj traci, podnožje i logo." DocType: Web Form Field,Max Value,Max vrijednost @@ -2577,6 +2673,7 @@ DocType: User Social Login,User Social Login,Korisnički socijalni login apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritizirao je vaš rad na {1} sa {2} tačkom DocType: Contact,All,Sve DocType: Email Queue,Recipient,Primalac +DocType: Webhook,Webhook Security,Sigurnost za Webhook DocType: Communication,Has Attachment,ima Prilog DocType: Address,Sales User,Sales korisnika apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Povucite i alatni za izgradnju i prilagodili Print formati. @@ -2643,7 +2740,6 @@ DocType: Data Migration Mapping,Migration ID Field,Polje ID migracije DocType: Dashboard Chart,Last Synced On,Zadnja sinhronizacija DocType: Comment,Comment Type,Komentar Type DocType: OAuth Client,OAuth Client,OAuth Klijent -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritizirao je vaš rad na {1} {2} DocType: Assignment Rule,Users,Korisnici DocType: Address,Odisha,Odisha DocType: Report,Report Type,Tip izvjestaja @@ -2668,14 +2764,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Web Slideshow artikla apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Samo odobrenje nije dozvoljeno DocType: GSuite Templates,Template ID,ID predloška apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombinacija Tip Granta ( {0} ) i Tip Odgovora ( {1} ) nije dopuštena -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nova poruka iz {0} DocType: Portal Settings,Default Role at Time of Signup,Uobičajeno Uloga u vrijeme Signup DocType: DocType,Title Case,Naslov slučaja apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Kliknite na donju vezu da biste preuzeli svoje podatke apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Omogućeno e-poštno sanduče za korisnika {0} DocType: Data Migration Run,Data Migration Run,Pokretanje podataka DocType: Blog Post,Email Sent,E-mail poslan -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Stariji DocType: DocField,Ignore XSS Filter,Zanemari XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,udaljen apps/frappe/frappe/config/integrations.py,Dropbox backup settings,postavke Dropbox backup @@ -2730,6 +2824,7 @@ DocType: Async Task,Queued,Na čekanju DocType: Braintree Settings,Use Sandbox,Koristite Sandbox apps/frappe/frappe/utils/goal.py,This month,Ovog mjeseca apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novi prilagođeni format za štampu +DocType: Server Script,Before Save (Submitted Document),Prije spremanja (poslani dokument) DocType: Custom DocPerm,Create,Stvoriti apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nema više za prikaz apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Idi na prethodni zapis @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Move u smeće DocType: Web Form,Web Form Fields,Web Form Fields DocType: Data Import,Amended From,Izmijenjena Od +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Dodajte video vezu za pomoć samo u slučaju da korisnik nema pojma o tome što treba popuniti. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Upozorenje: Nije moguće pronaći {0} na bilo sto u vezi sa {1} DocType: S3 Backup Settings,eu-north-1,eu-sjever-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ovaj dokument je trenutno na čekanju za izvršenje. Molimo pokušajte ponovo @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Blog članak DocType: Access Log,Export From,Izvoz iz apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Napredna pretraga apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Niste dozvoljeni da pogledate bilten. +DocType: Dashboard Chart,Group By,Group By DocType: User,Interests,Interesi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail DocType: Energy Point Rule,Allot Points To Assigned Users,Dodijelite bodove dodijeljenim korisnicima @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Pravilo dodeljivanja apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Predložena ime: {0} DocType: Assignment Rule Day,Day,dan apps/frappe/frappe/public/js/frappe/desk.js,Modules,Moduli +DocType: DocField,Mandatory Depends On,Obavezna ovisi o apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,plaćanje Uspjeh apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ne {0} mail DocType: OAuth Bearer Token,Revoked,Ukinuto @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar i Komentari apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nije dopušteno da priložite {0} dokument, molimo omogućite Dozvoliti štampanje za {0} u podešavanjima štampanja" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije podešen. Izradite novi račun e-pošte iz programa Setup> Email> Account Email apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Pogledajte dokument na {0} DocType: Stripe Settings,Publishable Key,objaviti Key apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Započnite uvoz @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,Frakcija apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Događaj je sinhronizovan sa Google kalendarom. DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Field DocType: Contact,Middle Name,Srednje ime +DocType: DocField,Property Depends On,Vlasništvo ovisi DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ne postavljajte ime preko Prompt-a apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail Inbox apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ažuriranje {0} od {1}, {2}" DocType: Auto Email Report,Filters Display,filteri Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Da bi se izvršilo dopune, mora biti prisutno polje "izmijenjeno_ i od"." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} cijenio je vaš rad na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Spremite filtere DocType: Address,Plant,Biljka apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori svima @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,mapa-blizu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Izveštaj: DocType: Print Settings,Print taxes with zero amount,Odštampajte poreze sa nultim iznosom apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ne smije biti preimenovan +DocType: Server Script,Before Insert,Prije umetanja DocType: Custom Script,Custom Script,Prilagođena skripta DocType: Address,Address Line 2,Adresa - linija 2 DocType: Address,Reference,Upućivanje apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Dodijeljeno -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz programa Setup> Email> Account Email DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Mapiranje mapiranja podataka DocType: Data Import,Action,Akcija DocType: GSuite Settings,Script URL,skripta URL @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,U prikazu popisa DocType: Email Account,Use TLS,Koristi TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Neispravno korisničko ime ili lozinka +DocType: Scheduled Job Type,Weekly Long,Nedeljno dugo apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Preuzmite predložak apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj sopstveni JavaScript na obrasce. ,Role Permissions Manager,Menadzer prava pristupa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ime novog Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Prebacite bočnu traku +DocType: Server Script,After Save (Submitted Document),Nakon spremanja (poslani dokument) DocType: Data Migration Run,Pull Insert,Povucite umetak DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Maksimalan broj bodova dozvoljen nakon množenja bodova s vrijednosti množitelja (Napomena: Ako nema ograničenja, ovo polje ne ostavljajte prazno ili postavite 0)" @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nije instaliran apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Preuzimanje s podacima apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},promijenjene vrijednosti za {0} {1} +DocType: Server Script,Before Cancel,Prije odustajanja DocType: Workflow State,hand-right,ruka-desna DocType: Website Settings,Subdomain,Poddomena DocType: S3 Backup Settings,Region,Regija @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Old Password DocType: S3 Backup Settings,us-east-1,us-istok-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postova od {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Za formatiranje stupaca, daju natpise stupaca u upitu." +DocType: Onboarding Slide,Slide Fields,Klizna polja DocType: Has Domain,Has Domain,ima Domain DocType: User,Allowed In Mentions,Dopušteno u napomenama apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nemate korisnički račun? Prijaviti se apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nije moguće ukloniti ID polje apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Pretplaćeni dokumenti apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Korisničke postavke DocType: Report,Reference Report,Referentni izvještaj DocType: Activity Log,Link DocType,link DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizirajte pristup apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Stranica koju tražite je nestala. Ovo bi moglo biti zato što se preselio ili postoji greška u linku. apps/frappe/frappe/www/404.html,Error Code: {0},Kod greške: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za unos stranice, kao običan tekst, samo par redaka. (najviše 140 znakova)" +DocType: Server Script,DocType Event,DocType Event apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} su obavezna polja DocType: Workflow,Allow Self Approval,Dozvolite samopouzdanje DocType: Event,Event Category,Kategorija događaja @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje ime apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Success Connection DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Ugrađeni klizač nastavka vrste dijapozitiva već postoji. DocType: DocType,Default Sort Field,Podrazumevano Sortiranje polja DocType: File,Is Folder,Je Folder DocType: Document Follow,DocType,Vrsta dokumenta @@ -3064,8 +3170,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Promena DocType: Workflow State,arrow-up,Strelica prema gore DocType: Dynamic Link,Link Document Type,Tip dokumenta veze apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Trebao bi biti najmanje jedan red za {0} tablicu +DocType: Server Script,Server Script,Server Script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Da biste konfigurirali automatsko ponavljanje, omogućite "Dopusti automatsko ponavljanje" od {0}." DocType: OAuth Bearer Token,Expires In,ističe u +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Koliko puta želite ponoviti skup polja (npr .: ako želite 3 kupca na slajdu, postavite ovo polje na 3. Samo prvi set polja prikazan je kao obavezan na slajdu)" DocType: DocField,Allow on Submit,Dopusti pri potvrdi DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Izuzetak Tip @@ -3075,6 +3183,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Najave događaja apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Unesite vrijednosti za App pristup Key i App tajni ključ +DocType: Email Account,Append Emails to Sent Folder,Dodajte e-poštu u poslanu mapu DocType: Web Form,Accept Payment,Prihvati plaćanja apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Odaberite stavku liste apps/frappe/frappe/config/core.py,A log of request errors,Evidenciju zahtjeva grešaka @@ -3093,7 +3202,7 @@ DocType: Translation,Contributed,Doprinosi apps/frappe/frappe/config/customization.py,Form Customization,Prilagodba oblika apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nema aktivnih sesija DocType: Web Form,Route to Success Link,Put do uspeha Link -DocType: Top Bar Item,Right,Desno +DocType: Onboarding Slide Field,Right,Desno apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nema nadolazećih događaja DocType: User,User Type,Vrsta korisnika DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3111,6 +3220,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Molimo pokušajt apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL mora početi s 'http: //' ili 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcija 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ovo se ne može poništiti DocType: Workflow State,Edit,Uredi DocType: Website Settings,Chat Operators,Chat Operatori DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3122,7 +3232,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Izveštaj sa više od 10 stupaca izgleda bolje u pejzažnom režimu. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nevažeće ime polja: {0} DocType: Milestone,Milestone,Prekretnica @@ -3131,7 +3240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Idite na {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-mailovi su prigušeni apps/frappe/frappe/config/integrations.py,Google Services,Google usluge apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,prije 1 sedmica +DocType: Onboarding Slide,Slide Description,Opis slajda DocType: Communication,Error,Pogreška apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Molimo prvo podesite poruku DocType: Auto Repeat,End Date,Datum završetka @@ -3152,10 +3261,12 @@ DocType: Footer Item,Group Label,Grupa Label DocType: Kanban Board,Kanban Board,Kanban odbora apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti su konfigurirani. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Izvest će se 1 zapis +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun u okviru Korisnik> Inbox. DocType: DocField,Report Hide,Sakrij izvjestaj apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Tree pogled nije dostupan za {0} DocType: DocType,Restrict To Domain,Ograničiti Domain DocType: Domain,Domain,Domena +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Nevažeći URL datoteke. Molimo kontaktirajte administratora sistema. DocType: Custom Field,Label Help,Oznaka pomoć DocType: Workflow State,star-empty,zvijezda-prazna apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Termini su često lako pogoditi. @@ -3180,6 +3291,7 @@ DocType: Workflow State,hand-left,ruka-lijeva DocType: Data Import,If you are updating/overwriting already created records.,Ako ažurirate / prepisujete već kreirane zapise. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Je Global DocType: Email Account,Use SSL,Koristite SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,play-krug apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument nije mogao biti pravilno dodijeljen apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Nevažeći izraz "depends_on" @@ -3196,6 +3308,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Poslednje osveženo apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Za vrstu dokumenta DocType: Workflow State,arrow-right,Strelica desno +DocType: Server Script,API Method,API metoda DocType: Workflow State,Workflow state represents the current state of a document.,Workflow države predstavlja trenutno stanje dokument. DocType: Letter Head,Letter Head Based On,Pismo glava na osnovu apps/frappe/frappe/utils/oauth.py,Token is missing,Token nedostaje @@ -3235,6 +3348,7 @@ DocType: Comment,Relinked,relinkovao DocType: Print Settings,Compact Item Print,Compact Stavka Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,redirect URL +DocType: Onboarding Slide Field,Placeholder,Zamjena mjesta DocType: SMS Settings,Enter url parameter for receiver nos,Unesite URL parametar za prijemnike br DocType: Chat Profile,Online,online DocType: Email Account,Always use Account's Name as Sender's Name,Uvek koristite ime računa kao ime pošiljatelja @@ -3244,7 +3358,6 @@ DocType: Workflow State,Home,dom DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,Korisnik se može prijaviti koristeći E-mail id ili Korisničko ime DocType: Workflow State,question-sign,pitanje-prijava -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je onemogućen apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Polje "ruta" je obavezno za Veb pogledi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Ubaci kolonu pre {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Korisniku iz ovog polja bit će nagrađeni bodovi @@ -3269,6 +3382,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ako Vlasnik DocType: Data Migration Mapping,Push,Guranje apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Ovdje baci datoteke DocType: OAuth Authorization Code,Expiration time,vrijeme isteka +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Otvori dokumente DocType: Web Page,Website Sidebar,Sajt Sidebar DocType: Web Form,Show Sidebar,Pokaži Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Morate biti prijavljeni da biste pristupili ovoj {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne pre DocType: Desktop Icon,Page,Stranica apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},nisu mogli naći {0} u {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imena i prezimena sami lako pogoditi. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument je preimenovan iz {0} u {1} apps/frappe/frappe/config/website.py,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,aktovka apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format ispisa apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Prebacite prikaz mreže apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pređite na sledeći snimak +DocType: System Settings,Time Format,Format vremena apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nevažeći payment gateway vjerodajnice DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ovo je šablon datoteka generisana samo sa redovima koji imaju neku grešku. Trebali biste koristiti ovu datoteku za korekciju i uvoz. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Postaviti dozvole vrsta dokumenata i uloge @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Odgovoriti apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Strane u Desk (nosioci mjesto) DocType: DocField,Collapsible Depends On,Sklopivi Ovisi On DocType: Print Style,Print Style Name,Ime stila za štampu +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Grupno po polje potrebno je za izradu grafikona nadzorne ploče DocType: Print Settings,Allow page break inside tables,Dozvolite prijelom stranice unutar tablice DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print Format Pomoć apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} soba mora imati najmanje jednog korisnika. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Grof +DocType: Dashboard Chart,Group By Type,Grupi po vrsti apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Novi komentar na {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovljena {0} kao {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ako ažurirate, molimo odaberite ""Prepiši"" drugi postojeće redove neće biti izbrisani." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Korisnič DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} mora biti u formatu: {1} DocType: About Us Settings,Org History Heading,Org Povijest Heading +DocType: Scheduled Job Type,Scheduled Job Type,Zakazana vrsta posla DocType: Print Settings,Allow Print for Cancelled,Dozvolite Ispis za Otkazano DocType: Communication,Integrations can use this field to set email delivery status,Integracije mogu koristiti ovo polje da biste postavili status slanje e +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nemate dozvolu za otkazivanje svih povezanih dokumenata. DocType: Web Form,Web Page Link Text,Web Page Link Text DocType: Page,System Page,sistem Page apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Postavite zadani format, veličina stranice, print stil itd." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ITD apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Prilagođavanja za {0} izvezena u:
{1} DocType: Website Settings,Include Search in Top Bar,Uključiti Traži u Top Bar +DocType: Scheduled Job Type,Daily Long,Svakodnevno DocType: GSuite Settings,Allow GSuite access,Dozvoli GSuite pristup DocType: DocType,DESC,DESC DocType: DocType,Naming,Imenovanje @@ -3486,6 +3607,7 @@ DocType: Notification,Send days before or after the reference date,Pošalji dana DocType: User,Allow user to login only after this hour (0-24),Dopustite korisniku da se prijavi tek nakon ovoliko sati (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Dodijelite jednu po jednu, redom" DocType: Integration Request,Subscription Notification,Obaveštenje o pretplati +DocType: Customize Form Field, Allow in Quick Entry ,Omogući u brzom ulasku apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ili priložite a DocType: Auto Repeat,Start Date,Datum početka apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Vrijednost @@ -3500,6 +3622,7 @@ DocType: Google Drive,Backup Folder ID,ID sigurnosne kopije mape apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne u Developer Mode! U site_config.json ili napraviti 'Custom' DOCTYPE. DocType: Workflow State,globe,globus DocType: System Settings,dd.mm.yyyy,dd.mm.gggg +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioritet DocType: Email Queue,Unsubscribe Param,Odjava Param DocType: DocType,Hide Sidebar and Menu,Sakrij bočnu traku i meni @@ -3511,6 +3634,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Dozvoljava uvoz (preko Data apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Plutati DocType: Print Settings,Page Settings,Podešavanja stranice +DocType: Notification Settings,Notification Settings,Podešavanja obavijesti apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Štedi ... apps/frappe/frappe/www/update-password.html,Invalid Password,Invalid lozinke apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Unos uspješno je uvezen {0} od {1}. @@ -3526,6 +3650,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Slika glave pisma DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron Format apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Izvještaj DocType: SMS Settings,Use POST,Koristite POST DocType: Communication,SMS,SMS @@ -3570,18 +3695,20 @@ DocType: Workflow,Allow approval for creator of the document,Dozvoli odobrenje z apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Spremi izvještaj DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Akcija servera apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} preko IP adresa {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Roditeljsko polje mora biti važeće ime polja apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Neuspjeh prilikom izmjene pretplate DocType: LDAP Settings,LDAP Group Field,LDAP grupno polje +DocType: Notification Subscribed Document,Notification Subscribed Document,Obavijest pretplaćeni dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,jednak apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Invalid CSV format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pogreška prilikom povezivanja sa aplikacijom QZ Tray ...

Za upotrebu funkcije Raw Print morate imati instaliranu i pokrenutu aplikaciju QZ Tray.

Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
Kliknite ovdje kako biste saznali više o sirovoj štampi ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Set Broj Backup DocType: DocField,Do not allow user to change after set the first time,Ne dopustiti korisniku izmjene nakon što je upisao prvi put apps/frappe/frappe/utils/data.py,1 year ago,prije 1 godina +DocType: DocType,Links Section,Odjeljak za veze apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Pogledajte Dnevnik svih događaja štampanja, preuzimanja i izvoza" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mjesec DocType: Contact,Contact,Kontakt @@ -3608,16 +3735,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Novi E-mail DocType: Custom DocPerm,Export,Izvoz apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Za upotrebu Google kalendara omogućite {0}. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Također dodavanje polja ovisnosti o statusu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Uspješno ažurirano {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Tray Failed: DocType: Dropbox Settings,Dropbox Settings,Dropbox Postavke DocType: About Us Settings,More content for the bottom of the page.,Više sadržaja za podnožje stranice. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ovaj dokument je vraćen apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Rezervna kopija Google diska je uspješna. +DocType: Webhook,Naming Series,Imenovanje serije DocType: Workflow,DocType on which this Workflow is applicable.,Vrsta dokumenta na koje se primjenjuje ovaj radni proces. DocType: User,Enabled,Omogućeno apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Nije uspelo da završi podešavanje apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Novo {0}: {1} -DocType: Tag Category,Category Name,Naziv kategorije +DocType: Blog Category,Category Name,Naziv kategorije apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Roditelj je potreban za dobivanje podataka o tablici djece apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Uvoz Pretplatnici DocType: Print Settings,PDF Settings,PDF postavke @@ -3653,6 +3783,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendar apps/frappe/frappe/client.py,No document found for given filters,Nikakav dokument nađeni za dati filteri apps/frappe/frappe/config/website.py,A user who posts blogs.,Korisnik koji objavljuje blogove. +DocType: DocType Action,DocType Action,DocType Action apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Druga {0} s imenom {1} postoji , odaberite drugi naziv" DocType: DocType,Custom?,Prilagođena? DocType: Website Settings,Website Theme Image,Website Theme Slika @@ -3662,6 +3793,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nije mogu apps/frappe/frappe/config/integrations.py,Backup,rezerva apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Vrsta dokumenta potrebna je za izradu grafikona nadzorne ploče DocType: DocField,Read Only,Read Only +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nije moguće kreirati razorpay nalog apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Novi Newsletter DocType: Energy Point Log,Energy Point Log,Evidencija energetske tačke DocType: Print Settings,Send Print as PDF,Pošalji Print as PDF @@ -3687,16 +3819,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot apps/frappe/frappe/www/login.html,Or login with,Ili se prijavite sa DocType: Error Snapshot,Locals,Mještani apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Komunicirali preko {0} na {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} vas je spomenuo komentaru {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Odaberi grupu po ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} je potrebno DocType: Integration Request,Integration Type,integracija Tip DocType: Newsletter,Send Attachements,Pošalji Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nije pronađen nijedan filter apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracija Google kontakata. DocType: Transaction Log,Transaction Log,Dnevnik transakcije apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistika na osnovu učinka prošlog mjeseca (od {0} do {1}) DocType: Contact Us Settings,City,Grad +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Sakrij kartice za sve korisnike apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Omogućite Dozvoli automatsko ponavljanje za doctype {0} u Prilagodi obliku DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Pogledajte dokument @@ -3707,6 +3840,7 @@ DocType: Blog Category,Blogger,Bloger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Ako je omogućeno, promjene dokumenta prate se i prikazuju u vremenskoj traci" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1} DocType: Energy Point Log,Appreciation,Zahvalnost +DocType: Dashboard Chart,Number of Groups,Broj grupa apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Prikaz liste DocType: Workflow,Don't Override Status,Ne zamenjuju Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,pojam za pretragu @@ -3748,7 +3882,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-sjeverozapad-1 DocType: Dropbox Settings,Limit Number of DB Backups,Ograniči broj DB rezervnih kopija DocType: Custom DocPerm,Level,Nivo -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Zadnjih 30 dana DocType: Custom DocPerm,Report,Izvjestaj apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Iznos mora biti veći od 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Spojen na QZ Tray! @@ -3765,6 +3898,7 @@ DocType: S3 Backup Settings,us-west-2,us-zapad-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Izaberite Child Table apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Okidač primarne akcije apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Promjena +DocType: Social Login Key,User ID Property,User ID Property DocType: Email Domain,domain name,ime domena DocType: Contact Email,Contact Email,Kontakt email DocType: Kanban Board Column,Order,poredak @@ -3787,7 +3921,7 @@ DocType: Contact,Last Name,Prezime DocType: Event,Private,Privatan apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Lijevo DocType: Event,All Day,Cijeli dan apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Izgleda da nešto nije u redu s konfiguracijom payment gateway ovog sajta. Bez plaćanja je postignut. DocType: GCalendar Settings,State,Država @@ -3819,7 +3953,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Postavke Gateway-a apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teksta u tipa dokumenta -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Run Testovi apps/frappe/frappe/handler.py,Logged Out,odjavio apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Više ... DocType: System Settings,User can login using Email id or Mobile number,Korisnik može prijaviti koristeći E-mail id ili mobitela @@ -3835,6 +3968,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sažetak DocType: Event,Event Participants,Učesnici događaja DocType: Auto Repeat,Frequency,frekvencija +DocType: Onboarding Slide,Slide Order,Slide Order DocType: Custom Field,Insert After,Umetni Nakon DocType: Event,Sync with Google Calendar,Usklađivanje sa Google kalendarom DocType: Access Log,Report Name,Naziv izvještaja @@ -3862,6 +3996,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0} apps/frappe/frappe/config/website.py,Content web page.,Sadržaj web stranice. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj novu ulogu +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Posetite veb stranicu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova dodjela DocType: Google Contacts,Last Sync On,Poslednja sinhronizacija uključena DocType: Deleted Document,Deleted Document,Deleted Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Nešto je pošlo po zlu @@ -3872,7 +4008,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pejzaž apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Strani klijenta skriptu ekstenzije u Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Zapisi za sledeće doktipe će biti filtrirani -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planer neaktivan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planer neaktivan DocType: Blog Settings,Blog Introduction,Blog uvod DocType: Global Search Settings,Search Priorities,Prioriteti pretraživanja DocType: Address,Office,Ured @@ -3882,12 +4018,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Veza veze grafikona na nadzor DocType: User,Email Settings,Postavke e-pošte apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Spusti se DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ako je omogućeno, korisnik se može prijaviti s bilo koje IP adrese koristeći Two Factor Auth, ovo se može postaviti i za sve korisnike u System Settings" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Podešavanja pisača ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Molimo vas da unesete lozinku kako Nastavi apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Ja apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nije validan uslov apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Primijeni na sve vrste dokumenata -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ažuriranje energetske tačke +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Ažuriranje energetske tačke +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Radite samo svakodnevno ako su neaktivni (dani) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tip sobe DocType: Data Import Beta,Import Log Preview,Uvezi pregled pregleda @@ -3896,6 +4032,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-krug DocType: LDAP Settings,LDAP User Creation and Mapping,Stvaranje i mapiranje LDAP korisnika apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Današnji događaji apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Žao mi je! Korisnik treba imati potpuni pristup na svoje rekord. ,Usage Info,Uporaba Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Pokaži prečice na tipkovnici @@ -3912,6 +4049,7 @@ DocType: DocField,Unique,Jedinstven apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} cijenjen {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delimičan uspjeh DocType: Email Account,Service,Usluga +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Podešavanje> Korisnik DocType: File,File Name,Naziv datoteke apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3925,6 +4063,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Kompletn DocType: GCalendar Settings,Enable,omogućiti DocType: Google Maps Settings,Home Address,Kućna adresa apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Možete poslati samo upto 5000 unosa u jednom pokretu. (Mogu biti manje u nekim slučajevima) +DocType: Report,"output in the form of `data = [columns, result]`","izlaz u obliku `podaci = [stupci, rezultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Primjenjive vrste dokumenata apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Postavljanje pravila za zadatke korisnika. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedovoljna Dozvola za {0} @@ -3940,7 +4079,6 @@ DocType: Communication,To and CC,Da i CC DocType: SMS Settings,Static Parameters,Statički parametri DocType: Chat Message,Room,soba apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ažurira na {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Pozadinski poslovi se ne izvode. Molimo kontaktirajte administratora DocType: Portal Settings,Custom Menu Items,Korisnički meni Predmeti apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Sve slike priložene Slajdovi sa web prezentacijama treba da budu javne DocType: Workflow State,chevron-right,Chevron-desno @@ -3955,11 +4093,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Odabrane su vrijednosti {0} DocType: DocType,Allow Auto Repeat,Dopusti automatsko ponavljanje apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nema vrijednosti za prikazivanje +DocType: DocType,URL for documentation or help,URL za dokumentaciju ili pomoć DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email Template apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} zapis je uspješno ažuriran. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Korisnik {0} nema pristup dokumentu putem dozvole uloge za dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Potrebni su i korisničko ime i pristupna lozinka +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Neka \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvježite se dobiti najnovije dokument. DocType: User,Security Settings,Podešavanja sigurnosti apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Dodaj kolonu @@ -3969,6 +4109,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},U prilogu pronađite {0}: {1} DocType: Web Page,Set Meta Tags,Postavljanje meta tagova +DocType: Email Account,Use SSL for Outgoing,Koristite SSL za odlazne 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: S3 Backup Settings,Backup Limit,Ograničenje rezervne kopije DocType: Dashboard Chart,Line,Linija @@ -4001,4 +4142,3 @@ DocType: DocField,Ignore User Permissions,Ignorirajte korisnička dopuštenja apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Spremljeno uspješno apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Zamolite svog administratora da provjerite sign-up DocType: Domain Settings,Active Domains,aktivna domena -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Dnevnik diff --git a/frappe/translations/ca.csv b/frappe/translations/ca.csv index 23d0d5f934..883091fd0c 100644 --- a/frappe/translations/ca.csv +++ b/frappe/translations/ca.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Seleccioneu un camp de quantitat. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,S'està carregant el fitxer d'importació ... DocType: Assignment Rule,Last User,Últim usuari -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Una nova tasca, {0}, s'ha assignat a vostè per {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,S'han desat els defectes de les sessions apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Torna a carregar fitxer DocType: Email Queue,Email Queue records.,Registres de cua de correu electrònic. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Arbre DocType: User,User Emails,Els correus electrònics d'usuaris DocType: User,Username,Nom d'usuari apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importar Zip +DocType: Scheduled Job Type,Create Log,Crea el registre apps/frappe/frappe/model/base_document.py,Value too big,Valors molt alts DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Prova d'execució de seqüència @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensual DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Habilita entrant apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Perill -DocType: Address,Email Address,Adreça de correu electrònic +apps/frappe/frappe/www/login.py,Email Address,Adreça de correu electrònic DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Notificació No llegit Enviat apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,No es pot exportar. Cal el rol {0} per a exportar. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Vols DocType: DocType,Is Published Field,Es publica Camp DocType: GCalendar Settings,GCalendar Settings,Configuració de GCalendar DocType: Email Group,Email Group,Grup correu electrònic +apps/frappe/frappe/__init__.py,Only for {},Només per {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar: no s'ha pogut suprimir l'esdeveniment {0} de Google Calendar, codi d'error {1}." DocType: Event,Pulled from Google Calendar,Tirat de Google Calendar DocType: Note,Seen By,Vist per apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Afegir múltiple -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Heu guanyat punts energètics apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,No és una imatge d'usuari vàlida. DocType: Energy Point Log,Reverted,Revertit DocType: Success Action,First Success Message,Primer missatge d'èxit @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Not Com apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valor incorrecte: {0} ha de ser {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Canviar les propietats de camp (amagar, de només lectura, el permís etc.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Agrair +DocType: Notification Settings,Document Share,Document Share DocType: Workflow State,lock,bloquejar apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Configuració de pàgina de contacte. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrador de sessió @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Si està activat, el document es marca com es veu, la primera vegada que un usuari l’obre" DocType: Auto Repeat,Repeat on Day,Repeteixi el dia DocType: DocField,Color,Color +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Marcar tots com a llegits DocType: Data Migration Run,Log,Sessió DocType: Workflow State,indent-right,guió-dreta DocType: Has Role,Has Role,El paper té @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostra el seguiment DocType: DocType,Default Print Format,Format d'impressió predeterminat DocType: Workflow State,Tags,Etiquetes +DocType: Onboarding Slide,Slide Type,Tipus de diapositiva apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Cap: Final de flux de treball apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El camp {0} no es pot establir com a únic en {1}, ja que hi ha valors existents no únics" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipus de document @@ -135,7 +138,6 @@ DocType: Language,Guest,Convidat DocType: DocType,Title Field,Title Field DocType: Error Log,Error Log,Registre d'errors apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL no vàlid -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Últims 7 dies apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Repeteix com "abcabcabc" són només una mica més difícil d'endevinar que el "abc" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Si vostè pensa que això no està autoritzat, si us plau, canvieu la contrasenya d'administrador." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Client apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Selecciona la columna apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Aquesta forma s'ha modificat després d'haver carregat DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Registre de notificacions 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 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Obriu la barra impressionant apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Sembla que hi ha un problema amb la configuració de la xarxa del servidor. En cas de fracàs, l'import es reemborsarà al vostre compte." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Em apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Enviar DocType: Workflow Action Master,Workflow Action Name,Nom de l'acció del flux de treball (Workflow) apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType can not be merged -DocType: Web Form Field,Fieldtype,FieldType +DocType: Onboarding Slide Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,No és un fitxer zip DocType: Global Search DocType,Global Search DocType,Document de cerca global de cerca DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Email enviat? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Canvia el gràfic apps/frappe/frappe/desk/form/save.py,Did not cancel,No va cancel·lar DocType: Social Login Key,Client Information,Informació del client +DocType: Energy Point Rule,Apply this rule only once per document,Apliqueu aquesta regla només una vegada per document DocType: Workflow State,plus,més +DocType: DocField,Read Only Depends On,Només de lectura depèn apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Connectat com convidat o administrador DocType: Email Account,UNSEEN,INVISIBLE apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Gestor de fitxers @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Raó 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,No hi ha activitat +DocType: Server Script,Script Manager,Gestor de scripts +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,No hi ha activitat apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplicacions de tercers apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,No hi ha esdeveniments d'avui apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,No podeu donar-vos punts de revisió apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,El DocType ha de ser presentable per a l'esdeveniment Doc seleccionat DocType: Workflow State,circle-arrow-up,cercle de fletxa amunt @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},No està permès per a {0}: {1}. Camp restringit: {2} 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,You are not allowed to delete a standard Website Theme,No se li permet eliminar un tema web estàndar +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Crea el teu primer {0} DocType: Data Import,Log Details,Detalls del registre DocType: Workflow Transition,Example,Exemple DocType: Webhook Header,Webhook Header,Encapçalament Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Xat de fons apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marcar com llegit apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},S'està actualitzant {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Ja existeix una diapositiva a bord {0} amb el mateix ordre de diapositives apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Desactivar Informe DocType: Translation,Contributed Translation Doctype Name,Nom de Doctype de traducció aportada +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Formulari personalitzat DocType: PayPal Settings,Redirect To,per redirigir DocType: Data Migration Mapping,Pull,Tirar DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Registre intern de document DocType: Energy Point Settings,Review Levels,Nivells de revisió DocType: Workflow State,Comment,Comentari DocType: Data Migration Plan,Postprocess Method,Mètode de postprocessos +DocType: DocType Action,Action Type,Tipus d’acció apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fer una foto DocType: Assignment Rule,Round Robin,Robin rodó apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Podeu canviar els documents presentats, cancel·lant-los i després esmenant-los." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Guardar com DocType: Comment,Seen,Vist apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Mostra més detalls +DocType: Server Script,Before Submit,Abans d'enviar 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,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,Archive,Arxiu @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Nom de camp incorrecte {0} a la configuració add_fetch del script personalitzat apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Seleccioneu Google Contacts amb el qual s'ha de sincronitzar el contacte. DocType: Web Page,Main Section (HTML),Secció principal (HTML) +DocType: Scheduled Job Type,Annual,Anual DocType: Workflow State,headphones,auriculars apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Es requereix contrasenya o seleccioneu Tot esperant la contrasenya DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,per exemple replies@yourcomany.com. Totes les respostes vindran a aquesta safata d'entrada. DocType: Slack Webhook URL,Slack Webhook URL,S'ha reduït l'URL de Webhook +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Determina l’ordre de la diapositiva a l’assistent. Si no es vol mostrar la diapositiva, s'ha de definir la prioritat en 0." DocType: Data Migration Run,Current Mapping,Mapeig actual apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Es requereix un nom i correu electrònic vàlid apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Feu que tots els fitxers adjunts siguin privats @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Regles de Transició apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Es mostren només les primeres {0} files en vista prèvia apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemple: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Restriccions DocType: Workflow,Defines workflow states and rules for a document.,Defineix els fluxes i les regles per a un document. DocType: Workflow State,Filter,Filtre apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Consulteu el registre d’errors per obtenir més informació: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Feina apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} desconnectat: {1} DocType: Address,West Bengal,Bengala Occidental +DocType: Onboarding Slide,Information,Informació apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: No es pot establir Assignar Enviar si no submittable DocType: Transaction Log,Row Index,Índex de files DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid 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 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Executaran feines programades només una vegada al dia per a llocs inactius. Per defecte, 4 dies si es defineix en 0." DocType: Assignment Rule,System Manager,Administrador del sistema +DocType: Scheduled Job Log,Scheduled Job,Feina programada DocType: Custom DocPerm,Permissions,Permisos apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Retenció de Webhooks per a la integració interna DocType: Dropbox Settings,Allow Dropbox Access,Allow Dropbox Access @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Escan DocType: Email Flag Queue,Email Flag Queue,Bandera de correu electrònic de la cua DocType: Access Log,Columns / Fields,Columnes / Camps apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Fulls d'estils per a formats d'impressió +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,El camp de funció agregada és obligatori per crear un quadre de tauler apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,No pot identificar obert {0}. Intentar una altra cosa. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,La seva informació s'ha enviat apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,L'usuari {0} no es pot eliminar @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Nom del camp DocType: Assignment Rule,Assign To Users,Assigna als usuaris apps/frappe/frappe/public/js/frappe/utils/utils.js,or,o apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nom del mòdul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continuar +DocType: Onboarding Slide,Continue,Continuar apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,La integració de Google està desactivada. DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,certificat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verificant ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,S'ha suprimit la vostra tasca a {0} {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,La Primera columna de dades ha d'estar en blanc. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Mostra totes les versions apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Veure comentari @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Restringir IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,panell apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,No es poden enviar missatges de correu electrònic en aquest moment apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar: no s'ha pogut actualitzar l'esdeveniment {0} a Google Calendar, codi d'error {1}." +DocType: Notification Log,Email Content,Contingut per correu electrònic apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Busca o escriu una ordre DocType: Activity Log,Timeline Name,Nom de la línia de temps apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Només un {0} es pot configurar com a principal. DocType: Email Account,e.g. smtp.gmail.com,per exemple smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Afegir una nova regla DocType: Contact,Sales Master Manager,Gerent de vendes +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Heu d’habilitar JavaScript perquè la vostra aplicació funcioni. DocType: User Permission,For Value,Per valor DocType: Event,Google Calendar ID,Identificador de Google Calendar apps/frappe/frappe/www/complete_signup.html,One Last Step,Un últim pas @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Camp de nom mig LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Important {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Permet l'accés a GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} és un camp obligatori +DocType: DocType,Documentation Link,Enllaç de documentació apps/frappe/frappe/templates/includes/login/login.js,Login token required,S'ha requerit el token d'inici de sessió apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rànquing mensual: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleccioneu diversos elements de la llista @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL del fitxer DocType: Version,Table HTML,taula HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Afegir Subscriptors +DocType: Notification Log,Energy Point,Punt d'energia apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Pròxims esdeveniments per avui DocType: Google Calendar,Push to Google Calendar,Push a Google Calendar DocType: Notification Recipient,Email By Document Field,Email per camp del document @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Away DocType: Currency,Fraction Units,Fraction Units apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} de {1} a {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marqueu com a fet DocType: Chat Message,Type,Tipus DocType: Google Settings,OAuth Client ID,Identificador de client OAuth DocType: Auto Repeat,Subject,Subjecte apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tornar a l'escriptori DocType: Web Form,Amount Based On Field,Quantitat basada en el Camp +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} no té el seguiment de versions. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,L'usuari és obligatori per Compartir DocType: DocField,Hidden,Ocult DocType: Web Form,Allow Incomplete Forms,Permetre formes incompletes @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,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,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari DocType: Communication,Bounced,Rebotats +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,de DocType: Deleted Document,Deleted Name,nom esborrat apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Usuaris de sistema i lloc web DocType: Workflow Document State,Doc Status,Estat del Doc @@ -521,6 +546,7 @@ DocType: Language,Language Code,Codi d'idioma DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: s'envien per correu electrònic per defecte les còpies de seguretat fallides. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Afegeix un filtre apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS enviat als telèfons: {0} +DocType: Notification Settings,Assignments,Tasques apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Comença una conversa. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sempre afegiu "Projecte de" Rumb a projectes d'impressió de documents @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Comença el mapa actual apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,El correu electrònic ha estat marcat com a correu brossa DocType: Comment,Website Manager,Gestor de la Pàgina web apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,S'ha desconnectat la càrrega d'arxius. Siusplau torna-ho a provar. +DocType: Data Import Beta,Show Failed Logs,Mostra els registres que han fallat apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Traduccions apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Vostè Projecte seleccionat o documents cancel·lats apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},S'ha definit el document {0} a l'estat {1} per {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,document en cua DocType: GSuite Templates,Destination ID,ID de destinació DocType: Desktop Icon,List,Llista DocType: Activity Log,Link Name,Nom de l'enllaç +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,No has fet \ DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa +DocType: Onboarding Slide,Onboarding Slide,Diapositiva a bord apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Anterior @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,gris fosc apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Exitosa: {0} a {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Tirar +DocType: Dashboard Chart,Aggregate Function Based On,Funció agregada basada en apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Si us plau, duplicar aquesta per fer canvis" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Premeu Retorn per desar apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generació de PDF fracassar a causa dels vincles d'imatge trencats @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Dies abans apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Els esdeveniments diaris haurien d’acabar el mateix dia. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edita ... DocType: Workflow State,volume-down,volum cap avall +DocType: Onboarding Slide,Help Links,Enllaços d’ajuda apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accés no permès des d'aquesta adreça IP +DocType: Notification Settings,Enable Email Notifications,Activa les notificacions per correu electrònic apps/frappe/frappe/desk/reportview.py,No Tags,No hi ha etiquetes DocType: Email Account,Send Notification to,Enviar Notificació a DocType: DocField,Collapsible,Plegable @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,L’última còpia de seguretat activada DocType: Customize Form Field,Customize Form Field,Personalitzar camps de formulari DocType: Energy Point Rule,For Document Event,Per a esdeveniment de documents DocType: Website Settings,Chat Room Name,Nom de la sala de xat +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,No canviat DocType: OAuth Client,Grant Type,Tipus de subvenció apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Comproveu que els documents són llegibles per un usuari DocType: Deleted Document,Hub Sync ID,Identificador de sincronització del concentrador @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,Util DocType: Auto Repeat,Quarterly,Trimestral apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Tot el temps apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Estat del document il · legal per {0} DocType: Email Account,Enable Auto Reply,Habilita resposta automàtica apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,No Vist @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Missa DocType: Email Account,Notify if unreplied,Notificar si UNREPLIED apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Escaneja el codi QR i introduïu el codi resultant que es mostra. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Activa els degradats +DocType: Scheduled Job Type,Hourly Long,Llarga hora DocType: System Settings,Minimum Password Score,Clau puntuació mínima DocType: DocType,Fields,Camps DocType: System Settings,Your organization name and address for the email footer.,El seu nom de l'organització i direcció per al peu de pàgina de correu electrònic. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Taula Pare apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S'ha completat la còpia de seguretat S3. apps/frappe/frappe/config/desktop.py,Developer,Desenvolupador apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creat +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Per activar-lo, seguiu les instruccions del següent enllaç: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} a la fila {1} no pot tenir les dues coses URL i elements descendents apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Hauria d'haver al menys una fila per a les taules següents: {0} DocType: Print Format,Default Print Language,Idioma d'impressió predeterminat apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestres de apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} cannot be deleted +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,No han fallat els registres apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Cap comentari encara apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Configureu SMS abans de configurar-lo com a mètode d'autenticació mitjançant la configuració de SMS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Tant doctype i Nom obligatori @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Peu de pàgina Articles apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menú DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Diari +DocType: Onboarding Slide,Max Count,Nombre màxim apps/frappe/frappe/config/users_and_permissions.py,User Roles,Rols d'usuari DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter overrides a standard DocType or Field property apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,No es pot actualitzar: Enllaç Incorrecte o caducat. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,amfitrió DocType: Data Import Beta,Import File,Importa el fitxer +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Error de plantilla apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Columna {0} ja existeix. DocType: ToDo,High,Alt apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nou esdeveniment @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Mostra al filtre DocType: Address,Daman and Diu,Daman i Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projecte DocType: Address,Personal,Personal +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Configuració d'impressió en brut ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Consulteu https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region per obtenir més detalls. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Mostra com cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Tome el vídeo DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informació de presentació per la pàgina de contacte DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Cancel·lació de documents DocType: User,Send Notifications for Email threads,Enviar notificacions per a fils de correu electrònic apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,profe apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,No és de cap manera desenvolupador @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,La còpia d DocType: DocField,In Global Search,En Recerca Global DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,guió-esquerra -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Fa {0} any apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"És arriscat eliminar aquesta imatge: {0}. Si us plau, poseu-vos en contacte amb l'administrador del sistema." DocType: Currency,Currency Name,Nom moneda apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No hi ha missatges de correu electrònic @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Camp d'Usuari DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Premeu Suprimeix apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ja donat de baixa per {1} {2} +DocType: Scheduled Job Type,Stopped,Detingut apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,No treure apps/frappe/frappe/desk/like.py,Liked,Em va agradar apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Enviar ara apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Permet al convidat DocType: Report,Query,Query DocType: Customize Form,Sort Order,Ordre de Classificació apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'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} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Mètode d'autenticació de dos factors apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Primer estableixi el nom i deseu el registre. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Registres +DocType: DocType Link,Link Fieldname,Nom del camp d'enllaç apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Compartit amb {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Donar-se de baixa DocType: View Log,Reference Name,Referència Nom apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Canvia d'usuari +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primer apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Actualitza les traduccions DocType: Error Snapshot,Exception,Excepció DocType: Email Account,Use IMAP,L'ús de IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Regles que defineixen la transició d'estat del flux de treball. DocType: File,Folder,Carpeta DocType: Website Route Meta,Website Route Meta,Lloc web Meta Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Camp de diapositives a bord DocType: DocField,Index,Índex DocType: Email Group,Newsletter Manager,Butlletí Administrador apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opció 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Num apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurar gràfics DocType: User,Last IP,Darrera IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Afegiu un assumpte al vostre correu electrònic -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,S'ha compartit un {0} document nou amb tu {1}. DocType: Data Migration Connector,Data Migration Connector,Connector de migració de dades apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} va revertir {1} DocType: Email Account,Track Email Status,Seguiment de l'estat del correu electrònic @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Predeterminar Sortint DocType: Workflow State,play,jugar apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Feu clic a l'enllaç de sota per completar el seu registre i establir una nova contrasenya apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,No s'ha afegit +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} va guanyar {1} punts per {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,No hi ha comptes de correu electrònic assignada DocType: S3 Backup Settings,eu-west-2,eu-oest-2 DocType: Contact Us Settings,Contact Us Settings,Ajustaments del Contacti'ns @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Buscant . DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximum Attachment Limit for this record reached. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Cerca per nom de fitxer o extensió +DocType: Onboarding Slide,Slide Title,Títol de diapositiva DocType: Notification,View Properties (via Customize Form),Veure propietats (via Personalitzar Formulari) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Feu clic a un fitxer per seleccionar-lo. DocType: Note Seen By,Note Seen By,Nota vist per @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Comparteix l'URL DocType: System Settings,Allow Consecutive Login Attempts ,Permet els intents d'inici de sessió consecutius apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,S'ha produït un error durant el procés de pagament. Poseu-vos en contacte amb nosaltres. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Si el tipus de diapositiva és Crear o Configuració, hi hauria d'haver un mètode 'create_onboarding_docs' al fitxer {ref_doctype} .py que s'executarà un cop finalitzada la diapositiva." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{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 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Sense descendents de DocType: Contact,Company Name,Nom de l'Empresa DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Configuració ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,al navegador apps/frappe/frappe/utils/data.py,Cent,Cèntim ,Recorder,Gravadora @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Feu un seguiment si el destinatari ha obert el vostre correu electrònic.
Nota: si envieu a diversos destinataris, fins i tot si un destinatari llegeix el correu electrònic, es considerarà "Obert"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Camps Obligatoris apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permetre l'accés als contactes de Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Restringit DocType: Data Migration Connector,Frappe,Frape apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Marcar com no llegit DocType: Activity Log,Operation,Operació @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,permetre Imprimir DocType: Communication,Clicked,Seguit apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Deixar de seguir apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},No té permís per '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic per defecte des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Programat per enviar DocType: DocType,Track Seen,Vist a la pista DocType: Dropbox Settings,File Backup,Còpia de seguretat d'arxius @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} no trobat apps/frappe/frappe/config/customization.py,Add custom forms.,Afegir formularis personalitzats. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} {2} en apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,presentat aquest document -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuració> Permisos d'usuari apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,El sistema ofereix moltes funcions predefinides. Podeu afegir noves funcions per establir permisos més fins. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nom del disparador -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Dominis +DocType: Onboarding Slide,Domains,Dominis DocType: Blog Category,Blog Category,Categoria Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,No es pot assignar a causa següent condició falla: DocType: Role Permission for Page and Report,Roles HTML,Rols HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Dissabte DocType: User,Represents a User in the system.,Representa un usuari en el sistema. DocType: List View Setting,Disable Auto Refresh,Desactiva l’actualització automàtica DocType: Comment,Label,Etiqueta -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","La tasca {0}, que va assignar a {1}, s'ha tancat." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Si us plau, tancament aquesta finestra" DocType: Print Format,Print Format Type,Format d'impressió Tipus DocType: Newsletter,A Lead with this Email Address should exist,Hi ha d'haver una iniciativa amb aquesta adreça de correu electrònic @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Configuració SMTP per apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,trieu una DocType: Data Export,Filter List,Llista de filtres DocType: Data Export,Excel,sobresortir +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Missatge de resposta automàtica DocType: Data Migration Mapping,Condition,Condició apps/frappe/frappe/utils/data.py,{0} hours ago,Fa {0} hores @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,El coneixement base de contribuents DocType: Communication,Sent Read Receipt,Enviat confirmació de lectura DocType: Email Queue,Unsubscribe Method,Mètode per donar-se de baixa +DocType: Onboarding Slide,Add More Button,Afegeix més botó DocType: GSuite Templates,Related DocType,doctype relacionada apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Edita per afegir contingut apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Seleccioneu Idiomes apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detalls de la targeta apps/frappe/frappe/__init__.py,No permission for {0},Sense permís per {0} DocType: DocType,Advanced,Avançat +DocType: Onboarding Slide,Slide Image Source,Presentació de la imatge de diapositiva apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referència: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,mrs @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mestre DocType: DocType,User Cannot Create,L'usuari no pot crear apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fet amb èxit apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Accés Dropbox està aprovat! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Esteu segur que voleu combinar {0} amb {1}? DocType: Customize Form,Enter Form Type,Introduïu el tipus de formulari DocType: Google Drive,Authorize Google Drive Access,Autoritzeu Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Paràmetre de Missing Kanban Nom del tauler @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permetre DOCTYPE, DOCTYPE. Vés amb compte!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formats personalitzats per a impressió, correu electrònic" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma de {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Actualitzat Per Nova Versió DocType: Custom Field,Depends On,Depèn de DocType: Kanban Board Column,Green,Verd DocType: Custom DocPerm,Additional Permissions,Permisos addicionals @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar: no s'ha pogut crear el calendari per a {0}, codi d'error {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Edició Fila DocType: Workflow Action Master,Workflow Action Master,Mestre d'accions de Flux de treball +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Eliminar tots DocType: Custom Field,Field Type,Tipus de camp apps/frappe/frappe/utils/data.py,only.,només. DocType: Route History,Route History,Historial de la ruta @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Has oblidat la contrasenya? DocType: System Settings,yyyy-mm-dd,aaaa-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,identificació apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error del servidor +DocType: Server Script,After Delete,Després de Suprimir apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Consulteu tots els informes anteriors. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Cal iniciar una sessió Login DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No hi ha dades DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Enllaç que és la pàgina d'inici del lloc web. Enllaços estàndard (índex, inici de sessió, productes, bloc, sobre, contacte)" +DocType: Server Script,After Submit,Després d'enviar apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Error d'autenticació al rebre correus electrònics de compte de correu electrònic {0}. Missatge del servidor: {1} DocType: User,Banner Image,Imatge del banner DocType: Custom Field,Custom Field,Camp personalitzat @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Si l'usuari té cap paper marcat, llavors l'usuari es converteix en un "usuari del sistema". "Usuari del sistema" té accés a l'escriptori" DocType: System Settings,Date and Number Format,Format de Data i nombres apps/frappe/frappe/model/document.py,one of,un -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Formulari personalitzat apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Comprovació d'un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Mostrar Etiquetes DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuració> Usuari +DocType: DocType,Actions,Accions DocType: Workflow State,align-justify,align-justify DocType: User,Middle Name (Optional),Cognom 1 apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,No permès @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,No hi ha re DocType: System Settings,Security,Seguretat apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Programat per enviar a {0} destinataris apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Tallar +DocType: Server Script,After Save,Després de desar apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},el nou nom de {0} a {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} de {1} ({2} files amb fills) DocType: Currency,**Currency** Master,** Moneda ** MestreDivisa @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Valors del filtre DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Falla DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Última Execució DocType: Data Migration Run,Pull Failed,Toca fallat apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Mostra / Oculta targetes DocType: Communication,Feedback Request,Sol·licitud de retroalimentació apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importar dades des de fitxers CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Següents camps falten: +DocType: Notification Log,From User,De l’Usuari apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},S'està cancel·lant {0} DocType: Web Page,Main Section,Secció Principal DocType: Page,Icon,Icona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Consell: Incloure símbols, números i lletres majúscules en la contrasenya" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configureu les notificacions per a mencions, assignacions, punts d'energia i molt més." DocType: DocField,Allow in Quick Entry,Permetre en una entrada ràpida apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/aaaa @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL del tema DocType: Customize Form,Sort Field,Ordenar Camp DocType: Razorpay Settings,Razorpay Settings,ajustos Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Editar el filtre -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Afegir més DocType: System Settings,Session Expiry Mobile,Sessió de caducitat mòbil apps/frappe/frappe/utils/password.py,Incorrect User or Password,Usuari o contrasenya incorrectes apps/frappe/frappe/templates/includes/search_box.html,Search results for,Resultats de la cerca @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Regla del punt d’energia DocType: Communication,Delayed,Retard apps/frappe/frappe/config/settings.py,List of backups available for download,Llista de les còpies de seguretat disponibles per a baixar +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Proveu la nova Importació de dades apps/frappe/frappe/www/login.html,Sign up,Registra't apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Fila {0}: No es permet desactivar el Mandatari per als camps estàndard +DocType: Webhook,Enable Security,Activa la seguretat apps/frappe/frappe/config/customization.py,Dashboards,Taulers de comandament DocType: Test Runner,Output,sortida DocType: Milestone,Track Field,Camp de pista @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Després d'establir la propie apps/frappe/frappe/config/customization.py,Add fields to forms.,Afegir camps als formularis. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Afegeix un comentari +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} us ha assignat una nova tasca {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Mida de la lletra (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Només es permet personalitzar el document DocTypes estàndard des del formulari de personalització. DocType: Email Account,Sendgrid,SendGrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal de l'Menú apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Estableix els filtres DocType: Contact Us Settings,Email ID,Identificació de l'email DocType: Energy Point Rule,Multiplier Field,Camp multiplicador +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,No s'ha pogut crear l'ordre Razorpay. Contacteu amb l'administrador DocType: Dashboard Chart,Time Interval,Interval de temps DocType: Activity Log,Keep track of all update feeds,Feu un seguiment de tots els feeds d'actualització +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ha compartit un document {1} {2} amb vosaltres 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Clau DocType: Address,Contacts,Contactes DocType: System Settings,Setup Complete,Instal·lació completa apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Informe de totes les accions de documents +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","La plantilla d’importació ha de ser del tipus .csv, .xlsx o .xls" apps/frappe/frappe/www/update-password.html,New Password,Nova Contrasenya apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtre {0} que falta apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Ho sento! No es poden eliminar els comentaris generats automàticament @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Correr DocType: Blog Post,Content (HTML),Contingut (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Configuració per a DocType: Personal Data Download Request,User Name,Nom d’Usuari DocType: Workflow State,minus-sign,signe menys apps/frappe/frappe/public/js/frappe/request.js,Not Found,Extraviat @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,No {0} permís apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportació permisos personalitzats apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,No s'ha trobat cap element. DocType: Data Export,Fields Multicheck,Camps Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Completa DocType: Activity Log,Login,Iniciar Sessió DocType: Web Form,Payments,Pagaments apps/frappe/frappe/www/qrcode.html,Hi {0},Hola {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integració de Google Drive -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} va revertir els vostres punts a {1} {2} DocType: System Settings,Enable Scheduled Jobs,Habilita Treballs programats apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notes: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inactiu @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Planti apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Error de permís apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nom de {0} no pot contenir {1} DocType: User Permission,Applicable For,Aplicable per +DocType: Dashboard Chart,From Date,Des de la data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Èxit apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessió expirada DocType: Kanban Board Column,Kanban Board Column,Columna Junta Kanban @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Èx apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; no permès a condició DocType: Async Task,Async Task,Async Tasca DocType: Workflow State,picture,imatge -apps/frappe/frappe/www/complete_signup.html,Complete,Completa +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Completa DocType: DocType,Image Field,camp d'imatge DocType: Print Format,Custom HTML Help,Ajuda personalitzada HTML DocType: LDAP Settings,Default Role on Creation,Paper per defecte de la creació @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Següent Estat DocType: User,Block Modules,Mòduls de Bloc DocType: Print Format,Custom CSS,CSS personalitzat +DocType: Energy Point Rule,Apply Only Once,Sol·licita una sola vegada apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Afegir un comentari DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorat: {0} a {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Per defecte entrant DocType: Workflow State,repeat,repetició DocType: Website Settings,Banner,Bandera apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},El valor ha de ser un de {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Cancel·la tots els documents 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Vés a la llista de {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ajuda i Recerca @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrat p apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,La repetició automàtica d'aquest document s'ha desactivat. DocType: DocType,Hide Copy,Amaga Copiar apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Desactiveu totes les funcions +DocType: Server Script,Before Save,Abans de desar apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ha de ser únic apps/frappe/frappe/model/base_document.py,Row,Fila apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","Plantilla CC, BCC i correu electrònic" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,desconnectat apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},S'ha importat correctament {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Enviar missatge de correu electrònic per donar-se de baixa en -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edita apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname which will be the DocType for this link field. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documents assignades a vostè i per vostè. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,També podeu copiar-enganxar-ho @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Adjuntar imatge DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Contrasenya Actualitzada +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuració> Permisos d'usuari apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Passos per verificar el vostre inici de sessió apps/frappe/frappe/utils/password.py,Password not found,La contrasenya no trobat +DocType: Webhook,Webhook Secret,Secret del webhook DocType: Data Migration Mapping,Page Length,Longitud de pàgina DocType: Email Queue,Expose Recipients,exposar destinataris apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Annexar A és obligatòria per als correus entrants @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Adjunt Mida màxima (en MB) apps/frappe/frappe/www/login.html,Have an account? Login,Tens un compte? iniciar Sessió +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Configuració d'impressió ... DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Fila {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Usuari no està permès eliminar {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Introduï DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Títol del document apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatori) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Fa {0} any DocType: Social Login Key,Social Login Provider,Proveïdor d'inici de sessió social apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Afegir un altre comentari apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,No hi ha dades trobades al fitxer. Torneu a col·locar el nou fitxer amb dades. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",No s'han trobat camps que es puguin utilitzar com a columna de Kanban. Utilitzeu el formulari personalitzar per afegir un camp personalitzat del tipus "Selecciona". DocType: Address,GST State,estat GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: No es pot establir sense Cancel Enviar +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Usuari ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redireccionament obligat a Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Ajuda oberta DocType: DocType,Is Submittable,És submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Menció nova +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Menció nova apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,No s'ha sincronitzat cap nou contacte de Google. DocType: File,Uploaded To Google Drive,Penjat a Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,El valor per a un camp de verificació pot ser 0 o 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Safata d'entrada DocType: Kanban Board Column,Red,Vermell DocType: Workflow State,Tag,Etiqueta -DocType: Custom Script,Script,Guió +DocType: Report,Script,Guió apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,El document no es pot desar. DocType: Energy Point Rule,Maximum Points,Punts màxims apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,La meva configuració @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} punts d’apreciació per a {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Els usuaris poden ajustar els rols a la seva pàgina d'usuari. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Afegir comentari +DocType: Dashboard Chart,Select Date Range,Seleccioneu Interval de dates DocType: DocField,Mandatory,Obligatori apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Mòdul per exportar +DocType: Scheduled Job Type,Monthly Long,Llarg mensual apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: No s'ha establert cap conjunt permisos bàsic +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Envia un correu electrònic a {0} per enllaçar-lo aquí apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Significat de Presentar, anul·lar, modificar" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Per fer @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Feu el seguiment de DocType: Social Login Key,Identity Details,Detalls d'identitat apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},No es permet la transició per estat de flux de treball des de {0} a {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostra Tauler -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nou missatge DocType: File,Preview HTML,Vista prèvia HTML DocType: Desktop Icon,query-report,consulta d'informe DocType: Data Import Beta,Template Warnings,Advertències de plantilles @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Vinculat Amb apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Editeu Configuració de l'informe de correu electrònic automàtic DocType: Chat Room,Message Count,Recompte de missatges DocType: Workflow State,book,llibre +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} està enllaçat amb els següents documents enviats: {2} DocType: Communication,Read by Recipient,Llegir per destinatari DocType: Website Settings,Landing Page,La pàgina de destinació apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Error en la seqüència de personalització apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nom apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No hi ha permisos establerts per a aquest criteri. DocType: Auto Email Report,Auto Email Report,Acte Informe correu electrònic +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,S'ha compartit el nou document compartit apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Esborrar comentaris? DocType: Address Template,This format is used if country specific format is not found,Aquest format s'utilitza si no hi ha el format específic de cada país DocType: System Settings,Allow Login using Mobile Number,Permetre que inicia sessió usant Nombre Mòbil apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Si s'activa, els usuaris que inicien la sessió des de l'adreça IP restringida, no es demanaran a Autenticació de dos factors" +DocType: Server Script,After Cancel,Després de cancel·lar DocType: Auto Repeat,Get Contacts,Obtenir contactes apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Les entrades sota {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saltant la columna sense títol @@ -1684,6 +1757,7 @@ DocType: User,Login After,Entrada Després DocType: Print Format,Monospace,Monoespaiat DocType: Letter Head,Printing,Impressió DocType: Workflow State,thumbs-up,thumbs-up +DocType: Notification Log,Mention,Menció DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precisió ha d'estar entre 1 i 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,i apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Aquest informe s'ha generat a {0} DocType: Error Snapshot,Frames,Marc -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,assignació +DocType: Notification Log,Assignment,assignació DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Enllaç a la imatge DocType: Auto Email Report,Report Filters,Filtres d'informe @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,No es pot actualitzar esdeveniment apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,El codi de verificació s'ha enviat a la vostra adreça electrònica registrada. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Tritura +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,El vostre objectiu apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","El filtre ha de tenir 4 valors (DOCTYPE, nom de camp, operador, valor): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},No s'ha especificat cap nom per a {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Aplica la regla d'assignació apps/frappe/frappe/utils/bot.py,show,espectacle apps/frappe/frappe/utils/data.py,Invalid field name {0},Nom del camp no vàlid {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Cartografia del pla de migració de dades apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Inici de frappé ... DocType: Web Form Field,Max Length,longitud màxima -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Per {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,mapa marcador apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Presentar un problema @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Pàgina falta o traslladat apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Ressenyes DocType: DocType,Route,ruta apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,configuració de la passarel·la de pagament Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} va guanyar {1} punt per {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Obteniu imatges adjunts del document DocType: Chat Room,Name,Nom DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Obre l'enlla apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,El teu idioma DocType: Dashboard Chart,Average,Mitjana apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Afegir fila -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Impressora apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Consulta ha de ser un SELECT DocType: Auto Repeat,Completed,Acabat @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Següent token de sincronització DocType: Energy Point Settings,Energy Point Settings,Configuració del punt d’energia DocType: Async Task,Succeeded,Succeït apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Camps obligatoris requerits a {0} +DocType: Onboarding Slide Field,Align,Alinear apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Restablir permisos per {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Usuaris i permisos DocType: S3 Backup Settings,S3 Backup Settings,Configuració de còpia de seguretat de S3 @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nou nom de format d'impressió apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Feu clic a l’enllaç següent per aprovar la sol·licitud DocType: Workflow State,align-left,alinear-esquerra +DocType: Onboarding Slide,Action Settings,Configuració d'acció DocType: User,Defaults,Predeterminats +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per a la comparació, utilitzeu> 5, <10 o = 324. Per a intervals, utilitzeu 5:10 (per a valors entre 5 i 10)." DocType: Energy Point Log,Revert Of,Revertir apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Combinar amb existent DocType: User,Birth Date,Data De Naixement @@ -1896,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,En DocType: Notification,Value Change,Canvi de valor DocType: Google Contacts,Authorize Google Contacts Access,Autoritzeu Google Contact Access apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Es mostren només els camps numèrics de l'informe +apps/frappe/frappe/utils/data.py,1 week ago,Fa 1 setmana DocType: Data Import Beta,Import Type,Tipus d'importació DocType: Access Log,HTML Page,Pàgina HTML DocType: Address,Subsidiary,Filial @@ -1905,7 +1984,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,De carta apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invàlid servidor de correu sortint o Port DocType: Custom DocPerm,Write,Escriure -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Només l'Administrador té permís per crear QUERY/SCRIPT Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualització DocType: Data Import Beta,Preview,Preestrena apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","El camp "valor" és obligatori. Si us plau, especifiqui el valor d'actualitzar" @@ -1915,6 +1993,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Convida co DocType: Data Migration Run,Started,Va començar apps/frappe/frappe/permissions.py,User {0} does not have access to this document,L'usuari {0} no té accés a aquest document DocType: Data Migration Run,End Time,Hora de finalització +DocType: Dashboard Chart,Group By Based On,Per grup basat apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Seleccionar adjunts apps/frappe/frappe/model/naming.py, for {0},per {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,No està permès imprimir aquest document @@ -1956,6 +2035,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verificar DocType: Workflow Document State,Update Field,Actualitzar camps DocType: Chat Profile,Enable Chat,Activa el xat DocType: LDAP Settings,Base Distinguished Name (DN),Nom distingit base (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Deixa aquesta conversa apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opcions no establertes per a camp d'enllaç {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Cua / treballador @@ -2022,12 +2102,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Login no permès en aquest moment DocType: Data Migration Run,Current Mapping Action,Acció de cartografia actual DocType: Dashboard Chart Source,Source Name,font Nom -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,No hi ha cap compte de correu electrònic associat a l’Usuari. Afegeix un compte a Usuari> Bústia de correu electrònic. DocType: Email Account,Email Sync Option,Sincronitzar correu Opció apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Fila núm DocType: Async Task,Runtime,Temps d'execució DocType: Post,Is Pinned,Està fixat DocType: Contact Us Settings,Introduction,Introducció +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Necessitar ajuda? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin globalment apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguit per DocType: LDAP Settings,LDAP Email Field,LDAP Camp de correu electrònic @@ -2037,7 +2117,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Ja està DocType: User Email,Enable Outgoing,Habilita sortint DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Les etiquetes personalitzades -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de correu electrònic no configurat. Creeu un nou compte de correu electrònic des de Configuració> Correu electrònic> Compte de correu electrònic DocType: Comment,Submitted,Enviat DocType: Contact,Pulled from Google Contacts,Tirat de Google Contactes apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Petició invàlida @@ -2058,9 +2137,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Inici / Car apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Assignar a mi DocType: DocField,Dynamic Link,Enllaç Dinàmic apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Premeu la tecla Alt per activar dreceres addicionals a Menú i barra lateral +DocType: Dashboard Chart,To Date,Fins La Data DocType: List View Setting,List View Setting,Configuració de la vista de llista apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Mostra fallat llocs de treball -DocType: Event,Details,Detalls +DocType: Scheduled Job Log,Details,Detalls DocType: Property Setter,DocType or Field,DocType or Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Heu deixat sense omplir aquest document apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Color primari @@ -2068,7 +2148,6 @@ DocType: Communication,Soft-Bounced,-Soft Rebotats DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Si està habilitat, tots els usuaris poden iniciar la sessió des de qualsevol adreça IP mitjançant l'Autenticació de dos factors. Això també es pot establir per als usuaris específics de la pàgina d'usuari" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Sembla Clau publicable o clau secreta està malament !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Ajuda Ràpida per Establir permisos -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype per assignar etiquetes apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Mostrar recaigudes apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,El correu electrònic ha estat traslladat a les escombraries DocType: Report,Report Builder,Generador d'informes @@ -2083,6 +2162,7 @@ DocType: Workflow State,Upload,Pujar DocType: User Permission,Advanced Control,Control avançat DocType: System Settings,Date Format,Format de data apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,No Publicat +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s'ha trobat cap plantilla d'adreces per defecte. Creeu-ne un de nou a Configuració> Impressió i marca> Plantilla d'adreces. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Accions per al flux de treball (per exemple, aprovar, Cancel)." DocType: Data Import,Skip rows with errors,Omet files amb errors DocType: Workflow State,flag,bandera @@ -2092,7 +2172,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Impr apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Saltar al camp DocType: Contact Us Settings,Forward To Email Address,Reenviar al Correu Electrònic DocType: Contact Phone,Is Primary Phone,És telèfon principal -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envia un correu electrònic a {0} per enllaçar-lo aquí. DocType: Auto Email Report,Weekdays,Dies laborables apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} registres s'exportaran apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid @@ -2100,7 +2179,7 @@ DocType: Post Comment,Post Comment,Escriu un comentari apps/frappe/frappe/config/core.py,Documents,Documents apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Registre d’activitats DocType: Social Login Key,Custom Base URL,URL base personalitzada -DocType: Email Flag Queue,Is Completed,es completa +DocType: Onboarding Slide,Is Completed,es completa apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Obteniu camps apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Edita el perfil DocType: Kanban Board Column,Archived,Arxivat @@ -2111,11 +2190,12 @@ 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 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,avui +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,avui apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Envieu després d'importar DocType: Error Log,Log of Scheduler Errors,Registre d'errors de planificació DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Enllaç d'ajuda de diapositives a bord DocType: OAuth Client,App Client Secret,App secret de client apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Presentar apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,El pare és el nom del document al qual s'afegiran les dades. @@ -2123,7 +2203,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,MAJÚSCULES apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML personalitzat apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Introduïu carpeta de nom -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s'ha trobat cap plantilla d'adreces per defecte. Creeu-ne un de nou a Configuració> Impressió i marca> Plantilla d'adreces. apps/frappe/frappe/auth.py,Unknown User,Usuari desconegut apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Seleccioneu Rol DocType: Comment,Deleted,Suprimit @@ -2139,7 +2218,7 @@ DocType: Chat Token,Chat Token,Tauler de xat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Crea un gràfic apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,No importeu -DocType: Web Page,Center,Centre +DocType: Onboarding Slide Field,Center,Centre DocType: Notification,Value To Be Set,Valor d'ajust apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edita {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primer Nivell @@ -2147,7 +2226,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nom de la base de dades apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Formulari d'actualització DocType: DocField,Select,Seleccionar -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Veure registre complet +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Veure registre complet DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expressió Python simple, exemple: status == 'Obrir' i escriviu == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,L'arxiu no s'adjunta apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Connexió perduda. Pot ser que algunes funcions no funcionin. @@ -2179,6 +2258,7 @@ DocType: Web Page,HTML for header section. Optional,HTML for header section. Opc apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Aquesta característica és nou i encara experimental apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Màxim {0} files permeses DocType: Dashboard Chart Link,Chart,Gràfic +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global Donar-se de baixa apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Aquesta és una contrasenya molt comú. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Veure @@ -2195,6 +2275,7 @@ DocType: Data Migration Connector,Hostname,Nom de l'amfitrió DocType: Data Migration Mapping,Condition Detail,Detall d'estat apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Per a la moneda {0}, l’import mínim de la transacció ha de ser {1}" DocType: DocField,Print Hide,Imprimir Amaga +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,A l'Usuari apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Introduir valor DocType: Workflow State,tint,tint @@ -2261,6 +2342,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Codi QR per a apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Afegir a la llista de coses per fer DocType: Footer Item,Company,Empresa apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Mitjana de {0} +DocType: Scheduled Job Log,Scheduled,Programat DocType: User,Logout from all devices while changing Password,Tanqueu tots els dispositius mentre canvieu la contrasenya apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verificar Contrasenya apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Hi van haver errors @@ -2286,7 +2368,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,El permís d'usuari ja existeix apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Assignació de la columna {0} al camp {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Visualitza {0} -DocType: User,Hourly,Hora per hora +DocType: Scheduled Job Type,Hourly,Hora per hora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth client d'aplicació DocType: DocField,Fetch If Empty,Obtenir si està buit DocType: Data Migration Connector,Authentication Credentials,Credencials d'autenticació @@ -2297,10 +2379,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},guanyada per {0} mitjançant la regla automàtica {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} o {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Esteu tots configurats! DocType: Workflow State,trash,escombraries DocType: System Settings,Older backups will be automatically deleted,còpies de seguretat anteriors s'eliminaran de forma automàtica apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Identificador de clau d'accés no vàlid o clau d'accés secret. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Heu perdut alguns punts d’energia DocType: Post,Is Globally Pinned,Està fixat globalment apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Activitat recent DocType: Workflow Transition,Conditions,Condicions @@ -2309,6 +2391,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confirmat DocType: Event,Ends on,Finalitza en DocType: Payment Gateway,Gateway,Porta d'enllaç DocType: LDAP Settings,Path to Server Certificate,Certificat de ruta al servidor +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript està desactivat al navegador apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,No hi ha prou permís per veure enllaços apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Títol d'adreça obligatori. DocType: Google Contacts,Push to Google Contacts,Empenteu a Google Contacts @@ -2327,7 +2410,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-oest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Si es marca aquesta opció, es importaran les files amb dades vàlides i les files no vàlides seran enviades a un fitxer nou per importar-lo més tard." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document és només editable pels usuaris de paper -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","La tasca {0}, que va assignar a {1}, ha estat tancat per {2}." DocType: Print Format,Show Line Breaks after Sections,Mostra salts de línia després de les Seccions DocType: Communication,Read by Recipient On,Llegir per destinatari encès DocType: Blogger,Short Name,Nom curt @@ -2359,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Assi DocType: Translation,PR sent,S'ha enviat un PR DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Enviar només els registres actualitzats en últimes hores X DocType: Communication,Feedback,Resposta +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,S'ha actualitzat a una nova versió 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Obre la traducció apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Aquest correu electrònic està autogenerat DocType: Workflow State,Icon will appear on the button,La icona apareixerà al botó @@ -2397,6 +2480,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Pàgina no DocType: DocField,Precision,Precisió DocType: Website Slideshow,Slideshow Items,Presentació Articles apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Intenta evitar les paraules i caràcters repetits +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Notificacions desactivades +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Esteu segur que voleu suprimir totes les files? DocType: Workflow Action,Workflow State,Estat de flux de treball (workflow) apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Afegit files apps/frappe/frappe/www/list.py,My Account,El meu compte @@ -2405,6 +2490,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dies Després apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Connexió de safata QZ activa DocType: Contact Us Settings,Settings for Contact Us Page,Ajustos per Contacti'ns Pàgina +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Activa el servidor d'impressió apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Fa {0} setmanes DocType: Email Account,Footer,Peu de pàgina @@ -2430,8 +2516,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Advertència apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Es pot imprimir en diverses pàgines DocType: Data Migration Run,Percent Complete,Percentatge complet -DocType: Tag Category,Tag Category,tag Categoria -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per a la comparació, utilitzeu> 5, <10 o = 324. Per a intervals, utilitzeu 5:10 (per a valors entre 5 i 10)." DocType: Google Calendar,Pull from Google Calendar,Tira de Google Calendar apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Ajuda DocType: User,Login Before,Identifica't abans @@ -2441,17 +2525,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Amaga caps de setmana apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genera automàticament documents recurrents. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,És +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-signe apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valor {0} no pot ser una llista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Com s'ha de formatar aquesta moneda? Si no s'estableix, s'utilitzarà valors predeterminats del sistema" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Enviar documents {0}? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","S'ha produït un error en connectar-se a l'aplicació de safata QZ ...

Heu de tenir instal·lada i en funcionament l’aplicació QZ Tray per utilitzar la funció d’impressió en brut.

Feu clic aquí per descarregar i instal·lar QZ Safata .
Feu clic aquí per obtenir més informació sobre la impressió en brut ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Cartografia d'impressora apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Si us plau, guardi abans de connectar." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Voleu cancel·lar tots els documents enllaçats? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Afegit {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType no es pot canviar de {0} a {1} a la fila {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Permisos de rol DocType: Help Article,Intermediate,intermedi +apps/frappe/frappe/config/settings.py,Email / Notifications,Correu electrònic / Notificacions apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} ha canviat {1} a {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Document cancel·lat restaurat com a esborrany DocType: Data Migration Run,Start Time,Hora d'inici @@ -2468,6 +2556,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Po apps/frappe/frappe/email/smtp.py,Invalid recipient address,Direcció del destinatari no vàlid DocType: Workflow State,step-forward,pas cap endavant DocType: System Settings,Allow Login After Fail,Permet l'inici de sessió després d'un error +DocType: DocType Link,DocType Link,Enllaç DocType DocType: Role Permission for Page and Report,Set Role For,Per establir Rol DocType: GCalendar Account,The name that will appear in Google Calendar,El nom que apareixerà a Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,L'habitació directa amb {0} ja existeix. @@ -2484,6 +2573,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Crear un DocType: Contact,Google Contacts,Contactes de Google DocType: GCalendar Account,GCalendar Account,Compte de GCalendar DocType: Email Rule,Is Spam,és spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Últim apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Informe {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Obrir {0} DocType: Data Import Beta,Import Warnings,Advertències d’importació @@ -2495,6 +2585,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,documents eliminats apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,El format CSV distingeix entre majúscules i minúscules apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Icona d'escriptori ja existeix +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Especifiqueu en què han de aparèixer les diapositives en tots els dominis. Si no s’especifica res, la diapositiva es mostra a tots els dominis de manera predeterminada." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: el camp {1} de la fila {2} no es pot amagar i obligatòriament per defecte DocType: Newsletter,Create and Send Newsletters,Crear i enviar butlletins de notícies @@ -2505,6 +2596,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Identificador d'esdeveniments de Google Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Pare"" es refereix a la taula principal en la qual cal afegir aquesta fila" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Punts de revisió: +DocType: Scheduled Job Log,Scheduled Job Log,Registre de treball programat +DocType: Server Script,Before Delete,Abans de suprimir apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Compartit Amb apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Adjunta fitxers / URL i afegiu-los a la taula. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,El missatge no està configurat @@ -2527,19 +2620,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Configuració de la pàgina Qui som apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,configuració de la passarel·la de pagament de la ratlla apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Impressió enviada a la impressora -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Punts d’energia +DocType: Notification Settings,Energy Points,Punts d’energia +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},El temps {0} ha de tenir el format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,per exemple pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generar claus apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Això eliminarà les vostres dades de forma permanent. DocType: DocType,View Settings,veure configuració +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nova notificació DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Estructura de sol·licitud +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Falta el mètode del control get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Pendent de verificar DocType: Website Meta Tag,Website Meta Tag,Etiqueta Meta del lloc web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Si el port no és estàndard (per exemple, 587). Si a Google Cloud, proveu el port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Esborra la data de finalització, ja que no pot ser anterior per a pàgines publicades." DocType: User,Send Me A Copy of Outgoing Emails,Envia'm una còpia de correus electrònics sortints -DocType: System Settings,Scheduler Last Event,Programador Últim esdeveniment DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Afegir Google Analytics ID: per exemple. UA-89XXX57-1. Si us plau, busca ajuda sobre Google Analytics per obtenir més informació." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,La contrasenya no pot contenir més de 100 caràcters DocType: OAuth Client,App Client ID,App ID de client @@ -2568,6 +2663,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nova contrase apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} compartit aquest document {1} DocType: Website Settings,Brand Image,Imatge de marca DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,La plantilla d'importació ha de contenir una capçalera i almenys una fila. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,S'ha configurat Google Calendar. apps/frappe/frappe/config/website.py,"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 @@ -2577,6 +2673,7 @@ DocType: User Social Login,User Social Login,Accés social de l'usuari apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} va criticar el vostre treball a {1} amb {2} punt DocType: Contact,All,Tots DocType: Email Queue,Recipient,Receptor +DocType: Webhook,Webhook Security,Seguretat de Webhook DocType: Communication,Has Attachment,té fitxers adjunts DocType: Address,Sales User,Usuari de vendes apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Arrossegar i eines Separar per construir i personalitzar formats d'impressió. @@ -2643,7 +2740,6 @@ DocType: Data Migration Mapping,Migration ID Field,Camp d'identificació de DocType: Dashboard Chart,Last Synced On,Darrer sincronitzat DocType: Comment,Comment Type,Tipus Comentari DocType: OAuth Client,OAuth Client,client OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} va criticar el vostre treball a {1} {2} DocType: Assignment Rule,Users,Usuaris DocType: Address,Odisha,Odisha DocType: Report,Report Type,Tipus d'informe @@ -2668,14 +2764,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,L'autoregulació no està permesa DocType: GSuite Templates,Template ID,ID de plantilla apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,No es permet la combinació del tipus de subvenció ( {0} ) i el tipus de resposta ( {1} ) -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nou missatge de {0} DocType: Portal Settings,Default Role at Time of Signup,El paper per defecte en el moment de la Inscripció DocType: DocType,Title Case,Títol del Cas apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Feu clic a l'enllaç següent per descarregar les vostres dades apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},S'ha habilitat la safata d'entrada de correu electrònic per a l'usuari {0} DocType: Data Migration Run,Data Migration Run,Execució de la migració de dades DocType: Blog Post,Email Sent,Correu electrònic enviat -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Més vells DocType: DocField,Ignore XSS Filter,Ignorar filtre XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,eliminat apps/frappe/frappe/config/integrations.py,Dropbox backup settings,la configuració de còpia de seguretat de Dropbox @@ -2730,6 +2824,7 @@ DocType: Async Task,Queued,En cua DocType: Braintree Settings,Use Sandbox,ús Sandbox apps/frappe/frappe/utils/goal.py,This month,Aquest mes apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nou format personalitzat Imprimir +DocType: Server Script,Before Save (Submitted Document),Abans de desar (document enviat) DocType: Custom DocPerm,Create,Crear apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,No hi ha més articles a mostrar apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Vés al registre anterior @@ -2786,6 +2881,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Mou a la paperera DocType: Web Form,Web Form Fields,Web Form Fields DocType: Data Import,Amended From,Modificada Des de +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Afegiu un enllaç de vídeo d’ajuda per si l’usuari no té ni idea de què cal omplir la diapositiva. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Avís: No es pot trobar {0} en qualsevol taula relacionada amb {1} DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Aquest document es posa en cua per a la seva execució actualment. Siusplau torna-ho a provar @@ -2807,6 +2903,7 @@ DocType: Blog Post,Blog Post,Post Blog DocType: Access Log,Export From,Exporta des de apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Cerca avançada apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,No us permet veure el butlletí. +DocType: Dashboard Chart,Group By,Agrupar per DocType: User,Interests,interessos apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic DocType: Energy Point Rule,Allot Points To Assigned Users,Assigna els punts als usuaris cedits @@ -2822,6 +2919,7 @@ DocType: Assignment Rule,Assignment Rule,Regla d’assignació apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Suggerida Nom d'usuari: {0} DocType: Assignment Rule Day,Day,dia apps/frappe/frappe/public/js/frappe/desk.js,Modules,mòduls +DocType: DocField,Mandatory Depends On,L'obligatorietat depèn apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,L'èxit de pagament apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} electrònic DocType: OAuth Bearer Token,Revoked,revocat @@ -2829,6 +2927,7 @@ DocType: Web Page,Sidebar and Comments,Barra lateral i Comentaris apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","No es permet admetre {0} document, habiliteu Permetre impressió per a {0} a la configuració d'impressió" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de correu electrònic no configurat. Creeu un nou compte de correu electrònic des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vegeu el document a {0} DocType: Stripe Settings,Publishable Key,clau publicable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Inicia la importació @@ -2842,13 +2941,13 @@ DocType: Currency,Fraction,Fracció apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Esdeveniment sincronitzat amb Google Calendar. DocType: LDAP Settings,LDAP First Name Field,LDAP camp de nom DocType: Contact,Middle Name,Segon nom +DocType: DocField,Property Depends On,La propietat depèn DocType: Custom Field,Field Description,Descripció del camp apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nom no establert a través de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Safata d'entrada de correu electrònic apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Actualitzant {0} de {1}, {2}" DocType: Auto Email Report,Filters Display,filtres de visualització apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",El camp "modificat_de" ha d'estar present per realitzar una modificació. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ha agraït el teu treball a {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Desa els filtres DocType: Address,Plant,Planta apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Respondre a tots @@ -2889,11 +2988,11 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Informe: DocType: Print Settings,Print taxes with zero amount,Imprimiu impostos amb import zero apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} no se'ls permet canviar el nom +DocType: Server Script,Before Insert,Abans d'inserir DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Adreça Línia 2 DocType: Address,Reference,referència apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Assignat a -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic per defecte des de Configuració> Correu electrònic> Compte de correu electrònic DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detall de cartografia de la migració de dades DocType: Data Import,Action,Acció DocType: GSuite Settings,Script URL,URL del guió @@ -2919,11 +3018,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,Vista de llista DocType: Email Account,Use TLS,Utilitza TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Usuari o contrasenya no vàlids +DocType: Scheduled Job Type,Weekly Long,Llarg setmanalment apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Descarregar plantilla apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Add custom javascript to forms. ,Role Permissions Manager,Administrador de Permisos de rols apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nom del nou format d'impressió apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Commuta la barra lateral +DocType: Server Script,After Save (Submitted Document),Després de desar (document enviat) DocType: Data Migration Run,Pull Insert,Tire de la inserció DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Punts màxims permesos després de multiplicar els punts amb el valor multiplicador (Nota: No hi ha cap límit deixar aquest camp buit o establir 0) @@ -2943,6 +3044,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Bloc apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP no instal·lat apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Descàrrega de dades apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},va canviar els valors de {0} {1} +DocType: Server Script,Before Cancel,Abans de cancel·lar DocType: Workflow State,hand-right,la mà dreta DocType: Website Settings,Subdomain,Subdomini DocType: S3 Backup Settings,Region,Regió @@ -2988,12 +3090,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Contrasenya Anterior DocType: S3 Backup Settings,us-east-1,us-est-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Missatges de {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Per formatar columnes, donar títols de les columnes a la consulta." +DocType: Onboarding Slide,Slide Fields,Lliscar camps DocType: Has Domain,Has Domain,té domini DocType: User,Allowed In Mentions,Esmentats en mencions apps/frappe/frappe/www/login.html,Don't have an account? Sign up,No tens un compte? Registra't apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,No es pot eliminar el camp ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Documents subscrits apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Configuració de l’usuari DocType: Report,Reference Report,Informe de referència DocType: Activity Log,Link DocType,enllaç dOCTYPE @@ -3011,6 +3115,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoritzeu Google Cale apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La pàgina que està buscant no es troba. Això podria ser degut a que es mou o hi ha un error tipogràfic a l'enllaç. apps/frappe/frappe/www/404.html,Error Code: {0},Codi d'error: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripció de pàgina de llistat, en text, només un parell de línies. (Màxim 140 caràcters)" +DocType: Server Script,DocType Event,Esdeveniment DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} són camps obligatoris DocType: Workflow,Allow Self Approval,Permet l'autoaprovenció DocType: Event,Event Category,Categoria d'esdeveniments @@ -3027,6 +3132,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,El teu nom apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connexió d'èxit DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Ja existeix una diapositiva a bord del tipus de diapositiva. DocType: DocType,Default Sort Field,Camp d'ordenació predeterminada DocType: File,Is Folder,És Carpeta DocType: Document Follow,DocType,Doctype @@ -3065,8 +3171,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Els val DocType: Workflow State,arrow-up,arrow-up DocType: Dynamic Link,Link Document Type,Enllaç Tipus de document apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Hauria d'haver-hi com a mínim una fila per a la taula {0} +DocType: Server Script,Server Script,Script del servidor apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Per configurar la repetició automàtica, activeu "Permet la repetició automàtica" des de {0}." DocType: OAuth Bearer Token,Expires In,en expira +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","La quantitat de vegades que voleu repetir el conjunt de camps (per exemple: si voleu 3 clients a la diapositiva, configureu aquest camp a 3. Només el primer conjunt de camps es mostra com obligatori a la diapositiva)" DocType: DocField,Allow on Submit,Permetre al presentar DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Tipus d'excepció @@ -3076,6 +3184,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Encapçalaments apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Pròxims esdeveniments apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Si us plau, introdueixi els valors amb accés a aplicacions clau i l'App clau secreta" +DocType: Email Account,Append Emails to Sent Folder,Afegeix correus electrònics a la carpeta enviada DocType: Web Form,Accept Payment,accepti el pagament apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selecciona l'element de la llista apps/frappe/frappe/config/core.py,A log of request errors,Un registre d'errors de petició @@ -3094,7 +3203,7 @@ DocType: Translation,Contributed,Hi va contribuir apps/frappe/frappe/config/customization.py,Form Customization,Personalització del formulari apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,No hi ha sessions actives DocType: Web Form,Route to Success Link,Enllaç de ruta cap a l'èxit -DocType: Top Bar Item,Right,Dreta +DocType: Onboarding Slide Field,Right,Dreta apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,No hi ha esdeveniments pròxims DocType: User,User Type,Tipus d'usuari DocType: Prepared Report,Ref Report DocType,Ref. Informe DocType @@ -3112,6 +3221,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Siusplau torna-h apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',L'URL ha de començar amb "http: //" o "https: //" apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opció 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Això no es pot desfer DocType: Workflow State,Edit,Edita DocType: Website Settings,Chat Operators,Operadors de xat DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3123,7 +3233,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,L’informe amb més de 10 columnes es veu millor en mode Paisatge. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nom del camp no vàlid: {0} DocType: Milestone,Milestone,Fita @@ -3132,7 +3241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Vés a {0} apps/frappe/frappe/email/queue.py,Emails are muted,Els correus electrònics es silencien apps/frappe/frappe/config/integrations.py,Google Services,Serveis de Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + A dalt -apps/frappe/frappe/utils/data.py,1 weeks ago,fa 1 setmana +DocType: Onboarding Slide,Slide Description,Descripció de la diapositiva DocType: Communication,Error,Error apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Primer configureu un missatge DocType: Auto Repeat,End Date,Data de finalització @@ -3153,10 +3262,12 @@ DocType: Footer Item,Group Label,Label Group DocType: Kanban Board,Kanban Board,Junta Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,S'ha configurat Google Contactes. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,S'exportarà 1 registre +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,No hi ha cap compte de correu electrònic associat a l’Usuari. Afegeix un compte a Usuari> Bústia de correu electrònic. DocType: DocField,Report Hide,Amaga Informe apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},vista d'arbre no està disponible per a {0} DocType: DocType,Restrict To Domain,Restringir al domini DocType: Domain,Domain,Domini +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,L'URL del fitxer no és vàlid. Poseu-vos en contacte amb l'administrador del sistema. DocType: Custom Field,Label Help,Label Help DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Les dates són sovint fàcils d'endevinar. @@ -3181,6 +3292,7 @@ DocType: Workflow State,hand-left,hand-left DocType: Data Import,If you are updating/overwriting already created records.,Si esteu actualitzant o sobreescrivint registres ja creats. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,És global DocType: Email Account,Use SSL,Utilitza SSL +DocType: Webhook,HOOK-.####,RECOLLIDA -. #### DocType: Workflow State,play-circle,joc de cercle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,El document no s'ha pogut assignar correctament apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",L'expressió "depends_on" no és vàlida @@ -3197,6 +3309,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Darrera actualització apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Per al tipus de document DocType: Workflow State,arrow-right,fletxa cap a la dreta +DocType: Server Script,API Method,Mètode API DocType: Workflow State,Workflow state represents the current state of a document.,Estat de flux de treball representa l'estat actual d'un document. DocType: Letter Head,Letter Head Based On,Cap de lletra basat apps/frappe/frappe/utils/oauth.py,Token is missing,Token falta @@ -3236,6 +3349,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compacte article Imprimir DocType: Email Account,uidnext,UIDNEXT DocType: User,Redirect URL,URL de redireccionament +DocType: Onboarding Slide Field,Placeholder,Posseïdor del lloc DocType: SMS Settings,Enter url parameter for receiver nos,Introdueix els paràmetres URL per als receptors DocType: Chat Profile,Online,en línia DocType: Email Account,Always use Account's Name as Sender's Name,Utilitzeu sempre el nom del compte com a nom del remitent @@ -3245,7 +3359,6 @@ DocType: Workflow State,Home,casa DocType: OAuth Provider Settings,Auto,acte DocType: System Settings,User can login using Email id or User Name,L'usuari pot iniciar la sessió utilitzant l'identificador de correu electrònic o el nom d'usuari DocType: Workflow State,question-sign,question-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} està desactivat apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",El camp "ruta" és obligatori per a les visualitzacions web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inseriu una columna abans de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,L’usuari d’aquest camp obtindrà punts recompensats @@ -3270,6 +3383,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Si Propietari DocType: Data Migration Mapping,Push,Empenta apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Desplegueu fitxers aquí DocType: OAuth Authorization Code,Expiration time,temps de termini +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Obriu els documents DocType: Web Page,Website Sidebar,Barra Lateral pàgina web DocType: Web Form,Show Sidebar,Mostra la barra lateral apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Has d'estar registrat per accedir a aquest {0}. @@ -3285,6 +3399,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Dreceres gen DocType: Desktop Icon,Page,Pàgina apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},No s'ha pogut trobar {0} a {1} apps/frappe/frappe/utils/password_strength.py,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/model/rename_doc.py,Document renamed from {0} to {1},Document reanomenat de {0} a {1} apps/frappe/frappe/config/website.py,Knowledge Base,Base de coneixements DocType: Workflow State,briefcase,briefcase apps/frappe/frappe/model/document.py,Value cannot be changed for {0},El valor no pot ser canviat per {0} @@ -3321,6 +3436,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format d'impressió apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Canvia la vista en quadrícula apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Vés al registre següent +DocType: System Settings,Time Format,Format del temps apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,credencials de passarel·la de pagaments no vàlids DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Aquest és el fitxer de plantilla generat amb només les files que tenen algun error. Heu d'utilitzar aquest fitxer per a la correcció i la importació. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Establir permisos en Tipus de documents i funcions @@ -3363,12 +3479,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Respondre apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Articles a la turística (marcadors de posició) DocType: DocField,Collapsible Depends On,Plegable Depèn de DocType: Print Style,Print Style Name,Nom de l'estil d'impressió +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,El camp Per grup es requereix per crear un diagrama de tauler DocType: Print Settings,Allow page break inside tables,Permetre salt de pàgina dins de les taules DocType: Email Account,SMTP Server,Servidor SMTP DocType: Print Format,Print Format Help,Format d'impressió Ajuda apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,L'habitació {0} ha de tenir un màxim d'un usuari. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Comptar +DocType: Dashboard Chart,Group By Type,Grup per tipus apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nou comentari sobre {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurada {0} com {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Si està actualitzant, si us plau seleccioneu ""Sobreescriure"" no s'eliminaran les files existents." @@ -3379,14 +3497,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Perfil d& DocType: Web Form,Web Form,Formulari Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La data {0} ha d'estar en format: {1} DocType: About Us Settings,Org History Heading,Org History Heading +DocType: Scheduled Job Type,Scheduled Job Type,Tipus de treball programat DocType: Print Settings,Allow Print for Cancelled,Permetre impressió per Cancel·lat DocType: Communication,Integrations can use this field to set email delivery status,Integracions poden utilitzar aquest camp per a establir l'estat de lliurament de correu electrònic +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,No teniu permisos per cancel·lar tots els documents enllaçats. DocType: Web Form,Web Page Link Text,Text del link a la Pàgina Web DocType: Page,System Page,sistema de Pàgina apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Establir format predeterminat, mida de pàgina, l'estil d'impressió, etc." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalitzacions per {0} exportats a:
{1} DocType: Website Settings,Include Search in Top Bar,Incloure Cerca a Top Bar +DocType: Scheduled Job Type,Daily Long,Llarg diari DocType: GSuite Settings,Allow GSuite access,Permetre l'accés GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming @@ -3489,6 +3610,7 @@ DocType: Notification,Send days before or after the reference date,Enviar dies a DocType: User,Allow user to login only after this hour (0-24),Permetre l'accés a l'usuari només després d'aquesta hora (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Assigna un per un, en seqüència" DocType: Integration Request,Subscription Notification,Notificació de subscripció +DocType: Customize Form Field, Allow in Quick Entry ,Permetre l'entrada ràpida apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,o enganxeu una DocType: Auto Repeat,Start Date,Data De Inici apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Valor @@ -3503,6 +3625,7 @@ DocType: Google Drive,Backup Folder ID,Identificador de carpeta de còpia de seg apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,No en la manera de desenvolupador! Situat en site_config.json o fer DOCTYPE 'Custom'. DocType: Workflow State,globe,globus DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa +DocType: Onboarding Slide Help Link,Video,Vídeo DocType: Assignment Rule,Priority,Prioritat DocType: Email Queue,Unsubscribe Param,Donar-se de baixa Param DocType: DocType,Hide Sidebar and Menu,Amagueu la barra lateral i el menú @@ -3514,6 +3637,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Permetre la importació (a apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Configuració de la pàgina +DocType: Notification Settings,Notification Settings,Configuració de notificació apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,S'està desant ... apps/frappe/frappe/www/update-password.html,Invalid Password,contrasenya invàlida apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,S'ha importat correctament {0} registre fora de {1}. @@ -3529,6 +3653,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Imatge de cap de lletra DocType: Address,Party GSTIN,partit GSTIN +DocType: Scheduled Job Type,Cron Format,Format Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Informe DocType: SMS Settings,Use POST,Utilitzeu POST DocType: Communication,SMS,SMS @@ -3573,18 +3698,20 @@ DocType: Workflow,Allow approval for creator of the document,Permet l'aprova apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Desa l’informe DocType: Webhook,on_cancel,on_cancelar DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Acció del servidor apps/frappe/frappe/core/doctype/user/user.py,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/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,El camp pare ha de ser un nom de camp vàlid apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,No s'ha pogut modificar la subscripció DocType: LDAP Settings,LDAP Group Field,Camp del grup LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Notificació Document subscrit apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Equival apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Format CSV no vàlid -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","S'ha produït un error en connectar-se a l'aplicació de safata QZ ...

Heu de tenir instal·lada i en funcionament l’aplicació QZ Tray per utilitzar la funció d’impressió en brut.

Feu clic aquí per descarregar i instal·lar QZ Safata .
Feu clic aquí per obtenir més informació sobre la impressió en brut ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Establir el nombre de còpies de seguretat DocType: DocField,Do not allow user to change after set the first time,No permetre que l'usuari pugui canviar després d'establir la primera vegada apps/frappe/frappe/utils/data.py,1 year ago,fa 1 any +DocType: DocType,Links Section,Secció d'enllaços apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Visualitza el registre de tots els esdeveniments d'impressió, descàrrega i exportació" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mes DocType: Contact,Contact,Contacte @@ -3611,16 +3738,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nou Correu DocType: Custom DocPerm,Export,Exportació apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Per utilitzar Google Calendar, activeu {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},També afegint el camp de dependència d'estat {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},S'ha actualitzat correctament {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Fallada la safata QZ: DocType: Dropbox Settings,Dropbox Settings,Ajustos de Dropbox DocType: About Us Settings,More content for the bottom of the page.,Més contingut per la part inferior de la pàgina. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Aquest document ha estat revertit apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Execució de còpia de seguretat de Google Drive +DocType: Webhook,Naming Series,Sèrie de nomenclatura DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE en què el present del flux de treball és aplicable. DocType: User,Enabled,Activat apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,No s'ha pogut completar la configuració apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nou {0}: {1} -DocType: Tag Category,Category Name,Nom de categoria +DocType: Blog Category,Category Name,Nom de categoria apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Els pares han d’obtenir dades de la taula infantil apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Els subscriptors d'importació DocType: Print Settings,PDF Settings,Configuració de PDF @@ -3656,6 +3786,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Calendari apps/frappe/frappe/client.py,No document found for given filters,Cap document trobat per filtres donats apps/frappe/frappe/config/website.py,A user who posts blogs.,Un usuari que publica blogs. +DocType: DocType Action,DocType Action,Acció DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Una altra {0} per {1} ha nom, seleccioneu un altre nom" DocType: DocType,Custom?,Personalitzada? DocType: Website Settings,Website Theme Image,Lloc web Imatge per tema @@ -3665,6 +3796,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},No es pot apps/frappe/frappe/config/integrations.py,Backup,reserva apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,El tipus de document és necessari per crear un diagrama de tauler DocType: DocField,Read Only,Només lectura +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,No s'ha pogut crear la comanda de motriu apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nou Butlletí DocType: Energy Point Log,Energy Point Log,Registre de punts energètics DocType: Print Settings,Send Print as PDF,Envia la impressió com a PDF @@ -3690,16 +3822,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con apps/frappe/frappe/www/login.html,Or login with,O ingressar amb DocType: Error Snapshot,Locals,Els locals apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicada a través d'{0} el {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} t'ha mencionat en un comentari en {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Selecciona un grup per ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} és necessari DocType: Integration Request,Integration Type,Tipus d'Integració DocType: Newsletter,Send Attachements,Enviar Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,No s’han trobat filtres apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integració de contactes de Google. DocType: Transaction Log,Transaction Log,Registre de transaccions apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Estadístiques basades en el rendiment del mes passat (de {0} a {1}) DocType: Contact Us Settings,City,Ciutat +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Amagueu les targetes per a tots els usuaris apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Habiliteu Permet la repetició automàtica per al doctype {0} en forma de personalització DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Visualitza el document @@ -3710,6 +3843,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Si està activat, es fa un seguiment dels canvis al document i es mostren a la línia de temps" apps/frappe/frappe/core/doctype/doctype/doctype.py,'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} DocType: Energy Point Log,Appreciation,Apreciació +DocType: Dashboard Chart,Number of Groups,Nombre de grups apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,veure Llista DocType: Workflow,Don't Override Status,No correcció d'estat apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,El terme de cerca @@ -3751,7 +3885,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-nord-oest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limitar el nombre de còpies de seguretat de DB DocType: Custom DocPerm,Level,Nivell -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Últims 30 dies DocType: Custom DocPerm,Report,Informe apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,La quantitat ha de ser més gran que 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Connectat a la safata QZ. @@ -3768,6 +3901,7 @@ DocType: S3 Backup Settings,us-west-2,nosaltres-oest-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Seleccioneu Taula infantil apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Action primari apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Canvi +DocType: Social Login Key,User ID Property,Propietat d'identificació d'usuari DocType: Email Domain,domain name,nom de domini DocType: Contact Email,Contact Email,Correu electrònic de contacte DocType: Kanban Board Column,Order,ordre @@ -3790,7 +3924,7 @@ DocType: Contact,Last Name,Cognoms DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Esquerra DocType: Event,All Day,Tot el dia apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Sembla que alguna cosa està malament amb la configuració de la passarel·la de pagament d'aquest lloc. No s'ha realitzat el pagament. DocType: GCalendar Settings,State,Estat @@ -3822,7 +3956,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Configuració de la passarel·la apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text en el tipus de document -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,executar proves apps/frappe/frappe/handler.py,Logged Out,tancat la sessió apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Més ... DocType: System Settings,User can login using Email id or Mobile number,L'usuari pot iniciar la sessió utilitzant correu electrònic d'identificació o número de mòbil @@ -3838,6 +3971,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resum DocType: Event,Event Participants,Participants de l'esdeveniment DocType: Auto Repeat,Frequency,Freqüència +DocType: Onboarding Slide,Slide Order,Ordre de diapositives DocType: Custom Field,Insert After,Inserir després DocType: Event,Sync with Google Calendar,Sincronització amb Google Calendar DocType: Access Log,Report Name,Nom de l'informe @@ -3865,6 +3999,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Contingut de la pàgina web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Afegeix un nou paper +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visiteu la pàgina web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova tasca DocType: Google Contacts,Last Sync On,Última sincronització activada DocType: Deleted Document,Deleted Document,document eliminat apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ui! Quelcom ha fallat @@ -3875,7 +4011,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paisatge apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensions de script del costat del client en Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Es registraran registres per a les següents doctype -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planificador inactiu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planificador inactiu DocType: Blog Settings,Blog Introduction,Introducció del blog DocType: Global Search Settings,Search Priorities,Prioritats de cerca DocType: Address,Office,Oficina @@ -3885,12 +4021,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Enllaç del quadre de tauler DocType: User,Email Settings,Configuració del correu electrònic apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Deixa't aquí DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Si està activat, l’usuari es pot iniciar la sessió des de qualsevol adreça IP mitjançant Autofacturació de dos factors, també es pot configurar per a tots els usuaris a la configuració del sistema" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Configuració de la impressora ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Introduïu la contrasenya per continuar apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Jo apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} no és un Estat vàlida apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Sol·liciteu tots els tipus de documents -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualització del punt d’energia +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Actualització del punt d’energia +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Feu feina només diàriament si són inactius durant (dies) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tipus d'habitació DocType: Data Import Beta,Import Log Preview,Importa la vista prèvia del registre @@ -3899,6 +4035,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,Creació i mapeig d’usuaris LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Es poden trobar coses preguntant "trobar taronja en els clients ' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Esdeveniments d'avui apps/frappe/frappe/core/doctype/user/user.py,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. ,Usage Info,Informació d'ús apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Mostra les dreceres de teclat @@ -3915,6 +4052,7 @@ DocType: DocField,Unique,Únic apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apreciat el {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Èxit parcial DocType: Email Account,Service,Servei +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuració> Usuari DocType: File,File Name,Nom De l'Arxiu apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),No s'ha trobat {0} per {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3928,6 +4066,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Completa DocType: GCalendar Settings,Enable,Permetre DocType: Google Maps Settings,Home Address,Adreça de casa apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Només es pot carregar fins a 5.000 registres d'una sola vegada. (Pot ser inferior en alguns casos) +DocType: Report,"output in the form of `data = [columns, result]`","sortida en forma de 'data = [columnes, resultat] `" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipus de document aplicable apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Configura les regles per a les assignacions d'usuaris. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},De permís suficient per a {0} @@ -3943,7 +4082,6 @@ DocType: Communication,To and CC,Per i CC DocType: SMS Settings,Static Parameters,Paràmetres estàtics DocType: Chat Message,Room,habitació apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},actualitzat a {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Les tasques de fons no s’estan executant. Contacteu amb l'administrador DocType: Portal Settings,Custom Menu Items,Elements de menú personalitzat apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Totes les imatges adjunts a Slideshow del lloc web han de ser públics DocType: Workflow State,chevron-right,Chevron-dreta @@ -3958,11 +4096,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Valors seleccionats {0} DocType: DocType,Allow Auto Repeat,Permet la repetició automàtica apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,No hi ha valors a mostrar +DocType: DocType,URL for documentation or help,URL per obtenir documentació o ajuda DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Plantilla de correu electrònic apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,S'ha actualitzat correctament el registre de {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},L'usuari {0} no té accés doctype mitjançant permís de rol per al document {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Es requereix usuari i contrassenya +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Deixar\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Si us plau, actualitza per obtenir l'últim document." DocType: User,Security Settings,Configuració de seguretat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Afegir columna @@ -3972,6 +4112,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,filtre Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Trobeu el fitxer adjunt {0}: {1} DocType: Web Page,Set Meta Tags,Estableix les etiquetes meta +DocType: Email Account,Use SSL for Outgoing,Utilitzeu SSL per a la sortida 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: S3 Backup Settings,Backup Limit,Límit de còpia de seguretat DocType: Dashboard Chart,Line,Línia @@ -4004,4 +4145,3 @@ DocType: DocField,Ignore User Permissions,Ignora els permisos d'usuari apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,S'ha desat correctament apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Si us plau, consulti al seu administrador per verificar la seva inscripció" DocType: Domain Settings,Active Domains,Els dominis actius -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Mostra registre diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv index f2ab8a2cef..8a9c949301 100644 --- a/frappe/translations/cs.csv +++ b/frappe/translations/cs.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vyberte pole Hodnota. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Načítání importovaného souboru ... DocType: Assignment Rule,Last User,Poslední uživatel -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nový úkol, {0}, byla přiřazena k vám od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Výchozí nastavení relace bylo uloženo apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Znovu načíst soubor DocType: Email Queue,Email Queue records.,Email fronty záznamů. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Strom DocType: User,User Emails,uživatel E-maily DocType: User,Username,Uživatelské jméno apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Vytvořit protokol apps/frappe/frappe/model/base_document.py,Value too big,Hodnota příliš velká DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Spustit test skriptu @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Měsíčně DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Povolení příchozích apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nebezpečí -DocType: Address,Email Address,E-mailová adresa +apps/frappe/frappe/www/login.py,Email Address,E-mailová adresa DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Nepřečtené oznámení Odesláno apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export není povolen. Potřebujete roli {0} pro exportování. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Zru DocType: DocType,Is Published Field,Je publikován Field DocType: GCalendar Settings,GCalendar Settings,Nastavení GCalendar DocType: Email Group,Email Group,Email Group +apps/frappe/frappe/__init__.py,Only for {},Pouze pro {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendář Google - Nelze odstranit událost {0} z Kalendáře Google, kód chyby {1}." DocType: Event,Pulled from Google Calendar,Vycházel z Kalendáře Google DocType: Note,Seen By,Viděn apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Přidat více -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Získali jste nějaké energetické body apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Není platný uživatelský obrázek. DocType: Energy Point Log,Reverted,Reverted DocType: Success Action,First Success Message,První zpráva o úspěchu @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ne jako apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, jen pro čtení, práva atd.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Vážit si +DocType: Notification Settings,Document Share,Sdílení dokumentů DocType: Workflow State,lock,zámek apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nastavení pro stránku Kontaktujte nás. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Přihlášen Administrátor @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Pokud je povoleno, dokument je označen jako viděný při prvním otevření uživatelem" DocType: Auto Repeat,Repeat on Day,Opakujte v den DocType: DocField,Color,Barva +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Označit vše jako přečtené DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,indent-right DocType: Has Role,Has Role,má role @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Zobrazit Traceback DocType: DocType,Default Print Format,Výchozí formát tisku DocType: Workflow State,Tags,tagy +DocType: Onboarding Slide,Slide Type,Typ snímku apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nic: Konec toku apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nelze nastavit jako jedinečné v {1}, protože tam jsou non-jedinečné stávající hodnoty" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Typy dokumentů @@ -135,7 +138,6 @@ DocType: Language,Guest,Host DocType: DocType,Title Field,Titulek pole DocType: Error Log,Error Log,Error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,neplatná URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Posledních 7 dní apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Opakuje jako "abcabcabc" jsou jen o něco těžší odhadnout, než "abc"" DocType: Notification,Channel,Kanál apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Pokud si myslíte, že to je oprávněné, prosím, změňte heslo správce." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Vyberte sloupec apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Tento formulář byl změněn poté, co jste naložil" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Protokol oznámení 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otevřete Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Zdá se, že je problém s konfigurací proužku serveru. V případě selhání bude částka vrácena na váš účet." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Vl apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Odeslat DocType: Workflow Action Master,Workflow Action Name,Název akce toku (workflow) apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType nemůže být sloučen -DocType: Web Form Field,Fieldtype,Typ pole +DocType: Onboarding Slide Field,Fieldtype,Typ pole apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nejedná se o soubor zip DocType: Global Search DocType,Global Search DocType,Globální vyhledávání DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,E-mail odeslán? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Přepínání grafu apps/frappe/frappe/desk/form/save.py,Did not cancel,Nebylo zrušeno DocType: Social Login Key,Client Information,Informace o klientovi +DocType: Energy Point Rule,Apply this rule only once per document,Použijte toto pravidlo pouze jednou na dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Pouze čtení závisí na apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Přihlášeni jako host nebo správce DocType: Email Account,UNSEEN,neviděný apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Správce souborů @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Důvod 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Žádná aktivita +DocType: Server Script,Script Manager,Správce skriptů +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Žádná aktivita apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikace třetích stran apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Žádné události dnes apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nemůžete si dát kontrolní body pro sebe apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType musí být Submittable pro vybranou událost Doc DocType: Workflow State,circle-arrow-up,circle-arrow-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Není povoleno pro {0}: {1}. Omezené pole: {2} 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,You are not allowed to delete a standard Website Theme,Nejste oprávněn odstranit standardní motiv webové stránky. +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Vytvořte první {0} DocType: Data Import,Log Details,Podrobnosti o protokolu DocType: Workflow Transition,Example,Příklad DocType: Webhook Header,Webhook Header,Záhlaví Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat na pozadí apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Označit jako přečtené apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aktualizace {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Palubní snímek {0} se stejným pořadí snímků již existuje apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Vypnout Report DocType: Translation,Contributed Translation Doctype Name,Přispěl překlad doctype name +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobit formulář DocType: PayPal Settings,Redirect To,Chcete-li přesměrovat DocType: Data Migration Mapping,Pull,SEM DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formát: frappe.query_reports['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Interní záznam akcií dok DocType: Energy Point Settings,Review Levels,Zkontrolujte úrovně DocType: Workflow State,Comment,Komentář DocType: Data Migration Plan,Postprocess Method,Metoda postprocesu +DocType: DocType Action,Action Type,Typ akce apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Vyfotit DocType: Assignment Rule,Round Robin,Kulatý Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",Můžete upravit Odeslané dokumenty jejich zrušením a následovnou změnou. @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Uložit jako DocType: Comment,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Zobrazit více podrobností +DocType: Server Script,Before Submit,Před odesláním 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,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,Archive,Archiv @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Chybné jméno pole {0} v add_fetch konfiguraci vlastního skriptu apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Vyberte Kontakty Google, se kterými chcete kontakt synchronizovat." DocType: Web Page,Main Section (HTML),Hlavní sekce (HTML) +DocType: Scheduled Job Type,Annual,Roční DocType: Workflow State,headphones,sluchátka apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Je vyžadováno heslo nebo vybrat Čeká heslo DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,např. replies@yourcomany.com. Všechny odpovědi přijdou do této schránky. DocType: Slack Webhook URL,Slack Webhook URL,Smažte webovou adresu URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Určuje pořadí snímku v průvodci. Pokud se snímek nemá zobrazit, měla by být priorita nastavena na 0." DocType: Data Migration Run,Current Mapping,Aktuální mapování apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Je vyžadován platný email a jméno apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Nastavit všechny přílohy jako soukromé @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Pravidla transakce apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,V náhledu se zobrazuje pouze prvních {0} řádků apps/frappe/frappe/core/doctype/report/report.js,Example:,Příklad: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Omezení DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků. DocType: Workflow State,Filter,Filtr apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Další informace naleznete v protokolu chyb: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Práce apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} odhlášen: {1} DocType: Address,West Bengal,Západní Bengálsko +DocType: Onboarding Slide,Information,Informace apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nelze nastavit Odeslat když není Odeslatelné DocType: Transaction Log,Row Index,Řádkový index DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid 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 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Pro neaktivní weby bude spuštěna naplánovaná úloha pouze jednou denně. Výchozí 4 dny, pokud je nastaveno na 0." DocType: Assignment Rule,System Manager,Správce systému +DocType: Scheduled Job Log,Scheduled Job,Plánovaná úloha DocType: Custom DocPerm,Permissions,Oprávnění apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pro vnitřní integraci DocType: Dropbox Settings,Allow Dropbox Access,Povolit přístup Dropbox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Naske DocType: Email Flag Queue,Email Flag Queue,Email Flag fronty DocType: Access Log,Columns / Fields,Sloupce / pole apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Styly pro tiskové formáty +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,K vytvoření tabulky dashboardů je vyžadováno pole Agregovaná funkce apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Nelze určit otevřené {0}. Zkuste něco jiného. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaše informace byly předloženy apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Uživatel: {0} nemůže být vymazán @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Název pole DocType: Assignment Rule,Assign To Users,Přiřadit uživatelům apps/frappe/frappe/public/js/frappe/utils/utils.js,or,nebo apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,název modulu ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Pokračovat +DocType: Onboarding Slide,Continue,Pokračovat apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integrace Google je zakázána. DocType: Custom Field,Fieldname,Název pole DocType: Workflow State,certificate,certifikát apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Ověřování ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Vaše přiřazení k {0} {1} bylo odstraněno apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,První sloupec dat musí být prázdný. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Zobrazit všechny verze apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Zobrazit komentář @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Omezit IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Přehled apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendář Google - Nepodařilo se aktualizovat událost {0} v Kalendáři Google, kód chyby {1}." +DocType: Notification Log,Email Content,Obsah e-mailu apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vyhledávání nebo zadejte příkaz DocType: Activity Log,Timeline Name,Časová osa Name apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Jako primární lze nastavit pouze jedno {0}. DocType: Email Account,e.g. smtp.gmail.com,např. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Přidat nové pravidlo DocType: Contact,Sales Master Manager,Sales manažer ve skupině Master +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Aby vaše aplikace fungovala, musíte povolit JavaScript." DocType: User Permission,For Value,Hodnota DocType: Event,Google Calendar ID,ID Kalendáře Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Jeden Poslední krok @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP Pole středního názvu apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importuje se {0} z {1} DocType: GCalendar Account,Allow GCalendar Access,Povolit přístup ke službě GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je povinné pole +DocType: DocType,Documentation Link,Odkaz na dokumentaci apps/frappe/frappe/templates/includes/login/login.js,Login token required,Požadovaný token pro přihlášení apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Měsíční hodnocení: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vyberte více položek seznamu @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Adresa URL souboru DocType: Version,Table HTML,Tabulka HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Přidat předplatitelé +DocType: Notification Log,Energy Point,Energy Point apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Nadcházející události pro dnešek DocType: Google Calendar,Push to Google Calendar,Push to Kalendář Google DocType: Notification Recipient,Email By Document Field,Email od pole dokumentu @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Pryč DocType: Currency,Fraction Units,Zlomkové jednotky apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} z {1} až {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Označit jako hotové DocType: Chat Message,Type,Typ DocType: Google Settings,OAuth Client ID,ID klienta OAuth DocType: Auto Repeat,Subject,Předmět apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Zpět na Stůl DocType: Web Form,Amount Based On Field,Částka z terénního +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nemá sledované verze. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Zkontrolujte svůj e-mail pro ověření apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold nemůže být na konci formuláře DocType: Communication,Bounced,Odražené +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,z DocType: Deleted Document,Deleted Name,vypouští Name apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Systémový a veřejní uživatelé DocType: Workflow Document State,Doc Status,Doc Status @@ -521,6 +546,7 @@ DocType: Language,Language Code,Kód jazyka DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Poznámka: Ve výchozím nastavení jsou odesílány e-maily pro neúspěšné zálohy. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Přidat filtr apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS poslal do následujících čísel: {0} +DocType: Notification Settings,Assignments,Úlohy apps/frappe/frappe/utils/data.py,{0} and {1},{0} a {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Spusťte konverzaci. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vždy přidat "Koncept" Okruh pro tisk konceptů dokumentů @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Aktuální spuštění mapová apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail byl označen jako spam DocType: Comment,Website Manager,Správce webu apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Odesílání souboru bylo odpojeno. Prosím zkuste to znovu. +DocType: Data Import Beta,Show Failed Logs,Zobrazit neúspěšné protokoly apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Překlady apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Vyberete si návrhy nebo zrušené dokumenty apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} byl nastaven na stav {1} do {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokument ve frontě DocType: GSuite Templates,Destination ID,ID místa určení DocType: Desktop Icon,List,Seznam DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Jsi neměl \ DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr +DocType: Onboarding Slide,Onboarding Slide,Palubní skluzavka apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Předchozí @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,tmavošedý apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Úspěšný: {0} až {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Upustit +DocType: Dashboard Chart,Aggregate Function Based On,Agregovaná funkce založená na apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Prosím, kopírovat to, aby se změny" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Stiskněte klávesu Enter pro uložení apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"Generování PDF se nezdařilo, protože zlomených obrázkové odkazy" @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Dny před apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Denní akce by měly skončit ve stejný den. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Upravit... DocType: Workflow State,volume-down,volume-down +DocType: Onboarding Slide,Help Links,Odkazy na nápovědu apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Přístup z této IP adresy není povolen +DocType: Notification Settings,Enable Email Notifications,Povolit e-mailová oznámení apps/frappe/frappe/desk/reportview.py,No Tags,žádné tagy DocType: Email Account,Send Notification to,Odeslat oznámení na DocType: DocField,Collapsible,Skládací @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Poslední záloha zapnuta DocType: Customize Form Field,Customize Form Field,Přizpůsobit formulářové pole DocType: Energy Point Rule,For Document Event,Pro událost dokumentu DocType: Website Settings,Chat Room Name,Jméno místnosti chatu +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Beze změny DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Podívejte se, které dokumenty jsou čitelné uživatelem" DocType: Deleted Document,Hub Sync ID,ID synchronizace Hubu @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,pou DocType: Auto Repeat,Quarterly,Čtvrtletně apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Pořád apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Neplatný stav dokumentu pro {0} DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ne Seen @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Zprá DocType: Email Account,Notify if unreplied,"Upozornit, pokud Nezodpovězená" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Proveďte QR kód a zadejte výsledný kód. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Povolit přechody +DocType: Scheduled Job Type,Hourly Long,Hodinově dlouhá DocType: System Settings,Minimum Password Score,Minimální skóre hesla DocType: DocType,Fields,Pole DocType: System Settings,Your organization name and address for the email footer.,Vaše jméno a adresa organizace pro e-mailové zápatí. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,nadřazená apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,Zálohování S3 dokončeno! apps/frappe/frappe/config/desktop.py,Developer,Vývojář apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Vytvořeno +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Chcete-li jej povolit, postupujte podle pokynů v následujícím odkazu: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} na řádku {1} nemůže mít zároveň URL a podřízené položky apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Pro následující tabulky by měl být alespoň jeden řádek: {0} DocType: Print Format,Default Print Language,Výchozí jazyk tisku apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Předkové z apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Kořen (nejvyšší úroveň): {0} nelze smazat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Žádné neúspěšné protokoly apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Zatím žádné komentáře apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Prosím nastavte SMS před nastavením metody autentizace pomocí Nastavení SMS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Jak DOCTYPE tak Jméno je vyžadováno @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Položky zápatí apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Výchozí hodnota DocType: Auto Repeat,Daily,Denně +DocType: Onboarding Slide,Max Count,Max apps/frappe/frappe/config/users_and_permissions.py,User Roles,Uživatelské role DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Konfigurátor vlastností přepisuje standardní DocType nebo vlastnosti pole apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nelze obnovit: Neplatný / expirovaný odkaz. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hostitel DocType: Data Import Beta,Import File,Importovat soubor +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Chyba šablony apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Sloupec {0} již existují. DocType: ToDo,High,Vysoké apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nová událost @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Zobrazit ve filtru DocType: Address,Daman and Diu,Daman a Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Zakázka DocType: Address,Personal,Osobní +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Nastavení surového tisku ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Podrobnosti viz https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Hromadné přejmenování DocType: Email Queue,Show as cc,Zobrazit jako cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Take Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Úvodní informace na stránce kontaktujte nás DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Zrušení dokumentů DocType: User,Send Notifications for Email threads,Odeslat oznámení pro vlákna e-mailu apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne v režimu pro vývojáře @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Zálohován DocType: DocField,In Global Search,V Globální hledání DocType: System Settings,Brute Force Security,Bojová bezpečnost DocType: Workflow State,indent-left,indent-left -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (roky) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Je to riskantní smazat tento soubor: {0}. Prosím, obraťte se na správce systému." DocType: Currency,Currency Name,Jméno měny apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,žádné e-maily @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Pole uživatele DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Stiskněte tlačítko Smazat apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} se již odhlášil od {1} {2} +DocType: Scheduled Job Type,Stopped,Zastaveno apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nebylo odebráno apps/frappe/frappe/desk/like.py,Liked,Líbil apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Odeslat nyní apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Povolit hosta DocType: Report,Query,Dotaz DocType: Customize Form,Sort Order,Pořadí řazení apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Metoda ověřování dvěma faktory apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Nejprve nastavte název a uložte záznam. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 záznamů +DocType: DocType Link,Link Fieldname,Název pole odkazu apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Sdíleno s {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Odhlásit odběr DocType: View Log,Reference Name,Název reference apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Změnit uživatele +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,za prvé apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Aktualizace překladů DocType: Error Snapshot,Exception,Výjimka DocType: Email Account,Use IMAP,Použít IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Pravidla definující přechod stavů v tocích (workflow). DocType: File,Folder,Složka DocType: Website Route Meta,Website Route Meta,Webová stránka Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Pole na palubě DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Manažer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Možnost 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nas apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Nakonfigurujte grafy DocType: User,Last IP,Poslední IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Přidejte do e-mailu předmět -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Nový dokument {0} je s vámi sdílen {1}. DocType: Data Migration Connector,Data Migration Connector,Konektor pro migraci dat apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vrátil {1} DocType: Email Account,Track Email Status,Sledovat stav e-mailu @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Výchozí Odchozí DocType: Workflow State,play,play apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klikněte na odkaz dole pro dokončení Vaší registrace a nastavení nového hesla apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nebylo přidáno +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} získal {1} bodů za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Žádné e-mailové účty Účelově DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Nastavení - Kontaktujte nás @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Hledání DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,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/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Hledání podle názvu souboru nebo přípony +DocType: Onboarding Slide,Slide Title,Název snímku DocType: Notification,View Properties (via Customize Form),Zobrazení vlastností (přes Vlastní forma) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknutím na soubor jej vyberte. DocType: Note Seen By,Note Seen By,Poznámka viděn @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Sdílet adresu URL DocType: System Settings,Allow Consecutive Login Attempts ,Povolit Pokusy o konsistentní přihlášení apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Během platební transakce došlo k chybě. Prosím kontaktujte nás. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Pokud je typ snímku Vytvořit nebo Nastavení, měla by existovat metoda 'create_onboarding_docs' v souboru {ref_doctype} .py, která má být provedena po dokončení snímku." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dny DocType: Email Account,Awaiting Password,Čeká Password DocType: Address,Address Line 1,Adresní řádek 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ne potomky DocType: Contact,Company Name,Název společnosti DocType: Custom DocPerm,Role,Role -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Nastavení ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,do vašeho prohlížeče apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Zapisovač @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Sledujte, zda váš e-mail byl otevřen příjemcem.
Poznámka: Pokud odesíláte více příjemcům, i když 1 příjemce přečte e-mail, bude to považováno za "Otevřeno"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Chybějící hodnoty vyžadovány apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Povolit přístup ke kontaktům Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Omezený DocType: Data Migration Connector,Frappe,Frapé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Označit jako nepřečtené DocType: Activity Log,Operation,Operace @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,umožňují tisk DocType: Communication,Clicked,Clicked apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nesledovat apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte výchozí e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Naplánováno odesílat DocType: DocType,Track Seen,Track Viděno DocType: Dropbox Settings,File Backup,Zálohování souborů @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0}: nenaleze apps/frappe/frappe/config/customization.py,Add custom forms.,Přidat vlastní formuláře. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} na {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,předložen tento dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavení> Uživatelská oprávnění apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systém poskytuje mnoho předdefinovaných rolí. Můžete přidat vlastní nové role pro detailnější nastavení oprávnění. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Název spouštěče -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domény +DocType: Onboarding Slide,Domains,Domény DocType: Blog Category,Blog Category,Kategorie blogu apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Nelze namapovat jelikož následující podmínka selhala: DocType: Role Permission for Page and Report,Roles HTML,Role HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Sobota DocType: User,Represents a User in the system.,Představuje uživatele v systému DocType: List View Setting,Disable Auto Refresh,Zakázat automatické obnovení DocType: Comment,Label,Popisek -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Úkol {0}, které jste přiřadili k {1}, byl uzavřen." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zavřete prosím toto okno DocType: Print Format,Print Format Type,Typ formátu tisku DocType: Newsletter,A Lead with this Email Address should exist,Měly by existovat elektrody s e-mailovou adresu @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP nastavení pro odc apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,zvolte DocType: Data Export,Filter List,Seznam filtrů DocType: Data Export,Excel,Vynikat +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Zpráva automatické odpovědi DocType: Data Migration Mapping,Condition,Podmínka apps/frappe/frappe/utils/data.py,{0} hours ago,Před {0} hodin @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Přispěvatel Znalostní Báze DocType: Communication,Sent Read Receipt,Poslal přečtení DocType: Email Queue,Unsubscribe Method,Metoda aktuality +DocType: Onboarding Slide,Add More Button,Tlačítko Přidat další DocType: GSuite Templates,Related DocType,Související DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Upravit pro přidání obsahu apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Zvolte jazyky apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Podrobnosti o kartě apps/frappe/frappe/__init__.py,No permission for {0},Nemáte oprávnění pro {0} DocType: DocType,Advanced,Pokročilé +DocType: Onboarding Slide,Slide Image Source,Zdroj obrázku snímku apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Reference: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,paní @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Hlavní DocType: DocType,User Cannot Create,Uživatel nemůže Vytvořit apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Úspěšně hotovo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Přístup Dropbox je schválen! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Opravdu chcete sloučit {0} s {1}? DocType: Customize Form,Enter Form Type,Vložte typ formuláře DocType: Google Drive,Authorize Google Drive Access,Autorizovat přístup na Disk Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Chybí parametr Kanban Board Name @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Upravené formáty pro tisk, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Součet {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Aktualizováno na novou verzi DocType: Custom Field,Depends On,Závisí na DocType: Kanban Board Column,Green,Zelená DocType: Custom DocPerm,Additional Permissions,Rozšířená oprávnění @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Sociální apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Kalendář Google - Nelze vytvořit kalendář pro {0}, kód chyby {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Upravujete řádek DocType: Workflow Action Master,Workflow Action Master,Akce hlavních toků +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Smazat všechny DocType: Custom Field,Field Type,Typ pole apps/frappe/frappe/utils/data.py,only.,pouze. DocType: Route History,Route History,Historie trasy @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Zapomněl jsi heslo? DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Chyba serveru +DocType: Server Script,After Delete,Po smazání apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Zobrazit všechny minulé zprávy. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Je nutné přihlášovací ID DocType: Website Slideshow,Website Slideshow,Promítání obrázků na www stránce apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Odkaz na domovskou www stránku. Standardní odkazy (index, přihlášení, produkty, blog, o nás, kontakt)" +DocType: Server Script,After Submit,Po odeslání apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ověřování při přijímání e-mailů z e-mailového účtu {0} se nezdařilo. Zpráva ze serveru: {1} DocType: User,Banner Image,Obrázek banneru DocType: Custom Field,Custom Field,Přizpůsobené pole @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","V případě, že uživatel nemá žádnou roli zkontrolovat, uživatel se stává "System User". "System User" má přístup k ploše" DocType: System Settings,Date and Number Format,Formát čísel a data apps/frappe/frappe/model/document.py,one of,jeden z -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobit formulář apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontrola jeden okamžik apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Zobrazit štítky DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavení> Uživatel +DocType: DocType,Actions,Akce DocType: Workflow State,align-justify,zarovnat-vyplnit DocType: User,Middle Name (Optional),Druhé jméno (volitelné) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Není povoleno @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Žádné v DocType: System Settings,Security,Bezpečnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Plánované poslat na {0} příjemci apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Střih +DocType: Server Script,After Save,Po uložení apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},přejmenována z {0} až {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} z {1} ({2} řádků s dětmi) DocType: Currency,**Currency** Master,** Měna ** Hlavní @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Hodnoty filtru DocType: Communication,User Tags,Uživatelské štítky DocType: Data Migration Run,Fail,Selhat DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Poslední poprava DocType: Data Migration Run,Pull Failed,Tažení se nezdařilo apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Zobrazit / skrýt karty DocType: Communication,Feedback Request,Zpětná vazba Poptávka apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Import dat z souborů CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Následující pole chybí: +DocType: Notification Log,From User,Od uživatele apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Zrušení {0} DocType: Web Page,Main Section,Hlavní sekce DocType: Page,Icon,ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Tip: Do hesla vložte symboly, čísla a velká písmena" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Nakonfigurujte oznámení pro zmínky, přiřazení, energetické body a další." DocType: DocField,Allow in Quick Entry,Povolit v Rychlém zadání apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/rrrr @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Adresa URL motivu DocType: Customize Form,Sort Field,Pole řadit dle DocType: Razorpay Settings,Razorpay Settings,Nastavení Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Upravit filtr -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Přidej víc DocType: System Settings,Session Expiry Mobile,Session Zánik Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nesprávný uživatel nebo heslo apps/frappe/frappe/templates/includes/search_box.html,Search results for,Výsledky hledání pro @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Pravidlo energetického bodu DocType: Communication,Delayed,Zpožděné apps/frappe/frappe/config/settings.py,List of backups available for download,Seznam záloh k dispozici ke stažení +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Vyzkoušejte nový import dat apps/frappe/frappe/www/login.html,Sign up,Přihlásit se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Řádek {0}: Povolení zakázat povinné pro standardní pole +DocType: Webhook,Enable Security,Povolit zabezpečení apps/frappe/frappe/config/customization.py,Dashboards,Řídicí panely DocType: Test Runner,Output,Výstup DocType: Milestone,Track Field,Pole sledování @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Nastavit vlastnost po upozorněn apps/frappe/frappe/config/customization.py,Add fields to forms.,Přidat pole do formulářů. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Přidat recenzi +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} vám přiřadil nový úkol {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Velikost písma (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Z standardního formuláře je možné přizpůsobit pouze standardní typy dokumentů. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portál Položka apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Nastavte filtry DocType: Contact Us Settings,Email ID,Email Id DocType: Energy Point Rule,Multiplier Field,Multiplikátorové pole +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Objednávku Razorpay nelze vytvořit. Obraťte se prosím na správce DocType: Dashboard Chart,Time Interval,Časový interval DocType: Activity Log,Keep track of all update feeds,Sledujte všechny kanály s aktualizací +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} s vámi sdílel dokument {1} {2} 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Klíč DocType: Address,Contacts,Kontakty DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Zpráva ze všech akcií dokumentů +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importovaná šablona by měla být typu .csv, .xlsx nebo .xls" apps/frappe/frappe/www/update-password.html,New Password,Nové heslo apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtr {0} chybí apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Promiňte! Nelze odstranit automaticky generovaná komentáře @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Běh DocType: Blog Post,Content (HTML),Obsah (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Nastavení pro DocType: Personal Data Download Request,User Name,Uživatelské jméno DocType: Workflow State,minus-sign,znaménko mínus apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nenalezeno @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Bez oprávnění: {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export vlastní oprávnění apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Žádné předměty nenalezeny. DocType: Data Export,Fields Multicheck,Pole Multilack +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Kompletní DocType: Activity Log,Login,Přihlášení DocType: Web Form,Payments,Platby apps/frappe/frappe/www/qrcode.html,Hi {0},Ahoj {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integrace Disku Google. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} vrátil vaše body na {1} {2} DocType: System Settings,Enable Scheduled Jobs,Zapnout plánované operace (cron) apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Poznámky: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Neaktivní @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Šablo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Chyba oprávnění apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Název {0} nemůže být {1} DocType: User Permission,Applicable For,Použitelné pro +DocType: Dashboard Chart,From Date,Od data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Povedlo se apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Relace vypršela DocType: Kanban Board Column,Kanban Board Column,Sloupec Kanban Board @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ús apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Není povoleno ve stavu DocType: Async Task,Async Task,Asynchronní Task DocType: Workflow State,picture,obrázek -apps/frappe/frappe/www/complete_signup.html,Complete,Kompletní +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Kompletní DocType: DocType,Image Field,Image Field DocType: Print Format,Custom HTML Help,Vlastní nápovědy HTML DocType: LDAP Settings,Default Role on Creation,Výchozí role při tvorbě @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Příští stav DocType: User,Block Modules,Blokované moduly DocType: Print Format,Custom CSS,Přizpůsobené CSS +DocType: Energy Point Rule,Apply Only Once,Použít pouze jednou apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Přidat komentář DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorovat: {0} až {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,opakovat DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Hodnota musí být jedna z {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Zrušit všechny dokumenty 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Přejděte na seznam {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Nápověda k vyhledávání @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrova apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatické opakování tohoto dokumentu bylo deaktivováno. DocType: DocType,Hide Copy,Skrýt kopii apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Odebrat všechny role +DocType: Server Script,Before Save,Před uložením apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} musí být jedinečný apps/frappe/frappe/model/base_document.py,Row,Řádek apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Úspěšně importováno {0} DocType: User,API Key,klíč API DocType: Email Account,Send unsubscribe message in email,Odeslat odhlásit zprávu do e-mailu -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Title apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Název pole který bude DocType pro toto provázané pole. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumenty s vámi a vámi. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Můžete to také zkopírovat a vložit @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Připojit obrázek DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Heslo aktualizováno +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavení> Uživatelská oprávnění apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kroky k ověření přihlašovacích údajů apps/frappe/frappe/utils/password.py,Password not found,Heslo nebyl nalezen +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Délka stránky DocType: Email Queue,Expose Recipients,vystavit příjemci apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Připojit k je povinné pro příchozí e-maily @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Systém DocType: Web Form,Max Attachment Size (in MB),Maximální velikost příloh (v MB) apps/frappe/frappe/www/login.html,Have an account? Login,Mít účet? Přihlásit se +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Nastavení tisku ... DocType: Workflow State,arrow-down,šipka-dolů apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Řádek {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadejte h DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Název dokumentu apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Povinné) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} roky DocType: Social Login Key,Social Login Provider,Poskytovatel sociálního přihlášení apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Přidat další komentář apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,V souboru nebyly nalezeny žádné údaje. Znovu připojte nový soubor s daty. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Nebyla nalezena žádná pole, která lze použít jako sloupec Kanban. Pomocí formuláře Přizpůsobit přidejte vlastní pole typu „Vybrat“." DocType: Address,GST State,Stát GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Nelze nastavit Zrušit bez Odeslání +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Uživatel ({0}) DocType: Website Theme,Theme,Téma DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Přesměrování URI Bound auth zákoníku apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Otevřete nápovědu DocType: DocType,Is Submittable,Je Odeslatelné -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nové zmínky +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nové zmínky apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nebyly synchronizovány žádné nové kontakty Google. DocType: File,Uploaded To Google Drive,Nahráno na Disk Google apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Hodnota pro zaškrtávací pole může být 0 nebo 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Červená DocType: Workflow State,Tag,Štítek -DocType: Custom Script,Script,Skript +DocType: Report,Script,Skript apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument nelze uložit. DocType: Energy Point Rule,Maximum Points,Maximální počet bodů apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mé nastavení @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} bodů za hodnocení {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Role uživatelů mohou být nastaveny z jejich uživatelské stránky. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Přidat komentář +DocType: Dashboard Chart,Select Date Range,Vyberte časové období DocType: DocField,Mandatory,Povinné apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul pro export +DocType: Scheduled Job Type,Monthly Long,Měsíční dlouho apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Nejsou nastavena základní práva +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Pošlete e-mail na adresu {0} a propojte jej zde apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Význam pojmů Vložit, Zrušit, Změnit" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Úkoly @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Sledujte milníky v DocType: Social Login Key,Identity Details,Podrobnosti o identitě apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Přenos stavu pracovního postupu není povolen z {0} na {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Zobrazit panel -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nová zpráva DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-report DocType: Data Import Beta,Template Warnings,Upozornění na šablony @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Provázáno apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Upravit nastavení automatických zpráv o e-mailu DocType: Chat Room,Message Count,Počet zpráv DocType: Workflow State,book,kniha +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} je propojen s následujícími předloženými dokumenty: {2} DocType: Communication,Read by Recipient,Přečtěte si příjemce DocType: Website Settings,Landing Page,Landing stránka apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Chyba ve vlastní skript apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Žádná oprávnění nastavena pro toto kritérium. DocType: Auto Email Report,Auto Email Report,Auto Email Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nový dokument sdílen apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Smazat komentář? DocType: Address Template,This format is used if country specific format is not found,"Tento formát se používá, když specifický formát země není nalezen" DocType: System Settings,Allow Login using Mobile Number,Povolit přihlášení pomocí mobilního čísla apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Pokud je tato možnost povolena, uživatelé, kteří se přihlásí z omezené IP adresy, nebudou vyzváni k zadání dvou faktorů" +DocType: Server Script,After Cancel,Po zrušení DocType: Auto Repeat,Get Contacts,Získejte kontakty apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Příspěvky podané v rámci {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Přeskočení sloupce bez názvu @@ -1684,6 +1757,7 @@ 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 +DocType: Notification Log,Mention,Zmínit se DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Písma apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,a apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Tento přehled byl generován na {0} DocType: Error Snapshot,Frames,Rámy -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Úkol +DocType: Notification Log,Assignment,Úkol DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Odkaz na obrázek DocType: Auto Email Report,Report Filters,zpráva Filtry @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nelze aktualizovat událost apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Ověřovací kód byl odeslán na vaši registrovanou e-mailovou adresu. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Prudký +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Váš cíl apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtr musí mít 4 hodnoty (doctype, název pole, operátor, hodnota): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Pro {0} nebylo zadáno žádné jméno apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Použít pravidlo přiřazení apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/utils/data.py,Invalid field name {0},Neplatné jméno pole {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapování plánu migrace dat apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Spuštění Frappe ... DocType: Web Form Field,Max Length,Maximální délka -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Za {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Vložit případ podpory @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Stránka chybí nebo byla apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Recenze DocType: DocType,Route,Trasa apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay nastavení platební brána +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} získal {1} bod za {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Nainstalujte přiložené obrázky z dokumentu DocType: Chat Room,Name,Jméno DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Otevrít odk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Váš jazyk DocType: Dashboard Chart,Average,Průměrný apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Přidat řádek -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Tiskárna apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Dotaz musí být SELECT DocType: Auto Repeat,Completed,Dokončeno @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Další synchronizační token DocType: Energy Point Settings,Energy Point Settings,Nastavení bodu energie DocType: Async Task,Succeeded,Uspěl apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Povinné pole vyžadována pro {0} +DocType: Onboarding Slide Field,Align,Zarovnat apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Obnovit oprávnění pro: {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Uživatelé a oprávnění DocType: S3 Backup Settings,S3 Backup Settings,S3 Nastavení zálohování @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Název nového formátu tisku apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kliknutím na níže uvedený odkaz žádost schválíte DocType: Workflow State,align-left,zarovnat-vlevo +DocType: Onboarding Slide,Action Settings,Nastavení akce DocType: User,Defaults,Výchozí +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pro srovnání použijte> 5, <10 nebo = 324. Pro rozsahy použijte 5:10 (pro hodnoty mezi 5 a 10)." DocType: Energy Point Log,Revert Of,Vrátit apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sloučit s existujícím DocType: User,Birth Date,Datum narození @@ -1896,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,V DocType: Notification,Value Change,Změnit hodnotu DocType: Google Contacts,Authorize Google Contacts Access,Autorizovat přístup ke kontaktům Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zobrazení pouze číselných polí ze sestavy +apps/frappe/frappe/utils/data.py,1 week ago,před 1 týdnem DocType: Data Import Beta,Import Type,Typ importu DocType: Access Log,HTML Page,HTML stránka DocType: Address,Subsidiary,Dceřiný @@ -1905,7 +1984,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,šířka Letterhead apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neplatný odchozí Mail Server nebo Port DocType: Custom DocPerm,Write,Zapsat -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Pouze administrátor má povoleno vytvářet Dotazy (query) / skriptované výpisy (script reports) apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualizace DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Pole "hodnota" je povinná. Prosím, uveďte hodnotu, která se aktualizuje" @@ -1915,6 +1993,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Pozvat jak DocType: Data Migration Run,Started,Začal apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Uživatel {0} nemá přístup k tomuto dokumentu DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Seskupit podle apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Vyberte přílohy apps/frappe/frappe/model/naming.py, for {0},pro {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nemáte povoleno tisknout tento dokument @@ -1956,6 +2035,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Ověřit DocType: Workflow Document State,Update Field,Aktualizovat pole DocType: Chat Profile,Enable Chat,Povolit chat DocType: LDAP Settings,Base Distinguished Name (DN),Základna Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Opustit tuto konverzaci apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Fronta / pracovník @@ -2022,12 +2102,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: Data Migration Run,Current Mapping Action,Současná mapovací akce DocType: Dashboard Chart Source,Source Name,Název zdroje -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,K Uživateli není spojen žádný e-mailový účet. Přidejte účet do složky Uživatel> E-mailová schránka. DocType: Email Account,Email Sync Option,E-mail Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Řádek č DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Je připnuto DocType: Contact Us Settings,Introduction,Úvod +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Potřebovat pomoc? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Globálně připnout apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Následován DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2037,7 +2117,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Je již v DocType: User Email,Enable Outgoing,Povolit odchozí DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Vlastní Tagy -apps/frappe/frappe/email/smtp.py,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í> E-mail> E-mailový účet DocType: Comment,Submitted,Vloženo DocType: Contact,Pulled from Google Contacts,Vyvoláno z kontaktů Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Neplatná žádost @@ -2058,9 +2137,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home / Test apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Přiřadit ke mně DocType: DocField,Dynamic Link,Dynamický odkaz apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Stisknutím klávesy Alt spustíte další zkratky v nabídce a postranním panelu +DocType: Dashboard Chart,To Date,To Date DocType: List View Setting,List View Setting,Nastavení zobrazení seznamu apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show se nepodařilo pracovních míst -DocType: Event,Details,Podrobnosti +DocType: Scheduled Job Log,Details,Podrobnosti DocType: Property Setter,DocType or Field,DocType nebo pole apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Zrušili jste zrušení tohoto dokumentu apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Základní barva @@ -2068,7 +2148,6 @@ DocType: Communication,Soft-Bounced,Soft-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Je-li tato možnost povolena, mohou se všichni uživatelé přihlásit z libovolné IP adresy pomocí nástroje Two Factor Auth. To lze nastavit pouze pro konkrétní uživatele v Uživatelské stránce" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Zdá se, že klíč pro publikování nebo tajný klíč je špatný!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Rychlá Nápověda pro nastavení oprávnění -DocType: Tag Doc Category,Doctype to Assign Tags,Typ_dokumentu přiřadit tagy apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Zobrazit Relapsy apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail byl přesunut do koše DocType: Report,Report Builder,Konfigurátor Reportu @@ -2083,6 +2162,7 @@ DocType: Workflow State,Upload,nahrát DocType: User Permission,Advanced Control,Pokročilá kontrola DocType: System Settings,Date Format,Formát data apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Není publikováno +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí adresa. Vytvořte nový z nabídky Nastavení> Tisk a branding> Šablona adresy. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Akce toků jako např.: schválit, zrušit." DocType: Data Import,Skip rows with errors,Přeskočte řádky s chybami DocType: Workflow State,flag,flag @@ -2092,7 +2172,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Tisk apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Přejít na pole DocType: Contact Us Settings,Forward To Email Address,Přeposlat na emailovou adresu DocType: Contact Phone,Is Primary Phone,Je primární telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošlete e-mail na adresu {0} a propojte jej zde. DocType: Auto Email Report,Weekdays,V pracovní dny apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Bude exportováno {0} záznamů apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titulek musí být validní název pole @@ -2100,7 +2179,7 @@ DocType: Post Comment,Post Comment,Odeslat komentář apps/frappe/frappe/config/core.py,Documents,Dokumenty apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktivita Log by DocType: Social Login Key,Custom Base URL,Adresa URL vlastní databáze -DocType: Email Flag Queue,Is Completed,je dokončeno +DocType: Onboarding Slide,Is Completed,je dokončeno apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Získejte pole apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Editovat profil DocType: Kanban Board Column,Archived,Archivovaných @@ -2111,11 +2190,12 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Dnes +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Dnes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Odeslat po importu DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Odkaz na nápovědu k palubnímu skluzu DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Odeslání apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Rodič je název dokumentu, ke kterému budou data přidána." @@ -2123,7 +2203,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,VELKÁ PÍSMENA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Vlastní HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Zadejte název složky -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí adresa. Vytvořte nový z nabídky Nastavení> Tisk a branding> Šablona adresy. apps/frappe/frappe/auth.py,Unknown User,Neznámý uživatel apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Vyberte roli DocType: Comment,Deleted,Vypouští se @@ -2139,7 +2218,7 @@ DocType: Chat Token,Chat Token,Chatový token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Vytvořit graf apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportovat -DocType: Web Page,Center,Střed +DocType: Onboarding Slide Field,Center,Střed DocType: Notification,Value To Be Set,"Hodnota, kterou chcete nastavit" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Upravit {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,První úroveň @@ -2147,7 +2226,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Název databáze apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Obnovit formulář DocType: DocField,Select,Vybrat -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Zobrazit celý protokol +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Zobrazit celý protokol DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Jednoduchý výraz Python, příklad: status == 'Open' a napište == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Soubor není příložen apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Spojení ztraceno. Některé funkce nemusí fungovat. @@ -2179,6 +2258,7 @@ DocType: Web Page,HTML for header section. Optional,HTML kód pro záhlaví. Vol apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Tato funkce je zcela nový a dosud experimentální apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maximálně {0} řádků povoleno DocType: Dashboard Chart Link,Chart,Schéma +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Globální aktuality apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Jedná se o velmi časté hesla. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Pohled @@ -2195,6 +2275,7 @@ DocType: Data Migration Connector,Hostname,Jméno hostitele DocType: Data Migration Mapping,Condition Detail,Podrobnosti o stavu apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Pro měnu {0} by minimální částka transakce měla být {1} DocType: DocField,Print Hide,Skrýt tisk +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Uživateli apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Zadejte hodnotu DocType: Workflow State,tint,tint @@ -2261,6 +2342,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kód pro ov apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Přidat do úkolů DocType: Footer Item,Company,Společnost apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Průměr {0} +DocType: Scheduled Job Log,Scheduled,Plánované DocType: User,Logout from all devices while changing Password,Odhlášení ze všech zařízení při změně hesla apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Potvrďte Heslo apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Vyskytly se chyby @@ -2286,7 +2368,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Uživatelské oprávnění již existuje apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapovací sloupec {0} do pole {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Zobrazit {0} -DocType: User,Hourly,Hodinově +DocType: Scheduled Job Type,Hourly,Hodinově apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrovat OAuth klienta App DocType: DocField,Fetch If Empty,"Načíst, pokud je prázdný" DocType: Data Migration Connector,Authentication Credentials,Autentifikační pověření @@ -2297,10 +2379,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS brána URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},získané {0} automatickým pravidlem {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} nebo {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Všichni jste připraveni! DocType: Workflow State,trash,koš DocType: System Settings,Older backups will be automatically deleted,Starší zálohy budou automaticky smazány apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID neplatného přístupového klíče nebo tajného přístupového klíče. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Ztratili jste nějaké energetické body DocType: Post,Is Globally Pinned,Je globálně připoután apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Poslední aktivita DocType: Workflow Transition,Conditions,Podmínky @@ -2309,6 +2391,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Potvrzeno DocType: Event,Ends on,Končí DocType: Payment Gateway,Gateway,Brána DocType: LDAP Settings,Path to Server Certificate,Cesta k certifikátu serveru +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript je ve vašem prohlížeči zakázán apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nedostatečné povolení k zobrazení odkazů apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adresa Název je povinný. DocType: Google Contacts,Push to Google Contacts,Push to Kontakty Google @@ -2327,7 +2410,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Pokud je zaškrtnuto, budou importovány řádky s platnými daty a neplatné řádky budou vráceny do nového souboru, abyste mohli později importovat." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document je upravovatelný pouze pro uživatele s rolí -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Úkol {0}, které jste přiřadili k {1}, bylo uzavřeno {2}." DocType: Print Format,Show Line Breaks after Sections,Show konce řádků po oddílech DocType: Communication,Read by Recipient On,Přečtěte si Příjemce zapnutý DocType: Blogger,Short Name,Zkrácené jméno @@ -2359,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Při DocType: Translation,PR sent,PR odesláno DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Pouze odeslat záznamy aktualizované v posledních X hodinách DocType: Communication,Feedback,Zpětná vazba +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Aktualizováno na novou verzi 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Otevřete překlad apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Tento e-mail je automaticky generován DocType: Workflow State,Icon will appear on the button,Ikona se zobrazí na tlačítku @@ -2397,6 +2480,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Stránka n DocType: DocField,Precision,přesnost DocType: Website Slideshow,Slideshow Items,Položky promítání obrázků apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Snažte se vyhnout opakovaným slova a znaky +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Oznámení zakázáno +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Opravdu chcete smazat všechny řádky? DocType: Workflow Action,Workflow State,Stav toků apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,řádky přidáno apps/frappe/frappe/www/list.py,My Account,Můj Účet @@ -2405,6 +2490,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dní po apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Připojení zásobníku QZ aktivní! DocType: Contact Us Settings,Settings for Contact Us Page,Nastavení pro stránku Kontaktujte nás +DocType: Server Script,Script Type,Typ skriptu DocType: Print Settings,Enable Print Server,Povolit tiskový server apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Před {0} týdny DocType: Email Account,Footer,Zápatí @@ -2430,8 +2516,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Upozornění apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,To se může vytisknout na více stránkách DocType: Data Migration Run,Percent Complete,Procento dokončeno -DocType: Tag Category,Tag Category,tag Kategorie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pro srovnání použijte> 5, <10 nebo = 324. Pro rozsahy použijte 5:10 (pro hodnoty mezi 5 a 10)." DocType: Google Calendar,Pull from Google Calendar,Vytáhněte z Kalendáře Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Nápověda DocType: User,Login Before,Přihlášení před @@ -2441,17 +2525,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skrýt víkendy apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automaticky generuje opakující se dokumenty. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je +DocType: Onboarding Slide,ERPNext,ERPDalší DocType: Workflow State,info-sign,info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Poměr {0} nemůže být seznam DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak se má zápis této měny formátovat? Pokud formátování není nastaveno, použije se výchozí systémové nastavení." apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Odeslat {0} dokumenty? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Chyba při připojení k aplikaci QZ Tray ...

Abyste mohli používat funkci Raw Print, musíte mít nainstalovanou a spuštěnou aplikaci QZ Tray.

Klepnutím sem stáhněte a nainstalujte zásobník QZ .
Klepnutím sem získáte další informace o surovém tisku ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapování tiskárny apps/frappe/frappe/public/js/frappe/form/form.js,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/form.js,Do you want to cancel all linked documents?,Chcete zrušit všechny související dokumenty? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Přidáno: {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Oprávnění rolí DocType: Help Article,Intermediate,přechodný +apps/frappe/frappe/config/settings.py,Email / Notifications,E-mail / oznámení apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} změnil {1} na {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Zrušený dokument byl obnoven jako návrh DocType: Data Migration Run,Start Time,Start Time @@ -2468,6 +2556,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,M apps/frappe/frappe/email/smtp.py,Invalid recipient address,Neplatná adresa příjemce DocType: Workflow State,step-forward,step-forward DocType: System Settings,Allow Login After Fail,Povolit přihlášení po selhání +DocType: DocType Link,DocType Link,Odkaz na DocType DocType: Role Permission for Page and Report,Set Role For,Nastavit role DocType: GCalendar Account,The name that will appear in Google Calendar,"Jméno, které se zobrazí v Kalendáři Google" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Přímý pokoj s {0} již existuje. @@ -2484,6 +2573,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Nově Vyt DocType: Contact,Google Contacts,Kontakty Google DocType: GCalendar Account,GCalendar Account,GCalendar účet DocType: Email Rule,Is Spam,je Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Poslední apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otevřít {0} DocType: Data Import Beta,Import Warnings,Importovat upozornění @@ -2495,6 +2585,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Odstraněné dokumenty apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Ve formátu CSV se rozlišují velká a malá písmena apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona plochy už existuje +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Určete, ve kterých doménách se mají snímky zobrazovat. Pokud není zadáno nic, je snímek ve výchozím nastavení zobrazen ve všech doménách." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikát apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Pole {1} v řádku {2} nemůže být ve výchozím nastavení skryté a povinné DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání Zpravodaje @@ -2505,6 +2596,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID události Kalendáře Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Nadřazená"" značí nadřazenou tabulku, do které musí být tento řádek přidán" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Kontrolní body: +DocType: Scheduled Job Log,Scheduled Job Log,Plánovaný protokol úloh +DocType: Server Script,Before Delete,Před smazáním apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Sdílené s apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Připojte soubory / adresy URL a přidejte je do tabulky. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Zpráva není nastavena @@ -2527,19 +2620,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Nastavení pro stránku O nás apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Nastavení proměnné brány plateb apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Tisk odeslán do tiskárny! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energetické body +DocType: Notification Settings,Energy Points,Energetické body +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Čas {0} musí být ve formátu: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,např pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generovat klíče apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tím budou vaše data trvale odstraněna. DocType: DocType,View Settings,Nastavení zobrazení +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nové oznámení DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktura požadavku +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Metoda řadiče get_razorpay_order chybí DocType: Personal Data Deletion Request,Pending Verification,Čeká na ověření DocType: Website Meta Tag,Website Meta Tag,Značka metadat webu DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Pokud je standardní port (např. 587). Pokud máte v Google Cloud, vyzkoušejte port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Vymazání data ukončení, protože v minulosti nemohou být publikované stránky." DocType: User,Send Me A Copy of Outgoing Emails,Pošlete mi kopii odchozích e-mailů -DocType: System Settings,Scheduler Last Event,Scheduler Poslední závod DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Přidat Google Analytics ID: např.: UA-89XXX57-1. Pro více informací prosím vyhledejte nápovědu na stránkách Google Analytics. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Heslo nemůže být více než 100 znaků dlouhé DocType: OAuth Client,App Client ID,ID aplikace klienta @@ -2568,6 +2663,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Vyžadováno apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} sdílí tento dokument s {1} DocType: Website Settings,Brand Image,Značka Obrázek DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importovaná šablona by měla obsahovat záhlaví a alespoň jeden řádek. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalendář Google byl nakonfigurován. apps/frappe/frappe/config/website.py,"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 @@ -2577,6 +2673,7 @@ DocType: User Social Login,User Social Login,Uživatelské sociální přihláš apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritizoval vaši práci na {1} bodem {2} DocType: Contact,All,Vše DocType: Email Queue,Recipient,Příjemce +DocType: Webhook,Webhook Security,Webhook Security DocType: Communication,Has Attachment,má přílohu DocType: Address,Sales User,Uživatel prodeje apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop nástroj k vytvoření a přizpůsobit tiskové formáty. @@ -2643,7 +2740,6 @@ DocType: Data Migration Mapping,Migration ID Field,Pole ID migrace DocType: Dashboard Chart,Last Synced On,Naposledy synchronizováno dne DocType: Comment,Comment Type,Typ komentáře DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritizoval vaši práci na {1} {2} DocType: Assignment Rule,Users,Uživatelé DocType: Address,Odisha,Odisha DocType: Report,Report Type,Typ výpisu @@ -2668,14 +2764,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Položka promítání obr apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Samostatné schválení není povoleno DocType: GSuite Templates,Template ID,ID šablony apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombinace typu grantu ( {0} ) a typu odpovědi ( {1} ) není povolena -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nová zpráva od {0} DocType: Portal Settings,Default Role at Time of Signup,Výchozí Role v době SIGNUP DocType: DocType,Title Case,Titulek případu apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Kliknutím na níže uvedený odkaz stáhnete svá data apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Povolená e-mailová schránka pro uživatele {0} DocType: Data Migration Run,Data Migration Run,Spuštění migrace dat DocType: Blog Post,Email Sent,Email odeslán -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Starší DocType: DocField,Ignore XSS Filter,Ignorovat XSS filtr apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,odstraněno apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Nastavení zálohování Dropbox @@ -2730,6 +2824,7 @@ DocType: Async Task,Queued,Ve frontě DocType: Braintree Settings,Use Sandbox,použití Sandbox apps/frappe/frappe/utils/goal.py,This month,Tento měsíc apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Před uložením (předložený dokument) DocType: Custom DocPerm,Create,Vytvořit apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Žádné další položky k zobrazení apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Přejít na předchozí záznam @@ -2786,6 +2881,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Přesunout do koše DocType: Web Form,Web Form Fields,Pole webových formulářů DocType: Data Import,Amended From,Platném znění +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Přidejte odkaz na video nápovědy pouze v případě, že uživatel nemá představu o tom, co vyplnit snímek." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Varování: Nelze najít {0} v tabulce vztahující se k {1} DocType: S3 Backup Settings,eu-north-1,eu-sever-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Tento dokument je v současné době zařazen do fronty pro provedení. Prosím zkuste to znovu @@ -2807,6 +2903,7 @@ DocType: Blog Post,Blog Post,Příspěvek blogu DocType: Access Log,Export From,Exportovat z apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Pokročilé vyhledávání apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nemáte oprávnění pro prohlížení newsletteru. +DocType: Dashboard Chart,Group By,Seskupit podle DocType: User,Interests,zájmy apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email DocType: Energy Point Rule,Allot Points To Assigned Users,Přidělte body přiřazeným uživatelům @@ -2822,6 +2919,7 @@ DocType: Assignment Rule,Assignment Rule,Pravidlo přiřazení apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Navrhovaná Uživatelské jméno: {0} DocType: Assignment Rule Day,Day,Den apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduly +DocType: DocField,Mandatory Depends On,Povinné závisí na apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,platba Úspěch apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} pošty DocType: OAuth Bearer Token,Revoked,zrušena @@ -2829,6 +2927,7 @@ DocType: Web Page,Sidebar and Comments,Postranní panel a Komentáře apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Není povoleno připojit dokument {0}, povolte Povolit tisk pro {0} v nastavení tisku" +apps/frappe/frappe/email/smtp.py,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í> E-mail> E-mailový účet apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Viz dokument na {0} DocType: Stripe Settings,Publishable Key,Klíč pro publikování apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Spusťte import @@ -2842,13 +2941,13 @@ DocType: Currency,Fraction,Zlomek apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Událost synchronizována s Kalendářem Google. DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field DocType: Contact,Middle Name,Prostřední jméno +DocType: DocField,Property Depends On,Vlastnost závisí na DocType: Custom Field,Field Description,Popis pole apps/frappe/frappe/model/naming.py,Name not set via Prompt,Název není nastaven pomocí prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mailové schránky apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aktualizace {0} z {1}, {2}" DocType: Auto Email Report,Filters Display,filtry Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Pro provedení změny musí být k dispozici pole „změněno_z“. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ocenil vaši práci na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Uložte filtry DocType: Address,Plant,Rostlina apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpovědět všem @@ -2889,11 +2988,11 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Zpráva: DocType: Print Settings,Print taxes with zero amount,Vytiskněte daně s nulovou částkou apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0}: není povoleno přejmenovat +DocType: Server Script,Before Insert,Před vložením DocType: Custom Script,Custom Script,Přizpůsobený skript DocType: Address,Address Line 2,Adresní řádek 2 DocType: Address,Reference,reference apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Přiřazeno (komu) -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte výchozí e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detail mapování migrace dat DocType: Data Import,Action,Akce DocType: GSuite Settings,Script URL,Adresa URL skriptu @@ -2919,11 +3018,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,V seznamu DocType: Email Account,Use TLS,Použít TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Neplatné heslo či uživatelské jméno +DocType: Scheduled Job Type,Weekly Long,Týdně dlouhý apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Stáhnout šablonu apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů. ,Role Permissions Manager,Správce rolí a oprávnění apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Jméno nového Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Přepnout postranní panel +DocType: Server Script,After Save (Submitted Document),Po uložení (předložený dokument) DocType: Data Migration Run,Pull Insert,Vytáhněte vložku DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maximální povolený počet bodů po vynásobení bodů multiplikátorem (Poznámka: Toto pole nesmí zůstat prázdné nebo je nastaveno na 0) @@ -2943,6 +3044,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP není nainstalován apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ke stažení s daty apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},změněné hodnoty pro {0} {1} +DocType: Server Script,Before Cancel,Před zrušením DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Sub doména DocType: S3 Backup Settings,Region,Kraj @@ -2988,12 +3090,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Staré heslo DocType: S3 Backup Settings,us-east-1,us-východ-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Příspěvky od {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Pro formátování sloupců, zadejte označení sloupců v dotazu." +DocType: Onboarding Slide,Slide Fields,Pole snímku DocType: Has Domain,Has Domain,Má doménu DocType: User,Allowed In Mentions,Povoleno v zmínkách apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ještě nemáte svůj účet? Přihlásit se apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID pole nelze odebrat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Předplacené dokumenty apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Uživatelské nastavení DocType: Report,Reference Report,Referenční zpráva DocType: Activity Log,Link DocType,Link DocType @@ -3011,6 +3115,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizujte přístup apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stránka, kterou hledáte chybí. To by mohlo být, protože se pohybuje nebo je překlep v odkazu." apps/frappe/frappe/www/404.html,Error Code: {0},Kód chyby: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Popis pro stránku výpisů, v čistém textu, pouze pár řádek. (max 140 znaků)" +DocType: Server Script,DocType Event,Událost DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} jsou povinná pole DocType: Workflow,Allow Self Approval,Povolit vlastní schválení DocType: Event,Event Category,Kategorie události @@ -3027,6 +3132,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvé jméno apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Úspěšnost připojení DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Palubní snímek typu snímku Pokračovat již existuje. DocType: DocType,Default Sort Field,Výchozí pole řazení DocType: File,Is Folder,Je Folder DocType: Document Follow,DocType,DocType @@ -3065,8 +3171,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,hodnoty DocType: Workflow State,arrow-up,šipka-nahoru DocType: Dynamic Link,Link Document Type,Typ propojeného dokumentu apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Pro tabulku {0} by měl být alespoň jeden řádek +DocType: Server Script,Server Script,Serverový skript apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Chcete-li nakonfigurovat automatické opakování, povolte "Povolit automatické opakování" od {0}." DocType: OAuth Bearer Token,Expires In,V vyprší +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Kolikrát chcete opakovat sadu polí (např .: pokud chcete na snímku 3 zákazníky, nastavte toto pole na 3. Na snímku se jako povinná zobrazí pouze první sada polí)" DocType: DocField,Allow on Submit,Povolit při Odeslání DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Typ výjimky @@ -3076,6 +3184,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Záhlaví apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Připravované akce apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Prosím, zadejte hodnoty pro App přístupový klíč a tajný klíč App" +DocType: Email Account,Append Emails to Sent Folder,Připojte e-maily k odeslané složce DocType: Web Form,Accept Payment,Přijímáme platby apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Vyberte položku seznamu apps/frappe/frappe/config/core.py,A log of request errors,Protokol o požadavku chyb @@ -3094,7 +3203,7 @@ DocType: Translation,Contributed,Přispělo apps/frappe/frappe/config/customization.py,Form Customization,Přizpůsobení formuláře apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Žádné aktivní relace DocType: Web Form,Route to Success Link,Cesta k úspěšnému propojení -DocType: Top Bar Item,Right,V pravo +DocType: Onboarding Slide Field,Right,V pravo apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Žádné nadcházející události DocType: User,User Type,Typ uživatele DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3112,6 +3221,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prosím zkuste t apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Adresa URL musí začínat řetězcem „http: //“ nebo „https: //“ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Varianta 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,To nelze vrátit zpět DocType: Workflow State,Edit,Upravit DocType: Website Settings,Chat Operators,Operátoři chatu DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3123,7 +3233,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Sestava s více než 10 sloupci vypadá lépe v režimu Na šířku. apps/frappe/frappe/database/database.py,Invalid field name: {0},Neplatný název pole: {0} DocType: Milestone,Milestone,Mezník @@ -3132,7 +3241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Přejít na {0} apps/frappe/frappe/email/queue.py,Emails are muted,Emaily jsou potlačené (muted) apps/frappe/frappe/config/integrations.py,Google Services,Služby Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,Před 1 týdny +DocType: Onboarding Slide,Slide Description,Popis snímku DocType: Communication,Error,Chyba apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Nejprve nastavte zprávu DocType: Auto Repeat,End Date,Datum ukončení @@ -3153,10 +3262,12 @@ DocType: Footer Item,Group Label,Skupina Label DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google byly nakonfigurovány. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Bude exportován 1 záznam +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,K Uživateli není spojen žádný e-mailový účet. Přidejte účet do složky Uživatel> E-mailová schránka. DocType: DocField,Report Hide,Skrýt výpis apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Stromové zobrazení není k dispozici pro {0} DocType: DocType,Restrict To Domain,Omezit na doménu DocType: Domain,Domain,Doména +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Neplatná adresa URL souboru. Obraťte se na správce systému. DocType: Custom Field,Label Help,Nápověda popisek DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Termíny jsou často snadno uhodnout. @@ -3181,6 +3292,7 @@ DocType: Workflow State,hand-left,hand-left DocType: Data Import,If you are updating/overwriting already created records.,Pokud aktualizujete / přepisujete již vytvořené záznamy. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Je globální DocType: Email Account,Use SSL,Použít SSL +DocType: Webhook,HOOK-.####,HÁČEK-.#### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument nebyl správně přiřazen apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Neplatný výraz "depends_on" @@ -3197,6 +3309,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Naposledy aktualizováno apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pro typ dokumentu DocType: Workflow State,arrow-right,šipka-vpravo +DocType: Server Script,API Method,Metoda API DocType: Workflow State,Workflow state represents the current state of a document.,Stav toku představuje aktuální stav dokumentu DocType: Letter Head,Letter Head Based On,Dopisní hlava založená na apps/frappe/frappe/utils/oauth.py,Token is missing,Token chybí @@ -3236,6 +3349,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Kompaktní Položka Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,přesměrování URL +DocType: Onboarding Slide Field,Placeholder,Zástupný symbol DocType: SMS Settings,Enter url parameter for receiver nos,Zadejte url parametr pro přijímače nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Jako jméno odesílatele vždy používejte název účtu @@ -3245,7 +3359,6 @@ DocType: Workflow State,Home,Domácí DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Uživatel se může přihlásit pomocí ID e-mailu nebo uživatelského jména DocType: Workflow State,question-sign,question-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je zakázáno apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Pole "trasa" je povinná pro zobrazení webu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Vložit sloupec před {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Uživateli z tohoto pole budou odměněny body @@ -3270,6 +3383,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Pokud majitelem DocType: Data Migration Mapping,Push,TAM apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Sem přetáhněte soubory DocType: OAuth Authorization Code,Expiration time,doba expirace +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Otevřete dokumenty DocType: Web Page,Website Sidebar,Webové stránky Sidebar DocType: Web Form,Show Sidebar,Show Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Musíte být přihlášeni pro přístup k této {0}. @@ -3285,6 +3399,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globální z DocType: Desktop Icon,Page,Stránka apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Nelze najít {0} do {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Jména a příjmení samy o sobě jsou snadno uhodnout. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument byl přejmenován z {0} na {1} apps/frappe/frappe/config/website.py,Knowledge Base,Znalostní báze DocType: Workflow State,briefcase,kufřík apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Hodnota nemůže být změněna pro {0} @@ -3321,6 +3436,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Formát tisku apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Přepnout zobrazení mřížky apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Přejít na další záznam +DocType: System Settings,Time Format,Časový formát apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Neplatná pověření platební brána DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Toto je soubor šablony vygenerovaný pouze s řádky s nějakou chybou. Tento soubor byste měli použít k opravě a importu. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nastavit role a oprávnění na DocType @@ -3363,12 +3479,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Odpověď apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Stránky v Desk (držáky místo) DocType: DocField,Collapsible Depends On,"Skládací závisí na tom," DocType: Print Style,Print Style Name,Název stylu tisku +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Pro vytvoření tabulky dashboardů je vyžadováno pole Group By DocType: Print Settings,Allow page break inside tables,Umožnit konec stránky uvnitř tabulky DocType: Email Account,SMTP Server,SMTP server DocType: Print Format,Print Format Help,Nápověda formát tisku apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} musí mít nejméně jednoho uživatele. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Spočítat +DocType: Dashboard Chart,Group By Type,Seskupit podle typu apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nový komentář k {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovena {0} jako {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Pakliže aktualizujete, zvolte prosím ""Přepsat"" jinak nebudou existující řádky vymazány." @@ -3379,14 +3497,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Uživatel DocType: Web Form,Web Form,Webový formulář apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} musí být ve formátu: {1} DocType: About Us Settings,Org History Heading,Záhlaví historie organizace +DocType: Scheduled Job Type,Scheduled Job Type,Plánovaný typ úlohy DocType: Print Settings,Allow Print for Cancelled,Umožňují tisk pro Zrušeno DocType: Communication,Integrations can use this field to set email delivery status,Integrace můžete použít toto pole k nastavení stavu doručení e-mailu +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nemáte oprávnění zrušit všechny propojené dokumenty. DocType: Web Form,Web Page Link Text,Text odkazu www stránky DocType: Page,System Page,Systémová stránka apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Nastavit výchozí formát, velikost stránky, styl tisku atd." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Přizpůsobení pro {0} exportováno do:
{1} DocType: Website Settings,Include Search in Top Bar,Patří vyhledávání v horní liště +DocType: Scheduled Job Type,Daily Long,Denně dlouho DocType: GSuite Settings,Allow GSuite access,Povolit přístup GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Pojmenování @@ -3489,6 +3610,7 @@ DocType: Notification,Send days before or after the reference date,Poslat dní p DocType: User,Allow user to login only after this hour (0-24),Povolit uživateli se přihlásit pouze po této hodině (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Přiřaďte postupně jeden po druhém DocType: Integration Request,Subscription Notification,Oznámení předplatného +DocType: Customize Form Field, Allow in Quick Entry ,Povolit v rychlém zadání apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,nebo připojit a DocType: Auto Repeat,Start Date,Datum zahájení apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Hodnota @@ -3503,6 +3625,7 @@ DocType: Google Drive,Backup Folder ID,ID záložní složky apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Není v režimu pro vývojáře! Nachází se v site_config.json nebo učinit 'custom' DocType. DocType: Workflow State,globe,glóbus DocType: System Settings,dd.mm.yyyy,dd.mm.rrrr +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Priorita DocType: Email Queue,Unsubscribe Param,aktuality Param DocType: DocType,Hide Sidebar and Menu,Skrýt postranní panel a nabídku @@ -3514,6 +3637,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Umožnit import (pomocí Im apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Řádek DocType: DocField,Float,Desetinné číslo DocType: Print Settings,Page Settings,Nastavení stránky +DocType: Notification Settings,Notification Settings,Nastavení upozornění apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Ukládání ... apps/frappe/frappe/www/update-password.html,Invalid Password,Neplatné heslo apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} záznam byl úspěšně importován z {1}. @@ -3529,6 +3653,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Obrázek hlavičky dopisu DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Formát Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Zpráva DocType: SMS Settings,Use POST,Použijte POST DocType: Communication,SMS,SMS @@ -3573,18 +3698,20 @@ DocType: Workflow,Allow approval for creator of the document,Umožnit schválen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Uložit sestavu DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Akce serveru apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Správce přístupné {0} na {1} pomocí IP adresy {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Nadřazené pole musí být platný název pole apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Při změně předplatného se nezdařilo DocType: LDAP Settings,LDAP Group Field,Pole skupiny LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Dokument předplatného oznámení apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Je rovno apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Neplatný formátu CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Chyba při připojení k aplikaci QZ Tray ...

Abyste mohli používat funkci Raw Print, musíte mít nainstalovanou a spuštěnou aplikaci QZ Tray.

Klepnutím sem stáhněte a nainstalujte zásobník QZ .
Klepnutím sem získáte další informace o surovém tisku ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Nastavit počet záloh DocType: DocField,Do not allow user to change after set the first time,Nepovolit uživateli změnu po prvním nastavení apps/frappe/frappe/utils/data.py,1 year ago,před 1 rokem +DocType: DocType,Links Section,Sekce odkazů apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Zobrazit protokol o všech událostech tisku, stahování a exportu" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 měsíc DocType: Contact,Contact,Kontakt @@ -3611,16 +3738,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,nový e-mail DocType: Custom DocPerm,Export,Exportovat apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Chcete-li používat Kalendář Google, povolte {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Také přidávání pole závislosti stavu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Úspěšně aktualizováno {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Zásobník QZ selhal: DocType: Dropbox Settings,Dropbox Settings,Nastavení Dropbox DocType: About Us Settings,More content for the bottom of the page.,Více obsahu na spodek stránky. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Tento dokument byl vrácen apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Zálohování Disku Google bylo úspěšné. +DocType: Webhook,Naming Series,Číselné řady DocType: Workflow,DocType on which this Workflow is applicable.,DocType na který je aplikovatelný tento tok (workflow). DocType: User,Enabled,Zapnuto apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Instalace se nezdařila apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nové {0}: {1} -DocType: Tag Category,Category Name,Název kategorie +DocType: Blog Category,Category Name,Název kategorie apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Pro získání dat podřízené tabulky je vyžadován rodič apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importovat Odběratelé DocType: Print Settings,PDF Settings,Nastavení PDF @@ -3656,6 +3786,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendář apps/frappe/frappe/client.py,No document found for given filters,Pro dané filtry nebyl nalezen žádný dokument apps/frappe/frappe/config/website.py,A user who posts blogs.,"Uživatel, který zveřejňuje blogy." +DocType: DocType Action,DocType Action,Akce typu DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Jiné {0} s názvem {1} již existuje, vyberte jiný název" DocType: DocType,Custom?,Přizpůsobit? DocType: Website Settings,Website Theme Image,Internetové stránky Téma Image @@ -3665,6 +3796,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nemohu na apps/frappe/frappe/config/integrations.py,Backup,Zálohování apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Pro vytvoření grafu dashboardu je vyžadován typ dokumentu DocType: DocField,Read Only,Pouze pro čtení +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nelze vytvořit příkaz razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New Newsletter DocType: Energy Point Log,Energy Point Log,Log energetického bodu DocType: Print Settings,Send Print as PDF,Odeslat tisk jako PDF @@ -3690,16 +3822,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot apps/frappe/frappe/www/login.html,Or login with,Nebo se přihlašte DocType: Error Snapshot,Locals,Místní obyvatelé apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Předávány prostřednictvím {0} z {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{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/group_by/group_by.html,Select Group By...,Vyberte skupinu podle ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} je vyžadováno DocType: Integration Request,Integration Type,integrace Type DocType: Newsletter,Send Attachements,odeslat přílohy +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nebyly nalezeny žádné filtry apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrace kontaktů Google. DocType: Transaction Log,Transaction Log,Protokol transakcí apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistiky založené na minulém výkonu (od {0} do {1}) DocType: Contact Us Settings,City,Město +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Skrýt karty pro všechny uživatele apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Povolit Povolit automatické opakování pro doctype {0} ve formuláři Přizpůsobit DocType: DocField,Perm Level,úroveň oprávnění apps/frappe/frappe/www/confirm_workflow_action.html,View document,Zobrazit dokument @@ -3710,6 +3843,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Pokud je tato možnost povolena, jsou změny dokumentu sledovány a zobrazeny na časové ose" apps/frappe/frappe/core/doctype/doctype/doctype.py,'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} DocType: Energy Point Log,Appreciation,Uznání +DocType: Dashboard Chart,Number of Groups,Počet skupin apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Zobrazit seznam DocType: Workflow,Don't Override Status,Nepotlačí Stav apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Hledaný výraz @@ -3751,7 +3885,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-severozápad-1 DocType: Dropbox Settings,Limit Number of DB Backups,Omezit počet záloh DB DocType: Custom DocPerm,Level,Úroveň -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Posledních 30 dní DocType: Custom DocPerm,Report,Report apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Množství musí být větší než 0 ° C. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Připojeno k zásobníku QZ! @@ -3768,6 +3901,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Vyberte podřízenou tabulku apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Spustit primární akci apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Změna +DocType: Social Login Key,User ID Property,Vlastnost ID uživatele DocType: Email Domain,domain name,doménové jméno DocType: Contact Email,Contact Email,Kontaktní e-mail DocType: Kanban Board Column,Order,Objednat @@ -3790,7 +3924,7 @@ DocType: Contact,Last Name,Příjmení DocType: Event,Private,Soukromé apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Zbývá DocType: Event,All Day,Celý den apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Vypadá to, že něco, co je s konfigurací platební bránu pro tento web v pořádku. Žádná platba byla provedena." DocType: GCalendar Settings,State,Stav @@ -3822,7 +3956,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Nastavení brány apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text v typu dokumentu -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Spusťte testy apps/frappe/frappe/handler.py,Logged Out,Odhlásit apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Více... DocType: System Settings,User can login using Email id or Mobile number,Uživatel se může přihlásit pomocí čísla e-mailu nebo mobilního čísla @@ -3838,6 +3971,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,souhrn DocType: Event,Event Participants,Účastníci akce DocType: Auto Repeat,Frequency,Frekvence +DocType: Onboarding Slide,Slide Order,Pořadí snímků DocType: Custom Field,Insert After,Vložit za DocType: Event,Sync with Google Calendar,Synchronizace s Kalendářem Google DocType: Access Log,Report Name,Název reportu @@ -3865,6 +3999,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0} apps/frappe/frappe/config/website.py,Content web page.,Obsah www stránky. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Přidat novou roli +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Navštivte webovou stránku +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nové přiřazení DocType: Google Contacts,Last Sync On,Poslední synchronizace je zapnutá DocType: Deleted Document,Deleted Document,vypouští Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Jejda! Něco nevyšlo dobře :( @@ -3875,7 +4011,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Krajina apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Rozšíření na straně klienta skriptu v jazyce JavaScript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Záznamy pro následující doktty budou filtrovány -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Plánovač neaktivní +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Plánovač neaktivní DocType: Blog Settings,Blog Introduction,Představení blogu DocType: Global Search Settings,Search Priorities,Priority vyhledávání DocType: Address,Office,Kancelář @@ -3885,12 +4021,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Odkaz na řídicí panel DocType: User,Email Settings,Nastavení emailu apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Drop sem DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Pokud je povoleno, může se uživatel přihlásit z libovolné IP adresy pomocí dvoufaktorového ověření, což lze nastavit také pro všechny uživatele v nastavení systému" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Nastavení tiskárny ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Prosím, zadejte heslo pro pokračování" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mě apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} není validní stav apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Použít na všechny typy dokumentů -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizace energetického bodu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Aktualizace energetického bodu +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Spouštět úlohy pouze denně, pokud není aktivní (dny)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}‘" DocType: Chat Message,Room Type,Typ pokoje DocType: Data Import Beta,Import Log Preview,Importovat náhled protokolu @@ -3899,6 +4035,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,Vytvoření a mapování uživatelů LDAP apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Dnešní události apps/frappe/frappe/core/doctype/user/user.py,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. ,Usage Info,využití Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Zobrazit klávesové zkratky @@ -3915,6 +4052,7 @@ DocType: DocField,Unique,Jedinečný apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ocenil na {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Částečný úspěch DocType: Email Account,Service,Služba +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavení> Uživatel DocType: File,File Name,Název souboru apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nenalezeno {0} pro {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3928,6 +4066,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Dokonči DocType: GCalendar Settings,Enable,Zapnout DocType: Google Maps Settings,Home Address,Domácí adresa apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Můžete nahrát nejvýše 5000 záznamů najednou. (může být i méně v některých případech) +DocType: Report,"output in the form of `data = [columns, result]`","výstup ve formě `data = [sloupce, výsledek ]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Použitelné typy dokumentů apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nastavení pravidel pro přiřazení uživatelů. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedostatečné oprávnění pro {0} @@ -3943,7 +4082,6 @@ DocType: Communication,To and CC,To a CC DocType: SMS Settings,Static Parameters,Statické parametry DocType: Chat Message,Room,Pokoj apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aktualizován na {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Úlohy na pozadí nejsou spuštěny. Obraťte se prosím na správce DocType: Portal Settings,Custom Menu Items,Položky menu Custom apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Všechny obrázky připojené k webové prezentaci by měly být veřejné DocType: Workflow State,chevron-right,chevron-right @@ -3958,11 +4096,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} vybrané hodnoty DocType: DocType,Allow Auto Repeat,Povolit automatické opakování apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Žádné hodnoty k zobrazení +DocType: DocType,URL for documentation or help,URL pro dokumentaci nebo nápovědu DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Šablona e-mailu apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Úspěšně aktualizovaný záznam {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Uživatel {0} nemá přístup doctype prostřednictvím oprávnění role pro dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Obojí, přihlašovací jméno a heslo je vyžadováno" +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Nechat\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Prosím klikněte na obnovit pro získání nejnovějšího dokumentu. DocType: User,Security Settings,Nastavení zabezpečení apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Přidat sloupec @@ -3972,6 +4112,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtr Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Naleznete v příloze {0}: {1} DocType: Web Page,Set Meta Tags,Nastavte značky meta +DocType: Email Account,Use SSL for Outgoing,Použít SSL pro odchozí 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: S3 Backup Settings,Backup Limit,Záložní limit DocType: Dashboard Chart,Line,Řádek @@ -4004,4 +4145,3 @@ DocType: DocField,Ignore User Permissions,Ignorovat uživatelská oprávnění apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Úspěšně uloženo apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Požádejte správce ověřit vaše znamení-up DocType: Domain Settings,Active Domains,Aktivní domény -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Ukázat záznam diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv index 2ca7f4bcca..f9387b14cc 100644 --- a/frappe/translations/da.csv +++ b/frappe/translations/da.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vælg beløbsfelt. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Indlæser importfil ... DocType: Assignment Rule,Last User,Sidste bruger -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","En ny opgave, {0}, er blevet tildelt til dig af {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Indstillinger for session er gemt apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Genindlæs fil DocType: Email Queue,Email Queue records.,Email Queue optegnelser. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Træ DocType: User,User Emails,Bruger e-mails DocType: User,Username,Brugernavn apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Opret log apps/frappe/frappe/model/base_document.py,Value too big,Værdi for stor DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Kør scripttest @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Månedlig DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktiver indgående apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Fare -DocType: Address,Email Address,E-mailadresse +apps/frappe/frappe/www/login.py,Email Address,E-mailadresse DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Ulæst meddelelse Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Udlæsning er ikke tilladt. Du har brug for {0} rolle for at kunne udlæse. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Annu DocType: DocType,Is Published Field,Er Udgivet Field DocType: GCalendar Settings,GCalendar Settings,GCalendar-indstillinger DocType: Email Group,Email Group,E-mailgruppe +apps/frappe/frappe/__init__.py,Only for {},Kun for {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - kunne ikke slette begivenhed {0} fra Google Kalender, fejlkode {1}." DocType: Event,Pulled from Google Calendar,Trækkes fra Google Kalender DocType: Note,Seen By,Set af apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Tilføj flere -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Du fik nogle energipoint apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ikke et gyldigt brugerbillede. DocType: Energy Point Log,Reverted,Gendannet DocType: Success Action,First Success Message,Første succesmeddelelse @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ikke lig med apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Forkert værdi: {0} skal være {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Skift egenskaber for feltet (skjul, skrivebeskyttet, tilladelse osv.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Sætter pris på +DocType: Notification Settings,Document Share,Dokumentandel DocType: Workflow State,lock,lås apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,"Indstillinger for ""Kontakt os""-siden." apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator logget ind @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Hvis det er aktiveret, markeres dokumentet som set, første gang en bruger åbner det" DocType: Auto Repeat,Repeat on Day,Gentag på dagen DocType: DocField,Color,Farve +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Markér alle som læst DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,led-højre DocType: Has Role,Has Role,har rolle @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Vis traceback DocType: DocType,Default Print Format,Standard Print Format DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Slide Type apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: Slutning af Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} felt kan ikke indstilles som enestående i {1}, da der er ikke-unikke eksisterende værdier" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumenttyper @@ -135,7 +138,6 @@ DocType: Language,Guest,Gæst DocType: DocType,Title Field,Titel Field DocType: Error Log,Error Log,Fejllog apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,ugyldig URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Sidste 7 dage apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Gentagelse som ""abcabcabc"" er kun lidt sværere at gætte end ""abc""" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Hvis du synes, det er uberettiget, skal du ændre administratoradgangskoden." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Vælg kolonne apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Denne formular er blevet ændret, efter at du har indlæst det" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Underretningslog DocType: System Settings,"If not set, the currency precision will depend on number format","Hvis ikke angivet, afhænger valutaens præcision af nummerformatet" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Åben Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",Det ser ud som om der er et problem med serverens stribekonfiguration. I tilfælde af fejl bliver beløbet refunderet til din konto. @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,In apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Send DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan ikke flettes -DocType: Web Form Field,Fieldtype,FieldType +DocType: Onboarding Slide Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ikke en zip-fil DocType: Global Search DocType,Global Search DocType,Global søgning DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,E-mail sendt? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Skift diagram apps/frappe/frappe/desk/form/save.py,Did not cancel,Ikke annullere DocType: Social Login Key,Client Information,Kundeinformation +DocType: Energy Point Rule,Apply this rule only once per document,Anvend denne regel kun én gang pr. Dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Læs læst afhænger af apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Logget ind som gæst eller administrator DocType: Email Account,UNSEEN,SES apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Filadministrator @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Årsag 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Ingen aktivitet +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ingen aktivitet apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Tredjepartsapps apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Ingen begivenheder i dag apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Du kan ikke give gennemgangspunkter til dig selv apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType skal være Submitterable for den valgte Doc Event DocType: Workflow State,circle-arrow-up,cirkel-pil-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ikke tilladt for {0}: {1}. Begrænset felt: {2} 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,You are not allowed to delete a standard Website Theme,Du har ikke lov til at slette en standard hjemmeside tema +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Opret din første {0} DocType: Data Import,Log Details,Log detaljer DocType: Workflow Transition,Example,Eksempel DocType: Webhook Header,Webhook Header,Webhook Header @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat baggrund apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marker som læst apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Opdatering {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,En Onboarding-dias {0} med den samme diasordre findes allerede apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Deaktiver rapport DocType: Translation,Contributed Translation Doctype Name,Bidragt oversættelse Doctype Navn +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas form DocType: PayPal Settings,Redirect To,Omdirigér til DocType: Data Migration Mapping,Pull,Trække DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['rapportnavn'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Intern registrering af doku DocType: Energy Point Settings,Review Levels,Gennemgå niveauer DocType: Workflow State,Comment,Kommentar DocType: Data Migration Plan,Postprocess Method,Efterprocesmetode +DocType: DocType Action,Action Type,Handlingstype apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Tag et billede DocType: Assignment Rule,Round Robin,Runde Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Du kan ændre Indsendte dokumenter ved at annullere dem og derefter, om ændring af dem." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Gem som DocType: Comment,Seen,Set apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Vis flere detaljer +DocType: Server Script,Before Submit,Før indsendelse 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,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,Archive,Arkiv @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox adgangsnøgle apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Forkert feltnavn {0} i add_fetch konfiguration af brugerdefineret script apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Vælg Google-kontakter, som kontakten skal synkroniseres til." DocType: Web Page,Main Section (HTML),Hovedsektion (HTML) +DocType: Scheduled Job Type,Annual,Årligt DocType: Workflow State,headphones,hovedtelefoner apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,"Adgangskode er påkrævet, eller vælg afventer adgangskode" DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,f.eks replies@yourcomany.com. Alle svar vil komme til denne indbakke. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Bestemmer rækkefølgen på diaset i guiden. Hvis diaset ikke skal vises, skal prioriteten indstilles til 0." DocType: Data Migration Run,Current Mapping,Aktuel kortlægning apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Gyldig e-mail og navn påkrævet apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Gør alle vedhæftede filer private @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Overgangsregler apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Viser kun de første {0} rækker i eksempelvisning apps/frappe/frappe/core/doctype/report/report.js,Example:,Eksempel: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Begrænsninger DocType: Workflow,Defines workflow states and rules for a document.,Definerer workflow stater og regler for et dokument. DocType: Workflow State,Filter,Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Kontroller fejlloggen for mere information: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} logget ud: {1} DocType: Address,West Bengal,Vestbengalen +DocType: Onboarding Slide,Information,Information apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kan ikke indstille tildeling - Indsend, hvis det ikke kan indsendes." DocType: Transaction Log,Row Index,Rækkeindeks DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Knappen Hjælp DocType: Kanban Board Column,purple,lilla DocType: About Us Settings,Team Members,Team Medlemmer +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Kører kun planlagte job kun en gang om dagen for inaktive websteder. Standard 4 dage, hvis indstillet til 0." DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Planlagt job DocType: Custom DocPerm,Permissions,Tilladelser apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks til intern integration DocType: Dropbox Settings,Allow Dropbox Access,Tillad Dropbox adgang @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scan DocType: Email Flag Queue,Email Flag Queue,Email Flag kø DocType: Access Log,Columns / Fields,Kolonner / felter apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Formatark til udskrivningsformater +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Det samlede felt er samlet for at oprette et oversigtsdiagram apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Kan ikke identificere åben {0}. Prøv noget andet. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Dine oplysninger er blevet godkendt apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Bruger {0} kan ikke slettes @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Feltnavn DocType: Assignment Rule,Assign To Users,Tildel til brugere apps/frappe/frappe/public/js/frappe/utils/utils.js,or,eller apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modul navn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Fortsætte +DocType: Onboarding Slide,Continue,Fortsætte apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration er deaktiveret. DocType: Custom Field,Fieldname,Feltnavn DocType: Workflow State,certificate,certifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Bekræfter ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Din opgave på {0} {1} er blevet fjernet apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Første data kolonne skal være tom. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Vis alle versioner apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Se kommentar @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Begræns IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,instrumentbræt apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Kan ikke sende e-mails på dette tidspunkt apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - kunne ikke opdatere begivenhed {0} i Google Kalender, fejlkode {1}." +DocType: Notification Log,Email Content,E-mail-indhold apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Søg eller indtast en kommando DocType: Activity Log,Timeline Name,Tidslinje navn apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Kun en {0} kan indstilles som primær. DocType: Email Account,e.g. smtp.gmail.com,fx smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Tilføj en ny regel DocType: Contact,Sales Master Manager,Salg Master manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Du skal aktivere JavaScript for at din app kan fungere. DocType: User Permission,For Value,For værdi DocType: Event,Google Calendar ID,Google Kalender-id apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP Mellemnavn felt apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerer {0} af {1} DocType: GCalendar Account,Allow GCalendar Access,Tillad GCalendar adgang apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} er et obligatorisk felt +DocType: DocType,Documentation Link,Dokumentationslink apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login token kræves apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Månedlig rangering: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vælg flere listeelementer @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Fil URL DocType: Version,Table HTML,tabel HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Tilføj Abonnenter +DocType: Notification Log,Energy Point,Energipunkt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Kommende begivenheder i dag DocType: Google Calendar,Push to Google Calendar,Tryk på til Google Kalender DocType: Notification Recipient,Email By Document Field,E-mail ved dokumentfelt @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Væk DocType: Currency,Fraction Units,Fraktion Enheder apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} fra {1} til {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marker som udført DocType: Chat Message,Type,Type DocType: Google Settings,OAuth Client ID,OAuth-klient-id DocType: Auto Repeat,Subject,Emne apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tilbage til skrivebordet DocType: Web Form,Amount Based On Field,Antal baseret på felt +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} har ingen versioner sporet. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Bruger er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillad Ufuldstændige formularer @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Tjek din e-mail til verifikation apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen DocType: Communication,Bounced,Afviste +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,af DocType: Deleted Document,Deleted Name,slettet Navn apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,System- og hjemmesidebrugere DocType: Workflow Document State,Doc Status,Doc status @@ -521,6 +546,7 @@ DocType: Language,Language Code,Sprogkode DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Bemærk: Som standard sendes e-mails for mislykkede sikkerhedskopier. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Tilføj filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS sendt til følgende numre: {0} +DocType: Notification Settings,Assignments,Afleveringer apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Start en samtale. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Tilføj altid ""Udkast"" som overskrift til udskrivning af kladder" @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Nuværende Kortlægning Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail er blevet markeret som spam DocType: Comment,Website Manager,Webmaster apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Filoverførsel frakoblet. Prøv igen. +DocType: Data Import Beta,Show Failed Logs,Vis mislykkede logfiler apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Oversættelser apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Du har valgt Udkast eller Annullerede dokumenter apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentet {0} er sat til at angive {1} ved {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokument kø DocType: GSuite Templates,Destination ID,Destinations-id DocType: Desktop Icon,List,Liste DocType: Activity Log,Link Name,Link Navn +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Du har \ DocType: System Settings,mm/dd/yyyy,dd/mm/åååå +DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Forrige @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,mørkegrå apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Vellykket: {0} til {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Dråbe +DocType: Dashboard Chart,Aggregate Function Based On,Samlet funktion baseret på apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Duplikér denne, for at foretage ændringer" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Tryk på Enter for at gemme apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF-dannelse mislykkedes på grund af brudte billedelinks @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Dage før apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,De daglige begivenheder skulle være afsluttet samme dag. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigere... DocType: Workflow State,volume-down,volumen-down +DocType: Onboarding Slide,Help Links,Hjælp Links apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Adgang ikke tilladt fra denne IP-adresse +DocType: Notification Settings,Enable Email Notifications,Aktivér e-mail-meddelelser apps/frappe/frappe/desk/reportview.py,No Tags,Ingen tags DocType: Email Account,Send Notification to,Send meddelelse til DocType: DocField,Collapsible,Sammenklappelig @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Sidste sikkerhedskopi tændt DocType: Customize Form Field,Customize Form Field,Tilpas Form Field DocType: Energy Point Rule,For Document Event,Til dokumenthændelse DocType: Website Settings,Chat Room Name,Chat room navn +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Uændret DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Kontrollere, hvilke dokumenter er læses af en bruger" DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,brug DocType: Auto Repeat,Quarterly,Kvartalsvis apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Hele tiden apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ulovlig dokumentstatus for {0} DocType: Email Account,Enable Auto Reply,Aktiver autosvar apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ikke set @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Beske DocType: Email Account,Notify if unreplied,"Informer, hvis unreplied" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,"Scan QR-koden og indtast den resulterende kode, der vises." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktivér gradueringer +DocType: Scheduled Job Type,Hourly Long,Time lang DocType: System Settings,Minimum Password Score,Mindste adgangskode score DocType: DocType,Fields,Felter DocType: System Settings,Your organization name and address for the email footer.,Dit firmas navn og adresse til e-mail-sidefoden. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tabl apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup komplet! apps/frappe/frappe/config/desktop.py,Developer,Udvikler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Oprettet +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Følg instruktionerne i følgende link for at aktivere det: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} i række {1} kan ikke have både URL og underordnede elementer apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Der skal mindst være en række for følgende tabeller: {0} DocType: Print Format,Default Print Language,Standard printsprog apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Forfædre af apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan ikke slettes +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Ingen mislykkede logfiler apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Ingen kommentarer endnu apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Indstil venligst SMS, før du indstiller det som en godkendelsesmetode, via SMS-indstillinger" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Både DocType og Navn påkrævet @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Varer apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Standardværdi DocType: Auto Repeat,Daily,Daglig +DocType: Onboarding Slide,Max Count,Max antal apps/frappe/frappe/config/users_and_permissions.py,User Roles,Brugerroller DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Ejendom Setter tilsidesætter en standard DocType eller Field ejendom apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan ikke opdatere: Forkert / Udløbet Link. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Vært DocType: Data Import Beta,Import File,Importer fil +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Skabelonfejl apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolonne {0} findes allerede. DocType: ToDo,High,Høj apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ny begivenhed @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Vis i filter DocType: Address,Daman and Diu,Daman og Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Sag DocType: Address,Personal,Personlig +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Indstillinger for rå udskrivning ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Se https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for detaljer. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Omdøb DocType: Email Queue,Show as cc,Vis som cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Tag video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Indledende informationer til Kontakt os Side DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,tommelfingeren nedad +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Annullering af dokumenter DocType: User,Send Notifications for Email threads,Send beskeder til e-mail-tråde apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ikke i Udviklings-tilstand @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Fil backup DocType: DocField,In Global Search,I Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,led-venstre -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år (e) siden apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Det er risikabelt at slette denne fil: {0}. Kontakt din systemadministrator. DocType: Currency,Currency Name,Valuta Navn apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Ingen e-mails @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Brugerfelt DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Tryk Slet apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} allerede afmeldt til {1} {2} +DocType: Scheduled Job Type,Stopped,Stoppet apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Ikke fjerne apps/frappe/frappe/desk/like.py,Liked,Kunne lide apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Send nu apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke have standard udskriftsformat, brug Tilpas formular" +DocType: Server Script,Allow Guest,Tillad gæst DocType: Report,Query,Forespørgsel DocType: Customize Form,Sort Order,Sorteringsrækkefølge apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Two Factor Authentication metode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Indstil først navnet og gem posten. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 poster +DocType: DocType Link,Link Fieldname,Link feltnavn apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delt med {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Afmeld abonnement DocType: View Log,Reference Name,Henvisning Navn apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Skift bruger +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Først apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Opdater Oversættelser DocType: Error Snapshot,Exception,Undtagelse DocType: Email Account,Use IMAP,Brug IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Regler, der definerer overgang stat i arbejdsprocessen." DocType: File,Folder,Folder DocType: Website Route Meta,Website Route Meta,Webstedsrute Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Ombord på glidefelt DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Nyhedsbrev manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Mulighed 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Sæ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurer diagrammer DocType: User,Last IP,Sidste IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Tilføj venligst et emne til din email -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Et nyt dokument {0} er blevet delt af dig {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} tilbageført {1} DocType: Email Account,Track Email Status,Spor Email Status @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Standard Udgående DocType: Workflow State,play,spille apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klik på linket nedenfor for at fuldføre din registrering og angive en ny adgangskode apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Ikke tilføje +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} fik {1} point for {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ingen e-mail konti Tildelt DocType: S3 Backup Settings,eu-west-2,eu-vest-2 DocType: Contact Us Settings,Contact Us Settings,Kontakt os Indstillinger @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Søger .. DocType: Workflow State,text-width,tekst-bredde apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimal Attachment for denne rekord nået. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Søg efter filnavn eller filtypenavn +DocType: Onboarding Slide,Slide Title,Slides titel DocType: Notification,View Properties (via Customize Form),Se Egenskaber (via Customize Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik på en fil for at vælge den. DocType: Note Seen By,Note Seen By,Note set af @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Del webadresse DocType: System Settings,Allow Consecutive Login Attempts ,Tillad på hinanden følgende loginforsøg apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Der opstod en fejl under betalingsprocessen. Kontakt os venligst. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Hvis diasetype er Opret eller Indstillinger, skal der være en 'create_onboarding_docs' metode i {ref_doctype} .py-fil, der skal udføres, når dias er afsluttet." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dage siden DocType: Email Account,Awaiting Password,Afventer adgangskode DocType: Address,Address Line 1,Adresse apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ikke Efterkommere af DocType: Contact,Company Name,Firmaets navn DocType: Custom DocPerm,Role,Rolle -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Indstillinger ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,til din browser apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,optager @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Spørg om din e-mail er blevet åbnet af modtageren.
Bemærk: Hvis du sender til flere modtagere, selvom 1 modtager læser e-mailen, betragtes den som "Åbnet"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Manglende værdier skal angives apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Tillad adgang til Google-kontakter +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,begrænset DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Marker som ulæst DocType: Activity Log,Operation,Operation @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Tillad Print DocType: Communication,Clicked,Klikkede apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Følg ikke længere apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Indstil standard e-mail-konto fra Opsætning> E-mail> E-mail-konto apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planlagt til at sende DocType: DocType,Track Seen,Track Set DocType: Dropbox Settings,File Backup,Filbackup @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Ingen {0} fun apps/frappe/frappe/config/customization.py,Add custom forms.,Tilføj brugerdefinerede formularer. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} i {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,godkendte dette dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opsætning> Brugertilladelser apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systemet giver mange foruddefinerede roller. Du kan tilføje nye roller at indstille finere tilladelser. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Udløsernavn -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domæner +DocType: Onboarding Slide,Domains,Domæner DocType: Blog Category,Blog Category,Blog Kategori apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Kan ikke kort, fordi følgende betingelse mislykkes:" DocType: Role Permission for Page and Report,Roles HTML,Roller HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Lørdag DocType: User,Represents a User in the system.,Repræsenterer en bruger i systemet. DocType: List View Setting,Disable Auto Refresh,Deaktiver automatisk opdatering DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Opgaven {0}, som du har tildelt til {1}, er blevet lukket." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Luk dette vindue DocType: Print Format,Print Format Type,Print Format Type DocType: Newsletter,A Lead with this Email Address should exist,Et emne med denne e-mailadresse skal eksistere @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP Indstillinger for apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vælg en DocType: Data Export,Filter List,Filter liste DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,TT: mm DocType: Email Account,Auto Reply Message,Autosvarbesked DocType: Data Migration Mapping,Condition,Tilstand apps/frappe/frappe/utils/data.py,{0} hours ago,{0} timer siden @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base bidragyder DocType: Communication,Sent Read Receipt,Sent Læs Kvittering DocType: Email Queue,Unsubscribe Method,Afmeld Method +DocType: Onboarding Slide,Add More Button,Tilføj mere knap DocType: GSuite Templates,Related DocType,Relateret DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Rediger for at tilføje indhold apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Vælg sprog apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kortoplysninger apps/frappe/frappe/__init__.py,No permission for {0},Ingen tilladelse til {0} DocType: DocType,Advanced,Avanceret +DocType: Onboarding Slide,Slide Image Source,Slide Image Source apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Synes API Key eller API Secret er forkert !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Reference: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,fru @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Brugeren må ikke oprette apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Udført apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox adgang er godkendt! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,"Er du sikker på, at du vil fusionere {0} med {1}?" DocType: Customize Form,Enter Form Type,Indtast Form Type DocType: Google Drive,Authorize Google Drive Access,Godkend adgang til Google Drev apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Manglende parameter Kanban Board Name @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","At tillade DocType, DocType. Vær forsigtig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Tilpassede formater til udskrivning, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summen af {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Opdateret Til Ny version DocType: Custom Field,Depends On,Afhænger af DocType: Kanban Board Column,Green,Grøn DocType: Custom DocPerm,Additional Permissions,Yderligere tilladelser @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Kalender - kunne ikke oprette kalender til {0}, fejlkode {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Redigering af række DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Slet alt DocType: Custom Field,Field Type,Field Type apps/frappe/frappe/utils/data.py,only.,alene. DocType: Route History,Route History,Rutehistorie @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Glemt adgangskode? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server Fejl +DocType: Server Script,After Delete,Efter Slet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Se alle tidligere rapporter. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Brugernavn skal angives DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ingen data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, der er hjemmesiden startside. Standard Links (indeks, login, produkter, blog, om, kontakt)" +DocType: Server Script,After Submit,Efter indsendelse apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Godkendelse mislykkedes mens modtage e-mails fra e-mail-konto {0}. Meddelelse fra serveren: {1} DocType: User,Banner Image,Banner Billede DocType: Custom Field,Custom Field,Tilpasset Field @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Hvis brugeren har blot én rolle markeret, så bliver brugeren en ""Systembruger"". Systembrugere har adgang til skrivebordet" DocType: System Settings,Date and Number Format,Dato og nummerformat apps/frappe/frappe/model/document.py,one of,en af -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas form apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontrol ene øjeblik apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Vis Tags DocType: DocField,HTML Editor,HTML Editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opsætning> Bruger +DocType: DocType,Actions,Handlinger DocType: Workflow State,align-justify,tilpasse-retfærdiggøre DocType: User,Middle Name (Optional),Mellemnavn (valgfrit) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ikke Tilladt @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ingen resul DocType: System Settings,Security,Sikkerhed apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planlagt at sende til {0} modtagere apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Skære +DocType: Server Script,After Save,Efter Gem apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},omdøbt fra {0} til {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} af {1} ({2} rækker med børn) DocType: Currency,**Currency** Master,** Valuta ** Master @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Filtrer værdier DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Svigte DocType: Workflow State,download-alt,Download-alt +DocType: Scheduled Job Type,Last Execution,Sidste henrettelse DocType: Data Migration Run,Pull Failed,Træk mislykkedes apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Vis / skjul kort DocType: Communication,Feedback Request,Feedback Request apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importer data fra CSV / Excel-filer. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Følgende områder mangler: +DocType: Notification Log,From User,Fra bruger apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Annullering {0} DocType: Web Page,Main Section,Main Section DocType: Page,Icon,Ikon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Tip: Medtag symboler, tal og store bogstaver i adgangskoden" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurer underretninger til omtaler, opgaver, energipunkter og mere." DocType: DocField,Allow in Quick Entry,Tillad i hurtig indtastning apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/åååå @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Tema-URL DocType: Customize Form,Sort Field,Sort Field DocType: Razorpay Settings,Razorpay Settings,Razorpay Indstillinger apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Rediger filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Tilføj mere DocType: System Settings,Session Expiry Mobile,Session Udløb Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Forkert bruger eller adgangskode apps/frappe/frappe/templates/includes/search_box.html,Search results for,Søgeresultater for @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energipunktregel DocType: Communication,Delayed,Forsinket apps/frappe/frappe/config/settings.py,List of backups available for download,Liste over sikkerhedskopier til rådighed for download +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Prøv den nye dataimport apps/frappe/frappe/www/login.html,Sign up,Tilmeld dig apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Række {0}: Ikke tilladt at deaktivere Obligatorisk for standardfelter +DocType: Webhook,Enable Security,Aktivér sikkerhed apps/frappe/frappe/config/customization.py,Dashboards,Dashboards DocType: Test Runner,Output,Produktion DocType: Milestone,Track Field,Løbebane @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Indstil ejendom efter advarsel apps/frappe/frappe/config/customization.py,Add fields to forms.,Tilføj felter til formularer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Det ser ud til, at noget er galt med denne websteds Paypal-konfiguration." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Tilføj anmeldelse +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} tildelte dig en ny opgave {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Skriftstørrelse (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Kun standard DocTypes har tilladelse til at blive tilpasset fra Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Indstil filtre DocType: Contact Us Settings,Email ID,E-mail-id DocType: Energy Point Rule,Multiplier Field,Multiplikatorfelt +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Kunne ikke oprette Razorpay-ordre. Kontakt administrator DocType: Dashboard Chart,Time Interval,Tids interval DocType: Activity Log,Keep track of all update feeds,Hold styr på alle opdateringsfeeds +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} delte et dokument {1} {2} med dig 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Nøgle DocType: Address,Contacts,Kontakter DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport fra alle dokumentsider aktier +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importskabelon skal være af typen .csv, .xlsx eller .xls" apps/frappe/frappe/www/update-password.html,New Password,Ny adgangskode apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} mangler apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Undskyld! Du kan ikke slette autogenererede kommentarer @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Løb DocType: Blog Post,Content (HTML),Indhold (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Opsætning til DocType: Personal Data Download Request,User Name,Brugernavn DocType: Workflow State,minus-sign,minus-tegn apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ikke fundet @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Ingen {0} tilladelser apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Udlæs brugerdefinerede tilladelser apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ingen emner fundet. DocType: Data Export,Fields Multicheck,Felter Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Komplet DocType: Activity Log,Login,Log ind DocType: Web Form,Payments,Betalinger apps/frappe/frappe/www/qrcode.html,Hi {0},Hej {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-integration. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} vendte dine point tilbage på {1} {2} DocType: System Settings,Enable Scheduled Jobs,Aktiver planlagte Jobs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Bemærkninger: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,inaktive @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mail apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Tilladelsesfejl apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Navn {0} kan ikke være {1} DocType: User Permission,Applicable For,Gældende For +DocType: Dashboard Chart,From Date,Fra dato apps/frappe/frappe/core/doctype/version/version_view.html,Success,Succes apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessionen er udløbet DocType: Kanban Board Column,Kanban Board Column,Kanbantavlekolonne @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ikke tilladt i tilstand DocType: Async Task,Async Task,Asynkron opgave DocType: Workflow State,picture,billede -apps/frappe/frappe/www/complete_signup.html,Complete,Komplet +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Komplet DocType: DocType,Image Field,Billedfelt DocType: Print Format,Custom HTML Help,Tilpasset HTML Hjælp DocType: LDAP Settings,Default Role on Creation,Standard rolle ved oprettelse @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Næste tilstand DocType: User,Block Modules,Blokmodulerne DocType: Print Format,Custom CSS,Brugerdefinerede CSS +DocType: Energy Point Rule,Apply Only Once,Anvend kun én gang apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Tilføj en kommentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignoreret: {0} til {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Standard Indgående DocType: Workflow State,repeat,gentagelse DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Værdien skal være en af {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Annuller alle dokumenter 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gå til {0} Liste apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjælp til søgning @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrered apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Den automatiske gentagelse for dette dokument er deaktiveret. DocType: DocType,Hide Copy,Skjul Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Ryd alle roller +DocType: Server Script,Before Save,Før Gem apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} skal være entydigt apps/frappe/frappe/model/base_document.py,Row,Række apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importeret {0} DocType: User,API Key,API nøgle DocType: Email Account,Send unsubscribe message in email,Send afmeldelsesbesked i e-mail -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Rediger titel apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Feltnavn som vil være DOCTYPE for dette link felt. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,"Dokumenter, der er tildelt til dig og af dig." apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Du kan også kopiere-indsætte dette @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Vedhæft billede DocType: Workflow State,list-alt,liste-alt apps/frappe/frappe/www/update-password.html,Password Updated,Adgangskode opdateret +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opsætning> Brugertilladelser apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Skridt til at bekræfte dit login apps/frappe/frappe/utils/password.py,Password not found,Adgangskode ikke fundet +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Sidelængde DocType: Email Queue,Expose Recipients,Expose modtagere apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Vedlægge er obligatorisk for indkommende mails @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maks Attachment Size (i MB) apps/frappe/frappe/www/login.html,Have an account? Login,Har du en konto? Log ind +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Udskriftsindstillinger ... DocType: Workflow State,arrow-down,pil ned apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Række {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Bruger ikke lov til at slette {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Indtast d DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Dokumenttitel apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorisk) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år (e) siden DocType: Social Login Key,Social Login Provider,Social Login Provider apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Tilføj en kommentar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Ingen data fundet i filen. Genindsæt venligst den nye fil med data. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,hånd-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Der blev ikke fundet nogen felter, der kan bruges som Kanban-kolonne. Brug formularen Tilpas til at tilføje et brugerdefineret felt af typen "Vælg"." DocType: Address,GST State,GST-stat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Kan ikke indstille Annuller uden Indsend +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Bruger ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigere URI Bundet Til Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Åbn Hjælp DocType: DocType,Is Submittable,Kan godkendes -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nyt omtale +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nyt omtale apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Ingen nye Google-kontakter synkroniseret. DocType: File,Uploaded To Google Drive,Uploadet til Google Drev apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Værdi for en kontrol felt kan være enten 0 eller 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Indbakke DocType: Kanban Board Column,Red,Rød DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumentet kan ikke gemmes. DocType: Energy Point Rule,Maximum Points,Maksimumpoint apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Indstillinger @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} påskønnelsespunkter for {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Kan indstilles roller for brugere fra deres brugerside. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Tilføj kommentar +DocType: Dashboard Chart,Select Date Range,Vælg datointerval DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul til udlæsning +DocType: Scheduled Job Type,Monthly Long,Månedlig lang apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Ingen grundlæggende tilladelser sat +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Send en e-mail til {0} for at linke den her apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Betydning af Godkend, Annuller, Tilføj" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Spor milepæle for DocType: Social Login Key,Identity Details,Identitetsoplysninger apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Overgang til arbejdsgangstilstand er ikke tilladt fra {0} til {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Vis betjeningspanel -apps/frappe/frappe/desk/form/assign_to.py,New Message,Ny besked DocType: File,Preview HTML,Eksempel HTML DocType: Desktop Icon,query-report,query-rapport DocType: Data Import Beta,Template Warnings,Skabelonadvarsler @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Forbundet me apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Rediger indstillinger for automatisk e-mail-rapport DocType: Chat Room,Message Count,Besked Count DocType: Workflow State,book,bog +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} er knyttet til følgende indsendte dokumenter: {2} DocType: Communication,Read by Recipient,Læs af modtager DocType: Website Settings,Landing Page,Startside apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Fejl i Tilpasset Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Navn apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ingen Tilladelser sat for dette kriterium. DocType: Auto Email Report,Auto Email Report,Auto Email Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nyt dokument delt apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Slet kommentar? DocType: Address Template,This format is used if country specific format is not found,"Dette format bruges, hvis det landespecifikke format ikke findes" DocType: System Settings,Allow Login using Mobile Number,Tillad login ved hjælp af mobilnummer apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Hvis det er aktiveret, bliver brugere, der logger ind fra Begrænset IP-adresse, ikke bedt om Two Factor Auth" +DocType: Server Script,After Cancel,Efter annullering DocType: Auto Repeat,Get Contacts,Få kontaktpersoner apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Stillinger arkiveret under {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Spring over Untitled-kolonne @@ -1684,6 +1757,7 @@ DocType: User,Login After,Log ind efter DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Udskrivning DocType: Workflow State,thumbs-up,thumbs-up +DocType: Notification Log,Mention,Nævne DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Skrifttyper apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Præcision skal være mellem 1 og 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,og apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Denne rapport blev genereret den {0} DocType: Error Snapshot,Frames,Rammer -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Opgave +DocType: Notification Log,Assignment,Opgave DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Billede Link DocType: Auto Email Report,Report Filters,rapportfiltre @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Kan ikke opdatere begivenhed apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Verifikationskoden er blevet sendt til din registrerede emailadresse. apps/frappe/frappe/core/doctype/user/user.py,Throttled,drosles +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Dit mål apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtret skal have 4 værdier (doktype, feltnavn, operatør, værdi): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Intet navn specificeret for {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Anvend tildelingsregel apps/frappe/frappe/utils/bot.py,show,at vise apps/frappe/frappe/utils/data.py,Invalid field name {0},Ugyldigt feltnavn {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,tekst-højde DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migration Plan Mapping apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Starter Frappé ... DocType: Web Form Field,Max Length,Maksimal længde -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},For {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-markør apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Indberet et problem @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Side mangler eller er flyt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Anmeldelser DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,indstillinger Razorpay betalingsgateway +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} fik {1} point for {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Hent vedhæftede billeder fra dokument DocType: Chat Room,Name,Navn DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Åbn link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Dit sprog DocType: Dashboard Chart,Average,Gennemsnit apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Tilføj række -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Query skal være en SELECT DocType: Auto Repeat,Completed,Afsluttet @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Næste synkroniseringstegn DocType: Energy Point Settings,Energy Point Settings,Energipunktindstillinger DocType: Async Task,Succeeded,Lykkedes apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Obligatoriske felter, der kræves i {0}" +DocType: Onboarding Slide Field,Align,Juster apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Nulstil Tilladelser for {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Brugere og tilladelser DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup-indstillinger @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nyt udskriftsformat navn apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik på linket herunder for at godkende anmodningen DocType: Workflow State,align-left,justere venstre +DocType: Onboarding Slide,Action Settings,Handlingsindstillinger DocType: User,Defaults,Standardværdier +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning skal du bruge> 5, <10 eller = 324. For intervaller skal du bruge 5:10 (til værdier mellem 5 og 10)." DocType: Energy Point Log,Revert Of,Tilbage til apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sammenlæg med eksisterende DocType: User,Birth Date,Fødselsdato @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,I DocType: Notification,Value Change,Value Change DocType: Google Contacts,Authorize Google Contacts Access,Godkend adgang til Google Kontaktpersoner apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Viser kun Numeriske felter fra Rapport +apps/frappe/frappe/utils/data.py,1 week ago,1 uge siden DocType: Data Import Beta,Import Type,Importtype DocType: Access Log,HTML Page,HTML-side DocType: Address,Subsidiary,Datterselskab @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Med brevhoved apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ugyldig Server til udgående post eller Port DocType: Custom DocPerm,Write,Skrive -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Kun Administrator lov til at oprette Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Opdatering DocType: Data Import Beta,Preview,Eksempel apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Field "værdi" er obligatorisk. Angiv værdi, der skal opdateres" @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Inviter so DocType: Data Migration Run,Started,Startede apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Bruger {0} har ikke adgang til dette dokument DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Grupper efter Baseret på apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Vælg Vedhæftede apps/frappe/frappe/model/naming.py, for {0},for {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Du har ikke tilladelse til at udskrive dette dokument @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Bekræft DocType: Workflow Document State,Update Field,Opdatering Field DocType: Chat Profile,Enable Chat,Aktivér chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Forlad denne samtale apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Muligheder ikke indstillet til link felt {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Kø / arbejder @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Log ind er ikke tilladt på dette tidspunkt DocType: Data Migration Run,Current Mapping Action,Aktuel kortlægning DocType: Dashboard Chart Source,Source Name,Kilde Navn -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ingen e-mail-konto tilknyttet brugeren. Tilføj en konto under Bruger> E-mail-indbakke. DocType: Email Account,Email Sync Option,E-mail-synkronisering Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Række nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Er fastgjort DocType: Contact Us Settings,Introduction,Introduktion +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Brug for hjælp? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Fastgør globalt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Efterfulgt af DocType: LDAP Settings,LDAP Email Field,LDAP Email Felt @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Allerede DocType: User Email,Enable Outgoing,Aktiver udgående DocType: Address,Fax,Telefax apps/frappe/frappe/config/customization.py,Custom Tags,Brugerdefinerede Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke opsat. Opret en ny e-mail-konto fra Opsætning> E-mail> E-mail-konto DocType: Comment,Submitted,Godkendt DocType: Contact,Pulled from Google Contacts,Trukket fra Google-kontakter apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ugyldig forespørgsel @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Forside / T apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Tildel til mig DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tryk på Alt-tasten for at udløse yderligere genveje i Menu og Sidebar +DocType: Dashboard Chart,To Date,Til dato DocType: List View Setting,List View Setting,Indstilling af listevisning apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Vis mislykkedes job -DocType: Event,Details,Detaljer +DocType: Scheduled Job Log,Details,Detaljer DocType: Property Setter,DocType or Field,DocType eller Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Du har fulgt dette dokument apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primær farve @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-Kastet DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Hvis aktiveret, kan alle brugere logge ind fra en hvilken som helst IP-adresse ved hjælp af Two Factor Auth. Dette kan også indstilles kun for bestemte brugere i bruger side" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Synes Publishable Key eller Secret Key er forkert !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Hurtig hjælp til at indstille tilladelser -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype at Tildel tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Vis Tilbagefald apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail er flyttet til papirkurven DocType: Report,Report Builder,Rapportgenerator @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Upload DocType: User Permission,Advanced Control,Avanceret kontrol DocType: System Settings,Date Format,Datoformat apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ikke Udgivet +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standardadresseskabelon fundet. Opret en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Initiativer for workflow (f.eks Godkend, Annuller)." DocType: Data Import,Skip rows with errors,Spring rækker med fejl DocType: Workflow State,flag,flag @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Udsk apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring til felt DocType: Contact Us Settings,Forward To Email Address,Frem til email-adresse DocType: Contact Phone,Is Primary Phone,Er primær telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Send en e-mail til {0} for at linke den her. DocType: Auto Email Report,Weekdays,Hverdage apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} poster eksporteres apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Skriv kommentar apps/frappe/frappe/config/core.py,Documents,Dokumenter apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktivitetslogg af DocType: Social Login Key,Custom Base URL,Brugerdefineret basiswebadresse -DocType: Email Flag Queue,Is Completed,er afsluttet +DocType: Onboarding Slide,Is Completed,er afsluttet apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Få felter apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Rediger profil DocType: Kanban Board Column,Archived,Arkiveret @@ -2110,11 +2189,12 @@ 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" DocType: Social Login Key,Office 365,Kontor 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,I dag +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Indsend efter import DocType: Error Log,Log of Scheduler Errors,Log af Scheduler Fejl DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help link DocType: OAuth Client,App Client Secret,App klient hemlighed apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Godkender apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Forældre er navnet på det dokument, som dataene vil blive tilføjet til." @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,STORE BOGSTAVER apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Tilpasset HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Indtast mappenavn -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standardadresseskabelon fundet. Opret en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. apps/frappe/frappe/auth.py,Unknown User,Ukendt bruger apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Vælg Rolle DocType: Comment,Deleted,Slettet @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Opret kort apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Importer ikke -DocType: Web Page,Center,Centrer +DocType: Onboarding Slide Field,Center,Centrer DocType: Notification,Value To Be Set,"Værdi, der skal indstilles" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Rediger {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Første niveau @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Databasens navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Opdater Form DocType: DocField,Select,Vælg -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Se fuld log +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Se fuld log DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, eksempel: status == 'Open' og type == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Fil ikke vedhæftet apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Forbindelse afbrudt. Nogle funktioner fungerer muligvis ikke. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML til header sektion. Val apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Denne funktion er helt ny og stadig eksperimenterende apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimalt {0} rækker tilladt DocType: Dashboard Chart Link,Chart,Diagram +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Global Afmeld apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dette er en meget almindelig adgangskode. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Visning @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Værtsnavn DocType: Data Migration Mapping,Condition Detail,Tilstand detaljer apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",For valuta {0} skal det mindste transaktionsbeløb være {1} DocType: DocField,Print Hide,Print Skjul +DocType: System Settings,HH:mm:ss,TT: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Til bruger apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Indtast værdi DocType: Workflow State,tint,toning @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kode til lo apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Føj til Opgaver DocType: Footer Item,Company,Firma apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gennemsnit på {0} +DocType: Scheduled Job Log,Scheduled,Planlagt DocType: User,Logout from all devices while changing Password,"Logout fra alle enheder, mens du ændrer adgangskode" apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Bekræft adgangskode apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Der var fejl @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Brugerrettigheder findes allerede apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kortlægger kolonne {0} til felt {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Se {0} -DocType: User,Hourly,Hver time +DocType: Scheduled Job Type,Hourly,Hver time apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrer OAuth Client App DocType: DocField,Fetch If Empty,Hent hvis tom DocType: Data Migration Connector,Authentication Credentials,Autentificeringsoplysninger @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},opnået af {0} via automatisk regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eller {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Du er alle klar! DocType: Workflow State,trash,affald DocType: System Settings,Older backups will be automatically deleted,Ældre sikkerhedskopier slettes automatisk apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ugyldig adgangskode ID eller Secret Access-nøgle. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Du mistede nogle energipunkter DocType: Post,Is Globally Pinned,Er globalt fastgjort apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Seneste aktivitet DocType: Workflow Transition,Conditions,Betingelser @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Bekræftet DocType: Event,Ends on,Slutter den DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Sti til servercertifikat +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript er deaktiveret i din browser apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ikke nok tilladelse til at se links apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adresse Titel er obligatorisk. DocType: Google Contacts,Push to Google Contacts,Tryk på til Google-kontakter @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-vest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Hvis dette er markeret, importeres rækker med gyldige data, og ugyldige rækker bliver dumpet til en ny fil, som du kan importere senere." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument er kun redigeres af brugere af rolle -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Opgaven {0}, som du har tildelt {1}, er blevet lukket af {2}." DocType: Print Format,Show Line Breaks after Sections,Vis Linje Breaks efter Sektioner DocType: Communication,Read by Recipient On,Læs af modtager på DocType: Blogger,Short Name,Kort navn @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Tild DocType: Translation,PR sent,PR sendt DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Send kun poster, der er opdateret i sidste X timer" DocType: Communication,Feedback,Feedback +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Opdateret til en ny version 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Åben oversættelse apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Denne email er autogenereret DocType: Workflow State,Icon will appear on the button,Ikon vises på knappen @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Siden blev DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Dias Varer apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Prøv at undgå gentagne ord og tegn +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Underretninger deaktiveret +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,"Er du sikker på, at du vil slette alle rækker?" DocType: Workflow Action,Workflow State,Workflow stat apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rækker Tilføjet apps/frappe/frappe/www/list.py,My Account,Min konto @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dage efter apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-bakkeforbindelse aktiv! DocType: Contact Us Settings,Settings for Contact Us Page,"Indstillinger for ""Kontakt os""-siden" +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Aktivér printserver apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} uger siden DocType: Email Account,Footer,Sidefod @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Advarsel apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Dette kan udskrives på flere sider DocType: Data Migration Run,Percent Complete,Procent fuldført -DocType: Tag Category,Tag Category,tag Kategori -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning skal du bruge> 5, <10 eller = 324. For intervaller skal du bruge 5:10 (til værdier mellem 5 og 10)." DocType: Google Calendar,Pull from Google Calendar,Træk fra Google Kalender apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Hjælp DocType: User,Login Before,Log ind før @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skjul weekender apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genererer automatisk gentagne dokumenter. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Er +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-skilt apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Værdi for {0} kan ikke være en liste DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valuta formateres? Hvis ikke angivet, vil bruge systemets standardindstillinger" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Indsend {0} dokumenter? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fejl ved forbindelse til QZ Tray Application ...

Du skal have QZ Tray-applikation installeret og kørt for at bruge Raw Print-funktionen.

Klik her for at downloade og installere QZ Tray .
Klik her for at lære mere om Raw Printing ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printerkortlægning apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Gem venligst før vedhæftning. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vil du annullere alle tilknyttede dokumenter? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Tilføjet {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType kan ikke ændres fra {0} til {1} i række {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rolle Tilladelser DocType: Help Article,Intermediate,mellemniveau +apps/frappe/frappe/config/settings.py,Email / Notifications,E-mail / underretninger apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} ændret {1} til {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Annulleret dokument genoprettet som Udkast DocType: Data Migration Run,Start Time,Start Time @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ka apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ugyldig modtageradresse DocType: Workflow State,step-forward,trin-frem DocType: System Settings,Allow Login After Fail,Tillad login efter fejl +DocType: DocType Link,DocType Link,DocType-link DocType: Role Permission for Page and Report,Set Role For,Set Rolle For DocType: GCalendar Account,The name that will appear in Google Calendar,Navnet der vises i Google Kalender apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direkte rum med {0} eksisterer allerede. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Opret ny( DocType: Contact,Google Contacts,Google-kontakter DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Email Rule,Is Spam,er spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Sidst apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Åben {0} DocType: Data Import Beta,Import Warnings,Importadvarsler @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok-tegn apps/frappe/frappe/config/settings.py,Deleted Documents,Slette dokumenter apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-formatet er store bogstaver apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop-ikonet eksisterer allerede +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specificer, i hvilke domæner alle lysbillederne skal vises. Hvis der ikke er angivet noget, vises diaset som standard i alle domæner." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikér apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Felt {1} i række {2} kan ikke være skjult og obligatorisk uden standard DocType: Newsletter,Create and Send Newsletters,Opret og send nyhedsbreve @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Kalenderbegivenheds-id apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",'Forælder' betegner den overordnede tabel hvor denne række skal tilføjes apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Gennemgangspunkter: +DocType: Scheduled Job Log,Scheduled Job Log,Planlagt joblog +DocType: Server Script,Before Delete,Før sletning apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Delt med apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Vedhæft filer / urls og tilføj i tabel. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Meddelelse ikke opsætning @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Indstillinger for Om os Page apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe betalings gateway indstillinger apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Udskriv Sendt til printeren! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energipoint +DocType: Notification Settings,Energy Points,Energipoint +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tid {0} skal være i format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,fx pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generer nøgler apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Dette fjerner dine data permanent. DocType: DocType,View Settings,Se Indstillinger +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ny anmeldelse DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Anmodningsstruktur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Controller-metode get_razorpay_order mangler DocType: Personal Data Deletion Request,Pending Verification,Venter på verifikation DocType: Website Meta Tag,Website Meta Tag,Metatag på webstedet DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",Hvis ikke standardport (f.eks. 587). Hvis du i Google Cloud prøver port 2525. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Clearing slutdato, som det ikke kan være i fortiden for offentliggjorte sider." DocType: User,Send Me A Copy of Outgoing Emails,Send mig en kopi af udgående e-mails -DocType: System Settings,Scheduler Last Event,Scheduler Sidste begivenhed DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Tilføj Google Analytics ID: f.eks. UA-89XXX57-1. Du søge hjælp på Google Analytics for at få flere oplysninger. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Adgangskode kan ikke være mere end 100 tegn DocType: OAuth Client,App Client ID,App klient-id @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Ny adgangskod apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delte dette dokument med {1} DocType: Website Settings,Brand Image,Varemærkelogo DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importskabelon skal indeholde en overskrift og mindst en række. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Kalender er konfigureret. apps/frappe/frappe/config/website.py,"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 @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Bruger Social Login apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritiserede dit arbejde med {1} med {2} punkt DocType: Contact,All,Alle DocType: Email Queue,Recipient,Modtager +DocType: Webhook,Webhook Security,Webhook-sikkerhed DocType: Communication,Has Attachment,har Attachment DocType: Address,Sales User,Salgsbruger apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Træk og slip værktøj til at opbygge og tilpasse Print formater. @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrations-id-felt DocType: Dashboard Chart,Last Synced On,Sidste synkroniseret på DocType: Comment,Comment Type,Kommentar Type DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritiserede dit arbejde med {1} {2} DocType: Assignment Rule,Users,Brugere DocType: Address,Odisha,Odisha DocType: Report,Report Type,Kontotype @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Selv godkendelse er ikke tilladt DocType: GSuite Templates,Template ID,Skabelon-ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombination af tildelingstype ( {0} ) og svartype ( {1} ) er ikke tilladt -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Ny meddelelse fra {0} DocType: Portal Settings,Default Role at Time of Signup,Standard Rolle på tidspunktet for Tilmeld DocType: DocType,Title Case,Titel Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klik på linket herunder for at downloade dine data apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Aktiveret e-mail-indbakke til bruger {0} DocType: Data Migration Run,Data Migration Run,Data Migration Kør DocType: Blog Post,Email Sent,E-mail sendt -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,ældre DocType: DocField,Ignore XSS Filter,Ignorer XSS-filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,fjernet apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Indstillinger Dropbox-sikkerhedskopi @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,Sat i kø DocType: Braintree Settings,Use Sandbox,Brug Sandbox apps/frappe/frappe/utils/goal.py,This month,Denne måned apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nyt brugerdefineret Print Format +DocType: Server Script,Before Save (Submitted Document),Før gemt (indsendt dokument) DocType: Custom DocPerm,Create,Opret apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Ikke flere poster at vise apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Gå til forrige rekord @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Flytte til skrald DocType: Web Form,Web Form Fields,Felter Web Form DocType: Data Import,Amended From,Ændret Fra +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Tilføj et link til hjælpevideo, hvis bruger ikke har nogen idé om, hvad han skal udfylde diaset." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Advarsel: Kan ikke finde {0} i enhver tabel relateret til {1} DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Dette dokument er i øjeblikket i kø til udførelse. Prøv igen @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Blog-indlæg DocType: Access Log,Export From,Eksport fra apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Avanceret søgning apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Du har ikke lov til at se nyhedsbrevet. +DocType: Dashboard Chart,Group By,Sortér efter DocType: User,Interests,Interesser apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail DocType: Energy Point Rule,Allot Points To Assigned Users,Tildel point til tildelte brugere @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Tildelingsregel apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Foreslået Brugernavn: {0} DocType: Assignment Rule Day,Day,Dag apps/frappe/frappe/public/js/frappe/desk.js,Modules,Moduler +DocType: DocField,Mandatory Depends On,Obligatorisk afhænger af apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Betaling gennemført apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ingen {0} mail DocType: OAuth Bearer Token,Revoked,Tilbagekaldt @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar og Kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ikke tilladt at vedhæfte {0} dokument, skal du aktivere Tillad udskrivning til {0} i Udskriftsindstillinger" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke opsat. Opret en ny e-mail-konto fra Opsætning> E-mail> E-mail-konto apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Se dokumentet på {0} DocType: Stripe Settings,Publishable Key,Offentlig nøgle apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Start import @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,Fraktion apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Begivenhed synkroniseret med Google Kalender. DocType: LDAP Settings,LDAP First Name Field,LDAP Fornavn Field DocType: Contact,Middle Name,Mellemnavn +DocType: DocField,Property Depends On,Ejendom afhænger af DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py,Name not set via Prompt,Navn ikke indtastet i prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail indbakke apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Opdaterer {0} af {1}, {2}" DocType: Auto Email Report,Filters Display,filtre Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Feltet "ændret_fra" skal være til stede for at gøre en ændring. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} satte pris på dit arbejde med {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Gem filtre DocType: Address,Plant,Plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svar alle @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,mappe-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Rapport: DocType: Print Settings,Print taxes with zero amount,Udskriv skatter med nul beløb apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} må ikke omdøbes +DocType: Server Script,Before Insert,Før indsætning DocType: Custom Script,Custom Script,Tilpasset Script DocType: Address,Address Line 2,Adresse 2 DocType: Address,Reference,Henvisning apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Tildelt til -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Indstil standard e-mail-konto fra Opsætning> E-mail> E-mail-konto DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail DocType: Data Import,Action,Handling DocType: GSuite Settings,Script URL,Script URL @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api adgang DocType: DocField,In List View,I Listevisning DocType: Email Account,Use TLS,Brug TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Ugyldigt brugernavn eller adgangskode +DocType: Scheduled Job Type,Weekly Long,Ugentlig lang apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Hent skabelon apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Tilføj brugerdefinerede javascript til formularer. ,Role Permissions Manager,Rolleadministrator apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Navnet på det nye udskrivningsformat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Skift sidebjælke +DocType: Server Script,After Save (Submitted Document),Efter gem (indsendt dokument) DocType: Data Migration Run,Pull Insert,Træk indsæt DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maksimal tilladte point efter multiplikation af point med multiplikatorværdien (Bemærk: For ingen grænser skal dette felt være tomt eller sæt 0) @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ikke installeret apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Hent med data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ændrede værdier for {0} {1} +DocType: Server Script,Before Cancel,Før annullering DocType: Workflow State,hand-right,hånd-ret DocType: Website Settings,Subdomain,Subdomæne DocType: S3 Backup Settings,Region,Region @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Gammel adgangskode DocType: S3 Backup Settings,us-east-1,os-øst-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Meddelelser fra {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","For at formatere kolonner, giver kolonneetiketter i forespørgslen." +DocType: Onboarding Slide,Slide Fields,Slide felter DocType: Has Domain,Has Domain,Har Domæne DocType: User,Allowed In Mentions,Tilladt i Mentioner apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Har du ikke en konto? Tilmeld dig her apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Kan ikke fjerne ID-feltet apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kan ikke indstille tildeling - Ændre, hvis det ikke kan indsendes." DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Abonnerede dokumenter apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Brugerindstillinger DocType: Report,Reference Report,Referencerapport DocType: Activity Log,Link DocType,Link DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Godkend adgang til Goo apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Den side, du er på udkig efter mangler. Dette kan skyldes den flyttes, eller der er en tastefejl i linket." apps/frappe/frappe/www/404.html,Error Code: {0},Fejlkode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivelse for notering side, i almindelig tekst, kun et par linjer. (max 140 tegn)" +DocType: Server Script,DocType Event,DocType-begivenhed apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} er obligatoriske felter DocType: Workflow,Allow Self Approval,Tillad selv godkendelse DocType: Event,Event Category,Hændelseskategori @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Dit navn apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Forbindelse Succes DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Der findes allerede en Onboarding-dias af diasetype Fortsæt. DocType: DocType,Default Sort Field,Standard sorteringsfelt DocType: File,Is Folder,Er Mappe DocType: Document Follow,DocType,DocType @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Værdie DocType: Workflow State,arrow-up,arrow-up DocType: Dynamic Link,Link Document Type,Link dokumenttype apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Der skal mindst være en række til {0} tabellen +DocType: Server Script,Server Script,Server script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",For at konfigurere automatisk gentagelse skal du aktivere "Tillad automatisk gentagelse" fra {0}. DocType: OAuth Bearer Token,Expires In,udløber I +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Det antal gange, du vil gentage sættet af felter (f.eks: hvis du vil have 3 kunder i diaset, skal du indstille dette felt til 3. Kun det første sæt felter vises som obligatorisk i diaset)" DocType: DocField,Allow on Submit,Tillad på Godkend DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Undtagelsestype @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Kommende begivenheder apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Indtast værdier for App adgangsnøgle og App Secret Key +DocType: Email Account,Append Emails to Sent Folder,Tilføj e-mails til sendt mappe DocType: Web Form,Accept Payment,Godkend betaling apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Vælg listepost apps/frappe/frappe/config/core.py,A log of request errors,En log over anmodnings fejl @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,bidraget apps/frappe/frappe/config/customization.py,Form Customization,Tilpasning af form apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ingen aktive sessioner DocType: Web Form,Route to Success Link,Rute til succeslink -DocType: Top Bar Item,Right,Højre +DocType: Onboarding Slide Field,Right,Højre apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Ingen kommende begivenheder DocType: User,User Type,Brugertype DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prøv igen apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL skal starte med 'http: //' eller 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Mulighed 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Dette kan ikke fortrydes DocType: Workflow State,Edit,Redigér DocType: Website Settings,Chat Operators,Chatoperatører DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Rapport med mere end 10 kolonner ser bedre ud i landskabstilstand. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ugyldigt feltnavn: {0} DocType: Milestone,Milestone,Milestone @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Gå til {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-mails er slået fra apps/frappe/frappe/config/integrations.py,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 uge siden +DocType: Onboarding Slide,Slide Description,Dias Beskrivelse DocType: Communication,Error,Fejl apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Opret venligst en besked først DocType: Auto Repeat,End Date,Slutdato @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Gruppe Label DocType: Kanban Board,Kanban Board,Kanbantavle apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-kontakter er konfigureret. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 post eksporteres +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ingen e-mail-konto tilknyttet brugeren. Tilføj en konto under Bruger> E-mail-indbakke. DocType: DocField,Report Hide,Rapporter Skjul apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Træ visning ikke tilgængelig for {0} DocType: DocType,Restrict To Domain,Begræns til domæne DocType: Domain,Domain,Domæne +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ugyldig fil-URL. Kontakt systemadministrator. DocType: Custom Field,Label Help,Label Hjælp DocType: Workflow State,star-empty,star-tom apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datoer er ofte nemme at gætte. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,hånd-venstre DocType: Data Import,If you are updating/overwriting already created records.,Hvis du opdaterer / overskriver allerede oprettede poster. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Er Global DocType: Email Account,Use SSL,Brug SSL +DocType: Webhook,HOOK-.####,KROG-.#### DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentet kunne ikke tildeles korrekt apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ugyldigt "depends_on" udtryk @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Sidst opdateret apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,For dokumenttype DocType: Workflow State,arrow-right,pil højre +DocType: Server Script,API Method,API-metode DocType: Workflow State,Workflow state represents the current state of a document.,Workflow tilstand repræsenterer den aktuelle tilstand af et dokument. DocType: Letter Head,Letter Head Based On,Brevhoved baseret på apps/frappe/frappe/utils/oauth.py,Token is missing,Token mangler @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Kompakt Item Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Omdiriger URL +DocType: Onboarding Slide Field,Placeholder,Pladsholder DocType: SMS Settings,Enter url parameter for receiver nos,Indtast url parameter for receiver nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Brug altid Kontonavn som afsendernavn @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,Hjem DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Bruger kan logge ind med e-mail-id eller brugernavn DocType: Workflow State,question-sign,spørgsmålstegn -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} er deaktiveret apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Felt "rute" er obligatorisk for Webvisninger apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Indsæt kolonne inden {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Brugeren fra dette felt vil blive belønnet point @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Hvis ejer DocType: Data Migration Mapping,Push,Skubbe apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Slip filer her DocType: OAuth Authorization Code,Expiration time,udløb tid +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Åbn dokumenter DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Vis Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Du skal være logget ind for at få adgang til denne {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale genv DocType: Desktop Icon,Page,Side apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Kunne ikke finde {0} i {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Navne og efternavne er nemme at gætte. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument omdøbt fra {0} til {1} apps/frappe/frappe/config/website.py,Knowledge Base,Knowledge Base DocType: Workflow State,briefcase,mappe apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Værdi kan ikke ændres for {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Skift gittervisning apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Gå til næste post +DocType: System Settings,Time Format,Tidsformat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ugyldige betaling gateway legitimationsoplysninger DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Dette er skabelonfilen, der genereres med kun rækkerne, der har en vis fejl. Du skal bruge denne fil til rettelse og import." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Set Tilladelser om dokumenttyper og roller @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Svar apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Sider i Desk (pladsholdere) DocType: DocField,Collapsible Depends On,Sammenklappelig Afhænger On DocType: Print Style,Print Style Name,Udskriv stilnavn +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Gruppe efter felt kræves for at oprette et betjeningspaneldiagram DocType: Print Settings,Allow page break inside tables,Tillad sideskift inde i tabeller DocType: Email Account,SMTP Server,SMTP-server DocType: Print Format,Print Format Help,Print Format Hjælp apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} Værelset skal have mindst én bruger. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Tælle +DocType: Dashboard Chart,Group By Type,Grupper efter type apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Ny kommentar på {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaureret {0} som {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Hvis du opdaterer, skal du vælge "Overskriv" vil ellers eksisterende rækker ikke slettes." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Brugerpro DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dato {0} skal være i format: {1} DocType: About Us Settings,Org History Heading,Org History Overskrift +DocType: Scheduled Job Type,Scheduled Job Type,Planlagt jobtype DocType: Print Settings,Allow Print for Cancelled,Tillad Print til Annulleret DocType: Communication,Integrations can use this field to set email delivery status,Integrationer kan bruge dette felt til at indstille e-mail-leveringsstatus +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Du har ikke tilladelse til at annullere alle tilknyttede dokumenter. DocType: Web Form,Web Page Link Text,Hjemmeside Link-tekst DocType: Page,System Page,System side apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Sæt standard format, side størrelse, print stil etc." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Tilpasninger til {0} eksporteres til:
{1} DocType: Website Settings,Include Search in Top Bar,Medtag Søg i Top Bar +DocType: Scheduled Job Type,Daily Long,Dagligt lang DocType: GSuite Settings,Allow GSuite access,Tillad GSuite adgang DocType: DocType,DESC,DESC DocType: DocType,Naming,Navngivning @@ -3476,6 +3597,7 @@ DocType: Notification,Send days before or after the reference date,Send dage fø DocType: User,Allow user to login only after this hour (0-24),Tillad brugeren at logge først efter denne time (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Tildel en efter en i rækkefølge DocType: Integration Request,Subscription Notification,Abonnementsmeddelelse +DocType: Customize Form Field, Allow in Quick Entry ,Tillad hurtig indtastning apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,eller vedhæft en DocType: Auto Repeat,Start Date,Startdato apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Værdi @@ -3490,6 +3612,7 @@ DocType: Google Drive,Backup Folder ID,Sikkerhedskopimappe-id apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i Udviklings-tilstand! Sat i site_config.json eller lav 'Brugerdefineret' DocType. DocType: Workflow State,globe,kloden DocType: System Settings,dd.mm.yyyy,dd.mm.åååå +DocType: Onboarding Slide Help Link,Video,video DocType: Assignment Rule,Priority,Prioritet DocType: Email Queue,Unsubscribe Param,Afmeld Param DocType: DocType,Hide Sidebar and Menu,Skjul sidebjælke og menu @@ -3501,6 +3624,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Tillad Import (via Dataimpo apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sideindstillinger +DocType: Notification Settings,Notification Settings,Underretningsindstillinger apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Gemmer ... apps/frappe/frappe/www/update-password.html,Invalid Password,Forkert adgangskode apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importeret {0} post ud af {1} succesfuldt. @@ -3516,6 +3640,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Brevhovedbillede DocType: Address,Party GSTIN,Selskabs-momsnummer +DocType: Scheduled Job Type,Cron Format,Cron-format apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Rapport DocType: SMS Settings,Use POST,Brug POST DocType: Communication,SMS,SMS @@ -3560,18 +3685,20 @@ DocType: Workflow,Allow approval for creator of the document,Tillad godkendelse apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Gem rapport DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Serverhandling apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator adgang {0} på {1} via IP-adresse {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Forældrefelt skal være et gyldigt feltnavn apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Fejlede under ændring af abonnement DocType: LDAP Settings,LDAP Group Field,LDAP-gruppefelt +DocType: Notification Subscribed Document,Notification Subscribed Document,Undertegnet abonneret dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Lig apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Ugyldigt CSV-format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fejl ved forbindelse til QZ Tray Application ...

Du skal have QZ Tray-applikation installeret og kørt for at bruge Raw Print-funktionen.

Klik her for at downloade og installere QZ Tray .
Klik her for at lære mere om Raw Printing ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Angiv antal sikkerhedskopier DocType: DocField,Do not allow user to change after set the first time,Tillad ikke brugeren at ændre sig efter indstille den første gang apps/frappe/frappe/utils/data.py,1 year ago,1 år siden +DocType: DocType,Links Section,Afsnit om links apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Se log over alle udskrivnings-, download- og eksportbegivenheder" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 måned DocType: Contact,Contact,Kontakt @@ -3598,16 +3725,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Ny e-mail DocType: Custom DocPerm,Export,Udlæs apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",For at bruge Google Kalender skal du aktivere {0}. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Tilføjelse af statusafhængighedsfeltet {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Opdateret {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-bakke mislykkedes: DocType: Dropbox Settings,Dropbox Settings,Dropbox Indstillinger DocType: About Us Settings,More content for the bottom of the page.,Mere indhold til bunden af siden. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Dette dokument er vendt tilbage apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive-sikkerhedskopi er vellykket. +DocType: Webhook,Naming Series,Navngivningsnummerserie DocType: Workflow,DocType on which this Workflow is applicable.,DocType for denne Workflow er gældende. DocType: User,Enabled,Aktiv apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Kunne ikke fuldføre opsætningen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Ny {0}: {1} -DocType: Tag Category,Category Name,Kategori Navn +DocType: Blog Category,Category Name,Kategori Navn apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Forældre er påkrævet for at få data om børnetabeller apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Abonnenter DocType: Print Settings,PDF Settings,PDF-indstillinger @@ -3643,6 +3773,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalender apps/frappe/frappe/client.py,No document found for given filters,Intet dokument fundet for givne filtre apps/frappe/frappe/config/website.py,A user who posts blogs.,"En bruger, der poster blogs." +DocType: DocType Action,DocType Action,DocType-handling apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","En anden {0} med navnet {1} eksisterer, skal du vælge et andet navn" DocType: DocType,Custom?,Brugerdefineret? DocType: Website Settings,Website Theme Image,Website Tema Billede @@ -3652,6 +3783,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Kunne ikk apps/frappe/frappe/config/integrations.py,Backup,Sikkerhedskopi apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Dokumenttype er påkrævet for at oprette et kontrolpanel DocType: DocField,Read Only,Skrivebeskyttet +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Kunne ikke oprette razorpay-ordre apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nyt nyhedsbrev DocType: Energy Point Log,Energy Point Log,Energipunktlog DocType: Print Settings,Send Print as PDF,Send udskrift som PDF @@ -3677,16 +3809,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bek apps/frappe/frappe/www/login.html,Or login with,Eller login med DocType: Error Snapshot,Locals,Lokale apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommunikeres via {0} på {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} omtalte dig i en kommentar i {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Vælg gruppe efter ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} er påkrævet DocType: Integration Request,Integration Type,Integration Type DocType: Newsletter,Send Attachements,Send vedhæftede filer +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Der blev ikke fundet nogen filtre apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakter Integration. DocType: Transaction Log,Transaction Log,Transaktionslog apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistikker baseret på sidste måneds ydelse (fra {0} til {1}) DocType: Contact Us Settings,City,By +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Skjul kort for alle brugere apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktivér Tillad automatisk gentagelse for doktype {0} i Tilpas form DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Se dokument @@ -3697,6 +3830,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Hvis det er aktiveret, spores ændringer til dokumentet og vises på tidslinjen" apps/frappe/frappe/core/doctype/doctype/doctype.py,'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} DocType: Energy Point Log,Appreciation,Påskønnelse +DocType: Dashboard Chart,Number of Groups,Antal grupper apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Se liste DocType: Workflow,Don't Override Status,Må ikke Tilsidesæt status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Søgeord @@ -3738,7 +3872,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-nordvest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Begræns antal DB-sikkerhedskopier DocType: Custom DocPerm,Level,Niveau -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Sidste 30 dage DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Antal skal være større end 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Tilsluttet QZ-bakke! @@ -3755,6 +3888,7 @@ DocType: S3 Backup Settings,us-west-2,os-vest-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Vælg Børnebord apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primær handling apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Ændring +DocType: Social Login Key,User ID Property,Bruger-ID-ejendom DocType: Email Domain,domain name,domænenavn DocType: Contact Email,Contact Email,Kontakt e-mail DocType: Kanban Board Column,Order,Bestille @@ -3777,7 +3911,7 @@ DocType: Contact,Last Name,Efternavn DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Venstre DocType: Event,All Day,Hele dagen apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Ligner noget galt med dette websted betalingsgateway konfiguration. Ingen betaling har fundet sted. DocType: GCalendar Settings,State,Anvendes ikke @@ -3809,7 +3943,6 @@ DocType: Workflow State,User,Bruger DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Vis titel i browservinduet som "Præfiks - overskrift" DocType: Payment Gateway,Gateway Settings,Gateway Indstillinger apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,tekst i dokumenttype -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Kør test apps/frappe/frappe/handler.py,Logged Out,Logget ud apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mere... DocType: System Settings,User can login using Email id or Mobile number,Bruger kan logge ind med e-mail-id eller mobilnummer @@ -3825,6 +3958,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resumé DocType: Event,Event Participants,Eventdeltagere DocType: Auto Repeat,Frequency,Frekvens +DocType: Onboarding Slide,Slide Order,Slide Order DocType: Custom Field,Insert After,Indsæt Efter DocType: Event,Sync with Google Calendar,Synkroniser med Google Kalender DocType: Access Log,Report Name,Rapport Navn @@ -3852,6 +3986,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0} apps/frappe/frappe/config/website.py,Content web page.,Hjemmeside-indhold. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Tilføj en ny rolle +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besøg websiden +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ny opgave DocType: Google Contacts,Last Sync On,Sidste synkronisering DocType: Deleted Document,Deleted Document,slettet dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! noget gik galt @@ -3862,7 +3998,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskab apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client side script udvidelser i Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Records for følgende doktypes vil blive filtreret -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planlægning inaktiv +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planlægning inaktiv DocType: Blog Settings,Blog Introduction,Blog Introduktion DocType: Global Search Settings,Search Priorities,Søgeprioriteter DocType: Address,Office,Kontor @@ -3872,12 +4008,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Link til betjeningspanel DocType: User,Email Settings,E-mail-indstillinger apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Drop Here DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Hvis det er aktiveret, kan brugeren logge ind fra en hvilken som helst IP-adresse ved hjælp af tofaktoraut, dette kan også indstilles for alle brugere i Systemindstillinger" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Printerindstillinger ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Indtast venligst din adgangskode for at fortsætte apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mig apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ikke en gyldig stat apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Anvend alle dokumenttyper -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunktopdatering +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energipunktopdatering +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Kør kun job dagligt, hvis inaktiv i (dage)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Værelses type DocType: Data Import Beta,Import Log Preview,Eksempel på importlog @@ -3886,6 +4022,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-cirkel DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP-brugeroprettelse og kortlægning apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Dagens begivenheder apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Undskyld! Bruger skal have fuld adgang til deres egen rekord. ,Usage Info,Brugerstatistik apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Vis tastaturgenveje @@ -3902,6 +4039,7 @@ DocType: DocField,Unique,Unik apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} værdsat den {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delvis succes DocType: Email Account,Service,Service +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opsætning> Bruger DocType: File,File Name,Filnavn apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Fandt du ikke {0} for {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3915,6 +4053,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Komplet DocType: GCalendar Settings,Enable,Aktiver DocType: Google Maps Settings,Home Address,Hjemmeadresse apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan kun uploade op til 5000 poster på én gang. (Kan være mindre i nogle tilfælde) +DocType: Report,"output in the form of `data = [columns, result]`","output i form af `data = [kolonner, resultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Gældende dokumenttyper apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Opsæt regler for brugeropgaver. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Utilstrækkelig tilladelse til {0} @@ -3930,7 +4069,6 @@ DocType: Communication,To and CC,Til og CC DocType: SMS Settings,Static Parameters,Statiske parametre DocType: Chat Message,Room,Værelse apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},opdateret til {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Baggrundsjob kører ikke. Kontakt administrator DocType: Portal Settings,Custom Menu Items,Tilpassede menupunkter apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Alle billeder, der er knyttet til Website Slideshow, skal være offentlige" DocType: Workflow State,chevron-right,chevron-ret @@ -3945,11 +4083,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valgte værdier DocType: DocType,Allow Auto Repeat,Tillad automatisk gentagelse apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ingen værdier at vise +DocType: DocType,URL for documentation or help,URL til dokumentation eller hjælp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-mail-skabelon apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} posten er vellykket. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Bruger {0} har ikke adgang til doktype via rolletilladelse til dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Både brugernavn og adgangskode kræves +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Lade\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Venligst Opdater for at få den nyeste dokument. DocType: User,Security Settings,Sikkerhedsindstillinger apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Tilføj kolonne @@ -3959,6 +4099,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Find vedhæftet {0}: {1} DocType: Web Page,Set Meta Tags,Indstil metatags +DocType: Email Account,Use SSL for Outgoing,Brug SSL til udgående 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: S3 Backup Settings,Backup Limit,Backup Limit DocType: Dashboard Chart,Line,linje @@ -3991,4 +4132,3 @@ DocType: DocField,Ignore User Permissions,Ignorér brugertilladelser apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Gemt med succes apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Spørg din administrator for at bekræfte din tilmelding DocType: Domain Settings,Active Domains,Aktive domæner -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Vis Log diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv index fcd963ab33..a2e591cdaa 100644 --- a/frappe/translations/de.csv +++ b/frappe/translations/de.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Bitte wählen Sie ein Feld Betrag. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Importdatei wird geladen ... DocType: Assignment Rule,Last User,Letzter Benutzer -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",Eine neue Aufgabe {0} wurde Ihnen von {1} zugewiesen. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sitzungsstandards gespeichert apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Datei neu laden DocType: Email Queue,Email Queue records.,E-Mail-Queue Aufzeichnungen. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Baumstruktur DocType: User,User Emails,Benutzer E-Mails DocType: User,Username,Benutzername apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip importieren +DocType: Scheduled Job Type,Create Log,Protokoll erstellen apps/frappe/frappe/model/base_document.py,Value too big,Wert zu groß DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Skript-Test ausführen @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Monatlich DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Eingehend aktivieren apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Gefahr -DocType: Address,Email Address,E-Mail-Addresse +apps/frappe/frappe/www/login.py,Email Address,E-Mail-Addresse DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Ungelesene Benachrichtigung gesendet apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export nicht erlaubt. Rolle {0} wird gebraucht zum exportieren. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Abbr DocType: DocType,Is Published Field,Ist Veröffentlicht Feld DocType: GCalendar Settings,GCalendar Settings,GCalender Einstellungen DocType: Email Group,Email Group,E-Mail-Gruppe +apps/frappe/frappe/__init__.py,Only for {},Nur für {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - Ereignis {0} konnte nicht aus Google Kalender gelöscht werden, Fehlercode {1}." DocType: Event,Pulled from Google Calendar,Aus Google Kalender gezogen DocType: Note,Seen By,gelesen von apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Mehrere hinzufügen -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Sie haben einige Energiepunkte gewonnen apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Kein gültiges Benutzerbild. DocType: Energy Point Log,Reverted,Zurückgesetzt DocType: Success Action,First Success Message,Erste Erfolgsmeldung @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nicht wie apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Falscher Wert: {0} muss {1} {2} sein apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Feldeigenschaften ändern (verstecken, nur-lesen, Berechtigung etc.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Schätzen +DocType: Notification Settings,Document Share,Dokumentenfreigabe DocType: Workflow State,lock,sperren apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Einstellungen Kontakt apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator hat sich angemeldet @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Wenn diese Option aktiviert ist, wird das Dokument beim ersten Öffnen durch einen Benutzer als gesehen markiert" DocType: Auto Repeat,Repeat on Day,Wiederholen am Tag DocType: DocField,Color,Farbe +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Markiere alle als gelesen DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,Einzug rechts DocType: Has Role,Has Role,hat Rolle @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback anzeigen DocType: DocType,Default Print Format,Standarddruckformat DocType: Workflow State,Tags,Schlagworte +DocType: Onboarding Slide,Slide Type,Folientyp apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Kein: Ende des Workflows apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumententypen @@ -135,7 +138,6 @@ DocType: Language,Guest,Gast DocType: DocType,Title Field,Bezeichnungs-Feld DocType: Error Log,Error Log,Fehlerprotokoll apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,ungültige URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Letzten 7 Tage apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Wiederholt wie "abcabcabc" sind nur etwas schwieriger zu erraten als "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Gibt es die Vermutung, dass der Vorgang nicht genehmigt ist, bitte das Administratorpasswort ändern." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Kunde apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Wählen Sie Spalte apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Dieses Formular wurde geändert, nachdem Sie es geladen haben" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Benachrichtigungsprotokoll 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Öffnen Sie die Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Es scheint, dass ein Problem mit der Stripe-Konfiguration des Servers vorliegt. Im Falle eines Fehlers wird der Betrag Ihrem Konto gutgeschrieben." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Di apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Absenden DocType: Workflow Action Master,Workflow Action Name,Workflow-Aktionsname apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kann nicht zusammengeführt werden -DocType: Web Form Field,Fieldtype,Feldtyp +DocType: Onboarding Slide Field,Fieldtype,Feldtyp apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Keine Zip-Datei DocType: Global Search DocType,Global Search DocType,Globale Suche DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -177,7 +180,9 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,"D please verify context!" apps/frappe/frappe/desk/form/save.py,Did not cancel,Wurde nicht storniert DocType: Social Login Key,Client Information,Kundeninformation +DocType: Energy Point Rule,Apply this rule only once per document,Wenden Sie diese Regel nur einmal pro Dokument an DocType: Workflow State,plus,Plus +DocType: DocField,Read Only Depends On,Nur lesen hängt von ab apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Angemeldet als Gast oder Administrator DocType: Email Account,UNSEEN,UNGESEHEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Dateimanager @@ -201,9 +206,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Grund 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Keine Aktivität +DocType: Server Script,Script Manager,Skript-Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Keine Aktivität apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Drittanbieter-Apps apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Keine Ereignisse heute apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Sie können sich keine Bewertungspunkte geben apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType muss für das ausgewählte Doc-Ereignis übermittelt werden DocType: Workflow State,circle-arrow-up,Kreis-Pfeil-nach-oben @@ -235,6 +242,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nicht zulässig für {0}: {1}. Eingeschränktes Feld: {2} 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,You are not allowed to delete a standard Website Theme,"Sie sind nicht berechtigt, eine Standard-Webseiten-Vorlage zu löschen" +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Erstelle deine erste {0} DocType: Data Import,Log Details,Protokolldetails DocType: Workflow Transition,Example,Beispiel DocType: Webhook Header,Webhook Header,Webhook Header @@ -249,8 +257,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat-Hintergrund apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Als gelesen markieren apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aktualisieren von {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Es ist bereits eine Onboarding-Folie {0} mit derselben Folienreihenfolge vorhanden apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Bericht deaktivieren DocType: Translation,Contributed Translation Doctype Name,Beigetragener Doctype-Name der Übersetzung +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen DocType: PayPal Settings,Redirect To,Umleiten an DocType: Data Migration Mapping,Pull,ziehen DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript- Format: frappe.query_reports [' REPORT '] = {} @@ -265,6 +275,7 @@ DocType: DocShare,Internal record of document shares,Interne Aufzeichnung von fr DocType: Energy Point Settings,Review Levels,Ebenen überprüfen DocType: Workflow State,Comment,Kommentar DocType: Data Migration Plan,Postprocess Method,Methode des Folgeprozess +DocType: DocType Action,Action Type,Aktionstyp apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Foto machen DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Sie können bereits übertragene Unterlagen verändern, indem Sie diese stornieren und dann abändern." @@ -278,6 +289,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Speichern als DocType: Comment,Seen,gelesen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Weiteres +DocType: Server Script,Before Submit,Vor dem Absenden 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,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,Archive,archivieren @@ -290,10 +302,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox-Zugangsschlüssel apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Falscher Feldname {0} in der add_fetch-Konfiguration des benutzerdefinierten Skripts apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Wählen Sie Google-Kontakte aus, mit denen der Kontakt synchronisiert werden soll." DocType: Web Page,Main Section (HTML),Hauptteil (HTML) +DocType: Scheduled Job Type,Annual,Jährlich DocType: Workflow State,headphones,Kopfhörer apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,"Das Passwort ist erforderlich, oder wählen Sie Warten Passwort" DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,z. B. replies@yourcomany.com. Alle Antworten werden in dieses Postfach gelegt. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Legt die Reihenfolge der Folie im Assistenten fest. Wenn die Folie nicht angezeigt werden soll, sollte die Priorität auf 0 gesetzt werden." DocType: Data Migration Run,Current Mapping,Aktuelle Zuordnung apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Gültige E-Mail-Adresse und Name erforderlich apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Machen Sie alle Anhänge privat @@ -316,6 +330,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Übergangsbestimmungen apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Es werden nur die ersten {0} Zeilen in der Vorschau angezeigt apps/frappe/frappe/core/doctype/report/report.js,Example:,Beispiel: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Beschränkungen DocType: Workflow,Defines workflow states and rules for a document.,Definiert Workflow-Zustände und Regeln für ein Dokument. DocType: Workflow State,Filter,Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Überprüfen Sie das Fehlerprotokoll auf weitere Informationen: {0} @@ -327,6 +342,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} abgemeldet: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Information apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kann nicht als ""als übertragen markieren"" eingestellt werden, wenn nicht übertragbar" DocType: Transaction Log,Row Index,Zeilenindex DocType: Social Login Key,Facebook,Facebook @@ -345,7 +361,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Hilfetaste DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Teammitglieder +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Führt geplante Jobs für inaktive Sites nur einmal täglich aus. Standard 4 Tage, wenn auf 0 gesetzt." DocType: Assignment Rule,System Manager,System-Manager +DocType: Scheduled Job Log,Scheduled Job,Geplanter Job DocType: Custom DocPerm,Permissions,Berechtigungen apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks für die interne Integration DocType: Dropbox Settings,Allow Dropbox Access,Dropbox-Zugang zulassen @@ -399,6 +417,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Barco DocType: Email Flag Queue,Email Flag Queue,E-Mail-Flag-Warteschlange DocType: Access Log,Columns / Fields,Spalten / Felder apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets für Druckformate +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,"Das Feld Aggregatfunktion ist erforderlich, um ein Dashboard-Diagramm zu erstellen" apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Kann öffne {0} nicht identifizieren. Versuchen Sie etwas anderes. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ihre Information wurde eingereicht apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Benutzer {0} kann nicht gelöscht werden @@ -414,11 +433,12 @@ DocType: Property Setter,Field Name,Feldname DocType: Assignment Rule,Assign To Users,Benutzern zuweisen apps/frappe/frappe/public/js/frappe/utils/utils.js,or,oder apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Modulname ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Fortsetzen +DocType: Onboarding Slide,Continue,Fortsetzen apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration ist deaktiviert. DocType: Custom Field,Fieldname,Feldname DocType: Workflow State,certificate,Zertifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Überprüfen ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Ihre Zuordnung für {0} {1} wurde entfernt apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Erste Datenspalte muss leer sein. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Alle Versionen apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Kommentar anzeigen @@ -428,12 +448,14 @@ DocType: User,Restrict IP,IP beschränken apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Instrumententafel apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,E-Mails können zur Zeit nicht versendet werden apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - Ereignis {0} in Google Kalender konnte nicht aktualisiert werden, Fehlercode {1}." +DocType: Notification Log,Email Content,E-Mail-Inhalt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Suchen oder Befehl eingeben DocType: Activity Log,Timeline Name,Timeline-Name apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Es kann nur eine {0} als primäre festgelegt werden. DocType: Email Account,e.g. smtp.gmail.com,z. B. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Neue Regel hinzufügen DocType: Contact,Sales Master Manager,Hauptvertriebsleiter +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Sie müssen JavaScript aktivieren, damit Ihre App funktioniert." DocType: User Permission,For Value,Für Wert DocType: Event,Google Calendar ID,Google Kalender-ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Ein letzter Schritt @@ -448,6 +470,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP Middle Name-Feld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} von {1} wird importiert DocType: GCalendar Account,Allow GCalendar Access,Erlaube GCalendar-Zugriff apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ist ein Pflichtfeld +DocType: DocType,Documentation Link,Dokumentationslink apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login-Token erforderlich apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Monatsrang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Wählen Sie mehrere Listenelemente aus @@ -469,6 +492,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Datei-URL DocType: Version,Table HTML,HTML-Tabelle apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Abonnenten hinzufügen +DocType: Notification Log,Energy Point,Energiepunkt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Bevorstehenden Veranstaltungen für heute DocType: Google Calendar,Push to Google Calendar,Push to Google Kalender DocType: Notification Recipient,Email By Document Field,E-Mail nach Dokumentenfeld @@ -484,12 +508,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Weg DocType: Currency,Fraction Units,Teileinheiten apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} von {1} bis {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Als erledigt markieren DocType: Chat Message,Type,Typ DocType: Google Settings,OAuth Client ID,OAuth-Client-ID DocType: Auto Repeat,Subject,Betreff apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Zurück zum Schreibtisch DocType: Web Form,Amount Based On Field,"Menge, bezogen auf Feld" +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,Für {0} wurden keine Versionen verfolgt. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -512,6 +536,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt. apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein DocType: Communication,Bounced,Gesprungen +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,von DocType: Deleted Document,Deleted Name,Gelöschte Namen apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,System- und Webseitenbenutzer DocType: Workflow Document State,Doc Status,Dokumentenstatus @@ -522,6 +547,7 @@ DocType: Language,Language Code,Sprachcode DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Hinweis: Standardmäßig werden E-Mails für fehlgeschlagene Backups gesendet. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Filter hinzufügen apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS an folgende Nummern verschickt: {0} +DocType: Notification Settings,Assignments,Zuordnungen apps/frappe/frappe/utils/data.py,{0} and {1},{0} und {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Eine Konversation beginnen. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Entwürfe beim Drucken in der Kopfzeile kennzeichnen @@ -530,6 +556,7 @@ DocType: Data Migration Run,Current Mapping Start,Aktueller Mapping-Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-Mail wurde als Spam markiert DocType: Comment,Website Manager,Webseiten-Administrator apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Datei hochladen getrennt. Bitte versuche es erneut. +DocType: Data Import Beta,Show Failed Logs,Fehlgeschlagene Protokolle anzeigen apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Übersetzungen apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Sie haben Entwürfe oder abgebrochene Dokumente ausgewählt apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Das Dokument {0} wurde mit {2} auf den Status {1} festgelegt. @@ -537,7 +564,9 @@ apps/frappe/frappe/model/document.py,Document Queued,anstehendes Dokument DocType: GSuite Templates,Destination ID,Ziel-ID DocType: Desktop Icon,List,Listenansicht DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Sie haben \ DocType: System Settings,mm/dd/yyyy,MM/TT/JJJJ +DocType: Onboarding Slide,Onboarding Slide,Onboarding-Folie apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ungültiges Passwort: DocType: Print Settings,Send document web view link in email,Link zur Dokumenten Web-Ansicht in E-Mail senden. apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Vorhergehende @@ -598,6 +627,7 @@ DocType: Kanban Board Column,darkgrey,dunkelgrau apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Erfolgreich: {0} um {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Fallen +DocType: Dashboard Chart,Aggregate Function Based On,Aggregatfunktion basierend auf apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Bitte kopieren um Änderungen vorzunehmen apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Drücken Sie zum Speichern die Eingabetaste apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF-Generierung ist aufgrund fehlerhafter Verknüpfungen für Bilddateien fehlgeschlagen @@ -611,7 +641,9 @@ DocType: Notification,Days Before,Tage vor apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Tägliche Ereignisse sollten am selben Tag enden. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Bearbeiten... DocType: Workflow State,volume-down,Lautstärke verringern +DocType: Onboarding Slide,Help Links,Hilfe-Links apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Der Zugriff von dieser IP-Adresse aus ist nicht zulässig +DocType: Notification Settings,Enable Email Notifications,E-Mail-Benachrichtigungen aktivieren apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Benachrichtigung senden an DocType: DocField,Collapsible,Faltbar @@ -640,6 +672,7 @@ DocType: Google Drive,Last Backup On,Letzte Sicherung ein DocType: Customize Form Field,Customize Form Field,Formularfeld anpassen DocType: Energy Point Rule,For Document Event,Für Dokumentereignis DocType: Website Settings,Chat Room Name,Chat-Raumname +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Unverändert DocType: OAuth Client,Grant Type,Grant Typ apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Prüfen, welche Dokumente von einem Nutzer lesbar sind" DocType: Deleted Document,Hub Sync ID,Hub-Synchronisierungs-ID @@ -647,6 +680,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,% al DocType: Auto Repeat,Quarterly,Quartalsweise apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",E-Mail-Domain existiert für diesen Account noch nicht. Jetzt erstellen? DocType: User,Reset Password Key,Passwortschlüssel zurücksetzen +DocType: Dashboard Chart,All Time,Aller Zeiten apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Illegaler Dokumentstatus für {0} DocType: Email Account,Enable Auto Reply,Automatische Rückantwort aktivieren apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ungelesen @@ -659,6 +693,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Nachr DocType: Email Account,Notify if unreplied,"Benachrichtigen, wenn unbeantwortet" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Scannen Sie den QR-Code und geben Sie den dargestellten Code ein. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Farbverläufe aktivieren +DocType: Scheduled Job Type,Hourly Long,Stündlich lang DocType: System Settings,Minimum Password Score,Mindest-Passwort-Score DocType: DocType,Fields,Felder DocType: System Settings,Your organization name and address for the email footer.,Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail. @@ -666,11 +701,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Übergeordn apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3-Sicherung abgeschlossen! apps/frappe/frappe/config/desktop.py,Developer,Entwickler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Erstellt +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Befolgen Sie zum Aktivieren die Anweisungen unter folgendem Link: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Für die folgenden Tabellen sollte mindestens eine Zeile vorhanden sein: {0} DocType: Print Format,Default Print Language,Standarddrucksprache apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Vorfahren von apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kann nicht gelöscht werden +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Keine fehlgeschlagenen Protokolle apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Noch keine Kommentare apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode über SMS-Einstellungen festlegen" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,DocType und Name sind beide erforderlich @@ -694,6 +731,7 @@ DocType: Website Settings,Footer Items,Fußzeilen-Objekte apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menü DocType: DefaultValue,DefaultValue,Standardwert DocType: Auto Repeat,Daily,Täglich +DocType: Onboarding Slide,Max Count,Max Count apps/frappe/frappe/config/users_and_permissions.py,User Roles,Benutzerrollen DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Einstellprogramm für Eigenschaften überschreibt einen Standard-DocType oder eine Feldeigenschaft apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Aktualisierung nicht möglich : Falsche / ausgelaufene Verknüpfung. @@ -712,6 +750,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Gastgeber DocType: Data Import Beta,Import File,Datei importieren +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Vorlagenfehler apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Spalte {0} bereits vorhanden sind . DocType: ToDo,High,Hoch apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Neues Event @@ -727,6 +766,7 @@ DocType: Web Form Field,Show in filter,Im Filter anzeigen DocType: Address,Daman and Diu,Daman und Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Persönlich +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Raw-Druckeinstellungen ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Weitere Informationen finden Sie unter https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Werkzeug zum Massen-Umbenennen DocType: Email Queue,Show as cc,Stellen Sie als cc @@ -736,6 +776,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Video aufnehmen DocType: Contact Us Settings,Introductory information for the Contact Us Page,Einleitende Informationen für die Kontaktseite DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,Bild-nach-unten +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Dokumente stornieren DocType: User,Send Notifications for Email threads,Benachrichtigungen für E-Mail-Threads senden apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nicht im Entwicklungsmodus @@ -743,7 +784,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Dateisicher DocType: DocField,In Global Search,In globaler Suche DocType: System Settings,Brute Force Security,Brute-Force-Sicherheit DocType: Workflow State,indent-left,Einzug links -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,Vor> {0} Jahr (en) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Es ist riskant, diese Datei zu löschen: {0}. Bitte kontaktieren Sie Ihren System-Manager." DocType: Currency,Currency Name,Währungsbezeichnung apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Keine E-Mails @@ -758,10 +798,12 @@ DocType: Energy Point Rule,User Field,Benutzerfeld DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Drücken Sie Löschen apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} bereits abgemeldet für {1} {2} +DocType: Scheduled Job Type,Stopped,Angehalten apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Wurde nicht entfernt apps/frappe/frappe/desk/like.py,Liked,Geliked apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Jetzt senden apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kann kein Standard-Druckformat haben, verwenden Sie Formular anpassen" +DocType: Server Script,Allow Guest,Gast zulassen DocType: Report,Query,Abfrage DocType: Customize Form,Sort Order,Sortierung apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" @@ -783,10 +825,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Zwei Faktor-Authentifizierungsmethode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Legen Sie zuerst den Namen fest und speichern Sie den Datensatz. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Datensätze +DocType: DocType Link,Link Fieldname,Feldname verknüpfen apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Freigegeben für {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Abmelden DocType: View Log,Reference Name,Referenzname apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Benutzer wechseln +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Zuerst apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Übersetzungen aktualisieren DocType: Error Snapshot,Exception,Ausnahme DocType: Email Account,Use IMAP,IMAP verwenden @@ -800,6 +844,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Regeln, die den Übergang des Zustands im Workflow definieren." DocType: File,Folder,Ordner DocType: Website Route Meta,Website Route Meta,Website Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding-Folienfeld DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter-Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Option 1 @@ -826,7 +871,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ser apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diagramme konfigurieren DocType: User,Last IP,Letzte IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Bitte füge einen Betreff zu deiner E-Mail hinzu -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Ein neues Dokument {0} wurde von Ihnen mit {1} geteilt. DocType: Data Migration Connector,Data Migration Connector,Datenmigrations-Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} zurückgesetzt {1} DocType: Email Account,Track Email Status,E-Mail-Status verfolgen @@ -878,6 +922,7 @@ DocType: Email Account,Default Outgoing,Standard-Ausgang DocType: Workflow State,play,spielen apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Auf den Link unten klicken, um die Registrierung abzuschließen und ein neues Passwort zu setzen" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Wurde nicht hinzugefügt +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} erhielt {1} Punkte für {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Keine E-Mail-Konten zugewiesen DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Einstellungen zu „Kontaktieren Sie uns“ @@ -885,6 +930,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Suchen .. DocType: Workflow State,text-width,Textbreite apps/frappe/frappe/public/js/frappe/form/form.js,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/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Suche nach Dateiname oder Erweiterung +DocType: Onboarding Slide,Slide Title,Folientitel DocType: Notification,View Properties (via Customize Form),Eigenschaften anzeigen (über benutzerdefiniertes Formular) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Klicken Sie auf eine Datei, um sie auszuwählen." DocType: Note Seen By,Note Seen By,Hinweis gelesen durch @@ -911,13 +957,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL teilen DocType: System Settings,Allow Consecutive Login Attempts ,Erlaube aufeinanderfolgende Login-Versuche apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Während des Bezahlvorgangs ist ein Fehler aufgetreten. Bitte kontaktieren Sie uns. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Wenn der Folientyp "Erstellen" oder "Einstellungen" ist, sollte die Methode "create_onboarding_docs" in der Datei "{ref_doctype} .py" enthalten sein, die nach Abschluss der Folie ausgeführt werden soll." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,vor {0} Tag(en) DocType: Email Account,Awaiting Password,Warte auf Passwort DocType: Address,Address Line 1,Adresse Zeile 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nicht Nachkommen von DocType: Contact,Company Name,Firma DocType: Custom DocPerm,Role,Rolle -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Einstellungen ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,zu Ihrem Browser apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Recorder @@ -977,6 +1023,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Verfolgen Sie, ob Ihre E-Mail vom Empfänger geöffnet wurde.
Hinweis: Wenn Sie an mehrere Empfänger senden, auch wenn 1 Empfänger die E-Mail liest, wird sie als "Geöffnet" betrachtet." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Angaben zu fehlenden Werten erforderlich apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Zugriff auf Google-Kontakte zulassen +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Beschränkt DocType: Data Migration Connector,Frappe,Frappé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Als ungelesen markieren DocType: Activity Log,Operation,Arbeitsgang @@ -1029,6 +1076,7 @@ DocType: Web Form,Allow Print,Drucken erlauben DocType: Communication,Clicked,Angeklickt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nicht mehr folgen apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Bitte richten Sie das Standard-E-Mail-Konto über Setup> E-Mail> E-Mail-Konto ein apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,in Sendewarteschlange DocType: DocType,Track Seen,Track gesehen DocType: Dropbox Settings,File Backup,Dateisicherung @@ -1037,12 +1085,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Kein(e) {0} g apps/frappe/frappe/config/customization.py,Add custom forms.,Benutzerdefinierte Formulare hinzufügen apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} in {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,Dieses Dokument eingereicht -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Benutzerberechtigungen apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Das System bietet viele vordefinierte Rollen. Es können neue Rollen hinzugefügt werden, um feinere Berechtigungen festzulegen." DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Name des Auslösers -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domainen +DocType: Onboarding Slide,Domains,Domainen DocType: Blog Category,Blog Category,Blog-Kategorie apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Kann nicht zugeordnet werden, da folgende Bedingung nicht erfüllt ist:" DocType: Role Permission for Page and Report,Roles HTML,Rollen-HTML @@ -1082,7 +1129,6 @@ DocType: Assignment Rule Day,Saturday,Samstag DocType: User,Represents a User in the system.,Repräsentiert einen Nutzer im System DocType: List View Setting,Disable Auto Refresh,Deaktivieren Sie die automatische Aktualisierung DocType: Comment,Label,Bezeichnung -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde geschlossen." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Bitte schließen Sie dieses Fenster DocType: Print Format,Print Format Type,Druckformattyp DocType: Newsletter,A Lead with this Email Address should exist,Ein Lead mit dieser E-Mail-Adresse sollte vorhanden sein @@ -1099,6 +1145,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP-Einstellungen für apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,wähle ein DocType: Data Export,Filter List,Liste filtern DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Automatische Rückantwort DocType: Data Migration Mapping,Condition,Zustand apps/frappe/frappe/utils/data.py,{0} hours ago,vor {0} Stunden @@ -1117,12 +1164,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Wissensdatenbank Mitwirker/-in DocType: Communication,Sent Read Receipt,Sent Lesebestätigung DocType: Email Queue,Unsubscribe Method,Abmeldemethode +DocType: Onboarding Slide,Add More Button,Schaltfläche "Weitere hinzufügen" DocType: GSuite Templates,Related DocType,Ähnliche DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Bearbeiten um Inhalte hinzuzufügen apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Sprachenauswahl apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kartendetails apps/frappe/frappe/__init__.py,No permission for {0},Keine Berechtigung für {0} DocType: DocType,Advanced,Fortgeschritten +DocType: Onboarding Slide,Slide Image Source,Bildquelle schieben apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referenz: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Fräulein @@ -1139,6 +1188,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Vorlage DocType: DocType,User Cannot Create,Kann nicht von einem Benutzer erstellt werden apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Erfolgreich gemacht apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox Zugriff genehmigt! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Möchten Sie {0} wirklich mit {1} zusammenführen? DocType: Customize Form,Enter Form Type,Formulartyp eingeben DocType: Google Drive,Authorize Google Drive Access,Autorisieren Sie Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Fehlender Parameter Kanban Board Name @@ -1148,7 +1198,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType zulassen. Achtung!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Benutzerdefinierte Formate für Druck, E-Mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summe von {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Aktualisiert auf neue Version DocType: Custom Field,Depends On,Hängt ab von DocType: Kanban Board Column,Green,Grün DocType: Custom DocPerm,Additional Permissions,Zusätzliche Berechtigungen @@ -1176,6 +1225,7 @@ DocType: Energy Point Log,Social,Sozial apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Kalender - Kalender für {0}, Fehlercode {1} konnte nicht erstellt werden." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Zeile bearbeiten DocType: Workflow Action Master,Workflow Action Master,Stammdaten zu Workflow-Aktionen +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Alles löschen DocType: Custom Field,Field Type,Feldtyp apps/frappe/frappe/utils/data.py,only.,nur. DocType: Route History,Route History,Verlauf der Route @@ -1211,11 +1261,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Passwort vergessen? DocType: System Settings,yyyy-mm-dd,JJJJ-MM-TT apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverfehler +DocType: Server Script,After Delete,Nach dem Löschen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Alle früheren Berichte anzeigen. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Benutzer-ID wird benötigt DocType: Website Slideshow,Website Slideshow,Webseiten-Diashow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Keine Daten DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, der die Startseite der Website darstellt. Standard-Links sind: index, login, products, blog, about, contact" +DocType: Server Script,After Submit,Nach dem Absenden apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Authentifizierung fehlgeschlagen, während E-Mails vom Konto {0} empfangen wurden. Nachricht vom Server: {1}" DocType: User,Banner Image,Banner-Bild DocType: Custom Field,Custom Field,Benutzerdefiniertes Feld @@ -1256,15 +1308,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Wenn der Benutzer eine Rolle geprüft hat, wird er ein ""System User"". ""System User"" haben Zugriff auf den Desktop." DocType: System Settings,Date and Number Format,Datums- und Zahlenformat apps/frappe/frappe/model/document.py,one of,eine(r/s) von -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,"Einen Moment bitte, Überprüfung läuft." apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Schlagwörter anzeigen DocType: DocField,HTML Editor,HTML-Editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Benutzer +DocType: DocType,Actions,Aktionen DocType: Workflow State,align-justify,Blocksatz DocType: User,Middle Name (Optional),Weiterer Vorname (optional) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nicht zulässig @@ -1279,6 +1329,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Keine Ergeb DocType: System Settings,Security,Sicherheit apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Geplant zum Versand an {0} Empfänger apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Schnitt +DocType: Server Script,After Save,Nach dem Speichern apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},umbenannt von {0} {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} von {1} ({2} Zeilen mit untergeordneten Elementen) DocType: Currency,**Currency** Master,**Währungs**-Stammdaten @@ -1305,15 +1356,18 @@ DocType: Prepared Report,Filter Values,Werte filtern DocType: Communication,User Tags,Schlagworte zum Benutzer DocType: Data Migration Run,Fail,Fehlschlagen DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Letzte Ausführung DocType: Data Migration Run,Pull Failed,Pull fehlgeschlagen apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Karten ein- / ausblenden DocType: Communication,Feedback Request,Feedback-Anfrage apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importieren Sie Daten aus CSV / Excel-Dateien. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Die folgenden Felder fehlen: +DocType: Notification Log,From User,Vom Benutzer apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Abbrechen von {0} DocType: Web Page,Main Section,Hauptbereich DocType: Page,Icon,Symbol apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurieren Sie Benachrichtigungen für Erwähnungen, Zuweisungen, Energiepunkte und mehr." DocType: DocField,Allow in Quick Entry,In Schnelleingabe zulassen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,TT/MM/JJJJ @@ -1345,7 +1399,6 @@ DocType: Website Theme,Theme URL,Theme URL DocType: Customize Form,Sort Field,Sortierfeld DocType: Razorpay Settings,Razorpay Settings,Razorpay Einstellungen apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Filter bearbeiten -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Weitere hinzufügen DocType: System Settings,Session Expiry Mobile,Sitzung verfällt für mobil apps/frappe/frappe/utils/password.py,Incorrect User or Password,Falscher Benutzer oder Passwort apps/frappe/frappe/templates/includes/search_box.html,Search results for,Suchergebnisse für @@ -1361,8 +1414,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energiepunkt-Regel DocType: Communication,Delayed,Verzögert apps/frappe/frappe/config/settings.py,List of backups available for download,Datensicherungen herunterladen +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Probieren Sie den neuen Datenimport aus apps/frappe/frappe/www/login.html,Sign up,Anmeldung apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Zeile {0}: Nicht zulässig zum Deaktivieren für Standardfelder +DocType: Webhook,Enable Security,Sicherheit aktivieren apps/frappe/frappe/config/customization.py,Dashboards,Dashboards DocType: Test Runner,Output,Ausgabe DocType: Milestone,Track Field,Track Field @@ -1370,6 +1425,7 @@ DocType: Notification,Set Property After Alert,Setzen Sie die Eigenschaft nach A apps/frappe/frappe/config/customization.py,Add fields to forms.,Felder zu Formularen hinzufügen apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sieht aus wie etwas ist falsch mit dieser Website Paypal-Konfiguration. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Bewertung hinzufügen +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} hat Ihnen eine neue Aufgabe {1} {2} zugewiesen apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Schriftgröße (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden. DocType: Email Account,Sendgrid,Sendgrid @@ -1381,8 +1437,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menüpunkt apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Filter setzen DocType: Contact Us Settings,Email ID,E-Mail-ID DocType: Energy Point Rule,Multiplier Field,Multiplikatorfeld +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay-Bestellung konnte nicht erstellt werden. Bitte wenden Sie sich an den Administrator DocType: Dashboard Chart,Time Interval,Zeitintervall DocType: Activity Log,Keep track of all update feeds,Verfolgen Sie alle Update-Feeds +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} hat ein Dokument {1} {2} für Sie freigegeben 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 @@ -1401,6 +1459,7 @@ DocType: DefaultValue,Key,Schlüssel DocType: Address,Contacts,Kontakte DocType: System Settings,Setup Complete,Einrichtung abgeschlossen apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,"Bericht über alle Dokumente, die freigegeben wurden" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Die Importvorlage sollte vom Typ .csv, .xlsx oder .xls sein" apps/frappe/frappe/www/update-password.html,New Password,Neues Passwort apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} fehlt apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Entschuldigung! Sie können automatisch erstellte Kommentare nicht löschen @@ -1416,6 +1475,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Lauf DocType: Blog Post,Content (HTML),Inhalt (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Eingerichtet für DocType: Personal Data Download Request,User Name,Nutzername DocType: Workflow State,minus-sign,Minuszeichen apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nicht gefunden @@ -1423,11 +1483,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Keine {0} Berechtigung apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportieren von benutzerdefinierten Berechtigungen apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Keine Elemente gefunden. DocType: Data Export,Fields Multicheck,Felder Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Komplett DocType: Activity Log,Login,Anmelden DocType: Web Form,Payments,Zahlungen apps/frappe/frappe/www/qrcode.html,Hi {0},Hallo {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-Integration. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} hat Ihre Punkte auf {1} {2} zurückgesetzt. DocType: System Settings,Enable Scheduled Jobs,Geplante Arbeiten aktivieren apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Hinweise: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inaktiv @@ -1452,6 +1512,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-Mail apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Berechtigungsfehler apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Name von {0} kann nicht {1} sein DocType: User Permission,Applicable For,Anwenden für +DocType: Dashboard Chart,From Date,Von-Datum apps/frappe/frappe/core/doctype/version/version_view.html,Success,Erfolg apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sitzung abgelaufen DocType: Kanban Board Column,Kanban Board Column,Kanban-Tafel Spalte @@ -1463,7 +1524,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Erf apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; in Bedingung nicht erlaubt DocType: Async Task,Async Task,Asynchroner Task DocType: Workflow State,picture,Bild -apps/frappe/frappe/www/complete_signup.html,Complete,Komplett +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Komplett DocType: DocType,Image Field,Bildfeld DocType: Print Format,Custom HTML Help,Benutzerdefinierte HTML-Hilfe DocType: LDAP Settings,Default Role on Creation,Standardrolle bei der Erstellung @@ -1471,6 +1532,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Nächster Status DocType: User,Block Modules,Block-Module DocType: Print Format,Custom CSS,Benutzerdefiniertes CSS +DocType: Energy Point Rule,Apply Only Once,Nur einmal anwenden apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Einen Kommentar hinzufügen DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignoriert: {0} um {1} @@ -1482,6 +1544,7 @@ DocType: Email Account,Default Incoming,Standard-Eingang DocType: Workflow State,repeat,Wiederholen DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Wert muss einer von {0} sein +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Alle Dokumente abbrechen DocType: Role,"If disabled, this role will be removed from all users.","Falls diese Option deaktiviert ist, wird diese Rolle von allen Benutzern entfernt." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gehen Sie zur Liste {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hilfe zur Suche @@ -1490,6 +1553,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registriert apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Die automatische Wiederholung für dieses Dokument wurde deaktiviert. DocType: DocType,Hide Copy,Kopie ausblenden apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Alle Rollen löschen +DocType: Server Script,Before Save,Vor dem Speichern apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} muss einmalig sein apps/frappe/frappe/model/base_document.py,Row,Zeile apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & E-Mail-Vorlage" @@ -1500,7 +1564,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} erfolgreich importiert DocType: User,API Key,API-Schlüssel DocType: Email Account,Send unsubscribe message in email,Abmelde-Link in E-Mail-Nachrichten senden -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Titel bearbeiten apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Feldname, der der DocType für dieses Verknüpfungsfeld sein wird." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,An Sie und von Ihnen zugeordnete Dokumente apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Sie können dies auch kopieren und einfügen @@ -1532,8 +1595,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Bild anhängen DocType: Workflow State,list-alt,Liste-Alt apps/frappe/frappe/www/update-password.html,Password Updated,Passwort wurde aktualisiert +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Benutzerberechtigungen apps/frappe/frappe/www/qrcode.html,Steps to verify your login,"Schritte, um Ihre Anmeldung zu überprüfen" apps/frappe/frappe/utils/password.py,Password not found,Kennwort nicht gefunden +DocType: Webhook,Webhook Secret,Webhook-Geheimnis DocType: Data Migration Mapping,Page Length,Seitenlänge DocType: Email Queue,Expose Recipients,Expose Empfänger apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,"""Anhängen an"" ist für eingehende E-Mails zwingend" @@ -1561,6 +1626,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maximale Größe des Anhangs (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Sie haben bereits ein Konto? Anmeldung +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Druckeinstellungen ... DocType: Workflow State,arrow-down,Pfeil-nach-unten apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Zeile {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Benutzer darf {0}: {1} nicht löschen @@ -1581,6 +1647,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Passwort DocType: Dropbox Settings,Dropbox Access Secret,Dropbox-Zugangsdaten DocType: Tag Link,Document Title,Dokumenttitel apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verpflichtend) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,Vor> {0} Jahr (en) DocType: Social Login Key,Social Login Provider,Social-Login-Anbieter apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Weiteren Kommentar hinzufügen apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Keine Daten in der Datei gefunden. Bitte fügen Sie die neue Datei erneut mit Daten hinzu. @@ -1595,11 +1662,12 @@ DocType: Workflow State,hand-down,Pfeil-nach-unten apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Es wurden keine Felder gefunden, die als Kanban-Spalte verwendet werden können. Verwenden Sie das Formular anpassen, um ein benutzerdefiniertes Feld vom Typ "Auswählen" hinzuzufügen." DocType: Address,GST State,GST Staat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,"{0}: ""Abbruch"" kann nicht ohne ""Übertragen"" eingestellt werden" +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Benutzer ({0}) DocType: Website Theme,Theme,Thema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound To Auth-Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Öffnen Sie die Hilfe DocType: DocType,Is Submittable,Ist übertragbar -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Neue Erwähnung +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Neue Erwähnung apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Keine neuen Google-Kontakte synchronisiert DocType: File,Uploaded To Google Drive,Auf Google Drive hochgeladen apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Wert für ein Ankreuz-Feld kann entweder 0 oder 1 sein @@ -1611,7 +1679,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Posteingang DocType: Kanban Board Column,Red,Rot DocType: Workflow State,Tag,Schlagwort -DocType: Custom Script,Script,Skript +DocType: Report,Script,Skript apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument kann nicht gespeichert werden. DocType: Energy Point Rule,Maximum Points,Maximale Punkte apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Meine Einstellungen @@ -1641,9 +1709,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} Anerkennungspunkte für {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rollen können für Benutzer von deren Benutzerseite aus eingestellt werden. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Kommentar hinzufügen +DocType: Dashboard Chart,Select Date Range,Wählen Sie Datumsbereich DocType: DocField,Mandatory,Zwingend notwendig apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module für den Export +DocType: Scheduled Job Type,Monthly Long,Monatlich lang apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Keine Grundberechtigungen festgelegt +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Senden Sie eine E-Mail an {0}, um sie hier zu verlinken" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Bedeutung von Übertragen, Stornieren, Abändern" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do @@ -1652,7 +1723,6 @@ DocType: Milestone Tracker,Track milestones for any document,Verfolgen Sie Meile DocType: Social Login Key,Identity Details,Identitätsdetails apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Workflow-Statusübergang von {0} nach {1} nicht zulässig apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Dashboard anzeigen -apps/frappe/frappe/desk/form/assign_to.py,New Message,Neue Nachricht DocType: File,Preview HTML,HTML-Vorschau DocType: Desktop Icon,query-report,Abfrage-Bericht DocType: Data Import Beta,Template Warnings,Vorlagenwarnungen @@ -1663,18 +1733,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Verknüpft m apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Bearbeiten Sie die Einstellungen für automatische E-Mail-Berichte DocType: Chat Room,Message Count,Nachrichtenanzahl DocType: Workflow State,book,Buchen +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2} DocType: Communication,Read by Recipient,Nach Empfänger lesen DocType: Website Settings,Landing Page,Zielseite apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Fehler in benutzerdefinierten Skripts apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Keine Berechtigungen für diese Kriterien gesetzt. DocType: Auto Email Report,Auto Email Report,Auto Email-Bericht +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Neues Dokument freigegeben apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Kommentar löschen? DocType: Address Template,This format is used if country specific format is not found,"Dieses Format wird verwendet, wenn ein länderspezifisches Format nicht gefunden werden kann" DocType: System Settings,Allow Login using Mobile Number,Login mit Mobilnummer zulassen apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Wenn diese Option aktiviert ist, werden Benutzer, die sich von der eingeschränkten IP-Adresse aus anmelden, nicht zur Zwei-Faktor-Authentifizierung aufgefordert" +DocType: Server Script,After Cancel,Nach Abbrechen DocType: Auto Repeat,Get Contacts,Kontakte erhalten apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Beiträge abgelegt unter {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Spalte ohne Titel überspringen @@ -1685,6 +1758,7 @@ DocType: User,Login After,Anmelden nach DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Druck DocType: Workflow State,thumbs-up,Bild-nach-oben +DocType: Notification Log,Mention,Erwähnen DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Schriftarten apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Genauigkeit sollte zwischen 1 und 6 liegen @@ -1692,7 +1766,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,und apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Dieser Bericht wurde am {0} erstellt. DocType: Error Snapshot,Frames,Frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Zuordnung +DocType: Notification Log,Assignment,Zuordnung DocType: Notification,Slack Channel,Slack-Kanal DocType: About Us Team Member,Image Link,Bildverknüpfung DocType: Auto Email Report,Report Filters,Berichtsfilter @@ -1709,7 +1783,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Ereignis kann nicht aktualisiert werden apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Der Bestätigungscode wurde an Ihre registrierte E-Mail-Adresse gesendet. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Gedrosselt +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Dein Ziel apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter muss 4 Werte haben (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Kein Name für {0} angegeben apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Zuweisungsregel anwenden apps/frappe/frappe/utils/bot.py,show,Show apps/frappe/frappe/utils/data.py,Invalid field name {0},Ungültiger Feldname {0} @@ -1719,7 +1795,6 @@ DocType: Workflow State,text-height,Texthöhe DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Datenmigrationsplan-Zuordnung apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé starten... DocType: Web Form Field,Max Length,Maximale Länge -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Für {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,Plan-Markierer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Eine Anfrage übertragen. @@ -1755,6 +1830,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Seite fehlt oder befindet apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Bewertungen DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Payment Gateway-Einstellungen +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} erhielt {1} Punkt für {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Holen Sie angehängte Bilder aus dem Dokument DocType: Chat Room,Name,Name DocType: Contact Us Settings,Skype,Skype @@ -1765,7 +1841,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Verknüpfung apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ihre Sprache DocType: Dashboard Chart,Average,Durchschnittlich apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Zeile hinzufügen -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Drucker apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Abfrage muss ein SELECT sein DocType: Auto Repeat,Completed,Abgeschlossen @@ -1825,6 +1900,7 @@ DocType: GCalendar Account,Next Sync Token,Nächstes Sync-Token DocType: Energy Point Settings,Energy Point Settings,Energiepunkteinstellungen DocType: Async Task,Succeeded,Erfolgreich apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Für {0} benötigte Pflichtfelder: +DocType: Onboarding Slide Field,Align,Ausrichten apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Berechtigungen für {0} zurücksetzen? apps/frappe/frappe/config/desktop.py,Users and Permissions,Benutzer und Berechtigungen DocType: S3 Backup Settings,S3 Backup Settings,S3-Sicherungseinstellungen @@ -1841,7 +1917,9 @@ DocType: DocType,ASC,Aufsteigend apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Neuer Druckformatname apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Klicken Sie auf den folgenden Link, um die Anfrage zu genehmigen" DocType: Workflow State,align-left,linksbündig +DocType: Onboarding Slide,Action Settings,Aktionseinstellungen DocType: User,Defaults,Standardeinstellungen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." DocType: Energy Point Log,Revert Of,Zurück von apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mit Existierenden zusammenführen DocType: User,Birth Date,Geburtsdatum @@ -1898,6 +1976,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,in DocType: Notification,Value Change,Wertänderung DocType: Google Contacts,Authorize Google Contacts Access,Autorisieren Sie den Zugriff auf Google Kontakte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Nur numerische Felder aus Bericht anzeigen +apps/frappe/frappe/utils/data.py,1 week ago,Vor 1 Woche DocType: Data Import Beta,Import Type,Importtyp DocType: Access Log,HTML Page,HTML-Seite DocType: Address,Subsidiary,Tochtergesellschaft @@ -1907,7 +1986,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Mit Briefkopf apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ungültiger Postausgangsserver oder Schnittstelle DocType: Custom DocPerm,Write,Schreiben -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Nur der Administrator darf Abfrage-/Skriptberichte erstellen apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualisierung läuft DocType: Data Import Beta,Preview,Vorschau apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Das Feld "Wert" ist obligatorisch. Bitte geben Sie Wert aktualisiert werden @@ -1917,6 +1995,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Als Benutz DocType: Data Migration Run,Started,Hat angefangen apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Benutzer {0} hat keinen Zugriff auf dieses Dokument DocType: Data Migration Run,End Time,Endzeit +DocType: Dashboard Chart,Group By Based On,Gruppieren nach basierend auf apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Anhänge auswählen apps/frappe/frappe/model/naming.py, for {0},für {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Sie sind nicht berechtigt dieses Dokument zu drucken @@ -1958,6 +2037,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Überprüfen DocType: Workflow Document State,Update Field,Feld aktualisieren DocType: Chat Profile,Enable Chat,Aktiviere Chat DocType: LDAP Settings,Base Distinguished Name (DN),kennzeichnender Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Benachrichtigungen abbestellen apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Optionen nicht für das Verknüpfungs-Feld {0} gesetzt apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Warteschlange / Arbeiter @@ -2024,12 +2104,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Anmelden zur Zeit nicht erlaubt DocType: Data Migration Run,Current Mapping Action,Aktuelle Abbildungsaktion DocType: Dashboard Chart Source,Source Name,Quellenname -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Dem Benutzer ist kein E-Mail-Konto zugeordnet. Bitte fügen Sie unter Benutzer> E-Mail-Posteingang ein Konto hinzu. DocType: Email Account,Email Sync Option,E-Mail-Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Reihe Nr DocType: Async Task,Runtime,Laufzeit DocType: Post,Is Pinned,Ist angeheftet DocType: Contact Us Settings,Introduction,Vorstellung +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Brauchen Sie Hilfe? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Global anheften apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,gefolgt von DocType: LDAP Settings,LDAP Email Field,LDAP-Feld E-Mail @@ -2039,7 +2119,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Bereits i DocType: User Email,Enable Outgoing,Ausgehend aktivieren DocType: Address,Fax,Telefax apps/frappe/frappe/config/customization.py,Custom Tags,Benutzerdefinierte Schlagwörter -apps/frappe/frappe/email/smtp.py,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 über Setup> E-Mail> E-Mail-Konto DocType: Comment,Submitted,Gebucht DocType: Contact,Pulled from Google Contacts,Aus Google-Kontakten gezogen apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ungültige Anfrage @@ -2060,9 +2139,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Startseite/ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Mir zuweisen DocType: DocField,Dynamic Link,Dynamische Verknüpfung apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Drücken Sie die Alt-Taste, um zusätzliche Verknüpfungen in Menü und Seitenleiste zu aktivieren" +DocType: Dashboard Chart,To Date,Bis-Datum DocType: List View Setting,List View Setting,List View Setting apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Zeige fehlgeschlagene Jobs -DocType: Event,Details,Details +DocType: Scheduled Job Log,Details,Details DocType: Property Setter,DocType or Field,DocType oder Feld apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Sie haben dieses Dokument nicht mehr verfolgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primärfarbe @@ -2070,7 +2150,6 @@ DocType: Communication,Soft-Bounced,Soft-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Falls diese Option aktiviert ist, können sich alle Benutzer von jeder IP-Adresse aus mit der Zwei-Faktor-Authentifizierung anmelden. Dies kann auch nur für bestimmte Benutzer in der Benutzerseite festgelegt werden" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Scheint veröffentlichbarer Schlüssel oder geheimer Schlüssel ist falsch !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Schnellinfo zum Festlegen von Berechtigungen -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype Tags zuweisen apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Rückfälle anzeigen apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-Mail wurde in den Papierkorb geworfen DocType: Report,Report Builder,Berichts-Generator @@ -2085,6 +2164,7 @@ DocType: Workflow State,Upload,Hochladen DocType: User Permission,Advanced Control,Erweiterte Kontrolle DocType: System Settings,Date Format,Datumsformat apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nicht veröffentlicht +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standardadressvorlage gefunden. Bitte erstellen Sie unter Setup> Drucken und Branding> Adressvorlage eine neue. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Aktionen für Workflows (z. B. Genehmigen, Abbrechen)" DocType: Data Import,Skip rows with errors,Überspringe Zeilen mit Fehlern DocType: Workflow State,flag,Kennzeichnen @@ -2094,7 +2174,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Doku apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Zum Feld springen DocType: Contact Us Settings,Forward To Email Address,Weiterleiten an E-Mail-Adresse DocType: Contact Phone,Is Primary Phone,Ist das Haupttelefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Senden Sie eine E-Mail an {0}, um sie hier zu verlinken." DocType: Auto Email Report,Weekdays,Wochentage apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} Datensätze werden exportiert apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein @@ -2102,7 +2181,7 @@ DocType: Post Comment,Post Comment,Kommentar posten apps/frappe/frappe/config/core.py,Documents,Dokumente apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktivitätsprotokoll von DocType: Social Login Key,Custom Base URL,Benutzerdefinierte Basis-URL -DocType: Email Flag Queue,Is Completed,Ist Abgeschlossen +DocType: Onboarding Slide,Is Completed,Ist Abgeschlossen apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Felder erhalten apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Profil bearbeiten DocType: Kanban Board Column,Archived,Archiviert @@ -2113,11 +2192,12 @@ 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" DocType: Social Login Key,Office 365,Büro 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Heute +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Heute apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Nach dem Import einreichen DocType: Error Log,Log of Scheduler Errors,Protokoll von Fehlermeldungen des Terminplaners DocType: User,Bio,Lebenslauf +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help Link DocType: OAuth Client,App Client Secret,App Client Geheimnis apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Buche apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden." @@ -2125,7 +2205,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,GROSSBUCHSTABEN apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Benutzerdefiniertes HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Ordnernamen eingeben -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standardadressvorlage gefunden. Erstellen Sie unter Setup> Drucken und Markieren> Adressvorlage eine neue. apps/frappe/frappe/auth.py,Unknown User,Unbekannter Benutzer apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Rolle auswählen DocType: Comment,Deleted,Gelöscht @@ -2141,7 +2220,7 @@ DocType: Chat Token,Chat Token,Chat-Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Diagramm erstellen apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Nicht importieren -DocType: Web Page,Center,Zentrieren +DocType: Onboarding Slide Field,Center,Zentrieren DocType: Notification,Value To Be Set,"Wert, der gesetzt werden soll" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Bearbeiten {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Erste Stufe @@ -2149,7 +2228,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Name der Datenbank apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Formular aktualisieren DocType: DocField,Select,Auswählen -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Vollständiges Protokoll anzeigen +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vollständiges Protokoll anzeigen DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Einfacher Python-Ausdruck, Beispiel: status == 'Open' und type == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Datei nicht angehängt apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Verbindung unterbrochen. Einige Funktionen funktionieren möglicherweise nicht. @@ -2181,6 +2260,7 @@ DocType: Web Page,HTML for header section. Optional,HTML für Kopfzeilen-Bereich apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Diese Funktion ist ganz neu und noch experimentell apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maximum von {0} Zeilen erlaubt DocType: Dashboard Chart Link,Chart,Diagramm +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global austragen apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dies ist ein sehr verbreitetes Passwort. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Anzeigen @@ -2197,6 +2277,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Zustandsdetail apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Für die Währung {0} sollte der Mindesttransaktionsbetrag {1} sein. DocType: DocField,Print Hide,Beim Drucken verbergen +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,An Benutzer apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Wert eingeben DocType: Workflow State,tint,Farbton @@ -2263,6 +2344,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code für L apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Zur Aufgabenliste hinzufügen DocType: Footer Item,Company,Unternehmen apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Durchschnitt von {0} +DocType: Scheduled Job Log,Scheduled,Geplant DocType: User,Logout from all devices while changing Password,Abmelden von allen Geräten beim Ändern des Passworts apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Passwort bestätigen apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Es gab Fehler @@ -2288,7 +2370,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Benutzerberechtigung ist bereits vorhanden apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Spalte {0} dem Feld {1} zuordnen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ansicht {0} -DocType: User,Hourly,Stündlich +DocType: Scheduled Job Type,Hourly,Stündlich apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrieren OAuth-Client App DocType: DocField,Fetch If Empty,"Abrufen, wenn leer" DocType: Data Migration Connector,Authentication Credentials,Zugangsdaten @@ -2299,10 +2381,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS-Gateway-URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},erhalten von {0} über die automatische Regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} oder {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Sie sind alle eingerichtet! DocType: Workflow State,trash,Ausschuss DocType: System Settings,Older backups will be automatically deleted,Ältere Backups werden automatisch gelöscht apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ungültige Zugriffsschlüssel-ID oder geheimer Zugriffsschlüssel. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Sie haben einige Energiepunkte verloren DocType: Post,Is Globally Pinned,Wird global gepinnt apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Letzte Aktivität DocType: Workflow Transition,Conditions,Bedingungen @@ -2311,6 +2393,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Bestätigt DocType: Event,Ends on,Endet am DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Pfad zum Server-Zertifikat +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript ist in Ihrem Browser deaktiviert apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,"Nicht genügend Erlaubnis, Links zu sehen" apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adressbezeichnung muss zwingend angegeben werden. DocType: Google Contacts,Push to Google Contacts,Zu Google-Kontakten verschieben @@ -2329,7 +2412,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Wenn dies aktiviert ist, werden Zeilen mit gültigen Daten importiert, und ungültige Zeilen werden in eine neue Datei ausgegeben, die Sie später importieren können." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Das Dokument kann nur von Benutzern der Rolle bearbeitet werden -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Die Aufgabe {0}, die Sie {1} zugeordnet haben, wurde von {2} geschlossen." DocType: Print Format,Show Line Breaks after Sections,Zeige Zeilenumbrüche nach den Abschnitten DocType: Communication,Read by Recipient On,Gelesen von Empfänger On DocType: Blogger,Short Name,Kürzel @@ -2361,6 +2443,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Zuwe DocType: Translation,PR sent,PR gesendet DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Nur Send Records aktualisiert in den letzten X Stunden DocType: Communication,Feedback,Rückmeldung +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Auf eine neue Version aktualisiert 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Übersetzung öffnen apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Diese E-Mail wurde automatisch generiert DocType: Workflow State,Icon will appear on the button,Symbol wird auf der Schaltfläche angezeigt @@ -2399,6 +2482,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Seite nich DocType: DocField,Precision,Genauigkeit DocType: Website Slideshow,Slideshow Items,Bestandteile der Diaschau apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,"Versuchen Sie, wiederholte Wörter und Zeichen zu vermeiden" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Benachrichtigungen deaktiviert +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Möchten Sie wirklich alle Zeilen löschen? DocType: Workflow Action,Workflow State,Workflow-Zustand apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Zeilen hinzugefügt apps/frappe/frappe/www/list.py,My Account,Mein Konto @@ -2407,6 +2492,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Tage nach apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-Tray-Verbindung aktiv! DocType: Contact Us Settings,Settings for Contact Us Page,Einstellungen Kontakt +DocType: Server Script,Script Type,Skripttyp DocType: Print Settings,Enable Print Server,Aktivieren Sie den Druckserver apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,vor {0} Woche(n) DocType: Email Account,Footer,Fußzeile @@ -2432,8 +2518,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Warnung apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Dies kann auf mehreren Seiten ausgedruckt werden DocType: Data Migration Run,Percent Complete,Prozent abgeschlossen -DocType: Tag Category,Tag Category,Tag Kategorie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." DocType: Google Calendar,Pull from Google Calendar,Aus Google Kalender ziehen apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Hilfe DocType: User,Login Before,Anmelden vor @@ -2443,17 +2527,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Wochenenden ausblenden apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Generiert automatisch wiederkehrende Dokumente. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ist +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Info-Zeichen apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Wert für {0} kann keine Liste sein DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, werden die Standardeinstellungen verwendet" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} Dokumente einreichen? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

Sie müssen die QZ Tray-Anwendung installiert und ausgeführt haben, um die Raw Print-Funktion verwenden zu können.

Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über Raw Printing zu erfahren ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Druckerzuordnung apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Bitte vor dem Anhängen speichern +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Möchten Sie alle verknüpften Dokumente stornieren? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ({1}) hinzugefügt apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rollenberechtigungen DocType: Help Article,Intermediate,Mittlere +apps/frappe/frappe/config/settings.py,Email / Notifications,E-Mail Benachrichtigungen apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} hat {1} in {2} geändert apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Abgebrochenes Dokument als Entwurf wiederhergestellt DocType: Data Migration Run,Start Time,Startzeit @@ -2470,6 +2558,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ka apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ungültige Empfängeradresse DocType: Workflow State,step-forward,Schritt nach vorn DocType: System Settings,Allow Login After Fail,Login nach Fehler zulassen +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Set Rolle für DocType: GCalendar Account,The name that will appear in Google Calendar,"Der Name, der in Google Kalender angezeigt wird" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direkter Raum mit {0} existiert bereits. @@ -2486,6 +2575,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Neu erste DocType: Contact,Google Contacts,Google Kontakte DocType: GCalendar Account,GCalendar Account,GCalendar Konto DocType: Email Rule,Is Spam,ist Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Zuletzt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Bericht {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0} öffnen DocType: Data Import Beta,Import Warnings,Warnungen importieren @@ -2497,6 +2587,7 @@ DocType: Workflow State,ok-sign,OK-Zeichen apps/frappe/frappe/config/settings.py,Deleted Documents,Gelöschte Dokumente apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Verknüpfung ist bereits auf dem Schreibtisch platziert +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Geben Sie an, in welchen Domänen die Folien angezeigt werden sollen. Wenn nichts angegeben ist, wird die Folie standardmäßig in allen Domänen angezeigt." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplizieren apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Das Feld {1} in Zeile {2} kann ohne Vorgabe nicht ausgeblendet und obligatorisch sein DocType: Newsletter,Create and Send Newsletters,Newsletter erstellen und senden @@ -2507,6 +2598,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Kalender-Ereignis-ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Übergeordnet"" bezeichnet die übergeordnete Tabelle, in der diese Zeile hinzugefügt werden muss" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Bewertungspunkte: +DocType: Scheduled Job Log,Scheduled Job Log,Geplantes Jobprotokoll +DocType: Server Script,Before Delete,Vor dem Löschen apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Freigegeben für apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Hängen Sie Dateien / URLs an und fügen Sie sie in die Tabelle ein. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Nachricht nicht eingerichtet @@ -2529,19 +2622,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,"Einstellungen ""Über uns""" apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe Payment Gateway Einstellungen apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Drucken An den Drucker gesendet! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiepunkte +DocType: Notification Settings,Energy Points,Energiepunkte +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Die Uhrzeit {0} muss im Format {1} vorliegen. DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,z.B. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Schlüssel generieren apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Dadurch werden Ihre Daten dauerhaft entfernt. DocType: DocType,View Settings,Einstellungen anzeigen +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Neue Benachrichtigung DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktur anfordern +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Controller-Methode get_razorpay_order fehlt DocType: Personal Data Deletion Request,Pending Verification,Ausstehende Bestätigung DocType: Website Meta Tag,Website Meta Tag,Website-Meta-Tag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",Wenn nicht Standard-Port (zB 587). Versuchen Sie in Google Cloud den Port 2525. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Löschen des Enddatums, da es für veröffentlichte Seiten nicht in der Vergangenheit liegen kann." DocType: User,Send Me A Copy of Outgoing Emails,Schick mir eine Kopie der ausgehenden E-Mails -DocType: System Settings,Scheduler Last Event,Letztes Ereignis im Zeitplaner DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google Analytics-ID hinzufügen: z. B. UA-89XXX57-1. Weitere Informationen finden Sie bei Google Analytics. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Das Passwort darf nicht mehr als 100 Zeichen lang sein DocType: OAuth Client,App Client ID,App Client-ID @@ -2570,6 +2665,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Neues Passwor apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} teilte dieses Dokument mit {1} DocType: Website Settings,Brand Image,Markenzeichen DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Die Importvorlage sollte eine Kopfzeile und mindestens eine Zeile enthalten. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Kalender wurde konfiguriert. apps/frappe/frappe/config/website.py,"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 @@ -2579,6 +2675,7 @@ DocType: User Social Login,User Social Login,Benutzer Social Login apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} hat Ihre Arbeit an {1} mit {2} Punkten kritisiert DocType: Contact,All,Alle DocType: Email Queue,Recipient,Empfänger +DocType: Webhook,Webhook Security,Webhook-Sicherheit DocType: Communication,Has Attachment,Hat Anhang DocType: Address,Sales User,Nutzer Vertrieb apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag & Drop-Werkzeug zum Erstellen und Anpassen von Druckformaten @@ -2645,7 +2742,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrations-ID-Feld DocType: Dashboard Chart,Last Synced On,Zuletzt synchronisiert am DocType: Comment,Comment Type,Kommentarart DocType: OAuth Client,OAuth Client,OAuth-Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} hat Ihre Arbeit an {1} {2} kritisiert. DocType: Assignment Rule,Users,Benutzer DocType: Address,Odisha,Odisha DocType: Report,Report Type,Berichtstyp @@ -2670,14 +2766,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Webseiten-Diashow-Artikel apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Selbstgenehmigung ist nicht erlaubt DocType: GSuite Templates,Template ID,Vorlagen-ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombination von Grant-Typ ( {0} ) und Antworttyp ( {1} ) nicht zulässig -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Neue Nachricht von {0} DocType: Portal Settings,Default Role at Time of Signup,Standardrolle bei Neuanmeldungen DocType: DocType,Title Case,Bezeichnung in Großbuchstaben apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Klicken Sie auf den unten stehenden Link, um Ihre Daten herunterzuladen" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Aktivierter E-Mail-Posteingang für Benutzer {0} DocType: Data Migration Run,Data Migration Run,Datenmigrationslauf DocType: Blog Post,Email Sent,E-Mail wurde versandt -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Älter DocType: DocField,Ignore XSS Filter,XSS-Filter ignorieren apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,entfernt apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox Backup-Einstellungen @@ -2732,6 +2826,7 @@ DocType: Async Task,Queued,Warteschlange DocType: Braintree Settings,Use Sandbox,Sandkastenmodus verwenden apps/frappe/frappe/utils/goal.py,This month,Diesen Monat apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Neues benutzerdefiniertes Druckformat +DocType: Server Script,Before Save (Submitted Document),Vor dem Speichern (gesendetes Dokument) DocType: Custom DocPerm,Create,Erstellen apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Keine weiteren Elemente zum Anzeigen apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Zum vorherigen Datensatz wechseln @@ -2788,6 +2883,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,In den Papierkorb verschieben DocType: Web Form,Web Form Fields,Web-Formularfelder DocType: Data Import,Amended From,Abgeändert von +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Fügen Sie einen Hilfevideolink hinzu, falls der Benutzer keine Ahnung hat, was er in die Folie einfügen soll." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Achtung: {0} in keiner verwandten Tabelle von {1} gefunden DocType: S3 Backup Settings,eu-north-1,EU-Nord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Dieses Dokument ist derzeit für die Ausführung der Warteschlange. Bitte versuche es erneut @@ -2809,6 +2905,7 @@ DocType: Blog Post,Blog Post,Blog-Eintrag DocType: Access Log,Export From,Exportieren von apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Erweiterte Suche apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,"Sie sind nicht berechtigt, den Newsletter zu anzusehen." +DocType: Dashboard Chart,Group By,Gruppieren nach DocType: User,Interests,Interessen apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt DocType: Energy Point Rule,Allot Points To Assigned Users,Zuweisen von Punkten zu zugewiesenen Benutzern @@ -2824,6 +2921,7 @@ DocType: Assignment Rule,Assignment Rule,Zuweisungsregel apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Empfohlener Benutzername: {0} DocType: Assignment Rule Day,Day,Tag apps/frappe/frappe/public/js/frappe/desk.js,Modules,Module +DocType: DocField,Mandatory Depends On,Obligatorisch Hängt von ab apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Zahlungserfolg apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Nein {0} mail DocType: OAuth Bearer Token,Revoked,Gesperrte @@ -2831,6 +2929,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar und Kommentare apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 Nummer, basierend auf der alten Nummer." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Es ist nicht erlaubt, das Dokument {0} anzuhängen, bitte aktivieren Sie Druck zulassen für {0} in den Druckeinstellungen" +apps/frappe/frappe/email/smtp.py,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 über Setup> E-Mail> E-Mail-Konto apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Siehe das Dokument bei {0} DocType: Stripe Settings,Publishable Key,Veröffentlichender Schlüssel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Starten Sie den Import @@ -2844,13 +2943,13 @@ DocType: Currency,Fraction,Teil apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Ereignis mit Google Kalender synchronisiert. DocType: LDAP Settings,LDAP First Name Field,LDAP-Feld Vorname DocType: Contact,Middle Name,Zweiter Vorname +DocType: DocField,Property Depends On,Eigentum hängt von ab DocType: Custom Field,Field Description,Feldbeschreibung apps/frappe/frappe/model/naming.py,Name not set via Prompt,Name nicht über Eingabeaufforderung gesetzt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-Mail-Eingang apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{0} von {1}, {2} wird aktualisiert" DocType: Auto Email Report,Filters Display,Filter anzeigen apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Das Feld "modified_from" muss vorhanden sein, um eine Änderung vorzunehmen." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} freute sich über Ihre Arbeit an {1} {2}. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filter speichern DocType: Address,Plant,Fabrik apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Allen antworten @@ -2891,11 +2990,11 @@ DocType: Workflow State,folder-close,geschlossener Ordner apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Bericht: DocType: Print Settings,Print taxes with zero amount,Steuern mit null Betrag drucken apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} darf nicht umbenannt werden +DocType: Server Script,Before Insert,Vor dem Einfügen DocType: Custom Script,Custom Script,Benutzerdefiniertes Skript DocType: Address,Address Line 2,Adresse Zeile 2 DocType: Address,Reference,Referenz apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Zugewiesen zu -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Bitte richten Sie das Standard-E-Mail-Konto über Setup> E-Mail> E-Mail-Konto ein DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Datenmigrations-Mapping-Detail DocType: Data Import,Action,Aktion DocType: GSuite Settings,Script URL,Skript-URL @@ -2921,11 +3020,13 @@ DocType: User,Api Access,API Zugriff DocType: DocField,In List View,In der Listenansicht DocType: Email Account,Use TLS,TLS verwenden apps/frappe/frappe/email/smtp.py,Invalid login or password,Ungültige Benutzerkennung oder ungültiges Passwort +DocType: Scheduled Job Type,Weekly Long,Wöchentlich lang apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Vorlage herunterladen apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Benutzerdefiniertes Javascript zum Formular hinzufügen ,Role Permissions Manager,Rollenberechtigungen-Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Name des neuen Druckformats apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Seitenleiste +DocType: Server Script,After Save (Submitted Document),Nach dem Speichern (Übermitteltes Dokument) DocType: Data Migration Run,Pull Insert,Zugeinsatz DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maximal zulässige Punkte nach Multiplikation der Punkte mit dem Multiplikatorwert (Hinweis: Für unbegrenzte Anzahl lassen Sie dieses Feld leer oder setzen Sie 0) @@ -2945,6 +3046,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nicht installiert apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Mit Daten herunterladen apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},geänderte Werte für {0} {1} +DocType: Server Script,Before Cancel,Vor dem Abbrechen DocType: Workflow State,hand-right,Pfeil-nach-rechts DocType: Website Settings,Subdomain,Unterdomäne DocType: S3 Backup Settings,Region,Region @@ -2990,12 +3092,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Altes Passwort DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Beiträge von {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Um Spalten zu formatieren, geben Sie die Spaltenbeschriftungen in der Abfrage ein." +DocType: Onboarding Slide,Slide Fields,Felder schieben DocType: Has Domain,Has Domain,Hat Domain DocType: User,Allowed In Mentions,In Erwähnungen erlaubt apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Sie haben noch kein Konto? Erstell' ein Konto apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID-Feld kann nicht entfernt werden apps/frappe/frappe/core/doctype/doctype/doctype.py,{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 +DocType: Notification Settings,Subscribed Documents,Abonnierte Dokumente apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Benutzereinstellungen DocType: Report,Reference Report,Referenzbericht DocType: Activity Log,Link DocType,Link DocType @@ -3013,6 +3117,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorisieren Sie den Z apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Die Seite, die Sie suchen fehlt. Dies könnte sein, weil es bewegt wird, oder es ist ein Tippfehler in der Verbindung." apps/frappe/frappe/www/404.html,Error Code: {0},Fehlercode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschreibung für die Auflistungsseite, in Reintext, nur ein paar Zeilen (max. 140 Zeichen)." +DocType: Server Script,DocType Event,DocType-Ereignis apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sind Pflichtfelder DocType: Workflow,Allow Self Approval,Erlaube Selbstgenehmigung DocType: Event,Event Category,Ereigniskategorie @@ -3029,6 +3134,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ihr Name apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Verbindungserfolg DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Es ist bereits eine Onboarding-Folie vom Typ "Weiter" vorhanden. DocType: DocType,Default Sort Field,Standard-Sortierfeld DocType: File,Is Folder,Ist Ordner DocType: Document Follow,DocType,DocType @@ -3066,8 +3172,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Werte g DocType: Workflow State,arrow-up,Pfeil-nach-oben DocType: Dynamic Link,Link Document Type,Dokumenttyp verknüpfen apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Es sollte mindestens eine Zeile für die Tabelle {0} vorhanden sein +DocType: Server Script,Server Script,Serverskript apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Um die automatische Wiederholung zu konfigurieren, aktivieren Sie "Automatische Wiederholung zulassen" von {0} aus." DocType: OAuth Bearer Token,Expires In,Verfällt in +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Die Häufigkeit, mit der Sie die Gruppe von Feldern wiederholen möchten (z. B .: Wenn Sie 3 Kunden auf der Folie haben möchten, setzen Sie dieses Feld auf 3. Nur die erste Gruppe von Feldern wird auf der Folie als obligatorisch angezeigt.)" DocType: DocField,Allow on Submit,Beim Übertragen zulassen DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Ausnahmetyp @@ -3077,6 +3185,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Kommende Veranstaltungen apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Bitte geben Sie die Werte für App Access Key und App Secret Key +DocType: Email Account,Append Emails to Sent Folder,E-Mails an gesendeten Ordner anhängen DocType: Web Form,Accept Payment,Zahlung akzeptieren apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Listenelement auswählen apps/frappe/frappe/config/core.py,A log of request errors,Ein Protokoll der Anfragefehler @@ -3095,7 +3204,7 @@ DocType: Translation,Contributed,Beigetragen apps/frappe/frappe/config/customization.py,Form Customization,Formularanpassung apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Keine aktiven Sessions DocType: Web Form,Route to Success Link,Route zum Erfolg Link -DocType: Top Bar Item,Right,Rechts +DocType: Onboarding Slide Field,Right,Rechts apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Keine anstehenden Events DocType: User,User Type,Benutzertyp DocType: Prepared Report,Ref Report DocType,Ref Bericht DocType @@ -3113,6 +3222,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Bitte versuche e apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL muss mit "http: //" oder "https: //" beginnen apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Option 3 DocType: Communication,uid,Eindeutige Kennung +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Das kann nicht rückgängig gemacht werden DocType: Workflow State,Edit,Bearbeiten DocType: Website Settings,Chat Operators,Chat-Operatoren DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3124,7 +3234,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Berichte mit mehr als 10 Spalten sehen im Querformat besser aus. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ungültiger Feldname: {0} DocType: Milestone,Milestone,Ecktermin @@ -3133,7 +3242,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Gehe zu {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-Mails sind stumm geschaltet apps/frappe/frappe/config/integrations.py,Google Services,Google-Dienste apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Strg + Auf -apps/frappe/frappe/utils/data.py,1 weeks ago,vor 1 Woche +DocType: Onboarding Slide,Slide Description,Folienbeschreibung DocType: Communication,Error,Fehler apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Bitte richten Sie zuerst eine Nachricht ein DocType: Auto Repeat,End Date,Enddatum @@ -3154,10 +3263,12 @@ DocType: Footer Item,Group Label,Gruppenbezeichnung DocType: Kanban Board,Kanban Board,Kanban-Tafel apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakte wurde konfiguriert. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 Datensatz wird exportiert +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Dem Benutzer ist kein E-Mail-Konto zugeordnet. Bitte fügen Sie unter Benutzer> E-Mail-Posteingang ein Konto hinzu. DocType: DocField,Report Hide,Bericht ausblenden apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Baumansicht nicht verfügbar für {0} DocType: DocType,Restrict To Domain,Auf Domäne beschränken DocType: Domain,Domain,Domäne +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ungültige Datei-URL. Bitte wenden Sie sich an den Systemadministrator. DocType: Custom Field,Label Help,Bezeichnungshilfe DocType: Workflow State,star-empty,sternenleer apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Termine sind oft leicht zu erraten. @@ -3182,6 +3293,7 @@ DocType: Workflow State,hand-left,Pfeil-nach-links DocType: Data Import,If you are updating/overwriting already created records.,Wenn Sie bereits erstellte Datensätze aktualisieren / überschreiben. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Ist global DocType: Email Account,Use SSL,SSL verwenden +DocType: Webhook,HOOK-.####,HAKEN-.#### DocType: Workflow State,play-circle,Spielplatz apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Das Dokument konnte nicht korrekt zugewiesen werden apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression","Ungültiger ""depends_on"" Ausdruck" @@ -3198,6 +3310,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Zuletzt aktualisiert apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Für Dokumenttyp DocType: Workflow State,arrow-right,Pfeil-nach-rechts +DocType: Server Script,API Method,API-Methode DocType: Workflow State,Workflow state represents the current state of a document.,Workflow-Zustand stellt den aktuellen Status eines Dokuments dar. DocType: Letter Head,Letter Head Based On,Briefkopf basierend auf apps/frappe/frappe/utils/oauth.py,Token is missing,Token fehlt @@ -3237,6 +3350,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Artikel kompakt drucken DocType: Email Account,uidnext,Nächste eindeutige Kennung DocType: User,Redirect URL,Redirect-URL +DocType: Onboarding Slide Field,Placeholder,Platzhalter DocType: SMS Settings,Enter url parameter for receiver nos,URL-Parameter für Empfängernummern eingeben DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Verwenden Sie immer den Kontonamen als Absendernamen @@ -3246,7 +3360,6 @@ DocType: Workflow State,Home,Startseite DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Benutzer können sich entweder mit E-Mail-Adresse oder Benutzername anmelden DocType: Workflow State,question-sign,Fragezeichen -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ist deaktiviert apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Das Feld "Route" ist für Web-Ansichten obligatorisch apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Spalte vor {0} einfügen DocType: Energy Point Rule,The user from this field will be rewarded points,Der Benutzer aus diesem Feld erhält Punkte @@ -3271,6 +3384,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Wenn Inhaber DocType: Data Migration Mapping,Push,drücken apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Dateien hier ablegen DocType: OAuth Authorization Code,Expiration time,Ablaufzeit +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Dokumente öffnen DocType: Web Page,Website Sidebar,Webseite Sidebar DocType: Web Form,Show Sidebar,anzeigen Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Sie müssen angemeldet sein, um auf {0} zugreifen zu können." @@ -3286,6 +3400,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale Verk DocType: Desktop Icon,Page,Seite apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},{0} konnte in {1} nicht gefunden werden apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Namen und Vornamen von Ihnen selbst sind leicht zu erraten. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument von {0} in {1} umbenannt apps/frappe/frappe/config/website.py,Knowledge Base,Wissensbasis DocType: Workflow State,briefcase,Aktenkoffer apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Wert kann für {0} nicht geändert werden @@ -3322,6 +3437,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Druckformat apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Rasteransicht wechseln apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Zum nächsten Datensatz wechseln +DocType: System Settings,Time Format,Zeitformat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ungültige Payment-Gateway-Anmeldeinformationen DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Dies ist die Vorlagendatei, die nur mit Fehlern in den Zeilen generiert wird. Sie sollten diese Datei zur Korrektur und zum Import verwenden." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Berechtigungen für Dokumenttypen und Rollen setzen @@ -3364,12 +3480,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Antworten apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Seiten auf dem Tisch (Platzhalter) DocType: DocField,Collapsible Depends On,"""Faltbar"" hängt ab von" DocType: Print Style,Print Style Name,Druckstil +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,"Das Feld Gruppieren nach ist erforderlich, um ein Dashboard-Diagramm zu erstellen" DocType: Print Settings,Allow page break inside tables,Seitenumbruch innerhalb von Tabellen erlauben DocType: Email Account,SMTP Server,SMTP-Server DocType: Print Format,Print Format Help,Hilfe zu Druckformaten apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} Raum muss mindestens einen Benutzer haben. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Anzahl +DocType: Dashboard Chart,Group By Type,Nach Typ gruppieren apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Neuer Kommentar zu {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restauriert {0} als {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Wenn aktualisiert wird, bitte ""Überschreiben"" wählen, sonst werden vorhandene Zeilen nicht gelöscht." @@ -3380,14 +3498,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Benutzerp DocType: Web Form,Web Form,Web-Formular apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Das Datum {0} muss das folgende Format haben: {1} DocType: About Us Settings,Org History Heading,Überschrift zur Unternehmensgeschichte +DocType: Scheduled Job Type,Scheduled Job Type,Geplanter Auftragstyp DocType: Print Settings,Allow Print for Cancelled,Drucken im Zustand Abgebrochen erlauben DocType: Communication,Integrations can use this field to set email delivery status,"Eingendene Anwendungen können dieses Feld verwenden, um den Versandstatus von E-Mails anzugeben" +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,"Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren." DocType: Web Form,Web Page Link Text,Webseiten-Verknüpfungstext DocType: Page,System Page,System Seite apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Standardformat, Seitengröße, Druckstil usw. festlegen" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Anpassungen für {0} exportiert nach:
{1} DocType: Website Settings,Include Search in Top Bar,Suchen In Top Bar +DocType: Scheduled Job Type,Daily Long,Täglich lang DocType: GSuite Settings,Allow GSuite access,GSuite-Zugang erlauben DocType: DocType,DESC,DESC DocType: DocType,Naming,Bezeichnung @@ -3490,6 +3611,7 @@ DocType: Notification,Send days before or after the reference date,Tage vor oder DocType: User,Allow user to login only after this hour (0-24),"Benutzer erlauben, sich erst nach dieser Stunde anzumelden (0-24)" apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Weisen Sie der Reihe nach eine nach der anderen zu DocType: Integration Request,Subscription Notification,Abonnementbenachrichtigung +DocType: Customize Form Field, Allow in Quick Entry ,Schnelleingabe zulassen apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,oder anhängen a DocType: Auto Repeat,Start Date,Startdatum apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Wert @@ -3504,6 +3626,7 @@ DocType: Google Drive,Backup Folder ID,Sicherungsordner-ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nicht im Entwicklungsmodus! In site_config.json erstellen oder ""Benutzerdefiniertes"" DocType erstellen." DocType: Workflow State,globe,Globus DocType: System Settings,dd.mm.yyyy,TT.MM.JJJJ +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Priorität DocType: Email Queue,Unsubscribe Param,Abmelden Param DocType: DocType,Hide Sidebar and Menu,Seitenleiste und Menü ausblenden @@ -3515,6 +3638,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Import erlauben (mit Dateni apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Nr DocType: DocField,Float,Gleitkommazahl DocType: Print Settings,Page Settings,Seiteneinstellungen +DocType: Notification Settings,Notification Settings,Benachrichtigungseinstellungen apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Speichern ... apps/frappe/frappe/www/update-password.html,Invalid Password,Ungültiges Passwort apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} Datensatz aus {1} erfolgreich importiert. @@ -3530,6 +3654,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Briefkopf Bild DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron Format apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Bericht(e) DocType: SMS Settings,Use POST,POST verwenden DocType: Communication,SMS,SMS @@ -3574,18 +3699,20 @@ DocType: Workflow,Allow approval for creator of the document,Genehmigung für de apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Bericht speichern DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API-Endpunkt-Argumente +DocType: DocType Action,Server Action,Serveraktion apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Das übergeordnete Feld muss ein gültiger Feldname sein apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Fehler beim Ändern des Abonnements DocType: LDAP Settings,LDAP Group Field,LDAP-Gruppenfeld +DocType: Notification Subscribed Document,Notification Subscribed Document,Benachrichtigungsdokument abonniert apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,ist gleich apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Ungültige CSV-Format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

Sie müssen die QZ Tray-Anwendung installiert und ausgeführt haben, um die Raw Print-Funktion verwenden zu können.

Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über Raw Printing zu erfahren ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Anzahl der Backups einstellen DocType: DocField,Do not allow user to change after set the first time,nach dem ersten Setzen dem Benutzer nicht erlauben eine Änderung vorzunehmen apps/frappe/frappe/utils/data.py,1 year ago,vor 1 Jahr +DocType: DocType,Links Section,Abschnitt Links apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Protokoll aller Druck-, Download- und Exportereignisse anzeigen" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 Monat DocType: Contact,Contact,Kontakt @@ -3612,16 +3739,19 @@ DocType: Email Account,UIDVALIDITY,Gültigkeit der eindeutigen Kennung apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Neue E-Mail DocType: Custom DocPerm,Export,Export apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Aktivieren Sie {0}, um Google Kalender zu verwenden." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Hinzufügen des Statusabhängigkeitsfelds {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} erfolgreich aktualisiert apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-Fach fehlgeschlagen: DocType: Dropbox Settings,Dropbox Settings,Dropbox-Einstellungen DocType: About Us Settings,More content for the bottom of the page.,Zusätzlicher Inhalt für den unteren Teil der Seite. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Dieses Dokument wurde zurückgesetzt apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive Backup erfolgreich. +DocType: Webhook,Naming Series,Nummernkreis DocType: Workflow,DocType on which this Workflow is applicable.,"DocType, auf den dieser Workflow anzuwenden ist." DocType: User,Enabled,Aktiviert apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Der Abschluss des Setup ist fehlgeschlagen. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Neu {0}: {1} -DocType: Tag Category,Category Name,Kategoriename +DocType: Blog Category,Category Name,Kategoriename apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,"Parent ist erforderlich, um untergeordnete Tabellendaten abzurufen" apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import-Abonnenten DocType: Print Settings,PDF Settings,PDF-Einstellungen @@ -3657,6 +3787,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalender apps/frappe/frappe/client.py,No document found for given filters,Kein Dokument für vorgegebene Filter gefunden apps/frappe/frappe/config/website.py,A user who posts blogs.,"Ein Benutzer, der Blogs veröffentlicht." +DocType: DocType Action,DocType Action,DocType-Aktion apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",Ein weiterer {0} mit dem Namen {1} existiert. Bitte einen anderen Namen wählen DocType: DocType,Custom?,Benutzerdefiniert? DocType: Website Settings,Website Theme Image,Webseiten-Thema-Bild @@ -3666,6 +3797,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},{0} kann apps/frappe/frappe/config/integrations.py,Backup,Sicherungskopie apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,"Der Dokumenttyp ist erforderlich, um ein Dashboard-Diagramm zu erstellen" DocType: DocField,Read Only,Schreibgeschützt +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Bestellung konnte nicht erstellt werden apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Neuer Newsletter DocType: Energy Point Log,Energy Point Log,Energiepunktprotokoll DocType: Print Settings,Send Print as PDF,Ausdruck als PDF senden @@ -3691,16 +3823,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Ema apps/frappe/frappe/www/login.html,Or login with,Oder melden Sie sich an mit DocType: Error Snapshot,Locals,Einheimische apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommuniziert über {0} um {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} erwähnte Sie in einem Kommentar in {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Wählen Sie Gruppieren nach ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} erforderlich DocType: Integration Request,Integration Type,Integration Typ DocType: Newsletter,Send Attachements,Anhänge senden +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Keine Filter gefunden apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integration von Google-Kontakten. DocType: Transaction Log,Transaction Log,Transaktionsprotokoll apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistiken basieren auf der Leistung des letzten Monats (von {0} bis {1}) DocType: Contact Us Settings,City,Ort +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Karten für alle Benutzer ausblenden apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktivieren Sie "Automatische Wiederholung zulassen" für den Doctype {0} in "Formular anpassen" DocType: DocField,Perm Level,Berechtigungsebene apps/frappe/frappe/www/confirm_workflow_action.html,View document,Dokument anzeigen @@ -3711,6 +3844,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Wenn diese Option aktiviert ist, werden Änderungen am Dokument nachverfolgt und in der Zeitleiste angezeigt" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1} DocType: Energy Point Log,Appreciation,Anerkennung +DocType: Dashboard Chart,Number of Groups,Anzahl der Gruppen apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Liste anzeigen DocType: Workflow,Don't Override Status,Status nicht überschreiben apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Suchbegriff @@ -3752,7 +3886,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-nordwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Anzahl der DB-Sicherungen begrenzen DocType: Custom DocPerm,Level,Ebene -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Letzte 30 Tage DocType: Custom DocPerm,Report,Bericht apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Betrag muss größer als 0 sein. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Verbunden mit QZ Tray! @@ -3769,6 +3902,7 @@ DocType: S3 Backup Settings,us-west-2,US-West-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Untergeordnete Tabelle auswählen apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Primäre Aktion auslösen apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Ändern +DocType: Social Login Key,User ID Property,Benutzer-ID-Eigenschaft DocType: Email Domain,domain name,Domain-Namen DocType: Contact Email,Contact Email,Kontakt-E-Mail DocType: Kanban Board Column,Order,Auftrag @@ -3791,7 +3925,7 @@ DocType: Contact,Last Name,Familienname DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Links DocType: Event,All Day,Ganzer Tag apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Sieht aus wie etwas ist mit dieser Website Payment-Gateway falsch konfiguriert. Keine Zahlung geleistet wurde. DocType: GCalendar Settings,State,Status @@ -3823,7 +3957,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Gateway-Einstellungen apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Text in Dokumententyp -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Tests ausführen apps/frappe/frappe/handler.py,Logged Out,Abgemeldet apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mehr... DocType: System Settings,User can login using Email id or Mobile number,Benutzer können sich entweder mit Email-Adresse oder Handynummer anmelden @@ -3839,6 +3972,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Zusammenfassung DocType: Event,Event Participants,Veranstaltungsteilnehmer DocType: Auto Repeat,Frequency,Häufigkeit +DocType: Onboarding Slide,Slide Order,Folienreihenfolge DocType: Custom Field,Insert After,Einfügen nach DocType: Event,Sync with Google Calendar,Mit Google Kalender synchronisieren DocType: Access Log,Report Name,Berichtsname @@ -3866,6 +4000,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Inhalt der Webseite. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Neue Rolle hinzufügen +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besuchen Sie die Webseite +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Neue Zuordnung DocType: Google Contacts,Last Sync On,Letzte Synchronisierung an DocType: Deleted Document,Deleted Document,gelöschtes Dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hoppla! Etwas ist schiefgelaufen @@ -3876,7 +4012,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landschaft apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client-seitige Script-Erweiterungen in Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Datensätze für folgende Doctypes werden gefiltert -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Scheduler Inaktiv +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Scheduler Inaktiv DocType: Blog Settings,Blog Introduction,Blog-Einleitung DocType: Global Search Settings,Search Priorities,Suchprioritäten DocType: Address,Office,Büro @@ -3886,12 +4022,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Dashboard-Diagramm-Link DocType: User,Email Settings,E-Mail-Einstellungen apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Hier abstellen DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Wenn diese Option aktiviert ist, kann sich der Benutzer mit der Zwei-Faktor-Authentifizierung von jeder IP-Adresse aus anmelden. Dies kann auch für alle Benutzer in den Systemeinstellungen festgelegt werden" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Druckereinstellungen ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Bitte geben Sie Ihr Passwort ein, um fortzufahren" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mir apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} kein gültiger Zustand apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Auf alle Dokumenttypen anwenden -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiepunktaktualisierung +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energiepunktaktualisierung +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Jobs nur täglich ausführen, wenn inaktiv für (Tage)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}‘ DocType: Chat Message,Room Type,Zimmertyp DocType: Data Import Beta,Import Log Preview,Protokollvorschau importieren @@ -3900,6 +4036,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,Genehmigungs-Kreislauf DocType: LDAP Settings,LDAP User Creation and Mapping,Erstellung und Zuordnung von LDAP-Benutzern apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Die heutigen Ereignisse apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Verzeihung! Benutzer sollten uneingeschränkten Zugang zu ihren eigenen Rekord zu haben. ,Usage Info,Nutzungsinformationen apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Tastaturkürzel anzeigen @@ -3916,6 +4053,7 @@ DocType: DocField,Unique,Einzigartig apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} geschätzt am {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Teilerfolg DocType: Email Account,Service,Service +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Benutzer DocType: File,File Name,Dateiname apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} wurde nicht für {0} ({1}) gefunden apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3929,6 +4067,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Anmeldun DocType: GCalendar Settings,Enable,ermöglichen DocType: Google Maps Settings,Home Address,Privatadresse apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Sie können nur bis zu 5000 Datensätze auf einmal hochladen (in einigen Fällen weniger). +DocType: Report,"output in the form of `data = [columns, result]`","Ausgabe in Form von `data = [columns, result]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Anwendbare Dokumenttypen apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Richten Sie Regeln für Benutzerzuweisungen ein. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Unzureichende Berechtigung für {0} @@ -3944,7 +4083,6 @@ DocType: Communication,To and CC,An und CC DocType: SMS Settings,Static Parameters,Statische Parameter DocType: Chat Message,Room,Zimmer apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},Aktualisiert auf {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Hintergrundjobs werden nicht ausgeführt. Bitte wenden Sie sich an den Administrator DocType: Portal Settings,Custom Menu Items,Artikel Benutzermenü apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Alle Bilder, die an die Website-Slideshow angehängt werden, sollten öffentlich sein." DocType: Workflow State,chevron-right,Winkel nach rechts @@ -3959,11 +4097,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} Werte ausgewählt DocType: DocType,Allow Auto Repeat,Automatische Wiederholung zulassen apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Keine anzuzeigenden Werte +DocType: DocType,URL for documentation or help,URL für Dokumentation oder Hilfe DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-Mail-Vorlage apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} Datensatz erfolgreich aktualisiert. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Benutzer {0} hat keinen Doctype-Zugriff über die Rollenberechtigung für Dokument {1}. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Login und Passwort sind beide erforderlich +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Lassen\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Bitte aktualisieren, um das neueste Dokument zu erhalten." DocType: User,Security Settings,Sicherheitseinstellungen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Spalte hinzufügen @@ -3973,6 +4113,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Meta filtern apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Im Anhang finden Sie {0}: {1} DocType: Web Page,Set Meta Tags,Festlegen von Meta-Tags +DocType: Email Account,Use SSL for Outgoing,Verwenden Sie SSL für ausgehende 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: S3 Backup Settings,Backup Limit,Sicherungslimit DocType: Dashboard Chart,Line,Linie @@ -4005,4 +4146,3 @@ DocType: DocField,Ignore User Permissions,Ignorieren von Benutzerberechtigungen apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Erfolgreich gespeichert apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen DocType: Domain Settings,Active Domains,Aktive Domains -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Zeige Log diff --git a/frappe/translations/el.csv b/frappe/translations/el.csv index 96ec4b05ab..af03983cb5 100644 --- a/frappe/translations/el.csv +++ b/frappe/translations/el.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Επιλέξτε ένα ποσό πεδίο. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Φόρτωση αρχείου εισαγωγής ... DocType: Assignment Rule,Last User,Τελευταίος χρήστης -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Μια νέα εργασία, {0}, έχει ανατεθεί σε εσάς από {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Οι προεπιλεγμένες ρυθμίσεις συνόδου αποθηκεύτηκαν apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Επαναφόρτωση αρχείου DocType: Email Queue,Email Queue records.,αρχεία ηλεκτρονικού ταχυδρομείου ουρά. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Δέντρο DocType: User,User Emails,Emails χρήστη DocType: User,Username,Όνομα χρήστη apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Εισαγωγή Zip +DocType: Scheduled Job Type,Create Log,Δημιουργία αρχείου καταγραφής apps/frappe/frappe/model/base_document.py,Value too big,Η τιμή είναι υπερβολικά μεγάλη DocType: DocField,DocField,Πεδίο εγγράφου DocType: GSuite Settings,Run Script Test,Εκτέλεση δοκιμής δέσμης ενεργειών @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Μηνιαίος DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Ενεργοποίηση εισερχομένων apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Κίνδυνος -DocType: Address,Email Address,Διεύθυνση ηλεκτρονικού ταχυδρομείου +apps/frappe/frappe/www/login.py,Email Address,Διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: Workflow State,th-large,Th-large DocType: Communication,Unread Notification Sent,Μη αναγνωσμένα γνωστοποίησης που της απέστειλε apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Η εξαγωγή δεν επιτρέπεται. Χρειάζεται ο ρόλος {0} για την εξαγωγή. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Ακ DocType: DocType,Is Published Field,Δημοσιεύεται πεδίο DocType: GCalendar Settings,GCalendar Settings,Ρυθμίσεις GCalendar DocType: Email Group,Email Group,email Ομάδα +apps/frappe/frappe/__init__.py,Only for {},Μόνο για {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - Δεν ήταν δυνατή η διαγραφή του συμβάντος {0} από το Ημερολόγιο Google, κωδικός σφάλματος {1}." DocType: Event,Pulled from Google Calendar,Προέρχεται από το Ημερολόγιο Google DocType: Note,Seen By,Θεάθηκε από apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Προσθήκη πολλαπλών -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Αποκτήσατε μερικά ενεργειακά σημεία apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Δεν είναι έγκυρη εικόνα χρήστη. DocType: Energy Point Log,Reverted,Επανήλθε DocType: Success Action,First Success Message,Πρώτο μήνυμα επιτυχίας @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Όχι σαν apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Λανθασμένη τιμή: το {0} πρέπει να είναι {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Αλλαγή ιδιοτήτων πεδίου ( απόκρυψη , μόνο για ανάγνωση , την άδεια κλπ. )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Εκτιμώ +DocType: Notification Settings,Document Share,Κοινή χρήση εγγράφου DocType: Workflow State,lock,Κλειδαριά apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Ρυθμίσεις για τη σελίδα επικοινωνίας. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Διαχειριστής Logged In @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Εάν είναι ενεργοποιημένο, το έγγραφο επισημαίνεται όπως φαίνεται, την πρώτη φορά που το ανοίγει ένας χρήστης" DocType: Auto Repeat,Repeat on Day,Επαναλάβετε την Ημέρα DocType: DocField,Color,Χρώμα +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Σημειώστε όλα ως αναγνωσμένα DocType: Data Migration Run,Log,Κούτσουρο DocType: Workflow State,indent-right,Εσοχή-δεξιά DocType: Has Role,Has Role,έχει ρόλος @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Εμφάνιση ανίχνευσης DocType: DocType,Default Print Format,Προεπιλογμένη μορφή εκτύπωσης DocType: Workflow State,Tags,Ετικέτες +DocType: Onboarding Slide,Slide Type,Τύπος διαφάνειας apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Κανένας: Τέλος της ροής εργασίας apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} πεδίο δεν μπορεί να οριστεί ως το μοναδικό στο {1}, καθώς υπάρχουν μη μοναδικές υπάρχουσες τιμές" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Τύποι εγγράφων @@ -135,7 +138,6 @@ DocType: Language,Guest,Επισκέπτης DocType: DocType,Title Field,Πεδίο τίτλου DocType: Error Log,Error Log,Αρχείο καταγραφής σφαλμάτων apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Μη έγκυρη διεύθυνση URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Τελευταίες 7 ημέρες apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Επαναλήψεις όπως "abcabcabc" είναι μόνο ελαφρώς πιο δύσκολο να μαντέψει από το "abc" DocType: Notification,Channel,Κανάλι apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Αν νομίζετε ότι αυτό είναι μη εξουσιοδοτημένη, παρακαλούμε να αλλάξετε τον κωδικό πρόσβασης διαχειριστή." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Πελάτης apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Επιλέξτε Στήλη apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Αυτή η μορφή έχει αλλάξει μετά την έχετε φορτωμένο DocType: Address,Himachal Pradesh,Χιματσάλ Πραντές +DocType: Notification Log,Notification Log,Μητρώο ειδοποιήσεων DocType: System Settings,"If not set, the currency precision will depend on number format","Εάν δεν έχει οριστεί, η ακρίβεια νομίσματος θα εξαρτηθεί από τη μορφή αριθμού" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Ανοίξτε το Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Φαίνεται ότι υπάρχει ένα πρόβλημα με τη διαμόρφωση της λωρίδας του διακομιστή. Σε περίπτωση αποτυχίας, το ποσό θα επιστραφεί στο λογαριασμό σας." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Ε apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Αποστολή DocType: Workflow Action Master,Workflow Action Name,Όνομα ενέργειας ροής εργασιών apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Οι τύποι εγγράφου δεν μπορούν να συγχωνευθούν -DocType: Web Form Field,Fieldtype,Τύπος πεδίου +DocType: Onboarding Slide Field,Fieldtype,Τύπος πεδίου apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Δεν είναι ένα αρχείο zip DocType: Global Search DocType,Global Search DocType,Παγκόσμια αναζήτηση DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Εστάλη μήνυμα email; apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Εναλλαγή χάρτη apps/frappe/frappe/desk/form/save.py,Did not cancel,Δεν έγινε η ακύρωση DocType: Social Login Key,Client Information,Πληροφορίες Πελάτη +DocType: Energy Point Rule,Apply this rule only once per document,Εφαρμόστε αυτόν τον κανόνα μόνο μία φορά ανά έγγραφο DocType: Workflow State,plus,Συν +DocType: DocField,Read Only Depends On,Μόνο ανάγνωση εξαρτάται από apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Εισέλθει ως Επισκέπτης ή Διαχειριστής DocType: Email Account,UNSEEN,ΑΟΡΑΤΟΣ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Διαχείριση αρχείων @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Αιτιολογία 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Καμία δραστηριότητα +DocType: Server Script,Script Manager,Διαχειριστής δέσμης ενεργειών +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Καμία δραστηριότητα apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Εφαρμογές τρίτου μέρους apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Ο πρώτος χρήστης θα γίνει ο διαχειριστής του συστήματος ( μπορείτε να το αλλάξετε αυτό αργότερα ). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Δεν υπάρχουν συμβάντα σήμερα apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Δεν μπορείτε να δώσετε σημεία ανασκόπησης στον εαυτό σας apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,Το DocType πρέπει να είναι Υποβάλλεται για το επιλεγμένο συμβάν στο Doc DocType: Workflow State,circle-arrow-up,Circle-arrow-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Δεν επιτρέπεται για {0}: {1}. Περιορισμένο πεδίο: {2} 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,You are not allowed to delete a standard Website Theme,Δεν επιτρέπεται να διαγράψετε ένα πρότυπο ιστοσελίδας Θέμα +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Δημιουργήστε το πρώτο σας {0} DocType: Data Import,Log Details,Στοιχεία καταγραφής DocType: Workflow Transition,Example,Παράδειγμα DocType: Webhook Header,Webhook Header,Επικεφαλίδα Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Ιστορικό συνομιλίας apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Σημείωσε ως διαβασμένο apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ενημέρωση {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Έχει ήδη υπάρξει μια διαφήμιση {0} με την ίδια σειρά διαφάνειας apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Απενεργοποίηση έκθεσης DocType: Translation,Contributed Translation Doctype Name,Εισαγόμενο όνομα μετάφρασης Doctype +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας DocType: PayPal Settings,Redirect To,ανακατεύθυνση να DocType: Data Migration Mapping,Pull,Τραβήξτε DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Εσωτερική εγγρ DocType: Energy Point Settings,Review Levels,Επίπεδα αναθεώρησης DocType: Workflow State,Comment,Σχόλιο DocType: Data Migration Plan,Postprocess Method,Μέθοδος μετά την επεξεργασία +DocType: DocType Action,Action Type,Τύπος ενέργειας apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Βγάλε φωτογραφία DocType: Assignment Rule,Round Robin,Γύρος Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",Μπορείτε να αλλάξετε υποβληθέντα έγγραφα ακυρώνοντας τα και στη συνέχεια τροποποιώντας τα. @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Αποθήκευση ως DocType: Comment,Seen,Επίσκεψη apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Δείτε περισσότερες λεπτομέρειες +DocType: Server Script,Before Submit,Πριν από την Υποβολή DocType: System Settings,Run scheduled jobs only if checked,Εκτέλεση χρονοπρογραμματισμένων εργασιών μόνο αν είναι επιλεγμένο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,Θα εμφανίζεται μόνο εάν είναι ενεργοποιημένη τίτλοι των ενοτήτων apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Αρχείο @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox access key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Λανθασμένο όνομα πεδίου {0} στη διαμόρφωση add_fetch προσαρμοσμένου σεναρίου apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Επιλέξτε την Επαφή Google με την οποία πρέπει να συγχρονιστεί η επαφή. DocType: Web Page,Main Section (HTML),Κύρια ενότητα (HTML) +DocType: Scheduled Job Type,Annual,Ετήσιος DocType: Workflow State,headphones,Ακουστικά apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Απαιτείται κωδικός πρόσβασης ή επιλέξτε Αναμονή κωδικό πρόσβασης DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,Π.Χ. replies@yourcomany.Com. Όλες οι απαντήσεις θα έρθουν σε αυτόν τον φάκελο εισερχομένων. DocType: Slack Webhook URL,Slack Webhook URL,Slack URL Webhook +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Καθορίζει τη σειρά της διαφάνειας στον οδηγό. Εάν η διαφάνεια δεν πρέπει να εμφανίζεται, η προτεραιότητα πρέπει να είναι 0." DocType: Data Migration Run,Current Mapping,Τρέχουσα χαρτογράφηση apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Απαιτείται ένα έγκυρο e-mail και όνομα apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Κάντε όλα τα συνημμένα ιδιωτικά @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Κανόνες μετάβασης apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Εμφανίζονται μόνο οι πρώτες {0} σειρές στην προεπισκόπηση apps/frappe/frappe/core/doctype/report/report.js,Example:,Παράδειγμα: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Περιορισμοί DocType: Workflow,Defines workflow states and rules for a document.,Καθορίζει τις καταστάσεις ροής εργασίας και τους κανόνες για ένα έγγραφο. DocType: Workflow State,Filter,φίλτρο apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Ελέγξτε το αρχείο καταγραφής σφαλμάτων για περισσότερες πληροφορίες: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Δουλειά apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} αποσυνδεθεί: {1} DocType: Address,West Bengal,Δυτική Βεγγάλη +DocType: Onboarding Slide,Information,Πληροφορίες apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : Δεν είναι δυνατή η ανάθεση υποβολής αν δεν είναι υποβλητέα DocType: Transaction Log,Row Index,Δείκτης σειράς DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,κουμπί Βοήθεια DocType: Kanban Board Column,purple,μωβ DocType: About Us Settings,Team Members,Μέλη της ομάδας +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Θα εκτελέσει προγραμματισμένες εργασίες μόνο μία φορά την ημέρα για ανενεργούς ιστότοπους. Προεπιλεγμένες 4 ημέρες αν είναι ρυθμισμένη στο 0. DocType: Assignment Rule,System Manager,Διαχειριστής συστήματος +DocType: Scheduled Job Log,Scheduled Job,Προγραμματισμένη εργασία DocType: Custom DocPerm,Permissions,Δικαιώματα apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks για εσωτερική ολοκλήρωση DocType: Dropbox Settings,Allow Dropbox Access,Επίτρεψε πρόσβαση στο dropbox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scan DocType: Email Flag Queue,Email Flag Queue,Email Ουρά Σημαία DocType: Access Log,Columns / Fields,Στήλες / Πεδία apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Φύλλα στυλ για μορφές εκτύπωσης +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Το πεδίο Συγκεντρωτική λειτουργία είναι απαραίτητο για να δημιουργήσετε ένα γράφημα πίνακα ελέγχου apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,δεν μπορεί να εντοπίσει ανοικτή {0}. Δοκιμάστε κάτι άλλο. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Οι πληροφορίες σας έχει υποβληθεί apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Ο χρήστης {0} δεν μπορεί να διαγραφεί @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Όνομα πεδίου DocType: Assignment Rule,Assign To Users,Αναθέστε στους χρήστες apps/frappe/frappe/public/js/frappe/utils/utils.js,or,Ή apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ενότητα όνομα ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Συνέχεια +DocType: Onboarding Slide,Continue,Συνέχεια apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Η ενσωμάτωση Google είναι απενεργοποιημένη. DocType: Custom Field,Fieldname,Όνομα πεδίου DocType: Workflow State,certificate,Πιστοποιητικό apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Επαλήθευση ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Η εργασία σας στο {0} {1} έχει καταργηθεί apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Η πρώτη στήλη των δεδομένων πρέπει να είναι κενή. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Εμφάνιση όλων των εκδόσεων apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Προβολή σχολίου @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Περιορισμός IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Ταμπλό apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Δεν μπορεί να γίνει αποστοή e-mail αυτή τη στιγμή apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - Δεν ήταν δυνατή η ενημέρωση του συμβάντος {0} στο Ημερολόγιο Google, κωδικός σφάλματος {1}." +DocType: Notification Log,Email Content,Περιεχόμενο ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Αναζήτηση ή πληκτρολόγηση μιας εντολής DocType: Activity Log,Timeline Name,Timeline Όνομα apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Μόνο ένα {0} μπορεί να οριστεί ως πρωτεύον. DocType: Email Account,e.g. smtp.gmail.com,π.χ. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Προσθήκη νέου κανόνα DocType: Contact,Sales Master Manager,Διαχειριστής κύριων εγγραφών πωλήσεων +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Θα πρέπει να ενεργοποιήσετε το JavaScript για την εφαρμογή σας. DocType: User Permission,For Value,Για την τιμή DocType: Event,Google Calendar ID,Αναγνωριστικό Ημερολογίου Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Ένα τελευταίο βήμα @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Πεδίο μεσαίου ονόμ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Εισαγωγή {0} από {1} DocType: GCalendar Account,Allow GCalendar Access,Επιτρέψτε την πρόσβαση στο GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,Το {0} είναι υποχρεωτικό πεδίο +DocType: DocType,Documentation Link,Σύνδεσμος τεκμηρίωσης apps/frappe/frappe/templates/includes/login/login.js,Login token required,Απαιτείται ένα διακριτικό σύνδεσης apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Μηνιαία Κατάταξη: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Επιλέξτε πολλά στοιχεία λίστας @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Url αρχείου DocType: Version,Table HTML,Πίνακας HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Προσθήκη Συνδρομητές +DocType: Notification Log,Energy Point,Ενεργειακό σημείο apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Επερχόμενα συμβάντα για σήμερα DocType: Google Calendar,Push to Google Calendar,Πιέστε στο Ημερολόγιο Google DocType: Notification Recipient,Email By Document Field,Email ανά πεδίο εγγράφου @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Μακριά DocType: Currency,Fraction Units,Μονάδες κλάσματος apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} από {1} έως {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Επισημάνετε ως τελείωσε DocType: Chat Message,Type,Τύπος DocType: Google Settings,OAuth Client ID,Αναγνωριστικό πελάτη OAuth DocType: Auto Repeat,Subject,Θέμα apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Επιστροφή στο γραφείο DocType: Web Form,Amount Based On Field,Ποσό με βάση το πεδίο +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} δεν έχει παρακολουθηθεί καμία έκδοση. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Ο χρήστης είναι υποχρεωτική για το μερίδιο DocType: DocField,Hidden,κρυμμένο DocType: Web Form,Allow Incomplete Forms,Επιτρέψτε Ελλιπής Έντυπα @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Παρακαλώ ελέγξτε το email σας για επαλήθευση apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας DocType: Communication,Bounced,Ακάλυπτες +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,του DocType: Deleted Document,Deleted Name,διαγράφεται Όνομα apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Χρήστες συστήματος και ιστοσελίδας DocType: Workflow Document State,Doc Status,Κατάσταση εγγράφου @@ -521,6 +546,7 @@ DocType: Language,Language Code,Κωδικός γλώσσας DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Σημείωση: Από προεπιλογή, στέλνονται μηνύματα ηλεκτρονικού ταχυδρομείου για αποτυχημένα αντίγραφα ασφαλείας." apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Προσθήκη φίλτρου apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS αποστέλλονται στην παρακάτω αριθμούς: {0} +DocType: Notification Settings,Assignments,Αναθέσεις apps/frappe/frappe/utils/data.py,{0} and {1},{0} και {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Ξεκινήστε μια συζήτηση. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Πάντα προσθέστε "Σχέδιο" Τομέας για σχέδιο εκτύπωση εγγράφων @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Τρέχουσα εκκίνη apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει επισημανθεί ως ανεπιθύμητο DocType: Comment,Website Manager,Διαχειριστής ιστοσελίδας apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Η αποστολή του αρχείου αποσυνδέθηκε. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα. +DocType: Data Import Beta,Show Failed Logs,Εμφάνιση αποτυχημένων αρχείων καταγραφής apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Μεταφράσεις apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Έχετε επιλέξει Έγγραφα ή Άκυρα έγγραφα apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Το έγγραφο {0} έχει οριστεί σε κατάσταση {1} έως {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,έγγραφο ουρά DocType: GSuite Templates,Destination ID,Αναγνωριστικό προορισμού DocType: Desktop Icon,List,Λίστα DocType: Activity Log,Link Name,Όνομα σύνδεσμο +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Έχετε \ DocType: System Settings,mm/dd/yyyy,μμ/ηη/εεεε +DocType: Onboarding Slide,Onboarding Slide,Βιντεοσκόπηση Slide apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Λανθασμένος κωδικός: DocType: Print Settings,Send document web view link in email,Αποστολή εγγράφου σύνδεσμο προβολή ιστοσελίδων στο email apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Προηγούμενο @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,σκούρο γκρι apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Επιτυχείς: {0} έως {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Δεν είναι δυνατή η αλλαγή των λεπτομερειών του χρήστη στη δοκιμαστική έκδοση. Εγγραφείτε για έναν νέο λογαριασμό στη διεύθυνση https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Πτώση +DocType: Dashboard Chart,Aggregate Function Based On,Η συνθετική λειτουργία βασίζεται σε apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Παρακαλώ δημιουργήστε αντίγραφο αυτού για να κάνετε αλλαγές apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Πατήστε Enter για αποθήκευση apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Δημιουργία PDF απέτυχε λόγω της διακοπής των συνδέσεων εικόνας @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Ημέρες Πριν apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Τα Ημερήσια Γεγονότα πρέπει να ολοκληρωθούν την ίδια μέρα. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Επεξεργασία... DocType: Workflow State,volume-down,Volume-down +DocType: Onboarding Slide,Help Links,Σύνδεσμοι βοήθειας apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Η πρόσβαση δεν επιτρέπεται από αυτή τη διεύθυνση IP +DocType: Notification Settings,Enable Email Notifications,Ενεργοποίηση ειδοποιήσεων ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/desk/reportview.py,No Tags,Δεν υπάρχουν ετικέτες DocType: Email Account,Send Notification to,Αποστολή ειδοποίησης σε DocType: DocField,Collapsible,Αναδιπλούμενο @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Τελευταία δημιουργία α DocType: Customize Form Field,Customize Form Field,Προσαρμογή πεδίου φόρμας DocType: Energy Point Rule,For Document Event,Για το συμβάν εγγράφων DocType: Website Settings,Chat Room Name,Όνομα αίθουσας συνομιλίας +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Αμετάβλητος DocType: OAuth Client,Grant Type,Είδος επιδότησης apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Ελέγξτε ποια έγγραφα είναι δυνατόν να αναγνωσθούν από έναν χρήστη DocType: Deleted Document,Hub Sync ID,Αναγνωριστικό συγχρονισμού Hub @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,χρ DocType: Auto Repeat,Quarterly,Τριμηνιαίος apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Τομέα email δεν έχει ρυθμιστεί για αυτόν το λογαριασμό, δημιουργήστε έναν;" DocType: User,Reset Password Key,Επαναφορά κωδικού +DocType: Dashboard Chart,All Time,Συνεχώς apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Κατάσταση παρανόμου εγγράφου για {0} DocType: Email Account,Enable Auto Reply,Ενεργοποίηση αυτόματης απάντησης apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Δεν φαίνεται @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Το DocType: Email Account,Notify if unreplied,Ειδοποίηση αν μη απαντημένα apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Σάρωση του QR Code και εισαγωγή του εμφανιζόμενου κωδικού. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Ενεργοποίηση κλίσεων +DocType: Scheduled Job Type,Hourly Long,Ωριαία DocType: System Settings,Minimum Password Score,Ελάχιστη βαθμολογία κωδικού πρόσβασης DocType: DocType,Fields,Πεδία DocType: System Settings,Your organization name and address for the email footer.,Το όνομα του οργανισμού σας και τη διεύθυνση για την ηλεκτρονική υποσέλιδο. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Γονικ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,Το S3 Backup ολοκληρώθηκε! apps/frappe/frappe/config/desktop.py,Developer,Προγραμματιστής apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Δημιουργήθηκε +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Για να το ενεργοποιήσετε, ακολουθήστε τις οδηγίες στον παρακάτω σύνδεσμο: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} Στη γραμμή {1} δεν μπορεί να έχει και url και θυγατρικά είδη apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Θα πρέπει να υπάρχει τουλάχιστον μια σειρά για τους παρακάτω πίνακες: {0} DocType: Print Format,Default Print Language,Προεπιλεγμένη γλώσσα εκτύπωσης apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Πρόγονοι του apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Η ρίζα {0} δεν μπορεί να διαγραφεί +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Δεν υπάρχουν αποτυχημένα αρχεία καταγραφής apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Δεν υπάρχουν ακόμη σχόλια apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Ρυθμίστε το SMS προτού το ορίσετε ως μέθοδο ελέγχου ταυτότητας, μέσω Ρυθμίσεων SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Ο τύπος εγγράφου και το όνομα είναι απαραίτητα @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Αντικείμενα υποσέλιδο apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Μενού DocType: DefaultValue,DefaultValue,Προεπιλεγμένη τιμή DocType: Auto Repeat,Daily,Καθημερινά +DocType: Onboarding Slide,Max Count,Μέγιστη μέτρηση apps/frappe/frappe/config/users_and_permissions.py,User Roles,Ρόλοι χρηστών DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Ο ρυθμιστής ιδιότητας παρακάμπτει έναν πρότυπο τύπο εγγράφου ή μια ιδιότητα πεδίου apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Δεν είναι δυνατή η ενημέρωση : εσφαλμένος / ληγμένος υπερσύνδεσμος. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","Target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Πλήθος DocType: Data Import Beta,Import File,Εισαγωγή αρχείου +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Σφάλμα προτύπου apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Στήλη {0} υπάρχει ήδη. DocType: ToDo,High,Υψηλός apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Νέο γεγονός @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Εμφάνιση στο φίλτρο DocType: Address,Daman and Diu,Δαμάν και Ντιού apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Έργο DocType: Address,Personal,Προσωπικός +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Ροές ρυθμίσεων εκτύπωσης ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Δείτε λεπτομέρειες https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Μαζική Μετονομασία DocType: Email Queue,Show as cc,Εμφάνιση ως cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Βγάλτε βίν DocType: Contact Us Settings,Introductory information for the Contact Us Page,Εισαγωγικές πληροφορίες για την σελίδα επικοινωνίας DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,Thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Ακύρωση εγγράφων DocType: User,Send Notifications for Email threads,Αποστολή ειδοποιήσεων για μηνύματα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Καθ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Δεν είναι σε κατάσταση προγραμματιστή @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Το αρχ DocType: DocField,In Global Search,Στην Σφαιρική Αναζήτηση DocType: System Settings,Brute Force Security,Ασφάλεια βίαιης βίας DocType: Workflow State,indent-left,Εσοχή-αριστερά -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} χρόνια πριν apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Είναι επικίνδυνο να διαγράψετε αυτό το αρχείο: {0}. Επικοινωνήστε με το διαχειριστή του συστήματός σας. DocType: Currency,Currency Name,Όνομα νομίσματος apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Δεν Emails @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Πεδίο χρήστη DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Πιέστε Διαγραφή apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} έχετε ήδη διαγραφή για {1} {2} +DocType: Scheduled Job Type,Stopped,Σταματημένη apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Δεν έγινε η αφαίρεση apps/frappe/frappe/desk/like.py,Liked,Άρεσε apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Αποστολή τώρα apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Το τυπικό DocType δεν μπορεί να έχει προεπιλεγμένη μορφή εκτύπωσης, χρησιμοποιήστε τη ρύθμιση Customize Form" +DocType: Server Script,Allow Guest,Επιτρέψτε Guest DocType: Report,Query,Ερώτημα DocType: Customize Form,Sort Order,Σειρά ταξινόμησης apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Μέθοδος ελέγχου ταυτότητας δύο παραγόντων apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Αρχικά ορίστε το όνομα και αποθηκεύστε την εγγραφή. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 εγγραφές +DocType: DocType Link,Link Fieldname,Link Όνομα πεδίου apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Κοινή χρήση με {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Κατάργηση DocType: View Log,Reference Name,Όνομα αναφοράς apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Αλλαγή χρήστη +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Πρώτα apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ενημέρωση μεταφράσεων DocType: Error Snapshot,Exception,Εξαίρεση DocType: Email Account,Use IMAP,Χρήση IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Κανόνες που καθορίζουν τη μετάβαση της κατάστασης στη ροή εργασίας. DocType: File,Folder,Φάκελος DocType: Website Route Meta,Website Route Meta,Ιστοσελίδα Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Εντοπισμός πεδίου διαφάνειας DocType: DocField,Index,Δείκτης DocType: Email Group,Newsletter Manager,Ενημερωτικό Δελτίο Διευθυντής apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Επιλογή 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ο apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Ρύθμιση διαγραμμάτων DocType: User,Last IP,Τελευταία IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Προσθέστε ένα θέμα στο email σας -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Ένα νέο έγγραφο {0} έχει μοιραστεί μαζί σας {1}. DocType: Data Migration Connector,Data Migration Connector,Υποδοχή μετεγκατάστασης δεδομένων apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} επανήλθε {1} DocType: Email Account,Track Email Status,Παρακολούθηση Κατάστασης Email @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Προεπιλογμένα εξερχό DocType: Workflow State,play,Παιχνίδι apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Κάντε κλικ στον παρακάτω σύνδεσμο για να ολοκληρωθεί η εγγραφή σας και να ορίσετε έναν νέο κωδικό πρόσβασης apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Δεν έγινε η προσθήκη +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} κέρδισε {1} βαθμούς για {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Δεν Λογαριασμοί email ειδικό προορισμό DocType: S3 Backup Settings,eu-west-2,eu-δυτικό-2 DocType: Contact Us Settings,Contact Us Settings,Ρυθμίσεις επικοινωνίας @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Αναζ DocType: Workflow State,text-width,Text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Μέγιστο Όριο Συνημμένο για αυτό το ρεκόρ του. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Αναζήτηση βάσει ονόματος αρχείου ή επέκτασης +DocType: Onboarding Slide,Slide Title,Τίτλος διαφάνειας DocType: Notification,View Properties (via Customize Form),Δείτε τα ακίνητα (μέσω Προσαρμογή έντυπο) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Κάντε κλικ σε ένα αρχείο για να το επιλέξετε. DocType: Note Seen By,Note Seen By,Σημείωση φαίνεται από το @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Κοινόχρηστη διεύθυνση URL DocType: System Settings,Allow Consecutive Login Attempts ,Επιτρέψτε τις προσπάθειες συνεχούς σύνδεσης apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Παρουσιάστηκε σφάλμα κατά τη διαδικασία πληρωμής. Παρακαλώ επικοινωνήστε μαζί μας. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Εάν ο τύπος διαφάνειας είναι Δημιουργία ή Ρυθμίσεις, θα πρέπει να υπάρχει μια μέθοδος 'create_onboarding_docs' στο αρχείο {ref_doctype} .py που πρέπει να εκτελεστεί μετά την ολοκλήρωση της διαφάνειας." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ημέρες πριν DocType: Email Account,Awaiting Password,Εν αναμονή Κωδικός DocType: Address,Address Line 1,Γραμμή διεύθυνσης 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Δεν είναι απόγονοι του DocType: Contact,Company Name,Όνομα εταιρείας DocType: Custom DocPerm,Role,Ρόλος -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Ρυθμίσεις... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,στο πρόγραμμα περιήγησής σας apps/frappe/frappe/utils/data.py,Cent,Σεντ ,Recorder,Μηχάνημα εγγραφής @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Παρακολουθήστε αν το email σας έχει ανοιχτεί από τον παραλήπτη.
Σημείωση: Εάν στέλνετε σε πολλούς παραλήπτες, ακόμη και αν ένας παραλήπτης διαβάζει το μήνυμα ηλεκτρονικού ταχυδρομείου, θα θεωρείται "Άνοιγμα"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Οι τιμές που λείπουν είναι απαραίτητες apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Να επιτρέπεται η πρόσβαση στις Επαφές Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Περιορισμένος DocType: Data Migration Connector,Frappe,Φραπέ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Επισήμανση ως μη αναγνωσμένα DocType: Activity Log,Operation,Λειτουργία @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Επιτρέψτε Εκτύπωση DocType: Communication,Clicked,Έγινε κλικ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Απαγορεύεται η παρακολούθηση apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Προγραμματισμένη για να στείλετε DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,Αρχείο αντιγράφων ασφαλείας @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Δεν βρέ apps/frappe/frappe/config/customization.py,Add custom forms.,Προσθέστε προσαρμοσμένες φόρμες. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} στο {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,υπέβαλε αυτό το έγγραφο -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Το σύστημα παρέχει πολλούς προκαθορισμένες ρόλους. Μπορείτε να προσθέσετε νέους ρόλους για να ορίσετε ειδικότερα δικαιώματα . DocType: Communication,CC,CC DocType: Country,Geo,Γεωγραφία DocType: Data Migration Run,Trigger Name,Όνομα ενεργοποίησης -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Τομείς +DocType: Onboarding Slide,Domains,Τομείς DocType: Blog Category,Blog Category,Κατηγορία blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Δεν είναι δυνατή η χαρτογράφηση γιατί ακόλουθο όρο αποτυγχάνει: DocType: Role Permission for Page and Report,Roles HTML,Html ρόλων @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Σάββατο DocType: User,Represents a User in the system.,Αντιπροσωπεύει ένα χρήστη στο σύστημα. DocType: List View Setting,Disable Auto Refresh,Απενεργοποίηση αυτόματης ανανέωσης DocType: Comment,Label,Ετικέτα -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Το έργο {0}, που έχετε αντιστοιχίσει {1}, έχει κλείσει." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Κλείστε αυτό το παράθυρο DocType: Print Format,Print Format Type,Τύπος μορφοποίησης εκτύπωσης DocType: Newsletter,A Lead with this Email Address should exist,Μια Σύσταση με αυτή την διεύθυνση ηλεκτρονικού ταχυδρομείου θα πρέπει να υπάρχει @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Ρυθμίσεις smtp apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,επιλέξτε ένα DocType: Data Export,Filter List,Λίστα φίλτρων DocType: Data Export,Excel,Προέχω +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Μήνυμα αυτόματης απάντησης DocType: Data Migration Mapping,Condition,Συνθήκη apps/frappe/frappe/utils/data.py,{0} hours ago,Πριν από {0} ώρες @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Συντελεστής DocType: Communication,Sent Read Receipt,Αποστέλλονται Διαβάστε Παραλαβή DocType: Email Queue,Unsubscribe Method,Μέθοδος Διαγραφή +DocType: Onboarding Slide,Add More Button,Προσθήκη κουμπιού "Περισσότερα" DocType: GSuite Templates,Related DocType,Σχετικό πρότυπο DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Επεξεργασία για να προσθέσετε περιεχόμενο apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Επιλέξτε Γλώσσες apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Στοιχεία κάρτας apps/frappe/frappe/__init__.py,No permission for {0},Δεν άδεια για {0} DocType: DocType,Advanced,Για προχωρημένους +DocType: Onboarding Slide,Slide Image Source,Σύρετε την πηγή εικόνας apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Φαίνεται κλειδί API ή API μυστικό είναι λάθος !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Παραπομπή: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,κυρία @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Κύρια DocType: DocType,User Cannot Create,Ο χρήστης δεν μπορεί να δημιουργήσει apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Ολοκληρώθηκε με επιτυχία apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,πρόσβαση Dropbox έχει εγκριθεί! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Είστε βέβαιοι ότι θέλετε να συγχωνεύσετε το {0} με {1}; DocType: Customize Form,Enter Form Type,Εισάγετε τύπο φόρμας DocType: Google Drive,Authorize Google Drive Access,Εξουσιοδοτήστε την πρόσβαση στο Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Λείπει η παράμετρος Kanban Board Name @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Επιτρέποντας DocType , DocType . Να είστε προσεκτικοί !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Προσαρμοσμένες μορφές για την εκτύπωση, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Άθροισμα {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Ενημέρωση στη νέα έκδοση DocType: Custom Field,Depends On,Εξαρτάται από DocType: Kanban Board Column,Green,Πράσινος DocType: Custom DocPerm,Additional Permissions,Πρόσθετα δικαιώματα @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Κοινωνικός apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Ημερολόγιο Google - Δεν ήταν δυνατή η δημιουργία ημερολογίου για {0}, κωδικός σφάλματος {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Επεξεργασία Σειρά DocType: Workflow Action Master,Workflow Action Master,Κύρια εγγραφή ενέργειας ροής εργασίας +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Διαγραφή όλων DocType: Custom Field,Field Type,Τύπος πεδίου apps/frappe/frappe/utils/data.py,only.,Μόνο. DocType: Route History,Route History,Ιστορικό διαδρομής @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Ξέχασες τον κωδ DocType: System Settings,yyyy-mm-dd,Εεεε-μμ-ηη apps/frappe/frappe/desk/report/todo/todo.py,ID,ταυτότητα apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Σφάλμα Διακομιστή +DocType: Server Script,After Delete,Μετά τη διαγραφή apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Δείτε όλες τις προηγούμενες αναφορές. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Είσοδος απαιτείται ταυτότητα DocType: Website Slideshow,Website Slideshow,Παρουσίαση ιστοσελίδας apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Δεν υπάρχουν δεδομένα DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Σύνδεσμος που είναι η αρχική σελίδα του ιστοτόπου. Τυπικοί σύνδεσμοι (index, login, τα προϊόντα, το blog, προφίλ, επικοινωνία)" +DocType: Server Script,After Submit,Μετά την Υποβολή apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Απέτυχε ο έλεγχος ταυτότητας, ενώ λαμβάνετε μηνύματα ηλεκτρονικού ταχυδρομείου από το λογαριασμό email {0}. Μήνυμα από το διακομιστή: {1}" DocType: User,Banner Image,Εικόνα banner DocType: Custom Field,Custom Field,Προσαρμοσμένο πεδίο @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Εάν ο χρήστης δεν έχει κανένα ρόλο ελεγχθεί, τότε ο χρήστης γίνεται ένα "Χρήστης Συστήματος». "Ο χρήστης του συστήματος" έχει πρόσβαση στην επιφάνεια εργασίας" DocType: System Settings,Date and Number Format,Ημερομηνία και μορφή αριθμών apps/frappe/frappe/model/document.py,one of,Ένας από -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Έλεγχος μια στιγμή apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Δείτε τις ετικέτες DocType: DocField,HTML Editor,HTML Editor 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,Ενέργειες -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ρύθμιση> Χρήστης +DocType: DocType,Actions,Ενέργειες DocType: Workflow State,align-justify,Ευθυγράμμιση σε όλη τη γραμμή DocType: User,Middle Name (Optional),Πατρώνυμο (προαιρετικό) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Δεν επιτρέπεται @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Δεν υπ DocType: System Settings,Security,Ασφάλεια apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Προγραμματισμένη για να αποσταλεί σε {0} αποδέκτες apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Τομή +DocType: Server Script,After Save,Μετά την Αποθήκευση apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},μετονομάστηκε από {0} έως {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} {1} ({2} σειρές με παιδιά) DocType: Currency,**Currency** Master,Κύρια εγγραφή ** νομίσματος ** @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Τιμές φίλτρου DocType: Communication,User Tags,Ετικέτες χρηστών DocType: Data Migration Run,Fail,Αποτυγχάνω DocType: Workflow State,download-alt,Download-alt +DocType: Scheduled Job Type,Last Execution,Τελευταία εκτέλεση DocType: Data Migration Run,Pull Failed,Το τράβηγμα απέτυχε apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Εμφάνιση / Απόκρυψη καρτών DocType: Communication,Feedback Request,feedback Αίτηση apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Εισαγωγή δεδομένων από αρχεία CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Ακόλουθα πεδία λείπουν: +DocType: Notification Log,From User,Από τον χρήστη apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Ακύρωση {0} DocType: Web Page,Main Section,Κύριο τμήμα DocType: Page,Icon,Εικονίδιο apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Συμβουλή: Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Ρυθμίστε τις ειδοποιήσεις για αναφορές, αναθέσεις, ενεργειακά σημεία και πολλά άλλα." DocType: DocField,Allow in Quick Entry,Να επιτρέπεται στη Γρήγορη Καταχώρηση apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,Ηη/μμ/εεεε @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Θέμα URL DocType: Customize Form,Sort Field,Πεδίο ταξινόμησης DocType: Razorpay Settings,Razorpay Settings,Ρυθμίσεις Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Επεξεργασία φίλτρου -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Πρόσθεσε περισσότερα DocType: System Settings,Session Expiry Mobile,Συνεδρία λήξης Κινητό apps/frappe/frappe/utils/password.py,Incorrect User or Password,Λανθασμένος χρήστης ή κωδικός πρόσβασης apps/frappe/frappe/templates/includes/search_box.html,Search results for,Αποτελέσματα αναζήτησης για @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Κανόνας ενεργειακού σημείου DocType: Communication,Delayed,Καθυστερημένη apps/frappe/frappe/config/settings.py,List of backups available for download,Κατάλογος των αντιγράφων ασφαλείας διαθέσιμο για download +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Δοκιμάστε τη νέα εισαγωγή δεδομένων apps/frappe/frappe/www/login.html,Sign up,Εγγραφή apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Γραμμή {0}: Δεν επιτρέπεται να απενεργοποιήσετε την επιλογή Υποχρεωτική για τυπικά πεδία +DocType: Webhook,Enable Security,Ενεργοποιήστε την ασφάλεια apps/frappe/frappe/config/customization.py,Dashboards,Πίνακες ελέγχου DocType: Test Runner,Output,Παραγωγή DocType: Milestone,Track Field,Στίβος @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Ορισμός ιδιότητας apps/frappe/frappe/config/customization.py,Add fields to forms.,Προσθήκη πεδίων σε φόρμες. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Φαίνεται ότι κάτι δεν πάει καλά με τη διαμόρφωση Paypal αυτού του ιστότοπου. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Προσθήκη κριτικής +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} σας απονεμήθηκε μια νέα εργασία {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Μέγεθος γραμματοσειράς (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Μόνο τα τυπικά DocTypes επιτρέπεται να προσαρμόζονται από το Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Στοιχείο Μενού apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Ορίστε φίλτρα DocType: Contact Us Settings,Email ID,Email ID DocType: Energy Point Rule,Multiplier Field,Πολλαπλασιαστικό πεδίο +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Δεν ήταν δυνατή η δημιουργία της σειράς Razorpay. Επικοινωνήστε με τον Διαχειριστή DocType: Dashboard Chart,Time Interval,Χρονικό διάστημα DocType: Activity Log,Keep track of all update feeds,Παρακολουθήστε όλες τις ροές ενημέρωσης +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} μοιράστηκε μαζί σας ένα έγγραφο {1} {2} 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,Επιλογές ερωτημάτων @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Κλειδί DocType: Address,Contacts,Επαφές DocType: System Settings,Setup Complete,Η εγκατάσταση ολοκληρώθηκε apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Έκθεση του συνόλου των κοινοποιήσεων του εγγράφου +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Το πρότυπο εισαγωγής πρέπει να είναι τύπου .csv, .xlsx ή .xls" apps/frappe/frappe/www/update-password.html,New Password,Νέος κωδικός apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Φίλτρο {0} λείπει apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Συγνώμη! Δεν μπορείτε να διαγράψετε δημιουργείται αυτόματα σχόλια @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Τρέξιμο DocType: Blog Post,Content (HTML),Περιεχόμενο (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Ρύθμιση για DocType: Personal Data Download Request,User Name,Ονομα χρήστη DocType: Workflow State,minus-sign,Minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Δεν βρέθηκε @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Δεν υπάρχει το apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Εξαγωγή Προσαρμοσμένη Δικαιώματα apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Δεν βρέθηκαν αντικείμενα. DocType: Data Export,Fields Multicheck,Πεδία Multilack +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Πλήρης DocType: Activity Log,Login,Σύνδεση DocType: Web Form,Payments,Πληρωμές apps/frappe/frappe/www/qrcode.html,Hi {0},Γεια σας {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Ένταξη στο Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} επέστρεψε τα σημεία σας στις {1} {2} DocType: System Settings,Enable Scheduled Jobs,Ενεργοποίηση χρονοπρογραμματισμένων εργασιών apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Σημειώσεις: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Αδρανής @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Πρό apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Σφάλμα αδειών apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Το όνομα του {0} δεν μπορεί να είναι {1} DocType: User Permission,Applicable For,Εφαρμοστέο για +DocType: Dashboard Chart,From Date,Από ημερομηνία apps/frappe/frappe/core/doctype/version/version_view.html,Success,Επιτυχία apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Η συνεδρία έληξε DocType: Kanban Board Column,Kanban Board Column,Kanban Διοικητικό Στήλη @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ε apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,. δεν επιτρέπεται σε συνθήκες DocType: Async Task,Async Task,Ασύγχρονη Εργασία DocType: Workflow State,picture,Εικόνα -apps/frappe/frappe/www/complete_signup.html,Complete,Πλήρης +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Πλήρης DocType: DocType,Image Field,Το πεδίο εικόνα DocType: Print Format,Custom HTML Help,Προσαρμοσμένη Βοήθεια HTML DocType: LDAP Settings,Default Role on Creation,Προεπιλεγμένος ρόλος στη δημιουργία @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Επόμενη κατάσταση DocType: User,Block Modules,Αποκλεισμός Ενότητες DocType: Print Format,Custom CSS,Προσαρμοσμένο css +DocType: Energy Point Rule,Apply Only Once,Εφαρμόστε μόνο μία φορά apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Προσθέστε ένα σχόλιο DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Αγνοείται: {0} έως {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Προεπιλεγμένα εισερχ DocType: Workflow State,repeat,Επανάληψη DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Η τιμή πρέπει να είναι μία από τις {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Ακύρωση όλων των εγγράφων DocType: Role,"If disabled, this role will be removed from all users.","Αν απενεργοποιηθεί, ο ρόλος αυτός θα πρέπει να αφαιρεθεί από όλους τους χρήστες." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Μεταβείτε στη λίστα {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Βοήθεια για αναζήτηση @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Εγγεγ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Η αυτόματη επανάληψη για αυτό το έγγραφο έχει απενεργοποιηθεί. DocType: DocType,Hide Copy,Απόκρυψη αντιγράφου apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Καταργήστε όλους τους ρόλους +DocType: Server Script,Before Save,Πριν αποθηκεύσετε apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} Πρέπει να είναι μοναδικό apps/frappe/frappe/model/base_document.py,Row,Γραμμή apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & πρότυπο ηλεκτρονικού ταχυδρομείου" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Επιτυχής εισαγωγή {0} DocType: User,API Key,Κλειδί API DocType: Email Account,Send unsubscribe message in email,Αποστολή unsubscribe μήνυμα ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Επεξεργασία τίτλου apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Όνομα πεδίου το οποίο θα είναι ο τύπος εγγράφου για αυτό το πεδίο συνδέσμου. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Τα έγγραφα που σας έχουν ανατεθεί και από εσάς. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Μπορείτε επίσης να αντιγράψετε-επικολλήσετε αυτό @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Επισύναψη εικόνας DocType: Workflow State,list-alt,List-alt apps/frappe/frappe/www/update-password.html,Password Updated,Ο κωδικός ενημερώθηκε +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Βήματα για την επαλήθευση της σύνδεσής σας apps/frappe/frappe/utils/password.py,Password not found,Ο κωδικός πρόσβασης δεν βρέθηκε +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Μήκος σελίδας DocType: Email Queue,Expose Recipients,εκθέτουν Παραλήπτες apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Προσάρτηση να είναι υποχρεωτική για τα εισερχόμενα μηνύματα @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Σύστημα DocType: Web Form,Max Attachment Size (in MB),Max Συνημμένο Μέγεθος (σε MB) apps/frappe/frappe/www/login.html,Have an account? Login,Έχετε λογαριασμό; Σύνδεση +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Ρυθμίσεις εκτύπωσης ... DocType: Workflow State,arrow-down,Βέλος προς τα κάτω apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Σειρά {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Ο χρήστης δεν επιτρέπεται να διαγράψει {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Εισά DocType: Dropbox Settings,Dropbox Access Secret,Dropbox access secret DocType: Tag Link,Document Title,Τίτλος εγγράφου apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Επιτακτικός) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} χρόνια πριν DocType: Social Login Key,Social Login Provider,Παροχέας κοινωνικής σύνδεσης apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Προσθέστε άλλο ένα σχόλιο apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Δεν βρέθηκαν δεδομένα στο αρχείο. Επανατοποθετήστε ξανά το νέο αρχείο με δεδομένα. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,Hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Δεν βρέθηκαν πεδία που να μπορούν να χρησιμοποιηθούν ως στήλη Kanban. Χρησιμοποιήστε τη φόρμα "Προσαρμογή" για να προσθέσετε ένα προσαρμοσμένο πεδίο τύπου "Επιλογή". DocType: Address,GST State,Κράτος GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Δεν είναι δυνατή η ακύρωση χωρίς υποβολή +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Χρήστης ({0}) DocType: Website Theme,Theme,Θέμα DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Ανακατεύθυνση URI αναγκασμένοι να Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Ανοίξτε Βοήθεια DocType: DocType,Is Submittable,Είναι υποβλητέο -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Νέα αναφορά +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Νέα αναφορά apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Δεν έχουν συγχρονιστεί νέες Επαφές Google. DocType: File,Uploaded To Google Drive,Μεταφορτώθηκε στο Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Η τιμή για ένα πεδίο ελέγχου μπορεί να είναι είτε 0 είτε 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Εισερχόμενα DocType: Kanban Board Column,Red,Κόκκινος DocType: Workflow State,Tag,Ετικέτα -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Το έγγραφο δεν μπορεί να αποθηκευτεί. DocType: Energy Point Rule,Maximum Points,Μέγιστοι βαθμοί apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Οι ρυθμίσεις μου @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Χάρινα apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} βαθμοί εκτίμησης για {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Οι ρόλοι μπορούν να οριστούν για τους χρήστες από τη σελίδα χρήστη τους. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Πρόσθεσε σχόλιο +DocType: Dashboard Chart,Select Date Range,Επιλέξτε Εύρος ημερομηνιών DocType: DocField,Mandatory,Υποχρεωτικό apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Ενότητα για Εξαγωγή +DocType: Scheduled Job Type,Monthly Long,Μηνιαία μακρά apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Δεν ρυθμίστηκαν βασικά δικαιώματα +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Στείλτε ένα email στο {0} για να το συνδέσετε εδώ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Σημασία των υποβολή, ακύρωση, τροποποίηση" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Εκκρεμότητες @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Παρακολου DocType: Social Login Key,Identity Details,Στοιχεία ταυτότητας apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Η μετάβαση στην κατάσταση ροής εργασίας δεν επιτρέπεται από {0} έως {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Εμφάνιση πίνακα ελέγχου -apps/frappe/frappe/desk/form/assign_to.py,New Message,Νέο Mήνυμα DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-έκθεση DocType: Data Import Beta,Template Warnings,Προειδοποιήσεις προτύπων @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Συνδέε apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Επεξεργασία ρυθμίσεων αυτόματης αναφοράς ηλεκτρονικού ταχυδρομείου DocType: Chat Room,Message Count,Καταμέτρηση μηνυμάτων DocType: Workflow State,book,Καταχώρηση +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} συνδέεται με τα ακόλουθα έγγραφα: {2} DocType: Communication,Read by Recipient,Διαβάστε από τον παραλήπτη DocType: Website Settings,Landing Page,Σελίδα προσέλευσης apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Σφάλμα στην προσαρμοσμένη δέσμη ενεργειών apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Όνομα apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Δεν έχουν οριστεί δικαιώματα για τα εν λόγω κριτήρια. DocType: Auto Email Report,Auto Email Report,Auto Email Έκθεση +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Νέο έγγραφο κοινόχρηστο apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Διαγραφή σχόλιο; DocType: Address Template,This format is used if country specific format is not found,Αυτή η μορφοποίηση χρησιμοποιείται εάν δεν βρεθεί ειδική μορφοποίηση χώρας DocType: System Settings,Allow Login using Mobile Number,Να επιτρέπεται η σύνδεση χρησιμοποιώντας τον αριθμό κινητού τηλεφώνου apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,Δεν έχετε επαρκή δικαιώματα για να αποκτήσετε πρόσβαση σε αυτόν τον πόρο. Επικοινωνήστε με το διαχειριστή σας για να αποκτήσετε πρόσβαση. DocType: Custom Field,Custom,Προσαρμοσμένο DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Εάν είναι ενεργοποιημένη, οι χρήστες που εισέρχονται από την Περιορισμένη διεύθυνση IP, δεν θα σας ζητηθεί η επιλογή Two Factor Auth" +DocType: Server Script,After Cancel,Μετά την Άκυρο DocType: Auto Repeat,Get Contacts,Λήψη επαφών apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Τις θέσεις που κατατίθενται στο πλαίσιο {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Παράλειψη στήλης χωρίς τίτλο @@ -1684,6 +1757,7 @@ DocType: User,Login After,Είσοδος μετά DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Εκτύπωση DocType: Workflow State,thumbs-up,Thumbs-up +DocType: Notification Log,Mention,Αναφέρω DocType: DocPerm,DocPerm,Άδεια εγγράφου DocType: Print Settings,Fonts,Γραμματοσειρές apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Η ακρίβεια πρέπει να είναι μεταξύ 1 και 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,Και apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Αυτή η αναφορά δημιουργήθηκε στις {0} DocType: Error Snapshot,Frames,Πλαίσια -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Εκχώρηση +DocType: Notification Log,Assignment,Εκχώρηση DocType: Notification,Slack Channel,Χωρίς κανάλι DocType: About Us Team Member,Image Link,Σύνδεσμος εικόνας DocType: Auto Email Report,Report Filters,Φίλτρα έκθεση @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Δεν είναι δυνατή η ενημέρωση εκδήλωση apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Ο κωδικός επαλήθευσης έχει σταλεί στην εγγεγραμμένη διεύθυνση ηλεκτρονικού ταχυδρομείου σας. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Τραυματισμένος +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Ο στόχος σας apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Το φίλτρο πρέπει να έχει 4 τιμές (doctype, όνομα πεδίου, χειριστής, τιμή): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Δεν έχει οριστεί όνομα για {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Εφαρμογή κανόνα εκχώρησης apps/frappe/frappe/utils/bot.py,show,προβολή apps/frappe/frappe/utils/data.py,Invalid field name {0},Μη έγκυρο όνομα πεδίου {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,Text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Χαρτογράφηση σχεδίου μετεγκατάστασης δεδομένων apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Ξεκινώντας τον Frappe ... DocType: Web Form Field,Max Length,Μέγιστο μήκος -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Για {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,Σήμανση χάρτη apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Υποβολή Θέματος @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Η σελίδα λείπε apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Κριτικές DocType: DocType,Route,Διαδρομή apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Ρυθμίσεις πύλη πληρωμής Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} κέρδισε {1} για {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Λήψη προσαρτημένων εικόνων από το έγγραφο DocType: Chat Room,Name,Όνομα DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Άνοιγμ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Η γλώσσα σου DocType: Dashboard Chart,Average,Μέση τιμή apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Προσθήκη Γραμμής -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Εκτυπωτής apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Το ερώτημα πρέπει να είναι μια εντολή select DocType: Auto Repeat,Completed,Ολοκληρώθηκε @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Επόμενο στοίχημα συ DocType: Energy Point Settings,Energy Point Settings,Ρυθμίσεις ενεργειακού σημείου DocType: Async Task,Succeeded,Πετυχημένος apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Υποχρεωτικά πεδία είναι υποχρεωτικά σε {0} +DocType: Onboarding Slide Field,Align,Ευθυγραμμίζω apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Επαναφορά δικαιωμάτων για {0} ; apps/frappe/frappe/config/desktop.py,Users and Permissions,Χρήστες και δικαιώματα DocType: S3 Backup Settings,S3 Backup Settings,S3 Ρυθμίσεις δημιουργίας αντιγράφων ασφαλείας @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Νέο όνομα μορφής εκτύπωσης apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Κάντε κλικ στον παρακάτω σύνδεσμο για να εγκρίνετε το αίτημα DocType: Workflow State,align-left,Ευθυγράμμιση αριστερά +DocType: Onboarding Slide,Action Settings,Ρυθμίσεις ενέργειας DocType: User,Defaults,Προεπιλογές +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Για σύγκριση, χρησιμοποιήστε> 5, <10 ή = 324. Για σειρές, χρησιμοποιήστε 5:10 (για τιμές μεταξύ 5 και 10)." DocType: Energy Point Log,Revert Of,Επαναφορά του apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Συγχώνευση με τις υπάρχουσες DocType: User,Birth Date,Ημερομηνία γέννησης @@ -1896,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,σε DocType: Notification,Value Change,Αλλαγή τιμής DocType: Google Contacts,Authorize Google Contacts Access,Εξουσιοδοτήστε την πρόσβαση στις Επαφές Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Εμφάνιση μόνο αριθμητικών πεδίων από την αναφορά +apps/frappe/frappe/utils/data.py,1 week ago,Πριν από 1 εβδομάδα DocType: Data Import Beta,Import Type,Τύπος εισαγωγής DocType: Access Log,HTML Page,Σελίδα HTML DocType: Address,Subsidiary,Θυγατρική @@ -1905,7 +1984,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Με κεφαλίδα επιστολόχαρτου apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Μη έγκυρος διακομιστής εξερχόμενης αλληλογραφίας ή θύρα DocType: Custom DocPerm,Write,Γράφω -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Μόνο ο διαχειριστής έχει τη δυνατότητα να δημιουργήσει εκθέσεις με βάση query / script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ενημέρωση DocType: Data Import Beta,Preview,Προεπισκόπηση apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Το πεδίο "τιμή" είναι υποχρεωτική. Παρακαλείστε να προσδιορίσετε την αξία που πρέπει να ενημερώνεται @@ -1915,6 +1993,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Πρόσκ DocType: Data Migration Run,Started,Ξεκίνησε apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Ο χρήστης {0} δεν έχει πρόσβαση σε αυτό το έγγραφο DocType: Data Migration Run,End Time,Ώρα λήξης +DocType: Dashboard Chart,Group By Based On,Ομάδα βάσει βάση apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Επιλογή συνημμένων apps/frappe/frappe/model/naming.py, for {0},για {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Δεν επιτρέπεται να εκτυπώσετε το έγγραφο @@ -1956,6 +2035,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Επαλήθευση DocType: Workflow Document State,Update Field,Ενημέρωση πεδίου DocType: Chat Profile,Enable Chat,Ενεργοποίηση συνομιλίας DocType: LDAP Settings,Base Distinguished Name (DN),Βάση διακεκριμένο όνομα (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Αφήστε αυτή τη συζήτηση apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Οι επιλογές δεν έχουν οριστεί για το πεδίο συνδέσμου {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Ουρά / εργαζόμενος @@ -2022,12 +2102,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Η είσοδος δεν επιτρέπεται αυτή τη στιγμή DocType: Data Migration Run,Current Mapping Action,Τρέχουσα δράση χαρτογράφησης DocType: Dashboard Chart Source,Source Name,Όνομα πηγή -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Δεν υπάρχει λογαριασμός ηλεκτρονικού ταχυδρομείου που σχετίζεται με τον Χρήστη. Προσθέστε ένα λογαριασμό κάτω από το User> Email Inbox. DocType: Email Account,Email Sync Option,Email επιλογή Sync apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Αριθμός σειράς DocType: Async Task,Runtime,Διάρκεια DocType: Post,Is Pinned,Είναι συνδεδεμένο DocType: Contact Us Settings,Introduction,Εισαγωγή +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Χρειάζεστε βοήθεια; apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Καρφίστε παγκοσμίως apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Ακολουθούμενη από DocType: LDAP Settings,LDAP Email Field,LDAP Email πεδίο @@ -2037,7 +2117,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Ήδη σ DocType: User Email,Enable Outgoing,Ενεργοποίηση εξερχομένων DocType: Address,Fax,Φαξ apps/frappe/frappe/config/customization.py,Custom Tags,προσαρμοσμένες ετικέτες -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account DocType: Comment,Submitted,Υποβλήθηκε DocType: Contact,Pulled from Google Contacts,Προέρχεται από τις Επαφές Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ακυρη Αίτηση @@ -2058,9 +2137,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Αρχικ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Ανάθεση σε μένα DocType: DocField,Dynamic Link,Δυναμικός σύνδεσμος apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Πατήστε το πλήκτρο Alt για να ενεργοποιήσετε πρόσθετες συντομεύσεις στο μενού και στην πλευρική γραμμή +DocType: Dashboard Chart,To Date,Έως ημερομηνία DocType: List View Setting,List View Setting,Ρύθμιση προβολής λίστας apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Εμφάνιση απέτυχε θέσεις εργασίας -DocType: Event,Details,Λεπτομέρειες +DocType: Scheduled Job Log,Details,Λεπτομέρειες DocType: Property Setter,DocType or Field,Τύπος εγγράφου ή πεδίο apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Αφαιρέσατε αυτό το έγγραφο apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Πρωτογενές χρώμα @@ -2068,7 +2148,6 @@ DocType: Communication,Soft-Bounced,Soft-Ακάλυπτες DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Εάν είναι ενεργοποιημένη, όλοι οι χρήστες μπορούν να συνδεθούν από οποιαδήποτε διεύθυνση IP χρησιμοποιώντας την επιλογή Two Factor Auth. Αυτό μπορεί επίσης να οριστεί μόνο για συγκεκριμένους χρήστες στη σελίδα χρήστη" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Φαίνεται δημοσίευση κλειδί ή μυστικό κλειδί είναι λάθος! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Γρήγορη βοήθεια για τον καθορισμό των δικαιωμάτων -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype εκχώρησης Ετικέτες apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Εμφάνιση Υποτροπές apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει μεταφερθεί στον κάδο απορριμμάτων DocType: Report,Report Builder,Δημιουργός εκθέσεων @@ -2083,6 +2162,7 @@ DocType: Workflow State,Upload,Αποστολή στο διακομιστή DocType: User Permission,Advanced Control,Προηγμένος έλεγχος DocType: System Settings,Date Format,Μορφή ημερομηνίας apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Δεν έχει δημοσιευθεί +apps/frappe/frappe/contacts/doctype/address/address.py,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/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Ενέργειες για τη ροή εργασίας ( π.Χ. Έγκριση , ακύρωση ) ." DocType: Data Import,Skip rows with errors,Παράλειψη γραμμών με σφάλματα DocType: Workflow State,flag,Σημαία @@ -2092,7 +2172,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Εκ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Μετάβαση στο πεδίο DocType: Contact Us Settings,Forward To Email Address,Προώθηση στις διευθύνσεις ηλεκτρονικού ταχυδρομείου DocType: Contact Phone,Is Primary Phone,Είναι το πρωτεύον τηλέφωνο -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Στείλτε ένα email στο {0} για να το συνδέσετε εδώ. DocType: Auto Email Report,Weekdays,Εργάσιμες apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Οι {0} εγγραφές θα εξαχθούν apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου @@ -2100,7 +2179,7 @@ DocType: Post Comment,Post Comment,Αναρτήστε Σχόλιο apps/frappe/frappe/config/core.py,Documents,Έγγραφα apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Εγγραφή δραστηριότητας από DocType: Social Login Key,Custom Base URL,Προσαρμοσμένη διεύθυνση URL βάσης -DocType: Email Flag Queue,Is Completed,έχει ολοκληρωθεί +DocType: Onboarding Slide,Is Completed,έχει ολοκληρωθεί apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Αποκτήστε πεδία apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Επεξεργασία προφίλ DocType: Kanban Board Column,Archived,Αρχειοθετήθηκε @@ -2111,11 +2190,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",Αυτό το πεδίο θα εμφανιστεί μόνο αν η ΌνομαΠεδίου ορίζεται εδώ έχει αξία ή οι κανόνες είναι αλήθεια (παραδείγματα): myfield eval: doc.myfield == «Αξία μου» eval: doc.age> 18 DocType: Social Login Key,Office 365,Γραφείο 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Σήμερα +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Σήμερα apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Υποβολή μετά την εισαγωγή DocType: Error Log,Log of Scheduler Errors,Αρχείο καταγραφής των σφαλμάτων του scheduler DocType: User,Bio,Βιογραφικό +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Ενσωμάτωση συνδέσμου βοήθειας διαφανειών DocType: OAuth Client,App Client Secret,App μυστικό πελάτη apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Υποβολή apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Ο γονέας είναι το όνομα του εγγράφου στο οποίο θα προστεθούν τα δεδομένα. @@ -2123,7 +2203,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ΚΕΦΑΛΑΊΑ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Προσαρμοσμένος κώδικας HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Πληκτρολογήστε το όνομα του φακέλου -apps/frappe/frappe/contacts/doctype/address/address.py,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/auth.py,Unknown User,Αγνωστος χρήστης apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Επιλέξτε ρόλο DocType: Comment,Deleted,Διεγραμμένο @@ -2139,7 +2218,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Δημιουργία χάρτη apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Μη εισαγωγή -DocType: Web Page,Center,Κέντρο +DocType: Onboarding Slide Field,Center,Κέντρο DocType: Notification,Value To Be Set,Τιμή που πρέπει να οριστεί apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Επεξεργασία {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Πρώτο Επίπεδο @@ -2147,7 +2226,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Όνομα βάσης δεδομένων apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Ανανέωση φόρμας DocType: DocField,Select,Επιλογή -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Προβολή πλήρους αρχείου καταγραφής +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Προβολή πλήρους αρχείου καταγραφής DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Απλή έκφραση Python, Παράδειγμα: status == 'Άνοιγμα' και πληκτρολογήστε == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Δεν έχει γίνει επισύναψη του αρχείου apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Η σύνδεση χάθηκε. Ορισμένες λειτουργίες ενδέχεται να μην λειτουργούν. @@ -2179,6 +2258,7 @@ DocType: Web Page,HTML for header section. Optional,Html για την ενότ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Αυτό το χαρακτηριστικό είναι καινούργιο και ακόμα σε πειραματικό στάδιο apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Επιτρέπονται μέγιστο {0} σειρές DocType: Dashboard Chart Link,Chart,Διάγραμμα +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Παγκόσμια Διαγραφή apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Αυτό είναι ένα πολύ κοινό κωδικό πρόσβασης. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Προβολή @@ -2195,6 +2275,7 @@ DocType: Data Migration Connector,Hostname,Όνομα κεντρικού υπο DocType: Data Migration Mapping,Condition Detail,Λεπτομέρεια κατάστασης apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Για το νόμισμα {0}, το ελάχιστο ποσό συναλλαγής πρέπει να είναι {1}" DocType: DocField,Print Hide,Απόκρυψη εκτύπωσης +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Στο χρήστη apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Εισάγετε τιμή DocType: Workflow State,tint,Απόχρωση @@ -2261,6 +2342,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Κωδικός apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Προσθήκη στο να κάνει DocType: Footer Item,Company,Εταιρεία apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Μέσος όρος {0} +DocType: Scheduled Job Log,Scheduled,Προγραμματισμένη DocType: User,Logout from all devices while changing Password,Αποσύνδεση από όλες τις συσκευές κατά την αλλαγή του κωδικού πρόσβασης apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Επιβεβαίωσε Τον Κωδικό apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Υπήρξαν σφάλματα @@ -2286,7 +2368,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Η άδεια χρήστη ήδη υπάρχει apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Χαρτογράφηση της στήλης {0} στο πεδίο {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Προβολή {0} -DocType: User,Hourly,Ωριαίος +DocType: Scheduled Job Type,Hourly,Ωριαίος apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Εγγραφή OAuth App πελάτη DocType: DocField,Fetch If Empty,Λήψη Αν είναι άδειο DocType: Data Migration Connector,Authentication Credentials,Πιστοποιητικά ελέγχου ταυτότητας @@ -2297,10 +2379,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Δεν μπορεί να είναι ""{2}"". Θα πρέπει να είναι ένα από τα ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},κέρδισε το {0} μέσω αυτόματου κανόνα {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ή {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Όλοι είστε έτοιμοι! DocType: Workflow State,trash,Σκουπίδια DocType: System Settings,Older backups will be automatically deleted,Παλαιότερα αντίγραφα ασφαλείας θα διαγραφούν αυτόματα apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Μη έγκυρο αναγνωριστικό κλειδιού πρόσβασης ή κλειδί μυστικής πρόσβασης. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Έχασες μερικά ενεργειακά σημεία DocType: Post,Is Globally Pinned,Είναι παγκοσμίως συνδεδεμένο apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Πρόσφατη Δραστηριότητα DocType: Workflow Transition,Conditions,Συνθήκες @@ -2309,6 +2391,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Επιβεβ DocType: Event,Ends on,Λήγει στις DocType: Payment Gateway,Gateway,Είσοδος πυλών DocType: LDAP Settings,Path to Server Certificate,Πιστοποιητικό διαδρομής προς διακομιστή +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Η Javascript είναι απενεργοποιημένη στον browser σας apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Δεν υπάρχει αρκετή άδεια για να δείτε συνδέσμους apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Ο τίτλος της διεύθυνσης είναι υποχρεωτικός. DocType: Google Contacts,Push to Google Contacts,Πατήστε στις Επαφές Google @@ -2327,7 +2410,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-δυτικό-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Εάν αυτό είναι επιλεγμένο, θα εισαχθούν σειρές με έγκυρα δεδομένα και μη έγκυρες σειρές θα πεταχτούν σε ένα νέο αρχείο για να εισαγάγετε αργότερα." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Το έγγραφο είναι μόνο επεξεργάσιμη από τους χρήστες του ρόλου -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,Διαβάστε από τον παραλήπτη στις DocType: Blogger,Short Name,Σύντομη ονομασία @@ -2359,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Αν DocType: Translation,PR sent,Το PR στάλθηκε DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Μόνο Αποστολή αρχείων ενημερώθηκε στις τελευταίες Χ ώρες DocType: Communication,Feedback,Ανατροφοδότηση +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Ενημερώθηκε σε μια νέα έκδοση 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Ανοιχτή μετάφραση apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου δημιουργείται αυτόματα DocType: Workflow State,Icon will appear on the button,Το εικονίδιο θα εμφανιστεί στο κουμπί @@ -2397,6 +2480,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Η σελ DocType: DocField,Precision,Ακρίβεια DocType: Website Slideshow,Slideshow Items,Παρουσίαση ειδών apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Προσπαθήστε να αποφύγετε επαναλαμβανόμενες λέξεις και χαρακτήρες +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Οι ειδοποιήσεις είναι απενεργοποιημένες +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Είστε βέβαιοι ότι θέλετε να διαγράψετε όλες τις σειρές; DocType: Workflow Action,Workflow State,Κατάσταση ροής εργασίας apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,σειρές Προστέθηκε apps/frappe/frappe/www/list.py,My Account,Ο Λογαριασμός Μου @@ -2405,6 +2490,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Ημέρες Μετά apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Ενεργοποίηση της σύνδεσης δίσκου QZ! DocType: Contact Us Settings,Settings for Contact Us Page,Ρυθμίσεις για τη σελίδα επικοινωνίας. +DocType: Server Script,Script Type,Τύπος script DocType: Print Settings,Enable Print Server,Ενεργοποιήστε τον διακομιστή εκτύπωσης apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Πριν από {0} εβδομάδες DocType: Email Account,Footer,Υποσέλιδο @@ -2430,8 +2516,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Προειδοποίηση apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Αυτό μπορεί να εκτυπωθεί σε πολλές σελίδες DocType: Data Migration Run,Percent Complete,Το ποσοστό ολοκληρώνεται -DocType: Tag Category,Tag Category,Tag Κατηγορία -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Για σύγκριση, χρησιμοποιήστε> 5, <10 ή = 324. Για σειρές, χρησιμοποιήστε 5:10 (για τιμές μεταξύ 5 και 10)." DocType: Google Calendar,Pull from Google Calendar,Τραβήξτε από το Ημερολόγιο Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Βοήθεια DocType: User,Login Before,Είσοδος πριν από @@ -2441,17 +2525,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Απόκρυψη Σαββατοκύριακων apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Δημιουργεί αυτόματα επαναλαμβανόμενα έγγραφα. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Είναι +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Σχέση {0} δεν μπορεί να είναι μια λίστα DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Πώς θα πρέπει αυτό το νόμισμα να μορφοποιηθεί; Αν δεν έχει οριστεί, θα χρησιμοποιήσει τις προεπιλογές του συστήματος" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Υποβάλετε {0} έγγραφα; apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Θα πρέπει να είστε συνδεδεμένοι στο σύστημα και να έχετε ρόλο διαχειριστή συστήματος για να έχετε πρόσβαση σε αντίγραφα ασφαλείας. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Σφάλμα σύνδεσης με εφαρμογή δίσκου QZ ...

Πρέπει να εγκαταστήσετε και να εκτελέσετε την εφαρμογή QZ Tray, για να χρησιμοποιήσετε τη λειτουργία Raw Print.

Κάντε κλικ εδώ για να κάνετε λήψη και εγκατάσταση του δίσκου QZ .
Κάντε κλικ εδώ για να μάθετε περισσότερα σχετικά με την ασταθή εκτύπωση ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Χαρτογράφηση εκτυπωτή apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Παρακαλούμε να αποθηκεύσετε πριν από την τοποθέτηση. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Θέλετε να ακυρώσετε όλα τα συνδεδεμένα έγγραφα; apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Προστέθηκε {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Ο τύπος πεδίου δεν μπορεί να αλλάξει από {0} σε {1} στη γραμμή {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Δικαιώματα ρόλου DocType: Help Article,Intermediate,Ενδιάμεσος +apps/frappe/frappe/config/settings.py,Email / Notifications,Ειδοποιήσεις ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} άλλαξε {1} σε {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Ακυρωμένο έγγραφο που έχει αποκατασταθεί ως σχέδιο DocType: Data Migration Run,Start Time,Ώρα έναρξης @@ -2468,6 +2556,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ν apps/frappe/frappe/email/smtp.py,Invalid recipient address,Μη έγκυρη διεύθυνση παραλήπτη DocType: Workflow State,step-forward,Βήμα προς τα εμπρός DocType: System Settings,Allow Login After Fail,Να επιτρέπεται η σύνδεση μετά από αποτυχία +DocType: DocType Link,DocType Link,Σύνδεσμος DocType DocType: Role Permission for Page and Report,Set Role For,Ορισμός του ρόλου DocType: GCalendar Account,The name that will appear in Google Calendar,Το όνομα που θα εμφανιστεί στο Ημερολόγιο Google apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Απευθείας αίθουσα με {0} υπάρχει ήδη. @@ -2484,6 +2573,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Δημι DocType: Contact,Google Contacts,Επαφές Google DocType: GCalendar Account,GCalendar Account,Λογαριασμός GCalendar DocType: Email Rule,Is Spam,είναι Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,τελευταίος apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Έκθεση {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Άνοιγμα {0} DocType: Data Import Beta,Import Warnings,Προειδοποιήσεις εισαγωγής @@ -2495,6 +2585,7 @@ DocType: Workflow State,ok-sign,Ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Διαγραμμένα έγγραφα apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Η μορφή CSV είναι ευαίσθητη στις πεζά apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Το εικονίδιο επιφάνειας εργασίας υπάρχει ήδη +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Καθορίστε σε ποια περιοχή πρέπει να εμφανίζονται οι διαφάνειες. Εάν δεν έχει οριστεί τίποτα, η διαφάνεια προβάλλεται σε όλους τους τομείς από προεπιλογή." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Διπλότυπο apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Το πεδίο {1} στη σειρά {2} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογή DocType: Newsletter,Create and Send Newsletters,Δημιουργήστε και στείλτε τα ενημερωτικά δελτία @@ -2505,6 +2596,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Αναγνωριστικό συμβάντος Google Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",H λέξη «γονικός» δηλώνει το γονικό πίνακα στον οποίο πρέπει να προστεθεί αυτή η σειρά apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Σημεία αναθεώρησης: +DocType: Scheduled Job Log,Scheduled Job Log,Προγραμματισμένο αρχείο καταγραφής εργασιών +DocType: Server Script,Before Delete,Πριν διαγράψετε apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Κοινόχρηστο Με apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Επισύναψη αρχείων / urls και προσθήκη στον πίνακα. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Το μήνυμα δεν έχει ρυθμιστεί @@ -2527,19 +2620,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Ρυθμίσεις για τη σελίδα προφίλ. apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Ρυθμίσεις πύλης πληρωμής apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Εκτύπωση Αποστολή στον εκτυπωτή! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Ενεργειακά σημεία +DocType: Notification Settings,Energy Points,Ενεργειακά σημεία +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Ο χρόνος {0} πρέπει να είναι σε μορφή: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,π.χ. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Δημιουργία κλειδιών apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Αυτό θα καταργήσει οριστικά τα δεδομένα σας. DocType: DocType,View Settings,Ρυθμίσεις προβολής +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Νέα ειδοποίηση DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Δομή αιτήματος +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Η μέθοδος ελεγκτή get_razorpay_order λείπει DocType: Personal Data Deletion Request,Pending Verification,Εκκρεμεί Επαλήθευση DocType: Website Meta Tag,Website Meta Tag,Ιστοσελίδα Meta Tag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Εάν δεν είναι τυποποιημένη θύρα (π.χ. 587). Εάν στο Google Cloud, δοκιμάστε τη θύρα 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Εκκαθάριση της ημερομηνίας λήξης, καθώς δεν μπορεί να γίνει στο παρελθόν για δημοσιευμένες σελίδες." DocType: User,Send Me A Copy of Outgoing Emails,Στείλτε μου ένα αντίγραφο των εξερχόμενων μηνυμάτων ηλεκτρονικού ταχυδρομείου -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.,Προσθέστε το google analytics id: παράδειγμα. Ua-89xxx57-1. Παρακαλώ ψάξτε στη βοήθεια του google analytics για περισσότερες πληροφορίες. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Ο κωδικός πρόσβασης δεν μπορεί να υπερβαίνει τους 100 χαρακτήρες DocType: OAuth Client,App Client ID,App ID πελάτη @@ -2568,6 +2663,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Απαιτε apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} Μοιράστηκε αυτό το έγγραφο με {1} DocType: Website Settings,Brand Image,brand Εικόνα DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Το πρότυπο εισαγωγής πρέπει να περιέχει μια κεφαλίδα και τουλάχιστον μια σειρά. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Το Ημερολόγιο Google έχει ρυθμιστεί. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Ρύθμιση της επάνω γραμμή πλοήγησης, του υποσέλιδου και του λογότυπου." DocType: Web Form Field,Max Value,Μέγιστη τιμή @@ -2577,6 +2673,7 @@ DocType: User Social Login,User Social Login,Κοινωνική σύνδεση apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} επέκρινε την εργασία σας με {1} με {2} σημείο DocType: Contact,All,Όλα DocType: Email Queue,Recipient,Παραλήπτης +DocType: Webhook,Webhook Security,Webhook Ασφάλεια DocType: Communication,Has Attachment,έχει Συνημμένο DocType: Address,Sales User,Χρήστης πωλήσεων apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and drop εργαλείο για την δημιουργία και προσαρμογή των μορφών εκτύπωσης. @@ -2643,7 +2740,6 @@ DocType: Data Migration Mapping,Migration ID Field,Πεδίο ταυτότητα DocType: Dashboard Chart,Last Synced On,Τελευταία συγχρονισμένη φορά DocType: Comment,Comment Type,Τύπος σχολίου DocType: OAuth Client,OAuth Client,πελάτη OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} επέκρινε την εργασία σας στις {1} {2} DocType: Assignment Rule,Users,Χρήστες DocType: Address,Odisha,Οδησία DocType: Report,Report Type,Τύπος έκθεσης @@ -2668,14 +2764,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Αντικείμενο π apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Η έγκριση δεν επιτρέπεται DocType: GSuite Templates,Template ID,Αναγνωριστικό προτύπου apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Δεν επιτρέπεται συνδυασμός τύπου επιχορήγησης ( {0} ) και τύπου ανταπόκρισης ( {1} ) -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Νέο μήνυμα από {0} DocType: Portal Settings,Default Role at Time of Signup,Προεπιλογή ρόλος κατά την Ώρα των Εγγραφή DocType: DocType,Title Case,Γραφή τίτλου apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Κάντε κλικ στον παρακάτω σύνδεσμο για να λάβετε τα δεδομένα σας apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Ενεργοποιημένα εισερχόμενα email για το χρήστη {0} DocType: Data Migration Run,Data Migration Run,Εκτέλεση της μετεγκατάστασης δεδομένων DocType: Blog Post,Email Sent,Το email απεστάλη -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Παλαιότερα DocType: DocField,Ignore XSS Filter,Αγνοήστε XSS φίλτρο apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,αφαιρεθεί apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Ρυθμίσεις Dropbox αντιγράφων ασφαλείας @@ -2730,6 +2824,7 @@ DocType: Async Task,Queued,Στην ουρά DocType: Braintree Settings,Use Sandbox,χρήση Sandbox apps/frappe/frappe/utils/goal.py,This month,Αυτο το μηνα apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Νέα προσαρμοσμένη μορφή Εκτύπωση +DocType: Server Script,Before Save (Submitted Document),Πριν αποθηκεύσετε (υποβληθέν έγγραφο) DocType: Custom DocPerm,Create,Δημιουργία apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Δεν υπάρχουν άλλα στοιχεία για προβολή apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Μεταβείτε στην προηγούμενη εγγραφή @@ -2786,6 +2881,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Μετακίνηση στον κάδο απορριμμάτων DocType: Web Form,Web Form Fields,Πεδία φόρμας ιστοσελίδας DocType: Data Import,Amended From,Τροποποίηση από +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Προσθέστε έναν σύνδεσμο βίντεο βοήθειας μόνο σε περίπτωση που ο χρήστης δεν έχει ιδέα για το τι πρέπει να συμπληρώσει η διαφάνεια. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Προειδοποίηση: Ανίκανος να βρει {0} σε κάθε τραπέζι που σχετίζονται με {1} DocType: S3 Backup Settings,eu-north-1,eu-βορρά-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Αυτό το έγγραφο αυτή τη στιγμή στην ουρά για εκτέλεση. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα @@ -2807,6 +2903,7 @@ DocType: Blog Post,Blog Post,Δημοσίευση blog DocType: Access Log,Export From,Εξαγωγή από apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Σύνθετη αναζήτηση apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Δεν επιτρέπεται να βλέπετε το ενημερωτικό δελτίο. +DocType: Dashboard Chart,Group By,Ομαδοποίηση κατά DocType: User,Interests,Ενδιαφέροντα apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας DocType: Energy Point Rule,Allot Points To Assigned Users,Allot Points στους Assigned Users @@ -2822,6 +2919,7 @@ DocType: Assignment Rule,Assignment Rule,Κανόνας εκχώρησης apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Προτεινόμενη Όνομα Χρήστη: {0} DocType: Assignment Rule Day,Day,Ημέρα apps/frappe/frappe/public/js/frappe/desk.js,Modules,ενότητες +DocType: DocField,Mandatory Depends On,Υποχρεωτική εξαρτάται από apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,επιτυχία πληρωμής apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Όχι {0} ταχυδρομείου DocType: OAuth Bearer Token,Revoked,ανακλήθηκε @@ -2829,6 +2927,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar και Σχόλια apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Όταν τροποποιείτε ένα έγγραφο μετά ακυρώστε και αποθηκεύστε το, θα πάρει ένα νέο αριθμό που είναι μια έκδοση του παλιού αριθμού." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Δεν επιτρέπεται η προσάρτηση εγγράφου {0}, ενεργοποιήστε την επιλογή Να επιτρέπεται η εκτύπωση για {0} στις ρυθμίσεις εκτύπωσης" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Δείτε το έγγραφο στο {0} DocType: Stripe Settings,Publishable Key,Κλειδί δημοσίευσης apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Έναρξη εισαγωγής @@ -2842,13 +2941,13 @@ DocType: Currency,Fraction,Κλάσμα apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Το συμβάν συγχωνεύθηκε με το Ημερολόγιο Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Όνομα πεδίο DocType: Contact,Middle Name,Μεσαίο όνομα +DocType: DocField,Property Depends On,Η ιδιοκτησία εξαρτάται από DocType: Custom Field,Field Description,Περιγραφή πεδίου apps/frappe/frappe/model/naming.py,Name not set via Prompt,Το όνομα δεν έχει οριστεί μέσω διαλόγου προτροπής apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Εισερχόμενα e-mail apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ενημέρωση {0} από {1}, {2}" DocType: Auto Email Report,Filters Display,φίλτρα οθόνης apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ο τομέας "τροποποιημένος_ε" πρέπει να είναι παρών για να κάνει μια τροπολογία. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} εκτιμά την εργασία σας στις {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Αποθήκευση φίλτρων DocType: Address,Plant,Βιομηχανικός εξοπλισμός apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Απάντηση σε όλους @@ -2889,11 +2988,11 @@ DocType: Workflow State,folder-close,Folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Κανω ΑΝΑΦΟΡΑ: DocType: Print Settings,Print taxes with zero amount,Εκτυπώστε φόρους με μηδενικό ποσό apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} Δεν επιτρέπεται να μετονομαστεί +DocType: Server Script,Before Insert,Πριν την εισαγωγή DocType: Custom Script,Custom Script,Προσαρμοσμένο script DocType: Address,Address Line 2,Γραμμή διεύθυνσης 2 DocType: Address,Reference,Αναφορά apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Ανατέθηκε σε -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Λεπτομέρειες χαρτογράφησης μετανάστευσης δεδομένων DocType: Data Import,Action,Ενέργεια DocType: GSuite Settings,Script URL,URL δέσμης ενεργειών @@ -2919,11 +3018,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,Στην προβολή λίστας DocType: Email Account,Use TLS,Χρήση tls apps/frappe/frappe/email/smtp.py,Invalid login or password,Μη έγκυρη είσοδος ή κωδικός πρόσβασης +DocType: Scheduled Job Type,Weekly Long,Εβδομαδιαία μακρά apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Κατεβάστε πρότυπο apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Προσθήκη προσαρμοσμένων javascript για τις φόρμες. ,Role Permissions Manager,Διαχειριστής δικαιωμάτων ρόλου apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Όνομα της νέας μορφοποίησης εκτύπωσης apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Εναλλαγή πλευρικής εργαλειοθήκης +DocType: Server Script,After Save (Submitted Document),Μετά την αποθήκευση (υποβληθέν έγγραφο) DocType: Data Migration Run,Pull Insert,Τραβήξτε Εισαγωγή DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Τα μέγιστα επιτρεπόμενα σημεία μετά από πολλαπλασιασμό με την τιμή του πολλαπλασιαστή (Σημείωση: Για το όριο δεν αφήνετε αυτό το πεδίο άδειο ή το σύνολο 0) @@ -2943,6 +3044,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Ιστολόγιο apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,Το LDAP δεν είναι εγκατεστημένο apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Κατεβάστε με δεδομένα apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},αλλαγμένες τιμές για {0} {1} +DocType: Server Script,Before Cancel,Πριν Ακύρωση DocType: Workflow State,hand-right,Hand-right DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Περιοχή @@ -2988,12 +3090,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Παλιός κωδικ DocType: S3 Backup Settings,us-east-1,us-ανατολή-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Δημοσιεύσεις από {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Για να διαμορφώσετε τις στήλες, εισάγετε τις ετικέτες των στηλών στο ερώτημα." +DocType: Onboarding Slide,Slide Fields,Διαφάνεια πεδίων DocType: Has Domain,Has Domain,Έχει τομέα DocType: User,Allowed In Mentions,Επιτρέπονται στις αναφορές apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Δεν έχετε λογαριασμό; Εγγραφείτε apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Δεν είναι δυνατή η κατάργηση του πεδίου αναγνώρισης apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα" DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Εγγεγραμμένα Έγγραφα apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Ρυθμίσεις χρήστη DocType: Report,Reference Report,Αναφορά αναφοράς DocType: Activity Log,Link DocType,DocType σύνδεσμο @@ -3011,6 +3115,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Εξουσιοδοτή apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Η σελίδα που ψάχνετε λείπει. Αυτό θα μπορούσε να είναι επειδή κινείται ή υπάρχει ένα τυπογραφικό λάθος στο σύνδεσμο. apps/frappe/frappe/www/404.html,Error Code: {0},Κωδικός σφάλματος: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Περιγραφή για τη σελίδα παράθεσης, σε μορφή απλού κειμένου, μόνο μια-δυο γραμμές. (Μέγιστο 140 χαρακτήρες)" +DocType: Server Script,DocType Event,Εκδήλωση DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} είναι υποχρεωτικά πεδία DocType: Workflow,Allow Self Approval,Να επιτρέπεται η αυτόνομη έγκριση DocType: Event,Event Category,Κατηγορία εκδηλώσεων @@ -3027,6 +3132,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Το όνομα σου apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Επιτυχία σύνδεσης DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Έχει ήδη υπάρξει μια διαφήμιση τύπου Slide Onboarding. DocType: DocType,Default Sort Field,Προεπιλεγμένο πεδίο ταξινόμησης DocType: File,Is Folder,Είναι Φάκελος DocType: Document Follow,DocType,Τύπος εγγράφου @@ -3065,8 +3171,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,τιμ DocType: Workflow State,arrow-up,Βέλος πάνω DocType: Dynamic Link,Link Document Type,Τύπος εγγράφου συνδέσμου apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Θα πρέπει να υπάρχει τουλάχιστον μία σειρά για τον πίνακα {0} +DocType: Server Script,Server Script,Σενάριο διακομιστή apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Για να ρυθμίσετε την αυτόματη επανάληψη, ενεργοποιήστε την επιλογή "Να επιτρέπεται η αυτόματη επανάληψη" από {0}." DocType: OAuth Bearer Token,Expires In,Λήγει σε +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Ο αριθμός των φορών που θέλετε να επαναλάβετε το σύνολο των πεδίων (π.χ.: εάν θέλετε 3 πελάτες στη διαφάνεια, ορίστε αυτό το πεδίο σε 3. Μόνο το πρώτο σύνολο πεδίων εμφανίζεται ως υποχρεωτικό στη διαφάνεια)" DocType: DocField,Allow on Submit,Επιτρέπεται κατά την υποβολή DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Εξαίρεση Τύπος @@ -3076,6 +3184,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Κεφαλίδες apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Ανερχόμενες εκδηλώσεις apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Παρακαλούμε, εισάγετε τιμές για το App Κλειδί Πρόσβασης και App μυστικό κλειδί" +DocType: Email Account,Append Emails to Sent Folder,Προσθέστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στον φάκελο "Απεσταλμένα" DocType: Web Form,Accept Payment,Αποδοχή πληρωμής apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Επιλέξτε στοιχείο λίστας apps/frappe/frappe/config/core.py,A log of request errors,Ένα αρχείο καταγραφής σφαλμάτων αιτήματος @@ -3094,7 +3203,7 @@ DocType: Translation,Contributed,Συνεισφορά apps/frappe/frappe/config/customization.py,Form Customization,Προσαρμογή φόρμας apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Δεν υπάρχουν ενεργές περιόδους σύνδεσης DocType: Web Form,Route to Success Link,Σύνδεσμος διαδρομής προς επιτυχία -DocType: Top Bar Item,Right,Δεξιά +DocType: Onboarding Slide Field,Right,Δεξιά apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Δεν υπάρχουν επερχόμενα συμβάντα DocType: User,User Type,Τύπος χρήστη DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3112,6 +3221,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,ΠΑΡΑΚΑΛΩ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Η διεύθυνση URL πρέπει να ξεκινά με τις λέξεις "http: //" ή "https: //" apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Επιλογή 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Αυτό δεν μπορεί να αναιρεθεί DocType: Workflow State,Edit,Επεξεργασία DocType: Website Settings,Chat Operators,Χειριστές συνομιλίας DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3123,7 +3233,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Έχετε μη αποθηκευμένες αλλαγές σε αυτή τη φόρμα. Παρακαλώ αποθηκεύστε πριν συνεχίσετε. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,Προεπιλογή για {0} πρέπει να είναι μια επιλογή -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Κατηγορία apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Η αναφορά με περισσότερες από 10 στήλες φαίνεται καλύτερα στην λειτουργία Τοπίο. apps/frappe/frappe/database/database.py,Invalid field name: {0},Μη έγκυρο όνομα πεδίου: {0} DocType: Milestone,Milestone,Ορόσημο @@ -3132,7 +3241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Μεταβείτε apps/frappe/frappe/email/queue.py,Emails are muted,Τα email είναι σε σίγαση apps/frappe/frappe/config/integrations.py,Google Services,Υπηρεσίες Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,Πριν από 1 εβδομάδα +DocType: Onboarding Slide,Slide Description,Περιγραφή διαφανειών DocType: Communication,Error,Σφάλμα apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Ρυθμίστε πρώτα ένα μήνυμα DocType: Auto Repeat,End Date,Ημερομηνία λήξης @@ -3153,10 +3262,12 @@ DocType: Footer Item,Group Label,ομάδα Label DocType: Kanban Board,Kanban Board,Kanban Διοικητικό συμβούλιο apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Οι Επαφές Google έχουν ρυθμιστεί. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 θα εξαχθεί +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Δεν υπάρχει λογαριασμός ηλεκτρονικού ταχυδρομείου που σχετίζεται με τον Χρήστη. Προσθέστε ένα λογαριασμό κάτω από το User> Email Inbox. DocType: DocField,Report Hide,Απόκρυψη έκθεσης apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},προβολή δέντρου δεν είναι διαθέσιμη για {0} DocType: DocType,Restrict To Domain,Περιορίστε στον τομέα DocType: Domain,Domain,Τομέας +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Μη έγκυρη διεύθυνση URL αρχείου. Επικοινωνήστε με το Διαχειριστή Συστήματος. DocType: Custom Field,Label Help,Βοήθεια ετικέτας DocType: Workflow State,star-empty,Star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Οι ημερομηνίες είναι συχνά εύκολο να μαντέψει. @@ -3181,6 +3292,7 @@ DocType: Workflow State,hand-left,Hand-left DocType: Data Import,If you are updating/overwriting already created records.,Αν επικαιροποιείτε / αντικαθιστάτε ήδη δημιουργημένα αρχεία. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Είναι το Παγκόσμιο DocType: Email Account,Use SSL,Χρήση ssl +DocType: Webhook,HOOK-.####,ΑΓΚΙΣΤΡΟ-.#### DocType: Workflow State,play-circle,Play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Δεν ήταν δυνατή η σωστή ανάθεση του εγγράφου apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Μη έγκυρη έκφραση "depends_on" @@ -3197,6 +3309,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Τελευταία ανανέωση apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Για τύπο εγγράφου DocType: Workflow State,arrow-right,Βέλος δεξιά +DocType: Server Script,API Method,Μέθοδος API DocType: Workflow State,Workflow state represents the current state of a document.,Η κατάσταση ροής εργασίας αντιπροσωπεύει την τρέχουσα κατάσταση ενός εγγράφου. DocType: Letter Head,Letter Head Based On,Επιστολή Head Based On apps/frappe/frappe/utils/oauth.py,Token is missing,Κουπόνι λείπει @@ -3236,6 +3349,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compact Στοιχείο Εκτύπωση DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Redirect URL +DocType: Onboarding Slide Field,Placeholder,Θέση θέσης DocType: SMS Settings,Enter url parameter for receiver nos,Εισάγετε παράμετρο url για αριθμούς παραλήπτη DocType: Chat Profile,Online,σε απευθείας σύνδεση DocType: Email Account,Always use Account's Name as Sender's Name,Να χρησιμοποιείτε πάντα το όνομα του λογαριασμού ως όνομα του αποστολέα @@ -3245,7 +3359,6 @@ DocType: Workflow State,Home,Αρχική DocType: OAuth Provider Settings,Auto,Αυτο DocType: System Settings,User can login using Email id or User Name,Ο χρήστης μπορεί να συνδεθεί χρησιμοποιώντας το αναγνωριστικό email ή το όνομα χρήστη DocType: Workflow State,question-sign,Question-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,Το {0} είναι απενεργοποιημένο apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Η "διαδρομή" πεδίου είναι υποχρεωτική για προβολές ιστού apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Εισαγωγή στήλης Πριν από το {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Ο χρήστης από αυτό το πεδίο θα ανταμείβεται πόντους @@ -3270,6 +3383,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Εάν Ιδιοκτ DocType: Data Migration Mapping,Push,Σπρώξτε apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Αφαιρέστε τα αρχεία εδώ DocType: OAuth Authorization Code,Expiration time,ώρα λήξης +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Άνοιγμα εγγράφων DocType: Web Page,Website Sidebar,ιστοσελίδα Sidebar DocType: Web Form,Show Sidebar,Εμφάνιση Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Θα πρέπει να συνδεθείτε για να αποκτήσετε πρόσβαση σε αυτό το {0}. @@ -3285,6 +3399,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Συνοπτ DocType: Desktop Icon,Page,Σελίδα apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},δεν μπορούσε να βρει {0} σε {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Ονόματα και επώνυμα από μόνα τους είναι εύκολο να μαντέψει κανείς. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Το έγγραφο μετονομάστηκε από {0} σε {1} apps/frappe/frappe/config/website.py,Knowledge Base,Βάση γνώσεων DocType: Workflow State,briefcase,Χαρτοφύλακας apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Η τιμή δεν μπορεί να αλλάξει για {0} @@ -3321,6 +3436,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Μορφοποίηση εκτύπωσης apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Εναλλαγή προβολής πλέγματος apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Μεταβείτε στην επόμενη εγγραφή +DocType: System Settings,Time Format,Μορφή ώρας apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Μη έγκυρα διαπιστευτήρια πύλη πληρωμής DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Αυτό είναι το αρχείο προτύπου που δημιουργείται μόνο με τις σειρές που έχουν κάποιο σφάλμα. Θα πρέπει να χρησιμοποιήσετε αυτό το αρχείο για διόρθωση και εισαγωγή. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Ορισμός δικαιωμάτων σε τύπους εγγράφων και ρόλων @@ -3363,12 +3479,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Απάντ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Σελίδες στην Επιφάνεια (κάτοχοι μέρος) DocType: DocField,Collapsible Depends On,Πτυσσόμενα Εξαρτάται από DocType: Print Style,Print Style Name,Όνομα στυλ εκτύπωσης +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Το πεδίο Ομαδοποίηση είναι απαραίτητο για τη δημιουργία πίνακα διαγραμμάτων DocType: Print Settings,Allow page break inside tables,Επιτρέψτε αλλαγή σελίδας στο εσωτερικό πίνακες DocType: Email Account,SMTP Server,Διακομιστής SMTP DocType: Print Format,Print Format Help,Βοήθεια για την μορφοποίηση εκτύπωσης apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Το {0} δωμάτιο πρέπει να έχει σχεδόν έναν χρήστη. DocType: DocType,Beta,Βήτα DocType: Dashboard Chart,Count,μετρώ +DocType: Dashboard Chart,Group By Type,Ομάδα κατά τύπο apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Νέο σχόλιο για {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},αποκατασταθεί {0} και {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Αν κάνετε ενημέρωση, Παρακαλώ επιλέξτε ""αντικατάσταση"" αλλιώς οι υπάρχουσες γραμμές δεν θα διαγραφούν." @@ -3379,14 +3497,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Προφ DocType: Web Form,Web Form,Φόρμα ιστοσελίδας apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Η ημερομηνία {0} πρέπει να είναι σε μορφή: {1} DocType: About Us Settings,Org History Heading,Κεφαλίδα ιστορικού οργανισμού +DocType: Scheduled Job Type,Scheduled Job Type,Προγραμματισμένος τύπος εργασίας DocType: Print Settings,Allow Print for Cancelled,Επιτρέψτε εκτύπωσης για Ακυρώθηκε DocType: Communication,Integrations can use this field to set email delivery status,Εντάξεις να χρησιμοποιήσετε αυτό το πεδίο για να ορίσετε την κατάσταση παράδοσης e-mail +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Δεν έχετε δικαιώματα για να ακυρώσετε όλα τα συνδεδεμένα έγγραφα. DocType: Web Form,Web Page Link Text,Κείμενο συνδέσμου ιστοσελίδας DocType: Page,System Page,Σελίδα συστήματος apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Ορίστε την προεπιλεγμένη μορφή, το μέγεθος σελίδας, το στυλ εκτύπωσης κλπ." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Προσαρμογές για {0} εξήχθησαν σε:
{1} DocType: Website Settings,Include Search in Top Bar,Συμπεριλάβετε Αναζήτηση στο Top Bar +DocType: Scheduled Job Type,Daily Long,Καθημερινά DocType: GSuite Settings,Allow GSuite access,Επιτρέψτε την πρόσβαση στο GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Ονομασία @@ -3489,6 +3610,7 @@ DocType: Notification,Send days before or after the reference date,Αποστο DocType: User,Allow user to login only after this hour (0-24),Επίτρεψε στο χρήστη να συνδεθεί μόνο μετά από αυτή την ώρα (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Εκχωρήστε ένα προς ένα, σε σειρά" DocType: Integration Request,Subscription Notification,Ειδοποίηση συνδρομής +DocType: Customize Form Field, Allow in Quick Entry ,Επιτρέψτε στη Γρήγορη Καταχώρηση apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ή να επισυνάψετε ένα DocType: Auto Repeat,Start Date,Ημερομηνία έναρξης apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Αξία @@ -3503,6 +3625,7 @@ DocType: Google Drive,Backup Folder ID,Αναγνωριστικό φακέλου apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Όχι σε λειτουργία προγραμματιστή! Ορίστε στο αρχείο site_config.json ή κάντε ένα τροποποιημένο τύπο εγγράφου. DocType: Workflow State,globe,Σφαίρα DocType: System Settings,dd.mm.yyyy,Ηη.Μμ.Εεεε +DocType: Onboarding Slide Help Link,Video,βίντεο DocType: Assignment Rule,Priority,Προτεραιότητα DocType: Email Queue,Unsubscribe Param,Διαγραφή Param DocType: DocType,Hide Sidebar and Menu,Απόκρυψη πλευρικής εργαλειοθήκης και μενού @@ -3514,6 +3637,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Αφήστε Εισαγωγ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Κινητής υποδιαστολής DocType: Print Settings,Page Settings,Ρυθμίσεις σελίδας +DocType: Notification Settings,Notification Settings,Ρυθμίσεις ειδοποιήσεων apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Οικονομία... apps/frappe/frappe/www/update-password.html,Invalid Password,Λανθασμένος κωδικός apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Εισήχθη με επιτυχία η {0} εγγραφή από {1}. @@ -3529,6 +3653,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail DocType: Letter Head,Letter Head Image,Εικόνα επικεφαλής επιστολής DocType: Address,Party GSTIN,Κόμμα GSTIN +DocType: Scheduled Job Type,Cron Format,Cron Format apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Αναφορά DocType: SMS Settings,Use POST,Χρησιμοποιήστε POST DocType: Communication,SMS,γραπτό μήνυμα @@ -3573,18 +3698,20 @@ DocType: Workflow,Allow approval for creator of the document,Επιτρέψτε apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Αποθήκευση αναφοράς DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Δράση διακομιστή apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Διαχειριστής προσπελαστεί {0} σε {1} μέσω της διεύθυνσης IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Το γονικό πεδίο πρέπει να είναι έγκυρο όνομα πεδίου apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Αποτυχία κατά την τροποποίηση της συνδρομής DocType: LDAP Settings,LDAP Group Field,Πεδίο ομάδας LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Εγγραφή εγγράφου apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Ίσο apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Μη έγκυρη μορφή CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Σφάλμα σύνδεσης με εφαρμογή δίσκου QZ ...

Πρέπει να εγκαταστήσετε και να εκτελέσετε την εφαρμογή QZ Tray, για να χρησιμοποιήσετε τη λειτουργία Raw Print.

Κάντε κλικ εδώ για να κάνετε λήψη και εγκατάσταση του δίσκου QZ .
Κάντε κλικ εδώ για να μάθετε περισσότερα σχετικά με την ασταθή εκτύπωση ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Ρυθμίστε τον αριθμό των αντιγράφων ασφαλείας DocType: DocField,Do not allow user to change after set the first time,Απαγόρευση στο χρήστη να αλλάξει μετά τον ορισμό για πρώτη φορά apps/frappe/frappe/utils/data.py,1 year ago,Πριν 1 χρόνο +DocType: DocType,Links Section,Τμήμα συνδέσμων apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Προβολή αρχείου καταγραφής όλων των συμβάντων εκτύπωσης, λήψης και εξαγωγής" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 μήνα DocType: Contact,Contact,Επαφή @@ -3611,16 +3738,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Νέο ηλεκτρονικό μήνυμα DocType: Custom DocPerm,Export,Εξαγωγή apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Για να χρησιμοποιήσετε το Ημερολόγιο Google, ενεργοποιήστε το {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Προσθέτοντας επίσης το πεδίο εξάρτησης κατάστασης {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Ενημερώθηκε με επιτυχία {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Ο δίσκος QZ απέτυχε: DocType: Dropbox Settings,Dropbox Settings,Ρυθμίσεις Dropbox DocType: About Us Settings,More content for the bottom of the page.,Περισσότερο περιεχόμενο για το κάτω μέρος της σελίδας. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Το έγγραφο αυτό έχει επανέλθει apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Η δημιουργία αντιγράφου ασφαλείας στο Google Drive ήταν επιτυχής. +DocType: Webhook,Naming Series,Σειρά ονομασίας DocType: Workflow,DocType on which this Workflow is applicable.,Τύπος εγγράφου για τον οποίο η παρούσα ροή εργασιών ισχύει. DocType: User,Enabled,Ενεργοποιημένο apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Απέτυχε η ολοκλήρωση της ρύθμισης apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Νέο {0}: {1} -DocType: Tag Category,Category Name,Όνομα κατηγορίας +DocType: Blog Category,Category Name,Όνομα κατηγορίας apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Ο γονέας υποχρεούται να αποκτήσει δεδομένα παιδικού πίνακα apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Εισαγωγή συνδρομητών DocType: Print Settings,PDF Settings,Ρυθμίσεις pdf @@ -3656,6 +3786,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Ημερολόγιο apps/frappe/frappe/client.py,No document found for given filters,Δεν βρέθηκε κανένα έγγραφο για δεδομένα φίλτρα apps/frappe/frappe/config/website.py,A user who posts blogs.,Ένας χρήστης που δημοσιεύει ιστολόγια. +DocType: DocType Action,DocType Action,Δράση DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Ένας άλλος {0} με το όνομα {1} υπάρχει, επιλέξτε ένα άλλο όνομα" DocType: DocType,Custom?,Προσαρμοσμένο; DocType: Website Settings,Website Theme Image,Ιστοσελίδα Εικόνα Θέμα @@ -3665,6 +3796,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Δεν ε apps/frappe/frappe/config/integrations.py,Backup,Αντιγράφων ασφαλείας apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Απαιτείται τύπος εγγράφου για τη δημιουργία πίνακα διαγραμμάτων DocType: DocField,Read Only,Μόνο για ανάγνωση +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Δεν ήταν δυνατή η δημιουργία διαταγής εξακρίβωσης apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Νέα Ενημερωτικό Δελτίο DocType: Energy Point Log,Energy Point Log,Εγγραφή ενεργειακών σημείων DocType: Print Settings,Send Print as PDF,Αποστολή εκτύπωσης ως pdf @@ -3690,16 +3822,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Ε apps/frappe/frappe/www/login.html,Or login with,Ή συνδεθείτε με DocType: Error Snapshot,Locals,Οι ντόπιοι apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Διαβιβάζονται μέσω του {0} σε {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} σας ανέφερε σε ένα σχόλιο στο {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Επιλέξτε ομάδα με ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,π.χ. (55 + 434) / 4 ή = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} Απαιτείται DocType: Integration Request,Integration Type,Τύπος ολοκλήρωσης DocType: Newsletter,Send Attachements,Αποστολή Συνημμένα +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Δεν βρέθηκαν φίλτρα apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Ένταξη Επαφών Google. DocType: Transaction Log,Transaction Log,Μητρώο συναλλαγών apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Στατιστικά με βάση την απόδοση του περασμένου μήνα (από {0} έως {1}) DocType: Contact Us Settings,City,Πόλη +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Απόκρυψη καρτών για όλους τους χρήστες apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Ενεργοποιήστε την επιλογή Αυτόματη επανάληψη για το doctype {0} στην Προσαρμογή φόρμας DocType: DocField,Perm Level,Επίπεδο πρόσβασης apps/frappe/frappe/www/confirm_workflow_action.html,View document,Προβολή εγγράφου @@ -3710,6 +3843,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Αν είναι ενεργοποιημένη, οι αλλαγές στο έγγραφο παρακολουθούνται και εμφανίζονται στη χρονολογική σειρά" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Στην Γενικη Αναζήτηση' δεν επιτρέπεται {0} στη σειρά {1} DocType: Energy Point Log,Appreciation,Εκτίμηση +DocType: Dashboard Chart,Number of Groups,Αριθμός ομάδων apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Προβολή λίστας DocType: Workflow,Don't Override Status,Μην Παράκαμψη Κατάσταση apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Ορος αναζήτησης @@ -3751,7 +3885,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-βορειοδυτικά-1 DocType: Dropbox Settings,Limit Number of DB Backups,Περιορίστε τον αριθμό των αντιγράφων ασφαλείας DB DocType: Custom DocPerm,Level,Επίπεδο -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Τελευταίες 30 ημέρες DocType: Custom DocPerm,Report,Έκθεση apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Ποσό πρέπει να είναι μεγαλύτερη από 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Συνδεδεμένο με το QZ Tray! @@ -3768,6 +3901,7 @@ DocType: S3 Backup Settings,us-west-2,us-δυτικό-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Επιλέξτε πίνακα παιδιών apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Εκκίνηση πρωτογενούς δράσης apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Αλλαγή +DocType: Social Login Key,User ID Property,Ιδιότητα αναγνωριστικού χρήστη DocType: Email Domain,domain name,όνομα τομέα DocType: Contact Email,Contact Email,Email επαφής DocType: Kanban Board Column,Order,Σειρά @@ -3790,7 +3924,7 @@ DocType: Contact,Last Name,Επώνυμο DocType: Event,Private,Ιδιωτικός apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Δεν υπάρχουν ειδοποιήσεις για σήμερα DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Αποστολή των συννημένων εκτυπώσεων του email ως pdf (συνιστάται) -DocType: Web Page,Left,Αριστερά +DocType: Onboarding Slide Field,Left,Αριστερά DocType: Event,All Day,Ολοήμερο apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Μοιάζει με κάτι δεν πάει καλά με τη διαμόρφωση πύλη πληρωμής αυτού του ιστότοπου. Καμία πληρωμή έχει γίνει. DocType: GCalendar Settings,State,Πολιτεία @@ -3822,7 +3956,6 @@ DocType: Workflow State,User,Χρήστης DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Εμφάνιση τίτλου στο παράθυρο του browser ως "πρόθεμα - τίτλος" DocType: Payment Gateway,Gateway Settings,Ρυθμίσεις πύλης apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,κείμενο σε είδος εγγράφου -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Εκτελέστε Δοκιμές apps/frappe/frappe/handler.py,Logged Out,Αποσυνδέθηκα apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Περισσότερο... DocType: System Settings,User can login using Email id or Mobile number,Ο χρήστης μπορεί να συνδεθεί χρησιμοποιώντας id ή αριθμό κινητού τηλεφώνου @@ -3838,6 +3971,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Περίληψη DocType: Event,Event Participants,Συμμετέχοντες στην εκδήλωση DocType: Auto Repeat,Frequency,Συχνότητα +DocType: Onboarding Slide,Slide Order,Παραγγελία διαφάνειας DocType: Custom Field,Insert After,Εισαγωγή μετά την DocType: Event,Sync with Google Calendar,Συγχρονισμός με το Ημερολόγιο Google DocType: Access Log,Report Name,Όνομα έκθεσης @@ -3865,6 +3999,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Το μέγιστο πλάτος για τον τύπο νόμισμα είναι 100px στη γραμμή {0} apps/frappe/frappe/config/website.py,Content web page.,Ιστοσελίδα περιεχομένου apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Προσθήκη νέου ρόλου +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Επισκεφτείτε την ιστοσελίδα +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Νέα ανάθεση DocType: Google Contacts,Last Sync On,Ο τελευταίος συγχρονισμός είναι ενεργοποιημένος DocType: Deleted Document,Deleted Document,Διαγράφηκε έγγραφο apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ωχ! κάτι πήγε στραβά @@ -3875,7 +4011,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Τοπίο apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Επεκτάσεις πλευρά του πελάτη σενάριο σε Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Οι εγγραφές για τα ακόλουθα doctypes θα φιλτραριστούν -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Χρονοδιάγραμμα αδρανής +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Χρονοδιάγραμμα αδρανής DocType: Blog Settings,Blog Introduction,Εισαγωγή blog DocType: Global Search Settings,Search Priorities,Προτεραιότητες αναζήτησης DocType: Address,Office,Γραφείο @@ -3885,12 +4021,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Σύνδεσμος διαγρ DocType: User,Email Settings,Ρυθμίσεις email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Πτώση εδώ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Εάν είναι ενεργοποιημένη, ο χρήστης μπορεί να συνδεθεί από οποιαδήποτε διεύθυνση IP χρησιμοποιώντας το στοιχείο Two Factor Auth, αυτό μπορεί επίσης να οριστεί για όλους τους χρήστες στις Ρυθμίσεις συστήματος" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Ρυθμίσεις εκτυπωτή ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Παρακαλώ εισάγετε τον κωδικό πρόσβασης σας για να συνεχίσετε apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Μου apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} Δεν είναι έγκυρη κατάσταση apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Εφαρμόστε σε όλους τους τύπους εγγράφων -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ενημέρωση ενεργειακού σημείου +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Ενημέρωση ενεργειακού σημείου +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Εκτέλεση εργασιών μόνο καθημερινά εάν είναι ανενεργό για (ημέρες) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Επιλέξτε μια άλλη μέθοδο πληρωμής. Το PayPal δεν υποστηρίζει τις συναλλαγές μετρητών «{0}» DocType: Chat Message,Room Type,Τύπος δωματίου DocType: Data Import Beta,Import Log Preview,Εισαγωγή προεπισκόπησης πρωτοκόλλου @@ -3899,6 +4035,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,Ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,Δημιουργία και χαρτογράφηση του χρήστη LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Μπορείτε να βρείτε τα πράγματα, ζητώντας «να βρει πορτοκαλί πελατών" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Τα σημερινά γεγονότα apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Συγγνώμη! Ο χρήστης θα πρέπει να έχει πλήρη πρόσβαση στο δικό τους αρχείο. ,Usage Info,χρήση Πληροφορίες apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Εμφάνιση συντομεύσεων πληκτρολογίου @@ -3915,6 +4052,7 @@ DocType: DocField,Unique,Μοναδικός apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} εκτιμήθηκε στις {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Μερική επιτυχία DocType: Email Account,Service,Υπηρεσία +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ρύθμιση> Χρήστης DocType: File,File Name,Όνομα αρχείου apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Δεν βρέθηκε {0} για {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3928,6 +4066,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Ολοκ DocType: GCalendar Settings,Enable,Ενεργοποίηση DocType: Google Maps Settings,Home Address,Διεύθυνση σπιτιού apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Μπορείτε να ανεβάσετε μόνο μέχρι 5000 εγγραφές με μία κίνηση. (Μπορεί να είναι λιγότερα σε ορισμένες περιπτώσεις) +DocType: Report,"output in the form of `data = [columns, result]`","output με τη μορφή `data = [columns, result] '" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Εφαρμοστέοι τύποι εγγράφων apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Ορίστε κανόνες για τις αναθέσεις των χρηστών. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ανεπαρκής άδεια για {0} @@ -3943,7 +4082,6 @@ DocType: Communication,To and CC,Για να και CC DocType: SMS Settings,Static Parameters,Στατικές παράμετροι DocType: Chat Message,Room,Δωμάτιο apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ενημερωθεί για {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Οι εργασίες φόντου δεν εκτελούνται. Επικοινωνήστε με τον Διαχειριστή DocType: Portal Settings,Custom Menu Items,Είδη Προσαρμοσμένο Μενού apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Όλες οι εικόνες που επισυνάπτονται στην παρουσίαση ιστοτόπου θα πρέπει να είναι δημόσιες DocType: Workflow State,chevron-right,Chevron-δεξιά @@ -3958,11 +4096,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Επιλεγμένες τιμές {0} DocType: DocType,Allow Auto Repeat,Να επιτρέπεται η αυτόματη επανάληψη apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Δεν υπάρχουν τιμές που να εμφανίζονται +DocType: DocType,URL for documentation or help,Διεύθυνση URL για τεκμηρίωση ή βοήθεια DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Πρότυπο ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Αναβαθμίστηκε με επιτυχία η εγγραφή {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Ο χρήστης {0} δεν έχει πρόσβαση doctype μέσω της άδειας ρόλου για το έγγραφο {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Το όνομα χρήστη και ο κωδικός πρόσβασης είναι απαραίτητα +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Αφήνω\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Παρακαλώ ανανεώστε για να λάβετε το τελευταίο έγγραφο. DocType: User,Security Settings,Ρυθμίσεις ασφαλείας apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Προσθήκη στήλης @@ -3972,6 +4112,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Φίλτρο Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Επισυνάπτεται {0}: {1} DocType: Web Page,Set Meta Tags,Ορίστε μεταγλωττιστές +DocType: Email Account,Use SSL for Outgoing,Χρησιμοποιήστε το SSL για τις εξερχόμενες 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: S3 Backup Settings,Backup Limit,Όριο αντιγράφων ασφαλείας DocType: Dashboard Chart,Line,Γραμμή @@ -4004,4 +4145,3 @@ DocType: DocField,Ignore User Permissions,Αγνοήστε τα δικαιώμα apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Αποθηκεύτηκε επιτυχώς apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Παρακαλώ ρωτήστε το διαχειριστή σας για να επαληθεύσετε την εγγραφή σας DocType: Domain Settings,Active Domains,Ενεργοί τομείς -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Εμφάνιση Σύνδεση diff --git a/frappe/translations/en_us.csv b/frappe/translations/en_us.csv index e3bb59a417..c758ac71da 100644 --- a/frappe/translations/en_us.csv +++ b/frappe/translations/en_us.csv @@ -3,7 +3,6 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Payment Canc apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Cannot link canceled document: {0} DocType: Workflow State,zoom-out,zoom-out DocType: Print Settings,Allow Print for Cancelled,Allow Print for Canceled -apps/frappe/frappe/utils/data.py,1 weeks ago,1 week ago DocType: Workflow State,facetime-video,Facetime-Video apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Canceling {0} apps/frappe/frappe/model/document.py,Cannot edit cancelled document,Cannot edit canceled document diff --git a/frappe/translations/es.csv b/frappe/translations/es.csv index 492ea88384..4276d08226 100644 --- a/frappe/translations/es.csv +++ b/frappe/translations/es.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Por favor, seleccione un campo de cantidad." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Cargando archivo de importación ... DocType: Assignment Rule,Last User,Último usuario -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Una nueva tarea, {0}, le ha sido asignada por {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Valores predeterminados de sesión guardados apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Recargar archivo DocType: Email Queue,Email Queue records.,Registros de Email en cola. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,Árbol {0} DocType: User,User Emails,Correos electrónicos del Usuario DocType: User,Username,Nombre de usuario apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importar Zip +DocType: Scheduled Job Type,Create Log,Crear registro apps/frappe/frappe/model/base_document.py,Value too big,Valor demasiado grande DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Ejecutar Script de Prueba @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensual DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Habilitar correos entrantes apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Peligro -DocType: Address,Email Address,Dirección de correo electrónico +apps/frappe/frappe/www/login.py,Email Address,Dirección de correo electrónico DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Envíar una notificación al no ser leído apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Exportación no permitida. Se necesita el rol {0} para exportar. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,¿Ca DocType: DocType,Is Published Field,Es campo publicable DocType: GCalendar Settings,GCalendar Settings,Configuración de GCalendar DocType: Email Group,Email Group,Grupo de Correo Electrónico +apps/frappe/frappe/__init__.py,Only for {},Solo para {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar: no se pudo eliminar el evento {0} de Google Calendar, código de error {1}." DocType: Event,Pulled from Google Calendar,Extraído de Google Calendar DocType: Note,Seen By,Visto por apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Añadir Multiple -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Ganaste algunos puntos de energía. apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,No es una Imagen de Usuario Válida. DocType: Energy Point Log,Reverted,Revertido DocType: Success Action,First Success Message,Primer Mensaje de Éxito @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Diferente a apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valor incorrecto: {0} debe ser {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Cambiar las propiedades de los campos (ocultar, sólo lectura, permisos, etc)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apreciar +DocType: Notification Settings,Document Share,Compartir documento DocType: Workflow State,lock,bloquear apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Ajustes para página de contacto. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrador logeado @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Si está habilitado, el documento se marca como visto, la primera vez que un usuario lo abre" DocType: Auto Repeat,Repeat on Day,Repita el Día DocType: DocField,Color,Color +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Marcar todo como leido DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,Guión - derecha DocType: Has Role,Has Role,Tiene Rol @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostrar rastreo DocType: DocType,Default Print Format,Formato de impresión por defecto DocType: Workflow State,Tags,Etiquetas +DocType: Onboarding Slide,Slide Type,Tipo de diapositiva apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ninguno: Fin del flujo de trabajo apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipos de Documentos @@ -135,7 +138,6 @@ DocType: Language,Guest,Invitado DocType: DocType,Title Field,Campo de título DocType: Error Log,Error Log,Registro de Errores apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL invalida -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Los últimos 7 días apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Repeticiones como ""abcabcabc"" son sólo un poco más difícil de adivinar que el ""abc""" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Si usted piensa que esto no está autorizado, por favor, cambie la contraseña del administrador." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Cliente apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Seleccionar Columna apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Este formulario se ha modificado después de haber cargado DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Registro de notificaciones 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Abrir Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Parece que hay un problema con la configuración de la banda del servidor. En caso de falla, la cantidad será reembolsada a su cuenta." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Pr apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Enviar DocType: Workflow Action Master,Workflow Action Name,Nombre de la Acción del Grupo de Trabajo apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,El 'DocType' no se puede fusionar -DocType: Web Form Field,Fieldtype,FieldType +DocType: Onboarding Slide Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,No es un archivo zip DocType: Global Search DocType,Global Search DocType,Búsqueda global DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Email Enviado? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Alternar Gráfico apps/frappe/frappe/desk/form/save.py,Did not cancel,No se canceló DocType: Social Login Key,Client Information,Información del Cliente +DocType: Energy Point Rule,Apply this rule only once per document,Aplique esta regla solo una vez por documento DocType: Workflow State,plus,más +DocType: DocField,Read Only Depends On,Solo lectura depende de apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Conectado como invitado o administrador DocType: Email Account,UNSEEN,INVISIBLE apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Administrador de archivos @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Razón 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Ninguna actividad +DocType: Server Script,Script Manager,Administrador de guiones +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ninguna actividad apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplicaciones de terceros apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,No hay eventos hoy apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,No puedes darte puntos de revisión apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType debe ser Enviable para el evento de Documento Seleccionado DocType: Workflow State,circle-arrow-up,circle-arrow -up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},No permitido para {0}: {1}. Campo restringido: {2} 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,You are not allowed to delete a standard Website Theme,No tienes permitido borrar un tema predeterminado del sitio web. +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Crea tu primer {0} DocType: Data Import,Log Details,Detalles del Registro DocType: Workflow Transition,Example,Ejemplo DocType: Webhook Header,Webhook Header,Encabezado del Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Fondo de Chat apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marcar como Leído apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Actualizando {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Ya existe una diapositiva de incorporación {0} con el mismo orden de diapositivas apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Desactivar reporte DocType: Translation,Contributed Translation Doctype Name,Traducción contribuida Nombre del tipo de documento +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurar> Personalizar formulario DocType: PayPal Settings,Redirect To,redirigir a DocType: Data Migration Mapping,Pull,Pull DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Formato de JavaScript: : frappe.query_reports['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Registro interno de documen DocType: Energy Point Settings,Review Levels,Niveles de revisión DocType: Workflow State,Comment,Comentario DocType: Data Migration Plan,Postprocess Method,Método Posterior al Proceso +DocType: DocType Action,Action Type,tipo de acción apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Tomar Foto DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Usted puede realizar cambios a los documentos validados, cancelándolos primero y hacer los arreglos necesarios." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Guardar como DocType: Comment,Seen,Visto apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Mostrar más detalles. +DocType: Server Script,Before Submit,Antes de enviar 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,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,Archive,Archivo @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Clave de acceso a Dropbox apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Nombre de campo incorrecto {0} en la configuración add_fetch del script personalizado apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Seleccione Contactos de Google con los que se debe sincronizar el contacto. DocType: Web Page,Main Section (HTML),Sección principal (HTML) +DocType: Scheduled Job Type,Annual,Anual DocType: Workflow State,headphones,Auriculares apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Se requiere contraseña o seleccione En espera de la contraseña DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,por ejemplo replies@yourcomany.com. Todas las respuestas vendrán a esta bandeja de entrada. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Determina el orden de la diapositiva en el asistente. Si no se muestra la diapositiva, la prioridad debe establecerse en 0." DocType: Data Migration Run,Current Mapping,Mapa actual apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Se requiere un nombre y correo electrónico válidos apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Hacer que todos los archivos adjuntos sean privados @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Reglas de Transición apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Mostrando solo las primeras {0} filas en la vista previa apps/frappe/frappe/core/doctype/report/report.js,Example:,Ejemplo : +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Restricciones DocType: Workflow,Defines workflow states and rules for a document.,Define los estados de flujo de trabajo y reglas para un documento. DocType: Workflow State,Filter,Filtro apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Consulte el registro de errores para obtener más información: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Trabajo apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} desconectado: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Información apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: no se puede establecer ""asignar envío"" si no es enviable" DocType: Transaction Log,Row Index,Índice de Fila DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid 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 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Ejecutará trabajos programados solo una vez al día para sitios inactivos. Predeterminado 4 días si se establece en 0. DocType: Assignment Rule,System Manager,Administrador del sistema +DocType: Scheduled Job Log,Scheduled Job,Trabajo programado DocType: Custom DocPerm,Permissions,Permisos apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks para integración interna DocType: Dropbox Settings,Allow Dropbox Access,Permitir Acceso a Dropbox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Escan DocType: Email Flag Queue,Email Flag Queue,Señal de la bandera del correo electrónico DocType: Access Log,Columns / Fields,Columnas / Campos apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Hojas de estilo para los Formatos de Impresión +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,El campo Función agregada es obligatorio para crear un cuadro de mandos apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,No puede identificar abierto {0}. Intentar otra cosa. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Su información se ha enviado apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,El usuario {0} no se puede eliminar @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Nombre de Campo DocType: Assignment Rule,Assign To Users,Asignar a usuarios apps/frappe/frappe/public/js/frappe/utils/utils.js,or,o apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nombre del módulo... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continuar +DocType: Onboarding Slide,Continue,Continuar apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,La integración de Google está deshabilitada. DocType: Custom Field,Fieldname,Nombre del campo DocType: Workflow State,certificate,certificado apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verificando ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Su tarea en {0} {1} ha sido eliminada apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,La primera columna de datos debe estar en blanco. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Mostrar todas las versiones apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Ver comentario @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Restringir IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Tablero apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,No se pueden enviar mensajes de correo electrónico en este momento apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar: no se pudo actualizar el evento {0} en Google Calendar, código de error {1}." +DocType: Notification Log,Email Content,Contenido de correo electrónico apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Buscar o escribir un comando DocType: Activity Log,Timeline Name,Nombre de la línea de tiempo apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Solo uno {0} se puede establecer como primario. DocType: Email Account,e.g. smtp.gmail.com,por ejemplo smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Añadir una nueva regla DocType: Contact,Sales Master Manager,Gerente principal de ventas +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Debe habilitar JavaScript para que su aplicación funcione. DocType: User Permission,For Value,Por valor DocType: Event,Google Calendar ID,ID de Google Calendar apps/frappe/frappe/www/complete_signup.html,One Last Step,Un último paso @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Campo de segundo nombre de LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importando {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Permitir el Acceso de GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} es un campo obligatorio +DocType: DocType,Documentation Link,Enlace de documentación apps/frappe/frappe/templates/includes/login/login.js,Login token required,Se necesita un token de inicio de sesión apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rango mensual: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleccionar múltiples elementos de la lista @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL del archivo DocType: Version,Table HTML,Tabla HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Añadir Suscriptores +DocType: Notification Log,Energy Point,Punto de energía apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Eventos para hoy DocType: Google Calendar,Push to Google Calendar,Empuje a Google Calendar DocType: Notification Recipient,Email By Document Field,Email por documento @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Lejos DocType: Currency,Fraction Units,Fracción de unidades apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} de {1} a {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marcar como Hecho DocType: Chat Message,Type,Tipo DocType: Google Settings,OAuth Client ID,ID de cliente de OAuth DocType: Auto Repeat,Subject,Asunto apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Volver al Escritorio DocType: Web Form,Amount Based On Field,Cantidad basada en el Campo +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} no tiene versiones rastreadas. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,El usuario es obligatorio para compartir DocType: DocField,Hidden,Oculto DocType: Web Form,Allow Incomplete Forms,Permitir formularios incompletos @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,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,Fold can not be at the end of the form,El plegado no se puede utilizar al final del formulario DocType: Communication,Bounced,Rebotados +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,de DocType: Deleted Document,Deleted Name,Nombre borrado apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Usuarios del sistema y del sitio web DocType: Workflow Document State,Doc Status,Estado de Doc. @@ -521,6 +546,7 @@ DocType: Language,Language Code,Código de lenguaje DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: Por correo electrónico predeterminado se envían copias de seguridad fallidas. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Agregar filtro apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS enviados a los teléfonos: {0} +DocType: Notification Settings,Assignments,Asignaciones apps/frappe/frappe/utils/data.py,{0} and {1},{0} y {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Iniciar una conversación. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Agregar siempre ""Borrador"" al imprimir borradores de documentos" @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Inicio de mapeo actual apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,El correo electrónico se ha marcado como spam DocType: Comment,Website Manager,Administrar Página Web apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Se ha desconectado la subida de archivos. Vuelve a intentarlo. +DocType: Data Import Beta,Show Failed Logs,Mostrar registros fallidos apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Traducciones apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Seleccionó documentos en Borrador o Cancelados apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},El documento {0} se ha configurado en estado {1} por {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Documento en Cola DocType: GSuite Templates,Destination ID,ID de Destino DocType: Desktop Icon,List,Lista DocType: Activity Log,Link Name,Nombre del enlace +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Usted no ha\ DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa +DocType: Onboarding Slide,Onboarding Slide,Diapositiva de incorporación apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Contraseña invalida: DocType: Print Settings,Send document web view link in email,Enviar enlace a la vista web del documento en el correo electrónico apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Anterior @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,gris oscuro apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Terminado: {0} a {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,soltar +DocType: Dashboard Chart,Aggregate Function Based On,Función agregada basada en apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Por favor, duplicar esto para realizar los cambios" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Presione Enter para guardar apps/frappe/frappe/utils/pdf.py,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 @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Días anteriores apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Los eventos diarios deben finalizar el mismo día. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Editar... DocType: Workflow State,volume-down,volume-down +DocType: Onboarding Slide,Help Links,Enlaces de ayuda apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Acceso no permitido desde esta dirección IP +DocType: Notification Settings,Enable Email Notifications,Habilitar notificaciones por correo electrónico apps/frappe/frappe/desk/reportview.py,No Tags,Sin Etiquetas DocType: Email Account,Send Notification to,Enviar notificación a DocType: DocField,Collapsible,Plegable @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Última copia de seguridad activada DocType: Customize Form Field,Customize Form Field,Personalizar campos de formulario DocType: Energy Point Rule,For Document Event,Para evento de documento DocType: Website Settings,Chat Room Name,Nombre de la Sala de Chat +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Sin alterar DocType: OAuth Client,Grant Type,Tipo de Subvención apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Indique que documentos pueden ser leídos por los usuarios DocType: Deleted Document,Hub Sync ID,ID de Sincronización del Hub @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,Util DocType: Auto Repeat,Quarterly,Trimestral apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Todo el tiempo apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Estado del Documento ilegal para {0} DocType: Email Account,Enable Auto Reply,Habilitar Respuesta Automática apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,No visto @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Mensa DocType: Email Account,Notify if unreplied,Notificarme si no tiene respuesta apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Escanee el código QR e ingrese el código resultante que se muestra. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Habilitar gradientes +DocType: Scheduled Job Type,Hourly Long,Cada hora DocType: System Settings,Minimum Password Score,Puntuación mínima de contraseña DocType: DocType,Fields,Campos DocType: System Settings,Your organization name and address for the email footer.,El nombre de la organización y dirección para el pie de página del correo electrónico. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabla padre apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,¡S3 Backup completo! apps/frappe/frappe/config/desktop.py,Developer,Desarrollador apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creado +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Para habilitarlo, siga las instrucciones en el siguiente enlace: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} en la fila {1} no puede tener tanto URL como elementos hijos apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Debe haber al menos una fila para las siguientes tablas: {0} DocType: Print Format,Default Print Language,Lenguaje de impresión predeterminado apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestros De apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} no se puede eliminar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,No hay registros fallidos apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,No hay comentarios todavía apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Configure SMS antes de configurarlo como un método de autenticación, a través de Configuración de SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Tanto DocType como Nombre son obligatorios @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Elementos de pie de página apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menú DocType: DefaultValue,DefaultValue,Valor predeterminado DocType: Auto Repeat,Daily,Diario +DocType: Onboarding Slide,Max Count,Recuento máximo apps/frappe/frappe/config/users_and_permissions.py,User Roles,Roles de usuario DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter overrides a standard DocType or Field property apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,No se puede actualizar: link incorrecto/expirado @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Anfitrión DocType: Data Import Beta,Import File,Importar archivo +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Error de plantilla apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Columna {0} ya existe. DocType: ToDo,High,Alto apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nuevo Evento @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Mostrar en Filtro DocType: Address,Daman and Diu,Daman and Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Proyecto DocType: Address,Personal,Personal +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Configuración de impresión sin formato ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Ver https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region para más detalles. apps/frappe/frappe/config/settings.py,Bulk Rename,Renombrar en Masa DocType: Email Queue,Show as cc,Mostrar como cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Toma Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Información preliminar de la página de contacto DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,pulgar-abajo +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Cancelar documentos DocType: User,Send Notifications for Email threads,Enviar notificaciones para hilos de correo electrónico apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Profesor apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,No se encuentra en modo desarrollador @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,La copia de DocType: DocField,In Global Search,En Búsqueda Global DocType: System Settings,Brute Force Security,Fuerza Bruta de Seguridad DocType: Workflow State,indent-left,Guión - izquierda -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Hace {0} año (s) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Es arriesgado eliminar este archivo: {0}. Por favor, póngase en contacto con el administrador del sistema." DocType: Currency,Currency Name,Nombre de la divisa apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No hay mensajes de correo electrónico @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Campo de usuario DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ya ha sido dado de baja para {1} {2} +DocType: Scheduled Job Type,Stopped,Detenido. apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,No se eliminó apps/frappe/frappe/desk/like.py,Liked,Gustó apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Enviar ahora apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Permitir invitado DocType: Report,Query,Consulta DocType: Customize Form,Sort Order,Ordenar por apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'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} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Método de autenticación de dos factores apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Primero configure el nombre y guarde el registro. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 registros +DocType: DocType Link,Link Fieldname,Nombre del campo de enlace apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Compartido con {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Darse de baja DocType: View Log,Reference Name,Nombre de referencia apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Cambiar usuario +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,primero apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Actualizar Traducciones DocType: Error Snapshot,Exception,Excepción DocType: Email Account,Use IMAP,El uso de IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type 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: Website Route Meta,Website Route Meta,Ruta del sitio web Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Campo de diapositivas de incorporación DocType: DocField,Index,Índice DocType: Email Group,Newsletter Manager,Administrador de boletínes apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opción 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Est apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurar Gráficos DocType: User,Last IP,Última IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Por favor agregue un asunto a su correo electrónico -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Se ha compartido un nuevo documento {0} con usted {1}. DocType: Data Migration Connector,Data Migration Connector,Conector de migración de datos apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} revertido {1} DocType: Email Account,Track Email Status,Seguir el Estado del Correo Electrónico @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Predeterminar Saliente DocType: Workflow State,play,Iniciar apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Haga clic en el enlace de abajo para completar su registro y establecer una nueva contraseña apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,No se ha añadido +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ganó {1} puntos por {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,No hay cuentas de correo electrónico asignada DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Configuración de contácto @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Buscando DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,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/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Buscar por nombre de archivo o extensión +DocType: Onboarding Slide,Slide Title,Título de diapositiva DocType: Notification,View Properties (via Customize Form),Ver propiedades (vía personalizar formulario) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Haga clic en un archivo para seleccionarlo. DocType: Note Seen By,Note Seen By,Nota vista por @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Share URL DocType: System Settings,Allow Consecutive Login Attempts ,Permitir intentos de inicio de sesión consecutivos apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Se produjo un error durante el proceso de pago. Por favor contáctenos. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Si el Tipo de diapositiva es Crear o Configuración, debe haber un método 'create_onboarding_docs' en el archivo {ref_doctype} .py que se ejecutará después de completar la diapositiva." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{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 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,No son Descendientes de DocType: Contact,Company Name,Nombre de compañía DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Ajustes ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,a su navegador apps/frappe/frappe/utils/data.py,Cent,Centavo ,Recorder,Grabadora @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Haga un seguimiento de si su correo electrónico ha sido abierto por el destinatario.
Nota: Si está enviando a varios destinatarios, incluso si un destinatario lee el correo electrónico, se considerará "Abierto"." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Valores faltantes requeridos apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permitir acceso a contactos de Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Restringido DocType: Data Migration Connector,Frappe,Frapé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Marcar como no Leído DocType: Activity Log,Operation,Operación @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Permitir Imprimir DocType: Communication,Clicked,Teclear apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Dejar de seguir apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},No tiene permiso para '{0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta de correo electrónico predeterminada desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Programado para enviar DocType: DocType,Track Seen,Seguimiento de vistas DocType: Dropbox Settings,File Backup,Archivo de Respaldo @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,No hay {0} apps/frappe/frappe/config/customization.py,Add custom forms.,Agregar formularios personalizados. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} en {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,presentado este documento -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuración> Permisos de usuario apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,El sistema ofrece una gran cantidad de roles predefinidos. Usted puede agregar nuevos roles para afinar los permisos. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nombre del Disparador -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Dominios +DocType: Onboarding Slide,Domains,Dominios DocType: Blog Category,Blog Category,Categoría de Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,No se puede asignar porque no cumple la siguiente condición: DocType: Role Permission for Page and Report,Roles HTML,Roles HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Sábado. DocType: User,Represents a User in the system.,Listado de usuarios en el sistema. DocType: List View Setting,Disable Auto Refresh,Desactivar actualización automática DocType: Comment,Label,Etiqueta -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","La tarea {0}, que usted asignó a {1}, se ha cerrado." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Por favor, cierre esta ventana" DocType: Print Format,Print Format Type,Tipo de formato de impresión DocType: Newsletter,A Lead with this Email Address should exist,Debe existir una iniciativa con esta dirección de correo electrónico @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Configuración SMTP par apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,elige un DocType: Data Export,Filter List,Lista de Filtros DocType: Data Export,Excel,Sobresalir +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Mensaje de Repuesta Automática DocType: Data Migration Mapping,Condition,Condición apps/frappe/frappe/utils/data.py,{0} hours ago,Hace {0} horas @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Contribudor de la Base de Conocimiento DocType: Communication,Sent Read Receipt,Confirmación de lectura enviada DocType: Email Queue,Unsubscribe Method,Método para darse de baja +DocType: Onboarding Slide,Add More Button,Agregar más botones DocType: GSuite Templates,Related DocType,DocType Relacionado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Editar para agregar contenido apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Seleccione Idiomas apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detalles de Tarjeta apps/frappe/frappe/__init__.py,No permission for {0},Sin permiso para {0} DocType: DocType,Advanced,Anticipado +DocType: Onboarding Slide,Slide Image Source,Fuente de imagen de diapositiva apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referencia: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Señora @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Maestro DocType: DocType,User Cannot Create,El usuario no puede crear apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Hecho exitosamente apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Acceso Dropbox está aprobado! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,¿Seguro que quieres fusionar {0} con {1}? DocType: Customize Form,Enter Form Type,Seleccione el Tipo de Formulario DocType: Google Drive,Authorize Google Drive Access,Autorizar acceso a Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parámetro faltante Nombre de Tablero Kanban @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Precaución, autorizando 'DocType'" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formatos personalizados para impresión, correo electrónico" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma de {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Actualizado Para Nueva Versión DocType: Custom Field,Depends On,Depende de DocType: Kanban Board Column,Green,Verde DocType: Custom DocPerm,Additional Permissions,Permisos Adicionales @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar: no se pudo crear el calendario para {0}, código de error {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Editando línea DocType: Workflow Action Master,Workflow Action Master,Flujo de trabajo de Acción Maestro +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Eliminar todos DocType: Custom Field,Field Type,Tipo de campo apps/frappe/frappe/utils/data.py,only.,solo. DocType: Route History,Route History,Historia de la Ruta @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,¿Se te olvidó tu contraseñ DocType: System Settings,yyyy-mm-dd,aaaa-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,Identificador apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error del Servidor +DocType: Server Script,After Delete,Después de borrar apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Ver todos los reportes pasados. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Se requiere un ID para iniciar sesión DocType: Website Slideshow,Website Slideshow,Presentación de la Página Web apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No hay datos 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)" +DocType: Server Script,After Submit,Después de enviar apps/frappe/frappe/email/doctype/email_account/email_account.py,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} DocType: User,Banner Image,Imagen de banner DocType: Custom Field,Custom Field,Campo Personalizado @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Si el usuario tiene algún rol asignado, entonces el usuario se convierte en un ""Usuario del Sistema"". Los ""Usuarios del sistema"" tienen acceso al escritorio" DocType: System Settings,Date and Number Format,Formato de Fecha y Número apps/frappe/frappe/model/document.py,one of,uno de -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurar> Personalizar formulario apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Comprobando un momento apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Mostrar etiquetas DocType: DocField,HTML Editor,Editor de HTML 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 Permisos de Usuario Estricto esta seleccionado 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuración> Usuario +DocType: DocType,Actions,Acciones DocType: Workflow State,align-justify,alinear-justificar DocType: User,Middle Name (Optional),Segundo nombre (opcional) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,No permitido @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,No hay resu DocType: System Settings,Security,Seguridad. apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Programado para enviar a {0} destinatarios. apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cortar +DocType: Server Script,After Save,Después de guardar apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},renombrado de {0} a {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} de {1} ({2} filas con hijos) DocType: Currency,**Currency** Master,**Divisa/Moneda** Principal @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Valores del Filtro DocType: Communication,User Tags,Etiquetas de usuario DocType: Data Migration Run,Fail,Falla DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Última ejecución DocType: Data Migration Run,Pull Failed,Pull Failed apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Mostrar / Ocultar tarjetas DocType: Communication,Feedback Request,Solicitud de retroalimentación apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importar Datos desde Archivos CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Siguientes campos faltan: +DocType: Notification Log,From User,Del usuario apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Cancelando {0} DocType: Web Page,Main Section,Sección Principal DocType: Page,Icon,Icono apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Sugerencia: Incluya símbolos, números y letras mayúsculas en la contraseña" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configure notificaciones para menciones, tareas, puntos de energía y más." DocType: DocField,Allow in Quick Entry,Permitir Entrada Rápida apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/aaaa @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL del tema DocType: Customize Form,Sort Field,Ordenar por campo DocType: Razorpay Settings,Razorpay Settings,Ajustes Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Editar filtro -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Añadir más DocType: System Settings,Session Expiry Mobile,Vencimiento de sesión en dispositivo móvil apps/frappe/frappe/utils/password.py,Incorrect User or Password,Usuario o Contraseña Incorrecta apps/frappe/frappe/templates/includes/search_box.html,Search results for,Resultados de la búsqueda para @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Regla de puntos de energía DocType: Communication,Delayed,Retrasado apps/frappe/frappe/config/settings.py,List of backups available for download,Lista de las copias de seguridad disponibles para su descarga +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Pruebe la nueva importación de datos apps/frappe/frappe/www/login.html,Sign up,Regístrate apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Fila {0}: No se permite deshabilitar Obligatorio para Campos Estándar +DocType: Webhook,Enable Security,Habilitar seguridad apps/frappe/frappe/config/customization.py,Dashboards,Tableros DocType: Test Runner,Output,Salida DocType: Milestone,Track Field,Campo de la pista @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Establecer propiedad después de apps/frappe/frappe/config/customization.py,Add fields to forms.,Agregar campos a los formularios. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Parece que algo está mal con la configuración de PayPal del sitio apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Agregar una opinión +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} te asignó una nueva tarea {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Tamaño de fuente (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar. DocType: Email Account,Sendgrid,SendGrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Elemento del Menú del Portal apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Establecer filtros DocType: Contact Us Settings,Email ID,ID de Correo Electrónico DocType: Energy Point Rule,Multiplier Field,Campo multiplicador +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,"No se pudo crear el pedido de Razorpay. Por favor, póngase en contacto con el administrador" DocType: Dashboard Chart,Time Interval,Intervalo de tiempo DocType: Activity Log,Keep track of all update feeds,Mantenga un registro de todos los feeds de actualización +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ha compartido un documento {1} {2} contigo 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Clave DocType: Address,Contacts,Contactos DocType: System Settings,Setup Complete,Configuración Completa. apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Informe de todos los documentos compartidos +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","La plantilla de importación debe ser de tipo .csv, .xlsx o .xls" apps/frappe/frappe/www/update-password.html,New Password,Nueva Contraseña apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtro {0} falta apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,¡Lo siento! No se pueden eliminar los comentarios generados automáticamente @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Correr DocType: Blog Post,Content (HTML),Contenido (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Configuración para DocType: Personal Data Download Request,User Name,Nombre de usuario DocType: Workflow State,minus-sign,signo-menos apps/frappe/frappe/public/js/frappe/request.js,Not Found,No encontrado @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0} No tiene permiso apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportar permisos personalizados apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,No se Encontraron Artículos. DocType: Data Export,Fields Multicheck,Campos Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Completo DocType: Activity Log,Login,Iniciar sesión DocType: Web Form,Payments,Pagos. apps/frappe/frappe/www/qrcode.html,Hi {0},Hola {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integración de Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} revirtió sus puntos en {1} {2} DocType: System Settings,Enable Scheduled Jobs,Habilitar Tareas Programadas apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notas: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inactivo @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Planti apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Error de Permiso apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nombre de {0} no puede ser {1} DocType: User Permission,Applicable For,Aplicable para. +DocType: Dashboard Chart,From Date,Desde la fecha apps/frappe/frappe/core/doctype/version/version_view.html,Success,Éxito apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesión expirada DocType: Kanban Board Column,Kanban Board Column,Columna de Tablero Kanban @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,¡ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,no se permite ; en condición DocType: Async Task,Async Task,Tarea Asíncrona DocType: Workflow State,picture,Imagen -apps/frappe/frappe/www/complete_signup.html,Complete,Completar +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Completar DocType: DocType,Image Field,campo de imagen DocType: Print Format,Custom HTML Help,Ayuda HTML personalizada DocType: LDAP Settings,Default Role on Creation,Rol predeterminado en la creación @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Siguiente estado DocType: User,Block Modules,Módulos de Bloque DocType: Print Format,Custom CSS,CSS personalizado +DocType: Energy Point Rule,Apply Only Once,Aplicar solo una vez apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Añadir un comentario DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorado: {0} a {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Por defecto entrante DocType: Workflow State,repeat,repetir DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},El valor debe ser uno de {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Cancelar todos los documentos 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Ir a la lista {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ayuda en Búsqueda @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrado apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,La repetición automática para este documento ha sido deshabilitada. DocType: DocType,Hide Copy,Ocultar copia apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Limpiar todos los roles +DocType: Server Script,Before Save,Antes de guardar apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} debe ser único apps/frappe/frappe/model/base_document.py,Row,Línea apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC y Plantilla de Correo Electrónico" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Desconectado apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importado con éxito {0} DocType: User,API Key,Clave de API DocType: Email Account,Send unsubscribe message in email,Enviar mensaje de correo electrónico para darse de baja -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Editar titulo apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Nombre de campo por el cual el 'DocType' enlazará el campo apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documentos asignadas a usted y por usted. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,También puedes copiar y pegar esto @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Adjuntar Imagen DocType: Workflow State,list-alt,Listado apps/frappe/frappe/www/update-password.html,Password Updated,Contraseña Actualizada +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuración> Permisos de usuario apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Pasos para verificar su inicio de sesión apps/frappe/frappe/utils/password.py,Password not found,Contraseña no encontrada +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Longitud de Página DocType: Email Queue,Expose Recipients,Exponer Destinatarios apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,'Anexar a' es obligatorio para los correos entrantes @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Tamaño máximo de Adjunto (en MB) apps/frappe/frappe/www/login.html,Have an account? Login,¿Tiene una cuenta? Iniciar sesión +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Configuración de impresión ... DocType: Workflow State,arrow-down,flecha hacia abajo apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Fila {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},El usuario no tiene permitido eliminar {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ingrese s DocType: Dropbox Settings,Dropbox Access Secret,Acceso Secreto a Dropbox DocType: Tag Link,Document Title,Titulo del documento apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorio) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Hace {0} año (s) DocType: Social Login Key,Social Login Provider,Proveedor de Inicio de Sesión Social apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Añadir otro comentario apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"No se encontraron datos en el archivo. Por favor, vuelva a conectar el nuevo archivo con los datos." @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,mano-abajo apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",No se encontraron campos que puedan usarse como una columna Kanban. Use el formulario Personalizar para agregar un campo personalizado de tipo "Seleccionar". DocType: Address,GST State,Estado del GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,"{0}: no se puede establecer ""cancelar"" sin enviar" +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Usuario ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redireccionamiento obligado a Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Ayuda abierta DocType: DocType,Is Submittable,Se puede validar -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nueva Mención +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nueva Mención apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,No hay nuevos contactos de Google sincronizados. DocType: File,Uploaded To Google Drive,Subido a Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Valor para un campo de verificación puede ser 0 o 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Bandeja de Entrada DocType: Kanban Board Column,Red,Rojo DocType: Workflow State,Tag,Etiqueta. -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,El Documento no se puede guardar DocType: Energy Point Rule,Maximum Points,Puntos máximos apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mi Configuración @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} puntos de apreciación para {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Los roles para los usuarios se pueden configurar desde la página de usuario. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Agregar comentario +DocType: Dashboard Chart,Select Date Range,Seleccionar rango de fechas DocType: DocField,Mandatory,Obligatorio apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Módulo para Exportar +DocType: Scheduled Job Type,Monthly Long,Largo mensual apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: no se ha definido ningún conjunto de permisos básicos +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Envíe un correo electrónico a {0} para vincularlo aquí apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Significado de Validar, Cancelar y Corregir" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tareas @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Seguimiento de hito DocType: Social Login Key,Identity Details,Detalles de Identidad apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},No se permite la transición del estado del flujo de trabajo de {0} a {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostrar panel de control -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nuevo Mensaje DocType: File,Preview HTML,Vista Previa HTML DocType: Desktop Icon,query-report,consulta de informe DocType: Data Import Beta,Template Warnings,Advertencias de plantilla @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Vinculado Co apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Editar configuración de informes de correo electrónico automático DocType: Chat Room,Message Count,Contador de Mensajes DocType: Workflow State,book,Libro +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} está vinculado con los siguientes documentos enviados: {2} DocType: Communication,Read by Recipient,Leído por el Destinatario DocType: Website Settings,Landing Page,Pagina de inicio apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Error en Script Personalizado apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nombre apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No hay permisos establecidos para este criterio. DocType: Auto Email Report,Auto Email Report,Reporte de Correo Electrónico Automático +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nuevo documento compartido apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,¿Eliminar comentario? DocType: Address Template,This format is used if country specific format is not found,Este formato será utilizado para todos los documentos si no se encuentra un formato específico para el país. DocType: System Settings,Allow Login using Mobile Number,Permitir inicio de sesión con número de teléfono móvil apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Si está habilitado, a los usuarios que inicien sesión desde la Dirección IP Restringida, no se les solicitará la autenticación de dos factores." +DocType: Server Script,After Cancel,Después de cancelar DocType: Auto Repeat,Get Contacts,Obtener Contactos apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Publicar bajo {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saltar columna sin título @@ -1684,6 +1757,7 @@ 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 +DocType: Notification Log,Mention,Mencionar DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fuentes apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precisión debe estar entre 1 y 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,y apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Este informe fue generado el {0} DocType: Error Snapshot,Frames,Marcos -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Asignación +DocType: Notification Log,Assignment,Asignación DocType: Notification,Slack Channel,Canal de Slack DocType: About Us Team Member,Image Link,Enlace a la Imagen DocType: Auto Email Report,Report Filters,Filtros de informe @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,No se puede actualizar evento apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,El código de verificación se ha enviado a su dirección de correo electrónico registrada. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Tu objetivo apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtro debe tener 4 valores (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Sin nombre especificado para {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Aplicar regla de asignación apps/frappe/frappe/utils/bot.py,show,mostrar apps/frappe/frappe/utils/data.py,Invalid field name {0},Nombre de campo inválido {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapeo del plan de migración de datos apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Comenzando Frappé ... DocType: Web Form Field,Max Length,Longitud Máxima -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Para {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,mapa del marcador apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Validar una incidencia @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Página no encontrada apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Comentarios DocType: DocType,Route,Ruta apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Configuración de la pasarela de pago Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ganó {1} punto por {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Recuperar imágenes adjuntas del documento DocType: Chat Room,Name,Nombre DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Abrir víncu apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tu Lenguaje DocType: Dashboard Chart,Average,Promedio apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Añadir fila -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Impresora apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,La consulta debe ser tipo 'SELECT' DocType: Auto Repeat,Completed,Completado @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Siguiente token de sincronización DocType: Energy Point Settings,Energy Point Settings,Configuraciones de puntos de energía DocType: Async Task,Succeeded,Terminado apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Los siguientes campos son obligatorios en {0} +DocType: Onboarding Slide Field,Align,Alinear apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Restablecer los permisos para {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Usuarios y Permisos DocType: S3 Backup Settings,S3 Backup Settings,Configuración de Copia de Seguridad S3 @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nuevo nombre de formato de impresión apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Haga clic en el enlace a continuación para aprobar la solicitud. DocType: Workflow State,align-left,alinear-izquierda +DocType: Onboarding Slide,Action Settings,Configuraciones de acción DocType: User,Defaults,Predeterminados +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparación, use> 5, <10 o = 324. Para rangos, use 5:10 (para valores entre 5 y 10)." DocType: Energy Point Log,Revert Of,Revertir de apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Combinar con existente DocType: User,Birth Date,Fecha de nacimiento @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,En DocType: Notification,Value Change,Cambio de Valor DocType: Google Contacts,Authorize Google Contacts Access,Autorizar acceso a contactos de Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostrando solo Campos Numéricos del Informe +apps/frappe/frappe/utils/data.py,1 week ago,Hace 1 semana DocType: Data Import Beta,Import Type,Tipo de importación DocType: Access Log,HTML Page,Página HTML DocType: Address,Subsidiary,Subsidiaria @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Con Membrete apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Servidor de correo saliente o puerto no válido DocType: Custom DocPerm,Write,Escribir -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Solo el administrador puede crear consultas / Informes con scripts apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualización DocType: Data Import Beta,Preview,Vista Previa apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","El campo ""valor"" es obligatorio. Por favor, especifique un valor a ser actualizado" @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Invitar co DocType: Data Migration Run,Started,Empezado apps/frappe/frappe/permissions.py,User {0} does not have access to this document,El usuario {0} no tiene acceso a este documento DocType: Data Migration Run,End Time,Hora de finalización +DocType: Dashboard Chart,Group By Based On,Agrupar por según apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Seleccione adjuntos apps/frappe/frappe/model/naming.py, for {0},para {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,No está autorizado a imprimir este documento @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verificar DocType: Workflow Document State,Update Field,Actualizar Campo DocType: Chat Profile,Enable Chat,Habilitar Chat DocType: LDAP Settings,Base Distinguished Name (DN),Nombre distinguido base (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Abandonar esta conversación apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Las opciones no establecidas para el campo enlazado {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Cola / Trabajador @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,No se permite iniciar sesión en este momento DocType: Data Migration Run,Current Mapping Action,Acción actual de mapeo DocType: Dashboard Chart Source,Source Name,Nombre de la Fuente -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,No cuenta de correo electrónico asociada con el usuario. Agregue una cuenta en Usuario> Bandeja de entrada de correo electrónico. DocType: Email Account,Email Sync Option,Opción de Sincronizar Correo Electrónico apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Fila Nro DocType: Async Task,Runtime,Tiempo de ejecución. DocType: Post,Is Pinned,Esta Fijado DocType: Contact Us Settings,Introduction,Introducción +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,¿Necesitas ayuda? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin globalmente apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguido por DocType: LDAP Settings,LDAP Email Field,Campo de correo electrónico de LDAP @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Ya esta e DocType: User Email,Enable Outgoing,Habilitar correos salientes DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Etiquetas Personalizadas -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Cuenta de correo electrónico no configurada. Cree una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: Comment,Submitted,Validado DocType: Contact,Pulled from Google Contacts,Extraído de los contactos de Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Solicitud no válida @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Inicio / Ca apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Asignar a mí DocType: DocField,Dynamic Link,Enlace dinámico apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Presione la tecla Alt para activar accesos directos adicionales en el menú y la barra lateral +DocType: Dashboard Chart,To Date,Hasta la fecha DocType: List View Setting,List View Setting,Configuración de vista de lista apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Mostrar empleos fallidos -DocType: Event,Details,Detalles +DocType: Scheduled Job Log,Details,Detalles DocType: Property Setter,DocType or Field,'DocType' o campo apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Has dejado de seguir este documento apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Color primario @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Rebotes livianos DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Si está habilitado, todos los usuarios pueden iniciar sesión desde cualquier dirección IP utilizando la autenticación de dos factores. Esto también se puede configurar solo para usuarios específicos en la página de usuario" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,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,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,Show Relapses,Mostrar Recaídas apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,El correo electrónico se ha movido a la papelera DocType: Report,Report Builder,Generador de reportes @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Subir DocType: User Permission,Advanced Control,Control Avanzado DocType: System Settings,Date Format,Formato de Fecha apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,No publicado +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No se encontró una plantilla de dirección predeterminada. Cree uno nuevo desde Configuración> Impresión y marca> Plantilla de dirección. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Acciones para flujo de trabajo (p.ej. aprobar, cancelar)." DocType: Data Import,Skip rows with errors,Saltar filas con errores DocType: Workflow State,flag,Bandera @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Impr apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Saltar al campo DocType: Contact Us Settings,Forward To Email Address,Reenviar a la dirección de correo electrónico DocType: Contact Phone,Is Primary Phone,Es el teléfono principal -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envíe un correo electrónico a {0} para vincularlo aquí. DocType: Auto Email Report,Weekdays,Días de la Semana apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Se exportarán {0} registros apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,El campo del título debe ser un nombre válido @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Publicar Comentario apps/frappe/frappe/config/core.py,Documents,Documentos apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Registro de actividad por DocType: Social Login Key,Custom Base URL,URL Base Personalizada -DocType: Email Flag Queue,Is Completed,Esta completado +DocType: Onboarding Slide,Is Completed,Esta completado apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Obtener Campos apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Editar perfil DocType: Kanban Board Column,Archived,Archivado @@ -2110,11 +2189,12 @@ 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 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hoy +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Hoy apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Enviar después de la importación DocType: Error Log,Log of Scheduler Errors,Bitácora de errores en el programador de tareas DocType: User,Bio,Biografía +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Enlace de ayuda de diapositivas de incorporación DocType: OAuth Client,App Client Secret,Clave Secreta de Aplicación apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Validando apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parent es el nombre del documento al que se agregarán los datos. @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,MAYÚSCULAS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML Personalizado apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Introduzca nombre de carpeta -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No se encontró una plantilla de dirección predeterminada. Cree uno nuevo desde Configuración> Impresión y marca> Plantilla de dirección. apps/frappe/frappe/auth.py,Unknown User,Usuario Desconocido apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Seleccione rol DocType: Comment,Deleted,Eliminado @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Token de Chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Crear gráfico apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,No importar -DocType: Web Page,Center,Centro +DocType: Onboarding Slide Field,Center,Centro DocType: Notification,Value To Be Set,Valor a Establecer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Editar {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primer nivel @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nombre de la base de datos apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Actualizar formulario DocType: DocField,Select,Seleccionar -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Ver registro completo +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Ver registro completo DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expresión simple de Python, ejemplo: estado == 'Abrir' y tipo == 'Error'" apps/frappe/frappe/utils/csvutils.py,File not attached,Archivo no adjuntado apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Conexión perdida. Algunas características pueden no funcionar. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML para la sección de enc apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Esta característica es nuevo y todavía experimental apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Máximo: {0} lineas permitidas DocType: Dashboard Chart Link,Chart,Gráfico +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Darse de baja globalmente apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Esta es una contraseña muy común. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Ver @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Nombre de Host DocType: Data Migration Mapping,Condition Detail,Detalle de la Condición apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Para la moneda {0}, el monto mínimo de la transacción debe ser {1}" DocType: DocField,Print Hide,Ocultar en impresión +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Al usuario apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Ingrese el Valor DocType: Workflow State,tint,tinte @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Código QR par apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Añadir a Tareas DocType: Footer Item,Company,Compañía apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Promedio de {0} +DocType: Scheduled Job Log,Scheduled,Programado. DocType: User,Logout from all devices while changing Password,Salga de todos los dispositivos mientras cambia la contraseña apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verificar Contraseña apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Hubo errores @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,El permiso de Usuario ya existe apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Asignando la columna {0} al campo {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ver {0} -DocType: User,Hourly,Cada Hora +DocType: Scheduled Job Type,Hourly,Cada Hora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth cliente de aplicación DocType: DocField,Fetch If Empty,Buscar si está vacío DocType: Data Migration Connector,Authentication Credentials,Credenciales de Autenticación @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,URL de pasarela SMS apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ganado por {0} a través de la regla automática {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} o {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,¡Ya está todo listo! DocType: Workflow State,trash,Basura DocType: System Settings,Older backups will be automatically deleted,Copias de seguridad anteriores se eliminarán de forma automática apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Clave de Acceso inválida o Clave de Acceso Secreta. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Perdiste algunos puntos de energía DocType: Post,Is Globally Pinned,Fijado Globalmente apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Actividad reciente DocType: Workflow Transition,Conditions,Condiciones @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confirmado DocType: Event,Ends on,Finaliza el DocType: Payment Gateway,Gateway,Pasarela DocType: LDAP Settings,Path to Server Certificate,Ruta al certificado del servidor +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript está deshabilitado en su navegador apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,No hay suficiente permiso para ver los enlaces. apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,La dirección principal es obligatoria DocType: Google Contacts,Push to Google Contacts,Empuje a Contactos de Google @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Si esto está marcado, las filas con datos válidos se importarán y las filas no válidas se arrojarán a un nuevo archivo para que usted las importe más tarde." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,El documento es editable únicamente por los usuarios con rol -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","La tarea {0}, que asignó a {1}, ha sido cerrada por {2}." DocType: Print Format,Show Line Breaks after Sections,Mostrar saltos de línea después de las Secciones DocType: Communication,Read by Recipient On,Leído por el Destinatario en DocType: Blogger,Short Name,Nombre corto @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Asig DocType: Translation,PR sent,PR enviado DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Sólo enviar registros actualizados en las últimas X horas DocType: Communication,Feedback,Comentarios. +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Actualizado a una nueva versión 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Traducción Abierta apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Este correo electrónico se genera automáticamente DocType: Workflow State,Icon will appear on the button,El icono aparecerá en el botón @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Página no DocType: DocField,Precision,Precisión DocType: Website Slideshow,Slideshow Items,Presentación de productos apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Trate de evitar las palabras y caracteres repetidos +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Notificaciones deshabilitadas +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,¿Seguro que quieres eliminar todas las filas? DocType: Workflow Action,Workflow State,Estados de flujos de trabajo apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Filas Añadidas apps/frappe/frappe/www/list.py,My Account,Mi Cuenta @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dias despues apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Conexión de bandeja QZ activa! DocType: Contact Us Settings,Settings for Contact Us Page,Ajustes para pagina de contacto +DocType: Server Script,Script Type,Tipo de script DocType: Print Settings,Enable Print Server,Habilitar Servidor de Impresión apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Hace {0} semanas DocType: Email Account,Footer,Pie de página @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Advertencia apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Esto puede imprimirse en varias páginas. DocType: Data Migration Run,Percent Complete,Porcentaje Completo -DocType: Tag Category,Tag Category,Categoría de Etiqueta -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparación, use> 5, <10 o = 324. Para rangos, use 5:10 (para valores entre 5 y 10)." DocType: Google Calendar,Pull from Google Calendar,Tire de Google Calendar apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Ayuda DocType: User,Login Before,Iniciar antes @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ocultar Fines de Semana apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genera automáticamente documentos recurrentes. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Es +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Info-Firma apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valor para {0} no puede ser una lista 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, el sistema utilizará los valores por defecto" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,¿Presentar {0} documentos? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Error al conectarse a la aplicación QZ Tray ...

Debe tener la aplicación QZ Tray instalada y en ejecución para usar la función de Impresión sin formato.

Haga clic aquí para descargar e instalar la bandeja QZ .
Haga clic aquí para obtener más información sobre la impresión sin procesar ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapeo de impresora apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Por favor, guarde los cambios antes de adjuntar" +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,¿Desea cancelar todos los documentos vinculados? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Añadido: {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Permisos de Rol DocType: Help Article,Intermediate,Intermedio +apps/frappe/frappe/config/settings.py,Email / Notifications,Notificaciónes de Correo Electrónico apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} cambió {1} a {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Documento Cancelado restaurado como Borrador DocType: Data Migration Run,Start Time,Hora de inicio @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Pu apps/frappe/frappe/email/smtp.py,Invalid recipient address,Dirección de destinatario no válida DocType: Workflow State,step-forward,adelantar DocType: System Settings,Allow Login After Fail,Permitir inicio de sesión después de error +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Establecer Rol Para DocType: GCalendar Account,The name that will appear in Google Calendar,El nombre que aparecerá en Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,La habitación directa con {0} ya existe. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Crear: {0 DocType: Contact,Google Contacts,Contactos de Google DocType: GCalendar Account,GCalendar Account,Cuenta de GCalendar DocType: Email Rule,Is Spam,es spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Último apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Informe {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Abrir {0} DocType: Data Import Beta,Import Warnings,Advertencias de importación @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok- signo apps/frappe/frappe/config/settings.py,Deleted Documents,Documentos Eliminados apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,El formato CSV es sensible a mayúsculas y minúsculas apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ícono de Escritorio ya existe +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Especifique en qué dominios deberían aparecer las diapositivas. Si no se especifica nada, la diapositiva se muestra en todos los dominios de forma predeterminada." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: el campo {1} en la fila {2} no puede ocultarse y ser obligatorio sin el valor predeterminado DocType: Newsletter,Create and Send Newsletters,Crear y enviar boletines de noticias @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID de evento de Google Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Padre"" significa la tabla padre en la que debe añadirse esta fila" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Puntos de revisión: +DocType: Scheduled Job Log,Scheduled Job Log,Registro de trabajos programados +DocType: Server Script,Before Delete,Antes de borrar apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Compartido con apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Adjunte archivos / urls y agregue en la tabla. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Mensaje no Configurado @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Ajustes de página 'quiénes somos' apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Ajustes de la pasarela de pago Stripe apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imprimir enviado a la impresora! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Puntos de energía +DocType: Notification Settings,Energy Points,Puntos de energía +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},El tiempo {0} debe estar en formato: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,por ejemplo pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generar Llaves apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Esto eliminará permanentemente sus datos. DocType: DocType,View Settings,Ver Configuraciones +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nueva notificación DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Estructura de solicitud +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Falta el método de controlador get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,verificación pendiente DocType: Website Meta Tag,Website Meta Tag,Metaetiqueta del sitio web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Si el puerto no es estándar (p. Ej. 587). Si está en Google Cloud, intente con el puerto 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Borrando la fecha de finalización, ya que no puede ser en el pasado para las páginas publicadas." DocType: User,Send Me A Copy of Outgoing Emails,Envíame una copia de los correos electrónicos salientes -DocType: System Settings,Scheduler Last Event,Programar el último evento DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Añadir Google Analytics ID : ej . UA- 89XXX57 - 1 . Por favor, busca ayuda sobre Google Analytics para obtener más información ." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,La contraseña no puede contener más de 100 caracteres DocType: OAuth Client,App Client ID,ID de Cliente de Aplicación @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nueva Contras apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} compartió este documento con {1} DocType: Website Settings,Brand Image,Imagen de marca DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,La plantilla de importación debe contener un encabezado y al menos una fila. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Calendar ha sido configurado. apps/frappe/frappe/config/website.py,"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 @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Inicio de Sesión Social del Usuari apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} criticó su trabajo en {1} con {2} punto DocType: Contact,All,Todos DocType: Email Queue,Recipient,Beneficiario +DocType: Webhook,Webhook Security,Webhook Security DocType: Communication,Has Attachment,Tiene Adjunto DocType: Address,Sales User,Usuario de ventas apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Herramienta de arrastrar y soltar para construir y personalizar formatos de impresión. @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Campo de ID de Migración DocType: Dashboard Chart,Last Synced On,Última sincronización en DocType: Comment,Comment Type,Comentario tipo DocType: OAuth Client,OAuth Client,Cliente OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} criticó su trabajo en {1} {2} DocType: Assignment Rule,Users,Usuarios DocType: Address,Odisha,Odisha DocType: Report,Report Type,Tipo de reporte @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Elemento de la Presentaci apps/frappe/frappe/model/workflow.py,Self approval is not allowed,La auto aprobación no está permitida DocType: GSuite Templates,Template ID,ID de Plantilla apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,No se permite la combinación del tipo de concesión ( {0} ) y el tipo de respuesta ( {1} ) -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nuevo Mensaje de {0} DocType: Portal Settings,Default Role at Time of Signup,El papel predeterminado en el momento de la Inscripción DocType: DocType,Title Case,Zona de título apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Haga clic en el siguiente enlace para descargar sus datos. apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Bandeja de entrada de correo electrónico habilitada para el usuario {0} DocType: Data Migration Run,Data Migration Run,Ejecución de migración de datos DocType: Blog Post,Email Sent,Correo Electrónico Enviado -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Más viejo DocType: DocField,Ignore XSS Filter,Ignorar filtro XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,eliminado apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Configuración de copia de seguridad de Dropbox @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,En cola DocType: Braintree Settings,Use Sandbox,Utilizar Sandbox apps/frappe/frappe/utils/goal.py,This month,Este mes apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuevo formato de impresión personalizado +DocType: Server Script,Before Save (Submitted Document),Antes de guardar (documento enviado) DocType: Custom DocPerm,Create,Crear apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,No hay más elementos para mostrar apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Ir al registro anterior @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Mover a la papelera DocType: Web Form,Web Form Fields,Campos de Formulario Web DocType: Data Import,Amended From,Modificado Desde +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Agregue un enlace de video de ayuda en caso de que el usuario no tenga idea de qué completar en la diapositiva. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Advertencia: No se puede encontrar {0} en cualquier tabla relacionada con {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,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" @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Entrada en el Blog DocType: Access Log,Export From,Exportar desde apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Búsqueda Avanzada apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,No se le permite ver el boletín. +DocType: Dashboard Chart,Group By,Agrupar por DocType: User,Interests,Intereses apps/frappe/frappe/core/doctype/user/user.py,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 DocType: Energy Point Rule,Allot Points To Assigned Users,Asigne puntos a usuarios asignados @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Regla de asignación apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Nombre de usuario sugerido: {0} DocType: Assignment Rule Day,Day,Día apps/frappe/frappe/public/js/frappe/desk.js,Modules,Módulos +DocType: DocField,Mandatory Depends On,Obligatorio depende de apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Pago Exitoso apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} electrónico DocType: OAuth Bearer Token,Revoked,Revocado @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Barra lateral y Comentarios apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","No permitido adjuntar el documento {0}, habilite Permitir impresión para {0} en Configuración de impresión" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Cuenta de correo electrónico no configurada. Cree una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Ver el documento en {0} DocType: Stripe Settings,Publishable Key,Clave publicable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Comience a Importar @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,Fracción apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Evento sincronizado con Google Calendar. DocType: LDAP Settings,LDAP First Name Field,LDAP Campo Nombre DocType: Contact,Middle Name,Segundo nombre +DocType: DocField,Property Depends On,La propiedad depende de DocType: Custom Field,Field Description,Descripción de Campo apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nombre no establecido a través de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Bandeja de entrada de email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Actualización {0} de {1}, {2}" DocType: Auto Email Report,Filters Display,Visualización de Filtros apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",El campo "enmendado_desde" debe estar presente para hacer una enmienda. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} agradeció tu trabajo en {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Guardar filtros DocType: Address,Plant,Planta apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Responder a todos @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,Cerrar carpeta apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Informe: DocType: Print Settings,Print taxes with zero amount,Imprimir impuestos con importe nulo apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} no puede ser renombrado +DocType: Server Script,Before Insert,Antes de insertar DocType: Custom Script,Custom Script,Secuencia personalizada DocType: Address,Address Line 2,Dirección línea 2 DocType: Address,Reference,Referencia apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Asignado a -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta de correo electrónico predeterminada desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalle de asignación de migración de datos DocType: Data Import,Action,Acción DocType: GSuite Settings,Script URL,Url del Script @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,En vista de lista DocType: Email Account,Use TLS,Utilizar TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Inicio de sesión o contraseña no válidos +DocType: Scheduled Job Type,Weekly Long,Semanal largo apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Descargar plantilla apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Añadir javascript personalizado a los formularios. ,Role Permissions Manager,Administrar permisos apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nombre del nuevo formato de impresión apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Alternar Barra Lateral +DocType: Server Script,After Save (Submitted Document),Después de guardar (documento enviado) DocType: Data Migration Run,Pull Insert,Pull Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Puntos máximos permitidos después de multiplicar puntos con el valor del multiplicador (Nota: para ningún límite, deje este campo vacío o establezca 0)" @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP No Instalado apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Descargar con datos apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valores modificados para {0} {1} +DocType: Server Script,Before Cancel,Antes de cancelar DocType: Workflow State,hand-right,mano-derecha DocType: Website Settings,Subdomain,Sub-dominio DocType: S3 Backup Settings,Region,Región @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Contraseña anterior DocType: S3 Backup Settings,us-east-1,nosotros-este-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Entradas por {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Para dar formato a las columnas, debe obtener las etiquetas desde la consulta." +DocType: Onboarding Slide,Slide Fields,Campos de diapositivas DocType: Has Domain,Has Domain,Tiene Dominio DocType: User,Allowed In Mentions,Permitido en Menciones apps/frappe/frappe/www/login.html,Don't have an account? Sign up,¿No tienes una cuenta? Regístrate apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,No se puede eliminar el campo ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0}: no se puede establecer ""asignar corrección"" si no es enviable" DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Documentos suscritos apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Ajustes de usuario DocType: Report,Reference Report,Informe de referencia DocType: Activity Log,Link DocType,Enlazar DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizar acceso a Goo apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La página que está buscando no se encuentra. Esto podría ser debido a que fue movida o hay un error tipográfico en el enlace. apps/frappe/frappe/www/404.html,Error Code: {0},Código de error: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripción para listarlo en la pagina, en texto sin formato, solo unas lineas. (máx. 140 caracteres)" +DocType: Server Script,DocType Event,DocType Event apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} son campos obligatorios DocType: Workflow,Allow Self Approval,Permitir la Auto Aprobación DocType: Event,Event Category,Categoría de Evento @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tu Nombre apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Éxito de la Conexión DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Ya existe una diapositiva de incorporación de tipo de diapositiva Continuar. DocType: DocType,Default Sort Field,Campo de clasificación predeterminado DocType: File,Is Folder,Es Carpeta DocType: Document Follow,DocType,DocType @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valores DocType: Workflow State,arrow-up,flecha hacia arriba DocType: Dynamic Link,Link Document Type,Tipo de documento de enlace apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Debe haber al menos una fila para la tabla {0} +DocType: Server Script,Server Script,Script del servidor apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Para configurar la repetición automática, habilite "Permitir repetición automática" desde {0}." DocType: OAuth Bearer Token,Expires In,Expira en +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","La cantidad de veces que desea repetir el conjunto de campos (por ejemplo: si desea 3 clientes en la diapositiva, establezca este campo en 3. Solo el primer conjunto de campos se muestra como obligatorio en la diapositiva)" DocType: DocField,Allow on Submit,Permitir en 'validar' DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Tipo de excepción @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Encabezados apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Próximos eventos apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Por favor, introduzca los valores para App Access Key y App Secret Key" +DocType: Email Account,Append Emails to Sent Folder,Agregar correos electrónicos a la carpeta enviada DocType: Web Form,Accept Payment,acepte el pago apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Seleccionar elemento de la lista apps/frappe/frappe/config/core.py,A log of request errors,Registro de errores de petición @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,Contribuido apps/frappe/frappe/config/customization.py,Form Customization,Personalización de formularios apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,No hay Sesiones Activas DocType: Web Form,Route to Success Link,Ruta al Enlace de Éxito -DocType: Top Bar Item,Right,derecho +DocType: Onboarding Slide Field,Right,derecho apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,No hay eventos próximos DocType: User,User Type,Tipo de usuario DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Por favor, int apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',La URL debe comenzar con 'http: //' o 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opción 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Esto no se puede deshacer DocType: Workflow State,Edit,Editar DocType: Website Settings,Chat Operators,Operadores de Chat DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,El informe con más de 10 columnas se ve mejor en modo horizontal. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nombre de campo no válido: {0} DocType: Milestone,Milestone,hito @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Ir a {0} apps/frappe/frappe/email/queue.py,Emails are muted,Los correos electrónicos se silencian apps/frappe/frappe/config/integrations.py,Google Services,Servicios de Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Arriba -apps/frappe/frappe/utils/data.py,1 weeks ago,hace 1 semana +DocType: Onboarding Slide,Slide Description,Descripción de la diapositiva DocType: Communication,Error,Error apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Configura un mensaje primero DocType: Auto Repeat,End Date,Fecha Final @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Etiqueta de Grupo DocType: Kanban Board,Kanban Board,Tablero Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contactos de Google ha sido configurado. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Se exportará 1 registro +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,No cuenta de correo electrónico asociada con el usuario. Agregue una cuenta en Usuario> Bandeja de entrada de correo electrónico. DocType: DocField,Report Hide,Ocultar reporte apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},vista de árbol no está disponible para {0} DocType: DocType,Restrict To Domain,Restringir a Domiñio DocType: Domain,Domain,Dominio +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL de archivo no válida Póngase en contacto con el administrador del sistema. DocType: Custom Field,Label Help,Ayuda de 'Etiquetas' DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Las fechas son a menudo fáciles de adivinar. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,mano-izquierda DocType: Data Import,If you are updating/overwriting already created records.,Si está actualizando / sobrescribiendo registros ya creados. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Es Global DocType: Email Account,Use SSL,Utilizar SSL +DocType: Webhook,HOOK-.####,GANCHO-.#### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,El documento no pudo ser asignado correctamente apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",La expresión "depends_on" no es válida. @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Última actualización apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Por tipo de documento DocType: Workflow State,arrow-right,arrow-right +DocType: Server Script,API Method,Método API DocType: Workflow State,Workflow state represents the current state of a document.,Estado del Flujo de Trabajo representa el estado actual de un documento. DocType: Letter Head,Letter Head Based On,Cabecera de carta basada en apps/frappe/frappe/utils/oauth.py,Token is missing,Falta el Token @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,Re-enlazado DocType: Print Settings,Compact Item Print,Impresión Compacta de Artículo DocType: Email Account,uidnext,UIDNEXT DocType: User,Redirect URL,Redireccionar URL +DocType: Onboarding Slide Field,Placeholder,Marcador de posición DocType: SMS Settings,Enter url parameter for receiver nos,Introduzca el parámetro url para los números de los receptores DocType: Chat Profile,Online,En línea DocType: Email Account,Always use Account's Name as Sender's Name,Utilice siempre el nombre de la cuenta como nombre del remitente @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,Inicio DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,El Usuario puede iniciar sesión con ID de correo electrónico o nombre de usuario DocType: Workflow State,question-sign,Requiere firma -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} está deshabilitado apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views","El campo ""ruta"" es obligatoria para las vistas web" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Insertar Columna Antes de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,El usuario de este campo recibirá puntos recompensados. @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Si es dueño DocType: Data Migration Mapping,Push,Push apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Suelta archivos aquí DocType: OAuth Authorization Code,Expiration time,Tiempo de expiración +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Documentos abiertos DocType: Web Page,Website Sidebar,Barra Lateral página web DocType: Web Form,Show Sidebar,Mostrar barra lateral apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Debe haber iniciado sesión para acceder a {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Atajos globa DocType: Desktop Icon,Page,Página apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},No se pudo encontrar {0} en {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nombres y apellidos por sí mismos son fáciles de adivinar. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Documento renombrado de {0} a {1} apps/frappe/frappe/config/website.py,Knowledge Base,Base de conocimiento DocType: Workflow State,briefcase,Cartera apps/frappe/frappe/model/document.py,Value cannot be changed for {0},El valor no puede ser cambiado para {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Formatos de Impresión apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Alternar Vista de Cuadrícula apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Ir al siguiente registro +DocType: System Settings,Time Format,Formato de tiempo apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Credenciales de Pasarela de Pagos no válidas DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Este es el archivo de plantilla generado solo con las filas que tienen algún error. Debe usar este archivo para corregirlo e importarlo. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Establecer permisos para los tipos de roles y documentos @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Responder apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Páginas en Escritorio (marcadores de posición) DocType: DocField,Collapsible Depends On,Plegado depende de DocType: Print Style,Print Style Name,Nombre del Estilo de Impresión +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Se requiere el campo Agrupar por para crear un cuadro de mandos DocType: Print Settings,Allow page break inside tables,Permitir salto de página dentro de las tablas DocType: Email Account,SMTP Server,Servidor SMTP DocType: Print Format,Print Format Help,Ayuda de formato de impresión apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,la sala {0} debe tener al menos un usuario. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Contar +DocType: Dashboard Chart,Group By Type,Agrupar por tipo apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nuevo comentario en {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurado {0} como {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"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." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Perfil de DocType: Web Form,Web Form,Formulario Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La fecha {0} debe estar en formato: {1} DocType: About Us Settings,Org History Heading,Encabezado de la historia de la organización +DocType: Scheduled Job Type,Scheduled Job Type,Tipo de trabajo programado 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 +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,No tiene permisos para cancelar todos los documentos vinculados. DocType: Web Form,Web Page Link Text,Texto del Enlace de la Página Web DocType: Page,System Page,Página del Sistema apps/frappe/frappe/config/settings.py,"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/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalizaciones para {0} exportadas a:
{1} DocType: Website Settings,Include Search in Top Bar,Incluir Buscar en Barra Superior +DocType: Scheduled Job Type,Daily Long,Largo diario DocType: GSuite Settings,Allow GSuite access,Permitir acceso a GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nombrando @@ -3487,6 +3608,7 @@ DocType: Notification,Send days before or after the reference date,Enviar días DocType: User,Allow user to login only after this hour (0-24),Permitir que el usuario ingrese sólo después de esta hora ( 0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Asignar uno por uno, en secuencia" DocType: Integration Request,Subscription Notification,Notificación de Suscripción +DocType: Customize Form Field, Allow in Quick Entry ,Permitir entrada rápida apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,o adjuntar un DocType: Auto Repeat,Start Date,Fecha de inicio apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Valor @@ -3501,6 +3623,7 @@ DocType: Google Drive,Backup Folder ID,ID de carpeta de respaldo apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,No se encuentra en modo desarrollador! Debe establecerlo en el archivo site_config.json o crear un 'DocType' personalizado. DocType: Workflow State,globe,globo DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa +DocType: Onboarding Slide Help Link,Video,Vídeo DocType: Assignment Rule,Priority,Prioridad DocType: Email Queue,Unsubscribe Param,Parámetro de Desuscripción DocType: DocType,Hide Sidebar and Menu,Ocultar barra lateral y menú @@ -3512,6 +3635,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Permitir la importación (a apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Coma Flotante DocType: Print Settings,Page Settings,Configuración de Página +DocType: Notification Settings,Notification Settings,Configuración de las notificaciones apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Guardando... apps/frappe/frappe/www/update-password.html,Invalid Password,Contraseña invalida apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importó con éxito el registro {0} de {1}. @@ -3527,6 +3651,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Imagen de encabezado de carta DocType: Address,Party GSTIN,Parte GSTIN +DocType: Scheduled Job Type,Cron Format,Formato Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Informe DocType: SMS Settings,Use POST,Usar POST DocType: Communication,SMS,SMS @@ -3571,18 +3696,20 @@ DocType: Workflow,Allow approval for creator of the document,Permitir aprobació apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Guardar reporte DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Acción del servidor apps/frappe/frappe/core/doctype/user/user.py,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/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,El campo principal debe ser un nombre de campo válido apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Falló al modificar la suscripción DocType: LDAP Settings,LDAP Group Field,Campo de grupo LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Notificación de documento suscrito apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Iguales apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Formato CSV no válido -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Error al conectarse a la aplicación QZ Tray ...

Debe tener la aplicación QZ Tray instalada y en ejecución para usar la función de Impresión sin formato.

Haga clic aquí para descargar e instalar la bandeja QZ .
Haga clic aquí para obtener más información sobre la impresión sin procesar ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Establecer el número de copias de seguridad DocType: DocField,Do not allow user to change after set the first time,No permitir que el usuario pueda cambiar después de establecerlo por primera vez apps/frappe/frappe/utils/data.py,1 year ago,hace 1 año +DocType: DocType,Links Section,Sección de enlaces apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Ver el registro de todos los eventos de impresión, descarga y exportación" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mes DocType: Contact,Contact,Contacto @@ -3609,16 +3736,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nuevo email DocType: Custom DocPerm,Export,Exportar apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Para usar Google Calendar, habilite {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},También se agrega el campo de dependencia de estado {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} actualizado correctamente apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Bandeja QZ fallida: DocType: Dropbox Settings,Dropbox Settings,Ajustes de Dropbox DocType: About Us Settings,More content for the bottom of the page.,Más contenido de la parte inferior de la página. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Este documento ha sido revertido apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Copia de seguridad de Google Drive exitosa. +DocType: Webhook,Naming Series,Secuencias e identificadores DocType: Workflow,DocType on which this Workflow is applicable.,El flujo de trabajo será aplicable en el documento seleccionado. DocType: User,Enabled,Habilitado apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Error al completar la instalación apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nuevo {0}: {1} -DocType: Tag Category,Category Name,Nombre Categoría +DocType: Blog Category,Category Name,Nombre Categoría apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Se requiere el padre para obtener los datos de la tabla hija apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importar suscriptores DocType: Print Settings,PDF Settings,Configuración de paginas PDF @@ -3654,6 +3784,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Calendario apps/frappe/frappe/client.py,No document found for given filters,No se encuentran documentos para los filtros dados apps/frappe/frappe/config/website.py,A user who posts blogs.,Un usuario que publica blogs. +DocType: DocType Action,DocType Action,DocType Action apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Otra {0} con el nombre {1} existe, seleccione otro nombre" DocType: DocType,Custom?,Personalizado? DocType: Website Settings,Website Theme Image,Imagen de tema de sitio web @@ -3663,6 +3794,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},No se pue apps/frappe/frappe/config/integrations.py,Backup,Copia de Seguridad apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Se requiere el tipo de documento para crear un cuadro de mandos DocType: DocField,Read Only,Sólo lectura +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,No se pudo crear el pedido de razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nuevo Boletín DocType: Energy Point Log,Energy Point Log,Registro de puntos de energía DocType: Print Settings,Send Print as PDF,Enviar Impresión como 'PDF' @@ -3688,16 +3820,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con apps/frappe/frappe/www/login.html,Or login with,O ingresar con DocType: Error Snapshot,Locals,Locales apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicado a través de {0} del {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} te ha mencionado en un comentario en {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Seleccione Agrupar por ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por ejemplo (55 + 434) / 4 ó = Math.sin(Math.PI/2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} es requerido DocType: Integration Request,Integration Type,Tipo de Integración DocType: Newsletter,Send Attachements,Enviar Adjuntos +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,No se encontraron filtros. apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integración de contactos de Google. DocType: Transaction Log,Transaction Log,Registro de Transacciones apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Estadísticas basadas en el rendimiento del mes pasado (de {0} a {1}) DocType: Contact Us Settings,City,Ciudad +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ocultar tarjetas para todos los usuarios apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Habilite Permitir repetición automática para el doctype {0} en Personalizar formulario DocType: DocField,Perm Level,Nivel permitido apps/frappe/frappe/www/confirm_workflow_action.html,View document,Ver Documento @@ -3708,6 +3841,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Si está habilitado, los cambios en el documento se rastrean y se muestran en la línea de tiempo" apps/frappe/frappe/core/doctype/doctype/doctype.py,'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} DocType: Energy Point Log,Appreciation,Apreciación +DocType: Dashboard Chart,Number of Groups,Numero de grupos apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Ver Lista DocType: Workflow,Don't Override Status,No sobreescriba el estado apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Término de búsqueda @@ -3749,7 +3883,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-noroeste-1 DocType: Dropbox Settings,Limit Number of DB Backups,Número límite de copias de seguridad de base de datos DocType: Custom DocPerm,Level,Nivel -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Últimos 30 días DocType: Custom DocPerm,Report,Reporte apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,La cantidad debe ser mayor que 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Conectado a la bandeja QZ! @@ -3766,6 +3899,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Seleccionar tabla secundaria apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Activar acción primaria apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Cambio +DocType: Social Login Key,User ID Property,Propiedad de ID de usuario DocType: Email Domain,domain name,nombre de dominio DocType: Contact Email,Contact Email,Correo electrónico de contacto DocType: Kanban Board Column,Order,Orden @@ -3788,7 +3922,7 @@ DocType: Contact,Last Name,Apellido DocType: Event,Private,Privado apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Inactivo/Fuera DocType: Event,All Day,Todo el Día apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Parece que algo está mal con la configuración de la pasarela de pago de este sitio. No se ha realizado el pago. DocType: GCalendar Settings,State,Estado @@ -3820,7 +3954,6 @@ 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""" DocType: Payment Gateway,Gateway Settings,Configuraciones de Gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,texto en el tipo de documento -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Ejecutar Pruebas apps/frappe/frappe/handler.py,Logged Out,Desconectado apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,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 @@ -3836,6 +3969,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resumen DocType: Event,Event Participants,Participantes del Evento DocType: Auto Repeat,Frequency,Frecuencia +DocType: Onboarding Slide,Slide Order,Orden de diapositivas DocType: Custom Field,Insert After,insertar Después DocType: Event,Sync with Google Calendar,Sincronizar con Google Calendar DocType: Access Log,Report Name,Nombre del reporte @@ -3863,6 +3997,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Contenido de la página web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Agregar un nuevo rol +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visite la página web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nueva tarea DocType: Google Contacts,Last Sync On,Última Sincronización Activada DocType: Deleted Document,Deleted Document,documento eliminado apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ops! parece que algo salió mal @@ -3873,7 +4009,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paisaje apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensiones de script del lado del cliente en Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Los registros para los siguientes tipos de documento serán filtrados -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Programador inactivo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Programador inactivo DocType: Blog Settings,Blog Introduction,Introducción del Blog DocType: Global Search Settings,Search Priorities,Prioridades de búsqueda DocType: Address,Office,Oficina @@ -3883,12 +4019,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Enlace del cuadro de mandos DocType: User,Email Settings,Configuración de Correo Electrónico apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Caer aquí DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Si está habilitado, el usuario puede iniciar sesión desde cualquier dirección IP utilizando la autenticación de dos factores, esto también se puede configurar para todos los usuarios en la configuración del sistema" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Configuración de la impresora... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Por favor ingrese su contraseña para continuar apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Yo apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} no es un estado válido apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Aplicar a todos los tipos de documentos -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualización de puntos de energía +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Actualización de puntos de energía +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Ejecutar trabajos solo diariamente si está inactivo durante (días) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tipo de Habitación DocType: Data Import Beta,Import Log Preview,Vista previa de registro de importación @@ -3897,6 +4033,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok- círculo DocType: LDAP Settings,LDAP User Creation and Mapping,Creación y mapeo de usuarios LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Se pueden encontrar cosas preguntando "encontrar naranja en los clientes ' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Eventos de hoy apps/frappe/frappe/core/doctype/user/user.py,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 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Mostrar atajos de teclado @@ -3913,6 +4050,7 @@ DocType: DocField,Unique,Único apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apreciado en {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Éxito Parcial DocType: Email Account,Service,Servicios +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuración> Usuario DocType: File,File Name,Nombre del Archivo apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),No se encontró {0} para {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3926,6 +4064,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registro DocType: GCalendar Settings,Enable,Habilitar DocType: Google Maps Settings,Home Address,Direccion de casa apps/frappe/frappe/core/doctype/data_export/exporter.py,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) +DocType: Report,"output in the form of `data = [columns, result]`","salida en forma de `datos = [columnas, resultado]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipos de documentos aplicables apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Establecer reglas para las asignaciones de usuarios. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permiso insuficiente para {0} @@ -3941,7 +4080,6 @@ DocType: Communication,To and CC,Para y CC DocType: SMS Settings,Static Parameters,Parámetros estáticos DocType: Chat Message,Room,Habitación apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},actualizado a {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,"Los trabajos en segundo plano no se están ejecutando. Por favor, póngase en contacto con el administrador" DocType: Portal Settings,Custom Menu Items,Menú Items Personalizados apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Todas las imágenes adjuntas a la Presentación del Sitio Web deben ser públicas DocType: Workflow State,chevron-right,chevron - derecha @@ -3956,11 +4094,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valores seleccionados DocType: DocType,Allow Auto Repeat,Permitir repetición automática apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,No hay valores para mostrar +DocType: DocType,URL for documentation or help,URL para documentación o ayuda DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Plantilla de Correo Electrónico apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Se actualizó correctamente el registro {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},El usuario {0} no tiene acceso a doctype a través del permiso de rol para el documento {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Se requiere un usuario y una contraseña +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Dejar\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Por favor, actualice para obtener el último documento." DocType: User,Security Settings,Configuración de seguridad apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Añadir columna @@ -3970,6 +4110,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtro Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Encuentra adjunto {0}: {1} DocType: Web Page,Set Meta Tags,Establecer metaetiquetas +DocType: Email Account,Use SSL for Outgoing,Usar SSL para saliente 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: S3 Backup Settings,Backup Limit,Límite de Copia de Seguridad DocType: Dashboard Chart,Line,Línea @@ -4002,4 +4143,3 @@ DocType: DocField,Ignore User Permissions,Ignorar los permisos de usuario apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Guardado exitosamente apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Por favor, consulte a su administrador para verificar su registro" DocType: Domain Settings,Active Domains,Dominios activos -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Mostrar registro diff --git a/frappe/translations/es_pe.csv b/frappe/translations/es_pe.csv index 3a9aea8836..2e039dfb67 100644 --- a/frappe/translations/es_pe.csv +++ b/frappe/translations/es_pe.csv @@ -90,6 +90,7 @@ DocType: Workflow State,resize-vertical,cambiar el tamaño vertical DocType: Workflow State,thumbs-down,pulgar hacia abajo DocType: File,Content Hash,Hash contenido 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. +DocType: Scheduled Job Type,Stopped,Detenido DocType: Customize Form,Sort Order,Orden de Clasificación apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},No está permitido para el tipo {0} en la linea {1} 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 . @@ -122,7 +123,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Users with DocType: DocField,Section Break,Salto de sección apps/frappe/frappe/desk/query_report.py,Must specify a Query to run,Debe especificar una consulta para ejecutar DocType: Assignment Rule Day,Saturday,Sábado -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","La tarea {0}, que asignó a {1}, se ha cerrado." apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Open a module or tool,Abra un Módulo o Herramienta DocType: Customize Form,Enter Form Type,Introduzca Tipo de Formulario apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!" @@ -175,7 +175,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel withou DocType: DocType,Is Submittable,Es presentable-- apps/frappe/frappe/model/naming.py,Naming Series mandatory,Las secuencias son obligatorias DocType: Workflow State,Tag,Etiqueta -DocType: Custom Script,Script,Guión +DocType: Report,Script,Guión apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Text Color,Color del texto apps/frappe/frappe/public/js/frappe/form/layout.js,This form does not have any input,Esta forma no tiene ninguna entrada apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Vencimiento de sesión debe estar en formato {0} @@ -210,7 +210,6 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard % apps/frappe/frappe/config/website.py,Settings for About Us Page.,Ajustes para Nosotros Pagina . apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Custom HTML,Edición de HTML personalizado DocType: Address,Subsidiary,Filial -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Solo el Administrador puede crear consultas / Informes de Secuencias de Comandos apps/frappe/frappe/public/js/frappe/model/indicator.js,Draft,Borrador. DocType: Contact,Replied,Respondio DocType: Workflow Document State,Update Field,Actualizar Campos @@ -250,7 +249,7 @@ DocType: Workflow State,remove,Quitar DocType: Integration Request,Reference DocName,Referencia DocNombre DocType: Web Form,Success Message,Mensaje de éxito DocType: Footer Item,Company,Compañía(s) -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","La tarea {0}, que asignó a {1}, ha sido cerrado por {2}." +DocType: Scheduled Job Log,Scheduled,Programado apps/frappe/frappe/geo/doctype/currency/currency.js,This Currency is disabled. Enable to use in transactions,Esta moneda está deshabilitada . Habilite el uso en las transacciones DocType: Custom Script,Sample,Muestra DocType: Website Script,Script to attach to all web pages.,Guión para unir a todas las páginas web. @@ -261,6 +260,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: Website Slideshow,Slideshow Items,Presentación Artículos DocType: Workflow Action,Workflow State,Estados de los flujos de trabajo DocType: Contact Us Settings,Settings for Contact Us Page,Ajustes para Contáctenos Página +DocType: Server Script,Script Type,Guión Tipo apps/frappe/frappe/core/doctype/report/report.py,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/doctype/data_import/importer.py,Not allowed to Import,No tiene permisos para importar DocType: Web Page,Insert Style,Inserte Estilo @@ -274,7 +274,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies th ,Permitted Documents For User,Documentos permitidos para los usuarios apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share"" permission","Usted necesita tener el permiso ""Compartir""" DocType: About Us Settings,Settings for the About Us Page,Ajustes de la página Quiénes somos -DocType: System Settings,Scheduler Last Event,Programador Último Evento apps/frappe/frappe/model/document.py,Cannot edit cancelled document,No se puede editar un documento anulado apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,"Error de conjunto anidado . Por favor, póngase en contacto con el Administrador." apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Configuración de la barra de navegación superior , pie de página y el logotipo." @@ -418,7 +417,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: Communication,Sending,Envío DocType: Website Slideshow,This goes above the slideshow.,Esto va por encima de la presentación de diapositivas. DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar Emails con adjuntos en formato PDF (recomendado) -DocType: Web Page,Left,Izquierda +DocType: Onboarding Slide Field,Left,Izquierda DocType: Workflow Action,Workflow Action,Acciones de los flujos de trabajo DocType: Event,Send an email reminder in the morning,Enviar un recordatorio por correo electrónico en la mañana DocType: Event,Repeat On,Repetir OK diff --git a/frappe/translations/et.csv b/frappe/translations/et.csv index b1fdee7856..1313fbb4ce 100644 --- a/frappe/translations/et.csv +++ b/frappe/translations/et.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Palun valige väljal Kogus. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Impordifaili laadimine ... DocType: Assignment Rule,Last User,Viimane kasutaja -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Uus ülesanne, {0}, on määratud teile {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Seansi vaikesätted on salvestatud apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Laadige fail uuesti DocType: Email Queue,Email Queue records.,E Queue arvestust. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,Kasutaja kirjad DocType: User,Username,Kasutajanimi apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Impordi Zip +DocType: Scheduled Job Type,Create Log,Loo logi apps/frappe/frappe/model/base_document.py,Value too big,Väärtus liiga suur DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Kuu DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Luba Saabuva apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Oht -DocType: Address,Email Address,E-posti aadress +apps/frappe/frappe/www/login.py,Email Address,E-posti aadress DocType: Workflow State,th-large,th-suur DocType: Communication,Unread Notification Sent,Lugemata saadetud teates apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Ekspordi ole lubatud. Peate {0} rolli ekspordi. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Tüh DocType: DocType,Is Published Field,Kas Avaldatud Field DocType: GCalendar Settings,GCalendar Settings,GCalendari seaded DocType: Email Group,Email Group,E Group +apps/frappe/frappe/__init__.py,Only for {},Ainult {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google'i kalender - sündmust {0} ei saanud Google'i kalendrist kustutada, veakood {1}." DocType: Event,Pulled from Google Calendar,Tõmmatud Google'i kalendrist DocType: Note,Seen By,näinud apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Lisa mitu -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Saite mõned energiapunktid apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ei ole kehtiv kasutaja pilt. DocType: Energy Point Log,Reverted,Tagastatud DocType: Success Action,First Success Message,Esimene edukus @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Mitte nagu apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Vale väärtus: {0} peab olema {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Muuda valdkonnas omadused (peida, readonly luba jne)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Hindan +DocType: Notification Settings,Document Share,Dokumentide jagamine DocType: Workflow State,lock,lukk apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Seaded Kontakt Page. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator sisse logitud @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Kui see on lubatud, märgistatakse dokument nähtavana, kui kasutaja selle esimest korda avab" DocType: Auto Repeat,Repeat on Day,Korrake päeval DocType: DocField,Color,Värvus +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Märgi kõik loetuks DocType: Data Migration Run,Log,Logi DocType: Workflow State,indent-right,indent-paremale DocType: Has Role,Has Role,Kas Role @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Kuva jälgimisvõimalus DocType: DocType,Default Print Format,Vaikimisi Prindi Formaat DocType: Workflow State,Tags,Sildid +DocType: Onboarding Slide,Slide Type,Slaidi tüüp apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Puudub: End of töökorraldus apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} välja ei saa seada ainulaadne {1}, sest on mitte-unikaalne olemasolevate väärtuste" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumendi liigid @@ -135,7 +138,6 @@ DocType: Language,Guest,Külaline DocType: DocType,Title Field,Pealkiri Field DocType: Error Log,Error Log,Viga Logi apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,vigane URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Viimased 7 päeva apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Kordab nagu "abcabcabc" on vaid veidi raskem ära arvata kui "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Kui arvad, et see on lubamatu, palun muuta administraatori parool." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Valige veerg apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,See vorm on muudetud pärast olete laaditud DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Teavituslogi 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Avage hämmastav riba apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Tundub, et serveri riba konfiguratsiooniga on probleem. Ebaõnnestumise korral tagastatakse summa teie kontole." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Ki apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Saatma DocType: Workflow Action Master,Workflow Action Name,Töövoo Action nimi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ei saa liita -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ei zip faili DocType: Global Search DocType,Global Search DocType,Globaalne otsing DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,E-mail saadetud? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Lülita diagramm sisse apps/frappe/frappe/desk/form/save.py,Did not cancel,Ei tühistada DocType: Social Login Key,Client Information,Kliendiinfo +DocType: Energy Point Rule,Apply this rule only once per document,Kasutage seda reeglit ainult üks kord dokumendi kohta DocType: Workflow State,plus,pluss +DocType: DocField,Read Only Depends On,Ainult lugemine sõltub apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Sisenenud külalisena või administraator DocType: Email Account,UNSEEN,UUENDUSLIK apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Failihaldur @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Põhjus 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Tegevust pole +DocType: Server Script,Script Manager,Skriptihaldur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Tegevust pole apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Kolmanda osapoole rakendused apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Täna pole ühtegi sündmust apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Te ei saa endale ülevaatuspunkte anda apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType peab olema valitud dokumendiürituse esitamiseks DocType: Workflow State,circle-arrow-up,Ringi Nool üles @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Pole lubatud {0} jaoks: {1}. Piiratud väli: {2} 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,You are not allowed to delete a standard Website Theme,Teil ei ole lubatud kustutada standard veebilehe teema +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Looge oma esimene {0} DocType: Data Import,Log Details,Logi üksikasjad DocType: Workflow Transition,Example,Näide DocType: Webhook Header,Webhook Header,Webhooki päis @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Vestluse taust apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Märgi loetuks apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} värskendamine +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,"Pardal olev slaid {0} , mille slaidide järjekord on juba olemas" apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Keela teated DocType: Translation,Contributed Translation Doctype Name,Kaasatud tõlkedoktüübi nimi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Vormi kohandamine DocType: PayPal Settings,Redirect To,Suuna DocType: Data Migration Mapping,Pull,Tõmba DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formaat: frappe.query_reports ['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Sisemine rekord dokumendi a DocType: Energy Point Settings,Review Levels,Tasemete ülevaatamine DocType: Workflow State,Comment,Kommentaar DocType: Data Migration Plan,Postprocess Method,Postprotsessimeetod +DocType: DocType Action,Action Type,Toimingu tüüp apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Pildistama DocType: Assignment Rule,Round Robin,Ümar Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Sa saad muuta esitatud dokumendid, tühistades neist ja siis neid muuta." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salvesta kui DocType: Comment,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Näita rohkem üksikasju +DocType: Server Script,Before Submit,Enne esitamist 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,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,Archive,Arhiiv @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Kohandatud skripti konfigureerimine add_fetchis vale väljanime {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Valige Google'i kontaktid, kellega kontakt tuleks sünkroonida." DocType: Web Page,Main Section (HTML),Peaosa (HTML) +DocType: Scheduled Job Type,Annual,Aastane DocType: Workflow State,headphones,kõrvaklapid apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Parooli on vaja või valige Ootan salasõna DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,nt replies@yourcomany.com. Kõik vastuseid tulevad seda postkasti. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhooki URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Määrab viisardi slaidide järjekorra. Kui slaidi ei kuvata, tuleks prioriteediks seada 0." DocType: Data Migration Run,Current Mapping,Praegune kaardistamine apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Kehtib e-posti ja nime vaja apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Muutke kõik manused privaatseks @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Üleminek reeglid apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Kuvatakse eelvaates ainult esimesed {0} rida apps/frappe/frappe/core/doctype/report/report.js,Example:,Näide: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Piirangud DocType: Workflow,Defines workflow states and rules for a document.,Määrab töökorraldust riikide ja reeglid dokument. DocType: Workflow State,Filter,Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Lisateavet leiate vea logist: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Töö apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} loginud: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Teave apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Ei saa määrata Määra Esitada kui mitte esitatav DocType: Transaction Log,Row Index,Rowindeks DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Button Abi DocType: Kanban Board Column,purple,purpurne DocType: About Us Settings,Team Members,Team liikmed +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Käitab mitteaktiivsete saitide jaoks plaanitud töid ainult üks kord päevas. Vaikeväärtus 4 päeva, kui see on seatud 0-le." DocType: Assignment Rule,System Manager,Süsteemihaldur +DocType: Scheduled Job Log,Scheduled Job,Plaaniline töö DocType: Custom DocPerm,Permissions,Permissions apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Sisemise integreerumisega seotud lihtsad Webhooks DocType: Dropbox Settings,Allow Dropbox Access,Laske Dropbox Access @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skane DocType: Email Flag Queue,Email Flag Queue,E-Flag järjekorda DocType: Access Log,Columns / Fields,Veerud / väljad apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Trükiformaatide styleshetid +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Armatuurlaua diagrammi loomiseks on vajalik väli Aggregate Function apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Ei suuda tuvastada avatud {0}. Proovi midagi muud. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Teie andmed on esitatud apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,"Kasutaja {0} ei saa kustutada," @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Field Name DocType: Assignment Rule,Assign To Users,Määra kasutajatele apps/frappe/frappe/public/js/frappe/utils/utils.js,or,või apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Mooduli nimetus ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Jätkama +DocType: Onboarding Slide,Continue,Jätkama apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google'i integratsioon on keelatud. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,tunnistus apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Kontrollimine ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Teie ülesanne saidil {0} {1} on eemaldatud apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Esimesed andmed veerus peab olema tühi. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Näita kõik versioonid apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Vaata kommentaari @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Keelatud IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,armatuurlaud apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Ei saa saata meile sel ajal apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google'i kalender - sündmust {0} ei saanud Google'i kalendris värskendada, veakood {1}." +DocType: Notification Log,Email Content,E-posti sisu apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Otsi või anna käsk DocType: Activity Log,Timeline Name,Timeline Nimi apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Ainult ühte {0} saab seada primaarseks. DocType: Email Account,e.g. smtp.gmail.com,nt smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lisa uus reegel DocType: Contact,Sales Master Manager,Müük Master Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Rakenduse toimimiseks peate lubama JavaScripti. DocType: User Permission,For Value,Väärtuse jaoks DocType: Event,Google Calendar ID,Google'i kalendri ID apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP keskmise nime väli apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} {1} importimine DocType: GCalendar Account,Allow GCalendar Access,Luba GCalendar'i juurdepääs apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} on kohustuslik väli +DocType: DocType,Documentation Link,Dokumentatsiooni link apps/frappe/frappe/templates/includes/login/login.js,Login token required,Sisselogimisnumber on nõutav apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Kuu asetus: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Valige mitu loendielementi @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Faili URL DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Lisa Abonentide +DocType: Notification Log,Energy Point,Energiapunkt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Tulevased sündmused Täna DocType: Google Calendar,Push to Google Calendar,Pöörake Google'i kalendrisse DocType: Notification Recipient,Email By Document Field,Email dokumendi Field @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Ära DocType: Currency,Fraction Units,Murd Units apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} lähtekohast {1} kuni {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Märgi valmis DocType: Chat Message,Type,Tüüp DocType: Google Settings,OAuth Client ID,OAuthi kliendi ID DocType: Auto Repeat,Subject,Subjekt apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tagasi töölauale DocType: Web Form,Amount Based On Field,Põhinev summa Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} pole jälgitud versioone. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Kasutaja on kohustuslik Share DocType: DocField,Hidden,Peidetud DocType: Web Form,Allow Incomplete Forms,Laske Puudulik vormid @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Palun kontrollige oma e-posti kontrollimiseks apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold ei saa lõpus kujul DocType: Communication,Bounced,Põrkas +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,of DocType: Deleted Document,Deleted Name,Kustutatud Nimi apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Süsteem ja veebilehe kasutajate DocType: Workflow Document State,Doc Status,Doc staatus @@ -521,6 +546,7 @@ DocType: Language,Language Code,keelekoodide DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Märkus. Ebaõnnestunud varukoopiate saatmisel saadetakse vaikimisi e-kirjad. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Lisa Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS saadetakse järgmised numbrid: {0} +DocType: Notification Settings,Assignments,Ülesanded apps/frappe/frappe/utils/data.py,{0} and {1},{0} ja {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Alusta vestlust. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Alati lisada "eelnõu" Rubriik trükkimiseks dokumentide eelnõud @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Praegune kaardistamine algab apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Saatke on märgistatud rämpspostina DocType: Comment,Website Manager,Koduleht Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Faili üleslaadimine on katkestatud. Palun proovi uuesti. +DocType: Data Import Beta,Show Failed Logs,Kuva ebaõnnestunud logid apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Tõlked apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Valisite projekt või tühistatud dokumente apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumend {0} on seatud seisma {1} {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumendi Järjekorras DocType: GSuite Templates,Destination ID,Sihtkoht ID DocType: Desktop Icon,List,Nimekiri DocType: Activity Log,Link Name,link Nimi +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Sul ei ole \ DocType: System Settings,mm/dd/yyyy,pp / kk / aaaa +DocType: Onboarding Slide,Onboarding Slide,Pardal libisev slaid apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Vale parool: DocType: Print Settings,Send document web view link in email,Saada dokumendi web vaade lingile e-posti apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Eelmine @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,tumehall apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Edukad: {0} kuni {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Tilk +DocType: Dashboard Chart,Aggregate Function Based On,Agregeeritud funktsioon põhineb apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Palun dubleerida seda teha muudatusi apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Vajuta Enter, et salvestada" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"PDF põlvkonna ebaõnnestus, sest katki pildi lingid" @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Päeva enne apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Igapäevased üritused peaksid lõppema samal päeval. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigeerimine ... DocType: Workflow State,volume-down,hääl maha +DocType: Onboarding Slide,Help Links,Abi lingid apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Sellelt IP-aadressilt pole juurdepääs lubatud +DocType: Notification Settings,Enable Email Notifications,Luba meiliteatised apps/frappe/frappe/desk/reportview.py,No Tags,No tags DocType: Email Account,Send Notification to,Saada teavitamine DocType: DocField,Collapsible,Kokkupandav @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Viimane varundamine sisse lülitatud DocType: Customize Form Field,Customize Form Field,Kohanda Form Field DocType: Energy Point Rule,For Document Event,Dokumendiürituse jaoks DocType: Website Settings,Chat Room Name,Jututuba Nimi +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Muutmata DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Vaata, millised dokumendid on loetav Kasutaja" DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,Kasu DocType: Auto Repeat,Quarterly,Kord kvartalis apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Kogu aeg apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ebaseadusliku dokumendi olek {0} jaoks DocType: Email Account,Enable Auto Reply,Luba automaatne vastus apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ei ole näinud @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Sõnu DocType: Email Account,Notify if unreplied,"Teavita, kui Vastuseta" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skannige QR-koodi ja sisestage kuvatav tulemus. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Luba gradient +DocType: Scheduled Job Type,Hourly Long,Igatunnine pikk DocType: System Settings,Minimum Password Score,Minimaalne Parooliskoor DocType: DocType,Fields,Valdkonnad DocType: System Settings,Your organization name and address for the email footer.,Teie organisatsiooni nimi ja aadress e-posti jalus. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent tabe apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 varundamine on valmis! apps/frappe/frappe/config/desktop.py,Developer,Väljatöötaja apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Loodud +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Selle lubamiseks järgige järgmise lingi juhiseid: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} järjest {1} ei saa olla nii URL ja laps teemad apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Järgmiste tabelite jaoks peaks olema vähemalt üks rida: {0} DocType: Print Format,Default Print Language,Vaikimisi trükikeel apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Esivanemad apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,"Juur {0} ei saa kustutada," +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Ebaõnnestunud logisid pole apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,No comments yet apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Palun seadistage SMS-i enne selle seadistamist autentimismeetodiks SMS-seadetes apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Mõlemad DocType ja nimi vaja @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Esemed apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menüü DocType: DefaultValue,DefaultValue,VaikeVäärtus DocType: Auto Repeat,Daily,Iga päev +DocType: Onboarding Slide,Max Count,Maksimaalne arv apps/frappe/frappe/config/users_and_permissions.py,User Roles,Kasutajate rollid DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Kinnisvara setter alistab standard DocType või Field kinnisvara apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ei saa uuendada: Vale / Aegunud Link. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,võõrustaja DocType: Data Import Beta,Import File,Impordi fail +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Malli viga apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Veerg {0} on juba olemas. DocType: ToDo,High,Kõrgel apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Uus sündmus @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Kuva filtris DocType: Address,Daman and Diu,Daman ja Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Project DocType: Address,Personal,Personal +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Töötlemata printimise sätted ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Üksikasju leiate aadressilt https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Nimeta DocType: Email Queue,Show as cc,Näita kui cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Võtke videot DocType: Contact Us Settings,Introductory information for the Contact Us Page,Sissejuhatav teavet Kontakt Page DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Dokumentide tühistamine DocType: User,Send Notifications for Email threads,Saada teatised e-posti lõimede kohta apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Mitte Arendaja režiim @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Failide var DocType: DocField,In Global Search,Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-vasakule -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,See on riskantne kustutada seda faili: {0}. Palun võtke System Manager. DocType: Currency,Currency Name,Valuuta nimi apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,nr kirjad @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Kasutaja väli DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} juba tellimata for {1} {2} +DocType: Scheduled Job Type,Stopped,Peatatud apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Ei eemaldada apps/frappe/frappe/desk/like.py,Liked,Meeldis apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Saada nüüd apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",Standard DocType ei saa vaikimisi trükiformaadis kasutada Kohanda vormi +DocType: Server Script,Allow Guest,Luba külalisel DocType: Report,Query,Query DocType: Customize Form,Sort Order,Järjekord apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"In List View 'ei ole lubatud tüüp {0} järjest {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Kaks teguri autentimise meetodit apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Esmalt määrake nimi ja salvestage see kirje. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 plaati +DocType: DocType Link,Link Fieldname,Lingi välja nimi apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Jagatakse {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Tühista DocType: View Log,Reference Name,Viide nimi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Muuda kasutajat +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Esiteks apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Uuenda tõlkeid DocType: Error Snapshot,Exception,Erand DocType: Email Account,Use IMAP,Kasuta IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Reeglid määratlevad üleminek riigi töökorraldust. DocType: File,Folder,Folder DocType: Website Route Meta,Website Route Meta,Veebisaidi marsruudi meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Pardal liugväli DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Uudiskiri Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Variant 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Mä apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Graafikute seadistamine DocType: User,Last IP,Viimati IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Palun lisage oma e-posti aadress -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Uue dokumendiga {0} on teiega jagatud {1}. DocType: Data Migration Connector,Data Migration Connector,Andmevahetuse pistik apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ennistati {1} DocType: Email Account,Track Email Status,Jälgi e-posti olekut @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Vaikimisi Väljuv DocType: Workflow State,play,mängima apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Kliki alloleval lingil, et täiendada oma registreerimise ja uue parooli" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Ei lisanud +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} kogus {1} punkti {2} {3} eest apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nr Meilikontode Sihtotstarbeline DocType: S3 Backup Settings,eu-west-2,eu-lääs-2 DocType: Contact Us Settings,Contact Us Settings,Kontakt Seaded @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Otsides . DocType: Workflow State,text-width,Teksti laiusega apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimaalne manuselimiidi selle kirje jõudnud. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Otsige failinime või laiendi järgi +DocType: Onboarding Slide,Slide Title,Slaidi pealkiri DocType: Notification,View Properties (via Customize Form),Vaata pakkumisi (via Kohanda vorm) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Faili valimiseks klõpsake sellel. DocType: Note Seen By,Note Seen By,Märkus näinud @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Jaga URL-i DocType: System Settings,Allow Consecutive Login Attempts ,Luba järjestikused sisselogimise katsed apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Makseprotsessi ajal tekkis viga. Palun võtke meiega ühendust. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Kui slaiditüüp on Loo või Seaded, peaks {ref_doctype} .py-failis olema meetod 'loo_onboarding_dokumendid', mis tuleb slaidi täitmise järel kindlasti täita." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} päeva tagasi DocType: Email Account,Awaiting Password,Ootan salasõna DocType: Address,Address Line 1,Aadress Line 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Mitte järglased DocType: Contact,Company Name,firma nimi DocType: Custom DocPerm,Role,Osa -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Seaded ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,oma brauserisse apps/frappe/frappe/utils/data.py,Cent,Sent ,Recorder,Salvesti @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Jälgige, kas saaja on teie e-posti avanud.
Märkus. Kui sa saadad mitmele adressaadile, isegi kui üks adressaat loeb e-kirja, loetakse see "avatuks"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Kadunud väärtusi Vajalikud apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Luba Google'i kontaktidele juurdepääs +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Piiratud DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Märgi mitteloetuks DocType: Activity Log,Operation,Operation @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Laske Prindi DocType: Communication,Clicked,Klõpsanud apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Jälgi apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nr luba "{0} '{1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Seadistage vaikimisi kasutatav e-posti konto seadistuses> E-post> E-posti konto apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Plaanitud saata DocType: DocType,Track Seen,Rada näinud DocType: Dropbox Settings,File Backup,Faili varundamine @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,No {0} leitud apps/frappe/frappe/config/customization.py,Add custom forms.,Lisa custom vorme. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} {2}-st apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,esitatud käesoleva dokumendi -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Süsteem pakub palju ettemääratud rollid. Saate lisada uusi rolle seada peenem õigused. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Käivitusnimi -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domeenid +DocType: Onboarding Slide,Domains,Domeenid DocType: Blog Category,Blog Category,Blogi Kategooria apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Ei saa kaarti, sest järgmine tingimus jätab:" DocType: Role Permission for Page and Report,Roles HTML,Rollid HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Laupäev DocType: User,Represents a User in the system.,Kujutab Kasutaja süsteemis. DocType: List View Setting,Disable Auto Refresh,Keela automaatne värskendamine DocType: Comment,Label,Etikett -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Ülesanne {0}, et te määratud {1}, on suletud." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Palun sulgege see aken DocType: Print Format,Print Format Type,Prindi Formaat DocType: Newsletter,A Lead with this Email Address should exist,Plii seda e-posti aadress peaks eksisteerima @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP Settings väljuva apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vali DocType: Data Export,Filter List,Filtreeri nimekiri DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Vastusõnumit DocType: Data Migration Mapping,Condition,Seisund apps/frappe/frappe/utils/data.py,{0} hours ago,{0} tundi tagasi @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Teabebaasi kaastöötaja DocType: Communication,Sent Read Receipt,Saadetud Lugemiskinnitus DocType: Email Queue,Unsubscribe Method,Tühista meetod +DocType: Onboarding Slide,Add More Button,Lisage veel nuppu DocType: GSuite Templates,Related DocType,seotud DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Muuda lisada sisu apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Vali keel apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kaardi andmed apps/frappe/frappe/__init__.py,No permission for {0},Ei luba {0} DocType: DocType,Advanced,Edasijõudnud +DocType: Onboarding Slide,Slide Image Source,Slaidipildi allikas apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Viide: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,proua @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,kapten DocType: DocType,User Cannot Create,Kasutaja ei saa luua apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Edukalt tehtud apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox juurdepääs on heaks! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Kas soovite kindlasti liita {0} {1} -ga? DocType: Customize Form,Enter Form Type,Sisesta vorm Type DocType: Google Drive,Authorize Google Drive Access,Google Drive'i juurdepääsu volitamine apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Puudub parameeter Kanbani juhatuse nimi @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lubades DocType, DocType. Ole ettevaatlik!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Kohandatud Vormid trükkimine, e-post" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} summa -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,"Ajakohastada, et uus versioon" DocType: Custom Field,Depends On,Oleneb DocType: Kanban Board Column,Green,Green DocType: Custom DocPerm,Additional Permissions,Täiendav reeglid @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Sotsiaalne apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google'i kalender - saidi {0} jaoks ei saanud kalendrit luua, veakood {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Toimetajad Row DocType: Workflow Action Master,Workflow Action Master,Töövoo Action Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Kustutada kõik DocType: Custom Field,Field Type,Field Type apps/frappe/frappe/utils/data.py,only.,ainult. DocType: Route History,Route History,Marsruudi ajalugu @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Unustasid Salasõna? DocType: System Settings,yyyy-mm-dd,aaaa-kk-pp apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server Error +DocType: Server Script,After Delete,Pärast Kustuta apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Vaadake kõiki varasemaid teateid. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Logi sisse Id on vajalik DocType: Website Slideshow,Website Slideshow,Koduleht Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Andmeid ei ole DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, mis on veebilehel kodulehekülg. Standard Links (indeks, login, tooteid, blogi, umbes, kontaktandmed)" +DocType: Server Script,After Submit,Pärast esitamist apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentimine nurjus saamise ajal kirju Post konto {0}. Sõnum server: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Custom Field @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Kui kasutajal on roll kontrollida, siis kasutaja saab "System User". "Süsteem Kasutaja" on juurdepääs töölauale" DocType: System Settings,Date and Number Format,Kuupäev ja Arvuvorming apps/frappe/frappe/model/document.py,one of,üks -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Vormi kohandamine apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontroll üks hetk apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Näita Sildid DocType: DocField,HTML Editor,HTML-redaktor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja +DocType: DocType,Actions,Actions DocType: Workflow State,align-justify,"viia, õigustada" DocType: User,Middle Name (Optional),Lähis nimi (valikuline) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ei ole lubatud @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Tulemused p DocType: System Settings,Security,Turvalisus apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planeeritud saata {0} saajad apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Lõika +DocType: Server Script,After Save,Pärast Salvesta apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},ümber alates {0} kuni {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} {1} -st ({2} rida lastega) DocType: Currency,**Currency** Master,** Valuuta ** Master @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Filtri väärtused DocType: Communication,User Tags,Kasutaja Sildid DocType: Data Migration Run,Fail,Ebaõnnestus DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Viimane hukkamine DocType: Data Migration Run,Pull Failed,Pullimine ebaõnnestus apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Kaartide kuvamine / peitmine DocType: Communication,Feedback Request,Tagasiside taotlus apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Andmete importimine CSV / Exceli failidest. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Pärast väljad on puudu: +DocType: Notification Log,From User,Kasutajalt apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Tühistamine {0} DocType: Web Page,Main Section,Main jaos DocType: Page,Icon,Ikoon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Vihje: Kaasa sümbolid, numbrid ja suurtähtedega parool" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Seadistage mainimiste, määramiste, energiapunktide ja muu teabe teatised." DocType: DocField,Allow in Quick Entry,Luba kiirel sisselogimisel apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,pDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Teema URL DocType: Customize Form,Sort Field,Sorteeri Field DocType: Razorpay Settings,Razorpay Settings,Razorpay seaded apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Lisa veel DocType: System Settings,Session Expiry Mobile,Session lõppemine Mobiilne apps/frappe/frappe/utils/password.py,Incorrect User or Password,Vale kasutaja või parool apps/frappe/frappe/templates/includes/search_box.html,Search results for,Otsi tulemusi @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energiapunkti reegel DocType: Communication,Delayed,Hilinenud apps/frappe/frappe/config/settings.py,List of backups available for download,Loetelu varukoopiaid allalaadimiseks saadaval +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Proovige uut andmete importimist apps/frappe/frappe/www/login.html,Sign up,Registreeri apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rida {0}: pole lubatud standardväljade jaoks kohustuslikku keelata +DocType: Webhook,Enable Security,Luba turve apps/frappe/frappe/config/customization.py,Dashboards,Armatuurlauad DocType: Test Runner,Output,väljund DocType: Milestone,Track Field,Jäljeväli @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Määra Property Pärast Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Lisa väljad vorme. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Paistab midagi on valesti selle saidi Paypal konfiguratsiooni. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Lisage arvustus +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} määras teile uue ülesande {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Fondi suurus (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Vormi kohandamise kaudu on lubatud kohandada ainult tavalisi DocTypes. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portaal Menüüvalik apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Määrake filtrid DocType: Contact Us Settings,Email ID,Email ID DocType: Energy Point Rule,Multiplier Field,Korrutusväli +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay tellimust ei saanud luua. Palun pöörduge administraatori poole DocType: Dashboard Chart,Time Interval,Ajavahemik DocType: Activity Log,Keep track of all update feeds,Jälgige kõiki värskendusteateid +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} jagas teiega dokumenti {1} {2} 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Klahv DocType: Address,Contacts,sidemed DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Aruanne kõik dokumendi aktsiaid +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Impordimalli tüüp peaks olema .csv, .xlsx või .xls" apps/frappe/frappe/www/update-password.html,New Password,uus parool apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} puuduvad apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Kahjuks Sa ei saa kustutada Isegenereeritud kommentaarid @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Jookse DocType: Blog Post,Content (HTML),Sisu (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Seadistamine jaoks DocType: Personal Data Download Request,User Name,Kasutajanimi DocType: Workflow State,minus-sign,miinus-märk apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ei leitud @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,No {0} luba apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Ekspordi Kohandatudõigused apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ühtegi toodet pole leitud. DocType: Data Export,Fields Multicheck,Väli Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Täielik DocType: Activity Log,Login,Logi sisse DocType: Web Form,Payments,Maksed apps/frappe/frappe/www/qrcode.html,Hi {0},Tere {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive'i integreerimine. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} tõi teie punktid tagasi {1} {2} DocType: System Settings,Enable Scheduled Jobs,Luba Planeeritud Jobs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Märkused: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Mitteaktiivne @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Ühist apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Luba viga apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nimi {0} ei saa olla {1} DocType: User Permission,Applicable For,Kohaldatav +DocType: Dashboard Chart,From Date,Siit kuupäev apps/frappe/frappe/core/doctype/version/version_view.html,Success,Edukus apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,seanss on aegunud DocType: Kanban Board Column,Kanban Board Column,Kanban Board veerg @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Edu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ole lubatud tingimusel DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,pilt -apps/frappe/frappe/www/complete_signup.html,Complete,Täielik +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Täielik DocType: DocType,Image Field,Pilt Field DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: LDAP Settings,Default Role on Creation,Vaikimisi loodud roll @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Järgmine riik DocType: User,Block Modules,Block moodulid DocType: Print Format,Custom CSS,Custom CSS +DocType: Energy Point Rule,Apply Only Once,Kandke ainult üks kord apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lisa kommentaar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Vahele jäetud: {0} kuni {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Vaikimisi Saabuva DocType: Workflow State,repeat,kordus DocType: Website Settings,Banner,Lipp apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Väärtus peab olema üks {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Tühista kõik dokumendid DocType: Role,"If disabled, this role will be removed from all users.","Kui lülitada, see roll eemaldatakse kõik kasutajad." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Minge loendisse {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Spikker Otsi @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registreeri apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Selle dokumendi automaatne kordamine on keelatud. DocType: DocType,Hide Copy,Peida Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Kustuta kõik rollid +DocType: Server Script,Before Save,Enne salvestamist apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} peab olema unikaalne apps/frappe/frappe/model/base_document.py,Row,Row apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC ja e-posti mallid" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} importimine õnnestus DocType: User,API Key,API võti DocType: Email Account,Send unsubscribe message in email,Saada loobun sõnum e-kirja -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Muuda Pealkiri apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname mis on DocType selle link valdkonnas. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumendid teile määratud teile. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Võite selle ka kopeerida-kleepida @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Kinnita Image DocType: Workflow State,list-alt,"nimekirja, alt" apps/frappe/frappe/www/update-password.html,Password Updated,Salasõna Uuendatud +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Teie sisselogimise kinnitamiseks vajalikud sammud apps/frappe/frappe/utils/password.py,Password not found,Salasõna ei leitud +DocType: Webhook,Webhook Secret,Webhooki saladus DocType: Data Migration Mapping,Page Length,Lehe pikkus DocType: Email Queue,Expose Recipients,paljastada saajad apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Lisab kohustuslik sissetulevad kirjad @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Süsteem DocType: Web Form,Max Attachment Size (in MB),Max Manus Suurus (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ole kontot? Logi sisse +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Prindiseaded ... DocType: Workflow State,arrow-down,Nool alla apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rida {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Keelatud kasutaja kustutada {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sisestage DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Dokumendi pealkiri apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Kohustuslik) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi DocType: Social Login Key,Social Login Provider,Social Login Provider apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lisa veel üks kommentaar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Failis ei leitud andmeid. Lisage uus fail uuesti andmetega. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,käsitsi alla apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Ei leitud ühtegi välja, mida saaks kasutada Kanbani veeruna. Kasutage kohandatavat vormi, et lisada kohandatud välja tüüp "Vali"." DocType: Address,GST State,GST riik apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Ei saa määrata Tühista ilma Esita +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Kasutaja ({0}) DocType: Website Theme,Theme,Teema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Ümber suunama URI kohustatud autentimine kood apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Avage spikker DocType: DocType,Is Submittable,Kas esitatav -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Uus märkus +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Uus märkus apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Uusi Google'i kontakte ei sünkroonitud. DocType: File,Uploaded To Google Drive,Google Drive'i üles laaditud apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Väärtus tšeki valdkonnas võib olla kas 0 või 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Saabunud DocType: Kanban Board Column,Red,Red DocType: Workflow State,Tag,Lipik -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumenti ei saa salvestada. DocType: Energy Point Rule,Maximum Points,Maksimaalne punktide arv apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Minu seaded @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} hindamispunktid {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rollid saab seadistada kasutajad oma kasutaja lehele. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Lisa kommentaar +DocType: Dashboard Chart,Select Date Range,Valige kuupäevavahemik DocType: DocField,Mandatory,Kohustuslik apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moodul eksportida +DocType: Scheduled Job Type,Monthly Long,Kuu pikk apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Põhilised õigused seadmata +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Selle linkimiseks saatke e-kiri aadressile {0} apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Tähendus on Esitada, Loobu, Muuta" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tegema @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Jälgige mis tahes DocType: Social Login Key,Identity Details,Isikuandmed apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Töövoo oleku üleminek pole lubatud {0} -lt {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Kuva juhtpaneel -apps/frappe/frappe/desk/form/assign_to.py,New Message,Uus sõnum DocType: File,Preview HTML,Eelvaade HTML DocType: Desktop Icon,query-report,päringu-aruanne DocType: Data Import Beta,Template Warnings,Hoiatused malli kohta @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Seotud apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Muutke automaatse e-posti aruande seadeid DocType: Chat Room,Message Count,Teadete arv DocType: Workflow State,book,raamat +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} on seotud järgmiste esitatud dokumentidega: {2} DocType: Communication,Read by Recipient,Loeb saaja DocType: Website Settings,Landing Page,Koduleheks apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Viga Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nimi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No reeglid kehtestada selle kriteeriume. DocType: Auto Email Report,Auto Email Report,Auto Post Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Uus dokument jagatud apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Kustuta kommentaar? DocType: Address Template,This format is used if country specific format is not found,"Seda vormi kasutatakse siis, kui riik konkreetse vormi ei leitud" DocType: System Settings,Allow Login using Mobile Number,Luba sisse kasutades Mobile arv apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Kui lubatud, siis piiratud IP-aadressi sisselülitanud kasutajatel ei soovitata kasutada kahte faktorit" +DocType: Server Script,After Cancel,Pärast tühistamist DocType: Auto Repeat,Get Contacts,Hankige kontaktid apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Ametikohad Filed under {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Jäta pealkirjata veerg vahele @@ -1684,6 +1757,7 @@ 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 +DocType: Notification Log,Mention,Mainida DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fondid apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision peab olema vahemikus 1 ja 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ja apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},See aruanne on loodud {0} DocType: Error Snapshot,Frames,Raamid -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,omistamine +DocType: Notification Log,Assignment,omistamine DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Pildi link DocType: Auto Email Report,Report Filters,aruanne filtrid @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Ei saa uuendada juhul apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Kontrollkood on saadetud teie registreeritud e-posti aadressile. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Teie eesmärk apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter peab olema 4 väärtused (doctype, fieldname, operaator, väärtus): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Ühtegi nime pole {0} täpsustatud apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Rakenda määramisreeglit apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/utils/data.py,Invalid field name {0},Vigane väljanumber {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,Teksti-kõrgus DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Andmeedastusplaani kaardistamine apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé käivitamine ... DocType: Web Form Field,Max Length,max pikkus -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} jaoks DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,kaart-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Esita probleemist @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page kadunud või liigutad apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Ülevaated DocType: DocType,Route,marsruut apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay makse gateway seaded +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} sai {1} punkti {2} {3} eest apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Tõmmake lisatud pildid dokumendist DocType: Chat Room,Name,Nimi DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Ava link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Vali keel DocType: Dashboard Chart,Average,Keskmine apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Lisa Row -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Päring tuleb SELECT DocType: Auto Repeat,Completed,Valminud @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Järgmine sünkroniseerimine DocType: Energy Point Settings,Energy Point Settings,Energiapunkti seaded DocType: Async Task,Succeeded,Õnnestus apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Kohustuslikud väljad on nõutud {0} +DocType: Onboarding Slide Field,Align,Joondage apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Taasta Õigused {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Kasutajad ja reeglid DocType: S3 Backup Settings,S3 Backup Settings,S3 varundamise seaded @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Uus printimisvormingu nimi apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Taotluse kinnitamiseks klõpsake alloleval lingil DocType: Workflow State,align-left,viia vasakule +DocType: Onboarding Slide,Action Settings,Toimingu seaded DocType: User,Defaults,Vaikeväärtused +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Võrdluseks kasutage> 5, <10 või = 324. Vahemike jaoks kasutage 5:10 (väärtuste vahemikus 5–10)." DocType: Energy Point Log,Revert Of,Tagasi apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Ühendamine olemasoleva DocType: User,Birth Date,Sünnikuupäev @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Sisse DocType: Notification,Value Change,Väärtus Muutus DocType: Google Contacts,Authorize Google Contacts Access,Google'i kontaktide juurdepääsu volitamine apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Kuvatakse aruandest ainult Numbrilised väljad +apps/frappe/frappe/utils/data.py,1 week ago,1 nädal tagasi DocType: Data Import Beta,Import Type,Impordi tüüp DocType: Access Log,HTML Page,HTML-leht DocType: Address,Subsidiary,Tütarettevõte @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Mis Letterhead apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Vale Outgoing Mail Server või Port DocType: Custom DocPerm,Write,Kirjutage -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Ainult administraator lubatud luua Query / Script Aruanded apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ajakohastamine DocType: Data Import Beta,Preview,Eelvaade apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Väli "väärtus" on kohustuslik. Palun täpsustage väärtust uuendatakse @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Kutsu Kasu DocType: Data Migration Run,Started,Alustatud apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Kasutajal {0} pole sellele dokumendile juurdepääsu DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Rühmita põhjal apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Vali failid apps/frappe/frappe/model/naming.py, for {0},jaoks {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Teil ei ole lubatud trükkida Selle dokumendi @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Kinnita DocType: Workflow Document State,Update Field,Värskenda Field DocType: Chat Profile,Enable Chat,Luba vestlus DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Jäta see vestlus apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Valikud ei seatud link valdkonnas {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Järjekord / töötaja @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Sisene ole lubatud sel ajal DocType: Data Migration Run,Current Mapping Action,Praegune kaardistamistegevus DocType: Dashboard Chart Source,Source Name,Allikas Nimi -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kasutajaga pole seotud ühtegi e-posti kontot. Lisage konto jaotises Kasutaja> E-posti postkast. DocType: Email Account,Email Sync Option,Saatke Sync variant apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rida nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,On kinnitatud DocType: Contact Us Settings,Introduction,Kasutuselevõtt +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Abi vajama? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin kogu maailmas apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Järgneb DocType: LDAP Settings,LDAP Email Field,LDAP E-Field @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Juba kasu DocType: User Email,Enable Outgoing,Luba Väljuv DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,kohandatud sildid -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posti konto pole seadistatud. Palun looge uus e-posti konto jaotises Seadistamine> E-post> E-posti konto DocType: Comment,Submitted,Esitatud DocType: Contact,Pulled from Google Contacts,Tõmmatud Google'i kontaktidest apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Kehtivas taotluses @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home / Test apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Määra mind DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Täiendavate otseteede käivitamiseks menüüs ja külgribal vajutage klahvi Alt +DocType: Dashboard Chart,To Date,Kuupäev DocType: List View Setting,List View Setting,Loendivaate säte apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Näita suutnud töökohta -DocType: Event,Details,Detailid +DocType: Scheduled Job Log,Details,Detailid DocType: Property Setter,DocType or Field,DocType või Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Lõpetasite selle dokumendi jälgimise apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Esmane värv @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-peegeldatud DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Kui see on lubatud, saavad kõik kasutajad sisse logida igast IP-aadressist, kasutades kahe teguri autentimist. Seda saab määrata ka ainult konkreetsele kasutaja (te) le Kasutaja leheküljel" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Tundub avaldatav Key või Secret Key on vale !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Kiire Help milles lubasid -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE määrata Sildid apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Näita haiguse ägenemisi apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Saatke on prügikasti visatud DocType: Report,Report Builder,Report Builder @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Laadi üles DocType: User Permission,Advanced Control,Täpsem juhtimine DocType: System Settings,Date Format,Kuupäeva formaat apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ei Avaldatud +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaikimisi aadressimalli ei leitud. Palun looge uus kaust Seadistamine> Printimine ja bränding> Aadressimall. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Meetmed töökorraldust (nt kiita, Loobu)." DocType: Data Import,Skip rows with errors,Jätke vead ridu DocType: Workflow State,flag,lipp @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Doku apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hüppa põllule DocType: Contact Us Settings,Forward To Email Address,Edasta e-posti aadress DocType: Contact Phone,Is Primary Phone,Kas esmane telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Selle linkimiseks saatke e-kiri aadressile {0}. DocType: Auto Email Report,Weekdays,Nädalapäevad apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} kirjet eksporditakse apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Pealkiri valdkonnas peab olema kehtiv fieldname @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Postita kommentaar apps/frappe/frappe/config/core.py,Documents,Dokumendid apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Tegevus Logi sisse DocType: Social Login Key,Custom Base URL,Kohandatud baas URL -DocType: Email Flag Queue,Is Completed,on lõpetatud +DocType: Onboarding Slide,Is Completed,on lõpetatud apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Hankige väljad apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Muuda profiili DocType: Kanban Board Column,Archived,arhiveeritud @@ -2110,11 +2189,12 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,täna +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,täna apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Esita pärast importimist DocType: Error Log,Log of Scheduler Errors,Logi of Scheduler vead DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Pardal libiseva abi link DocType: OAuth Client,App Client Secret,App kliendi saladus apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Esitades apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Vanem on dokumendi nimi, millele andmed lisatakse." @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,SUURTÄHTEDE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Sisesta kataloogi nimi -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaikimisi aadressimalli ei leitud. Palun looge uus kaust Seadistamine> Printimine ja bränding> Aadressimall. apps/frappe/frappe/auth.py,Unknown User,Tundmatu kasutaja apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Vali Role DocType: Comment,Deleted,Kustutatud @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Vestlusmärk apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Loo diagramm apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ära impordi -DocType: Web Page,Center,Keskpunkt +DocType: Onboarding Slide Field,Center,Keskpunkt DocType: Notification,Value To Be Set,Väärtuste apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Muuda {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Esimene tase @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Andmebaasi nimi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Värskenda vorm DocType: DocField,Select,Valima -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Vaata kogu logi +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vaata kogu logi DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Lihtne Pythoni avaldus, näide: olek == 'Ava' ja tippige == 'Viga'" apps/frappe/frappe/utils/csvutils.py,File not attached,Faili ei kinnitatud apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Ühendus kaotsi läinud Mõned funktsioonid ei pruugi töötada. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML päisejaotisesse. Vabat apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,See funktsioon on täiesti uus ja veel eksperimentaalse apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimaalne {0} rida lubatud DocType: Dashboard Chart Link,Chart,Joonis +DocType: Scheduled Job Type,Cron,Kron DocType: Email Unsubscribe,Global Unsubscribe,Global tellimine apps/frappe/frappe/utils/password_strength.py,This is a very common password.,See on väga levinud parool. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Vaade @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Tugijaama nimi DocType: Data Migration Mapping,Condition Detail,Tingimuste üksikasjad apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Valuuta {0} puhul peaks tehingu minimaalne väärtus olema {1} DocType: DocField,Print Hide,Prindi Peida +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Kasutajale apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Sisesta Value DocType: Workflow State,tint,värvitoon @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kood sissel apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lisa teha DocType: Footer Item,Company,Ettevõte apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Keskmine {0} +DocType: Scheduled Job Log,Scheduled,Plaanitud DocType: User,Logout from all devices while changing Password,Väljuge kõikidest seadmetest parooli vahetamisel apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Kinnita parool apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Vigu @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Kasutaja luba on juba olemas apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Veeru {0} kaardistamine väljale {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Kuva {0} -DocType: User,Hourly,Tunnis +DocType: Scheduled Job Type,Hourly,Tunnis apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreeri OAuth Klient App DocType: DocField,Fetch If Empty,"Too, kui tühi" DocType: Data Migration Connector,Authentication Credentials,Autentimise volikirjad @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ei saa olla ""{2}"". See peaks olema üks ""{3}""--st" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},saadud {0} automaatse reegli {1} kaudu apps/frappe/frappe/utils/data.py,{0} or {1},{0} või {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Te olete kõik üles seatud! DocType: Workflow State,trash,prügi DocType: System Settings,Older backups will be automatically deleted,Vanemad varukoopiaid kustutatakse automaatselt apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Kehtetu juurdepääsukoodi ID või salajane juurdepääsuvõimalus. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Kaotasite mõned energiapunktid DocType: Post,Is Globally Pinned,On ülemaailmselt kinnitatud apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Viimane tegevus DocType: Workflow Transition,Conditions,Tingimused @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Kinnitatud DocType: Event,Ends on,Lõpeb DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Tee serveri sertifikaadini +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript on teie brauseris keelatud apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Pole piisavalt luba näha lingid apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Aadress Pealkiri on kohustuslik. DocType: Google Contacts,Push to Google Contacts,Pöörake Google'i kontaktidesse @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-lääs-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Kui see on märgitud, imporditakse kehtivate andmetega rühmad ja hiljem importimiseks tühistatakse sobimatud read uude faili." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument on ainult muudetav kasutajad rolli -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Ülesanne {0}, et te määratud {1}, on suletud {2}." DocType: Print Format,Show Line Breaks after Sections,Näita reavahetused pärast jaod DocType: Communication,Read by Recipient On,Loeb vastuvõtja poolt DocType: Blogger,Short Name,Lühike nimi @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Mä DocType: Translation,PR sent,PR saadetud DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Saata ainult Records Uuendus Viimase X Tundi DocType: Communication,Feedback,Tagasiside +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Uuendatud uueks versiooniks 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Avatud tõlge apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,See meil on automaatselt genereeritud DocType: Workflow State,Icon will appear on the button,Ikoon ilmub nupp @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,lehte ei l DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Slideshow Esemed apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Püüa vältida korduvaid sõnu ja sümboleid +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Märguanded on keelatud +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Kas soovite kindlasti kõik read kustutada? DocType: Workflow Action,Workflow State,Töövoo riik apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Read lisatud apps/frappe/frappe/www/list.py,My Account,Minu konto @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Päeva pärast apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ salveühendus aktiivne! DocType: Contact Us Settings,Settings for Contact Us Page,Seaded Kontakt Page +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Prindi serveri lubamine apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} nädalat tagasi DocType: Email Account,Footer,Jalus @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Hoiatus apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Selle võib printida mitmele lehele DocType: Data Migration Run,Percent Complete,Protsent täidetud -DocType: Tag Category,Tag Category,tag Kategooria -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Võrdluseks kasutage> 5, <10 või = 324. Vahemike jaoks kasutage 5:10 (väärtuste vahemikus 5–10)." DocType: Google Calendar,Pull from Google Calendar,Tõmmake Google'i kalendrist apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Aitama DocType: User,Login Before,Logi Enne @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Nädalavahetuse peitmine apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genereerib automaatselt korduvad dokumendid. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Kas +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-märk apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Väärtus {0} ei saa olla nimekiri DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kuidas seda valuutat olema vormistatud? Kui pole määratud, kasutab süsteemi vaikimisi" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Esitada {0} dokumente? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Viga QZ-salverakendusega ühenduse loomisel ...

Töötlemata printimise funktsiooni kasutamiseks peab teil olema installitud ja töötav QZ-salve rakendus.

QZ-salve allalaadimiseks ja installimiseks klõpsake siin .
Töötlemata printimise kohta lisateabe saamiseks klõpsake siin ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printeri kaardistamine apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Palun salvesta enne kinnitamist. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Kas soovite tühistada kõik lingitud dokumendid? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Lisatud {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ei saa muuta alates {0} kuni {1} reas {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Role reeglid DocType: Help Article,Intermediate,kesktaseme +apps/frappe/frappe/config/settings.py,Email / Notifications,E-post / teatised apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} muudeti {1} väärtuseks {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Tühistatud dokument taastatud eelnõu DocType: Data Migration Run,Start Time,Algusaeg @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ja apps/frappe/frappe/email/smtp.py,Invalid recipient address,Vale saaja aadress DocType: Workflow State,step-forward,samm edasi DocType: System Settings,Allow Login After Fail,Luba sisselogimine pärast nurjumist +DocType: DocType Link,DocType Link,DocType'i link DocType: Role Permission for Page and Report,Set Role For,Määra roll DocType: GCalendar Account,The name that will appear in Google Calendar,"Nimi, mis kuvatakse Google'i kalendris" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Otsene tuba {0} juba on olemas. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Loo uus { DocType: Contact,Google Contacts,Google'i kontaktid DocType: GCalendar Account,GCalendar Account,GCalendari konto DocType: Email Rule,Is Spam,Kas Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Viimane apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Aruanne {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Avatud {0} DocType: Data Import Beta,Import Warnings,Importhoiatused @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok-märk apps/frappe/frappe/config/settings.py,Deleted Documents,kustutatud dokumendid apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-vorming on tõstutundlik apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon juba olemas +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Täpsustage, millistes domeenides slaidid peaksid ilmuma. Kui midagi pole täpsustatud, kuvatakse slaid vaikimisi kõigis domeenides." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicate apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: välja {1} reas {2} ei saa peita ja see on kohustuslik ilma vaikimisi DocType: Newsletter,Create and Send Newsletters,Loo ja saatke uudiskirju @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google'i kalendri sündmuse ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",""Vanem" tähendab vanemale tabeli, kus see rida tuleb lisada" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Ülevaatamispunktid: +DocType: Scheduled Job Log,Scheduled Job Log,Ajastatud tööpäevik +DocType: Server Script,Before Delete,Enne kustutamist apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Jagada apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Kinnitage failid / URL-id ja lisage tabelisse. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Sõnum pole seadistatav @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Seaded Meist Page apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Triip makse gateway seaded apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Prindi printerisse saadetud! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiapunktid +DocType: Notification Settings,Energy Points,Energiapunktid +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Aeg {0} peab olema vormingus: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,nt pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Genereerige võtmed apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,See eemaldab teie andmed jäädavalt. DocType: DocType,View Settings,Vaata Seaded +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Uus teatis DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Taotle struktuuri +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Kontrolleri meetod get_razorpay_order puudub DocType: Personal Data Deletion Request,Pending Verification,Kinnituse ootel DocType: Website Meta Tag,Website Meta Tag,Veebisaidi metasilt DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Kui mittestandardne port (nt 587). Kui kasutate Google Cloudis, proovige port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Lõppkuupäeva puhastamine, kuna see ei pruugi olla avaldatud lehtede jaoks varem olemas." DocType: User,Send Me A Copy of Outgoing Emails,Saada mulle väljaminevate meilide koopia -DocType: System Settings,Scheduler Last Event,Scheduler Viimase Etapi DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Lisa Google Analytics ID: nt. UA-89XXX57-1. Palun otsi abi Google Analytics rohkem teavet. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Salasõna ei tohi olla rohkem kui 100 tähemärki DocType: OAuth Client,App Client ID,App Kliendi ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,New Password apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} jagas seda dokumenti {1}ga DocType: Website Settings,Brand Image,kaubamärgi maine DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Impordi mall peaks sisaldama päist ja vähemalt ühte rida. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google'i kalender on konfigureeritud. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Setup top navigation bar, jalus ja logo." DocType: Web Form Field,Max Value,max Value @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Kasutaja sotsiaalne sisselogimine apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritiseeris teie tööd {1} punktiga {2} DocType: Contact,All,Kõik DocType: Email Queue,Recipient,Saaja +DocType: Webhook,Webhook Security,Webhooki turvalisus DocType: Communication,Has Attachment,Kas Attachment DocType: Address,Sales User,Müük Kasutaja apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Lohistamine vahend ehitada ja kohandada printimisformaadid. @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migratsiooni ID väli DocType: Dashboard Chart,Last Synced On,Viimati sünkroonitud sisse DocType: Comment,Comment Type,Kommentaar Type DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritiseeris teie tööd saidil {1} {2} DocType: Assignment Rule,Users,Kasutajad DocType: Address,Odisha,Odisha DocType: Report,Report Type,Aruande tüüp @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Koduleht Slideshow toode apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Isiklik heakskiit ei ole lubatud DocType: GSuite Templates,Template ID,malli ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Toetuse tüübi ( {0} ja vastuse tüüpi {1} kombinatsioon ei ole lubatud -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Uus sõnum alates {0} DocType: Portal Settings,Default Role at Time of Signup,Vaikimisi roll aeg liitumine DocType: DocType,Title Case,Pealkiri Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Oma andmete allalaadimiseks klõpsake alloleval lingil apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},E-posti sisendkasti kasutajale {0} DocType: Data Migration Run,Data Migration Run,Andmete ränne käivitada DocType: Blog Post,Email Sent,E-mail saadetud -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Vanemad DocType: DocField,Ignore XSS Filter,Ignoreeri XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,eemaldatud apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox backup seaded @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,Järjekorras DocType: Braintree Settings,Use Sandbox,Kasuta liivakasti apps/frappe/frappe/utils/goal.py,This month,See kuu apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Enne salvestamist (esitatud dokument) DocType: Custom DocPerm,Create,Loo apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Kuvatavaid üksusi enam pole apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Mine eelmisele rekordile @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Liiguta prügikasti DocType: Web Form,Web Form Fields,Web vormi väljad DocType: Data Import,Amended From,Muudetud From +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Lisage abivideolink juhuks, kui kasutajal pole aimugi, mida slaid täita." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Hoiatus: Ei leia {0} tahes tabelis seotud {1} DocType: S3 Backup Settings,eu-north-1,eu-põhja-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,See dokument on praegu sabas täitmiseks. Palun proovi uuesti @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Blogi Post DocType: Access Log,Export From,Ekspordi riigist apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Täpsem otsing apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Teil pole lubatud uudiskirja vaadata. +DocType: Dashboard Chart,Group By,Group By DocType: User,Interests,Huvid apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Parooli uuendamine juhised on saadetud e-posti DocType: Energy Point Rule,Allot Points To Assigned Users,Jaotatud kasutajatele punkte @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Määramise reegel apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Soovituslik Kasutajanimi: {0} DocType: Assignment Rule Day,Day,päev apps/frappe/frappe/public/js/frappe/desk.js,Modules,moodulid +DocType: DocField,Mandatory Depends On,Kohustuslik oleneb apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,makse Edu apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Nr {0} mail DocType: OAuth Bearer Token,Revoked,tühistatud @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Külgriba ja Kommentaarid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ei ole lubatud lisada dokumenti {0}, palun aktiveeri Print Settings (Prindi seadistused) käsul {0}" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posti konto pole seadistatud. Looge uus e-posti konto seadistusest> E-post> E-posti konto apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vaata dokumenti aadressil {0} DocType: Stripe Settings,Publishable Key,avaldatav Key apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Alusta importi @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,Murdosa apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Sündmus on sünkroonitud Google'i kalendriga. DocType: LDAP Settings,LDAP First Name Field,LDAP Eesnimi Field DocType: Contact,Middle Name,Keskmine nimi +DocType: DocField,Property Depends On,Vara sõltub DocType: Custom Field,Field Description,Field kirjeldus apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nimi ei määra kaudu Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,postkastist apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{0} {1}, {2} värskendamine" DocType: Auto Email Report,Filters Display,filtrid Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Muudatuse tegemiseks peab olema väli "muudetud_st". -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} hindas teie tööd {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salvestage filtrid DocType: Address,Plant,Taim apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Vasta kõigile @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,kausta sulgemine apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Aruanne: DocType: Print Settings,Print taxes with zero amount,Prindi maksud nullmääraga apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ei lubata ümber +DocType: Server Script,Before Insert,Enne sisestamist DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Aadress Line 2 DocType: Address,Reference,Viide apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Määratud -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Seadistage vaikimisi kasutatav e-posti konto seadistustes> E-post> E-posti konto DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Andmete rände kaardistamise üksikasjad DocType: Data Import,Action,Action DocType: GSuite Settings,Script URL,Script URL @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api juurdepääs DocType: DocField,In List View,In List View DocType: Email Account,Use TLS,TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Vale kasutajanimi või parool +DocType: Scheduled Job Type,Weekly Long,Nädala pikk apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Lae mall apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Lisa custom JavaScripti vorme. ,Role Permissions Manager,Role reeglid Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nimi uue Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Lülita külgriba sisse +DocType: Server Script,After Save (Submitted Document),Pärast salvestamist (esitatud dokument) DocType: Data Migration Run,Pull Insert,Tõmmake sisestust DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maksimaalne lubatud punktide arv pärast punktide korrutamist kordaja väärtusega (märkus. Jätke see väli tühjaks või määrake 0) @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogi apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ei ole paigaldatud apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Lae andmeid apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},muudetud väärtused saidil {0} {1} +DocType: Server Script,Before Cancel,Enne tühistamist DocType: Workflow State,hand-right,käsitsi õigus DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Piirkond @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,vana parool DocType: S3 Backup Settings,us-east-1,us-ida-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postitused {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Et formaadis sambad, annavad tulbapealkirju päringu." +DocType: Onboarding Slide,Slide Fields,Slaidiväljad DocType: Has Domain,Has Domain,on Domain DocType: User,Allowed In Mentions,Lubatud mainimisel apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Kas pole kontot? Registreeri apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID-välja ei saa eemaldada apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Ei saa määrata Määra Muuta kui mitte esitatav DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Tellitud dokumendid apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Kasutaja seaded DocType: Report,Reference Report,Võrdlusaruanne DocType: Activity Log,Link DocType,link DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google'i kalendri apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Lehe otsite on puudu. See võiks olla, sest see liigub või on kirjaviga link." apps/frappe/frappe/www/404.html,Error Code: {0},Veakood: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Kirjeldus nimekirjade lehele, lihttekstina, ainult paar rida. (max 140 tähemärki)" +DocType: Server Script,DocType Event,DocType'i sündmus apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} on kohustuslikud väljad DocType: Workflow,Allow Self Approval,Lubage enese kinnitamine DocType: Event,Event Category,Sündmuse kategooria @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Sinu nimi apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Ühenduse edu DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Pardal olev slaiditüüpi slaid on juba olemas. DocType: DocType,Default Sort Field,Vaikimisi sortimisväli DocType: File,Is Folder,Kas Folder DocType: Document Follow,DocType,DocType @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,väärt DocType: Workflow State,arrow-up,Nool üles DocType: Dynamic Link,Link Document Type,Lingi dokumendi tüüp apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Tabeli {0} jaoks peaks olema vähemalt üks rida +DocType: Server Script,Server Script,Serveri skript apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Automaatse korduse konfigureerimiseks lubage suvandist {0} "Luba automaatne kordus". DocType: OAuth Bearer Token,Expires In,lõpeb +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Kui palju kordi soovite väljade komplekti korrata (nt: kui soovite, et slaidil oleks 3 klienti, siis seadke selle välja väärtuseks 3. Ainult esimene väljade komplekt kuvatakse slaidil kohustuslikuks)" DocType: DocField,Allow on Submit,Laske Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Erand Type @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Päised apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Sündmused apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Palun sisesta väärtused App Access Key ja App Secret Key +DocType: Email Account,Append Emails to Sent Folder,Lisage e-kirjad saadetud kausta DocType: Web Form,Accept Payment,võta vastu makseid apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Valige loendiüksus apps/frappe/frappe/config/core.py,A log of request errors,Logi taotluse vead @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,Panustas apps/frappe/frappe/config/customization.py,Form Customization,Vormi kohandamine apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aktiivseid seansse pole DocType: Web Form,Route to Success Link,Edu linki tee -DocType: Top Bar Item,Right,Õigus +DocType: Onboarding Slide Field,Right,Õigus apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Tulevasi sündmusi pole DocType: User,User Type,Kasutaja Type DocType: Prepared Report,Ref Report DocType,Ref Aruanne DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Palun proovi uue apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL peab algama tähtedega „http: //” või „https: //” apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Variant 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Seda ei saa olematuks teha DocType: Workflow State,Edit,Edit DocType: Website Settings,Chat Operators,Vestlusoperaatorid DocType: S3 Backup Settings,ca-central-1,ca-tsentraalne-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Vaikimisi {0} peab olema võimalus -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategooria apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,"Aruanne, milles on rohkem kui 10 veergu, näeb parem välja horisontaalrežiimis." apps/frappe/frappe/database/database.py,Invalid field name: {0},Kehtetu välja nimi: {0} DocType: Milestone,Milestone,Verstapost @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Minge lehele {0} apps/frappe/frappe/email/queue.py,Emails are muted,Kirjad on summutatud apps/frappe/frappe/config/integrations.py,Google Services,Google'i teenused apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 nädal tagasi +DocType: Onboarding Slide,Slide Description,Slaidikirjeldus DocType: Communication,Error,Eksimus apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Esitage kõigepealt sõnum DocType: Auto Repeat,End Date,End Date @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Märgistus DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google'i kontaktid on konfigureeritud. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 kirje eksporditakse +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kasutajaga pole seotud ühtegi e-posti kontot. Lisage konto jaotises Kasutaja> E-posti postkast. DocType: DocField,Report Hide,Aruanne Peida apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Puunäkymä ole saadaval {0} DocType: DocType,Restrict To Domain,Piira Domain DocType: Domain,Domain,Domeeni +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Vale faili URL. Palun pöörduge süsteemi administraatori poole. DocType: Custom Field,Label Help,Label Abi DocType: Workflow State,star-empty,star-tühi apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Kuupäevad on sageli lihtne ära arvata. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,käsitsi vasakule DocType: Data Import,If you are updating/overwriting already created records.,Kui olete juba loodud kirjeid uuendanud / üle kirjutanud. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,On globaalne DocType: Email Account,Use SSL,SSL +DocType: Webhook,HOOK-.####,KONKUR -. #### DocType: Workflow State,play-circle,play-ring apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumenti ei saanud õigesti määrata apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Kehtetu väljend "depends_on" @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Viimati värskendatud apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dokumendi tüübi jaoks DocType: Workflow State,arrow-right,Nool paremale +DocType: Server Script,API Method,API-meetod DocType: Workflow State,Workflow state represents the current state of a document.,Töövoo olek näitab hetkeseisu dokument. DocType: Letter Head,Letter Head Based On,Kirja pea põhineb apps/frappe/frappe/utils/oauth.py,Token is missing,Token puudub @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,lingiti DocType: Print Settings,Compact Item Print,Kompaktne Punkt Prindi DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Uuesti URL +DocType: Onboarding Slide Field,Placeholder,Kohatäide DocType: SMS Settings,Enter url parameter for receiver nos,Sisesta url parameeter vastuvõtja nos DocType: Chat Profile,Online,Hetkel DocType: Email Account,Always use Account's Name as Sender's Name,Kasutage saatja nimena alati konto nime @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,Kodu DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,Kasutaja saab sisse logida kasutades e-posti id või kasutajanime DocType: Workflow State,question-sign,Küsimus-märk -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} on keelatud apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Väljade "marsruut" on veebivaate jaoks kohustuslik apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Lisab veergu enne {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Selle välja kasutajale antakse punkte @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Kui Omanik DocType: Data Migration Mapping,Push,Push apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Lohistage failid siia DocType: OAuth Authorization Code,Expiration time,aegumine aeg +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Avage dokumendid DocType: Web Page,Website Sidebar,Koduleht Sidebar DocType: Web Form,Show Sidebar,Näita külgriba apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Sa pead olema sisselogitud, et kasutada seda {0}." @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globaalsed o DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Ei leidnud {0} on {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Ja perekonnanimed ise on lihtne ära arvata. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument on ümber nimetatud {0} - {1} apps/frappe/frappe/config/website.py,Knowledge Base,Teadmistepagas DocType: Workflow State,briefcase,mapp apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Väärtus ei saa muuta {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Prindi Formaat apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Lülita võrgu vaade sisse apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Minge järgmisele plaadile +DocType: System Settings,Time Format,Ajavorming apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Vale makse gateway volikirja DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"See on mallifail, mis on loodud ainult rida, millel on mõni viga. Seda faili peaksite parandamiseks ja importimiseks kasutama." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Seada õigusi Dokumendi liigid ja rollid @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Vasta apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Leheküljed Desk (kohatäitjaid) DocType: DocField,Collapsible Depends On,Kokkupandav sõltub DocType: Print Style,Print Style Name,Prindi stiili nimi +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Armatuurlaua diagrammi loomiseks on vaja gruppi Välja DocType: Print Settings,Allow page break inside tables,Laske Lehevahetuse sees tabelid DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Prindi Formaat Abi apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ruumis peab olema vähemalt üks kasutaja. DocType: DocType,Beta,beeta DocType: Dashboard Chart,Count,Krahv +DocType: Dashboard Chart,Group By Type,Rühma järgi apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Uus kommentaar saidi {0} kohta: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},taastatud {0} nagu {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Kui te uuendamas, valige "Kirjuta üle" muud olemasolevat rida ei kustutata." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Kasutajap DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Kuupäev {0} peab olema vormingus: {1} DocType: About Us Settings,Org History Heading,Org Ajalugu Rubriik +DocType: Scheduled Job Type,Scheduled Job Type,Ajastatud töö tüüp DocType: Print Settings,Allow Print for Cancelled,Laske Print Tühistatud DocType: Communication,Integrations can use this field to set email delivery status,"Integratsioon saab kasutada selles valdkonnas, et määrata e-posti kättetoimetamise staatuse" +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Teil pole luba lingitud dokumentide tühistamiseks. DocType: Web Form,Web Page Link Text,Web Page Link Text DocType: Page,System Page,süsteemi Page apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Määra vaikimisi formaati, lehe suurus, printimisstiil jms" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},"{0} kohandused, mida eksporditi:
{1}" DocType: Website Settings,Include Search in Top Bar,Kaasa Otsi Top Bar +DocType: Scheduled Job Type,Daily Long,Igapäevaselt pikk DocType: GSuite Settings,Allow GSuite access,Luba GSuite juurdepääsu DocType: DocType,DESC,DESC DocType: DocType,Naming,Nimetamine @@ -3476,6 +3597,7 @@ DocType: Notification,Send days before or after the reference date,Saada päeva DocType: User,Allow user to login only after this hour (0-24),Luba kasutajal sisse logida alles pärast seda tund (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Määrake ükshaaval, järjestikku" DocType: Integration Request,Subscription Notification,Tellimuse teatis +DocType: Customize Form Field, Allow in Quick Entry ,Luba kiirkandes apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,või kinnitage a DocType: Auto Repeat,Start Date,Alguskuupäev apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Väärtus @@ -3490,6 +3612,7 @@ DocType: Google Drive,Backup Folder ID,Kausta varukoopia ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Mitte Arendaja režiim! Set site_config.json või teha "Custom" DocType. DocType: Workflow State,globe,maakera DocType: System Settings,dd.mm.yyyy,pp.kk.aaaa +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioriteet DocType: Email Queue,Unsubscribe Param,Tühista Param DocType: DocType,Hide Sidebar and Menu,Peida külgriba ja menüü @@ -3501,6 +3624,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Luba Import (via Andmed Imp apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Lehekülje seaded +DocType: Notification Settings,Notification Settings,Märguandeseaded apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saving ... apps/frappe/frappe/www/update-password.html,Invalid Password,vale parool apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} kirje {1} edukalt imporditud. @@ -3516,6 +3640,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Kirja pea pilt DocType: Address,Party GSTIN,Partei GSTIN +DocType: Scheduled Job Type,Cron Format,Croni vorming apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} aruanne DocType: SMS Settings,Use POST,Kasuta postitust DocType: Communication,SMS,SMS @@ -3560,18 +3685,20 @@ DocType: Workflow,Allow approval for creator of the document,Luba dokumendi looj apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salvesta aruanne DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API lõpp-punkt Args +DocType: DocType Action,Server Action,Serveri toiming apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administraator külastatud {0} kohta {1} via IP aadress {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Põhiväli peab olema kehtiv välja nimi apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Tellimuse muutmisel ebaõnnestus DocType: LDAP Settings,LDAP Group Field,LDAP rühma väli +DocType: Notification Subscribed Document,Notification Subscribed Document,Teate tellitud dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Vastus apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Vale CSV formaadis -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Viga QZ-salverakendusega ühenduse loomisel ...

Töötlemata printimise funktsiooni kasutamiseks peab teil olema installitud ja töötav QZ-salve rakendus.

QZ-salve allalaadimiseks ja installimiseks klõpsake siin .
Töötlemata printimise kohta lisateabe saamiseks klõpsake siin ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Määra arv Varukoopiad DocType: DocField,Do not allow user to change after set the first time,Ära lase kasutajal muuta pärast seatud esimest korda apps/frappe/frappe/utils/data.py,1 year ago,1 aasta tagasi +DocType: DocType,Links Section,Lingid apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Kuva kõigi sündmuste printimise, allalaadimise ja eksportimise logi" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 kuu DocType: Contact,Contact,Kontakt @@ -3598,16 +3725,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,New Post DocType: Custom DocPerm,Export,Eksport apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Google'i kalendri kasutamiseks lubage {0}. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Samuti olekusõltuvuse välja lisamine {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Värskendatud {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-salve nurjus: DocType: Dropbox Settings,Dropbox Settings,Dropbox seaded DocType: About Us Settings,More content for the bottom of the page.,Rohkem sisu eest lehekülje allosas. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,See dokument on tagasi võetud apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive'i varundamine õnnestus. +DocType: Webhook,Naming Series,Nimetades Series DocType: Workflow,DocType on which this Workflow is applicable.,DocType millele see töövoog on kohaldatav. DocType: User,Enabled,Lubatud apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Seadistamise lõpetamine ebaõnnestus apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Uus {0}: {1} -DocType: Tag Category,Category Name,Kategooria nimi +DocType: Blog Category,Category Name,Kategooria nimi apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Lapse tabeli andmete saamiseks on vaja lapsevanemat apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Tellijaid DocType: Print Settings,PDF Settings,PDF Seaded @@ -3643,6 +3773,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalender apps/frappe/frappe/client.py,No document found for given filters,Ühtki dokumenti leitud antud filtrid apps/frappe/frappe/config/website.py,A user who posts blogs.,"Kasutajad, kes postitavad ajaveebid." +DocType: DocType Action,DocType Action,Toiming DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Teine {0} nimega {1} on olemas, valige teine nimi" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Koduleht Theme Image @@ -3652,6 +3783,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Laadimine apps/frappe/frappe/config/integrations.py,Backup,backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Armatuurlaua diagrammi loomiseks on vaja dokumendi tüüpi DocType: DocField,Read Only,Loe ainult +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Järelmaksukorraldust ei saanud luua apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New uudiskiri DocType: Energy Point Log,Energy Point Log,Energiapunkti logi DocType: Print Settings,Send Print as PDF,Saada Prindi PDF @@ -3677,16 +3809,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Kin apps/frappe/frappe/www/login.html,Or login with,Või logige sisse DocType: Error Snapshot,Locals,Kohalikud apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kaudu edastatud {0} on {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} mainis sind kommentaar {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Valige rühmita ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} on nõutav DocType: Integration Request,Integration Type,integratsiooni Type DocType: Newsletter,Send Attachements,Saada Kinnitused +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Ühtegi filtrit ei leitud apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google'i kontaktide integreerimine. DocType: Transaction Log,Transaction Log,Tehingute logi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistika põhineb eelmise kuu tootlusel (alates {0} kuni {1}) DocType: Contact Us Settings,City,City +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Peida kaardid kõigile kasutajatele apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Lubage käsul Kohanda vormi lubada doktüübi {0} automaatne kordus DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Vaata dokumenti @@ -3697,6 +3830,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Kui see on lubatud, jälgitakse dokumendi muudatusi ja näidatakse neid ajajoonel" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""Üldine otsing ole lubatud tüübi {0} järjes....t {1}" DocType: Energy Point Log,Appreciation,Tunnustus +DocType: Dashboard Chart,Number of Groups,Gruppide arv apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Vaata Nimekiri DocType: Workflow,Don't Override Status,Ära alistamisolek apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Otsingusõna @@ -3738,7 +3872,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-loode-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB-varukoopiate piirväärtus DocType: Custom DocPerm,Level,Level -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Viimased 30 päeva DocType: Custom DocPerm,Report,Aruanne apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Summa peab olema suurem kui 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Ühendatud QZ-salvega! @@ -3755,6 +3888,7 @@ DocType: S3 Backup Settings,us-west-2,meile-lääne-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Valige Laualaud apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Vallandage esmane tegevus apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Muuda +DocType: Social Login Key,User ID Property,Kasutaja ID omand DocType: Email Domain,domain name,domeeninimi DocType: Contact Email,Contact Email,Kontakt E- DocType: Kanban Board Column,Order,järjekord @@ -3777,7 +3911,7 @@ DocType: Contact,Last Name,Perekonnanimi DocType: Event,Private,Private apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Vasakule DocType: Event,All Day,Terve päev apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Paistab midagi on valesti selle saidi makse gateway konfiguratsiooni. Nr makse on tehtud. DocType: GCalendar Settings,State,Riik @@ -3809,7 +3943,6 @@ DocType: Workflow State,User,Kasutaja DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Show tiitli brauseri akna "Eesliide - pealkiri" DocType: Payment Gateway,Gateway Settings,Gateway'i seaded apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teksti dokumendi tüüp -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,porrvitestid apps/frappe/frappe/handler.py,Logged Out,Välja logitud apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Rohkem ... DocType: System Settings,User can login using Email id or Mobile number,Kasutaja saab sisselogimiseks kasutades e-posti id või Mobiil arv @@ -3825,6 +3958,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Kokkuvõte DocType: Event,Event Participants,Sündmuse osalised DocType: Auto Repeat,Frequency,sagedus +DocType: Onboarding Slide,Slide Order,Slaidide järjekord DocType: Custom Field,Insert After,Sisesta Pärast DocType: Event,Sync with Google Calendar,Sünkrooni Google'i kalendriga DocType: Access Log,Report Name,Aruande nimetus @@ -3852,6 +3986,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max laius tüüp Valuuta on 100px järjest {0} apps/frappe/frappe/config/website.py,Content web page.,Sisu veebilehel. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lisa uus roll +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Külastage veebisaiti +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Uus ülesanne DocType: Google Contacts,Last Sync On,Viimane sünkroonimine on sisse lülitatud DocType: Deleted Document,Deleted Document,Kustutatud Dokumendi apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Midagi läks valesti @@ -3862,7 +3998,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Maastik apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klient skripti laienduste Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Doktüüpe järgnevad kirjed filtreeritakse -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Ajasti mitteaktiivne +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Ajasti mitteaktiivne DocType: Blog Settings,Blog Introduction,Blogi Sissejuhatus DocType: Global Search Settings,Search Priorities,Otsinguprioriteedid DocType: Address,Office,Kontor @@ -3872,12 +4008,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Armatuurlaua diagrammi link DocType: User,Email Settings,Meiliseaded apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Tilk siia DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Kui see on sisse lülitatud, saab kasutaja sisse logida ükskõik milliselt IP-aadressilt, kasutades kahefaktorilist autentimist, selle saab süsteemisätetes määrata ka kõigile kasutajatele" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Printeri sätted ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Palun sisesta parool, et jätkata" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mina apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ei ole kehtiv riik apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Kehtib kõigile dokumenditüüpidele -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapunkti värskendus +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energiapunkti värskendus +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Käitage töökohti ainult iga päev, kui passiivne pole (päeva)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Palun valige teine makseviis. PayPal ei toeta tehingud sularaha "{0}" DocType: Chat Message,Room Type,Toatüüp DocType: Data Import Beta,Import Log Preview,Impordi logi eelvaade @@ -3886,6 +4022,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok ringi DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP-i kasutajate loomine ja kaardistamine apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Võite leida asju, küsides "leida oranž klientide" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Tänased sündmused apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Sorry! Kasutaja peab olema täielik juurdepääs oma rekord. ,Usage Info,Kasutamine Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Kuva kiirklahvid @@ -3902,6 +4039,7 @@ DocType: DocField,Unique,Unikaalne apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} hinnatud {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Osaline edu DocType: Email Account,Service,Teenus +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja DocType: File,File Name,Faili nimi apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Ei leidnud {0} ja {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3915,6 +4053,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Täielik DocType: GCalendar Settings,Enable,võimaldama DocType: Google Maps Settings,Home Address,Kodu aadress apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Võite üles laadida ainult upto 5000 arvestust korraga. (võib olla väiksem mõnel juhul) +DocType: Report,"output in the form of `data = [columns, result]`","väljund kujul "andmed = [veerud, tulemus]"" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Kohaldatavad dokumenditüübid apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Seadistage reeglid kasutaja määramiseks. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ebapiisav Loa {0} @@ -3930,7 +4069,6 @@ DocType: Communication,To and CC,Ja CC DocType: SMS Settings,Static Parameters,Staatiline parameetrid DocType: Chat Message,Room,ruum apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},uuendatakse {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Tausttöö ei tööta. Palun pöörduge administraatori poole DocType: Portal Settings,Custom Menu Items,Kohandatud menüü üksused apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Kõik veebisaidi slaidiseanssidest lisatud pildid peaksid olema avalikud DocType: Workflow State,chevron-right,Chevron paremas @@ -3945,11 +4083,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Valitud on {0} väärtust DocType: DocType,Allow Auto Repeat,Luba automaatne kordus apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,"Pole väärtusi, mida näidata" +DocType: DocType,URL for documentation or help,Dokumentide või abi URL DocType: Desktop Icon,_doctype,_doktüüp DocType: Communication,Email Template,E-posti mall apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} kirje edukalt värskendatud. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Kasutajal {0} pole dokumendi {1} rolliõiguse kaudu juurdepääsu doktüübile apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Mõlemad kasutajanime ja parooli vaja +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Las \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Palun värskenda saada viimaseid dokument. DocType: User,Security Settings,Turvalisus Seaded apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Lisa veerg @@ -3959,6 +4099,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Lisas leiate {0}: {1} DocType: Web Page,Set Meta Tags,Määrake metasildid +DocType: Email Account,Use SSL for Outgoing,Kasutage väljaminevate jaoks SSL-i 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: S3 Backup Settings,Backup Limit,Backup Limit DocType: Dashboard Chart,Line,Joon @@ -3991,4 +4132,3 @@ DocType: DocField,Ignore User Permissions,Ignoreeri Kasutaja reeglid apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvestatud edukalt apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Palun pöörduge oma administraatori kontrollida oma sign-up DocType: Domain Settings,Active Domains,aktiivne Domeenid -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Näita Logi diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv index d41e5c9bd2..424d6c9157 100644 --- a/frappe/translations/fa.csv +++ b/frappe/translations/fa.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,لطفا مقدار درست را انتخاب کنید. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,بارگیری پرونده واردات ... DocType: Assignment Rule,Last User,آخرین کاربر -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",یک کار جدید، {0}، توسط {1} به شما داده شده است. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,جلسه پیش فرض ذخیره شده است apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,بارگیری مجدد پرونده DocType: Email Queue,Email Queue records.,سوابق ایمیل صف. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} درخت DocType: User,User Emails,ایمیل های کاربر DocType: User,Username,نام کاربری apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,وارد کردن زیپ +DocType: Scheduled Job Type,Create Log,ورود به سیستم apps/frappe/frappe/model/base_document.py,Value too big,ارزش بیش از حد بزرگ DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,تست اسکریپت اجرا @@ -71,7 +71,7 @@ DocType: Auto Repeat,Monthly,ماهیانه DocType: Address,Uttarakhand,اوتاراکند DocType: Email Account,Enable Incoming,فعال ورودی apps/frappe/frappe/core/doctype/version/version_view.html,Danger,خطر -DocType: Address,Email Address,آدرس ایمیل +apps/frappe/frappe/www/login.py,Email Address,آدرس ایمیل DocType: Workflow State,th-large,TH-بزرگ DocType: Communication,Unread Notification Sent,هشدار از طریق ارسال خوانده نشده apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,صادرات پذیر نیست. شما {0} نقش به صادرات نیاز دارید. @@ -82,10 +82,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,لغ DocType: DocType,Is Published Field,منتشر درست DocType: GCalendar Settings,GCalendar Settings,تنظیمات GCalendar DocType: Email Group,Email Group,ایمیل گروه +apps/frappe/frappe/__init__.py,Only for {},فقط برای {} DocType: Event,Pulled from Google Calendar,از تقویم Google بیرون کشیده شد DocType: Note,Seen By,دیده شده توسط apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,اضافه کردن چند -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,شما برخی از نقاط انرژی را بدست آورده اید apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,یک تصویر کاربر معتبر نیست DocType: Energy Point Log,Reverted,برگردانده شد DocType: Success Action,First Success Message,پیام موفقیت اول @@ -93,6 +93,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,نه مثل apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},مقدار نادرست: {0} باید {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",خواص تغییر درست (مخفی، فقط خواندنی، اجازه و غیره) apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,قدردانی +DocType: Notification Settings,Document Share,اشتراک اسناد DocType: Workflow State,lock,قفل apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,تنظیمات برای تماس با ما صفحه. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,خارج شده است در مدیر @@ -106,6 +107,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",در صورت فعال بودن ، سند همانطور که دیده می شود علامت گذاری می شود ، اولین باری که کاربر آن را باز می کند DocType: Auto Repeat,Repeat on Day,تکرار در روز DocType: DocField,Color,رنگ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,همه را به عنوان خوانده شده علامت بزن DocType: Data Migration Run,Log,ورود DocType: Workflow State,indent-right,تورفتگی راست DocType: Has Role,Has Role,است نقش @@ -124,6 +126,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,نمایش ردگیری DocType: DocType,Default Print Format,به طور پیش فرض فرمت چاپ DocType: Workflow State,Tags,برچسب ها +DocType: Onboarding Slide,Slide Type,نوع اسلاید apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,هیچ: پایان گردش کار apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} درست است نه می تواند تنظیم شود که در {1} منحصر به فرد، به عنوان مقادیر غیر منحصر به فرد موجود وجود دارد apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,انواع سند @@ -133,7 +136,6 @@ DocType: Language,Guest,مهمان DocType: DocType,Title Field,عنوان درست DocType: Error Log,Error Log,ورود به خطا apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL نامعتبر است -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 روز گذشته apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",تکرار مانند "abcabcabc" فقط کمی سخت تر به حدس زدن از "ABC" DocType: Notification,Channel,کانال apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",اگر شما فکر می کنم این غیر مجاز است، لطفا رمز عبور Administrator را تغییر دهید. @@ -152,6 +154,7 @@ DocType: OAuth Authorization Code,Client,مشتری apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,ستون را انتخاب کنید apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,این فرم اصلاح شده است بعد از شما آن لود شده DocType: Address,Himachal Pradesh,هیماچال پرادش +DocType: Notification Log,Notification Log,ورود به سیستم اطلاع رسانی DocType: System Settings,"If not set, the currency precision will depend on number format",اگر تنظیم نشود، دقت ارز در قالب شماره بستگی دارد apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,عالی را باز کنید apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",به نظر می رسد یک مشکل با پیکربندی نوار خط سرور وجود دارد. در صورت خرابی، مقدار به حساب شما بازپرداخت خواهد شد. @@ -161,7 +164,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,ن apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ارسال DocType: Workflow Action Master,Workflow Action Name,نام اقدام گردش کار apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE نمی تواند با هم ادغام شدند -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,نه یک فایل فشرده DocType: Global Search DocType,Global Search DocType,DocType جستجوی جهانی DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -174,7 +177,9 @@ DocType: Newsletter,Email Sent?,ایمیل فرستاده شده است؟ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,تعویض نمودار apps/frappe/frappe/desk/form/save.py,Did not cancel,آیا لغو DocType: Social Login Key,Client Information,اطلاعات مشتری +DocType: Energy Point Rule,Apply this rule only once per document,این قانون را فقط یک بار در هر سند اعمال کنید DocType: Workflow State,plus,بعلاوه +DocType: DocField,Read Only Depends On,فقط بخوانید بستگی دارد apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,در عنوان مهمان و یا مدیر وارد DocType: Email Account,UNSEEN,غیب apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,مدیریت فایل @@ -197,9 +202,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,دلیل 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,بدون فعالیت +DocType: Server Script,Script Manager,مدیر اسکریپت +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,بدون فعالیت apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,برنامه های شخص ثالث apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,اولین کاربر تبدیل خواهد شد مدیر سیستم (شما می توانید این تنظیمات را تغییر دهید). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,هیچ رویدادی امروز apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,شما نمی توانید نکات نقد و بررسی به خودتان بدهید apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType باید برای Event Document انتخاب شده Submittable باشد DocType: Workflow State,circle-arrow-up,دایره-فلش-تا @@ -246,6 +253,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},به روز رسانی {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,غیر فعال کردن گزارش DocType: Translation,Contributed Translation Doctype Name,نام مستند ترجمه +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> سفارشی کردن فرم DocType: PayPal Settings,Redirect To,تغییر مسیر به DocType: Data Migration Mapping,Pull,کشیدن DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جاوا اسکریپت فرمت: frappe.query_reports ['REPORTNAME'] = {} @@ -259,6 +267,7 @@ DocType: DocShare,Internal record of document shares,رکورد داخلی از DocType: Energy Point Settings,Review Levels,بررسی سطوح DocType: Workflow State,Comment,توضیح DocType: Data Migration Plan,Postprocess Method,روش پس پردازش +DocType: DocType Action,Action Type,نوع عمل apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,عکس گرفتن DocType: Assignment Rule,Round Robin,درخواست کتبی apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",شما می توانید اسناد ارائه شده را به وسیله لغو آنها و سپس، اصلاح آنها تغییر دهید. @@ -271,6 +280,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ذخیره به عنوان DocType: Comment,Seen,مشاهده apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,نمایش جزئیات بیشتر +DocType: Server Script,Before Submit,قبل از ارسال DocType: System Settings,Run scheduled jobs only if checked,اجرای شغل برنامه ریزی شده تنها در صورتی چک apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,تنها نشان داده شود اگر سرفصل بخش فعال هستند apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,بایگانی @@ -283,10 +293,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox به دسترسی های ک apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,نام فیلد اشتباه {0} در add_fetch پیکربندی اسکریپت سفارشی apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,مخاطبین Google را انتخاب کنید که مخاطب با آنها همگام شود. DocType: Web Page,Main Section (HTML),بخش اصلی (HTML) +DocType: Scheduled Job Type,Annual,سالیانه DocType: Workflow State,headphones,هدفون apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,رمز عبور لازم است و یا در انتظار رمز عبور را انتخاب کنید DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,به عنوان مثال replies@yourcomany.com. همه پاسخ به این صندوق آمده است. DocType: Slack Webhook URL,Slack Webhook URL,نشانی اینترنتی وب کم سرعت +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",ترتیب اسلاید در جادوگر را تعیین می کند. اگر اسلاید نمایش داده نمی شود ، اولویت باید بر روی 0 تنظیم شود. DocType: Data Migration Run,Current Mapping,نقشه برداری فعلی apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,ایمیل معتبر و نام مورد نیاز apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,همه پیوست ها را خصوصی کنید @@ -308,6 +320,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,مجا apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,بازنشانی به صورت پیش فرض DocType: Workflow,Transition Rules,مشاهده قوانین گذار apps/frappe/frappe/core/doctype/report/report.js,Example:,به عنوان مثال: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,محدودیت های DocType: Workflow,Defines workflow states and rules for a document.,تعریف وضعیت های گردش کار و قوانین برای یک سند DocType: Workflow State,Filter,صافی apps/frappe/frappe/database/schema.py,Fieldname {0} cannot have special characters like {1},Fieldname {0} می تواند از کاراکترهای خاص مانند ندارد {1} @@ -317,6 +330,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,کار apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} از سیستم خارج شده است: {1} DocType: Address,West Bengal,بنگال غربی +DocType: Onboarding Slide,Information,اطلاعات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: آیا می توانم تنظیم نشده اختصاص ثبت کردن اگر Submittable نمی DocType: Transaction Log,Row Index,شاخص ردیف DocType: Social Login Key,Facebook,فیس بوک @@ -334,7 +348,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,می تو DocType: Web Form,Button Help,دکمه راهنما DocType: Kanban Board Column,purple,رنگ بنفش DocType: About Us Settings,Team Members,اعضای تیم +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,مشاغل برنامه ریزی شده را فقط یک بار در روز برای سایتهای غیرفعال انجام می دهد. 4 روز پیش فرض در صورت تنظیم 0. DocType: Assignment Rule,System Manager,سیستم مدیریت +DocType: Scheduled Job Log,Scheduled Job,شغل برنامه ریزی شده DocType: Custom DocPerm,Permissions,مجوز apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,مدیران انبوه داخلی برای ادغام داخلی DocType: Dropbox Settings,Allow Dropbox Access,اجازه دسترسی Dropbox به @@ -386,6 +402,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,اس DocType: Email Flag Queue,Email Flag Queue,ایمیل صف پرچم DocType: Access Log,Columns / Fields,ستون ها / زمینه ها apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets برای فرمت های چاپ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,برای ایجاد نمودار داشبورد ، باید از قسمت عملکرد توابع استفاده کنید apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,نمی تواند شناسایی باز {0}. سعی کنید چیز دیگری است. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,اطلاعات شما ثبت شد apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,کاربر {0} نمی تواند حذف شود @@ -401,11 +418,12 @@ DocType: Property Setter,Field Name,نام درست DocType: Assignment Rule,Assign To Users,اختصاص به کاربران apps/frappe/frappe/public/js/frappe/utils/utils.js,or,یا apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,نام ماژول ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ادامه +DocType: Onboarding Slide,Continue,ادامه apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,ادغام Google غیرفعال است. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,گواهی نامه apps/frappe/frappe/templates/includes/login/login.js,Verifying...,تأیید ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,تکلیف شما در {0} {1} حذف شده است apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,ستون اول داده ها باید خالی باشد. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,نمایش همه نسخههای apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,مشاهده نظر @@ -414,12 +432,14 @@ DocType: Energy Point Log,Review,مرور DocType: User,Restrict IP,محدود کردن IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,داشبورد apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,قادر به ارسال ایمیل های در این زمان +DocType: Notification Log,Email Content,محتوای ایمیل apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,جستجو و یا استفاده از دستور DocType: Activity Log,Timeline Name,نام گاهشمار apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,فقط یک {0} می تواند به عنوان اصلی تنظیم شود. DocType: Email Account,e.g. smtp.gmail.com,به عنوان مثال smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,اضافه کردن یک قانون جدید DocType: Contact,Sales Master Manager,مدیر ارشد فروش +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,برای فعال کردن برنامه خود باید JavaScript را فعال کنید. DocType: User Permission,For Value,برای ارزش DocType: Event,Google Calendar ID,شناسه تقویم گوگل apps/frappe/frappe/www/complete_signup.html,One Last Step,یکی از آخرین مرحله @@ -433,6 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,زمینه نام میانی LDAP DocType: GCalendar Account,Allow GCalendar Access,اجازه دسترسی GCalendar را داشته باشید apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} فیلد اجباری است +DocType: DocType,Documentation Link,پیوند اسناد apps/frappe/frappe/templates/includes/login/login.js,Login token required,ورود به سیستم مورد نیاز apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,رتبه ماهانه: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,موارد چند لیست را انتخاب کنید @@ -454,6 +475,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL فایل DocType: Version,Table HTML,جدول HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,اضافه کردن مشترکین +DocType: Notification Log,Energy Point,نقطه انرژی apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,رویدادهای نزدیک برای امروز DocType: Google Calendar,Push to Google Calendar,به تقویم Google فشار دهید DocType: Notification Recipient,Email By Document Field,ایمیل درست سند @@ -468,12 +490,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,دور DocType: Currency,Fraction Units,واحد کسر apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} از {1} به {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,علامت گذاری به عنوان انجام شد DocType: Chat Message,Type,نوع DocType: Google Settings,OAuth Client ID,شناسه مشتری OAuth DocType: Auto Repeat,Subject,موضوع apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,بازگشت به میز DocType: Web Form,Amount Based On Field,مقدار بر اساس درست +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} هیچ نسخه پیگیری نشده است. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,کاربر اشتراک الزامی است DocType: DocField,Hidden,پنهان DocType: Web Form,Allow Incomplete Forms,اجازه می دهد فرم های ناقص @@ -496,6 +518,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,لطفا ایمیل خود را تایید بررسی apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ریختن (فولد) نمی تواند در پایان فرم است DocType: Communication,Bounced,منعکس +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,از DocType: Deleted Document,Deleted Name,نام حذف apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,سیستم و وب سایت کاربر DocType: Workflow Document State,Doc Status,توضیحات وضعیت @@ -506,6 +529,7 @@ DocType: Language,Language Code,کد زبان DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,توجه: به طور پیش فرض ایمیل برای پشتیبان گیری شکست خورده فرستاده می شود. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,اضافه کردن فیلتر apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS با شماره های زیر ارسال گردید: {0} +DocType: Notification Settings,Assignments,تکالیف apps/frappe/frappe/utils/data.py,{0} and {1},{0} و {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,یک مکالمه شروع کنید DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",همیشه "پیش نویس" افزودن عنوان برای چاپ اسناد پیش نویس @@ -514,6 +538,7 @@ DocType: Data Migration Run,Current Mapping Start,شروع نقشه فعلی apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ایمیل شده است به عنوان هرزنامه علامتگذاری شده است DocType: Comment,Website Manager,مدیر وب سایت apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,آپلود فایل قطع شده است لطفا دوباره تلاش کنید. +DocType: Data Import Beta,Show Failed Logs,نمایش سیاهههای مربوط به شکست خورده apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ترجمه ها apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,شما پیش نویس انتخاب شده و یا اسناد لغو apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},سند {0} به حالت {1} توسط {2} تنظیم شده است @@ -521,7 +546,9 @@ apps/frappe/frappe/model/document.py,Document Queued,سند صف DocType: GSuite Templates,Destination ID,ID مقصد DocType: Desktop Icon,List,فهرست DocType: Activity Log,Link Name,نام لینک +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,شما نباید DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY +DocType: Onboarding Slide,Onboarding Slide,اسلاید روی صفحه apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,رمز عبور نامعتبر: DocType: Print Settings,Send document web view link in email,ارسال سند لینک مشاهده وب سایت در ایمیل apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,قبلی @@ -580,6 +607,7 @@ DocType: Kanban Board Column,darkgrey,خاکستری تیره apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},موفق: {0} به {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,می توانید جزئیات کاربران در نسخه ی نمایشی را تغییر دهید. لطفا برای یک حساب جدید ثبت نام در https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,رها کردن +DocType: Dashboard Chart,Aggregate Function Based On,عملکرد کل بر اساس apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,لطفا این تکراری برای ایجاد تغییرات apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,برای ذخیره، وارد کنید apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF نسل به دلیل لینک های تصویر شکسته شکست خورده @@ -593,7 +621,9 @@ DocType: Notification,Days Before,روز قبل از apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,رویدادهای روزانه باید در همان روز به پایان برسد. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ویرایش ... DocType: Workflow State,volume-down,حجم پایین +DocType: Onboarding Slide,Help Links,پیوندهای راهنما apps/frappe/frappe/auth.py,Access not allowed from this IP Address,دسترسی از این آدرس IP مجاز نیست +DocType: Notification Settings,Enable Email Notifications,اعلان های ایمیل را فعال کنید apps/frappe/frappe/desk/reportview.py,No Tags,بدون برچسب DocType: Email Account,Send Notification to,ارسال هشدار از طریق به DocType: DocField,Collapsible,پیش ساخته @@ -622,6 +652,7 @@ DocType: Google Drive,Last Backup On,آخرین پشتیبان گیری روشن DocType: Customize Form Field,Customize Form Field,سفارشی کردن فرم درست DocType: Energy Point Rule,For Document Event,برای رویداد اسناد DocType: Website Settings,Chat Room Name,نام اتاق چت +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,بدون تغییر DocType: OAuth Client,Grant Type,نوع گرانت apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,بررسی کنید که کدام اسناد توسط کاربر قابل خواندن هستند DocType: Deleted Document,Hub Sync ID,شناسه همگام سازی هاب @@ -629,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,اس DocType: Auto Repeat,Quarterly,فصلنامه apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",دامنه ایمیل برای این حساب پیکربندی نشود، درست است؟ DocType: User,Reset Password Key,کلید بازیابی کلمه عبور +DocType: Dashboard Chart,All Time,همیشه apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},وضعیت سند غیرقانونی برای {0} DocType: Email Account,Enable Auto Reply,خودکار را فعال پاسخ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,دیده نمی @@ -641,6 +673,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,پی DocType: Email Account,Notify if unreplied,اطلاع عنوانهای بدون پاسخ apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,اسکن کد QR و کد نتیجه نمایش داده شده را وارد کنید. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,گرادیان را فعال کنید +DocType: Scheduled Job Type,Hourly Long,ساعتی طولانی DocType: System Settings,Minimum Password Score,حداقل کلمه عبور DocType: DocType,Fields,زمینه DocType: System Settings,Your organization name and address for the email footer.,نام سازمان شما و آدرس ایمیل برای بالا و پایین صفحه. @@ -652,6 +685,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in r DocType: Print Format,Default Print Language,زبان چاپ پیش فرض apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,اجداد از apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ریشه {0} نمی تواند حذف شود +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,هیچ سیاهههای مربوط به شکست خورده apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,بدون نظر apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",لطفا تنظیمات SMS را قبل از تنظیم آن به عنوان یک روش تأیید اعتبار، از طریق تنظیمات SMS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,هر دو DOCTYPE و نام مورد نیاز @@ -675,6 +709,7 @@ DocType: Website Settings,Footer Items,آیتم ها بالا و پایین صف apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,منو DocType: DefaultValue,DefaultValue,مقدار پیش فرض DocType: Auto Repeat,Daily,روزانه +DocType: Onboarding Slide,Max Count,حداکثر تعداد apps/frappe/frappe/config/users_and_permissions.py,User Roles,نقش کاربر DocType: Property Setter,Property Setter overrides a standard DocType or Field property,املاک گذارنده را لغو یک DOCTYPE استاندارد و یا اموال درست apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,نمی توانید به روز رسانی: نادرست / لینک منقضی شده است. @@ -693,6 +728,7 @@ DocType: Footer Item,"target = ""_blank""",هدف = "_blank" DocType: Workflow State,hdd,هارد DocType: Integration Request,Host,میزبان DocType: Data Import Beta,Import File,وارد کردن پرونده +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,خطای الگو apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ستون {0} وجود داشته باشد. DocType: ToDo,High,زیاد apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,رویداد جدید @@ -708,6 +744,7 @@ DocType: Web Form Field,Show in filter,نمایش در فیلتر DocType: Address,Daman and Diu,دامان و دیو apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,پروژه DocType: Address,Personal,شخصی +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,تنظیمات چاپ خام ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,برای جزئیات بیشتر به https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region مراجعه کنید. apps/frappe/frappe/config/settings.py,Bulk Rename,فله تغییر نام DocType: Email Queue,Show as cc,نمایش به عنوان سی سی @@ -717,6 +754,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,نگاهی به ف DocType: Contact Us Settings,Introductory information for the Contact Us Page,اطلاعات مقدماتی برای تماس با ما صفحه DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,شست به پایین +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,لغو اسناد DocType: User,Send Notifications for Email threads,اعلان ها را برای موضوعات ایمیل ارسال کنید apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,پروفسور apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,نه در حالت برنامه نویس @@ -724,7 +762,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,نسخه پ DocType: DocField,In Global Search,در جهانی جستجو DocType: System Settings,Brute Force Security,امنیت نیروی بیرحمانه DocType: Workflow State,indent-left,تورفتگی سمت چپ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پیش apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,این خطرناک است این فایل را حذف کنید: {0}. لطفا با مدیر سیستم تماس بگیرید. DocType: Currency,Currency Name,نام ارز apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,هیچ ایمیل @@ -739,10 +776,12 @@ DocType: Energy Point Rule,User Field,قسمت کاربر DocType: DocType,MyISAM,MyISAM از DocType: Data Migration Run,Push Delete,فشار را فشار دهید apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} در حال حاضر برای لغو اشتراک {1} {2} +DocType: Scheduled Job Type,Stopped,متوقف apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,آیا حذف کنید apps/frappe/frappe/desk/like.py,Liked,دوست داشت apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,در حال حاضر ارسال apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",استاندارد DOCTYPE نمی توانید فرمت چاپ طور پیش فرض، با استفاده از فرم سفارشی +DocType: Server Script,Allow Guest,مجاز بودن مهمان DocType: Report,Query,پرس و جو DocType: Customize Form,Sort Order,ترتیب apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'نمایش لیستی' برای نوع {0} در ردیف {1} مجاز نیست @@ -764,10 +803,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,دو روش اعتبار فاکتور apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,اول نام را تنظیم کرده و رکورد را ذخیره کنید. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 رکورد +DocType: DocType Link,Link Fieldname,پیوند نام فیلد apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},اشتراک گذاشته شده با {0} apps/frappe/frappe/email/queue.py,Unsubscribe,لغو اشتراک DocType: View Log,Reference Name,نام مرجع apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,تغییر کاربر +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,اولین apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,بهروزرسانی ترجمهها DocType: Error Snapshot,Exception,استثناء DocType: Email Account,Use IMAP,استفاده از IMAP @@ -781,6 +822,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,مشاهده قوانین تعریف انتقال دولت در کاری می باشد. DocType: File,Folder,پوشه DocType: Website Route Meta,Website Route Meta,مسیر متا وب سایت +DocType: Onboarding Slide Field,Onboarding Slide Field,میدان اسلاید روی صفحه DocType: DocField,Index,شاخص DocType: Email Group,Newsletter Manager,مدیر خبرنامه apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,انتخاب 1 @@ -806,7 +848,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ت apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,پیکربندی نمودارها DocType: User,Last IP,تاریخ و زمان آخرین IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,لطفا یک موضوع را به ایمیل خود اضافه کنید -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,یک سند جدید {0} با شما به اشتراک گذاشته شده {1}. DocType: Data Migration Connector,Data Migration Connector,اتصال مهاجرت داده apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} برگشت {1} DocType: Email Account,Track Email Status,ردیابی وضعیت ایمیل @@ -864,6 +905,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,جستج DocType: Workflow State,text-width,متن عرض apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,حداکثر فایل پیوست برای این سابقه بوده است. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,با نام پرونده یا پسوند جستجو کنید +DocType: Onboarding Slide,Slide Title,عنوان اسلاید DocType: Notification,View Properties (via Customize Form),نمایش خواص (از طریق فرم سفارشی) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,برای انتخاب روی یک پرونده کلیک کنید. DocType: Note Seen By,Note Seen By,توجه داشته باشید که توسط @@ -890,13 +932,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL اشتراک گذاری DocType: System Settings,Allow Consecutive Login Attempts ,اجازه ورود تلاشهای پی در پی apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,خطایی در روند پرداخت رخ داد. لطفا با ما تماس بگیرید. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,در صورت ایجاد یا تنظیمات Slide Type ، باید یک روش 'ایجاد_شکرکشده_درایو در پرونده py ref_doctype} .py وجود داشته باشد که باید پس از اتمام اسلاید اجرا شود. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} روز پیش DocType: Email Account,Awaiting Password,در انتظار رمز عبور DocType: Address,Address Line 1,خط 1 آدرس apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,از نسل نه DocType: Contact,Company Name,نام شرکت DocType: Custom DocPerm,Role,نقش -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,تنظیمات... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,به مرورگر شما apps/frappe/frappe/utils/data.py,Cent,در صد ,Recorder,ضبط کننده @@ -955,6 +997,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",پیگیری کنید که ایمیل شما توسط گیرنده باز شده است.
توجه: اگر به چند گیرنده ارسال می کنید، حتی اگر یک گیرنده ایمیل را بخواند، آن را "Opened" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,از دست رفتن ارزش های مورد نیاز apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,دسترسی مخاطبین Google را مجاز کنید +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,محصور DocType: Data Migration Connector,Frappe,یخ در بهشت apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,به عنوان "خوانده نشده" علامت گذاری کن DocType: Activity Log,Operation,عمل @@ -1007,6 +1050,7 @@ DocType: Web Form,Allow Print,اجازه چاپ DocType: Communication,Clicked,کلیک apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,لغو ادامه apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},بدون اجازه '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفاً حساب پیش فرض پست الکترونیکی را از تنظیم> ایمیل> حساب ایمیل تنظیم کنید apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,برنامه ریزی به ارسال DocType: DocType,Track Seen,آهنگ دیده DocType: Dropbox Settings,File Backup,پشتیبان فایل @@ -1015,12 +1059,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,بدون {0} apps/frappe/frappe/config/customization.py,Add custom forms.,اضافه کردن فرم های سفارشی. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} در {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ارسال این سند -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> مجوزهای کاربر apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,سیستم بسیاری از نقش های از پیش تعریف شده را فراهم می کند. شما می توانید نقش های جدید اضافه برای تنظیم دسترسی ظریف. DocType: Communication,CC,CC DocType: Country,Geo,ژئو DocType: Data Migration Run,Trigger Name,نام تکرار کننده -apps/frappe/frappe/public/js/frappe/desk.js,Domains,دامنه +DocType: Onboarding Slide,Domains,دامنه DocType: Blog Category,Blog Category,بلاگ مطالب مجموعه apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,نمی توانید نقشه به دلیل شرایط زیر نتواند: DocType: Role Permission for Page and Report,Roles HTML,نقش HTML @@ -1060,7 +1103,6 @@ DocType: Assignment Rule Day,Saturday,روز شنبه DocType: User,Represents a User in the system.,نشان دهنده یک کاربر در سیستم. DocType: List View Setting,Disable Auto Refresh,تازه کردن خودکار را غیرفعال کنید DocType: Comment,Label,برچسب -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",وظیفه {0}، که شما را به {1}، بسته شده است اختصاص داده است. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,لطفا این پنجره را ببندید DocType: Print Format,Print Format Type,چاپ نوع فرمت DocType: Newsletter,A Lead with this Email Address should exist,سرب با این آدرس ایمیل باید وجود داشته باشد @@ -1076,6 +1118,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,تنظیمات SMTP ب apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,را انتخاب کنید DocType: Data Export,Filter List,فیلتر لیست DocType: Data Export,Excel,اکسل +DocType: System Settings,HH:mm,HH: میلی متر DocType: Email Account,Auto Reply Message,خودکار پاسخ پیام DocType: Data Migration Mapping,Condition,شرط apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ساعت پیش @@ -1094,12 +1137,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,دانش پایه مولف DocType: Communication,Sent Read Receipt,ارسال رسید خواندن DocType: Email Queue,Unsubscribe Method,روش لغو اشتراک +DocType: Onboarding Slide,Add More Button,دکمه بیشتر اضافه کنید DocType: GSuite Templates,Related DocType,DOCTYPE های مرتبط apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,ویرایش برای اضافه کردن مطالب apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,انتخاب زبان apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,جزئیات کارت apps/frappe/frappe/__init__.py,No permission for {0},بدون اجازه برای {0} DocType: DocType,Advanced,پیشرفته +DocType: Onboarding Slide,Slide Image Source,منبع تصویر اسلاید apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,به نظر می رسد کلید API یا API راز اشتباه است. apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},مرجع: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,خانم @@ -1125,7 +1170,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",اجازه می دهد DOCTYPE، DOCTYPE. مواظب باش! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",فرمت سفارشی برای چاپ، ایمیل apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},جمع {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,به روز شده برای نسخه های جدید DocType: Custom Field,Depends On,بستگی دارد به DocType: Kanban Board Column,Green,سبز DocType: Custom DocPerm,Additional Permissions,مجوزهای تکمیلی @@ -1151,6 +1195,7 @@ DocType: Energy Point Log,Social,اجتماعی apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",تقویم Google - تقویم برای {0} ، کد خطا {1} ایجاد نشد. apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,در حال ویرایش ردیف DocType: Workflow Action Master,Workflow Action Master,مدیر اقدام گردش کار +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,حذف همه DocType: Custom Field,Field Type,نوع درست apps/frappe/frappe/utils/data.py,only.,تنها. DocType: Route History,Route History,تاریخ مسیر @@ -1184,11 +1229,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,رمز عبور را فرام DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,شناسه apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,خطای سرور +DocType: Server Script,After Delete,بعد از حذف apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,تمام گزارش های گذشته را مشاهده کنید apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,کد ورود مورد نیاز است DocType: Website Slideshow,Website Slideshow,وب سایت نمایش به صورت اسلاید apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,بدون اطلاعات DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",لینک این است که وب سایت صفحه اصلی وب سایت. لینک های استاندارد (شاخص، ورود به سیستم، محصولات، وبلاگ، درباره، تماس) +DocType: Server Script,After Submit,بعد از ارسال apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},احراز هویت در حالی که دریافت ایمیل از ایمیل حساب {0} شکست خورده است. پیام از سرور: {1} DocType: User,Banner Image,بنر تصویر DocType: Custom Field,Custom Field,درست سفارشی @@ -1227,15 +1274,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",اگر کاربر هر نقش بررسی است، پس از آن کاربر یک "سیستم کاربر" می شود. "سیستم کاربر" دسترسی به دسکتاپ است DocType: System Settings,Date and Number Format,تاریخ و شماره فرمت apps/frappe/frappe/model/document.py,one of,یکی از -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> سفارشی کردن فرم apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,چک کردن یک لحظه apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,نمایش برچسب ها DocType: DocField,HTML Editor,ویرایشگر HTML 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,عملیات -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر +DocType: DocType,Actions,عملیات DocType: Workflow State,align-justify,چین-توجیه DocType: User,Middle Name (Optional),نام میانه (اختیاری) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,غیر مجاز @@ -1249,6 +1294,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,نتایج DocType: System Settings,Security,امنیت apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,برنامه ریزی برای ارسال به {0} دریافت کنندگان apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,برش +DocType: Server Script,After Save,بعد از ذخیره apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},تغییر نام از {0} به {1} DocType: Currency,**Currency** Master,** ** استاد ارز DocType: Email Account,No of emails remaining to be synced,بدون ایمیل های باقی مانده به همگام سازی می شود @@ -1272,15 +1318,18 @@ DocType: Prepared Report,Filter Values,ارزشهای فیلتر DocType: Communication,User Tags,کاربر برچسب ها DocType: Data Migration Run,Fail,شکست DocType: Workflow State,download-alt,دانلود-ALT +DocType: Scheduled Job Type,Last Execution,اعدام آخر DocType: Data Migration Run,Pull Failed,کشیدن ناکام شد apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,کارت های نمایش / پنهان کردن DocType: Communication,Feedback Request,درخواست پاسخ به بازخورد apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,واردات داده ها از فایل های CSV / اکسل. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,زمینه های زیر را از دست رفته: +DocType: Notification Log,From User,از کاربر apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},لغو {0} DocType: Web Page,Main Section,بخش اصلی DocType: Page,Icon,شمایل apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",نکته: شامل نمادها، اعداد و حروف بزرگ در رمز عبور +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",پیکربندی اعلان ها برای موارد ذکر شده ، تکالیف ، نقاط انرژی و موارد دیگر. DocType: DocField,Allow in Quick Entry,اجازه ورود سریع apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,DD / MM / YYYY @@ -1312,7 +1361,6 @@ DocType: Website Theme,Theme URL,آدرس URL تم DocType: Customize Form,Sort Field,مرتب کردن بر اساس درست DocType: Razorpay Settings,Razorpay Settings,تنظیمات Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ویرایش فیلتر -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,اضافه کردن بیشتر DocType: System Settings,Session Expiry Mobile,جلسه انقضاء موبایل apps/frappe/frappe/utils/password.py,Incorrect User or Password,کاربر نادرست یا رمز عبور apps/frappe/frappe/templates/includes/search_box.html,Search results for,نتایج جستجو برای @@ -1328,8 +1376,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,قانون نقطه انرژی DocType: Communication,Delayed,به تاخیر افتاده apps/frappe/frappe/config/settings.py,List of backups available for download,فهرست پشتیبان گیری برای دانلود در دسترس +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,وارد کردن داده جدید را امتحان کنید apps/frappe/frappe/www/login.html,Sign up,ثبت نام apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,ردیف {0}: مجاز نیست که برای زمینه های استاندارد اجباری باشد +DocType: Webhook,Enable Security,امنیت را فعال کنید apps/frappe/frappe/config/customization.py,Dashboards,داشبورد DocType: Test Runner,Output,تولید DocType: Milestone,Track Field,زمینه پیگیری @@ -1337,6 +1387,7 @@ DocType: Notification,Set Property After Alert,تنظیم مشخصه پس از apps/frappe/frappe/config/customization.py,Add fields to forms.,اضافه کردن زمینه های به اشکال. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,به نظر می رسد مانند چیزی اشتباه است با پیکربندی پی پال این سایت است. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,بررسی را اضافه کنید +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} یک کار جدید {1} {2} به شما اختصاص داده است apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),اندازه قلم (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,فقط DocTypes استاندارد مجاز به سفارشی سازی فرم است. DocType: Email Account,Sendgrid,Sendgrid @@ -1348,6 +1399,7 @@ DocType: Portal Menu Item,Portal Menu Item,آیتم های منو را پورت apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,فیلترها را تنظیم کنید DocType: Contact Us Settings,Email ID,ایمیل ID DocType: Energy Point Rule,Multiplier Field,زمینه چند برابر +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,سفارش Razorpay ایجاد نشد. لطفا با سرپرست تماس بگیرید DocType: Dashboard Chart,Time Interval,فاصله زمانی DocType: Activity Log,Keep track of all update feeds,پیگیری تمام فید های به روز رسانی را دنبال کنید DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,فهرستی از منابع که برنامه سرویس گیرنده دسترسی به پس از کاربر اجازه می دهد تا داشته باشد.
به عنوان مثال پروژه @@ -1367,6 +1419,7 @@ DocType: DefaultValue,Key,کلید DocType: Address,Contacts,اطلاعات تماس DocType: System Settings,Setup Complete,راه اندازی کامل apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,گزارش تمام سهام سند +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",الگوی واردات باید از نوع ccv ، xxx یا xx باشد apps/frappe/frappe/www/update-password.html,New Password,رمز عبور جدید apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,فیلتر {0} از دست رفته apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,متاسف! شما می توانید نظرات خودکار تولید را حذف کنید @@ -1381,6 +1434,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,موارد دلخواه apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,اجرا کن DocType: Blog Post,Content (HTML),محتوا (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,راه اندازی برای DocType: Personal Data Download Request,User Name,نام کاربری DocType: Workflow State,minus-sign,منهای نشانه apps/frappe/frappe/public/js/frappe/request.js,Not Found,پیدا نشد @@ -1388,6 +1442,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,بدون {0} مجوز apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,صادرات و ویرایش سفارشی apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,موردی یافت نشد. DocType: Data Export,Fields Multicheck,زمینه های چندگانه +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} کامل DocType: Activity Log,Login,ورود به سیستم DocType: Web Form,Payments,پرداخت apps/frappe/frappe/www/qrcode.html,Hi {0},سلام {0} @@ -1404,6 +1459,7 @@ DocType: Comment,Comment By,نظر توسط apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Customize Form,سفارشی کردن فرم apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js,Entity Type,نوع سازمان apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: set role for,فیلد اجباری: نقش تعیین شده برای +apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized {1},{0} انتقاد شد {1} DocType: Data Migration Mapping,Mapping Name,نام نقشه گذاری apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,لیست را به پایین بروید DocType: Currency,A symbol for this currency. For e.g. $,نماد برای این ارز. برای مثال $ @@ -1414,6 +1470,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,قال apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,خطای مجوز apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},نام {0} نمی تواند {1} DocType: User Permission,Applicable For,قابل استفاده برای +DocType: Dashboard Chart,From Date,از تاریخ apps/frappe/frappe/core/doctype/version/version_view.html,Success,موفقیت apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,جلسه تمام شده DocType: Kanban Board Column,Kanban Board Column,ستون Kanban و انجمن @@ -1425,7 +1482,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,م apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,؛ در شرایط مجاز نیست DocType: Async Task,Async Task,async است وظیفه DocType: Workflow State,picture,تصویر -apps/frappe/frappe/www/complete_signup.html,Complete,تکمیل +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,تکمیل DocType: DocType,Image Field,تصویر درست DocType: Print Format,Custom HTML Help,سفارشی HTML راهنما DocType: LDAP Settings,Default Role on Creation,نقش پیش فرض در آفرینش @@ -1433,6 +1490,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,حالت بعدی DocType: User,Block Modules,ماژول بلوک DocType: Print Format,Custom CSS,CSS سفارشی +DocType: Energy Point Rule,Apply Only Once,فقط یک بار درخواست کنید apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,اضافه کردن نظر DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},نادیده گرفته: {0} به {1} @@ -1443,6 +1501,7 @@ DocType: Address,Postal,پستی DocType: Email Account,Default Incoming,به طور پیش فرض ورودی DocType: Workflow State,repeat,تکرار DocType: Website Settings,Banner,پرچم +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,همه اسناد را لغو کنید DocType: Role,"If disabled, this role will be removed from all users.",اگر غیرفعال باشد، این نقش را از تمام کاربران حذف می شود. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,به {0} لیست بروید apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,کمک در جستجو @@ -1451,6 +1510,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ثبت نا apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,تکرار خودکار برای این سند غیرفعال شده است. DocType: DocType,Hide Copy,مخفی کپی apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,پاک کردن تمام نقش +DocType: Server Script,Before Save,قبل از ذخیره apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} باید منحصر به فرد باشد apps/frappe/frappe/model/base_document.py,Row,ردیف apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template",CC، BCC و قالب ایمیل @@ -1460,7 +1520,6 @@ DocType: Workflow State,Check,چک DocType: Chat Profile,Offline,آفلاین DocType: User,API Key,کلید API DocType: Email Account,Send unsubscribe message in email,ارسال پیام لغو اشتراک در ایمیل -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ویرایش عنوان apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname خواهد شد که DOCTYPE برای این زمینه لینک کنید. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,اسناد به شما اختصاص داده و توسط شما. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,همچنین می توانید این مورد را کپی و چسباندن کنید @@ -1490,8 +1549,10 @@ DocType: Data Migration Run,Total Pages,تعداد صفحات DocType: DocField,Attach Image,ضمیمه تصویر DocType: Workflow State,list-alt,لیست ALT apps/frappe/frappe/www/update-password.html,Password Updated,رمز عبور به روز رسانی +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> مجوزهای کاربر apps/frappe/frappe/www/qrcode.html,Steps to verify your login,مراحل تأیید ورود شما apps/frappe/frappe/utils/password.py,Password not found,رمز عبور یافت نشد +DocType: Webhook,Webhook Secret,راز وب DocType: Data Migration Mapping,Page Length,طول صفحه DocType: Email Queue,Expose Recipients,افشای دریافت کنندگان apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,اضافه به ایمیل های دریافتی را برای الزامی است @@ -1517,6 +1578,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,سیستم DocType: Web Form,Max Attachment Size (in MB),حداکثر اندازه پیوست (در MB) apps/frappe/frappe/www/login.html,Have an account? Login,حساب کاربری دارید؟ وارد شدن +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,چاپ تنظیمات ... DocType: Workflow State,arrow-down,فلش به پایین apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},کاربر مجاز به حذف {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} از {1} @@ -1535,6 +1597,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,رمز ع DocType: Dropbox Settings,Dropbox Access Secret,Dropbox به دسترسی راز DocType: Tag Link,Document Title,عنوان اسناد apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(اجباری، الزامی) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پیش DocType: Social Login Key,Social Login Provider,ارائه دهنده خدمات اجتماعی apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,اضافه کردن یکی دیگر از نظر apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,هیچ داده ای در فایل یافت نشد لطفا فایل جدید با داده را دوباره نصب کنید. @@ -1549,11 +1612,12 @@ DocType: Workflow State,hand-down,دست به پایین apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",هیچ فیلدی یافت نشد که بتوان از آن به عنوان ستون Kanban استفاده کرد. برای افزودن فیلد سفارشی از نوع "Select" از فرم سفارشی سازی استفاده کنید. DocType: Address,GST State,GST دولت apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: آیا می توانم تنظیم نشده لغو بدون ارسال +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),کاربر ({0}) DocType: Website Theme,Theme,موضوع DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,تغییر مسیر URI ملزم به کد تایید apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,راهنما را باز کنید DocType: DocType,Is Submittable,Submittable است -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,یادداشت جدید +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,یادداشت جدید apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,هیچ مخاطب Google جدیدی همگام سازی نشده است. DocType: File,Uploaded To Google Drive,در Google Drive بارگذاری شد apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ارزش یک میدان چک می تواند یا 0 یا 1 @@ -1564,7 +1628,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,نامگذاری سر DocType: Workflow State,Inbox,صندوق DocType: Kanban Board Column,Red,قرمز DocType: Workflow State,Tag,برچسب -DocType: Custom Script,Script,خط +DocType: Report,Script,خط apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,سند نمی تواند ذخیره شود DocType: Energy Point Rule,Maximum Points,حداکثر امتیاز apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,تنظیمات من @@ -1592,8 +1656,10 @@ DocType: Email Queue,Email Queue,صف ایمیل DocType: Address,Haryana,هاریانا apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,نقش می تواند برای کاربران از صفحه کاربری خود را تنظیم کنید. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,اضافه کردن نظر +DocType: Dashboard Chart,Select Date Range,محدوده تاریخ را انتخاب کنید DocType: DocField,Mandatory,اجباری apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ماژول برای صادرات +DocType: Scheduled Job Type,Monthly Long,ماهانه طولانی apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: بدون تنظیم دسترسی عمومی apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",معنی از ثبت، لغو، اصلاح @@ -1602,7 +1668,6 @@ DocType: Test Runner,Module Path,راه ماژول DocType: Milestone Tracker,Track milestones for any document,نقاط عطف را برای هر مدرک ردیابی کنید DocType: Social Login Key,Identity Details,جزئیات هویت apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,نمایش داشبورد -apps/frappe/frappe/desk/form/assign_to.py,New Message,پیام جدید DocType: File,Preview HTML,پیش نمایش HTML DocType: Desktop Icon,query-report,جستجوهای گزارش DocType: Data Import Beta,Template Warnings,هشدارهای الگو @@ -1619,12 +1684,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} نام apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,بدون اجازه انتخاب این معیار. DocType: Auto Email Report,Auto Email Report,خودرو گزارش ایمیل +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,سند جدید به اشتراک گذاشته شده است apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,نظر حذف شود؟ DocType: Address Template,This format is used if country specific format is not found,این قالب استفاده شده است اگر قالب خاص کشور یافت نشد DocType: System Settings,Allow Login using Mobile Number,اجازه ورود به سیستم با استفاده از شماره موبایل apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,شما اجازه به اندازه کافی برای دسترسی به این منبع را ندارید. لطفا با مدیر شما برای دسترسی. DocType: Custom Field,Custom,رسم DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",در صورت فعال بودن، کاربرانی که از آدرس IP محدود شده وارد می شوند، برای دو فاکتور Auth دعوت نمی شوند +DocType: Server Script,After Cancel,بعد از لغو DocType: Auto Repeat,Get Contacts,دریافت تماس ها apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},پست واصل تحت {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,پرش از ستون بدون عنوان @@ -1635,6 +1702,7 @@ DocType: User,Login After,ورود بعد از DocType: Print Format,Monospace,عرض DocType: Letter Head,Printing,چاپ DocType: Workflow State,thumbs-up,شست به بالا +DocType: Notification Log,Mention,اشاره DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,فونت ها apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,دقیق باید بین 1 و 6 است @@ -1642,7 +1710,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,و apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},این گزارش در {0} تولید شد DocType: Error Snapshot,Frames,قاب -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,وظیفه +DocType: Notification Log,Assignment,وظیفه DocType: Notification,Slack Channel,کانال اسلک DocType: About Us Team Member,Image Link,لینک تصویر DocType: Auto Email Report,Report Filters,گزارش فیلترها @@ -1659,6 +1727,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,به روز نمی شود رویداد apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,کد تأیید به آدرس ایمیل ثبت شده شما ارسال شده است. apps/frappe/frappe/core/doctype/user/user.py,Throttled,ضعیف +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,هدف شما apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",فیلتر باید 4 ارزش (DOCTYPE، FIELDNAME، اپراتور، ارزش) را داشته باشد: {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,قاعده واگذاری را اعمال کنید apps/frappe/frappe/utils/bot.py,show,نمایش @@ -1710,7 +1779,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,لینک گ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,زبان شما DocType: Dashboard Chart,Average,میانگین apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,اضافه کردن ردیف -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,چاپگر apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,پرس و جو باید SELECT شود DocType: Auto Repeat,Completed,تکمیل شده @@ -1768,6 +1836,7 @@ DocType: GCalendar Account,Next Sync Token,توالی همگام سازی بعد DocType: Energy Point Settings,Energy Point Settings,تنظیمات نقطه انرژی DocType: Async Task,Succeeded,پیش apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},زمینه های مورد نیاز اجباری در {0} +DocType: Onboarding Slide Field,Align,تراز کردن apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,مجوز های تنظیم مجدد برای {0}؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,کاربران و ویرایش DocType: S3 Backup Settings,S3 Backup Settings,S3 تنظیمات پشتیبان گیری @@ -1784,7 +1853,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,نام فرمت چاپ جدید apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,برای تأیید درخواست ، روی پیوند زیر کلیک کنید DocType: Workflow State,align-left,تراز چپ +DocType: Onboarding Slide,Action Settings,تنظیمات عملکرد DocType: User,Defaults,پیش فرض +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",برای مقایسه ، از> 5 ، <10 یا 324 استفاده کنید. برای محدوده ها ، از 5:10 (برای مقادیر بین 5 تا 10) استفاده کنید. DocType: Energy Point Log,Revert Of,برگرداندن از apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ادغام با موجود DocType: User,Birth Date,تاریخ تولد @@ -1839,6 +1910,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,به DocType: Notification,Value Change,تغییر ارزش DocType: Google Contacts,Authorize Google Contacts Access,دسترسی مخاطبین Google را مجاز کنید apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,نمایش فقط فیلدهای عددی از گزارش +apps/frappe/frappe/utils/data.py,1 week ago,1 هفته قبل DocType: Data Import Beta,Import Type,نوع واردات DocType: Access Log,HTML Page,صفحه HTML DocType: Address,Subsidiary,فرعی @@ -1847,7 +1919,6 @@ DocType: System Settings,In Hours,در ساعت apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,با سربرگ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,سرور نامعتبر ایمیل های ارسالی و یا پورت DocType: Custom DocPerm,Write,نوشتن -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,تنها مدیر مجاز به ایجاد پرس و جو / اسکریپت گزارش apps/frappe/frappe/public/js/frappe/form/save.js,Updating,به روز رسانی DocType: Data Import Beta,Preview,پیش نمایش apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",درست "ارزش" الزامی است. لطفا مقدار را مشخص به روز می شود @@ -1857,6 +1928,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,دعوت DocType: Data Migration Run,Started,آغاز شده apps/frappe/frappe/permissions.py,User {0} does not have access to this document,کاربر {0} به این سند دسترسی ندارد DocType: Data Migration Run,End Time,پایان زمان +DocType: Dashboard Chart,Group By Based On,گروه بر اساس apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,انتخاب فایل های پیوست apps/frappe/frappe/model/naming.py, for {0},برای {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,شما مجاز به چاپ این سند نیستید @@ -1898,6 +1970,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,تایید DocType: Workflow Document State,Update Field,به روز رسانی درست DocType: Chat Profile,Enable Chat,فعال کردن چت DocType: LDAP Settings,Base Distinguished Name (DN),پایه نام برجسته (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ترک این گفتگو apps/frappe/frappe/model/base_document.py,Options not set for link field {0},گزینه ها برای درست تنظیم نشده لینک {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,صف / کارگر @@ -1963,12 +2036,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,ورود در این زمان مجاز نیست DocType: Data Migration Run,Current Mapping Action,اقدامات نقشه برداری فعلی DocType: Dashboard Chart Source,Source Name,نام منبع -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,هیچ حساب ایمیل مرتبط با کاربر نیست. لطفاً یک حساب کاربری در زیر کاربر> صندوق ورودی ایمیل اضافه کنید. DocType: Email Account,Email Sync Option,ایمیل همگام سازی گزینه apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,ردیف شماره DocType: Async Task,Runtime,در زمان اجرا DocType: Post,Is Pinned,پین شده است DocType: Contact Us Settings,Introduction,معرفی +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,کمک خواستن؟ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,پین در سطح جهان apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,به دنبال DocType: LDAP Settings,LDAP Email Field,LDAP ایمیل درست @@ -1978,7 +2051,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,در حا DocType: User Email,Enable Outgoing,فعال خروجی DocType: Address,Fax,فکس apps/frappe/frappe/config/customization.py,Custom Tags,سفارشی برچسب ها -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفاً یک حساب ایمیل جدید از طریق تنظیم> ایمیل> حساب ایمیل ایجاد کنید DocType: Comment,Submitted,ارسال شده DocType: Contact,Pulled from Google Contacts,از مخاطبین Google کشیده شد apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,در درخواست معتبر @@ -1999,9 +2071,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,صفحه ا apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,اختصاص به من DocType: DocField,Dynamic Link,پیوند پویا apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,کلید کلید Alt را فشار دهید تا میانبرهای اضافی در منو و نوار کناری ایجاد شود +DocType: Dashboard Chart,To Date,به روز DocType: List View Setting,List View Setting,تنظیم لیست نمایش apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,نمایش شکست خورده مشاغل -DocType: Event,Details,جزئیات +DocType: Scheduled Job Log,Details,جزئیات DocType: Property Setter,DocType or Field,DOCTYPE یا درست apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,شما این سند را لغو نکردید apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,رنگ اصلی @@ -2009,7 +2082,6 @@ DocType: Communication,Soft-Bounced,نرم برگشتی DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",در صورت فعال بودن، همه کاربران می توانند از هر آدرس IP با استفاده از دو فاکتور Auth وارد شوید. این همچنین می تواند فقط برای کاربر خاص (ها) در صفحه کاربر تنظیم شده باشد apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,به نظر می رسد کلید انتشار و یا راز های کلیدی اشتباه است. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,راهنما سریع برای تنظیم و ویرایش -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE به اختصاص برچسب ها apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,نمایش عود apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ایمیل منتقل شده است به سطل زباله DocType: Report,Report Builder,گزارش ساز @@ -2024,6 +2096,7 @@ DocType: Workflow State,Upload,بارگذاری DocType: User Permission,Advanced Control,کنترل پیشرفته DocType: System Settings,Date Format,قالب تاریخ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,منتشر نشده +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,هیچ الگوی پیش فرض آدرس یافت نشد. لطفاً یک مورد جدید از Setup> چاپ و برندسازی> الگوی آدرس ایجاد کنید. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",عملیات برای گردش کار (به عنوان مثال تایید، لغو). DocType: Data Import,Skip rows with errors,ردیف ها را با اشتباه پر کن DocType: Workflow State,flag,پرچم @@ -2039,7 +2112,7 @@ DocType: Post Comment,Post Comment,ارسال نظر apps/frappe/frappe/config/core.py,Documents,اسناد apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,فعالیت توسط DocType: Social Login Key,Custom Base URL,URL اصلی سفارشی -DocType: Email Flag Queue,Is Completed,به اتمام است +DocType: Onboarding Slide,Is Completed,به اتمام است apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,دریافت زمینه apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,ویرایش پروفایل DocType: Kanban Board Column,Archived,بایگانی شد @@ -2050,18 +2123,18 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",در این زمینه به نظر می رسد تنها در صورتی که FIELDNAME تعریف شده در اینجا دارای ارزش و یا قوانین واقعی (مثال): myfield محاسبه-: doc.myfield == 'ارزش من "تابع eval: doc.age> 18 DocType: Social Login Key,Office 365,دفتر 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,امروز +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,امروز apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",هنگامی که شما تعیین کرده اند این، کاربران تنها اسناد دسترسی قادر باشد (. به عنوان مثال وبلاگ پست) که در آن پیوند وجود دارد (به عنوان مثال بلاگر). DocType: Data Import Beta,Submit After Import,ارسال پس از واردات DocType: Error Log,Log of Scheduler Errors,ورود از خطاها زمانبند DocType: User,Bio,بیوگرافی +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,لینک راهنمایی اسلاید روی صفحه DocType: OAuth Client,App Client Secret,برنامه سرویس گیرنده راز apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ارسال apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,پدر و مادر نام اسنادی است که داده ها به آن اضافه می شوند. DocType: DocType,UPPER CASE,حروف apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,سفارشی HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,نام پوشه را وارد کنید -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,هیچ الگوی پیش فرض آدرس یافت نشد. لطفاً یک مورد جدید از Setup> چاپ و برندسازی> الگوی آدرس ایجاد کنید. apps/frappe/frappe/auth.py,Unknown User,کاربر ناشناس apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,انتخاب نقش DocType: Comment,Deleted,حذف @@ -2077,7 +2150,7 @@ DocType: Chat Token,Chat Token,مکالمه چت apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,نمودار را ایجاد کنید apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,وارد نکنید -DocType: Web Page,Center,مرکز +DocType: Onboarding Slide Field,Center,مرکز DocType: Notification,Value To Be Set,ارزش به تنظیم شود apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},ویرایش {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,سطح اول @@ -2085,7 +2158,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,نام پایگاه داده apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,فرم تازه کردن DocType: DocField,Select,انتخاب -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,مشاهده کامل گزارش +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,مشاهده کامل گزارش DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",بیان ساده پایتون ، مثال: status == 'Open' و نوع == 'اشکال' apps/frappe/frappe/utils/csvutils.py,File not attached,فایل های پیوست نمی apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ارتباط از دست رفته برخی از ویژگی های ممکن است کار نکند. @@ -2116,6 +2189,7 @@ DocType: Web Page,HTML for header section. Optional,HTML برای بخش هدر. apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,این قابلیت با نام تجاری جدید و هنوز هم تجربی است apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,حداکثر {0} ردیف اجازه DocType: Dashboard Chart Link,Chart,چارت سازمانی +DocType: Scheduled Job Type,Cron,کرون DocType: Email Unsubscribe,Global Unsubscribe,جهانی لغو عضویت apps/frappe/frappe/utils/password_strength.py,This is a very common password.,این رمز بسیار رایج است. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,چشم انداز @@ -2132,6 +2206,7 @@ DocType: Data Migration Connector,Hostname,نام میزبان DocType: Data Migration Mapping,Condition Detail,جزئیات وضعیت apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",برای ارز {0} حداقل مبلغ معامله باید {1} باشد DocType: DocField,Print Hide,چاپ مخفی +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,به کاربر apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,ارزش را وارد کنید DocType: Workflow State,tint,رنگ @@ -2195,6 +2270,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,کد QR برا apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,اضافه کردن به برای انجام DocType: Footer Item,Company,شرکت apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},میانگین {0} +DocType: Scheduled Job Log,Scheduled,برنامه ریزی DocType: User,Logout from all devices while changing Password,خروج از همه دستگاه ها هنگام تغییر رمز عبور apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,تائید رمز عبور apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,خطاهایی وجود دارد @@ -2219,7 +2295,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,مجوز کاربر در حال حاضر وجود دارد apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},نمایش {0} -DocType: User,Hourly,ساعتی +DocType: Scheduled Job Type,Hourly,ساعتی apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ثبت نام OAuth حفظ Client نرم افزار DocType: DocField,Fetch If Empty,اگر خالی باشد DocType: Data Migration Connector,Authentication Credentials,احراز هویت @@ -2229,10 +2305,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,دوره تخصیص DocType: SMS Settings,SMS Gateway URL,URL SMS دروازه apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} نمی تواند ""{2}"" باشد. ولی میتواند یکی از ""{3}"" باشد" apps/frappe/frappe/utils/data.py,{0} or {1},{0} یا {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,همه شما تنظیم شده اید! DocType: Workflow State,trash,نخاله DocType: System Settings,Older backups will be automatically deleted,پشتیبان گیری قدیمی تر به طور خودکار حذف apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,شناسه کلید دسترسی نامعتبر یا کلید دسترسی راز. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,شما برخی از نقاط انرژی را از دست داده اید DocType: Post,Is Globally Pinned,در سطح جهانی قرار دارد apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,فعالیت اخیر DocType: Workflow Transition,Conditions,شرایط @@ -2241,6 +2317,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,تایید DocType: Event,Ends on,به پایان می رسد در DocType: Payment Gateway,Gateway,دروازه DocType: LDAP Settings,Path to Server Certificate,مسیر به گواهی سرور +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,جاوا اسکریپت بر روی مرورگر شما غیر فعال شده است apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,نه اجازه اندازه کافی برای دیدن لینک apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,عنوان نشانی الزامی است. DocType: Google Contacts,Push to Google Contacts,به مخاطبین Google فشار دهید @@ -2258,7 +2335,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",اگر این چک شده باشد، ردیف هایی با اطلاعات معتبر وارد می شوند و ردیف های نامعتبر به یک فایل جدید برای شما وارد می شوند که بعدا وارد می شوند. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,سند تنها توسط کاربران از نقش قابل ویرایش است -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,خوانده شده توسط گیرنده در DocType: Blogger,Short Name,نام کوتاه @@ -2290,6 +2366,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,اخ DocType: Translation,PR sent,روابط عمومی ارسال شد DocType: Auto Email Report,Only Send Records Updated in Last X Hours,فقط ارسال سوابق به روز شده در تاریخ و زمان آخرین X ساعت DocType: Communication,Feedback,باز خورد +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,به نسخه جدید به روز شد apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,باز کردن ترجمه apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,این ایمیل بصورت خودکار ساخته شده است DocType: Workflow State,Icon will appear on the button,نماد بر روی دکمه ظاهر خواهد شد @@ -2327,6 +2404,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,صفحه DocType: DocField,Precision,دقت DocType: Website Slideshow,Slideshow Items,اسلاید نمایش apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,سعی کنید برای جلوگیری کلمات تکرار و شخصیت +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,اعلان ها غیرفعال شدند +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,آیا مطمئن هستید که می خواهید همه ردیف ها را حذف کنید؟ DocType: Workflow Action,Workflow State,وضعیت گردش کار apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ردیف اضافه شده apps/frappe/frappe/www/list.py,My Account,حساب من @@ -2335,6 +2414,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,روز پس از apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,اتصال سینی QZ فعال است! DocType: Contact Us Settings,Settings for Contact Us Page,تنظیمات برای تماس با ما صفحه +DocType: Server Script,Script Type,اسکریپت نوع DocType: Print Settings,Enable Print Server,سرور چاپ را فعال کنید apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} هفته پیش DocType: Email Account,Footer,پاورقی @@ -2359,8 +2439,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,هشدار apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,این ممکن است در چندین صفحه چاپ شود DocType: Data Migration Run,Percent Complete,درصد کامل -DocType: Tag Category,Tag Category,برچسب رده -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",برای مقایسه ، از 5 ، <10 یا 324 استفاده کنید. برای محدوده ها ، از 5:10 (برای مقادیر بین 5 تا 10) استفاده کنید. DocType: Google Calendar,Pull from Google Calendar,از تقویم Google بکشید apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,کمک DocType: User,Login Before,ورود به قبل از @@ -2370,17 +2448,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,پنهان کردن آخر هفته ها apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,اسناد تکرار به صورت خودکار تولید می کند. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,است +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,اطلاعات ثبت نام apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ارزش {0} می تواند یک لیست نیست DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",چگونه باید این ارز فرمت شود؟ اگر تنظیم نشود، خواهد پیش فرض سیستم استفاده کنید apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ارسال اسناد {0}؟ apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,شما باید به سیستم وارد شوید و نقش سیستم مدیریت قادر به دسترسی برای پشتیبان گیری داشته باشید +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطایی در اتصال به برنامه سینی QZ Tray ...

برای استفاده از ویژگی چاپ خام ، باید برنامه QT Tray را نصب و اجرا کنید.

برای بارگیری و نصب QZ Tray اینجا کلیک کنید .
برای کسب اطلاعات بیشتر در مورد چاپ خام اینجا کلیک کنید ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,نقشه برداری چاپگر apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,لطفا قبل از اتصال را نجات دهد. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,آیا می خواهید کلیه اسناد مرتبط را لغو کنید؟ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),اضافه شده {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype می تواند از عوض نمی شوند {0} به {1} در ردیف {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,مجوز های نقش DocType: Help Article,Intermediate,حد واسط +apps/frappe/frappe/config/settings.py,Email / Notifications,ایمیل / اطلاعیه ها apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,سند لغو شده به عنوان پیش نویس بازسازی شد DocType: Data Migration Run,Start Time,زمان شروع apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},نمی تواند حذف یا لغو شود زیرا {0} {1} با {2} {3} {4} ارتباط دارد @@ -2395,6 +2477,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,م apps/frappe/frappe/email/smtp.py,Invalid recipient address,آدرس گیرنده نامعتبر DocType: Workflow State,step-forward,گام رو به جلو DocType: System Settings,Allow Login After Fail,اجازه ورود پس از شکست +DocType: DocType Link,DocType Link,پیوند DocType DocType: Role Permission for Page and Report,Set Role For,تنظیم نقش برای DocType: GCalendar Account,The name that will appear in Google Calendar,نامی که در Google Calendar ظاهر می شود apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,اتاق مستقیم با {0} در حال حاضر وجود دارد. @@ -2410,6 +2493,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ایجا DocType: Contact,Google Contacts,مخاطبین Google DocType: GCalendar Account,GCalendar Account,حساب GCalendar DocType: Email Rule,Is Spam,اسپم +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,آخر apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},گزارش {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},گسترش {0} DocType: Data Import Beta,Import Warnings,هشدارهای واردات @@ -2421,6 +2505,7 @@ DocType: Workflow State,ok-sign,OK-علامت apps/frappe/frappe/config/settings.py,Deleted Documents,اسناد حذف شده apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,فرمت CSV حساس به حروف است apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,دسکتاپ آیکون قبلا وجود داشته +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,اسلایدها را در چه حوزه هایی مشخص کنید. اگر چیزی مشخص نشده باشد ، اسلاید به طور پیش فرض در همه حوزه ها نشان داده می شود. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,تکراری apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: زمینه {1} در ردیف {2} نمی تواند بدون پیش فرض پنهان و اجباری شود DocType: Newsletter,Create and Send Newsletters,ایجاد و ارسال خبرنامه @@ -2431,6 +2516,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,شناسه رویداد تقویم Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","پدر و مادر" به معنای جدول پدر و مادر است که در آن این ردیف باید اضافه شده apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,نقد و بررسی امتیازات: +DocType: Scheduled Job Log,Scheduled Job Log,ورود به سیستم برنامه ریزی شده +DocType: Server Script,Before Delete,قبل از حذف apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,اشتراک گذاشته شده با apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,فایل ها / URL ها را ضمیمه کنید و در جدول اضافه کنید. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,پیام تنظیم نشده است @@ -2453,19 +2540,20 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,تنظیمات برای درباره ما صفحه apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,خط خطی تنظیمات دروازه پرداخت apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,چاپ ارسال شده به چاپگر! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,نقاط انرژی +DocType: Notification Settings,Energy Points,نقاط انرژی DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,به عنوان مثال pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,ایجاد کلید apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,با این کار داده های شما برای همیشه حذف می شوند. DocType: DocType,View Settings,نمایش تنظیمات +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,اعلان جدید DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,درخواست ساختار +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,روش کنترل get_razorpay_order وجود ندارد DocType: Personal Data Deletion Request,Pending Verification,تایید در حال بررسی DocType: Website Meta Tag,Website Meta Tag,وب سایت متا تگ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",اگر پورت غیر استاندارد (به عنوان مثال 587). اگر در Google Cloud، پورت 2525 را امتحان کنید. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",پاک کردن تاریخ پایان، همانطور که در صفحات منتشر شده در گذشته نمی تواند باشد. DocType: User,Send Me A Copy of Outgoing Emails,ارسال یک کپی از ایمیل های خروجی -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.,اضافه کردن گوگل آنالیز ID: به عنوان مثال. UA-89XXX57-1. لطفا کمک جستجو در گوگل آنالیز برای اطلاعات بیشتر. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,رمز عبور نمی تواند بیش از 100 کاراکتر DocType: OAuth Client,App Client ID,برنامه سرویس گیرنده ID @@ -2494,6 +2582,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,رمز جدی apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} این سند را با {1} به اشتراک گذارده است DocType: Website Settings,Brand Image,تصویر نام تجاری DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,الگوی واردات باید حاوی یک هدر و حداقل یک ردیف باشد. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,تقویم Google پیکربندی شده است. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",راه اندازی ناوبری بار بالا، بالا و پایین صفحه و آرم. DocType: Web Form Field,Max Value,حداکثر ارزش @@ -2502,6 +2591,7 @@ DocType: Auto Repeat,Preview Message,پیش نمایش پیام DocType: User Social Login,User Social Login,ورودی کاربر اجتماعی DocType: Contact,All,همه DocType: Email Queue,Recipient,گیرنده +DocType: Webhook,Webhook Security,امنیت Webhook DocType: Communication,Has Attachment,دارای فایل پیوست DocType: Address,Sales User,فروش کاربر apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,کشیدن و رها کردن ابزار برای ساخت و سفارشی فرمت چاپ. @@ -2590,14 +2680,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,وب سایت نمایش apps/frappe/frappe/model/workflow.py,Self approval is not allowed,تصویب خود مجاز نیست DocType: GSuite Templates,Template ID,ID الگو apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,ترکیبی از نوع گرانت ( {0} ) و نوع پاسخ ( {1} ) مجاز نیست -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},پیام جدید از {0} DocType: Portal Settings,Default Role at Time of Signup,نقش پیش فرض در زمان ثبت نام DocType: DocType,Title Case,عنوان مورد apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,برای بارگیری اطلاعات خود روی پیوند زیر کلیک کنید apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},صندوق ورودی ایمیل فعال برای کاربر {0} DocType: Data Migration Run,Data Migration Run,اجرای مهاجرت داده DocType: Blog Post,Email Sent,ایمیل ارسال -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,مسن تر DocType: DocField,Ignore XSS Filter,نادیده گرفتن XSS فیلتر apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,حذف شده apps/frappe/frappe/config/integrations.py,Dropbox backup settings,تنظیمات پشتیبان گیری Dropbox @@ -2650,6 +2738,7 @@ DocType: Async Task,Queued,صف DocType: Braintree Settings,Use Sandbox,استفاده از گودال ماسهبازی apps/frappe/frappe/utils/goal.py,This month,این ماه apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,جدید سفارشی چاپ فرمت +DocType: Server Script,Before Save (Submitted Document),قبل از ذخیره (سند ارائه شده) DocType: Custom DocPerm,Create,ساختن apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,موارد دیگری برای نمایش وجود ندارد apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,به رکورد قبلی بروید @@ -2704,6 +2793,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,انتقال به سطل زباله DocType: Web Form,Web Form Fields,فرم وب DocType: Data Import,Amended From,اصلاح از +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,اضافه کردن یک لینک ویدئویی راهنما فقط در صورتی که کاربر هیچ ایده ای در مورد چه چیزی برای پر کردن اسلاید نداشته باشد. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},هشدار: قادر به پیدا کردن {0} در هر جدول مربوط به {1} DocType: S3 Backup Settings,eu-north-1,eu-North-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,این سند در حال حاضر برای اجرای صف. لطفا دوباره تلاش کنید @@ -2724,6 +2814,7 @@ DocType: Blog Post,Blog Post,وبلاگ پست DocType: Access Log,Export From,صادرات از apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,جست و جوی پیشرفته apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,شما مجاز به مشاهده این خبرنامه نیستید. +DocType: Dashboard Chart,Group By,گروه توسط DocType: User,Interests,منافع apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,دستورالعمل تنظیم مجدد رمز عبور به پست الکترونیک شما ارسال شده است DocType: Energy Point Rule,Allot Points To Assigned Users,اختصاص امتیاز به کاربران اختصاص داده شده @@ -2739,6 +2830,7 @@ DocType: Assignment Rule,Assignment Rule,قانون واگذاری apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},نام کاربری پیشنهادی: {0} DocType: Assignment Rule Day,Day,روز apps/frappe/frappe/public/js/frappe/desk.js,Modules,ماژول +DocType: DocField,Mandatory Depends On,اجباری بستگی دارد apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,موفقیت پرداخت apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,بدون {0} ایمیل DocType: OAuth Bearer Token,Revoked,لغو @@ -2746,6 +2838,7 @@ DocType: Web Page,Sidebar and Comments,نوار کناری و نظرات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",هنگامی که شما اصلاح سند پس از لغو و ذخیره آن، آن را به یک شماره جدید این است که یک نسخه از شماره قدیمی دریافت کنید. apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",مجاز به ضمیمه {0} سند نیست، لطفا اجازه دهید چاپ برای {0} در تنظیمات چاپ فعال شود +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفاً یک حساب کاربری جدید از طریق تنظیمات> ایمیل> حساب ایمیل ایجاد کنید apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},سند را در {0} مشاهده کنید DocType: Stripe Settings,Publishable Key,کلید انتشار apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,شروع واردات @@ -2758,6 +2851,7 @@ DocType: Currency,Fraction,کسر apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,همگام سازی رویداد با تقویم Google. DocType: LDAP Settings,LDAP First Name Field,LDAP نام درست DocType: Contact,Middle Name,نام پدر +DocType: DocField,Property Depends On,بستگی به املاک دارد DocType: Custom Field,Field Description,درست شرح apps/frappe/frappe/model/naming.py,Name not set via Prompt,نام و نام خانوادگی از طریق فوری تنظیم نشده apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,صندوق دریافت ایمیل @@ -2803,11 +2897,11 @@ DocType: Workflow State,folder-close,پوشه نزدیک apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,گزارش: DocType: Print Settings,Print taxes with zero amount,مالیات را با مقدار صفر چاپ کنید apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} مجاز به تغییر نام نمی باشد +DocType: Server Script,Before Insert,قبل از درج DocType: Custom Script,Custom Script,سفارشی اسکریپت DocType: Address,Address Line 2,خط 2 آدرس DocType: Address,Reference,ارجاع apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,اختصاص یافته به -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفاً حساب پیش فرض پست الکترونیکی را از تنظیم> ایمیل> حساب ایمیل تنظیم کنید DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,جزئیات نقشه برداری مهاجرت DocType: Data Import,Action,اقدام DocType: GSuite Settings,Script URL,URL اسکریپت @@ -2833,11 +2927,13 @@ DocType: User,Api Access,دسترسی به Api DocType: DocField,In List View,در فهرست نمایش DocType: Email Account,Use TLS,استفاده از TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,ورود یا رمز ورود نامعتبر +DocType: Scheduled Job Type,Weekly Long,طولانی هفتگی apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,دانلود الگو apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,اضافه کردن سفارشی جاوا اسکریپت برای فرم. ,Role Permissions Manager,مدیر دسترسی نقش apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,نام جدید فرمت چاپ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,نوار کناری را تغییر دهید +DocType: Server Script,After Save (Submitted Document),پس از ذخیره (سند ارائه شده) DocType: Data Migration Run,Pull Insert,وارد کردن DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",حداکثر امتیاز مجاز بعد از ضرب امتیاز با مقدار ضرب (توجه: بدون محدودیت این قسمت را خالی بگذارید یا 0 را تنظیم کنید) @@ -2855,6 +2951,7 @@ DocType: User Permission,User Permission,مجوز کاربر apps/frappe/frappe/templates/includes/blog/blog.html,Blog,وبلاگ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP نصب نشده است apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,دانلود با داده +DocType: Server Script,Before Cancel,قبل از لغو DocType: Workflow State,hand-right,دست راست DocType: Website Settings,Subdomain,زیر دامنه DocType: S3 Backup Settings,Region,منطقه @@ -2899,12 +2996,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,رمز عبور DocType: S3 Backup Settings,us-east-1,ما-شرق-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},پست های {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",به ستون فرمت، به برچسب ستون در پرس و جو. +DocType: Onboarding Slide,Slide Fields,زمینه های اسلاید DocType: Has Domain,Has Domain,دارای دامنه DocType: User,Allowed In Mentions,مجاز در ذکر apps/frappe/frappe/www/login.html,Don't have an account? Sign up,هنوز حساب کاربری ندارید؟ ثبت نام apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,فیلد ID حذف نمی شود apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: آیا می توانم تنظیم نشده اختصاص اصلاح اگر Submittable نمی DocType: Address,Bihar,بیهار +DocType: Notification Settings,Subscribed Documents,اسناد مشترک apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,تنظیمات کاربر DocType: Report,Reference Report,گزارش مرجع DocType: Activity Log,Link DocType,DOCTYPE لینک @@ -2922,6 +3021,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,دسترسی به تق apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,صفحه مورد نظر شما به دنبال از دست رفته است. این می تواند دلیل آن است که نقل مکان کرد و یا یک خطای تایپی در لینک وجود دارد. apps/frappe/frappe/www/404.html,Error Code: {0},کد خطا: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",توضیحات برای لیست صفحه، در متن ساده، تنها یک زن و شوهر از خطوط. (حداکثر 140 حرف) +DocType: Server Script,DocType Event,رویداد DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} فیلدهای اجباری هستند DocType: Workflow,Allow Self Approval,اجازه تصویب خود را DocType: Event,Event Category,دسته رویداد @@ -2938,6 +3038,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,اسم شما apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,موفقیت اتصال DocType: DocType,InnoDB,سازی InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,یک اسلاید در حال حرکت از نوع اسلاید ادامه همچنان موجود است. DocType: DocType,Default Sort Field,زمینه مرتب سازی پیش فرض DocType: File,Is Folder,است پوشه DocType: Document Follow,DocType,DOCTYPE @@ -2974,7 +3075,9 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,مقادیر تغییر DocType: Workflow State,arrow-up,فلش کردن DocType: Dynamic Link,Link Document Type,نوع سند پیوند +DocType: Server Script,Server Script,اسکریپت سرور DocType: OAuth Bearer Token,Expires In,منقضی می شود در +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",مقدار دفعاتی که می خواهید مجموعه فیلدها را تکرار کنید (به عنوان مثال: اگر می خواهید 3 مشتری در اسلایدها داشته باشید ، این قسمت را روی 3 تنظیم کنید. فقط اولین مجموعه زمینه در اسلاید اجباری نشان داده شده است) DocType: DocField,Allow on Submit,اجازه می دهد در ارسال DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,نوع استثنا @@ -2984,6 +3087,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,سربرگ ها apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,رویدادهای نزدیک apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,لطفا ارزش برای برنامه کلید دسترسی و برنامه راز های کلیدی را وارد کنید +DocType: Email Account,Append Emails to Sent Folder,ایمیل را به پوشه ارسال شده اضافه کنید DocType: Web Form,Accept Payment,پذیرش پرداخت apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,مورد لیست را انتخاب کنید apps/frappe/frappe/config/core.py,A log of request errors,ورود به سیستم از خطاهای درخواست @@ -3002,7 +3106,7 @@ DocType: Translation,Contributed,مشارکت کرد apps/frappe/frappe/config/customization.py,Form Customization,سفارشی سازی فرم apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,هیچ جلسه فعال DocType: Web Form,Route to Success Link,مسیر پیوند موفق -DocType: Top Bar Item,Right,راست +DocType: Onboarding Slide Field,Right,راست apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,هیچ رویدادی در آینده DocType: User,User Type,نوع کاربر DocType: Prepared Report,Ref Report DocType,Ref Ref DocType گزارش @@ -3019,6 +3123,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,لطفا دوب apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL باید با "http: //" یا "https: //" شروع شود apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,انتخاب 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,این قابل بازگشت نیست DocType: Workflow State,Edit,ویرایش DocType: Website Settings,Chat Operators,اپراتورهای چت DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3030,14 +3135,13 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,تغییرات ذخیره نشدهای در این فرم. لطفا قبل از ادامه ذخیره کنید. DocType: Address,Telangana,تلنگانا apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,به طور پیش فرض برای {0} باید گزینه باشد -DocType: Tag Doc Category,Tag Doc Category,برچسب توضیحات رده apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,گزارش با بیش از 10 ستون در حالت Landscape بهتر به نظر می رسد. DocType: Milestone,Milestone,نقطه عطف DocType: User,User Image,کاربر تصویر apps/frappe/frappe/email/queue.py,Emails are muted,ایمیل خاموش می apps/frappe/frappe/config/integrations.py,Google Services,خدمات Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,کلیدهای Ctrl + تا -apps/frappe/frappe/utils/data.py,1 weeks ago,1 هفته پیش +DocType: Onboarding Slide,Slide Description,توضیحات اسلاید DocType: Communication,Error,خطا apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,لطفا ابتدا پیام را راه اندازی کنید DocType: Auto Repeat,End Date,تاریخ پایان @@ -3058,10 +3162,12 @@ DocType: Footer Item,Group Label,برچسب گروه DocType: Kanban Board,Kanban Board,Kanban و انجمن apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,مخاطبین Google پیکربندی شده است. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 رکورد صادر می شود +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,هیچ حساب ایمیل مرتبط با کاربر نیست. لطفاً یک حساب کاربری در زیر کاربر> صندوق پست الکترونیکی اضافه کنید. DocType: DocField,Report Hide,گزارش مخفی apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},نمای درختی برای در دسترس نیست {0} DocType: DocType,Restrict To Domain,محدود به DOMAIN DocType: Domain,Domain,دامنه +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL پرونده نامعتبر است. لطفا با مدیر سیستم تماس بگیرید. DocType: Custom Field,Label Help,راهنما برچسب DocType: Workflow State,star-empty,ستاره خالی apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,تاریخ اغلب آسان به حدس زدن هستند. @@ -3085,6 +3191,7 @@ DocType: Workflow State,hand-left,دست چپ DocType: Data Import,If you are updating/overwriting already created records.,اگر شما به روزرسانی / رونویسی ثبت قبلا ایجاد شده است. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,جهانی است DocType: Email Account,Use SSL,استفاده از SSL +DocType: Webhook,HOOK-.####,قلاب-.#### DocType: Workflow State,play-circle,بازی دایره apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,سند را نمی توان به درستی تعیین کرد apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",بیان "depend_on" نامعتبر است @@ -3101,6 +3208,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,آخرین تجدید apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,برای نوع سند DocType: Workflow State,arrow-right,فلش سمت راست +DocType: Server Script,API Method,روش API DocType: Workflow State,Workflow state represents the current state of a document.,وضعیت گردش کار نشان دهنده وضعیت جاری یک سند است. DocType: Letter Head,Letter Head Based On,نامه سر مبتنی بر apps/frappe/frappe/utils/oauth.py,Token is missing,رمز گم شده است @@ -3136,6 +3244,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,مورد جمع و جور چاپ DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,تغییر مسیر URL +DocType: Onboarding Slide Field,Placeholder,مکان نگهدار DocType: SMS Settings,Enter url parameter for receiver nos,پارامتر آدرس را وارد کنید برای گیرنده NOS DocType: Chat Profile,Online,آنلاین DocType: Email Account,Always use Account's Name as Sender's Name,همیشه از نام حساب به عنوان نام فرستنده استفاده کنید @@ -3145,7 +3254,6 @@ DocType: Workflow State,Home,خانه DocType: OAuth Provider Settings,Auto,خودکار DocType: System Settings,User can login using Email id or User Name,کاربر می تواند با استفاده از شناسه ایمیل یا نام کاربری وارد سیستم شوید DocType: Workflow State,question-sign,پرسش علامت -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} غیرفعال است apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",فیلد "route" برای مشاهده وب سایت اجباری است apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},درج ستون قبل از {0} DocType: Energy Point Rule,The user from this field will be rewarded points,کاربر از این زمینه امتیازات دریافت می کند @@ -3170,6 +3278,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,اگر مالک DocType: Data Migration Mapping,Push,فشار دادن apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,فایلها را اینجا رها کنید DocType: OAuth Authorization Code,Expiration time,زمان انقضا +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,اسناد را باز کنید DocType: Web Page,Website Sidebar,نوار وب سایت DocType: Web Form,Show Sidebar,نمایش نوار کناری apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,شما باید برای دسترسی به این {0}به سیستم وارد شوید @@ -3206,6 +3315,7 @@ DocType: Data Migration Run,Push Insert,درج قرار دادن apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,گره گروه DocType: Auto Repeat,Notification,اطلاع DocType: Contact Phone,Contact Phone,تماس با تلفن +apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} قدردانی {1} DocType: Milestone,Document,سند apps/frappe/frappe/core/doctype/doctype/doctype.py,Series {0} already used in {1},سری {0} در حال حاضر در مورد استفاده {1} apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,پشتیبانی نشده فرمت فایل @@ -3219,6 +3329,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,چاپ فرمت apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,نمایشگر شبکه را تغییر دهید apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,به رکورد بعدی بروید +DocType: System Settings,Time Format,قالب زمان apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,اعتبار دروازه پرداخت نامعتبر DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,این فایل قالب است که فقط با ردیف دارای خطا تولید می شود. شما باید از این فایل برای اصلاح و وارد کردن استفاده کنید. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,اجازه انتخاب در نوع مستندات و نقش @@ -3261,12 +3372,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,پاسخ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),صفحه در میز (دارندگان محل) DocType: DocField,Collapsible Depends On,پیش ساخته بستگی به DocType: Print Style,Print Style Name,نام سبک چاپ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,برای ساخت نمودار داشبورد ، گروه به فیلد مورد نیاز است DocType: Print Settings,Allow page break inside tables,اجازه قطع صفحه در داخل جداول DocType: Email Account,SMTP Server,SMTP سرور DocType: Print Format,Print Format Help,چاپ فرمت راهنما apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} اتاق باید حداقل یک کاربر داشته باشد. DocType: DocType,Beta,بتا DocType: Dashboard Chart,Count,شمردن +DocType: Dashboard Chart,Group By Type,گروه براساس نوع apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ترمیم {0} {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",اگر شما در حال به روز رسانی، لطفا انتخاب کنید "رونویسی" ردیف دیگری موجود پاک نخواهد شد. DocType: DocField,Translatable,ترجمه شده @@ -3275,14 +3388,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,مشخص DocType: Web Form,Web Form,فرم وب apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},تاریخ {0} باید در قالب باشد: {1} DocType: About Us Settings,Org History Heading,سازمان تاریخچه شماره +DocType: Scheduled Job Type,Scheduled Job Type,نوع کار زمان بندی شده DocType: Print Settings,Allow Print for Cancelled,اجازه چاپ برای لغو DocType: Communication,Integrations can use this field to set email delivery status,یکپارچگی می توانید این زمینه برای تنظیم وضعیت تحویل ایمیل استفاده +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,شما اجازه لغو کلیه اسناد مرتبط را ندارید. DocType: Web Form,Web Page Link Text,لینک وب صفحه متن DocType: Page,System Page,سیستم صفحه apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",تنظیم فرمت پیش فرض، اندازه صفحه، سبک چاپ و غیره apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,خروج apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},سفارشی سازی برای {0} به:
{1} DocType: Website Settings,Include Search in Top Bar,شامل جستجو در بالا نوار +DocType: Scheduled Job Type,Daily Long,روزانه طولانی DocType: GSuite Settings,Allow GSuite access,اجازه دسترسی GSuite DocType: DocType,DESC,نزولی DocType: DocType,Naming,نامگذاری @@ -3370,6 +3486,7 @@ DocType: Notification,Send days before or after the reference date,ارسال ر DocType: User,Allow user to login only after this hour (0-24),اجازه می دهد تا کاربر را به تنها پس از این ساعت ورود (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",یک به یک ، به ترتیب اختصاص دهید DocType: Integration Request,Subscription Notification,اعلان اشتراک +DocType: Customize Form Field, Allow in Quick Entry ,اجازه ورود سریع apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,یا پیوست کنید DocType: Auto Repeat,Start Date,تاریخ شروع apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,ارزش @@ -3384,6 +3501,7 @@ DocType: Google Drive,Backup Folder ID,شناسه پوشه پشتیبان apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,نه در حالت برنامه نویس! تنظیم در site_config.json یا DOCTYPE "سفارشی". DocType: Workflow State,globe,کره DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,فیلم DocType: Assignment Rule,Priority,اولویت DocType: Email Queue,Unsubscribe Param,لغو اشتراک پرم DocType: DocType,Hide Sidebar and Menu,نوار کناری و فهرست را مخفی کنید @@ -3395,6 +3513,7 @@ DocType: DocType,Allow Import (via Data Import Tool),اجازه واردات (ا apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,SR DocType: DocField,Float,شناور DocType: Print Settings,Page Settings,تنظیمات صفحه +DocType: Notification Settings,Notification Settings,تنظیمات اعلان apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,صرفه جویی در... apps/frappe/frappe/www/update-password.html,Invalid Password,رمز عبور نامعتبر DocType: Contact,Purchase Master Manager,خرید استاد مدیر @@ -3407,6 +3526,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,جی میل DocType: Letter Head,Letter Head Image,تصویر نامه سر DocType: Address,Party GSTIN,حزب GSTIN +DocType: Scheduled Job Type,Cron Format,قالب کرون apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} گزارش DocType: SMS Settings,Use POST,از POST استفاده کنید DocType: Communication,SMS,پیامک @@ -3450,18 +3570,20 @@ DocType: Workflow,Allow approval for creator of the document,برای تایید apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ذخیره گزارش DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,اقدام سرور apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,مدیر دیده {0} در {1} از طریق آدرس IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,زمینه والدین باید یک نام فیلد معتبر باشد apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,هنگام اصلاح اشتراک، شکست خورد DocType: LDAP Settings,LDAP Group Field,زمینه گروهی LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,اعلان سند مشترک apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,برابر apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,فرمت CSV نامعتبر -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطایی در اتصال به برنامه سینی QZ Tray ...

برای استفاده از ویژگی چاپ خام ، باید برنامه QT Tray را نصب و اجرا کنید.

برای بارگیری و نصب QZ Tray اینجا کلیک کنید .
برای کسب اطلاعات بیشتر در مورد چاپ خام اینجا کلیک کنید ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,تعداد مجموعه ای از پشتیبان گیری DocType: DocField,Do not allow user to change after set the first time,اجازه نمی دهد کاربر به تغییر پس از تنظیم اولین بار apps/frappe/frappe/utils/data.py,1 year ago,1 سال پیش +DocType: DocType,Links Section,بخش پیوندها apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",مشاهده همه رویدادهای چاپ ، بارگیری و صادرات apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ماه DocType: Contact,Contact,تماس @@ -3487,15 +3609,17 @@ DocType: Auto Email Report,Dynamic Report Filters,فیلترهای گزارش پ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,ایمیل جدید DocType: Custom DocPerm,Export,صادرات +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},با موفقیت به روز شد {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,سینی QZ انجام نشد: DocType: Dropbox Settings,Dropbox Settings,تنظیمات Dropbox به DocType: About Us Settings,More content for the bottom of the page.,محتوای بیشتر برای پایین صفحه. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,این سند برگردانده شده است apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,پشتیبان گیری از Google Drive با موفقیت انجام شد. +DocType: Webhook,Naming Series,نامگذاری سری DocType: Workflow,DocType on which this Workflow is applicable.,DocType که این گردش کار برای آن مناسب است DocType: User,Enabled,فعال apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,اجرای کامل انجام نشد -DocType: Tag Category,Category Name,نام بخش +DocType: Blog Category,Category Name,نام بخش apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,والدین برای دریافت داده های جدول کودک لازم است apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,مشترکین واردات DocType: Print Settings,PDF Settings,تنظیمات PDF @@ -3531,6 +3655,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,تقویم apps/frappe/frappe/client.py,No document found for given filters,هیچ سند پیدا شده برای فیلتر های داده apps/frappe/frappe/config/website.py,A user who posts blogs.,کاربری که وبلاگ ها را ارسال می کند. +DocType: DocType Action,DocType Action,اقدام DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",یکی دیگر از {0} با نام {1} وجود دارد، نام دیگری را انتخاب کنید DocType: DocType,Custom?,سفارشی؟ DocType: Website Settings,Website Theme Image,وب سایت تم تصویر @@ -3540,6 +3665,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},قادر apps/frappe/frappe/config/integrations.py,Backup,پشتیبان گیری apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,برای ایجاد نمودار داشبورد نوع سند لازم است DocType: DocField,Read Only,فقط خواندنی +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,سفارش ریش تراپ امکان پذیر نیست apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,عضویت در خبرنامه جدید DocType: Energy Point Log,Energy Point Log,ورود به سیستم نقطه انرژی DocType: Print Settings,Send Print as PDF,ارسال چاپ به عنوان PDF @@ -3565,15 +3691,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ت apps/frappe/frappe/www/login.html,Or login with,و یا برای ورود با DocType: Error Snapshot,Locals,مردم محلی apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ارتباط از طریق {0} در {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} شما در یک نظر در ذکر {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,انتخاب گروه توسط ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,به عنوان مثال (55 + 434) / 4 = OR Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} مورد نیاز است DocType: Integration Request,Integration Type,نوع ادغام DocType: Newsletter,Send Attachements,ارسال Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,هیچ فیلتر یافت نشد apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ادغام مخاطبین Google. DocType: Transaction Log,Transaction Log,ورود تراکنش DocType: Contact Us Settings,City,شهرستان +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,کارت های همه کاربران را مخفی کنید DocType: DocField,Perm Level,سطح پرم apps/frappe/frappe/www/confirm_workflow_action.html,View document,مشاهده سند apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,حوادث در تقویم اقتصادی امروز، @@ -3583,6 +3710,7 @@ DocType: Blog Category,Blogger,وبلاگ نویس DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline",در صورت فعال بودن ، تغییرات در سند ردیابی و در جدول زمانی نشان داده می شوند apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},«در جهانی جستجو برای نوع مجاز نیست {0} در ردیف {1} DocType: Energy Point Log,Appreciation,قدردانی +DocType: Dashboard Chart,Number of Groups,تعداد گروه ها apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,نمایش فهرست DocType: Workflow,Don't Override Status,هنوز وضعیت باطل نیست apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,عبارت جستجو @@ -3622,7 +3750,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,ا DocType: S3 Backup Settings,cn-northwest-1,cn-Northwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,محدود کردن تعداد پشتیبان DB DocType: Custom DocPerm,Level,سطح -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 روز گذشته DocType: Custom DocPerm,Report,گزارش apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,مقدار باید بزرگتر از 0 باشد. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,به سینی QZ وصل شد! @@ -3639,6 +3766,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,جدول کودک را انتخاب کنید apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,اقدام اولیه ماشه apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,تغییر +DocType: Social Login Key,User ID Property,ویژگی شناسه کاربر DocType: Email Domain,domain name,نام دامنه DocType: Contact Email,Contact Email,تماس با ایمیل DocType: Kanban Board Column,Order,سفارش @@ -3660,7 +3788,7 @@ DocType: Contact,Last Name,نام خانوادگی DocType: Event,Private,خصوصی apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,بدون هشدار برای امروز DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ارسال پیوست های ایمیل چاپ به عنوان PDF (توصیه شده) -DocType: Web Page,Left,چپ +DocType: Onboarding Slide Field,Left,چپ DocType: Event,All Day,تمام روز apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,به نظر می رسد مانند چیزی اشتباه است با پیکربندی دروازه پرداخت این سایت است. بدون پرداخت شده است. DocType: GCalendar Settings,State,دولت @@ -3691,7 +3819,6 @@ DocType: Workflow State,User,کاربر DocType: Website Settings,"Show title in browser window as ""Prefix - title""",نمایش عنوان در پنجره مرورگر به عنوان "پیشوند - عنوان" DocType: Payment Gateway,Gateway Settings,تنظیمات دروازه apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,متن در نوع سند -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,تست اجرا apps/frappe/frappe/handler.py,Logged Out,از سیستم خارج apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,بیش... DocType: System Settings,User can login using Email id or Mobile number,کاربر می تواند با استفاده از شناسه ورود ایمیل و یا شماره تلفن همراه @@ -3706,6 +3833,7 @@ DocType: System Settings,Number Format,ساختار شماره apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,خلاصه DocType: Event,Event Participants,شرکت کنندگان رویداد DocType: Auto Repeat,Frequency,فرکانس +DocType: Onboarding Slide,Slide Order,سفارش اسلاید DocType: Custom Field,Insert After,درج پس از DocType: Event,Sync with Google Calendar,همگام سازی با تقویم Google DocType: Access Log,Report Name,گزارش نام @@ -3733,6 +3861,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},عرض حداکثر برای نوع ارز را 100px در ردیف {0} apps/frappe/frappe/config/website.py,Content web page.,صفحه وب محتوا. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,اضافه کردن یک نقش جدید +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,بازدید از صفحه وب +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,تکلیف جدید DocType: Google Contacts,Last Sync On,آخرین همگام سازی در DocType: Deleted Document,Deleted Document,سند حذف apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,وای! چیزی را اشتباه رفت @@ -3742,7 +3872,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,چشم انداز apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,پسوند اسکریپت سمت کلاینت در جاوا اسکریپت DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,رکوردها برای نوع doctypes زیر فیلتر می شوند -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,زمانبند غیرفعال +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,زمانبند غیرفعال DocType: Blog Settings,Blog Introduction,وبلاگ مقدمه DocType: Global Search Settings,Search Priorities,اولویت های جستجو DocType: Address,Office,دفتر @@ -3752,12 +3882,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,پیوند نمودار نم DocType: User,Email Settings,تنظیمات ایمیل apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,رها کن اینجا DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",در صورت فعال بودن ، کاربر می تواند از هر آدرس IP با استفاده از Two Factor Auth وارد سیستم شود ، این همچنین برای همه کاربران در تنظیمات سیستم قابل تنظیم است. -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,تنظیمات چاپگر ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,لطفا رمز عبور خود را به ادامه را وارد کنید apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,من apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} نه دولت معتبر apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,به کلیه انواع اسناد اعمال شود -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,به روز رسانی نقطه انرژی +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,به روز رسانی نقطه انرژی +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),اگر غیرفعال برای (روزها) کارها را فقط روزانه انجام دهید apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',لطفا روش پرداخت دیگری را انتخاب کنید. پی پال انجام تراکنش در ارز را پشتیبانی نمی کند '{0}' DocType: Chat Message,Room Type,نوع اتاق DocType: Data Import Beta,Import Log Preview,پیش نمایش ورود به سیستم واردات @@ -3766,6 +3896,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-دایره DocType: LDAP Settings,LDAP User Creation and Mapping,ایجاد و نقشه برداری کاربر LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',شما می توانید همه چیز را با پرسیدن 'پیدا کردن پرتقال در مشتریان پیدا +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,رویدادهای امروز apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,با عرض پوزش! کاربر باید دسترسی کامل به رکورد خود را دارند. ,Usage Info,اطلاعات استفاده apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,میانبرهای صفحه کلید را نمایش دهید @@ -3781,6 +3912,7 @@ DocType: Communication,Communication Type,نوع ارتباطات DocType: DocField,Unique,منحصر به فرد apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,موفقیت جزئی DocType: Email Account,Service,سرویس +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر DocType: File,File Name,نام پرونده apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),آیا پیدا کند {0} برای {0} ({1}) apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that",اوه، شما امکان پذیر نیست می دانم که @@ -3793,6 +3925,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ثبت DocType: GCalendar Settings,Enable,قادر ساختن DocType: Google Maps Settings,Home Address,آدرس خانه apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),شما فقط می توانید تا 5000 پرونده در یک آپلود کنید. (ممکن است در برخی از موارد کمتر باشد) +DocType: Report,"output in the form of `data = [columns, result]`",خروجی به شکل 'data = [ستون ، نتیجه] ` apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,انواع اسناد قابل اجرا apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,برای تکالیف کاربر قوانینی تنظیم کنید. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},مجوز ناکافی برای {0} @@ -3808,7 +3941,6 @@ DocType: Communication,To and CC,به و CC DocType: SMS Settings,Static Parameters,پارامترهای استاتیک DocType: Chat Message,Room,اتاق apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},به روز شده برای {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,کارهای پس زمینه اجرا نمی شوند. لطفا با سرپرست تماس بگیرید DocType: Portal Settings,Custom Menu Items,آیتم های منو سفارشی apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,تمام تصاویر پیوست شده به نمایش به صورت اسلاید وب سایت باید عمومی باشد DocType: Workflow State,chevron-right,شورون سمت راست @@ -3820,9 +3952,11 @@ DocType: Website Settings,Brand HTML,نام تجاری HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,از نسخه پشتیبان تهیه کنید DocType: DocType,Allow Auto Repeat,مجاز به تکرار خودکار apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,هیچ مقداری برای نشان دادن وجود ندارد +DocType: DocType,URL for documentation or help,URL برای اسناد یا راهنما DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,قالب ایمیل apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,هر دو کاربری و رمز عبور مورد نیاز +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,اجازه دهید\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,لطفا صفحه را بازخوانی برای دریافت آخرین سند است. DocType: User,Security Settings,تنظیمات امنیتی apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,اضافه کردن ستون @@ -3831,6 +3965,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},گزارش صادرات: {0} DocType: Auto Email Report,Filter Meta,فیلتر متا DocType: Web Page,Set Meta Tags,برچسب های متا را تنظیم کنید +DocType: Email Account,Use SSL for Outgoing,از SSL برای خروجی استفاده کنید 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: S3 Backup Settings,Backup Limit,محدودیت پشتیبان گیری DocType: Dashboard Chart,Line,خط @@ -3862,4 +3997,3 @@ DocType: DocField,Ignore User Permissions,نادیده گرفتن مجوز کا apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,با موفقیت ذخیره شد apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,لطفا با مدیر خود را بپرسید به منظور بررسی خود را ثبت نام DocType: Domain Settings,Active Domains,دامنه فعال -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,نمایش ورود diff --git a/frappe/translations/fi.csv b/frappe/translations/fi.csv index b729d89678..3914dd06c6 100644 --- a/frappe/translations/fi.csv +++ b/frappe/translations/fi.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Valitse Määrä Field. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Ladataan tuontitiedostoa ... DocType: Assignment Rule,Last User,Viimeinen käyttäjä -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Uusi tehtävä, {0}, nimetty sinulle {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Istunnon oletukset tallennettu apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Lataa tiedosto uudelleen DocType: Email Queue,Email Queue records.,Sähköposti Jono kirjaa. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} puu DocType: User,User Emails,Käyttäjä Sähköpostit DocType: User,Username,Käyttäjätunnus apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Tuo Zip +DocType: Scheduled Job Type,Create Log,Luo loki apps/frappe/frappe/model/base_document.py,Value too big,Arvo liian suuri DocType: DocField,DocField,DocKenttä DocType: GSuite Settings,Run Script Test,Run Script Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Kuukausi DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,aktivoi saapuva apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Vaara -DocType: Address,Email Address,Sähköpostiosoite +apps/frappe/frappe/www/login.py,Email Address,Sähköpostiosoite DocType: Workflow State,th-large,th-iso DocType: Communication,Unread Notification Sent,Lukematon Ilmoitus lähetetty apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,"vienti kielletty, tarvitset {0} rooli vientiin" @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Peru DocType: DocType,Is Published Field,Julkaistaan Field DocType: GCalendar Settings,GCalendar Settings,GCalendar-asetukset DocType: Email Group,Email Group,Sähköposti Group +apps/frappe/frappe/__init__.py,Only for {},Vain {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google-kalenteri - Tapahtumaa {0} ei voitu poistaa Google-kalenterista, virhekoodi {1}." DocType: Event,Pulled from Google Calendar,Poistettu Google-kalenterista DocType: Note,Seen By,Nähnyt apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Lisää useita -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Saait joitain energiapisteitä apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ei kelvollinen käyttäjäkuva. DocType: Energy Point Log,Reverted,Palautettu DocType: Success Action,First Success Message,Ensimmäinen menestysviesti @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ei niinkuin apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},virheellinen arvo : {0} täytyy olla {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","muuta kentän ominaisuuksia (piilota, vain luku, oikeus jne)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,arvostaa +DocType: Notification Settings,Document Share,Asiakirjan jakaminen DocType: Workflow State,lock,lukko apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Yhteystiedot sivuston asetukset apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ylläpitäjä kirjautunut @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Jos tämä on käytössä, asiakirja merkitään nähdyksi, kun käyttäjä avaa sen ensimmäisen kerran" DocType: Auto Repeat,Repeat on Day,Toista päivällä DocType: DocField,Color,väri +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Merkitse kaikki luetuksi DocType: Data Migration Run,Log,Loki DocType: Workflow State,indent-right,luetelmakohta-oikeus DocType: Has Role,Has Role,on rooli @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Näytä jäljitys DocType: DocType,Default Print Format,oletus tulostusmuoto DocType: Workflow State,Tags,Tagit +DocType: Onboarding Slide,Slide Type,Diatyyppi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ei mitään: työketjun loppu apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} kenttää ei voi asettaa ainutlaatuiseksi {1}, sillä ei-ainutlaatuisia arvoja on olemassa" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentin tyypit @@ -135,7 +138,6 @@ DocType: Language,Guest,vieras DocType: DocType,Title Field,Otsikkokenttä DocType: Error Log,Error Log,error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Virheellinen URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Viimeiset 7 päivää apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Toistot kuten "abcabcabc" on vain hieman vaikeampi arvata kuin "abc" DocType: Notification,Channel,kanava apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",vaihda järjestelmänvalvojan salasana mikäli luulet tämän olevan oikeuttamaton @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,asiakas apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Valitse sarake apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Tämä lomake on muutettu sen jälkeen, kun olet ladannut sen" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Ilmoitusloki DocType: System Settings,"If not set, the currency precision will depend on number format","Jos ei ole asetettu, valuutta tarkkuus riippuu lukumuotoa" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Avaa mahtava palkki apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Näyttää siltä, että palvelimen raidakokoonpano on ongelma. Vahingossa summa palautetaan tilillesi." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,up apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Lähetä DocType: Workflow Action Master,Workflow Action Name,Työketjun toiminnon nimi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,tietuetyyppiä ei voi yhdistää -DocType: Web Form Field,Fieldtype,Kenttätyyppi +DocType: Onboarding Slide Field,Fieldtype,Kenttätyyppi apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ei zip-tiedosto DocType: Global Search DocType,Global Search DocType,Globaali haku DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,sähköposti lähetetty? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Vaihda kaavioita apps/frappe/frappe/desk/form/save.py,Did not cancel,ei ole peruutettu DocType: Social Login Key,Client Information,Asiakastiedot +DocType: Energy Point Rule,Apply this rule only once per document,Käytä tätä sääntöä vain kerran asiakirjaa kohden DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Vain luku riippuu apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Kirjautunut sisään Vieraiden tai Ylläpitäjä DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Tiedostonhallinta @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Syy 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Ei toimintaa +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ei toimintaa apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Kolmannen osapuolen sovellukset apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Ei tapahtumia tänään apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Et voi antaa arvostelupisteitä itsellesi apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType: n on oltava Submittable valitulle Doc-tapahtumalle DocType: Workflow State,circle-arrow-up,kierrä-nuoli-ylös @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ei sallittu {0}: {1}. Rajoitettu kenttä: {2} 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,You are not allowed to delete a standard Website Theme,Verkkosivuston perusteemaa ei voi poistaa +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Luo ensimmäinen {0} DocType: Data Import,Log Details,Lokitiedot DocType: Workflow Transition,Example,esimerkki DocType: Webhook Header,Webhook Header,Webhook Header @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat-tausta apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Merkitse luetuksi apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Päivitys {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,"Inboarding Slide {0}, jolla on sama diajärjestys, on jo olemassa" apps/frappe/frappe/core/doctype/report/report.js,Disable Report,poista raportti käytöstä DocType: Translation,Contributed Translation Doctype Name,Osallistettu käännösdoktyypin nimi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asennus> Mukauta lomaketta DocType: PayPal Settings,Redirect To,uudelleenohjata DocType: Data Migration Mapping,Pull,Vedä DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},formaatti JavaScript: frappe.query_reports ['raportin_nimi'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,sisäinen tietue asiakirjoj DocType: Energy Point Settings,Review Levels,Tarkista tasot DocType: Workflow State,Comment,Kommentti DocType: Data Migration Plan,Postprocess Method,Jälkiprosessimenetelmä +DocType: DocType Action,Action Type,Toiminnan tyyppi apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Ota valokuva DocType: Assignment Rule,Round Robin,Pyöreä Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",Vahvistetun dokumentin muokkaus onnistuu ensin perumalla dokumentti ja sitten korjaamalla se. @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Tallenna nimellä DocType: Comment,Seen,Nähty apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Näytä enemmän lisätietoja +DocType: Server Script,Before Submit,Ennen lähettämistä 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,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,Archive,Archive @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox pääsy tunnus apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Virheellinen kentänimi {0} mukautetun komentosarjan add_fetch-kokoonpanossa apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Valitse Google-yhteystiedot, joihin yhteyshenkilö synkronoidaan." DocType: Web Page,Main Section (HTML),Pääosa (HTML) +DocType: Scheduled Job Type,Annual,Vuotuinen DocType: Workflow State,headphones,kuulokkeet apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Tarvitaan salasana tai valitse Odotetaan salasana DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,"esim, vastaukset@yourcomany.com, kaikki vastaukset saapuvat tähän postilaatikkoon" DocType: Slack Webhook URL,Slack Webhook URL,Löysä Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Määrittää diojen järjestyksen ohjatussa toiminnossa. Jos diaa ei tule näyttää, prioriteetin tulisi olla 0." DocType: Data Migration Run,Current Mapping,Nykyinen kartoitus apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Kelvollinen sähköposti ja nimi vaaditaan apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Tee kaikki liitteet yksityisiksi @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,siirto säännöt apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Näytetään vain ensimmäiset {0} riviä esikatselussa apps/frappe/frappe/core/doctype/report/report.js,Example:,esimerkki: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,rajoitukset DocType: Workflow,Defines workflow states and rules for a document.,Määrittää dokumentille työketjun vaiheet ja säännöt. DocType: Workflow State,Filter,Suodatin apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Tarkista virheloki lisätietoja: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} kirjautui ulos: {1} DocType: Address,West Bengal,Länsi-Bengal +DocType: Onboarding Slide,Information,Tiedot apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Ei voi asettaa vahvistetuksi ellei ole vahvistettavissa DocType: Transaction Log,Row Index,Rivi-indeksi DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Painikkeen ohje DocType: Kanban Board Column,purple,violetti DocType: About Us Settings,Team Members,Tiimin jäsenet +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Suorittaa ajoitetut työt vain kerran päivässä ei-aktiivisille sivustoille. Oletus 4 päivää, jos asetettu arvoon 0." DocType: Assignment Rule,System Manager,Järjestelmän ylläpitäjä +DocType: Scheduled Job Log,Scheduled Job,Aikataulun mukainen työ DocType: Custom DocPerm,Permissions,Oikeudet apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Hidas Webhooks sisäiseen integraatioon DocType: Dropbox Settings,Allow Dropbox Access,salli Dropbox pääsy @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skann DocType: Email Flag Queue,Email Flag Queue,Sähköposti Flag Jono DocType: Access Log,Columns / Fields,Sarakkeet / kentät apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Tulostusmuotojen tyylitietokuvakkeet +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Aggregate Function -kenttä vaaditaan kojelaudan kaavion luomiseksi apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Voi tunnistaa auki {0}. Kokeilla jotain muuta. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Omat tiedot on vahvistettu apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Käyttäjää {0} ei voi poistaa @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Kentän nimi DocType: Assignment Rule,Assign To Users,Määritä käyttäjille apps/frappe/frappe/public/js/frappe/utils/utils.js,or,tai apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,moduulin nimi... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,jatka +DocType: Onboarding Slide,Continue,jatka apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration on poistettu käytöstä. DocType: Custom Field,Fieldname,Kenttänimi DocType: Workflow State,certificate,todistus apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Tarkistetaan ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Tehtäväsi {0} {1} on poistettu apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Ensimmäinen tietosarake tulee olla tyhjä apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Näytä kaikki versiot apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Näytä kommentti @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Rajoita IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Kojelauta apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Sähköposteja ei voi lähettää tällä hetkellä apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google-kalenteri - Tapahtumaa {0} ei voitu päivittää Google-kalenterissa, virhekoodi {1}." +DocType: Notification Log,Email Content,Sähköpostin sisältö apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,klikkaa tai paina Ctrl-G DocType: Activity Log,Timeline Name,Aikajanan nimi apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Vain yksi {0} voidaan asettaa ensisijaiseksi. DocType: Email Account,e.g. smtp.gmail.com,"esim, smtp.gmail.com" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lisää uusi sääntö DocType: Contact,Sales Master Manager,Perustietojen ylläpitäjä (myynti) +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Sinun on otettava JavaScript käyttöön, jotta sovelluksesi toimii." DocType: User Permission,For Value,Arvoa varten DocType: Event,Google Calendar ID,Google-kalenterin tunnus apps/frappe/frappe/www/complete_signup.html,One Last Step,Viimeinen vaihe @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP keskimmäinen nimikenttä apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Tuodaan {0} {1} DocType: GCalendar Account,Allow GCalendar Access,Salli GCalendar Access apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} on pakollinen kenttä +DocType: DocType,Documentation Link,Dokumentointilinkki apps/frappe/frappe/templates/includes/login/login.js,Login token required,Kirjautumistunnus vaaditaan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Kuukauden sijoitus: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Valitse useita luettelokohteita @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Tiedoston URL DocType: Version,Table HTML,Taulukko HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,lisätä tilaajia +DocType: Notification Log,Energy Point,Energiapiste apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Päivän tapahtumat DocType: Google Calendar,Push to Google Calendar,Siirry Google-kalenteriin DocType: Notification Recipient,Email By Document Field,sähköposti asiakirjakentän mukaan @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Pois DocType: Currency,Fraction Units,jako yksiköt apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} alkaen {1} ja {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Merkitse tehdyksi DocType: Chat Message,Type,tyyppi DocType: Google Settings,OAuth Client ID,OAuth Client ID DocType: Auto Repeat,Subject,Aihe apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Takaisin Työpisteeseen DocType: Web Form,Amount Based On Field,Laskettu määrä Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0}: lla ei ole seurattuja versioita. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Käyttäjä vaaditaan jaettaessa DocType: DocField,Hidden,piilotettu DocType: Web Form,Allow Incomplete Forms,Salli Puutteellinen lomakkeet @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Tarkista vahvistusviesti sähköpostistasi. apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Taitos ei voi olla muodon lopussa DocType: Communication,Bounced,Palautettu +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,of DocType: Deleted Document,Deleted Name,poistettu Name apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,järjestelmä ja verkkosivun käyttäjät DocType: Workflow Document State,Doc Status,Doc Tila @@ -521,6 +546,7 @@ DocType: Language,Language Code,Kielikoodi DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Huomautus: Oletuksena epäonnistuneiden varmuuskopioiden sähköpostit lähetetään. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Lisää suodatin apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},Tekstiviesti lähetetään seuraaviin numeroihin: {0} +DocType: Notification Settings,Assignments,toimeksiannot apps/frappe/frappe/utils/data.py,{0} and {1},{0} ja {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Aloita keskustelu. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Lisää aina ""Luonnos"" otsikko dokumenttien tulostuksiin" @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Nykyinen kartoitus alkaa apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Sähköposti on merkitty roskapostiksi DocType: Comment,Website Manager,Verkkosivuston ylläpitäjä apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Tiedoston lataus irtikytketty. Yritä uudelleen. +DocType: Data Import Beta,Show Failed Logs,Näytä epäonnistuneet lokit apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,käännökset apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Valitsit Luonnos tai mitätöity asiakirjoja apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Asiakirja {0} on asetettu ilmoittamaan {1} {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Dokumentti Jonossa DocType: GSuite Templates,Destination ID,määränpää tunnus DocType: Desktop Icon,List,Lista DocType: Activity Log,Link Name,Linkin nimi +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Sinulla on \ DocType: System Settings,mm/dd/yyyy,pp / kk / vvvv +DocType: Onboarding Slide,Onboarding Slide,Liukukisko apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Edellinen @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,Tummanharmaa apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Onnistunut: {0} on {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Pudota +DocType: Dashboard Chart,Aggregate Function Based On,Aggregoitu toiminta perustuu apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Ole hyvä ja kopioida tämän tehdä muutoksia apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Tallenna painamalla Enter apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF teko epäonnistui rikkoutuneiden kuvalinkkien johdosta @@ -610,7 +640,9 @@ DocType: Notification,Days Before,päivää ennen apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Päivittäisten tapahtumien tulisi päättyä samana päivänä. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Muokata... DocType: Workflow State,volume-down,volyymi-alas +DocType: Onboarding Slide,Help Links,Ohjelinkit apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Tästä IP-osoitteesta pääsy ei ole sallittua +DocType: Notification Settings,Enable Email Notifications,Ota sähköposti-ilmoitukset käyttöön apps/frappe/frappe/desk/reportview.py,No Tags,Ilman tagia DocType: Email Account,Send Notification to,Lähetä ilmoitus DocType: DocField,Collapsible,Kokoontaitettava @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Viimeisin varmuuskopio päällä DocType: Customize Form Field,Customize Form Field,Muokkaa lomakkeen kenttää DocType: Energy Point Rule,For Document Event,Asiakirjatapahtumaan DocType: Website Settings,Chat Room Name,Chat-huoneen nimi +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,ennallaan DocType: OAuth Client,Grant Type,Grant Tyyppi apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Valitse mitkä dokumentit ovat käyttäjän luettavissa DocType: Deleted Document,Hub Sync ID,Hub-synkronointitunnus @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,käy DocType: Auto Repeat,Quarterly,3 kk apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Koko ajan apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Laittoman asiakirjan tila {0} DocType: Email Account,Enable Auto Reply,aktivoi automaattivastaus apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ei Seen @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Viest DocType: Email Account,Notify if unreplied,Ilmoita jos Vastaamattomat apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skannaa QR-koodi ja anna tuloksena oleva koodi näkyviin. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Ota kaltevuudet käyttöön +DocType: Scheduled Job Type,Hourly Long,Tunneittain pitkä DocType: System Settings,Minimum Password Score,Pienin Salasana Pisteet DocType: DocType,Fields,Kentät DocType: System Settings,Your organization name and address for the email footer.,Yrityksen nimi ja osoite sähköpostin alatunnisteeseen asetettavaksi. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Päätauluk apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3-varmuuskopio valmis! apps/frappe/frappe/config/desktop.py,Developer,Kehittäjä apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Luotu +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Ota se käyttöön seuraavan linkin ohjeiden avulla: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} rivi {1} ei voi sisältää sekä URL ja alasidoksia apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Seuraavissa taulukoissa tulisi olla vähintään yksi rivi: {0} DocType: Print Format,Default Print Language,Oletuskieli apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Esivanhemmat apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,kantaa {0} ei voi poistaa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Ei epäonnistuneita lokit apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Ei vielä kommentteja apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Aseta tekstiviesti ennen sen asettamista todentamismenetelmänä SMS-asetusten kautta apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,sekä tietuetyyppi että nimi vaaditaan @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Alatunniste tuotteet apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Valikko DocType: DefaultValue,DefaultValue,oletusarvo DocType: Auto Repeat,Daily,Päivittäinen +DocType: Onboarding Slide,Max Count,Enimmäismäärä apps/frappe/frappe/config/users_and_permissions.py,User Roles,Käyttäjien roolit DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ominaisuusasettaja poikkeuttaa perustietuetyypin tai kentän apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ei voi päivittää: väärä tai vanhentunut linkki @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","tavoite = ""_tyhjä""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,isäntä DocType: Data Import Beta,Import File,Tuo tiedosto +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Mallivirhe apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Sarake {0} on jo olemassa. DocType: ToDo,High,korkeus apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Uusi tapahtuma @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Näytä suodattimessa DocType: Address,Daman and Diu,Daman ja Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekti DocType: Address,Personal,Henkilökohtainen +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Raa'at tulostusasetukset ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Katso lisätietoja kohdasta https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Näytä cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Ota video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Johdantotietoa yhteystietosivustolle DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,peukalo-alas +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Asiakirjojen peruuttaminen DocType: User,Send Notifications for Email threads,Lähetä ilmoituksia sähköpostilankoista apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ei kehittäjätilassa @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Tiedoston v DocType: DocField,In Global Search,Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,luetelmakohta vasemmassa -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Se on riskialtista poistaa tiedoston: {0}. Ota yhteyttä System Manager. DocType: Currency,Currency Name,valuutan nimi apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ei Sähköpostit @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Käyttäjäkenttä DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Työnnä Poista apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} on jo jääneet varten {1} {2} +DocType: Scheduled Job Type,Stopped,pysäytetty apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ei ole poistettu apps/frappe/frappe/desk/like.py,Liked,Tykätty apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Lähetä nyt apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE ei voi olla oletuksena painatusformaattia, käytä Muokkaa Form" +DocType: Server Script,Allow Guest,Salli vieras DocType: Report,Query,Kysely DocType: Customize Form,Sort Order,Lajittelujärjestys apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'Listausnäkymässä' ei voi olla asetettuna rivin {1} tyypillä {0} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Kaksiosaisen todennuksen tapa apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Aseta ensin nimi ja tallenna tietue. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 levyä +DocType: DocType Link,Link Fieldname,Linkki kentän nimi apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Jaettu {0} kanssa apps/frappe/frappe/email/queue.py,Unsubscribe,Lopeta tilaus DocType: View Log,Reference Name,Viite Name apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Vaihda käyttäjä +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Ensimmäinen apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Päivitä käännökset DocType: Error Snapshot,Exception,Poikkeus DocType: Email Account,Use IMAP,Käytä IMAP-menettelyä @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Säännöt jotka määrittelevät työketjun vaiheen muutokset. DocType: File,Folder,Kansio DocType: Website Route Meta,Website Route Meta,Verkkosivun reitti Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Liukukiskokenttä DocType: DocField,Index,indeksi DocType: Email Group,Newsletter Manager,Tiedotteiden ylläpitäjä apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Vaihtoehto 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ase apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Määritä kaaviot DocType: User,Last IP,Viimeinen IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Lisää aihe sähköpostiin -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Sinulle {1} on jaettu uusi dokumentti {0}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} palautti {1} DocType: Email Account,Track Email Status,Seuraa sähköpostin tilaa @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,oletus lähtevä DocType: Workflow State,play,toista apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,klikkaa alla olevaa linkkiä jatkaaksesi rekisteröitymistä ja anna uusi salasana apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,ei ole lisätty +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} sai {1} pistettä {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ei sähköpostitilit sidotut DocType: S3 Backup Settings,eu-west-2,EU-länsi-2 DocType: Contact Us Settings,Contact Us Settings,ota yhteyttä sivuston asetukset @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Haetaan . DocType: Workflow State,text-width,Teksti-leveys apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Tietueen liitteiden maksimiraja on saavutettu! apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Hae tiedostonimen tai laajennuksen perusteella +DocType: Onboarding Slide,Slide Title,Dia otsikko DocType: Notification,View Properties (via Customize Form),Näytä vaihtoehdot (muokkaa lomaketta) kautta apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Napsauta tiedostoa valitaksesi sen. DocType: Note Seen By,Note Seen By,Huomautus nähdä @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Jaa URL DocType: System Settings,Allow Consecutive Login Attempts ,Salli peräkkäiset kirjautumistyöt apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Maksutapahtumassa tapahtui virhe. Ota yhteyttä. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Jos diatyyppi on Luo tai Asetukset, {ref_doctype} .py-tiedostossa tulisi olla 'luoda_onboarding_docs' -menetelmä, joka on pakollinen suoritettavaksi diojen valmistumisen jälkeen." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} päivää sitten DocType: Email Account,Awaiting Password,Odotetaan Salasana DocType: Address,Address Line 1,osoiterivi 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ei jälkeläisiä DocType: Contact,Company Name,Yrityksen nimi DocType: Custom DocPerm,Role,Rooli -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Asetukset... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,selaimeesi apps/frappe/frappe/utils/data.py,Cent,sentti ,Recorder,nauhuri @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Seuraa, jos vastaanottaja on avannut sähköpostisi.
Huomaa: Jos lähetät usealle vastaanottajalle, vaikka 1 vastaanottaja lukee sähköpostin, se katsotaan "Avattu"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,puuttuvat arvot vaaditaan apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Salli Google-yhteystietojen käyttö +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,rajoitetut DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Merkitse lukemattomaksi DocType: Activity Log,Operation,Toiminta @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,salli Print DocType: Communication,Clicked,Napsautetaan apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Älä apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ei lupaa "{0}" {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Asenna oletus sähköpostitili kohdasta Asennus> Sähköposti> Sähköpostitili apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Aikataulun lähettää DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,Tiedoston varmuuskopiointi @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Tietueita ei apps/frappe/frappe/config/customization.py,Add custom forms.,lisää omia lomakkeita/muotoja apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} in {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,Vahvisti tämän dokumentin -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asennus> Käyttäjän oikeudet apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Järjestelmässä on monia ennalta määriteltyjä rooleja, voit lisätä uusia rooleja määritelläksesi tarkempia käyttöoikeuksia" DocType: Communication,CC,CC DocType: Country,Geo,sijainti DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Verkkotunnukset +DocType: Onboarding Slide,Domains,Verkkotunnukset DocType: Blog Category,Blog Category,Artikkelikategoria apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,ei voi kartoittaa sillä seuraava edellytys ei täyty: DocType: Role Permission for Page and Report,Roles HTML,Roolit HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Lauantai DocType: User,Represents a User in the system.,Edustaa Käyttäjä järjestelmässä. DocType: List View Setting,Disable Auto Refresh,Poista automaattinen päivitys käytöstä DocType: Comment,Label,Nimike -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",Tehtävä {0} joka on nimetty sinulle {1} on suljettu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sulje tämä ikkuna DocType: Print Format,Print Format Type,Tulostusmuodon tyyppi DocType: Newsletter,A Lead with this Email Address should exist,Tällä sähköpostiosoitteella pitäisi löytyä myyntivihje (Sales Lead) @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP asetukset (lähtev apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,valitse DocType: Data Export,Filter List,Suodatusluettelo DocType: Data Export,Excel,kunnostautua +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Vastaa Message DocType: Data Migration Mapping,Condition,ehto apps/frappe/frappe/utils/data.py,{0} hours ago,{0} tuntia sitten @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Tietovaraston käyttäjä DocType: Communication,Sent Read Receipt,Lähetetyt Lukukuittaus DocType: Email Queue,Unsubscribe Method,tilaus Menetelmä +DocType: Onboarding Slide,Add More Button,Lisää Lisää-painike DocType: GSuite Templates,Related DocType,Liittyvät DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,muokkaa lisäämällä sisältöä apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Valitse Kielet apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kortin tiedot apps/frappe/frappe/__init__.py,No permission for {0},Ei lupaa {0} DocType: DocType,Advanced,tarkka +DocType: Onboarding Slide,Slide Image Source,Diakuvan lähde apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Viite: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,rouva @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,valvonta DocType: DocType,User Cannot Create,Käyttäjä ei voi luoda apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Onnistunut apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox pääsy on hyväksytty! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Haluatko varmasti yhdistää {0} {1}? DocType: Customize Form,Enter Form Type,Tietueen tyyppi DocType: Google Drive,Authorize Google Drive Access,Valtuuta Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Kanbanin hallituksen nimi puuttuu @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",Sallitaan tietuetyyppi: tietuetyyppi. Ole varovainen! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Mukautetut muodot tulostukseen, sähköpostiin" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summa {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Päivitetty uuteen versioon DocType: Custom Field,Depends On,riippuu DocType: Kanban Board Column,Green,vihreä DocType: Custom DocPerm,Additional Permissions,lisäkäyttöoikeudet @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,sosiaalinen apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google-kalenteri - Kalenteria {0} ei voitu luoda, virhekoodi {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Muokataan riviä DocType: Workflow Action Master,Workflow Action Master,Työketjun toiminnon valvonta +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Poista kaikki DocType: Custom Field,Field Type,Kentän tyyppi apps/frappe/frappe/utils/data.py,only.,vain. DocType: Route History,Route History,Reittihistoria @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Unohtuiko salasana? DocType: System Settings,yyyy-mm-dd,vvvv-kk-pp apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Palvelinvirhe +DocType: Server Script,After Delete,Poistamisen jälkeen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Näytä kaikki aiemmat raportit. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,kirjautumistunnus vaaditaan DocType: Website Slideshow,Website Slideshow,Verkkosivuston Kuvaesitys apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ei tietoja DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","linkki netin kotisivuille, peruslinkit (pääsivu, kirjaudu, tuotteet, blogi, tietoa, yhteystiedot)" +DocType: Server Script,After Submit,Lähettämisen jälkeen apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Todennus epäonnistui yritettäessä noutaa posteja sähköpostitililtä {0}. Palvelimen vastaus: {1} DocType: User,Banner Image,banneri kuva DocType: Custom Field,Custom Field,Mukautettu kenttä @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Jos käyttäjällä on mitään roolia valittuna, käyttäjä tulee "System User". "Järjestelmän Käyttäjä" on työpöydällä" DocType: System Settings,Date and Number Format,Päivämäärän ja numeron muoto apps/frappe/frappe/model/document.py,one of,Yksi -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asennus> Mukauta lomaketta apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Tarkistetaan yksi hetki apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Näytä tagit DocType: DocField,HTML Editor,HTML-editori 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asennus> Käyttäjä +DocType: DocType,Actions,Toiminnot DocType: Workflow State,align-justify,oikea tasaus DocType: User,Middle Name (Optional),Toinen nimi (valinnainen) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ei Sallittu @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ei tuloksia DocType: System Settings,Security,Turvallisuus apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Aikataulutettu lähettämään vastaanottajille {0} apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Leikata +DocType: Server Script,After Save,Tallennuksen jälkeen apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},nimetty uudelleen {0} ja {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} {1} ({2} riveistä lasten kanssa) DocType: Currency,**Currency** Master,**valuutta** valvonta @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Suodatinarvot DocType: Communication,User Tags,Käyttäjän tagit DocType: Data Migration Run,Fail,epäonnistua DocType: Workflow State,download-alt,lataa-alt +DocType: Scheduled Job Type,Last Execution,Viimeinen teloitus DocType: Data Migration Run,Pull Failed,Vedä epäonnistui apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Näytä / piilota kortit DocType: Communication,Feedback Request,Palaute Ehdota apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Tuo tiedot CSV / Excel-tiedostoista. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Seuraavat kentät puuttuvat: +DocType: Notification Log,From User,Käyttäjältä apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Peruuttaminen {0} DocType: Web Page,Main Section,Main § DocType: Page,Icon,ikoni apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Vihje: Symbolien, numeroita ja isoja kirjaimia salasanaa" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Määritä ilmoitukset maininnoista, tehtävistä, energiapisteistä ja muusta." DocType: DocField,Allow in Quick Entry,Salli pikapysähdyksessä apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,pp / kk / vvvv @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Teeman URL-osoite DocType: Customize Form,Sort Field,Lajittelukenttä DocType: Razorpay Settings,Razorpay Settings,Razorpay Asetukset apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,muokkaa suodatinta -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Lisää enemmän DocType: System Settings,Session Expiry Mobile,Istunto vanhenee mobiili apps/frappe/frappe/utils/password.py,Incorrect User or Password,Virheellinen käyttäjä tai salasana apps/frappe/frappe/templates/includes/search_box.html,Search results for,Etsi tuloksia @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energiapisteen sääntö DocType: Communication,Delayed,Myöhässä apps/frappe/frappe/config/settings.py,List of backups available for download,Luettelo ladattavissa olevista varmuuskopioista +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Kokeile uutta tietojen tuontia apps/frappe/frappe/www/login.html,Sign up,Kirjaudu apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rivi {0}: Ei ole mahdollista poistaa käytöstä pakollista vakiokenttiin +DocType: Webhook,Enable Security,Ota suojaus käyttöön apps/frappe/frappe/config/customization.py,Dashboards,mittaristot DocType: Test Runner,Output,ulostulo DocType: Milestone,Track Field,Seuraa kenttää @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Aseta kiinteistön jälkeen Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Lisää kenttiä lomakkeisiin. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Näyttää jotain vikaa tässä sivuston Paypal kokoonpano. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Lisää arvostelu +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} antoi sinulle uuden tehtävän {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Fonttikoko (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Vain tavallisia DocTypes-tyyppejä voidaan mukauttaa mukautetusta lomakkeesta. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portaalivalikon valinta apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Aseta suodattimet DocType: Contact Us Settings,Email ID,sähköpostitunnus DocType: Energy Point Rule,Multiplier Field,Kerroinkenttä +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay-tilausta ei voitu luoda. Ota yhteyttä järjestelmänvalvojaan DocType: Dashboard Chart,Time Interval,Aikaväli DocType: Activity Log,Keep track of all update feeds,Pidä kaikki päivityssyötteet +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} jakoi kanssasi asiakirjan {1} {2} 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" @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Näppäin DocType: Address,Contacts,Yhteystiedot DocType: System Settings,Setup Complete,Määritys valmis apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,raportti kaikista asiakirjan jakamisista +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Tuontimallin tulee olla tyyppiä .csv, .xlsx tai .xls" apps/frappe/frappe/www/update-password.html,New Password,Uusi salasana apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Suodatin {0} puuttuu apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Et voi poistaa automaattisesti luotua kommenttia @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Faviconi apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Juosta DocType: Blog Post,Content (HTML),Sisältö (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Asennusohjelma DocType: Personal Data Download Request,User Name,Käyttäjätunnus DocType: Workflow State,minus-sign,miinus apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Ei {0} lupaa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Vie muokatut oikeudet apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Kohteita ei löytynyt. DocType: Data Export,Fields Multicheck,Fields Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Saattaa loppuun DocType: Activity Log,Login,Kirjaudu DocType: Web Form,Payments,Maksut apps/frappe/frappe/www/qrcode.html,Hi {0},Hei {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive -integraatio. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} palautti pisteesi {1} {2} DocType: System Settings,Enable Scheduled Jobs,aktivoi töiden aikataulut apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Huom: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Epäaktiivinen @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Sähk apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Käyttöoikeusvirhe apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Kohteen {0} nimi ei voi olla {1} DocType: User Permission,Applicable For,sovellettavissa +DocType: Dashboard Chart,From Date,Päivästä apps/frappe/frappe/core/doctype/version/version_view.html,Success,Hyväksytty apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Istunto päättyi DocType: Kanban Board Column,Kanban Board Column,Kanban Hallitus sarake @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Men apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; kielletty kunnossa DocType: Async Task,Async Task,Async Tehtävä DocType: Workflow State,picture,kuva -apps/frappe/frappe/www/complete_signup.html,Complete,Täydellinen +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Täydellinen DocType: DocType,Image Field,Kuva DocType: Print Format,Custom HTML Help,Mukautettu HTML ohje DocType: LDAP Settings,Default Role on Creation,Oletusrooli luomisessa @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,seuraava tila DocType: User,Block Modules,estä moduuleita DocType: Print Format,Custom CSS,Mukautettu CSS +DocType: Energy Point Rule,Apply Only Once,Levitä vain kerran apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lisää kommentti DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ohitetut: {0} on {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,oletus saapuvat DocType: Workflow State,repeat,Toista DocType: Website Settings,Banner,Banneri apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Arvon on oltava yksi {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Peruuta kaikki asiakirjat 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Siirry {0} -luetteloon apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,(katso hakuohjeet) @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Rekisteröi apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Tämän asiakirjan automaattinen uusinta on poistettu käytöstä. DocType: DocType,Hide Copy,piilota kopio apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,tyhjennä kaikki roolit +DocType: Server Script,Before Save,Ennen Tallenna apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} on oltava yksilöllinen apps/frappe/frappe/model/base_document.py,Row,Rivi apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Poissa apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Tuonti {0} onnistui DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Lähetä tilauksen peruutus viestin sähköpostitse -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Muokkaa otsikkoa apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Kentän nimi, joka tulee olemaan asiakirjatyyppi tälle linkkikentälle" apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumentit jonossasi sinulta. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Voit myös kopioida ja liittää tämän @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Kuvaliite DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Salasana päivitetty +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asennus> Käyttäjän oikeudet apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Varmista kirjautumistesi vaiheet apps/frappe/frappe/utils/password.py,Password not found,Salasanaa ei löydetty +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Sivun pituus DocType: Email Queue,Expose Recipients,Paljasta Vastaanottajat apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,saapuvissa posteissa tulee olla liite @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,järjestelmä DocType: Web Form,Max Attachment Size (in MB),Liitteen enimmäiskoko (Mt) apps/frappe/frappe/www/login.html,Have an account? Login,Onko sinulla tili? Kirjaudu sisään +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Tulostusasetukset ... DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rivi {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Käyttäjä ei saa poistaa {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,syötä s DocType: Dropbox Settings,Dropbox Access Secret,Dropbox pääsy salaus DocType: Tag Link,Document Title,Asiakirjan otsikko apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Pakollinen) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten DocType: Social Login Key,Social Login Provider,Sosiaalisen kirjautumisen tarjoaja apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lisää toinen kommentti apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Tiedostossa ei löytynyt tietoja. Liitä uusi tiedosto uudelleen. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,käsi-alas apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Ei löytynyt kenttiä, joita voidaan käyttää Kanban-sarakkeena. Lisää räätälöity kenttä, jonka tyyppi on "Valitse", mukautuslomakkeen avulla." DocType: Address,GST State,GST State apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Ei voi perua ilman vahvistusta +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Käyttäjä ({0}) DocType: Website Theme,Theme,Teema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Uudelleenohjausosoite URI Bound To Valt.koodi apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Avaa ohje DocType: DocType,Is Submittable,On vahvistettavissa -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Uusi maininta +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Uusi maininta apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Uusia Google-yhteystietoja ei synkronoida. DocType: File,Uploaded To Google Drive,Ladattu Google Driveen apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Valintaruudun arvo voi olla joko 0 tai 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,saapuneet DocType: Kanban Board Column,Red,punainen DocType: Workflow State,Tag,Tagi -DocType: Custom Script,Script,kirjoitus +DocType: Report,Script,kirjoitus apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Asiakirjaa ei voi tallentaa. DocType: Energy Point Rule,Maximum Points,Enimmäispisteet apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Omat asetukset @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} arvostuspisteet tuotteelle {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roolit voidaan asettaa käyttäjiä heidän User sivulta. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Lisää kommentti +DocType: Dashboard Chart,Select Date Range,Valitse ajanjakso DocType: DocField,Mandatory,Pakollinen apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moduuli Vie +DocType: Scheduled Job Type,Monthly Long,Kuukauden pitkä apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: perusoikeuksia ei määritetty +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Lähetä sähköposti osoitteeseen {0} linkittääksesi sen tähän apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Vahvista, Peru, Korjaa -toimintojen tarkoitus" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tehtävät @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Seuraa minkä tahan DocType: Social Login Key,Identity Details,Identiteetin tiedot apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Työnkulun tilan siirtyminen ei ole sallittu {0} - {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Näytä hallintapaneeli -apps/frappe/frappe/desk/form/assign_to.py,New Message,Uusi viesti DocType: File,Preview HTML,Esikatselu HTML DocType: Desktop Icon,query-report,Kysely-raportti DocType: Data Import Beta,Template Warnings,Mallin varoitukset @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Liittyy apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Muokkaa automaattisia sähköpostiraporttien asetuksia DocType: Chat Room,Message Count,Viestien määrä DocType: Workflow State,book,kirja +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} on linkitetty seuraaviin toimitettuihin asiakirjoihin: {2} DocType: Communication,Read by Recipient,Lue vastaanottajan mukaan DocType: Website Settings,Landing Page,Aloitussivu apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Virhe skripti apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nimi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Kriteerille ei ole asetettu oikeuksia DocType: Auto Email Report,Auto Email Report,Automaattinen sähköpostiraportti +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Uusi asiakirja jaettu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Poista kommentti? DocType: Address Template,This format is used if country specific format is not found,Tätä muotoa käytetään ellei alueelle määriteltyä muotoa löydy DocType: System Settings,Allow Login using Mobile Number,Salli Kirjaudu käyttäen matkapuhelinnumero apps/frappe/frappe/public/js/frappe/request.js,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,Mukautettu DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jos tämä on käytössä, käyttäjät, jotka kirjautuvat rajoitetusta IP-osoitteesta, ei tule näyttöön kahden tekijän tunnistusta varten" +DocType: Server Script,After Cancel,Peruutuksen jälkeen DocType: Auto Repeat,Get Contacts,Hanki yhteystiedot apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Virkaa arkistoida {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Ohitetaan otsikon otsikko @@ -1684,6 +1757,7 @@ DocType: User,Login After,Kirjaudu jälkeen DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tulostus DocType: Workflow State,thumbs-up,peukalo-ylös +DocType: Notification Log,Mention,Mainita DocType: DocPerm,DocPerm,DocOikeus DocType: Print Settings,Fonts,kirjasimet apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Tarkkuus tulee olla välillä 1 ja 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ja apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Tämä raportti syntyi {0} DocType: Error Snapshot,Frames,Kehykset -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,toimeksianto +DocType: Notification Log,Assignment,toimeksianto DocType: Notification,Slack Channel,Löytää kanava DocType: About Us Team Member,Image Link,kuvalinkki DocType: Auto Email Report,Report Filters,raporttisuodattimet @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Tapahtumaa ei pysty päivittämään apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Vahvistuskoodi on lähetetty rekisteröityyn sähköpostiosoitteeseesi. apps/frappe/frappe/core/doctype/user/user.py,Throttled,kuristetaan +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Kohteesi apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Suodattimen tulee olla 4 arvot (doctype, fieldname, operaattori, arvo): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nimelle {0} ei määritetty apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Käytä määrityssääntöä apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/utils/data.py,Invalid field name {0},Virheellinen kentän nimi {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,Teksti-korkeus DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Tietojen siirtämissuunnitelman kartoitus apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Lähtö Frappé ... DocType: Web Form Field,Max Length,Enimmäispituus -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-merkki apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Vahvista aihe @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Sivu puuttuu tai se on sii apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Arvostelut DocType: DocType,Route,Polku apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Payment Gateway asetuksia +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} sai {1} pisteen {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Hae liitteenä olevat kuvat asiakirjasta DocType: Chat Room,Name,Nimi DocType: Contact Us Settings,Skype,skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Avaa linkki apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Sinun kielesi DocType: Dashboard Chart,Average,Keskiverto apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Lisää rivi -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,kirjoitin apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Kysely tulee olla valittu DocType: Auto Repeat,Completed,valmistunut @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Seuraava synkronointitunnus DocType: Energy Point Settings,Energy Point Settings,Energiapisteen asetukset DocType: Async Task,Succeeded,Onnistui apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Syötä pakolliset kentät lomakkeelle {0} +DocType: Onboarding Slide Field,Align,Kohdistaa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset Käyttöoikeudet {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Käyttäjät ja käyttöoikeudet DocType: S3 Backup Settings,S3 Backup Settings,S3-varmuuskopioasetukset @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,Nouseva apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Uusi tulostusmuodon nimi apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Napsauta alla olevaa linkkiä hyväksyäksesi pyyntö DocType: Workflow State,align-left,tasaa-vasen +DocType: Onboarding Slide,Action Settings,Toimintoasetukset DocType: User,Defaults,oletukset +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Vertailun vuoksi käytä> 5, <10 tai = 324. Käytä alueita 5:10 (arvoille välillä 5-10)." DocType: Energy Point Log,Revert Of,Palata apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Yhdistä nykyiseen DocType: User,Birth Date,Syntymäaika @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,sisältyy DocType: Notification,Value Change,Muuta arvoa DocType: Google Contacts,Authorize Google Contacts Access,Valtuuta Google-yhteystietojen käyttöoikeus apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Näytetään vain Numeeriset kentät Raportista +apps/frappe/frappe/utils/data.py,1 week ago,1 viikko sitten DocType: Data Import Beta,Import Type,Tuo tyyppi DocType: Access Log,HTML Page,HTML-sivu DocType: Address,Subsidiary,tytäryhtiö @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Kirjeotsikolla apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,virheellinen lähtevän postin palvelin tai portti DocType: Custom DocPerm,Write,Kirjoita -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Ainoastaan ylläpitäjä voi tehdä kyselyn / laatia raportteja apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Päivittää DocType: Data Import Beta,Preview,Esikatselu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Kenttä "arvo" on pakollinen. Ilmoitathan arvoa päivitetään @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Kutsu Käy DocType: Data Migration Run,Started,aloitti apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Käyttäjällä {0} ei ole pääsyä tähän asiakirjaan DocType: Data Migration Run,End Time,ajan loppu +DocType: Dashboard Chart,Group By Based On,Ryhmittele perustana apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Valitse liitteet apps/frappe/frappe/model/naming.py, for {0},{0}lle apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Sinulla ei ole oikeutta tulostaa tätä asiakirjaa @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Vahvistus DocType: Workflow Document State,Update Field,Päivitä kenttä DocType: Chat Profile,Enable Chat,Ota chat käyttöön DocType: LDAP Settings,Base Distinguished Name (DN),Erottuva nimi (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Poistu keskustelusta apps/frappe/frappe/model/base_document.py,Options not set for link field {0},vaihtoehtomäärityksiä ei ole tehty linkin kentälle {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Jono / työntekijä @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Kirjaudu kielletty tällä hetkellä DocType: Data Migration Run,Current Mapping Action,Nykyinen kartoitus DocType: Dashboard Chart Source,Source Name,Source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ei käyttäjän tiliä. Lisää tili käyttäjälle> Sähköpostin saapuneet -kohtaan. DocType: Email Account,Email Sync Option,Sähköposti synkronointivaihtoehto apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rivi nro DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Pinned DocType: Contact Us Settings,Introduction,esittely +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Tarvitsetko apua? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Kiinnitä globaalisti apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Jonka jälkeen DocType: LDAP Settings,LDAP Email Field,LDAP Sähköposti Field @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jo käytt DocType: User Email,Enable Outgoing,aktivoi lähtevä DocType: Address,Fax,Faksi apps/frappe/frappe/config/customization.py,Custom Tags,Mukautetut tunnisteet -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitiliä ei ole määritetty. Luo uusi sähköpostitili kohdasta Asetukset> Sähköposti> Sähköpostitili DocType: Comment,Submitted,Vahvistettu DocType: Contact,Pulled from Google Contacts,Poistettu Google-yhteystiedoista apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Virheellinen pyyntö @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Etusivu / T apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Liitä minulle DocType: DocField,Dynamic Link,dynaaminen linkki apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Paina Alt-näppäintä käynnistääksesi lisävalinnat valikossa ja sivupalkissa +DocType: Dashboard Chart,To Date,Päivään DocType: List View Setting,List View Setting,Luettelonäkymän asetus apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show epäonnistui työpaikat -DocType: Event,Details,lisätiedot +DocType: Scheduled Job Log,Details,lisätiedot DocType: Property Setter,DocType or Field,Tietuetyyppi tai kenttä apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Seuraat tätä asiakirjaa apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Ensisijainen väri @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-Palautuneissa DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Jos tämä toiminto on käytössä, kaikki käyttäjät voivat kirjautua mistä tahansa IP-osoitteesta käyttämällä Two Factor Authia. Tämä voidaan myös asettaa vain tietyille käyttäjille Käyttäjä-sivulla" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Tuntuu julkaisukelpoinen Key tai salainen avain on väärä !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,"käyttöoikeusasetukset, pikaohjeet" -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype tagille apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Näytä Sairauden uusiutumiset apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Sähköposti on siirretty roskakoriin DocType: Report,Report Builder,Raportin luontityökalu @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Tuo DocType: User Permission,Advanced Control,Advanced Control DocType: System Settings,Date Format,Päivämäärän muoto apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ei Julkaistu +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Oletusosoitemallia ei löytynyt. Luo uusi kansiosta Asetukset> Tulostaminen ja tuotemerkit> Osoitemalli. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Työketjun toiminnot (esim hyväksy, peru)" DocType: Data Import,Skip rows with errors,"Ohita rivit, joissa on virheitä" DocType: Workflow State,flag,lippu @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Tulo apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hyppää kentälle DocType: Contact Us Settings,Forward To Email Address,lähetä eteenpäin sähköpostiosoitteeseen DocType: Contact Phone,Is Primary Phone,On ensisijainen puhelin -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Lähetä sähköposti osoitteeseen {0} linkittääksesi sen tähän. DocType: Auto Email Report,Weekdays,Arkisin apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} tietueet viedään apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Otsikkokentän on oltava kelvollinen kenttänimi @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Lähetä Kommentti apps/frappe/frappe/config/core.py,Documents,Dokumentit apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Toimintaloki DocType: Social Login Key,Custom Base URL,Mukautettu ala-URL -DocType: Email Flag Queue,Is Completed,on valmis +DocType: Onboarding Slide,Is Completed,on valmis apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Hanki kentät apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Muokkaa profiilia DocType: Kanban Board Column,Archived,Arkistoidut @@ -2110,11 +2189,12 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Tänään +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Tänään apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Lähetä tuonnin jälkeen DocType: Error Log,Log of Scheduler Errors,aikatauluvirheloki DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide -ohje DocType: OAuth Client,App Client Secret,App asiakassalaisuutesi apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Vahvistetaan apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Vanhempi on sen asiakirjan nimi, johon tiedot lisätään." @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ISOT KIRJAIMET apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Mukautettu HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Anna kansion nimi -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Oletusosoitemallia ei löytynyt. Luo uusi kansiosta Asetukset> Tulostaminen ja tuotemerkit> Osoitemalli. apps/frappe/frappe/auth.py,Unknown User,Tuntematon käyttäjä apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Valitse rooli DocType: Comment,Deleted,poistettu @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Luo kaavio apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Älä tuo -DocType: Web Page,Center,keskus +DocType: Onboarding Slide Field,Center,keskus DocType: Notification,Value To Be Set,Asetettava arvo apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Muokkaa {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Ensimmäinen taso @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Tietokannan nimi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Päivitä muoto DocType: DocField,Select,Valitse -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Näytä koko loki +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Näytä koko loki DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Yksinkertainen Python-lauseke, esimerkki: status == 'Avaa' ja kirjoita == 'Vika'" apps/frappe/frappe/utils/csvutils.py,File not attached,Tiedostoa ei ole liitetty apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Yhteys kadotettu. Jotkin ominaisuudet eivät välttämättä toimi. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,"HTML otsikko-osaan, valinna apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Tämä ominaisuus on uusi ja vielä kokeiluvaiheessa apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Suurin {0} rivit sallittu DocType: Dashboard Chart Link,Chart,Kartoittaa +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Globaali tilaus apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Tämä on hyvin yleinen salasana. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Näkymä @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,hostname DocType: Data Migration Mapping,Condition Detail,Tilanne Yksityiskohta apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Valuutalle {0} vähimmäismäärän tulisi olla {1} DocType: DocField,Print Hide,Tulosta Piilota +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Käyttäjälle apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,syötä Arvo DocType: Workflow State,tint,Sävytys @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kirjautumiskor apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lisää To Do DocType: Footer Item,Company,Yritys apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Keskimäärin {0} +DocType: Scheduled Job Log,Scheduled,Aikataulutettu DocType: User,Logout from all devices while changing Password,Kirjaudu ulos kaikista laitteista salasanan vaihtamisen aikana apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Vahvista salasana apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Virheitä havaittu @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Käyttäjäoikeus on jo olemassa apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartoitetaan sarake {0} kenttään {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Näytä {0} -DocType: User,Hourly,tunti- +DocType: Scheduled Job Type,Hourly,tunti- apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Rekisteröidy OAuth-asiakkaan App DocType: DocField,Fetch If Empty,"Hae, jos tyhjä" DocType: Data Migration Connector,Authentication Credentials,Authentication Credentials @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,Tekstiviesti reititin URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},saavuttanut {0} automaattisen säännön {1} kautta apps/frappe/frappe/utils/data.py,{0} or {1},{0} tai {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Olet kaikki valmis! DocType: Workflow State,trash,roska DocType: System Settings,Older backups will be automatically deleted,Vanhemmat varmuuskopioita poistetaan automaattisesti apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Virheellinen käyttöavainkoodi tai salainen avainavaaja. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Kadotit joitain energiapisteitä DocType: Post,Is Globally Pinned,On maailmanlaajuisesti kiinnitetty apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Viimeisimmät tapahtumat DocType: Workflow Transition,Conditions,olosuhteet @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Vahvistettu DocType: Event,Ends on,päättyy DocType: Payment Gateway,Gateway,Portti DocType: LDAP Settings,Path to Server Certificate,Polku palvelinvarmenteeseen +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript on poistettu käytöstä selaimessasi apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ei tarpeeksi lupaa nähdä linkit apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,osoiteotsikko on pakollinen. DocType: Google Contacts,Push to Google Contacts,Siirry Google-yhteystietoihin @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,EU-länsi-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jos tämä on valittuna, tuodaan rivit, joilla on kelvolliset tiedot, ja virheelliset rivit tuodaan myöhemmin uusiin tiedostoihin." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumenttinon muokattavissa roolin käyttäjillä -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",Tehtävä {0} joka on nimetty sinulle {1} on suljettu {2} johdosta DocType: Print Format,Show Line Breaks after Sections,Näytä rivinvaihdot jälkeen pääluokat DocType: Communication,Read by Recipient On,Lue vastaanottajan nimi DocType: Blogger,Short Name,Lyhyt nimi @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Nime DocType: Translation,PR sent,PR lähetetty DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Lähettää vain Records Päivitetty viime x tuntia," DocType: Communication,Feedback,Palaute +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Päivitetty uudeksi versioon 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Avoin käännös apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Tämä sähköposti on automaattinen DocType: Workflow State,Icon will appear on the button,painikkeeseen ilmestyy ikoni @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Sivua ei l DocType: DocField,Precision,Tarkkuus DocType: Website Slideshow,Slideshow Items,Diaesitys tuotteet apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Yritä välttää toistuvat sanat ja merkit +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Ilmoitukset poistettu käytöstä +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Haluatko varmasti poistaa kaikki rivit? DocType: Workflow Action,Workflow State,Työnketjun vaihe apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rivit Lisätty apps/frappe/frappe/www/list.py,My Account,Oma tili @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,päivää jälkeen apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-lokeroyhteys aktiivinen! DocType: Contact Us Settings,Settings for Contact Us Page,Yhteystiedot sivuston asetukset +DocType: Server Script,Script Type,kirjoitus tyyppi DocType: Print Settings,Enable Print Server,Ota tulostuspalvelin käyttöön apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} viikkoa sitten DocType: Email Account,Footer,Alatunniste @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Varoitus apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Tämä voidaan tulostaa useille sivuille DocType: Data Migration Run,Percent Complete,Prosenttiosuus on täydellinen -DocType: Tag Category,Tag Category,Tagi -kategoria -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Vertailun vuoksi käytä> 5, <10 tai = 324. Käytä alueita 5:10 (arvoille 5-10)." DocType: Google Calendar,Pull from Google Calendar,Vedä Google-kalenterista apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Ohje DocType: User,Login Before,Kirjaudu Ennen @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Piilota viikonloput apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Luo toistuvat asiakirjat automaattisesti. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,on +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-kyltti apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Arvo {0} ei voi olla lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","miten tämä valuuttaa tulisi alustaa, ellei käytä järjestelän oletusasetuksia" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Lähetä {0} asiakirjoja? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Virhe yhteyden muodostamisessa QZ-lokerosovellukseen ...

Raaka tulostustoiminnon käyttäminen edellyttää, että QZ Tray -sovellus on asennettu ja käynnissä.

Lataa ja asenna QZ-lokero napsauttamalla tätä .
Napsauta tätä saadaksesi lisätietoja Raw-tulostamisesta ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Tulostimen kartoitus apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Tallenna ennen liittämistä. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Haluatko peruuttaa kaikki linkitetyt asiakirjat? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),lisätty {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Kenttätyyppiä {0} ei voi muuttaa {1}:si rivillä {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rooli Oikeudet DocType: Help Article,Intermediate,väli- +apps/frappe/frappe/config/settings.py,Email / Notifications,Sähköposti-ilmoitukset apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} muutettiin {1} arvoksi {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Peruutettu asiakirja palautetaan luonnokseksi DocType: Data Migration Run,Start Time,aloitusaika @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,vo apps/frappe/frappe/email/smtp.py,Invalid recipient address,virheellinen vastaanottajan osoite DocType: Workflow State,step-forward,askel-eteenpäin DocType: System Settings,Allow Login After Fail,Salli kirjautuminen käynnistyksen jälkeen +DocType: DocType Link,DocType Link,DocType-linkki DocType: Role Permission for Page and Report,Set Role For,Set rooli DocType: GCalendar Account,The name that will appear in Google Calendar,"Nimi, joka näkyy Google-kalenterissa" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Suora huone {0} on jo olemassa. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Lisää u DocType: Contact,Google Contacts,Google-yhteystiedot DocType: GCalendar Account,GCalendar Account,GCalendar-tili DocType: Email Rule,Is Spam,roskaposti +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Kestää apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raportti {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} DocType: Data Import Beta,Import Warnings,Tuo varoitukset @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Poistetut dokumentit apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-muoto on erottuva apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Kassa Ikoni on jo olemassa +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Määritä, mitä kaikkia verkkotunnuksia diojen tulisi näyttää. Jos mitään ei määritetä, dia näkyy oletuksena kaikissa verkkotunnuksissa." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Kopioi apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Kenttä {1} rivillä {2} ei voi olla piilotettu ja pakollinen ilman oletusarvoa DocType: Newsletter,Create and Send Newsletters,tee ja lähetä uutiskirjeitä @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google-kalenterin tapahtuman tunnus apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""emo"" tarkoittaa emoyritystaulukkoa, johon tämä rivi tulee lisätä" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Arviointipisteet: +DocType: Scheduled Job Log,Scheduled Job Log,Ajoitettu työloki +DocType: Server Script,Before Delete,Ennen Poista apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Jaettu käyttäjille apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Liitä tiedostoja / URL-osoitteita ja lisää ne taulukkoon. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Viesti ei ole asetettu @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Tietoa sivuston asetukset apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Raita maksu yhdyskäytävä asetukset apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Tulosta lähetetty tulostimelle! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiapisteet +DocType: Notification Settings,Energy Points,Energiapisteet +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Ajan {0} on oltava muodossa: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,esim pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Luo avaimet apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tämä poistaa tietosi pysyvästi. DocType: DocType,View Settings,Näytä asetukset +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Uusi ilmoitus DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Pyydä rakennetta +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Ohjainmenetelmä get_razorpay_order puuttuu DocType: Personal Data Deletion Request,Pending Verification,Odottaa vahvistusta DocType: Website Meta Tag,Website Meta Tag,Verkkosivun sisällönkuvauskenttä DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Jos ei-vakioportti (esim. 587). Jos Google Cloudissa, kokeile porttia 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Lopetuspäivämäärä, koska se ei voi olla aiemmin julkaistujen sivujen kohdalla." DocType: User,Send Me A Copy of Outgoing Emails,Lähetä minulle kopio lähtevistä sähköposteista -DocType: System Settings,Scheduler Last Event,"Aikataulutus tapahtumat, viimeisin" DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Lisää Google Analytics tunnus: esim. UA-89XXX57-1. Lisätietoa löydät Google Analyticsin sivuilta. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Salasana voi olla enintään 100 merkkiä pitkä DocType: OAuth Client,App Client ID,Sovelluksen Client ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Uusi salasana apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} jakoi tämän dokumentin {1} kanssa DocType: Website Settings,Brand Image,Tuotekuva DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Tuontimallin tulisi sisältää otsikko ja vähintään yksi rivi. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google-kalenteri on määritetty. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Määritä ylänavigointipalkki, alatunniste ja logo" DocType: Web Form Field,Max Value,max Value @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Käyttäjän sosiaalinen kirjautumi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} arvosteli työtäsi {1} pisteellä {2} DocType: Contact,All,Kaikki DocType: Email Queue,Recipient,Vastaanottaja +DocType: Webhook,Webhook Security,Webhook-tietoturva DocType: Communication,Has Attachment,on liitteitä DocType: Address,Sales User,Myynnin peruskäyttäjä apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,siirrä ja tiputa muodostaaksesi oman tulostusmuodon @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migration ID -kenttä DocType: Dashboard Chart,Last Synced On,Viimeksi synkronoitu DocType: Comment,Comment Type,Kommentin tyyppi DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} arvosteli työtäsi {1} {2} DocType: Assignment Rule,Users,Käyttäjät DocType: Address,Odisha,Odisha DocType: Report,Report Type,raportin tyyppi @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Verkkosivuston Kuvaesitys apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Itsehyväksyntä ei ole sallittua DocType: GSuite Templates,Template ID,mallin tunnus apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Rahoitustyypin ( {0} ) ja vastaustyypin ( {1} ) yhdistäminen ei ole sallittua -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Uusi viesti {0} DocType: Portal Settings,Default Role at Time of Signup,Default rooli at Time of Kirjautuminen DocType: DocType,Title Case,Otsikko tapaus apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Lataa tietosi napsauttamalla alla olevaa linkkiä apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Käyttäjän sähköpostiosoitteen käyttöönotto {0} DocType: Data Migration Run,Data Migration Run,Data Migration Run DocType: Blog Post,Email Sent,sähköposti lähetetty -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,vanhemmat DocType: DocField,Ignore XSS Filter,Ohita XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,poistettu apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox varmuuskopiointiasetukset @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,Jonossa DocType: Braintree Settings,Use Sandbox,Käytä Sandbox apps/frappe/frappe/utils/goal.py,This month,Tässä kuussa apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,uusi oma tulostusmuoto +DocType: Server Script,Before Save (Submitted Document),Ennen tallennusta (lähetetty asiakirja) DocType: Custom DocPerm,Create,tee apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Ei enää näytettäviä kohteita apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Siirry edelliseen levytykseen @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Siirtää roskakoriin DocType: Web Form,Web Form Fields,Verkkosivun Lomakkeen kentät DocType: Data Import,Amended From,Korjattu mistä +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Lisää ohjevideolinkki vain, jos käyttäjällä ei ole aavistustakaan mitä dia täyttää." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Varoitus: ei löydy {0} millään taulukossa liittyvät {1} DocType: S3 Backup Settings,eu-north-1,EU-pohjois-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Tämä asiakirja on parhaillaan jonossa suoritettavaksi. Yritä uudelleen @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Blogikirjoitukset DocType: Access Log,Export From,Vie maasta apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,tarkka haku apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Et saa tutustua uutiskirjeeseen. +DocType: Dashboard Chart,Group By,ryhmän DocType: User,Interests,etu apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Salasanan palautusohjeet on lähetetty sähköpostiisi DocType: Energy Point Rule,Allot Points To Assigned Users,Kaikkien pisteiden osoittaminen osoitetulle käyttäjälle @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Tehtäväsääntö apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Ehdotetut Käyttäjätunnus: {0} DocType: Assignment Rule Day,Day,Päivä apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduulit +DocType: DocField,Mandatory Depends On,Pakollinen riippuu apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Maksu onnistui apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ei {0} mail DocType: OAuth Bearer Token,Revoked,peruutettu @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Sivupalkki ja kommentit apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ei saa liittää {0} -asiakirjaa, salli Allow Print For {0} tulostusasetuksissa" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitiliä ei ole määritetty. Luo uusi sähköpostitili kohdasta Asetukset> Sähköposti> Sähköpostitili apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Katso dokumentti {0} DocType: Stripe Settings,Publishable Key,julkaisukelpoisia Key apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Aloita tuonti @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,jako apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Tapahtuma synkronoidaan Google-kalenterin kanssa. DocType: LDAP Settings,LDAP First Name Field,LDAP etunimi Field DocType: Contact,Middle Name,Toinen nimi +DocType: DocField,Property Depends On,Kiinteistö riippuu DocType: Custom Field,Field Description,Kentän kuvaus apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nimeä ei ole asetettu kautta Kysy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Sähköposti Saapuneet apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Päivitetään {0} {1}, {2}" DocType: Auto Email Report,Filters Display,Suodattimet Näyttö apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Kenttä "muokattu_from" on oltava läsnä muutoksen tekemistä varten. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} arvosti työtäsi {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Tallenna suodattimet DocType: Address,Plant,Laite apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Vastaa kaikille @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,kansio-kiinni apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,report: DocType: Print Settings,Print taxes with zero amount,"Tulosta verot, joiden summa on nolla" apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ei sallittu nimetä uudelleen +DocType: Server Script,Before Insert,Ennen lisäystä DocType: Custom Script,Custom Script,Mukautettu skripti DocType: Address,Address Line 2,osoiterivi 2 DocType: Address,Reference,Viite apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,nimetty -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Asenna oletus sähköpostitili kohdasta Asennus> Sähköposti> Sähköpostitili DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail DocType: Data Import,Action,Toiminto DocType: GSuite Settings,Script URL,script-URL @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,luettelonäkymänä DocType: Email Account,Use TLS,Käytä TLS:ää apps/frappe/frappe/email/smtp.py,Invalid login or password,virheellinen kirjautuminen tai salasana +DocType: Scheduled Job Type,Weekly Long,Viikoittain pitkä apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,lataa mallipohja apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,lisää omia javascript lomakkeisiin/muotoihin ,Role Permissions Manager,Roolien oikeuksienhallinta apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,nimeä uusi tulostusmuoto apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Vaihda sivupalkki +DocType: Server Script,After Save (Submitted Document),Tallennuksen jälkeen (lähetetty asiakirja) DocType: Data Migration Run,Pull Insert,Vedä Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Suurimmat sallitut pisteet kerrottuna pisteillä kertoimella (Huomautus: Jätä tämä kenttä tyhjäksi tai aseta 0) @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogi apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ei ole asennettu apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,lataa tiedoilla apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},muutetut arvot kohteelle {0} {1} +DocType: Server Script,Before Cancel,Ennen Peruuta DocType: Workflow State,hand-right,käsi-oikea DocType: Website Settings,Subdomain,Alitoimialue DocType: S3 Backup Settings,Region,Alue @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Vanha Salasana DocType: S3 Backup Settings,us-east-1,us-itä-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Viestit käyttäjältä {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Jos haluat muotoilla sarakkeita, anna nimi saraketunnisteelle" +DocType: Onboarding Slide,Slide Fields,Diakentät DocType: Has Domain,Has Domain,on Domain DocType: User,Allowed In Mentions,Sallittu maininnoissa apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ei ole tiliä? Rekisteröidy apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID-kenttää ei voi poistaa apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Ei voi asettaa korjausta ellei ole vahvistettavissa DocType: Address,Bihar,Biharin +DocType: Notification Settings,Subscribed Documents,Tilatut asiakirjat apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Käyttäjäasetukset DocType: Report,Reference Report,Viiteraportti DocType: Activity Log,Link DocType,Linkki-tietuetyyppi @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Valtuuta Google-kalent apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Etsimääsi sivua ei löytynyt. Saatoit kirjoittaa väärän osoitteen, tai sivua jota etsit ei enää ole olemassa." apps/frappe/frappe/www/404.html,Error Code: {0},Virhekoodi: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","luettelosivun kuvaus, tekstimuodossa, vain muutama rivi (max 140 merkkiä)" +DocType: Server Script,DocType Event,DocType -tapahtuma apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ovat pakollisia kenttiä DocType: Workflow,Allow Self Approval,Salli itseluottamus DocType: Event,Event Category,Tapahtumaluokka @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nimesi apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Yhteyden onnistuminen DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Käynnissä oleva diatyyppinen dia jatketaan jo. DocType: DocType,Default Sort Field,Oletuslajittelukenttä DocType: File,Is Folder,On Folder DocType: Document Follow,DocType,Tietuetyyppi @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,arvot M DocType: Workflow State,arrow-up,arrow-up DocType: Dynamic Link,Link Document Type,Linkki asiakirjan tyyppi apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Pöydässä {0} pitäisi olla vähintään yksi rivi +DocType: Server Script,Server Script,Palvelinkirjoitus apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Jos haluat määrittää automaattisen toiston, ota "Salli automaattinen toisto" kohdasta {0}." DocType: OAuth Bearer Token,Expires In,Vanhenee +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Se kuinka monta kertaa haluat toistaa kenttäjoukon (esim .: jos haluat 3 asiakasta diaan, aseta tähän kenttään 3. Vain ensimmäinen kenttäryhmä näkyy pakollisena diassa)" DocType: DocField,Allow on Submit,Salli vahvistuksessa DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Poikkeus Tyyppi @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,otsikot apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Tulevat tapahtumat apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Anna arvot App Access Key ja App salainen avain +DocType: Email Account,Append Emails to Sent Folder,Lisää sähköpostit lähetettyyn kansioon DocType: Web Form,Accept Payment,Hyväksy Maksu apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Valitse luettelon kohde apps/frappe/frappe/config/core.py,A log of request errors,Loki virheellisistä pyynnöistä @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,vaikuttaneet apps/frappe/frappe/config/customization.py,Form Customization,Lomakkeen mukauttaminen apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ei aktiivisia istuntoja DocType: Web Form,Route to Success Link,Reitti menestysyhteyteen -DocType: Top Bar Item,Right,Oikea +DocType: Onboarding Slide Field,Right,Oikea apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Ei tulevia tapahtumia DocType: User,User Type,Käyttäjätyyppi DocType: Prepared Report,Ref Report DocType,Ref Raportti DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Yritä uudelleen apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL-osoitteen on alkava 'http: //' tai 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Vaihtoehto 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Tätä ei voi peruuttaa DocType: Workflow State,Edit,muokkaa DocType: Website Settings,Chat Operators,Chat-operaattorit DocType: S3 Backup Settings,ca-central-1,ca-Keski-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,oletus {0}:lle tulee olla vaihtoehto -DocType: Tag Doc Category,Tag Doc Category,Tag Doc -kategoria apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,"Raportti, jossa on yli 10 saraketta, näyttää paremmalta vaakatilassa." apps/frappe/frappe/database/database.py,Invalid field name: {0},Virheellinen kentän nimi: {0} DocType: Milestone,Milestone,Virstanpylväs @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Siirry kohtaan {0} apps/frappe/frappe/email/queue.py,Emails are muted,sähköpostit on mykistetty apps/frappe/frappe/config/integrations.py,Google Services,Google-palvelut apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + ylös -apps/frappe/frappe/utils/data.py,1 weeks ago,1 viikko sitten +DocType: Onboarding Slide,Slide Description,Diaesitys DocType: Communication,Error,virhe apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Aseta ensin viesti DocType: Auto Repeat,End Date,päättymispäivä @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Nimike DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-yhteystiedot on määritetty. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 tietue viedään +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ei käyttäjän tiliä. Lisää tili kohtaan Käyttäjä> Sähköpostin saapuneet. DocType: DocField,Report Hide,piilota raportti apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Puunäkymä ole käytettävissä {0} DocType: DocType,Restrict To Domain,Rajoita Domain DocType: Domain,Domain,Toimiala +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Virheellinen tiedoston URL-osoite. Ota yhteyttä järjestelmänvalvojaan. DocType: Custom Field,Label Help,Nimikeohje DocType: Workflow State,star-empty,tähtimerkki-tyhjä apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Päivämäärät ovat usein helppo arvata. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,käsi-vasen DocType: Data Import,If you are updating/overwriting already created records.,Jos päivität / korvaa jo luotuja tietueita. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,On maailmanlaajuinen DocType: Email Account,Use SSL,Käytä SSL:ää +DocType: Webhook,HOOK-.####,KOUKKU-.#### DocType: Workflow State,play-circle,Play-ympyrä apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Asiakirjaa ei voitu määrittää oikein apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Virheellinen "depend_on" -ilmaus @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Viimeksi päivitetty apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Asiakirjatyypille DocType: Workflow State,arrow-right,arrow-right +DocType: Server Script,API Method,API-menetelmä DocType: Workflow State,Workflow state represents the current state of a document.,Työketjun vaihe esittää dokumentin vaihetta DocType: Letter Head,Letter Head Based On,Kirjeen pää perustuu apps/frappe/frappe/utils/oauth.py,Token is missing,Token puuttuu @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compact Tuote Tulosta DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Uudelleenohjausosoite +DocType: Onboarding Slide Field,Placeholder,Paikanpitäjä DocType: SMS Settings,Enter url parameter for receiver nos,syötä url parametrin vastaanottonro DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Käytä aina tilin nimeä lähettäjän nimellä @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,Siirry etusivulle DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Käyttäjä voi kirjautua sisään käyttämällä sähköpostiosoitetta tai käyttäjänimeä DocType: Workflow State,question-sign,Kysymys-merkki -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} on poistettu käytöstä apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Kentän "reitti" on pakollinen Web-näkymille apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Lisää sarake ennen {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Tämän kentän käyttäjälle maksetaan pisteitä @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,mikäli omistaja DocType: Data Migration Mapping,Push,Työntää apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Pudota tiedostot tähän DocType: OAuth Authorization Code,Expiration time,vanhentumisaika +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Avaa asiakirjat DocType: Web Page,Website Sidebar,Verkkosivu sivupalkki DocType: Web Form,Show Sidebar,Näytä sivupalkki apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Sinun tulee olla kirjautunut sisään päästäksesi tähän {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globaalit pi DocType: Desktop Icon,Page,Sivu apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Ei löytänyt {0} in {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Ja sukunimet itse on helppo arvata. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Asiakirja nimettiin {0} - {1} apps/frappe/frappe/config/website.py,Knowledge Base,Tietovarasto DocType: Workflow State,briefcase,salkku apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Kohteen {0} arvoa ei voi muuttaa @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Tulostusmuoto apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Vaihda ruudukonäkymä apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Siirry seuraavaan levyyn +DocType: System Settings,Time Format,Aikamuoto apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Virheelliset maksu yhdyskäytävä käyttäjätietoja DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Tämä on mallitiedosto, joka syntyy vain rivillä, joilla on jonkin verran virheitä. Tätä tiedostoa kannattaa käyttää korjaamiseen ja tuontiin." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Aseta käyttöoikeuksia asiakirjatyypeille ja rooleille @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Vastaus apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Sivut Desk (paikka haltijat) DocType: DocField,Collapsible Depends On,Kokoontaitettava Riippuu DocType: Print Style,Print Style Name,Tulosta tyylin nimi +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Ryhmäkohtaisesti-kenttä vaaditaan kojetaulukaavion luomiseen DocType: Print Settings,Allow page break inside tables,Salli sivunvaihto sisällä taulukoita DocType: Email Account,SMTP Server,Palvelin SMTP DocType: Print Format,Print Format Help,Tulostusmuodon ohjeet apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} huoneessa on oltava vähintään yksi käyttäjä. DocType: DocType,Beta,Beeta DocType: Dashboard Chart,Count,Kreivi +DocType: Dashboard Chart,Group By Type,Ryhmittele tyypin mukaan apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Uusi kommentti tuotteelle {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},palautettu {0} kun {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","mikäli olet päivittämässä valitse ""korvaa"" muuten nykyisiä rivejä ei poisteta" @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Käyttäj DocType: Web Form,Web Form,Verkkosivun Lomake apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Päivämäärä {0} on oltava muodossa: {1} DocType: About Us Settings,Org History Heading,Org Historia otsake +DocType: Scheduled Job Type,Scheduled Job Type,Ajoitettu työtyyppi DocType: Print Settings,Allow Print for Cancelled,Salli Print for peruutettu DocType: Communication,Integrations can use this field to set email delivery status,Integraatiot voivat käyttää tätä kenttää asettaa sähköpostin toimituksen tila +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Sinulla ei ole oikeuksia peruuttaa kaikkia linkitettyjä asiakirjoja. DocType: Web Form,Web Page Link Text,Verkkosivun linkin teksti DocType: Page,System Page,järjestelmä Sivu apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Aseta oletusmuoto, sivukoko, tulostusmuoto ym" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,POISTU apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} : n muokkaukset viedään kohteeseen:
{1} DocType: Website Settings,Include Search in Top Bar,Sisällytä Hae yläpalkissa +DocType: Scheduled Job Type,Daily Long,Päivittäin pitkä DocType: GSuite Settings,Allow GSuite access,Salli GSuite pääsy DocType: DocType,DESC,laskeva DocType: DocType,Naming,Nimeäminen @@ -3476,6 +3597,7 @@ DocType: Notification,Send days before or after the reference date,Lähetä päi DocType: User,Allow user to login only after this hour (0-24),Salli käyttäjän kirjautua vasta tämän jälkeen tunti (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Määritä yksi kerrallaan DocType: Integration Request,Subscription Notification,Tilausilmoitus +DocType: Customize Form Field, Allow in Quick Entry ,Salli pikavalinta apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,tai kiinnitä DocType: Auto Repeat,Start Date,aloituspäivä apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Arvo @@ -3490,6 +3612,7 @@ DocType: Google Drive,Backup Folder ID,Varmuuskopioidun kansion tunnus apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Järjestelmä ei ole kehittäjätilassa. Aseta kehittäjätila päälle 'site_config.json' -tiedostossa, tai tee mukautettu DocType." DocType: Workflow State,globe,maa DocType: System Settings,dd.mm.yyyy,pp.kk.vvvv +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,prioriteetti DocType: Email Queue,Unsubscribe Param,tilaus Param DocType: DocType,Hide Sidebar and Menu,Piilota sivupalkki ja valikko @@ -3501,6 +3624,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Salli Tuo (via Tietojen tuo apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,# DocType: DocField,Float,Kellunta DocType: Print Settings,Page Settings,Sivuasetukset +DocType: Notification Settings,Notification Settings,Ilmoitusasetukset apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Tallentaa... apps/frappe/frappe/www/update-password.html,Invalid Password,väärä salasana apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} -tietue tuotiin onnistuneesti {1}. @@ -3516,6 +3640,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail sähköposti DocType: Letter Head,Letter Head Image,Letter Head -kuva DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron-muoto apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Report DocType: SMS Settings,Use POST,Käytä POST DocType: Communication,SMS,Tekstiviesti @@ -3560,18 +3685,20 @@ DocType: Workflow,Allow approval for creator of the document,Anna asiakirjan luo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Tallenna raportti DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Palvelimen toiminta apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,ylläpitäjän kirjautuminen {0} {1}:llä IP-osoiteella {2} apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Emokentän on oltava kelvollinen kentän nimi apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Jäsenyyden muuttaminen epäonnistui DocType: LDAP Settings,LDAP Group Field,LDAP-ryhmän kenttä +DocType: Notification Subscribed Document,Notification Subscribed Document,Ilmoitettu tilattu asiakirja apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,yhtäsuuri apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Virheellinen CSV Format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Virhe yhteyden muodostamisessa QZ-lokerosovellukseen ...

Raaka tulostustoiminnon käyttäminen edellyttää, että QZ Tray -sovellus on asennettu ja käynnissä.

Lataa ja asenna QZ-lokero napsauttamalla tätä .
Napsauta tätä saadaksesi lisätietoja Raw-tulostamisesta ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Aseta määrä Varmuuskopiot DocType: DocField,Do not allow user to change after set the first time,älä anna käyttäjän muuttaa määrityksiä ensimmäisen kerrän jälkeen apps/frappe/frappe/utils/data.py,1 year ago,1 vuosi sitten +DocType: DocType,Links Section,Linkit-osio apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Näytä kaikkien tulostus-, lataus- ja vientitapahtumien loki" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 kuukausi DocType: Contact,Contact,Yhteyshenkilö @@ -3598,16 +3725,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,uusi sähköposti DocType: Custom DocPerm,Export,vienti apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Jos haluat käyttää Google-kalenteria, ota {0} käyttöön." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Lisätään myös tilariippuvuuskenttä {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Päivitetty {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-lokero epäonnistui: DocType: Dropbox Settings,Dropbox Settings,Dropbox Asetukset DocType: About Us Settings,More content for the bottom of the page.,Enemmän sisältöä sivun alareunassa. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Tämä asiakirja on palautettu apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Driven varmuuskopiointi onnistui. +DocType: Webhook,Naming Series,Nimeä sarjat DocType: Workflow,DocType on which this Workflow is applicable.,DocType johon tätä työketjua voidaan käyttää. DocType: User,Enabled,Aktiivinen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Asennus ei onnistunut apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Uusi {0}: {1} -DocType: Tag Category,Category Name,luokittelun nimi +DocType: Blog Category,Category Name,luokittelun nimi apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Vanhempaa vaaditaan lapsipöytätietojen saamiseksi apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,tuo tilaajat DocType: Print Settings,PDF Settings,PDF asetukset @@ -3643,6 +3773,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalenteri apps/frappe/frappe/client.py,No document found for given filters,Ei asiakirjan löytynyt tietyn suodattimia apps/frappe/frappe/config/website.py,A user who posts blogs.,"Käyttäjä, joka julkaisee blogeja." +DocType: DocType Action,DocType Action,DocType-toiminta apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Toinen {0} kanssa nimellä {1} on olemassa, valitse toinen nimi" DocType: DocType,Custom?,Mukautettu? DocType: Website Settings,Website Theme Image,Verkkosivuston teemakuva @@ -3652,6 +3783,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Lataamine apps/frappe/frappe/config/integrations.py,Backup,Varmuuskopioida apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Asiakirjatyyppi vaaditaan kojetaulukaavion luomiseen DocType: DocField,Read Only,Vain luku +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Razorpay-tilausta ei voitu luoda apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Uusi uutiskirje DocType: Energy Point Log,Energy Point Log,Energiapisteloki DocType: Print Settings,Send Print as PDF,Lähetä PDF tuloste @@ -3677,16 +3809,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,vah apps/frappe/frappe/www/login.html,Or login with,Tai sisään DocType: Error Snapshot,Locals,Paikalliset apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Viestitään {0} on {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} mainitsi sinut kommentissa: {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Valitse ryhmä apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"esim, (55 + 434) / 4 tai = math.sin (Math.PI / 2) ..." apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} on pakollinen DocType: Integration Request,Integration Type,integraatio Tyyppi DocType: Newsletter,Send Attachements,Lähetä Liitteet +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Suodattimia ei löytynyt apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google-yhteystietojen integrointi. DocType: Transaction Log,Transaction Log,Tapahtumaloki apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Tilastot perustuvat viime kuukauden suorituskykyyn ({0} - {1}) DocType: Contact Us Settings,City,Kaupunki +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Piilota kortit kaikille käyttäjille apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Ota Salli automaattinen uusinta doctypelle {0} Mukauta muotoa -kohdassa DocType: DocField,Perm Level,Pysyvä taso apps/frappe/frappe/www/confirm_workflow_action.html,View document,Näytä asiakirja @@ -3697,6 +3830,7 @@ DocType: Blog Category,Blogger,Bloggaaja DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Jos tämä on käytössä, asiakirjan muutoksia seurataan ja ne näytetään aikajanalla" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Global haku' kielletty tyyppi {0} rivillä {1} DocType: Energy Point Log,Appreciation,arvostus +DocType: Dashboard Chart,Number of Groups,Ryhmien lukumäärä apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Katso List DocType: Workflow,Don't Override Status,Älä poikkeuta tilaa apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Hakusana @@ -3738,7 +3872,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-luoteesta-1 DocType: Dropbox Settings,Limit Number of DB Backups,Rajoita DB-varmuuskopioiden määrä DocType: Custom DocPerm,Level,taso -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Viimeiset 30 päivää DocType: Custom DocPerm,Report,Raportti apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Määrä on oltava suurempi kuin 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Kytketty QZ-lokeroon! @@ -3755,6 +3888,7 @@ DocType: S3 Backup Settings,us-west-2,us-länsi-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Valitse lapsipöytä apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Käynnistä ensisijainen toiminta apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,muutos +DocType: Social Login Key,User ID Property,Käyttäjätunnus omaisuus DocType: Email Domain,domain name,verkkotunnus DocType: Contact Email,Contact Email,"yhteystiedot, sähköposti" DocType: Kanban Board Column,Order,Tilaus @@ -3777,7 +3911,7 @@ DocType: Contact,Last Name,Sukunimi DocType: Event,Private,Yksityinen apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Ei työsuhteessa DocType: Event,All Day,(1/1 päivä) apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Näyttää jotain vikaa tässä sivuston maksuyhdyskäytävien kokoonpano. Ei maksu on suoritettu. DocType: GCalendar Settings,State,asema @@ -3809,7 +3943,6 @@ 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""" DocType: Payment Gateway,Gateway Settings,Yhdyskäytäväasetukset apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Asiakirjatyypin teksti -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Suorita testit apps/frappe/frappe/handler.py,Logged Out,Kirjautunut ulos apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Lisää... DocType: System Settings,User can login using Email id or Mobile number,Käyttäjä voi kirjautua sähköpostin id tai matkapuhelinnumero @@ -3825,6 +3958,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Yhteenveto DocType: Event,Event Participants,Tapahtuman osallistujat DocType: Auto Repeat,Frequency,Taajuus +DocType: Onboarding Slide,Slide Order,Diajärjestys DocType: Custom Field,Insert After,aseta alapuolelle DocType: Event,Sync with Google Calendar,Synkronoi Google-kalenterin kanssa DocType: Access Log,Report Name,raportin nimi @@ -3852,6 +3986,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},max leveys valuutta tyypille on 100px rivillä {0} apps/frappe/frappe/config/website.py,Content web page.,"sisältö, verkkosivu" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lisää uusi rooli +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Käy verkkosivulla +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Uusi tehtävä DocType: Google Contacts,Last Sync On,Viimeisin synkronointi päällä DocType: Deleted Document,Deleted Document,poistettu Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hups! Jokin meni vikaan @@ -3862,7 +3998,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Maisema apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Asiakkaan puolella Javascript-laajennukset DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Tietojen tallentaminen seuraaviin tietotyppeihin suodatetaan -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Aikataulu ei aktiivinen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Aikataulu ei aktiivinen DocType: Blog Settings,Blog Introduction,Blogi Esittely DocType: Global Search Settings,Search Priorities,Etsi prioriteetteja DocType: Address,Office,Toimisto @@ -3872,12 +4008,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Hallintapaneelin linkki DocType: User,Email Settings,sähköpostin asetukset apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Pudota tähän DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Jos tämä on käytössä, käyttäjä voi kirjautua sisään mistä tahansa IP-osoitteesta käyttämällä Two Factor Auth -toimintoa, tämä voidaan asettaa myös kaikille käyttäjille järjestelmäasetuksissa" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Tulostimen asetukset ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Syötä salasana jatkaaksesi apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Minulle apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ei sallittu tila apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Käytä kaikkia asiakirjatyyppejä -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapisteen päivitys +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energiapisteen päivitys +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Suorita työpaikkoja vain päivittäin, jos passiivinen (päivinä)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Valitse toinen maksutapa. PayPal ei tue valuuttaa '{0}' DocType: Chat Message,Room Type,Huone tyyppi DocType: Data Import Beta,Import Log Preview,Tuo lokin esikatselu @@ -3886,6 +4022,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-ympyrä DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP-käyttäjän luominen ja kartoitus apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Voit löytää asioita kysymällä "löytää oranssi asiakkaiden +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Tämän päivän tapahtumat apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Käyttäjällä tulee olla täysi pääsy omiin tietueisiin ,Usage Info,Käyttötilasto apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Näytä pikanäppäimet @@ -3902,6 +4039,7 @@ DocType: DocField,Unique,Uniikki apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} arvostettu {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Osittainen menestys DocType: Email Account,Service,Palvelu +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asennus> Käyttäjä DocType: File,File Name,Tiedoston nimi apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ei löytynyt {0}:a {0} ({1}):lle apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3915,6 +4053,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,rekister DocType: GCalendar Settings,Enable,ota käyttöön DocType: Google Maps Settings,Home Address,Kotiosoite apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Voit ladata enintään 5000 tietueitta kerralla. (vähemmän joissakin tapauksissa) +DocType: Report,"output in the form of `data = [columns, result]`","tuotos muodossa `data = [sarakkeet, tulos]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Sovellettavat asiakirjatyypit apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Määritä säännöt käyttäjän tehtäville. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Riittämätön Lupa {0} @@ -3930,7 +4069,6 @@ DocType: Communication,To and CC,To ja CC DocType: SMS Settings,Static Parameters,staattinen parametri DocType: Chat Message,Room,Huone apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},päivitetty {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Taustatyöt eivät ole käynnissä. Ota yhteyttä järjestelmänvalvojaan DocType: Portal Settings,Custom Menu Items,Custom-valikon kohtien apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Kaikki sivuston diaesitykseen liitetyt kuvat tulisi olla julkisia DocType: Workflow State,chevron-right,välimerkki-oikea @@ -3945,11 +4083,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} arvoa valittu DocType: DocType,Allow Auto Repeat,Salli automaattinen toisto apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ei arvoja näytettäväksi +DocType: DocType,URL for documentation or help,Asiakirjojen tai ohjeiden URL-osoite DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Sähköpostimalli apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Päivitetty {0} tietue onnistuneesti. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Käyttäjällä {0} ei ole doctype-käyttöoikeutta dokumentin {1} rooliluvan kautta apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,käyttäjätunnus ja salasana vaaditaan +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Antaa\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Lataa uudelleen saadaksesi viimeisin dokumentti DocType: User,Security Settings,Turva asetukset apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Lisää sarake @@ -3959,6 +4099,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Liitteenä {0}: {1} DocType: Web Page,Set Meta Tags,Aseta metakoodit +DocType: Email Account,Use SSL for Outgoing,Käytä lähtevää SSL 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: S3 Backup Settings,Backup Limit,Varmistusraja DocType: Dashboard Chart,Line,Linja @@ -3991,4 +4132,3 @@ DocType: DocField,Ignore User Permissions,ohita käyttäjäoikeudet apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Tallennettu onnistuneesti apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Pyydä ylläpitäjää tarkistaa rekisteröitymisen DocType: Domain Settings,Active Domains,aktiivinen Verkkotunnukset -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Näytä loki diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv index 198154d215..553c63d116 100644 --- a/frappe/translations/fr.csv +++ b/frappe/translations/fr.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Veuillez sélectionner un Champ Montant. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Chargement du fichier d'importation ... DocType: Assignment Rule,Last User,Dernier utilisateur -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Une nouvelle tâche, {0}, vous a été attribuée par {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Session par défaut enregistrée apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Recharger le fichier DocType: Email Queue,Email Queue records.,Registres de file d'attente Email. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Arbre DocType: User,User Emails,Les Emails de l'Utilisateur DocType: User,Username,Nom d'Utilisateur apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importer un zip +DocType: Scheduled Job Type,Create Log,Créer un journal apps/frappe/frappe/model/base_document.py,Value too big,Valeur trop grande DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Exécuter un Script de Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensuel DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Activer Entrant apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Danger -DocType: Address,Email Address,Adresse Email +apps/frappe/frappe/www/login.py,Email Address,Adresse Email DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Notification Non Lue Envoyée apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Pas autorisé à exporter. Vous devez avoir le rôle {0} pour exporter. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Annu DocType: DocType,Is Published Field,Est un Champ Publié DocType: GCalendar Settings,GCalendar Settings,Paramètres GCalendar DocType: Email Group,Email Group,Groupe Email +apps/frappe/frappe/__init__.py,Only for {},Seulement pour {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Impossible de supprimer l'événement {0} de Google Agenda, code d'erreur {1}." DocType: Event,Pulled from Google Calendar,Tiré de Google Agenda DocType: Note,Seen By,Vu Par apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Ajout Multiple -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Vous avez gagné des points d'énergie apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Image utilisateur non valide. DocType: Energy Point Log,Reverted,Inversé DocType: Success Action,First Success Message,Premier message de succès @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Pas Comme apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valeur incorrecte : {0} doit être {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Modification des propriétés de champ (masquer , en lecture seule , permission etc )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apprécier +DocType: Notification Settings,Document Share,Partage de documents DocType: Workflow State,lock,verrouiller apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Paramètres de la Page Contactez Nous. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrateur Connecté @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Si activé, le document est marqué comme vu, la première fois qu'un utilisateur l'ouvre" DocType: Auto Repeat,Repeat on Day,Répéter Chaque DocType: DocField,Color,Couleur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Tout marquer comme lu DocType: Data Migration Run,Log,Journal DocType: Workflow State,indent-right,décaler-droite DocType: Has Role,Has Role,A Un Rôle @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Afficher le traçage DocType: DocType,Default Print Format,Format d'Impression par Défaut DocType: Workflow State,Tags,Balises +DocType: Onboarding Slide,Slide Type,Type de diapositive apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Aucun: Fin de Flux de Travail apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Types de Documents @@ -135,7 +138,6 @@ DocType: Language,Guest,Invité DocType: DocType,Title Field,Champ Titre DocType: Error Log,Error Log,Journal des Erreurs apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL invalide -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Les 7 derniers jours apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Les répétitions comme ""ABCABCABC"" sont seulement un peu plus difficiles à deviner que ""abc""" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Si vous pensez que cela n'est pas autorisé, veuillez changer le mot de passe Administrateur." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Client apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Sélectionner la colonne apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ce formulaire a été modifié après que vous l'ayez chargé DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Journal des notifications 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Ouvrez Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Il semble qu'il y a un problème avec la configuration de Stripe sur le serveur. En cas d'erreur, le montant est remboursé sur votre compte." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,In apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Envoyer DocType: Workflow Action Master,Workflow Action Name,Nom de l'Action du Flux de Travail apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ne peut pas être fusionné -DocType: Web Form Field,Fieldtype,Type de Champ +DocType: Onboarding Slide Field,Fieldtype,Type de Champ apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Pas un fichier zip DocType: Global Search DocType,Global Search DocType,Recherche globale DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Email Envoyé ? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Afficher/Cacher le graphique apps/frappe/frappe/desk/form/save.py,Did not cancel,N'a pas été annulé DocType: Social Login Key,Client Information,Informations sur le client +DocType: Energy Point Rule,Apply this rule only once per document,Appliquer cette règle une seule fois par document DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,La lecture seule dépend de apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Connecté en tant qu'Invité ou Administrateur DocType: Email Account,UNSEEN,NON LUS apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Gestionnaire de Fichiers @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Raison 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Aucune activité +DocType: Server Script,Script Manager,Gestionnaire de scripts +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Aucune activité apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Applications Tierces apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Aucun événement aujourd'hui apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Vous ne pouvez pas vous donner de points de révision apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,Le DocType doit être soumissible pour l'événement Doc sélectionné DocType: Workflow State,circle-arrow-up,flèche-cercle-haut @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Non autorisé pour {0}: {1}. Champ restreint: {2} 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,You are not allowed to delete a standard Website Theme,Vous n'êtes pas autorisé à supprimer un Thème standard du Site Web +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Créez votre premier {0} DocType: Data Import,Log Details,Détails du journal DocType: Workflow Transition,Example,Exemple DocType: Webhook Header,Webhook Header,En-Tête Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Fond de conversation apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marquer comme Lu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Mise à jour de {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Une diapositive d'intégration {0} avec le même ordre de diapositives existe déjà apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Désactiver Rapport DocType: Translation,Contributed Translation Doctype Name,Nom du type de traduction contribuée +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire DocType: PayPal Settings,Redirect To,Rediriger Vers DocType: Data Migration Mapping,Pull,Extraction DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},"""Format JavaScript : @@ -265,6 +275,7 @@ DocType: DocShare,Internal record of document shares,Registre interne des docume DocType: Energy Point Settings,Review Levels,Niveaux de révision DocType: Workflow State,Comment,Commenter DocType: Data Migration Plan,Postprocess Method,Méthode post-traitement +DocType: DocType Action,Action Type,type d'action apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Prendre une photo DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Vous pouvez modifier les documents Soumis en les annulant et ensuite, en les modifiant." @@ -278,6 +289,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Enregistrer Sous DocType: Comment,Seen,Vu apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Montrer plus de détails +DocType: Server Script,Before Submit,Avant de soumettre 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,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,Archive,Archiver @@ -290,10 +302,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Clé d'Accès Dropbox apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Nom de champ incorrect {0} dans la configuration add_fetch du script personnalisé apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Sélectionnez les contacts Google avec lesquels le contact doit être synchronisé. DocType: Web Page,Main Section (HTML),Section principale (HTML) +DocType: Scheduled Job Type,Annual,Annuel DocType: Workflow State,headphones,casques apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Mot de Passe est requis ou sélectionner En Attente de Mot de Passe DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,e.g. replies@yourcompany.com. Toutes les réponses seront envoyées à cette adresse. DocType: Slack Webhook URL,Slack Webhook URL,URL de Webhook Slack +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Détermine l'ordre de la diapositive dans l'assistant. Si la diapositive ne doit pas être affichée, la priorité doit être définie sur 0." DocType: Data Migration Run,Current Mapping,Cartographie actuelle apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Email et nom valides requis apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Rendre toutes les pièces jointes privées @@ -316,6 +330,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Règles de Transition apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Afficher uniquement les {0} premières lignes de l'aperçu apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemple : +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Restrictions DocType: Workflow,Defines workflow states and rules for a document.,Défini les états du flux de travail et les règles pour un document. DocType: Workflow State,Filter,Filtre apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Consultez le journal des erreurs pour plus d'informations: {0} @@ -327,6 +342,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Emploi apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} déconnecté: {1} DocType: Address,West Bengal,Bengal Ouest +DocType: Onboarding Slide,Information,Information apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : Impossible de définir ‘Assigner Soumettre’ si non Soumissible DocType: Transaction Log,Row Index,Index de ligne DocType: Social Login Key,Facebook,Facebook @@ -345,7 +361,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Aide du Bouton DocType: Kanban Board Column,purple,violet DocType: About Us Settings,Team Members,Membres de l'Équipe +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Exécute les travaux planifiés une seule fois par jour pour les sites inactifs. 4 jours par défaut si réglé sur 0. DocType: Assignment Rule,System Manager,Responsable Système +DocType: Scheduled Job Log,Scheduled Job,Travail planifié DocType: Custom DocPerm,Permissions,Autorisations apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Webhooks Slack pour intégration interne DocType: Dropbox Settings,Allow Dropbox Access,Autoriser l'Accès à Dropbox @@ -399,6 +417,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scan DocType: Email Flag Queue,Email Flag Queue,Liste d'Attente des d'Emails Marqués DocType: Access Log,Columns / Fields,Colonnes / Champs apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Feuilles de style pour les Formats d'Impression +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Le champ Fonction d'agrégation est requis pour créer un graphique de tableau de bord apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Impossible d'identifier les {0} ouvertes. Essayez autre chose. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vos informations ont été soumises apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Utilisateur {0} ne peut pas être supprimé @@ -414,11 +433,12 @@ DocType: Property Setter,Field Name,Nom du Champ DocType: Assignment Rule,Assign To Users,Attribuer aux utilisateurs apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ou apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Nom du module ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continuer +DocType: Onboarding Slide,Continue,Continuer apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,L'intégration de Google est désactivée. DocType: Custom Field,Fieldname,Nom du Champ DocType: Workflow State,certificate,certificat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Vérification… +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Votre affectation le {0} {1} a été supprimée apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,La première colonne de données doit être vide. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Afficher toutes les Versions apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Voir le commentaire @@ -428,12 +448,14 @@ DocType: User,Restrict IP,Restreindre l'IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Tableau de Bord apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Impossible d'envoyer des emails en ce moment apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Impossible de mettre à jour l'événement {0} dans Google Agenda, code d'erreur {1}." +DocType: Notification Log,Email Content,Contenu de l'e-mail apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Rechercher ou taper une commande DocType: Activity Log,Timeline Name,Nom de la Chronologie apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Un seul {0} peut être défini comme primaire. DocType: Email Account,e.g. smtp.gmail.com,e.g. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Ajouter une Nouvelle Règle DocType: Contact,Sales Master Manager,Directeur des Ventes +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Vous devez activer JavaScript pour que votre application fonctionne. DocType: User Permission,For Value,Pour la Valeur DocType: Event,Google Calendar ID,Identifiant Google Agenda apps/frappe/frappe/www/complete_signup.html,One Last Step,Une Dernière Étape @@ -448,6 +470,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Champ de prénom LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importer {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Autoriser l'accès à GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} est un champ obligatoire +DocType: DocType,Documentation Link,Lien vers la documentation apps/frappe/frappe/templates/includes/login/login.js,Login token required,Identifiants de Connexion Requis apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Classement mensuel: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Sélectionner plusieurs éléments de liste @@ -469,6 +492,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL du fichier DocType: Version,Table HTML,HTML de Table apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Ajouter des Abonnés +DocType: Notification Log,Energy Point,Energy Point apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Événements À Venir Aujourd'hui DocType: Google Calendar,Push to Google Calendar,Push to Google Agenda DocType: Notification Recipient,Email By Document Field,Email Par Champ de Document @@ -484,12 +508,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Indisponible DocType: Currency,Fraction Units,Fractions d’Unités apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} de {1} à {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marquer comme Terminé DocType: Chat Message,Type,Type DocType: Google Settings,OAuth Client ID,ID client OAuth DocType: Auto Repeat,Subject,Sujet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Retour au bureau DocType: Web Form,Amount Based On Field,Montant Basé sur le Champ +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} n'a aucune version suivie. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -512,6 +536,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Veuillez vérifier votre email pour validation apps/frappe/frappe/core/doctype/doctype/doctype.py,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 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,de DocType: Deleted Document,Deleted Name,Nom Supprimé apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Utilisateurs Système et Site Web DocType: Workflow Document State,Doc Status,Statut du Document @@ -522,6 +547,7 @@ DocType: Language,Language Code,Code de la Langue DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Remarque: par défaut, les e-mails pour les sauvegardes ayant échoué sont envoyés." apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Ajouter un filtre apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS envoyé aux numéros suivants : {0} +DocType: Notification Settings,Assignments,Affectations apps/frappe/frappe/utils/data.py,{0} and {1},{0} et {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Commencer une conversation. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Toujours ajouter ""Brouillon"" pour l'impression des documents brouillons" @@ -530,6 +556,7 @@ DocType: Data Migration Run,Current Mapping Start,Démarrage Mapping Actuel apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,L'Email a été marqué comme étant un spam DocType: Comment,Website Manager,Responsable du Site Web apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Envoi du Fichier Déconnecté. Veuillez Réessayer. +DocType: Data Import Beta,Show Failed Logs,Afficher les journaux ayant échoué apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Traductions apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Vous avez sélectionné des documents Brouillon ou Annulés apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Le document {0} a obtenu le statut {1} par {2} @@ -537,7 +564,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Document en Attente DocType: GSuite Templates,Destination ID,ID de Destination DocType: Desktop Icon,List,Liste DocType: Activity Log,Link Name,Nom du Lien +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Vous avez \ DocType: System Settings,mm/dd/yyyy,mm/jj/aaaa +DocType: Onboarding Slide,Onboarding Slide,Toboggan d'intégration apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Précedent @@ -598,6 +627,7 @@ DocType: Kanban Board Column,darkgrey,gris foncé apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Succès : {0} au {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Laissez tomber +DocType: Dashboard Chart,Aggregate Function Based On,Fonction d'agrégation basée sur apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Veuillez créer un duplicata pour faire des changements apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Appuyez sur Entrée pour enregistrer apps/frappe/frappe/utils/pdf.py,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) @@ -611,7 +641,9 @@ DocType: Notification,Days Before,Jours Précedents apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Les événements quotidiens devraient se terminer le même jour. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Modifier... DocType: Workflow State,volume-down,diminuer-volume +DocType: Onboarding Slide,Help Links,Liens d'aide apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accès non autorisé à partir de cette adresse IP +DocType: Notification Settings,Enable Email Notifications,Activer les notifications par e-mail apps/frappe/frappe/desk/reportview.py,No Tags,Aucune balise DocType: Email Account,Send Notification to,Envoyer une Notification à DocType: DocField,Collapsible,Réductible @@ -640,6 +672,7 @@ DocType: Google Drive,Last Backup On,Dernière sauvegarde activée DocType: Customize Form Field,Customize Form Field,Personnaliser un Champ de Formulaire DocType: Energy Point Rule,For Document Event,Pour documenter l'événement DocType: Website Settings,Chat Room Name,Nom de la Salle de Chat +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Inchangé DocType: OAuth Client,Grant Type,Type de Subvention apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Vérifier quels Documents sont lisibles par un Utilisateur DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -647,6 +680,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,util DocType: Auto Repeat,Quarterly,Trimestriel apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Tout le temps apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Statut de document non autorisé pour {0} DocType: Email Account,Enable Auto Reply,Activer la Réponse Automatique apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Non Vu @@ -659,6 +693,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Messa DocType: Email Account,Notify if unreplied,Notifier si aucune réponse apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Veuillez scanner le QR Code et entrer le code que vous recevez. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Activer les dégradés +DocType: Scheduled Job Type,Hourly Long,Toutes les heures DocType: System Settings,Minimum Password Score,Score Minimum de Mot de Passe DocType: DocType,Fields,Champ DocType: System Settings,Your organization name and address for the email footer.,Le nom de votre société et l'adresse pour le pied de l'email. @@ -666,11 +701,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Table Paren apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Sauvegarde terminée! apps/frappe/frappe/config/desktop.py,Developer,Développeur apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Créé Par +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Pour l'activer, suivez les instructions du lien suivant: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} à la ligne {1} ne peut pas avoir à la fois une URL et des sous-articles apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Il devrait y avoir au moins une ligne pour les tables suivantes: {0} DocType: Print Format,Default Print Language,Langue d'impression par défaut apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancêtres de apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Racine {0} ne peut pas être supprimée +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Aucun journal ayant échoué apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Pas encore de commentaires apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Veuillez configurer les SMS avant de les choisir comme méthode d'authentification apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Les champs DocType et Nom sont nécessaires @@ -694,6 +731,7 @@ DocType: Website Settings,Footer Items,Éléments du Pied de Page apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Valeur par Défaut DocType: Auto Repeat,Daily,Quotidien +DocType: Onboarding Slide,Max Count,Nombre max apps/frappe/frappe/config/users_and_permissions.py,User Roles,Rôles Utilisateur DocType: Property Setter,Property Setter overrides a standard DocType or Field property,L’Initialisateur de Propriété remplace un DocType standard ou la propriété d’un champ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Impossible d'effectuer la Mise à Jour : Lien Incorrect/Expiré @@ -712,6 +750,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hôte DocType: Data Import Beta,Import File,Importer le fichier +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Erreur de modèle apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Colonne {0} existe déjà. DocType: ToDo,High,Haut apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nouvel évènement @@ -727,6 +766,7 @@ DocType: Web Form Field,Show in filter,Afficher dans le filtre DocType: Address,Daman and Diu,Daman and Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projet DocType: Address,Personal,Personnel +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Paramètres d'impression bruts ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Voir https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region pour plus de détails. apps/frappe/frappe/config/settings.py,Bulk Rename,Renommer en Masse DocType: Email Queue,Show as cc,Afficher en tant que cc @@ -736,6 +776,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Prendre une vidéo DocType: Contact Us Settings,Introductory information for the Contact Us Page,Information d'Introduction pour la Page Contactez-nous DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,pouce-vers-le-bas +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Annulation de documents DocType: User,Send Notifications for Email threads,Envoyer des notifications pour les discussions par courrier électronique apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Pas en Mode Développeur @@ -743,7 +784,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,La sauvegar DocType: DocField,In Global Search,Dans la Recherche Globale DocType: System Settings,Brute Force Security,"Sécurité contre les attaques de type ""force brute""" DocType: Workflow State,indent-left,décaler-gauche -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} année (s) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Il est risqué de supprimer ce fichier : {0}. Veuillez contactez votre Administrateur Système. DocType: Currency,Currency Name,Nom de la Devise apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Aucun Email @@ -758,10 +798,12 @@ DocType: Energy Point Rule,User Field,Champ de l'utilisateur DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Transmission et Suppression apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} déjà désabonné pour {1} {2} +DocType: Scheduled Job Type,Stopped,Arrêté apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,N'a pas été retiré apps/frappe/frappe/desk/like.py,Liked,Aimé apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Envoyer Maintenant apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Autoriser l'invité DocType: Report,Query,Requête DocType: Customize Form,Sort Order,Ordre de Tri apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'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} @@ -783,10 +825,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Méthode d'Authentification à Double Facteur apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Commencez par définir le nom et enregistrez l’enregistrement. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 enregistrements +DocType: DocType Link,Link Fieldname,Link Fieldname apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Partagé avec {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Se Désinscrire DocType: View Log,Reference Name,Nom de la Référence apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Changer d'utilisateur +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Premier apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Mettre à jour les traductions DocType: Error Snapshot,Exception,Exception DocType: Email Account,Use IMAP,Utiliser IMAP @@ -800,6 +844,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Règles définissant la transition d'état dans le flux de travail DocType: File,Folder,Dossier DocType: Website Route Meta,Website Route Meta,Site Web Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Responsable de la Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Option 1 @@ -826,7 +871,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Dé apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurer les graphiques DocType: User,Last IP,Dernière Adresse IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,S'il vous plaît ajouter un sujet à votre email -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Un nouveau document {0} a été partagé avec vous {1}. DocType: Data Migration Connector,Data Migration Connector,Connecteur de Migration de Données apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} annulé {1} DocType: Email Account,Track Email Status,Suivi du statut des emails @@ -878,6 +922,7 @@ DocType: Email Account,Default Outgoing,Sortant par Défaut DocType: Workflow State,play,jouer apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Cliquez sur le lien ci-dessous pour compléter votre inscription et définir un nouveau mot de passe apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,N'a pas été ajouté +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} a gagné {1} points pour {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Aucun Compte de Messagerie Attribué DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Paramètres du Formulaire de Contact @@ -885,6 +930,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Recherche DocType: Workflow State,text-width,largeur-text apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Taille maximale des Pièces Jointes pour cet enregistrement est atteint. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Recherche par nom de fichier ou extension +DocType: Onboarding Slide,Slide Title,Titre de la diapositive DocType: Notification,View Properties (via Customize Form),Voir Les Propriétés (via Personnaliser le formulaire) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Cliquez sur un fichier pour le sélectionner. DocType: Note Seen By,Note Seen By,Note Vue Par @@ -911,13 +957,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL de partage DocType: System Settings,Allow Consecutive Login Attempts ,Autoriser des tentatives de connexion consécutives apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Une erreur s'est produite pendant le processus de paiement. Veuillez nous contacter s'il vous plait. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Si le type de diapositive est Créer ou Paramètres, il devrait y avoir une méthode 'create_onboarding_docs' dans le fichier {ref_doctype} .py à exécuter une fois la diapositive terminée." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{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 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Pas des descendants de DocType: Contact,Company Name,Nom de la Société DocType: Custom DocPerm,Role,Rôle -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Paramètres... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,à votre navigateur apps/frappe/frappe/utils/data.py,Cent,Centime ,Recorder,Enregistreur @@ -977,6 +1023,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Suivre si votre email a été ouvert par le destinataire.
Remarque: Si vous envoyez à plusieurs destinataires, même si 1 destinataire lit le courrier électronique, il sera considéré comme "ouvert"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Valeurs Manquantes Requises apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Autoriser l'accès aux contacts Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Limité DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Marquer comme non Lu DocType: Activity Log,Operation,Opération @@ -1029,6 +1076,7 @@ DocType: Web Form,Allow Print,Autoriser l'Impression DocType: Communication,Clicked,Cliqué apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Se désabonner apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Pas d'autorisation pour '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Veuillez configurer le compte de messagerie par défaut dans Configuration> E-mail> Compte de messagerie apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Prévu pour envoyer DocType: DocType,Track Seen,Suivre les Vues DocType: Dropbox Settings,File Backup,Sauvegarde de fichier @@ -1037,12 +1085,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Pas de {0} tr apps/frappe/frappe/config/customization.py,Add custom forms.,Ajouter des formulaires personnalisés. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0} : {1} à {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,a soumis ce document -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Le système offre de nombreux rôles prédéfinis. Vous pouvez ajouter de nouveaux rôles pour définir des autorisations plus fines . DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nom du déclencheur -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domaines +DocType: Onboarding Slide,Domains,Domaines DocType: Blog Category,Blog Category,Catégorie du Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Impossible de mapper parce la condition suivante échoue: DocType: Role Permission for Page and Report,Roles HTML,Rôles HTML @@ -1082,7 +1129,6 @@ DocType: Assignment Rule Day,Saturday,Samedi DocType: User,Represents a User in the system.,Représente un Utilisateur dans le système. DocType: List View Setting,Disable Auto Refresh,Désactiver l'actualisation automatique DocType: Comment,Label,Étiquette -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","La tâche {0}, que vous avez attribuée à {1}, a été fermée." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Veuillez fermer cette fenêtre DocType: Print Format,Print Format Type,Type de Format d'Impression DocType: Newsletter,A Lead with this Email Address should exist,Un Prospect avec cette Adresse Email devrait exister @@ -1099,6 +1145,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Paramètres SMTP pour l apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,choisir un DocType: Data Export,Filter List,Liste de filtres DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Message de Réponse Automatique DocType: Data Migration Mapping,Condition,Conditions apps/frappe/frappe/utils/data.py,{0} hours ago,Il y a {0} heures @@ -1117,12 +1164,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Contributeur à la Base de Connaissances DocType: Communication,Sent Read Receipt,Accusé Réception Envoyé DocType: Email Queue,Unsubscribe Method,Méthode de Désinscription +DocType: Onboarding Slide,Add More Button,Bouton Ajouter plus DocType: GSuite Templates,Related DocType,DocType Lié apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Modifier pour ajouter du contenu apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Sélectionner les Langues apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Détails de la carte apps/frappe/frappe/__init__.py,No permission for {0},Pas d'autorisation pour {0} DocType: DocType,Advanced,Avancé +DocType: Onboarding Slide,Slide Image Source,Slide Image Source apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Référence : {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Mme @@ -1139,6 +1188,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Maître DocType: DocType,User Cannot Create,L'utilisateur ne peut pas Créer apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fait avec succès apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Accès Dropbox approuvé! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Voulez-vous vraiment fusionner {0} avec {1}? DocType: Customize Form,Enter Form Type,Entrez le Type de Formulaire DocType: Google Drive,Authorize Google Drive Access,Autoriser l'accès à Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Paramètre manquant Nom du tableau Kanban @@ -1148,7 +1198,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Autorisation de DocType, DocType. Soyez prudent !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formats Personnalisés pour l'Impression, l'Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Somme de {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Mis à Jour vers la Nouvelle Version DocType: Custom Field,Depends On,Dépend De DocType: Kanban Board Column,Green,Vert DocType: Custom DocPerm,Additional Permissions,Autorisations Supplémentaires @@ -1176,6 +1225,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Agenda - Impossible de créer un agenda pour {0}, code d'erreur {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Modifier Ligne DocType: Workflow Action Master,Workflow Action Master,Actions de Base du Flux de Travail +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Supprimer tout DocType: Custom Field,Field Type,Type de Champ apps/frappe/frappe/utils/data.py,only.,seulement. DocType: Route History,Route History,Histoire de la route @@ -1212,11 +1262,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Mot de Passe Oublié ? DocType: System Settings,yyyy-mm-dd,aaaa-mm-jj apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Erreur du Serveur +DocType: Server Script,After Delete,Après la suppression apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Voir tous les rapports passés. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ID de Connexion est nécessaire DocType: Website Slideshow,Website Slideshow,Diaporama du Site web apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Aucune Donnée DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Lien vers la page d'accueil du site. Liens standard (index, connexion, produits, blog, à propos, contact)" +DocType: Server Script,After Submit,Après soumettre apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},L'authentification a échoué lors de la réception des emails depuis le Compte de Messagerie {0}. Message du serveur : {1} DocType: User,Banner Image,Image de la bannière DocType: Custom Field,Custom Field,Champ Personnalisé @@ -1257,15 +1309,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Si l'utilisateur a un rôle quelconque vérifié, il devient un ""Utilisateur Système"". L'""Utilisateur Système"" a accès au bureau" DocType: System Settings,Date and Number Format,Format de Date et Nombre apps/frappe/frappe/model/document.py,one of,l'un des -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Vérification un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Afficher les balises DocType: DocField,HTML Editor,Éditeur HTML 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 des autorisations d'utilisateur strictes"" est coché et que l'autorisation d'utilisateur est définie pour un DocType et 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur +DocType: DocType,Actions,Actions DocType: Workflow State,align-justify,aligné-justifié DocType: User,Middle Name (Optional),Deuxième Prénom (Optionnel) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Non Autorisé @@ -1280,6 +1330,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Aucun Résu DocType: System Settings,Security,Sécurité apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Prévu pour envoyer à {0} destinataires apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Couper +DocType: Server Script,After Save,Après l'enregistrement apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},renommé de {0} à {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} sur {1} ({2} lignes avec des enfants) DocType: Currency,**Currency** Master,Données de Base **Devise** @@ -1306,15 +1357,18 @@ DocType: Prepared Report,Filter Values,Valeurs du filtre DocType: Communication,User Tags,Balise Utilisateur DocType: Data Migration Run,Fail,Échec DocType: Workflow State,download-alt,Télécharger-alt +DocType: Scheduled Job Type,Last Execution,Dernière exécution DocType: Data Migration Run,Pull Failed,Échec de l'Extraction apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Afficher / masquer les cartes DocType: Communication,Feedback Request,Demande de Retour d'Expérience apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importer des données à partir de fichiers CSV / Excel apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Les champs suivants sont manquants : +DocType: Notification Log,From User,De l'utilisateur apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Annulation de {0} DocType: Web Page,Main Section,Section Principale DocType: Page,Icon,Icône apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Astuce: inclure des symboles, des chiffres et des majuscules dans le mot de passe" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configurez les notifications pour les mentions, les affectations, les points d'énergie et plus encore." DocType: DocField,Allow in Quick Entry,Autoriser dans les entrées rapides apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,jj/mm/aaaa @@ -1346,7 +1400,6 @@ DocType: Website Theme,Theme URL,URL du thème DocType: Customize Form,Sort Field,Champ de Tri DocType: Razorpay Settings,Razorpay Settings,Paramètres Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Modifier le Filtre -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Ajouter Plus DocType: System Settings,Session Expiry Mobile,Expiration de Session Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Utilisateur ou mot de passe incorrect apps/frappe/frappe/templates/includes/search_box.html,Search results for,Résultats de recherche pour @@ -1362,8 +1415,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Règle de point d'énergie DocType: Communication,Delayed,Différé apps/frappe/frappe/config/settings.py,List of backups available for download,Liste des sauvegardes disponibles au téléchargement +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Essayez la nouvelle importation de données apps/frappe/frappe/www/login.html,Sign up,S'inscrire apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Ligne {0}: impossible de désactiver Obligatoire pour les champs standard +DocType: Webhook,Enable Security,Activer la sécurité apps/frappe/frappe/config/customization.py,Dashboards,Tableaux de bord DocType: Test Runner,Output,Sortie DocType: Milestone,Track Field,Piste de course @@ -1371,6 +1426,7 @@ DocType: Notification,Set Property After Alert,Définir la Propriété Après l' apps/frappe/frappe/config/customization.py,Add fields to forms.,Ajouter des champs aux formulaires. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Ajouter un commentaire +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} vous a attribué une nouvelle tâche {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Taille de la police (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Seuls les DocTypes standard peuvent être personnalisés à partir de Personnaliser le formulaire. DocType: Email Account,Sendgrid,SendGrid @@ -1382,8 +1438,10 @@ DocType: Portal Menu Item,Portal Menu Item,Article du Menu Portail apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Définir les filtres DocType: Contact Us Settings,Email ID,ID Email DocType: Energy Point Rule,Multiplier Field,Champ multiplicateur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Impossible de créer la commande Razorpay. Veuillez contacter l'administrateur DocType: Dashboard Chart,Time Interval,Intervalle de temps DocType: Activity Log,Keep track of all update feeds,Gardez une trace de tous les flux de mise à jour +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} a partagé un document {1} {2} avec vous 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 @@ -1402,6 +1460,7 @@ DocType: DefaultValue,Key,Clé DocType: Address,Contacts,Contacts DocType: System Settings,Setup Complete,Configuration Terminée apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport de tous les partages de documents +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Le modèle d'importation doit être de type .csv, .xlsx ou .xls" apps/frappe/frappe/www/update-password.html,New Password,Nouveau Mot de Passe apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtre {0} manquant apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Désolé ! Vous ne pouvez pas supprimer les commentaires générés automatiquement @@ -1417,6 +1476,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Exécuter DocType: Blog Post,Content (HTML),Contenu (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Mis en place pour DocType: Personal Data Download Request,User Name,Nom d'utilisateur DocType: Workflow State,minus-sign,signe moins apps/frappe/frappe/public/js/frappe/request.js,Not Found,Non Trouvé @@ -1424,11 +1484,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Pas d’autorisation {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exporter les Autorisations Personnalisées apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Aucun article trouvé. DocType: Data Export,Fields Multicheck,Champs à choix multiples +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Achevée DocType: Activity Log,Login,Connexion DocType: Web Form,Payments,Paiements apps/frappe/frappe/www/qrcode.html,Hi {0},Bonjour {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Intégration de Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} a annulé vos points le {1} {2} DocType: System Settings,Enable Scheduled Jobs,Activer les Tâches Planifiées apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Remarques : apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inactif @@ -1453,6 +1513,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modèl apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Erreur d'autorisation apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nom de {0} ne peut pas être {1} DocType: User Permission,Applicable For,Applicable Pour +DocType: Dashboard Chart,From Date,A partir du apps/frappe/frappe/core/doctype/version/version_view.html,Success,Réussite apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,La Session a Expiré DocType: Kanban Board Column,Kanban Board Column,Colonne Tableau Kanban @@ -1464,7 +1525,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; non autorisé dans la condition DocType: Async Task,Async Task,Tâche Async DocType: Workflow State,picture,image -apps/frappe/frappe/www/complete_signup.html,Complete,Terminé +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Terminé DocType: DocType,Image Field,Champ d'Image DocType: Print Format,Custom HTML Help,Aide HTML Personnalisée DocType: LDAP Settings,Default Role on Creation,Rôle par défaut lors de la création @@ -1472,6 +1533,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,État Suivant DocType: User,Block Modules,Bloquer les Modules DocType: Print Format,Custom CSS,CSS Personnalisé +DocType: Energy Point Rule,Apply Only Once,Appliquer une seule fois apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Ajouter un commentaire DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignoré : {0} à {1} @@ -1483,6 +1545,7 @@ DocType: Email Account,Default Incoming,Entrant par Défaut DocType: Workflow State,repeat,répéter DocType: Website Settings,Banner,Bannière apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},La valeur doit être l'une des {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Annuler tous les documents 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Aller à la liste {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Aide lors de la Recherche @@ -1491,6 +1554,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Enregistré apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,La répétition automatique de ce document a été désactivée. DocType: DocType,Hide Copy,Masquer la Copie apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Effacer tous les rôles +DocType: Server Script,Before Save,Avant de sauvegarder apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} doit être unique apps/frappe/frappe/model/base_document.py,Row,Ligne apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC et Modèle d'Email" @@ -1501,7 +1565,6 @@ DocType: Chat Profile,Offline,Hors Ligne apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importé avec succès {0} DocType: User,API Key,Clé API DocType: Email Account,Send unsubscribe message in email,Envoyer un message de désabonnement dans l'email -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Modifier le Titre apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Nom du champ qui sera le DocType pour ce champ lié apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documents attribués à vous et par vous. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Vous pouvez également copier-coller cette @@ -1533,8 +1596,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Joindre l'Image DocType: Workflow State,list-alt,liste-alt apps/frappe/frappe/www/update-password.html,Password Updated,Mot de Passe Mis à Jour +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Étapes pour vérifier votre connexion apps/frappe/frappe/utils/password.py,Password not found,Mot de Passe non trouvé +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Longueur de la Page DocType: Email Queue,Expose Recipients,Exposer Destinataires apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Ajouter À est obligatoire pour les mails entrants @@ -1562,6 +1627,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Système DocType: Web Form,Max Attachment Size (in MB),Taille Max de la Pièce Jointe (en Mo) apps/frappe/frappe/www/login.html,Have an account? Login,Vous avez déjà un compte? Connexion +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Paramètres d'impression ... DocType: Workflow State,arrow-down,flèche-bas apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ligne {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Utilisateur non autorisé à supprimer {0} : {1} @@ -1582,6 +1648,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Entrez vo DocType: Dropbox Settings,Dropbox Access Secret,Secret d’Accès Dropbox DocType: Tag Link,Document Title,Titre du document apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatoire) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Il y a {0} an (s) DocType: Social Login Key,Social Login Provider,Fournisseur de connexion sociale apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Ajouter un Autre Commentaire apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Aucune donnée trouvée dans le fichier. Veuillez rattacher le nouveau fichier avec des données. @@ -1596,11 +1663,12 @@ DocType: Workflow State,hand-down,main vers le bas apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Aucun champ trouvé pouvant être utilisé comme colonne Kanban. Utilisez le formulaire de personnalisation pour ajouter un champ personnalisé de type "Sélectionner". DocType: Address,GST State,État GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Impossible de choisir Annuler sans Soumettre +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Utilisateur ({0}) DocType: Website Theme,Theme,Thème DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de Redirection Lié au Code Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Ouvrir l'aide DocType: DocType,Is Submittable,Est Soumissible -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nouvelle Mention +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nouvelle Mention apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Aucun nouveau contact Google synchronisé. DocType: File,Uploaded To Google Drive,Téléchargé sur Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,La valeur pour un champ de contrôle peut être 0 ou 1 @@ -1612,7 +1680,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Boîte de Réception DocType: Kanban Board Column,Red,Rouge DocType: Workflow State,Tag,Balise -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Le document ne peut pas être enregistré. DocType: Energy Point Rule,Maximum Points,Maximum de points apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mes Paramètres @@ -1642,9 +1710,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} points d'appréciation pour {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Les rôles peuvent être définis pour les utilisateurs à partir de leur page Utilisateur . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Ajouter un Commentaire +DocType: Dashboard Chart,Select Date Range,Sélectionnez la plage de dates DocType: DocField,Mandatory,Obligatoire apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module à Exporter +DocType: Scheduled Job Type,Monthly Long,Long mensuel apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : Aucune autorisation de base définie +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Envoyez un e-mail à {0} pour le lier ici apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Signification de Soumettre, Annuler, Modifier" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tâche à Faire @@ -1653,7 +1724,6 @@ DocType: Milestone Tracker,Track milestones for any document,Suivre les jalons p DocType: Social Login Key,Identity Details,Détails de l'identité apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},La transition d'état du flux de travail n'est pas autorisée de {0} à {1}. apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Afficher le tableau de bord -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nouveau Message DocType: File,Preview HTML,Aperçu HTML DocType: Desktop Icon,query-report,rapport-requête DocType: Data Import Beta,Template Warnings,Avertissements de modèles @@ -1664,18 +1734,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Lié avec apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Modifier les Paramètres des Rapports Automatiques par Email DocType: Chat Room,Message Count,Nombre de messages DocType: Workflow State,book,livre +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} est lié aux documents soumis suivants: {2} DocType: Communication,Read by Recipient,Lu par le destinataire DocType: Website Settings,Landing Page,Page d'Accueil apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Erreur dans le Script Personnalisé apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nom apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Aucune Autorisations définies pour ce critère. DocType: Auto Email Report,Auto Email Report,Rapport par Email Automatique +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nouveau document partagé apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Supprimer le commentaire ? DocType: Address Template,This format is used if country specific format is not found,Ce format est utilisé si un format spécifique au pays n'est pas trouvé DocType: System Settings,Allow Login using Mobile Number,Autoriser la Connexion en utilisant un Numéro de Téléphone Portable apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Si cette option est activée, les utilisateurs qui se connectent à partir d'une adresse IP restreinte ne seront pas invités à utiliser l'authentification à deux facteurs." +DocType: Server Script,After Cancel,Après annuler DocType: Auto Repeat,Get Contacts,Obtenir les contacts apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Messages déposés en vertu de {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saut de colonne sans titre @@ -1686,6 +1759,7 @@ 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 +DocType: Notification Log,Mention,Mention DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Polices apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,La précision doit être comprise entre 1 et 6 @@ -1693,7 +1767,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,et apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ce rapport a été généré le {0} DocType: Error Snapshot,Frames,Cadres -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Affectation +DocType: Notification Log,Assignment,Affectation DocType: Notification,Slack Channel,Canal Slack DocType: About Us Team Member,Image Link,Lien vers l'Image DocType: Auto Email Report,Report Filters,Filtres du Rapport @@ -1710,7 +1784,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Impossible de mettre à jour l'événement apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Le code de vérification a été envoyé à votre adresse e-mail enregistrée. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Étranglé +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Votre cible apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Le Filtre doit avoir 4 valeurs (doctype, nom du champ, opérateur, valeur) : {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Aucun nom spécifié pour {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Appliquer la règle d'assignation apps/frappe/frappe/utils/bot.py,show,montrer apps/frappe/frappe/utils/data.py,Invalid field name {0},Nom de champ {0} invalide @@ -1720,7 +1796,6 @@ DocType: Workflow State,text-height,Hauteur-texte DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapping du Plan de Migration de Données apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Démarrage de Frappé ... DocType: Web Form Field,Max Length,Longueur Max -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Pour {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,carte-repère apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Soumettre un ticket @@ -1756,6 +1831,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page manquante ou déplac apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Avis DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Paramètres de la Passerelle de Paiement Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} a gagné {1} point pour {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Récupère les images jointes du document DocType: Chat Room,Name,Nom DocType: Contact Us Settings,Skype,Skype @@ -1766,7 +1842,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Ouvrir Lien apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Votre Langue DocType: Dashboard Chart,Average,Moyenne apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Ajouter une Ligne -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Imprimante apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Requête doit être un SELECT DocType: Auto Repeat,Completed,Terminé @@ -1826,6 +1901,7 @@ DocType: GCalendar Account,Next Sync Token,Jeton de synchronisation suivant DocType: Energy Point Settings,Energy Point Settings,Paramètres de points d'énergie DocType: Async Task,Succeeded,Réussi apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Champs Obligatoires Requis : {0} +DocType: Onboarding Slide Field,Align,Aligner apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Réinitialiser des Autorisations pour {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utilisateurs et Autorisations DocType: S3 Backup Settings,S3 Backup Settings,Paramètres de sauvegarde S3 @@ -1842,7 +1918,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nouveau nom du format d'impression apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Cliquez sur le lien ci-dessous pour approuver la demande. DocType: Workflow State,align-left,aligné-gauche +DocType: Onboarding Slide,Action Settings,Paramètres d'action DocType: User,Defaults,Valeurs Par Défaut +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)." DocType: Energy Point Log,Revert Of,Revert de apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Fusionner avec existant DocType: User,Birth Date,Date de Naissance @@ -1898,6 +1976,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Dans DocType: Notification,Value Change,Modification de Valeur DocType: Google Contacts,Authorize Google Contacts Access,Autoriser l'accès à Google Contacts apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Afficher uniquement les champs numériques du rapport +apps/frappe/frappe/utils/data.py,1 week ago,Il ya 1 semaine DocType: Data Import Beta,Import Type,Type d'importation DocType: Access Log,HTML Page,Page HTML DocType: Address,Subsidiary,Filiale @@ -1907,7 +1986,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Avec en-tête de Lettre apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Serveur d'Envoi de Mail ou Port Invalide DocType: Custom DocPerm,Write,Écrire -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Seul l'Administrateur est autorisé à créer des Rapports de Requêtes / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Réactualisation DocType: Data Import Beta,Preview,Aperçu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Le champ ""Valeur"" est obligatoire. S'il vous plaît spécifiez la valeur devant être mise à jour" @@ -1917,6 +1995,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Inviter en DocType: Data Migration Run,Started,Commencé apps/frappe/frappe/permissions.py,User {0} does not have access to this document,L'utilisateur {0} n'a pas accès à ce document. DocType: Data Migration Run,End Time,Heure de Fin +DocType: Dashboard Chart,Group By Based On,Grouper par basé sur apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Sélectionner Pièces Jointes apps/frappe/frappe/model/naming.py, for {0},pour {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Vous n'êtes pas autorisé à imprimer ce document @@ -1958,6 +2037,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Vérifier DocType: Workflow Document State,Update Field,Mettre à jour le Champ DocType: Chat Profile,Enable Chat,Activer le chat DocType: LDAP Settings,Base Distinguished Name (DN),"""Distinguished Name"" (DN) de base" +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Se désinscrire apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Options non définis pour le champ lié {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,File d'attente / travailleur @@ -2024,12 +2104,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Connexion non autorisée pour le moment DocType: Data Migration Run,Current Mapping Action,Action de cartographie actuelle DocType: Dashboard Chart Source,Source Name,Nom de la Source -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Aucun compte de messagerie associé à l'utilisateur. Veuillez ajouter un compte sous Utilisateur> Boîte de réception par courrier électronique. DocType: Email Account,Email Sync Option,Option de Synchronisation d'Email apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rangée No DocType: Async Task,Runtime,Temps d’Exécution DocType: Post,Is Pinned,Est épinglé DocType: Contact Us Settings,Introduction,Introduction +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Besoin d'aide? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Épingler globalement apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Suivi par DocType: LDAP Settings,LDAP Email Field,Champ Email LDAP @@ -2039,7 +2119,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Déjà da DocType: User Email,Enable Outgoing,Activer Sortant DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Balises personnalisées -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Veuillez créer un nouveau compte de messagerie depuis Configuration> E-mail> Compte de messagerie DocType: Comment,Submitted,Soumis DocType: Contact,Pulled from Google Contacts,Tiré de Google Contacts apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Requête invalide @@ -2060,9 +2139,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Accueil / D apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Attribuer à moi DocType: DocField,Dynamic Link,Lien Dynamique apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Appuyez sur la touche Alt pour déclencher des raccourcis supplémentaires dans les menus et la barre latérale. +DocType: Dashboard Chart,To Date,Jusqu'au DocType: List View Setting,List View Setting,Réglage de la vue liste apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Afficher emplois échoués -DocType: Event,Details,Détails +DocType: Scheduled Job Log,Details,Détails DocType: Property Setter,DocType or Field,DocType ou Champ apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Vous avez non suivi ce document apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Couleur primaire @@ -2070,7 +2150,6 @@ DocType: Communication,Soft-Bounced,Soft-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Si cette option est activée, tous les utilisateurs peuvent se connecter à partir de n'importe quelle adresse IP à l'aide de l'authentification à deux facteurs. Cela peut également être défini uniquement pour des utilisateurs spécifiques dans la page Utilisateur" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,La Clé Publiable ou la Clé Secrète est erronée !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Aide Rapide pour Définir les Autorisations -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype auquel affecter les balises apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Afficher les Rechutes apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,L'Email a été déplacé dans la corbeille DocType: Report,Report Builder,Éditeur de Rapports @@ -2085,6 +2164,7 @@ DocType: Workflow State,Upload,Charger DocType: User Permission,Advanced Control,Contrôle avancé DocType: System Settings,Date Format,Format de Date apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Non Publié +apps/frappe/frappe/contacts/doctype/address/address.py,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 n'a été trouvé. Veuillez en créer un nouveau dans Configuration> Impression et image de marque> Modèle d'adresse. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Actions pour le flux de travail (par exemple Approuver, Annuler)." DocType: Data Import,Skip rows with errors,Ignorer les lignes avec des erreurs DocType: Workflow State,flag,drapeau @@ -2094,7 +2174,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Impr apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Aller au champ DocType: Contact Us Settings,Forward To Email Address,Transférer à l'Adresse Email DocType: Contact Phone,Is Primary Phone,Est le téléphone primaire -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envoyez un courrier électronique à {0} pour le lier ici. DocType: Auto Email Report,Weekdays,Jours de la semaine apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} enregistrements seront exportés apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Champ Titre doit être un nom de champ valide @@ -2102,7 +2181,7 @@ DocType: Post Comment,Post Comment,Poster un commentaire apps/frappe/frappe/config/core.py,Documents,Documents apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Journal d'activité par DocType: Social Login Key,Custom Base URL,URL de base personnalisée -DocType: Email Flag Queue,Is Completed,Est Complété +DocType: Onboarding Slide,Is Completed,Est Complété apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Obtenir des champs apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Modifier le Profil DocType: Kanban Board Column,Archived,Archivé @@ -2113,11 +2192,12 @@ 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. DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Aujourd'hui +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Aujourd'hui apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Soumettre après importation DocType: Error Log,Log of Scheduler Errors,Journal des Erreurs du Planificateur DocType: User,Bio,Biographie +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Lien d'aide sur l'intégration des diapositives DocType: OAuth Client,App Client Secret,Secret Client de l'App apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Soumission apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parent est le nom du document auquel les données seront ajoutées. @@ -2125,7 +2205,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,MAJUSCULE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML Personnalisé apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Entrez le nom du dossier -apps/frappe/frappe/contacts/doctype/address/address.py,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é. Veuillez en créer un nouveau depuis Configuration> Impression et création de marque> Modèle d'adresse. apps/frappe/frappe/auth.py,Unknown User,Utilisateur Inconnu apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Sélectionner le Rôle DocType: Comment,Deleted,Supprimé @@ -2141,7 +2220,7 @@ DocType: Chat Token,Chat Token,Jeton de Chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Créer un graphique apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne pas importer -DocType: Web Page,Center,Centre +DocType: Onboarding Slide Field,Center,Centre DocType: Notification,Value To Be Set,Valeur à Définir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Modifier {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Premier niveau @@ -2149,7 +2228,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nom de la Base de Données apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Actualiser le Formulaire DocType: DocField,Select,Sélectionner -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Voir le journal complet +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Voir le journal complet DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expression Python simple, Exemple: status == 'Open' et tapez == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Fichier joint manquant apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Connexion perdue. Certaines fonctionnalités peuvent ne pas fonctionner. @@ -2181,6 +2260,7 @@ DocType: Web Page,HTML for header section. Optional,HTML pour la section d'en-t apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Cette fonctionnalité est toute nouvelle et encore expérimentale apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maximum {0} lignes autorisés DocType: Dashboard Chart Link,Chart,Graphique +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Se Désabonner Globalement apps/frappe/frappe/utils/password_strength.py,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,View,Vue @@ -2197,6 +2277,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Détail de la Condition apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Pour la devise {0}, le montant minimum de la transaction doit être {1}" DocType: DocField,Print Hide,Cacher à l'Impression +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,À l'utilisateur apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Entrez une Valeur DocType: Workflow State,tint,teinte @@ -2263,6 +2344,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code pour l apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Ajouter à la Liste des Tâches DocType: Footer Item,Company,Société apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Moyenne de {0} +DocType: Scheduled Job Log,Scheduled,Prévu DocType: User,Logout from all devices while changing Password,Déconnecter de tous les appareils lors de la modification du mot de passe apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Vérifier Le Mot De Passe apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Il y a eu des erreurs @@ -2288,7 +2370,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,L'autorisation de l'utilisateur existe déjà apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mappage de la colonne {0} sur le champ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Voir {0} -DocType: User,Hourly,Horaire +DocType: Scheduled Job Type,Hourly,Horaire apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Inscrire App Client OAuth DocType: DocField,Fetch If Empty,Chercher si vide DocType: Data Migration Connector,Authentication Credentials,Informations d'Authentification @@ -2299,10 +2381,10 @@ DocType: SMS Settings,SMS Gateway URL,URL de la Passerelle SMS apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},gagné par {0} via la règle automatique {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ou {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Vous êtes tous prêts! DocType: Workflow State,trash,corbeille DocType: System Settings,Older backups will be automatically deleted,Les anciennes sauvegardes seront automatiquement supprimées apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID de clé d'accès ou clé d'accès secrète invalide. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Vous avez perdu des points d'énergie DocType: Post,Is Globally Pinned,Est globalement épinglé apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Activité récente DocType: Workflow Transition,Conditions,Conditions @@ -2311,6 +2393,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confirmé DocType: Event,Ends on,Se termine le DocType: Payment Gateway,Gateway,Passerelle DocType: LDAP Settings,Path to Server Certificate,Chemin d'accès au certificat de serveur +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript est désactivé sur votre navigateur apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Pas assez d'autorisations pour voir les liens apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Le Titre de l'Adresse est obligatoire. DocType: Google Contacts,Push to Google Contacts,Push to Google Contacts @@ -2329,7 +2412,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Si cette case est cochée, les lignes contenant des données valides seront importées et les lignes non valides seront enregistrées dans un nouveau fichier que vous pourrez importer ultérieurement." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document est modifiable uniquement par les utilisateurs du rôle -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","La tâche {0}, que vous avez attribuée à {1}, a été fermée par {2}." DocType: Print Format,Show Line Breaks after Sections,Afficher les Sauts de Ligne après Sections DocType: Communication,Read by Recipient On,Lu par le destinataire sur DocType: Blogger,Short Name,Nom Court @@ -2361,6 +2443,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Assi DocType: Translation,PR sent,PR envoyé DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Envoyer Uniquement les Enregistrements Mis à Jour au cours des X Dernières Heures DocType: Communication,Feedback,Retour d’Expérience +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Mise à jour vers une nouvelle version 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Ouvrir la traduction apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ce courrier électronique est autogénéré DocType: Workflow State,Icon will appear on the button,L'icône apparaîtra sur le bouton @@ -2399,6 +2482,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Page non t DocType: DocField,Precision,Précision DocType: Website Slideshow,Slideshow Items,Articles du Diaporama apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Essayez d'éviter les mots et les caractères répétés +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Notifications désactivées +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Voulez-vous vraiment supprimer toutes les lignes? DocType: Workflow Action,Workflow State,État du Flux de Travail apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Lignes Ajoutées apps/frappe/frappe/www/list.py,My Account,Mon Compte @@ -2407,6 +2492,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Jours Suivants apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Connexion bac QZ active! DocType: Contact Us Settings,Settings for Contact Us Page,Paramètres de la Page Contactez Nous +DocType: Server Script,Script Type,Type de Script DocType: Print Settings,Enable Print Server,Activer le serveur d'impression apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Il y a {0} semaines DocType: Email Account,Footer,Pied de Page @@ -2432,8 +2518,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Avertissement apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Cela peut être imprimé sur plusieurs pages DocType: Data Migration Run,Percent Complete,Pourcentage d'Avancement -DocType: Tag Category,Tag Category,Catégorie de balise -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs entre 5 et 10)." DocType: Google Calendar,Pull from Google Calendar,Tirez de Google Agenda apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Aide DocType: User,Login Before,Connexion Jusqu'à @@ -2443,17 +2527,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Masquer les week-ends apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Génère automatiquement des documents récurrents. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Est +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-signe apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valeur pour {0} ne peut pas être une liste DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Comment cette devise doit-elle être formatée ? Si ce n’est pas défini, les paramètres par défaut du système seront utilisés" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Soumettre {0} documents ? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Erreur de connexion à l'application QZ Tray ...

Vous devez avoir installé et exécuté l'application QZ Tray pour utiliser la fonction d'impression brute.

Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Cartographie d'imprimante apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Veuillez enregistrer avant de joindre une pièce. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Voulez-vous annuler tous les documents liés? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Ajouté {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},"FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}" apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Autorisations du Rôle DocType: Help Article,Intermediate,Intermédiaire +apps/frappe/frappe/config/settings.py,Email / Notifications,Notifications par email apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} remplacé {1} par {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Le document annulé a été restauré en tant que brouillon DocType: Data Migration Run,Start Time,Heure de Début @@ -2470,6 +2558,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Pe apps/frappe/frappe/email/smtp.py,Invalid recipient address,Adresse de destinataire invalide DocType: Workflow State,step-forward,vers-l'avant DocType: System Settings,Allow Login After Fail,Nombre d'échecs maximum de connexion +DocType: DocType Link,DocType Link,Lien DocType DocType: Role Permission for Page and Report,Set Role For,Définir le Rôle Pour DocType: GCalendar Account,The name that will appear in Google Calendar,Le nom qui apparaîtra dans Google Agenda apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,La pièce directe avec {0} existe déjà. @@ -2486,6 +2575,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Créer un DocType: Contact,Google Contacts,Google Contacts DocType: GCalendar Account,GCalendar Account,Compte GCalendar DocType: Email Rule,Is Spam,Est Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Dernier apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Ouvrir {0} DocType: Data Import Beta,Import Warnings,Avertissements d'importation @@ -2497,6 +2587,7 @@ DocType: Workflow State,ok-sign,ok-signe apps/frappe/frappe/config/settings.py,Deleted Documents,Documents Supprimés apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Le format CSV est sensible à la casse apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,L'Icône du Bureau existe déjà +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Spécifiez dans quels domaines tous les diapositives doivent apparaître. Si rien n'est spécifié, la diapositive est affichée dans tous les domaines par défaut." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dupliquer apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: le champ {1} de la ligne {2} ne peut pas être masqué et obligatoire sans valeur par défaut DocType: Newsletter,Create and Send Newsletters,Créer et Envoyer des Newsletters @@ -2507,6 +2598,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Identifiant d'événement Google Agenda apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Parent"" indique la table parent dans laquelle cette ligne doit être ajouté" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Points de révision: +DocType: Scheduled Job Log,Scheduled Job Log,Journal des travaux planifiés +DocType: Server Script,Before Delete,Avant de supprimer apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Partagé Avec apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Joindre des fichiers / URL et ajouter un tableau. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Message non configuré @@ -2529,19 +2622,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Paramètres de la page À Propos apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Paramètres de la passerelle de paiement Stripe apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imprimer Envoyé à l'imprimante! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Points d'énergie +DocType: Notification Settings,Energy Points,Points d'énergie +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},L'heure {0} doit être au format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,e.g. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Générer des clés apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Cela supprimera définitivement vos données. DocType: DocType,View Settings,Paramètres d'Affichage +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nouvelle notification DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Structure de la demande +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Méthode de contrôleur get_razorpay_order manquante DocType: Personal Data Deletion Request,Pending Verification,En attente de vérification DocType: Website Meta Tag,Website Meta Tag,Tag méta de site Web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Si port non standard (par exemple 587). Si vous utilisez Google Cloud, essayez le port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Réinitialisation de la date de fin, car les pages ne peuvent pas être publiées dans le passé." DocType: User,Send Me A Copy of Outgoing Emails,M'envoyer une Copie des E-mails Sortants -DocType: System Settings,Scheduler Last Event,Dernier Événement du Calendrier DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Ajouter l'ID de Google Analytics : e.g. UA-89XXX57-1. Veuillez chercher de l'aide sur Google Analytics pour plus d'informations. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Mot de Passe ne peut pas contenir plus de 100 caractères DocType: OAuth Client,App Client ID,ID Client de l'App @@ -2570,6 +2665,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nouveau Mot d apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} a partagé ce document avec {1} DocType: Website Settings,Brand Image,Logo DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Le modèle d'importation doit contenir un en-tête et au moins une ligne. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Agenda a été configuré. apps/frappe/frappe/config/website.py,"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 @@ -2579,6 +2675,7 @@ DocType: User Social Login,User Social Login,Connexion sociale de l'utilisat apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} a critiqué votre travail sur {1} avec {2} points DocType: Contact,All,Tous DocType: Email Queue,Recipient,Destinataire +DocType: Webhook,Webhook Security,Sécurité du Webhook DocType: Communication,Has Attachment,A Une Pièce Jointe DocType: Address,Sales User,Chargé de Ventes apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Outil Glisser/Déposer pour construire et personnaliser les Formats d'Impression. @@ -2645,7 +2742,6 @@ DocType: Data Migration Mapping,Migration ID Field,ID du champ de migration DocType: Dashboard Chart,Last Synced On,Dernière synchronisation sur DocType: Comment,Comment Type,Type de Commentaire DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} a critiqué votre travail sur {1} {2} DocType: Assignment Rule,Users,Utilisateurs DocType: Address,Odisha,Odisha DocType: Report,Report Type,Type de Rapport @@ -2670,14 +2766,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Objet du Diaporama du Sit apps/frappe/frappe/model/workflow.py,Self approval is not allowed,L'auto-approbation n'est pas autorisée DocType: GSuite Templates,Template ID,ID du Modèle apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,La combinaison du type de subvention ( {0} ) et du type de réponse ( {1} ) n'est pas autorisée -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nouveau Message de {0} DocType: Portal Settings,Default Role at Time of Signup,Rôle au Moment de l’Inscription par Défaut DocType: DocType,Title Case,Casse du Titre apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Cliquez sur le lien ci-dessous pour télécharger vos données. apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Activé la boîte de réception électronique pour l'utilisateur {0} DocType: Data Migration Run,Data Migration Run,Lancement de la Migration de Données DocType: Blog Post,Email Sent,Email Envoyé -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Plus âgée DocType: DocField,Ignore XSS Filter,Ignorer le Filtre XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,retiré apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Paramètres de sauvegarde Dropbox @@ -2732,6 +2826,7 @@ DocType: Async Task,Queued,File d'Attente DocType: Braintree Settings,Use Sandbox,Utiliser Sandbox apps/frappe/frappe/utils/goal.py,This month,Ce mois-ci apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nouveau Format d'Impression Personnalisé +DocType: Server Script,Before Save (Submitted Document),Avant de sauvegarder (document soumis) DocType: Custom DocPerm,Create,Créer apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Pas plus d'articles à afficher apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Aller à l'enregistrement précédent @@ -2788,6 +2883,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Mettre À la Corbeille DocType: Web Form,Web Form Fields,Champs de Formulaire Web DocType: Data Import,Amended From,Modifié Depuis +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Ajoutez un lien vidéo d'aide au cas où l'utilisateur n'aurait aucune idée de quoi remplir la diapositive. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Attention : Impossible de trouver {0} dans tout tableau relatif au {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ce document est actuellement en attente d'exécution. Veuillez réessayer @@ -2809,6 +2905,7 @@ DocType: Blog Post,Blog Post,Article de Blog DocType: Access Log,Export From,Exporter de apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Recherche Avancée apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Vous n'êtes pas autorisé à consulter la newsletter. +DocType: Dashboard Chart,Group By,Grouper Par DocType: User,Interests,Intérêts apps/frappe/frappe/core/doctype/user/user.py,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 DocType: Energy Point Rule,Allot Points To Assigned Users,Allouer des points à des utilisateurs assignés @@ -2824,6 +2921,7 @@ DocType: Assignment Rule,Assignment Rule,Règle d'assignation apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Nom d'Utilisateur Suggérée : {0} DocType: Assignment Rule Day,Day,Jour apps/frappe/frappe/public/js/frappe/desk.js,Modules,Modules +DocType: DocField,Mandatory Depends On,Obligatoire dépend de apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Paiement Effectué avec Succès apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Pas de courrier {0} DocType: OAuth Bearer Token,Revoked,Révoqué @@ -2831,6 +2929,7 @@ DocType: Web Page,Sidebar and Comments,Barre Latérale et Commentaires apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Vous n'êtes pas autorisé à joindre un document {0}, veuillez activer ""Autoriser l'impression"" pour {0} dans les paramètres d'impression." +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Le compte de messagerie n'est pas configuré. Veuillez créer un nouveau compte de messagerie dans Configuration> E-mail> Compte de messagerie apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Voir le document à l'adresse {0} DocType: Stripe Settings,Publishable Key,Clé Publiable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Démarrer l'import @@ -2844,13 +2943,13 @@ DocType: Currency,Fraction,Fraction apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Événement synchronisé avec Google Agenda. DocType: LDAP Settings,LDAP First Name Field,Champ Prénom LDAP DocType: Contact,Middle Name,Deuxième Nom +DocType: DocField,Property Depends On,La propriété dépend DocType: Custom Field,Field Description,Description du Champ apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nom non défini via l’Invite apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Boîte de Réception apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Mise à jour de {0} sur {1}, {2}" DocType: Auto Email Report,Filters Display,Affichage des Filtres apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Le champ "modified_from" doit être présent pour effectuer un amendement. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} a apprécié votre travail sur {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Enregistrer les filtres DocType: Address,Plant,Usine apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Répondre à Tous @@ -2891,11 +2990,11 @@ DocType: Workflow State,folder-close,fermer-dossier apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Rapport: DocType: Print Settings,Print taxes with zero amount,Impression de taxes avec un montant nul apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ne peut pas être renommé +DocType: Server Script,Before Insert,Avant l'insertion DocType: Custom Script,Custom Script,Script Personnalisé DocType: Address,Address Line 2,Adresse Ligne 2 DocType: Address,Reference,Référence apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Assigné À -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Veuillez configurer le compte de messagerie par défaut à partir de Configuration> E-mail> Compte de messagerie DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Détail du Mapping de Migration de Données DocType: Data Import,Action,Action DocType: GSuite Settings,Script URL,URL du Script @@ -2921,11 +3020,13 @@ DocType: User,Api Access,Accès API DocType: DocField,In List View,En Vue en Liste DocType: Email Account,Use TLS,Utiliser TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Identifiant ou mot de passe invalide +DocType: Scheduled Job Type,Weekly Long,Longue semaine apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Télécharger le Modèle apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Ajouter du javascript aux formulaires. ,Role Permissions Manager,Gestionnaire d’Autorisations du Rôle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nom du nouveau Format d'Impression apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Afficher/Cacher la barre latérale +DocType: Server Script,After Save (Submitted Document),Après l'enregistrement (document soumis) DocType: Data Migration Run,Pull Insert,Extraction et Insertion DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Maximum de points permis après avoir multiplié les points avec la valeur du multiplicateur (Remarque: pour aucune limite, laissez ce champ vide ou définissez 0)" @@ -2945,6 +3046,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Non Installé apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Télécharger avec les données apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valeurs modifiées pour {0} {1} +DocType: Server Script,Before Cancel,Avant d'annuler DocType: Workflow State,hand-right,main-droite DocType: Website Settings,Subdomain,Sous-domaine DocType: S3 Backup Settings,Region,Région @@ -2990,12 +3092,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Ancien Mot De Passe DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Messages de {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Pour formater des colonnes, donnez des étiquettes de colonne dans la requête." +DocType: Onboarding Slide,Slide Fields,Champs de diapositive DocType: Has Domain,Has Domain,A un Domaine DocType: User,Allowed In Mentions,Autorisé dans les mentions apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Vous n’avez pas encore de compte ? Inscrivez-vous apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Impossible de supprimer le champ ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : Impossible de définir ‘Assigner Modifier’ si non Soumissible DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Documents souscrits apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Paramètres utilisateur DocType: Report,Reference Report,Rapport de référence DocType: Activity Log,Link DocType,DocType du Lien @@ -3013,6 +3117,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoriser l'accès apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La page que vous recherchez est manquante. Cela pourrait être dû au fait qu’elle a été déplacée ou il y a une faute de frappe dans le lien. apps/frappe/frappe/www/404.html,Error Code: {0},Code d'erreur : {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Texte de description pour l'affichage en liste, quelques lignes seulement. (Max 140 caractères)" +DocType: Server Script,DocType Event,Événement DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sont des champs obligatoires DocType: Workflow,Allow Self Approval,Autoriser l'auto-approbation DocType: Event,Event Category,Catégorie d'événement @@ -3029,6 +3134,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Votre Nom apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connecté avec succès DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Une diapositive d'intégration du type de diapositive Continuer existe déjà. DocType: DocType,Default Sort Field,Champ de tri par défaut DocType: File,Is Folder,Est un Dossier DocType: Document Follow,DocType,DocType @@ -3067,8 +3173,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valeurs DocType: Workflow State,arrow-up,flèche-haut DocType: Dynamic Link,Link Document Type,Lien Type de document apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Il devrait y avoir au moins une ligne pour la table {0} +DocType: Server Script,Server Script,Script de serveur apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Pour configurer la répétition automatique, activez "Autoriser la répétition automatique" à partir de {0}." DocType: OAuth Bearer Token,Expires In,Expire Dans +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Le nombre de fois que vous souhaitez répéter l'ensemble de champs (par exemple: si vous voulez 3 clients dans la diapositive, définissez ce champ sur 3. Seul le premier ensemble de champs est affiché comme obligatoire dans la diapositive)" DocType: DocField,Allow on Submit,Autoriser à la Soumission DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Type d'Exception @@ -3078,6 +3186,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,En-Têtes apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Evénements à venir apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Veuillez entrer des valeurs pour la Clé d’Accès à l’App et la Clé Secrète de l’App +DocType: Email Account,Append Emails to Sent Folder,Ajouter des e-mails au dossier envoyé DocType: Web Form,Accept Payment,Accepter Paiement apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Sélectionner un élément de la liste apps/frappe/frappe/config/core.py,A log of request errors,Un journal des erreurs de requête @@ -3096,7 +3205,7 @@ DocType: Translation,Contributed,Contribué apps/frappe/frappe/config/customization.py,Form Customization,Personnalisation de formulaire apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aucune Session Active DocType: Web Form,Route to Success Link,Lien vers le succès -DocType: Top Bar Item,Right,Droit +DocType: Onboarding Slide Field,Right,Droit apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Aucun événement à venir DocType: User,User Type,Type d'Utilisateur DocType: Prepared Report,Ref Report DocType,Réf Rapport DocType @@ -3114,6 +3223,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Veuillez réessa apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',L'URL doit commencer par 'http: //' ou 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Option 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ça ne peut pas être annulé DocType: Workflow State,Edit,Modifier DocType: Website Settings,Chat Operators,Opérateurs du Chat DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3125,7 +3235,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,{0} doit être une option par Défaut -DocType: Tag Doc Category,Tag Doc Category,Document pour la catégorie de balise apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Paysage. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nom de champ non valide: {0} DocType: Milestone,Milestone,Étape importante @@ -3134,7 +3243,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Aller à {0} apps/frappe/frappe/email/queue.py,Emails are muted,Les Emails sont mis en sourdine apps/frappe/frappe/config/integrations.py,Google Services,Services Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Haut -apps/frappe/frappe/utils/data.py,1 weeks ago,Il y a 1 semaine +DocType: Onboarding Slide,Slide Description,Description de la diapositive DocType: Communication,Error,Erreur apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Veuillez d'abord configurer un message DocType: Auto Repeat,End Date,Date de Fin @@ -3155,10 +3264,12 @@ DocType: Footer Item,Group Label,Étiquette du Groupe DocType: Kanban Board,Kanban Board,Tableau Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts a été configuré. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 enregistrement sera exporté +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Aucun compte de messagerie associé à l'utilisateur. Veuillez ajouter un compte sous Utilisateur> Boîte de réception de messagerie. DocType: DocField,Report Hide,Cacher le Rapport apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Arborescence indisponible pour {0} DocType: DocType,Restrict To Domain,Restreindre au Domaine DocType: Domain,Domain,Domaine +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL de fichier non valide. Veuillez contacter l'administrateur système. DocType: Custom Field,Label Help,Aide d’Étiquette DocType: Workflow State,star-empty,étoile-vide apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Les Dates sont souvent faciles à deviner. @@ -3183,6 +3294,7 @@ DocType: Workflow State,hand-left,main-gauche DocType: Data Import,If you are updating/overwriting already created records.,Si vous mettez à jour / écrasez des enregistrements déjà créés. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Est Global DocType: Email Account,Use SSL,Utiliser SSL +DocType: Webhook,HOOK-.####,CROCHET-.#### DocType: Workflow State,play-circle,cercle-jouer apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Le document n'a pas pu être attribué correctement apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression","Expression ""depends_on"" non valide" @@ -3199,6 +3311,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Dernier rafraîchi apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pour le type de document DocType: Workflow State,arrow-right,flèche-droite +DocType: Server Script,API Method,Méthode API DocType: Workflow State,Workflow state represents the current state of a document.,L'état du flux de travail représente l'état actuel d'un document. DocType: Letter Head,Letter Head Based On,Tête de lettre basée sur apps/frappe/frappe/utils/oauth.py,Token is missing,Le Jeton est manquant @@ -3238,6 +3351,7 @@ DocType: Comment,Relinked,Reconnecté DocType: Print Settings,Compact Item Print,Impression de l'Article Compacté DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL de Redirection +DocType: Onboarding Slide Field,Placeholder,Espace réservé DocType: SMS Settings,Enter url parameter for receiver nos,Entrez le paramètre url pour le nombre de destinataires DocType: Chat Profile,Online,En Ligne DocType: Email Account,Always use Account's Name as Sender's Name,Toujours utiliser le nom du compte comme nom de l'expéditeur @@ -3247,7 +3361,6 @@ DocType: Workflow State,Home,Accueil DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,L'utilisateur peut se connecter en utilisant son Email ou son Nom d'Utilisateur DocType: Workflow State,question-sign,point-interrogation -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} est désactivé apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Le champ "route" est obligatoire pour les vues Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Insérer une colonne avant {0} DocType: Energy Point Rule,The user from this field will be rewarded points,L'utilisateur de ce champ recevra des points @@ -3272,6 +3385,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Si Responsable DocType: Data Migration Mapping,Push,Transmission apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Déposez les fichiers ici DocType: OAuth Authorization Code,Expiration time,Date d'Expiration +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Documents ouverts DocType: Web Page,Website Sidebar,Barre Latérale du Site Web DocType: Web Form,Show Sidebar,Afficher la Barre Latérale apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Vous devez être connecté pour accéder à ce(tte) {0}. @@ -3287,6 +3401,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Raccourcis g DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Impossible de trouver {0} dans {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Les noms et prénoms par eux-mêmes sont faciles à deviner. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Document renommé de {0} à {1} apps/frappe/frappe/config/website.py,Knowledge Base,Base de Connaissances DocType: Workflow State,briefcase,malette (briefcase) apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Valeur ne peut pas être modifiée pour {0} @@ -3323,6 +3438,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format d'Impression apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Afficher/Cacher la vue en grille apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Aller au prochain enregistrement +DocType: System Settings,Time Format,Format de l'heure apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Identifiant de la Passerelle de Paiement Invalides DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,C'est le fichier modèle généré uniquement avec les lignes ayant une erreur. Vous devriez utiliser ce fichier pour la correction et l'import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Définir les Autorisations des Rôles sur les Types de Documents. @@ -3365,12 +3481,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Répondre apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Pages sur le Bureau (espaces réservés) DocType: DocField,Collapsible Depends On,Réductible Dépends de DocType: Print Style,Print Style Name,Nom du Style d'Impression +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Le champ Group By est requis pour créer un tableau de bord DocType: Print Settings,Allow page break inside tables,Autoriser les sauts de page dans les tables DocType: Email Account,SMTP Server,Serveur SMTP DocType: Print Format,Print Format Help,Aide pour le Format d'Impression apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} salle doit avoir au plus un utilisateur. DocType: DocType,Beta,Bêta DocType: Dashboard Chart,Count,Compter +DocType: Dashboard Chart,Group By Type,Regrouper par type apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nouveau commentaire sur {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restauré(e) {0} comme {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Si vous mettez à jour, veuillez sélectionner ""Écraser"" sinon les lignes déjà existantes ne seront pas supprimées." @@ -3381,14 +3499,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profil de DocType: Web Form,Web Form,Formulaire Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La date {0} doit être au format: {1} DocType: About Us Settings,Org History Heading,Rubriques Histoire Org +DocType: Scheduled Job Type,Scheduled Job Type,Type de travail planifié DocType: Print Settings,Allow Print for Cancelled,Autoriser l'Impression si Annulé DocType: Communication,Integrations can use this field to set email delivery status,Les intégrations peuvent utiliser ce champ pour définir l'email du statut de la livraison +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Vous n'êtes pas autorisé à annuler tous les documents liés. DocType: Web Form,Web Page Link Text,Texte du Lien de la Page Web DocType: Page,System Page,Page Système apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Définir format par défaut, la taille de la page, le style d'impression etc." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personnalisations pour {0} exportées vers:
{1} DocType: Website Settings,Include Search in Top Bar,Inclure la Recherche dans la Bar du Haut +DocType: Scheduled Job Type,Daily Long,Daily Long DocType: GSuite Settings,Allow GSuite access,Autoriser l'accès à GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nom @@ -3491,6 +3612,7 @@ DocType: Notification,Send days before or after the reference date,Envoyer jours DocType: User,Allow user to login only after this hour (0-24),Autoriser l'utilisateur à se connecter seulement après cette heure (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Attribuer un par un, dans l'ordre" DocType: Integration Request,Subscription Notification,Notification d'abonnement +DocType: Customize Form Field, Allow in Quick Entry ,Autoriser la saisie rapide apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ou attacher un DocType: Auto Repeat,Start Date,Date de Début apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Valeur @@ -3505,6 +3627,7 @@ DocType: Google Drive,Backup Folder ID,ID du dossier de sauvegarde apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Pas en Mode Développeur! Configurez le dans site_config.json ou créez un DocType 'Custom'. DocType: Workflow State,globe,globe DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,Vidéo DocType: Assignment Rule,Priority,Priorité DocType: Email Queue,Unsubscribe Param,Paramètre de Désinscription DocType: DocType,Hide Sidebar and Menu,Masquer la barre latérale et le menu @@ -3516,6 +3639,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Autoriser l'import (via l'o apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Nombre Réel DocType: Print Settings,Page Settings,Paramètres de la Page +DocType: Notification Settings,Notification Settings,Paramètres de notification apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Sauvegarde en cours... apps/frappe/frappe/www/update-password.html,Invalid Password,Mot de Passe Invalide apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Enregistrement {0} importé avec succès sur {1}. @@ -3531,6 +3655,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Image en tête de lettre DocType: Address,Party GSTIN,GSTIN du Tiers +DocType: Scheduled Job Type,Cron Format,Format Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,Rapport {0} DocType: SMS Settings,Use POST,Utiliser le POST DocType: Communication,SMS,SMS @@ -3575,18 +3700,20 @@ DocType: Workflow,Allow approval for creator of the document,Autoriser l'approba apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Enregistrer le rapport DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,Args de paramètres API +DocType: DocType Action,Server Action,Action du serveur apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Le champ parent doit être un nom de champ valide apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Échec lors de la modification de l'abonnement DocType: LDAP Settings,LDAP Group Field,Champ de groupe LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Document souscrit à la notification apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Égal à apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Format CSV Invalide -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Erreur de connexion à l'application QZ Tray ...

L'application QZ Tray doit être installée et en cours d'exécution pour que vous puissiez utiliser la fonction d'impression brute.

Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Définir Nombre de Sauvegardes DocType: DocField,Do not allow user to change after set the first time,Ne pas permettre à l'utilisateur de changer après avoir défini le premier paramétrage apps/frappe/frappe/utils/data.py,1 year ago,Il y a 1 an +DocType: DocType,Links Section,Section Liens apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Voir le journal de tous les événements d'impression, de téléchargement et d'exportation" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mois DocType: Contact,Contact,Contact @@ -3613,16 +3740,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nouvel Email DocType: Custom DocPerm,Export,Exporter apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Pour utiliser Google Agenda, activez {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Ajout également du champ de dépendance de statut {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Mise à jour réussie {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Tray Failed: DocType: Dropbox Settings,Dropbox Settings,Paramètres Dropbox DocType: About Us Settings,More content for the bottom of the page.,Plus de contenu pour le bas de la page. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ce document a été annulé apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Sauvegarde de Google Drive réussie. +DocType: Webhook,Naming Series,Nom de série DocType: Workflow,DocType on which this Workflow is applicable.,DocType pour lequel ce Flux de Travail est applicable. DocType: User,Enabled,Activé apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Échec de l'installation apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nouveau {0}: {1} -DocType: Tag Category,Category Name,Nom de la Catégorie +DocType: Blog Category,Category Name,Nom de la Catégorie apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Le parent est requis pour obtenir les données de la table enfant apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importer les Abonnés DocType: Print Settings,PDF Settings,Paramètres PDF @@ -3658,6 +3788,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Calendrier apps/frappe/frappe/client.py,No document found for given filters,Aucun document trouvé pour ces filtres apps/frappe/frappe/config/website.py,A user who posts blogs.,Un utilisateur qui publie des blogs. +DocType: DocType Action,DocType Action,Action DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Un autre {0} avec le nom {1} existe, choisir un autre nom" DocType: DocType,Custom?,Personnaliser ? DocType: Website Settings,Website Theme Image,Image du Thème du Site Web @@ -3667,6 +3798,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Impossibl apps/frappe/frappe/config/integrations.py,Backup,Sauvegarde apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Un type de document est requis pour créer un tableau de bord DocType: DocField,Read Only,Lecture Seule +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Impossible de créer la commande razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nouvelle Newsletter DocType: Energy Point Log,Energy Point Log,Journal Energy Point DocType: Print Settings,Send Print as PDF,Envoyer Imprimer en PDF @@ -3692,16 +3824,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con apps/frappe/frappe/www/login.html,Or login with,Ou connectez-vous avec DocType: Error Snapshot,Locals,Locaux apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Communiquée par {0} sur {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} vous a mentionné dans un commentaire dans {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Sélectionner groupe par ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} est nécessaire DocType: Integration Request,Integration Type,Type d'Intégration DocType: Newsletter,Send Attachements,Envoyer Pièces Jointes +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Aucun filtre trouvé apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Intégration de Google Contacts. DocType: Transaction Log,Transaction Log,Journal des transactions apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistiques basées sur les performances du mois dernier (de {0} à {1}) DocType: Contact Us Settings,City,Ville +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Masquer les cartes pour tous les utilisateurs apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Activez Autoriser la répétition automatique pour le type de document {0} dans Personnaliser le formulaire. DocType: DocField,Perm Level,Niveau d'Autorisation apps/frappe/frappe/www/confirm_workflow_action.html,View document,Voir le document @@ -3712,6 +3845,7 @@ DocType: Blog Category,Blogger,Blogueur DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Si activé, les modifications apportées au document sont suivies et affichées dans la chronologie." apps/frappe/frappe/core/doctype/doctype/doctype.py,'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} DocType: Energy Point Log,Appreciation,Appréciation +DocType: Dashboard Chart,Number of Groups,Nombre de groupes apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Voir La Liste DocType: Workflow,Don't Override Status,Ne pas Remplacer le Statut apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Terme de recherche @@ -3753,7 +3887,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-nord-ouest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Nombre limite de sauvegardes de base de données DocType: Custom DocPerm,Level,Niveau -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Les 30 derniers jours DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Le montant doit être supérieur à 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Connecté à QZ Tray! @@ -3770,6 +3903,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Sélectionnez la table des enfants apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Action primaire de déclenchement apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Changement +DocType: Social Login Key,User ID Property,Propriété ID utilisateur DocType: Email Domain,domain name,Nom de Domaine DocType: Contact Email,Contact Email,Email du Contact DocType: Kanban Board Column,Order,Commande @@ -3792,7 +3926,7 @@ DocType: Contact,Last Name,Nom de Famille DocType: Event,Private,Privé apps/frappe/frappe/email/doctype/notification/notification.js,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,Parti +DocType: Onboarding Slide Field,Left,Parti DocType: Event,All Day,Toute la Journée apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,On dirait que quelque chose ne va pas dans la configuration de la passerelle de paiement de ce site. Aucun paiement n'a été effectué. DocType: GCalendar Settings,State,État @@ -3824,7 +3958,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Paramètres de passerelle apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Texte dans le type de document -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Exécuter les Tests apps/frappe/frappe/handler.py,Logged Out,Déconnecté apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,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 @@ -3840,6 +3973,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Résumé DocType: Event,Event Participants,Participants à l'événement DocType: Auto Repeat,Frequency,Fréquence +DocType: Onboarding Slide,Slide Order,Ordre des diapositives DocType: Custom Field,Insert After,Insérer Après DocType: Event,Sync with Google Calendar,Synchroniser avec Google Agenda DocType: Access Log,Report Name,Nom du Rapport @@ -3867,6 +4001,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Contenu de la page web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Ajouter un Nouveau Rôle +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visitez la page Web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nouvelle affectation DocType: Google Contacts,Last Sync On,Dernière synchronisation le DocType: Deleted Document,Deleted Document,Document Supprimé apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oups ! Quelque chose a mal tourné @@ -3877,7 +4013,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paysage apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensions de script côté client en Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Les enregistrements pour les doctypes suivants seront filtrés -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planificateur inactif +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planificateur inactif DocType: Blog Settings,Blog Introduction,Introduction du Blog DocType: Global Search Settings,Search Priorities,Priorités de recherche DocType: Address,Office,Bureau @@ -3887,12 +4023,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Lien de tableau de bord DocType: User,Email Settings,Paramètres d'Email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Déposer ici DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Si cette option est activée, l'utilisateur peut se connecter à partir de n'importe quelle adresse IP à l'aide de l'authentification à deux facteurs. Cette option peut également être définie pour tous les utilisateurs dans les paramètres système." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Paramètres de l'imprimante ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Veuillez Entrer votre Mot de Passe pour Continuer apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Moi apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} pas un État valide apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Appliquer à tous les types de documents -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Point d'énergie +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Point d'énergie +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Exécuter les travaux uniquement quotidiennement si inactif pendant (jours) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}’ DocType: Chat Message,Room Type,Type de chambre DocType: Data Import Beta,Import Log Preview,Importer l'aperçu du journal @@ -3901,6 +4037,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-cercle DocType: LDAP Settings,LDAP User Creation and Mapping,Création et mappage d'utilisateurs LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Vous pouvez trouver des choses en demandant 'trouver orange dans clients' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Événements du jour apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Désolé ! Les utilisateurs devraient avoir un accès complet à leur propre dossier. ,Usage Info,Infos d'Usage apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Afficher les raccourcis clavier @@ -3917,6 +4054,7 @@ DocType: DocField,Unique,Unique apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apprécié le {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Succès Partiel DocType: Email Account,Service,Service +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur DocType: File,File Name,Nom du Fichier apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nous n'avons pas trouvé {0} pour {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3930,6 +4068,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Terminer DocType: GCalendar Settings,Enable,Activer DocType: Google Maps Settings,Home Address,Adresse du Domicile apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Vous pouvez seulement charger jusqu'à 5000 enregistrement en une seule fois. (peut-être moins dans certains cas) +DocType: Report,"output in the form of `data = [columns, result]`","sortie sous la forme de `data = [colonnes, résultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Types de documents applicables apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Définissez des règles pour les affectations d'utilisateurs. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Autorisation Insuffisante Pour {0} @@ -3945,7 +4084,6 @@ DocType: Communication,To and CC,Pour et CC DocType: SMS Settings,Static Parameters,Paramètres Statiques DocType: Chat Message,Room,Chambre apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},mis à jour pour {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Les tâches en arrière-plan ne sont pas en cours d'exécution. S'il vous plaît contacter l'administrateur DocType: Portal Settings,Custom Menu Items,Éléments du Menu Personnalisés apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Toutes les images jointes au diaporama du site Web doivent être publiques DocType: Workflow State,chevron-right,chevron-droit @@ -3960,11 +4098,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valeurs sélectionnées DocType: DocType,Allow Auto Repeat,Autoriser la répétition automatique apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Aucune valeur à afficher +DocType: DocType,URL for documentation or help,URL de documentation ou d'aide DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Modèle d'email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} enregistrement mis à jour avec succès. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},L'utilisateur {0} n'a pas d'accès au type de document via l'autorisation de rôle pour le document {1}. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Un login et un mot de passe sont requis +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Laisser\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Veuillez actualiser pour obtenir la dernière version du document. DocType: User,Security Settings,Paramètres de Sécurité apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Ajouter une Colonne @@ -3974,6 +4114,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Meta de Filtre apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Veuillez trouver ci-joint {0}: {1} DocType: Web Page,Set Meta Tags,Définir les balises méta +DocType: Email Account,Use SSL for Outgoing,Utiliser SSL pour les sorties 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: S3 Backup Settings,Backup Limit,Limite de Sauvegarde DocType: Dashboard Chart,Line,Ligne @@ -4006,4 +4147,3 @@ DocType: DocField,Ignore User Permissions,Ignorer les Autorisations des Utilisat apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Enregistré avec succès apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Veuillez demander à votre administrateur de vérifier votre inscription DocType: Domain Settings,Active Domains,Domaines Actifs -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Afficher le Journal diff --git a/frappe/translations/gu.csv b/frappe/translations/gu.csv index b9b9c8cfd6..3cf0554704 100644 --- a/frappe/translations/gu.csv +++ b/frappe/translations/gu.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,રકમ ક્ષેત્ર પસંદ કરો. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,આયાત ફાઇલ લોડ કરી રહ્યું છે ... DocType: Assignment Rule,Last User,છેલ્લો વપરાશકર્તા -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","એક નવી કાર્ય, {0}, {1} દ્વારા અસાઇન કરવામાં આવ્યો છે. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,સત્ર ડિફોલ્ટ સાચવ્યું apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ફાઇલ ફરીથી લોડ કરો DocType: Email Queue,Email Queue records.,ઇમેઇલ કતાર રેકોર્ડ. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} વૃક્ DocType: User,User Emails,વપરાશકર્તા ઇમેઇલ્સ DocType: User,Username,વપરાશકર્તા નામ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip આયાત કરો +DocType: Scheduled Job Type,Create Log,લોગ બનાવો apps/frappe/frappe/model/base_document.py,Value too big,ભાવ ખૂબ મોટી DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ચલાવો સ્ક્રિપ્ટ ટેસ્ટ @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,માસિક DocType: Address,Uttarakhand,ઉત્તરાખંડ DocType: Email Account,Enable Incoming,ઇનકમિંગ સક્ષમ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ડેન્જર -DocType: Address,Email Address,ઈ - મેઈલ સરનામું +apps/frappe/frappe/www/login.py,Email Address,ઈ - મેઈલ સરનામું DocType: Workflow State,th-large,મી મોટા DocType: Communication,Unread Notification Sent,મોકલ્યું ન વાંચેલ સૂચન apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,નિકાસ મંજૂરી નથી. તમે નિકાસ કરવા {0} ભૂમિકા જરૂર છે. @@ -83,10 +83,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,પ્રકાશિત ક્ષેત્ર છે DocType: GCalendar Settings,GCalendar Settings,GCalendar સેટિંગ્સ DocType: Email Group,Email Group,ઇમેઇલ ગ્રુપ +apps/frappe/frappe/__init__.py,Only for {},માટે જ {} DocType: Event,Pulled from Google Calendar,ગૂગલ કેલેન્ડરથી ખેંચ્યું DocType: Note,Seen By,દ્વારા જોઈ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,મલ્ટીપલ ઉમેરો -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,તમે કેટલાક ઉર્જા પોઇન્ટ મેળવ્યા છે apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,કોઈ માન્ય વપરાશકર્તા છબી નથી DocType: Energy Point Log,Reverted,પાછું ફેરવ્યું DocType: Success Action,First Success Message,પ્રથમ સફળ સંદેશ @@ -94,6 +94,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ન ગમે apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ખોટો કિંમત: {0} હોવા જ જોઈએ {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","બદલો ક્ષેત્ર ગુણધર્મો (છુપાવો, ફક્ત વાંચવા, પરવાનગી વગેરે)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,પ્રશંસા કરો +DocType: Notification Settings,Document Share,દસ્તાવેજ શેર DocType: Workflow State,lock,લોક apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,અમારો સંપર્ક પેજમાં માટે સુયોજનો. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,સંચાલક લૉગ માં @@ -107,6 +108,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","જો સક્ષમ કરેલ હોય, તો દસ્તાવેજ જોયું તરીકે ચિહ્નિત થયેલ છે, જ્યારે કોઈ વપરાશકર્તા તેને ખોલે છે" DocType: Auto Repeat,Repeat on Day,દિવસ પર પુનરાવર્તન કરો DocType: DocField,Color,રંગ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,બધાને વાંચો તરીકે ચિહ્નિત કરો DocType: Data Migration Run,Log,પ્રવેશ કરો DocType: Workflow State,indent-right,ઇન્ડેન્ટ અધિકાર DocType: Has Role,Has Role,ભૂમિકા છે @@ -124,6 +126,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ટ્રેસબેક બતાવો DocType: DocType,Default Print Format,મૂળભૂત પ્રિન્ટ ફોર્મેટ DocType: Workflow State,Tags,ટૅગ્સ +DocType: Onboarding Slide,Slide Type,સ્લાઇડ પ્રકાર apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,નહીં: વર્કફ્લો ઓવરને અંતે apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","બિન-અનન્ય હાલની કિંમતો કારણ કે ત્યાં {0} ક્ષેત્ર, {1} તરીકે અનન્ય સેટ કરી શકાય છે" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,દસ્તાવેજ પ્રકાર @@ -133,7 +136,6 @@ DocType: Language,Guest,ગેસ્ટ DocType: DocType,Title Field,શીર્ષક ક્ષેત્ર DocType: Error Log,Error Log,ભૂલ લોગ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,અમાન્ય URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,છેલ્લા 7 દિવસ apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",""Abcabcabc" માત્ર સહેજ કઠણ "abc" કરતાં ધારી હોય છે, જેમ પુનરાવર્તન" DocType: Notification,Channel,ચેનલ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","તમે આ અનધિકૃત લાગે છે, તો સંચાલક પાસવર્ડ બદલવા વિનંતી." @@ -152,6 +154,7 @@ DocType: OAuth Authorization Code,Client,ક્લાઈન્ટ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,કૉલમ પસંદ કરો apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,તમે તેને લોડ કર્યા પછી આ સ્વરૂપ સુધારાઈ ગયેલ છે DocType: Address,Himachal Pradesh,હિમાચલ પ્રદેશ +DocType: Notification Log,Notification Log,સૂચના લ Logગ DocType: System Settings,"If not set, the currency precision will depend on number format","જો તે સેટ નથી, ચલણ ચોકસાઇ સંખ્યા ફોર્મેટ પર આધારિત છે" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ઓપન અદ્ભુતબાર apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","એવું લાગે છે કે સર્વરની પટ્ટી ગોઠવણી સાથે સમસ્યા છે. નિષ્ફળતાના કિસ્સામાં, રકમ તમારા એકાઉન્ટમાં પરત કરાશે." @@ -161,7 +164,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,મોકલો DocType: Workflow Action Master,Workflow Action Name,વર્કફ્લો ક્રિયા નામ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Doctype મર્જ કરી શકાતા નથી -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,નથી એક ઝિપ ફાઇલ DocType: Global Search DocType,Global Search DocType,વૈશ્વિક શોધ ડ Docકટાઇપ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -174,7 +177,9 @@ DocType: Newsletter,Email Sent?,ઇમેઇલ મોકલ્યો છે? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ટૉગલ ચાર્ટ apps/frappe/frappe/desk/form/save.py,Did not cancel,રદ કરી હતી DocType: Social Login Key,Client Information,ક્લાયન્ટ માહિતી +DocType: Energy Point Rule,Apply this rule only once per document,દસ્તાવેજ દીઠ માત્ર એક વાર આ નિયમ લાગુ કરો DocType: Workflow State,plus,વત્તા +DocType: DocField,Read Only Depends On,ફક્ત વાંચવા પર આધાર રાખે છે apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,મહેમાન અથવા સંચાલક તરીકે પ્રવેશેલ DocType: Email Account,UNSEEN,અદ્રશ્ય apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ફાઇલ વ્યવસ્થાપક @@ -198,9 +203,11 @@ DocType: Communication,BCC,બીસીસી DocType: Unhandled Email,Reason,કારણ 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,કોઈ પ્રવૃત્તિ નથી +DocType: Server Script,Script Manager,સ્ક્રિપ્ટ મેનેજર +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,કોઈ પ્રવૃત્તિ નથી apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,થર્ડ પાર્ટી એપ્લિકેશન્સ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,સિસ્ટમ વ્યવસ્થાપક બનશે પ્રથમ વપરાશકર્તા (જો તમે આ બદલી શકો છો). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,આજે કોઈ ઘટનાઓ નથી apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,તમે તમારી જાતને સમીક્ષા પોઇન્ટ આપી શકતા નથી apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,પસંદ કરેલ ડૉક ઇવેન્ટ માટે ડોકટાઇપ સબમીટબલ હોવો આવશ્યક છે DocType: Workflow State,circle-arrow-up,વર્તુળ તીર અપ @@ -248,6 +255,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} અપડેટ કરી રહ્યું છે apps/frappe/frappe/core/doctype/report/report.js,Disable Report,અક્ષમ કરો જાણ કરો DocType: Translation,Contributed Translation Doctype Name,ફાળો આપ્યો અનુવાદ ડોકટાઇપ નામ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો DocType: PayPal Settings,Redirect To,રીડાયરેક્ટ DocType: Data Migration Mapping,Pull,ખેંચો DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},જાવાસ્ક્રિપ્ટ ફોર્મેટ: frappe.query_reports ['REPORTNAME'] = {} @@ -261,6 +269,7 @@ DocType: DocShare,Internal record of document shares,દસ્તાવેજ DocType: Energy Point Settings,Review Levels,સમીક્ષા સ્તર DocType: Workflow State,Comment,ટિપ્પણી DocType: Data Migration Plan,Postprocess Method,પોસ્ટપ્રોસેસ પદ્ધતિ +DocType: DocType Action,Action Type,ક્રિયા પ્રકાર apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ફોટો પાડ DocType: Assignment Rule,Round Robin,રાઉન્ડ રોબિન apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","તમે તેમને સુધારો, પછી તેમને રદ અને દ્વારા સબમિટ દસ્તાવેજો બદલી શકો છો." @@ -274,6 +283,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,તરીકે જમા કરવુ DocType: Comment,Seen,દેખાય apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,વધુ વિગતો બતાવો +DocType: Server Script,Before Submit,સબમિટ કરતા પહેલા DocType: System Settings,Run scheduled jobs only if checked,ચકાસાયેલ તો માત્ર સુનિશ્ચિત નોકરી ચલાવો apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,માત્ર જો વિભાગ મથાળાની સક્ષમ છે બતાવવામાં આવશે apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,આર્કાઇવ @@ -286,10 +296,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ડ્રૉપબૉક્સ ઍ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,કસ્ટમ સ્ક્રિપ્ટના add_fetch ગોઠવણીમાં ખોટું ફિલ્ડ નામ {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ગૂગલ સંપર્કો પસંદ કરો કે જેમાં સંપર્ક સમન્વયિત થવો જોઈએ. DocType: Web Page,Main Section (HTML),મુખ્ય વિભાગ (એચટીએમએલ) +DocType: Scheduled Job Type,Annual,વાર્ષિક DocType: Workflow State,headphones,હેડફોન apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,પાસવર્ડ જરૂરી અથવા પ્રતીક્ષામાં પાસવર્ડ પસંદ કરો છે DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,દા.ત. replies@yourcomany.com. બધા જવાબો આ ઇનબૉક્સ આવશે. DocType: Slack Webhook URL,Slack Webhook URL,સ્લૅક વેહૂક યુઆરએલ (URL) +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","વિઝાર્ડમાં સ્લાઇડનો ક્રમ નક્કી કરે છે. જો સ્લાઇડ પ્રદર્શિત થવાની નથી, તો અગ્રતા 0 પર સેટ થવી જોઈએ." DocType: Data Migration Run,Current Mapping,વર્તમાન મેપિંગ apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,માન્ય ઇમેઇલ અને નામ જરૂરી apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,બધા જોડાણોને ખાનગી બનાવો @@ -312,6 +324,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,ટ્રાન્ઝિશન નિયમો apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,પૂર્વાવલોકનમાં ફક્ત પ્રથમ {0} પંક્તિઓ બતાવી રહ્યું છે apps/frappe/frappe/core/doctype/report/report.js,Example:,ઉદાહરણ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,પ્રતિબંધો DocType: Workflow,Defines workflow states and rules for a document.,એક દસ્તાવેજ માટે વર્કફ્લો સ્ટેટ્સ અને નિયમો વ્યાખ્યાયિત કરે છે. DocType: Workflow State,Filter,ફિલ્ટર apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},વધુ માહિતી માટે ભૂલ લોગ તપાસો: {0} @@ -323,6 +336,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,જોબ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} લૉગ આઉટ: {1} DocType: Address,West Bengal,પશ્ચિમ બંગાળ +DocType: Onboarding Slide,Information,માહિતી apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: સોંપો Submittable જો નહિં, તો સબમિટ સેટ કરી શકાતો નથી" DocType: Transaction Log,Row Index,રો ઇન્ડેક્સ DocType: Social Login Key,Facebook,ફેસબુક @@ -340,7 +354,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,દ્વ DocType: Web Form,Button Help,બટન મદદ DocType: Kanban Board Column,purple,જાંબલી DocType: About Us Settings,Team Members,ટીમના સભ્યો +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,નિષ્ક્રિય સાઇટ્સ માટે દિવસમાં માત્ર એક વાર સુનિશ્ચિત નોકરીઓ ચલાવશે. ડિફaultલ્ટ 4 દિવસ જો 0 પર સેટ હોય. DocType: Assignment Rule,System Manager,સિસ્ટમ વ્યવસ્થાપક +DocType: Scheduled Job Log,Scheduled Job,અનુસૂચિત જોબ DocType: Custom DocPerm,Permissions,પરવાનગીઓ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,આંતરિક સંકલન માટે સ્લૅક વેબહૂક્સ DocType: Dropbox Settings,Allow Dropbox Access,ડ્રૉપબૉક્સ ઍક્સેસ માટે પરવાનગી આપે છે @@ -392,6 +408,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,બ DocType: Email Flag Queue,Email Flag Queue,ઇમેઇલ ધ્વજ કતાર DocType: Access Log,Columns / Fields,ક Colલમ / ક્ષેત્રો apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,પ્રિન્ટ ફોર્મેટ્સ માટે સ્ટાઇલશીટ્સ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,ડેશબોર્ડ ચાર્ટ બનાવવા માટે એકંદર કાર્ય ક્ષેત્ર આવશ્યક છે apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ઓપન ઓળખી શકો છો {0}. કંઈક બીજું પ્રયાસ કરો. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,તમારી માહિતી સબમિટ કરવામાં આવી છે apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} વપરાશકર્તા કાઢી શકાતી નથી @@ -407,11 +424,12 @@ DocType: Property Setter,Field Name,ફીલ્ડ નામ DocType: Assignment Rule,Assign To Users,વપરાશકર્તાઓને સોંપો apps/frappe/frappe/public/js/frappe/utils/utils.js,or,અથવા apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,મોડ્યુલ નામ ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ચાલુ રાખો +DocType: Onboarding Slide,Continue,ચાલુ રાખો apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google એકત્રિકરણ અક્ષમ કર્યું છે. DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,પ્રમાણપત્ર apps/frappe/frappe/templates/includes/login/login.js,Verifying...,ચકાસી રહ્યું છે ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1} પરની તમારી સોંપણી દૂર કરવામાં આવી છે apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,ફર્સ્ટ ડેટા કોલમ ખાલી હોવા જ જોઈએ. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,બધા આવૃત્તિઓ બતાવો apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,ટિપ્પણી જુઓ @@ -420,12 +438,14 @@ DocType: Energy Point Log,Review,સમીક્ષા DocType: User,Restrict IP,IP નિયંત્રિત apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ડેશબોર્ડ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,આ સમયે ઇમેઇલ્સ મોકલવા માટે અસમર્થ +DocType: Notification Log,Email Content,ઇમેઇલ સામગ્રી apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,શોધ અથવા આદેશ લખો DocType: Activity Log,Timeline Name,સમયરેખા નામ apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,ફક્ત એક {0} પ્રાથમિક તરીકે સેટ કરી શકાય છે. DocType: Email Account,e.g. smtp.gmail.com,દા.ત. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,આ નવો નિયમ ઉમેરો DocType: Contact,Sales Master Manager,સેલ્સ માસ્ટર વ્યવસ્થાપક +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,તમારી એપ્લિકેશનને કાર્ય કરવા માટે તમારે જાવાસ્ક્રિપ્ટને સક્ષમ કરવાની જરૂર છે. DocType: User Permission,For Value,મૂલ્ય માટે DocType: Event,Google Calendar ID,Google કૅલેન્ડર ID apps/frappe/frappe/www/complete_signup.html,One Last Step,એક છેલ્લું પગલું @@ -440,6 +460,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,એલડીએપી મધ્ય apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} ના {0} આયાત કરી રહ્યું છે DocType: GCalendar Account,Allow GCalendar Access,GCalendar ઍક્સેસને મંજૂરી આપો apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ફરજિયાત ક્ષેત્ર છે +DocType: DocType,Documentation Link,દસ્તાવેજીકરણ લિંક apps/frappe/frappe/templates/includes/login/login.js,Login token required,લૉગિન ટોકન જરૂરી apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,માસિક ક્રમ: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,બહુવિધ સૂચિ આઇટમ્સ પસંદ કરો @@ -461,6 +482,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ફાઈલ URL DocType: Version,Table HTML,કોષ્ટક HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,ઉમેદવારો ઉમેરો +DocType: Notification Log,Energy Point,એનર્જી પોઇન્ટ apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,આજે આવનારી પ્રવૃત્તિઓ DocType: Google Calendar,Push to Google Calendar,ગૂગલ કેલેન્ડર પર દબાણ કરો DocType: Notification Recipient,Email By Document Field,દસ્તાવેજ ક્ષેત્ર દ્વારા ઇમેઇલ @@ -476,7 +498,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,અવે DocType: Currency,Fraction Units,અપૂર્ણાંક એકમો apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} થી {1} માટે {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,પૂર્ણ તરીકે માર્ક કરો DocType: Chat Message,Type,પ્રકાર DocType: Google Settings,OAuth Client ID,OAuth ક્લાયંટ ID DocType: Auto Repeat,Subject,વિષય @@ -504,6 +525,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,ચકાસણી માટે તમારા ઇમેઇલ તપાસો apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ગણો ફોર્મ ઓવરને અંતે ન હોઈ શકે DocType: Communication,Bounced,Bounced +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ની DocType: Deleted Document,Deleted Name,ડિલીટ નામ apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,સિસ્ટમ અને વેબસાઇટ વપરાશકર્તાઓ DocType: Workflow Document State,Doc Status,ડૉક સ્થિતિ @@ -514,6 +536,7 @@ DocType: Language,Language Code,ભાષા કોડ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,નોંધ: નિષ્ફળ બેકઅપ્સ માટે ડિફૉલ્ટ ઇમેઇલ્સ દ્વારા મોકલવામાં આવે છે apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,ફિલ્ટર ઉમેરો apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},એસએમએસ નીચેના નંબરો પર મોકલવામાં: {0} +DocType: Notification Settings,Assignments,સોંપણીઓ apps/frappe/frappe/utils/data.py,{0} and {1},{0} અને {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,વાતચીત શરૂ કરો DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",હંમેશા પ્રિન્ટીંગ ડ્રાફ્ટ દસ્તાવેજો માટે મથાળું "ડ્રાફ્ટ" ઉમેરો @@ -522,6 +545,7 @@ DocType: Data Migration Run,Current Mapping Start,વર્તમાન મે apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ઇમેઇલ સ્પામ તરીકે માર્ક કરવામાં આવી છે DocType: Comment,Website Manager,વેબસાઇટ મેનેજર apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ફાઇલ અપલોડ ડિસ્કનેક્ટેડ મહેરબાની કરીને ફરીથી પ્રયતન કરો. +DocType: Data Import Beta,Show Failed Logs,નિષ્ફળ લsગ્સ બતાવો apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ભાષાંતરો apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,તમે પસંદ કરેલ ડ્રાફ્ટ અથવા રદ દસ્તાવેજો apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},દસ્તાવેજ {0} ને {1} દ્વારા {2} સ્ટેટ તરીકે સેટ કરવામાં આવ્યો છે @@ -529,7 +553,9 @@ apps/frappe/frappe/model/document.py,Document Queued,દસ્તાવેજ Qu DocType: GSuite Templates,Destination ID,ગંતવ્ય ID DocType: Desktop Icon,List,યાદી DocType: Activity Log,Link Name,લિંક નામ +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,તમે સ્વર્ગ DocType: System Settings,mm/dd/yyyy,mm / dd / YYYY +DocType: Onboarding Slide,Onboarding Slide,Boardનબોર્ડિંગ સ્લાઇડ apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,અમાન્ય પાસવર્ડ: DocType: Print Settings,Send document web view link in email,મોકલો ઇમેઇલ દસ્તાવેજ વેબ દૃશ્ય લિંક apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Next અગાઉના આગળ @@ -590,6 +616,7 @@ DocType: Kanban Board Column,darkgrey,ઘાટોરાખોડી color apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},સફળ: {0} માટે {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ડેમો વપરાશકર્તા વિગતો બદલી શકતા નથી. https://erpnext.com ખાતે નવા એકાઉન્ટ માટે સાઇન અપ કૃપા કરીને apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,છોડો +DocType: Dashboard Chart,Aggregate Function Based On,એકંદર કાર્ય આધારિત apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,ફેરફારો કરવા માટે આ ડુપ્લિકેટ કરો apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,સાચવવા માટે Enter દબાવો apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,પીડીએફ પેઢી કારણ કે ભાંગી છબી લિંક્સ નિષ્ફળ @@ -603,7 +630,9 @@ DocType: Notification,Days Before,દિવસ પહેલા apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,દૈનિક ઘટનાઓ એ જ દિવસે સમાપ્ત થવી જોઈએ. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,સંપાદિત કરો ... DocType: Workflow State,volume-down,વોલ્યુંમ-નીચે +DocType: Onboarding Slide,Help Links,સહાય લિંક્સ apps/frappe/frappe/auth.py,Access not allowed from this IP Address,આ આઇપી સરનામાંથી પ્રવેશને મંજૂરી નથી +DocType: Notification Settings,Enable Email Notifications,ઇમેઇલ સૂચનાઓને સક્ષમ કરો apps/frappe/frappe/desk/reportview.py,No Tags,કોઈ ટૅગ્સ DocType: Email Account,Send Notification to,સંદેશ મોકલો DocType: DocField,Collapsible,સંકેલી શકાય એવું @@ -632,6 +661,7 @@ DocType: Google Drive,Last Backup On,છેલ્લું બેકઅપ ચ DocType: Customize Form Field,Customize Form Field,ફોર્મ ક્ષેત્ર કસ્ટમાઇઝ DocType: Energy Point Rule,For Document Event,દસ્તાવેજ ઇવેન્ટ માટે DocType: Website Settings,Chat Room Name,ચેટ રૂમ નામ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,યથાવત DocType: OAuth Client,Grant Type,ગ્રાન્ટ પ્રકાર apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,વપરાશકર્તા દ્વારા વાંચી શકાય છે જે દસ્તાવેજો તપાસો DocType: Deleted Document,Hub Sync ID,હબ સમન્વયન ID @@ -639,6 +669,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,વ DocType: Auto Repeat,Quarterly,ત્રિમાસિક apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","ઇમેઇલ ડોમેન આ એકાઉન્ટ માટે રૂપરેખાંકિત થયેલ નથી, એક બનાવો?" DocType: User,Reset Password Key,પાસવર્ડ રીસેટ કરો કી +DocType: Dashboard Chart,All Time,બધા સમયે apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} માટે ગેરકાયદે દસ્તાવેજ સ્થિતિ DocType: Email Account,Enable Auto Reply,ઓટો જવાબ સક્ષમ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,જોઇ ન @@ -651,6 +682,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,સ DocType: Email Account,Notify if unreplied,Unreplied જો સૂચિત apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR કોડને સ્કેન કરો અને પરિણામી કોડ પ્રદર્શિત કરો. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ગ્રેડિએન્ટ્સને સક્ષમ કરો +DocType: Scheduled Job Type,Hourly Long,અવરલી લાંબી DocType: System Settings,Minimum Password Score,ન્યુનત્તમ પાસવર્ડ સ્કોર DocType: DocType,Fields,ક્ષેત્રો DocType: System Settings,Your organization name and address for the email footer.,ઈમેઈલ ફૂટર માટે તમારી સંસ્થાના નામ અને સરનામું. @@ -658,11 +690,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,પિત apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 બેકઅપ પૂર્ણ! apps/frappe/frappe/config/desktop.py,Developer,વિકાસકર્તા apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,બનાવનાર +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},તેને સક્ષમ કરવા માટે નીચેની લીંકમાંની સૂચનાઓને અનુસરો: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} પંક્તિ માં {1} બંને URL અને બાળક વસ્તુઓ હોઈ શકે નહિં apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},નીચેના કોષ્ટકો માટે ઓછામાં ઓછી એક પંક્તિ હોવી જોઈએ: {0} DocType: Print Format,Default Print Language,ડિફaultલ્ટ છાપવાની ભાષા apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,પૂર્વજો apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} રુટ કાઢી શકાતી નથી +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,કોઈ નિષ્ફળ લ .ગ્સ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,હજુ સુધી કોઈ ટિપ્પણીઓ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","એસએમએસ સેટિંગ્સ દ્વારા, તેને પ્રમાણીકરણ પદ્ધતિ તરીકે સેટ કરતા પહેલા એસએમએસ સેટ કરો" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,જરૂરી બંને Doctype અને નામ @@ -685,6 +719,7 @@ DocType: Website Settings,Footer Items,ફૂટર વસ્તુઓ apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,મેનુ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,દૈનિક +DocType: Onboarding Slide,Max Count,મહત્તમ ગણતરી apps/frappe/frappe/config/users_and_permissions.py,User Roles,વપરાશકર્તા ભૂમિકાઓ DocType: Property Setter,Property Setter overrides a standard DocType or Field property,સંપત્તિ પ્રાશ્નિક પ્રમાણભૂત Doctype અથવા ક્ષેત્રમાં મિલકત પર ફરીથી લખી નાંખશે apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,અપડેટ કરી શકો છો: Incorrect / સમયમર્યાદા સમાપ્ત થયેલ લિંક. @@ -703,6 +738,7 @@ DocType: Footer Item,"target = ""_blank""",લક્ષ્ય = "_blank&quo DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,યજમાન DocType: Data Import Beta,Import File,ફાઇલ આયાત કરો +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Templateાંચો ભૂલ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,કૉલમ {0} પહેલાથી જ અસ્તિત્વમાં છે. DocType: ToDo,High,હાઇ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,નવી ઇવેન્ટ @@ -718,6 +754,7 @@ DocType: Web Form Field,Show in filter,ફિલ્ટરમાં બતાવ DocType: Address,Daman and Diu,દમણ અને દીવ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,પ્રોજેક્ટ DocType: Address,Personal,વ્યક્તિગત +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,કાચો મુદ્રણ સેટિંગ્સ ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,વિગતો માટે https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region જુઓ. apps/frappe/frappe/config/settings.py,Bulk Rename,બલ્ક નામ બદલો DocType: Email Queue,Show as cc,સીસી તરીકે શો @@ -727,6 +764,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,વિડિઓ લ DocType: Contact Us Settings,Introductory information for the Contact Us Page,આ અમારો સંપર્ક પેજમાં માટે પ્રારંભિક માહિતી DocType: Print Style,CSS,સીએસએસ DocType: Workflow State,thumbs-down,અંગૂઠા નીચે +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,રદ કરતા દસ્તાવેજો DocType: User,Send Notifications for Email threads,ઇમેઇલ થ્રેડો માટે સૂચનાઓ મોકલો apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,નથી વિકાસકર્તા મોડમાં @@ -734,7 +772,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ફાઇ DocType: DocField,In Global Search,વૈશ્વિક શોધ DocType: System Settings,Brute Force Security,બ્રુટ ફોર્સ સિક્યુરિટી DocType: Workflow State,indent-left,ઇન્ડેન્ટ ડાબી -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલાં apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,તે આ ફાઇલ કાઢી જોખમી છે: {0}. તમારી સિસ્ટમ મેનેજરનો સંપર્ક કરો. DocType: Currency,Currency Name,કરન્સી નામ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,કોઈ ઇમેઇલ્સ @@ -749,10 +786,12 @@ DocType: Energy Point Rule,User Field,વપરાશકર્તા ક્ષ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,કાઢી નાખો કાઢી નાંખો apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} માટે પહેલેથી જ ઉમેદવારી દૂર {1} {2} +DocType: Scheduled Job Type,Stopped,બંધ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,દૂર ન હતી apps/frappe/frappe/desk/like.py,Liked,ગમ્યું apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,હવે મોકલો apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","સ્ટાન્ડર્ડ Doctype મૂળભૂત પ્રિન્ટ ફોર્મેટ ધરાવે છે કરી શકતા નથી, કસ્ટમાઇઝ ફોર્મનો ઉપયોગ" +DocType: Server Script,Allow Guest,અતિથિને મંજૂરી આપો DocType: Report,Query,ક્વેરી DocType: Customize Form,Sort Order,સૉર્ટ કરો ઓર્ડર apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'યાદી દૃશ્યમાં' પંક્તિ {1} માં પ્રકાર {0} માટે મંજૂરી નથી @@ -774,10 +813,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,બે પરિબળ પ્રમાણીકરણ પદ્ધતિ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,પ્રથમ નામ સેટ કરો અને રેકોર્ડ સાચવો. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 રેકોર્ડ્સ +DocType: DocType Link,Link Fieldname,લિંક ક્ષેત્રનું નામ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},સાથે વહેંચાયેલ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,અનસબ્સ્ક્રાઇબ DocType: View Log,Reference Name,સંદર્ભ નામ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,વપરાશકર્તા બદલો +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,પ્રથમ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,સુધારા ભાષાંતરો DocType: Error Snapshot,Exception,અપવાદ DocType: Email Account,Use IMAP,ઉપયોગ IMAP @@ -791,6 +832,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,વર્કફ્લો રાજ્ય સંક્રમણ વ્યાખ્યાયિત નિયમો. DocType: File,Folder,ફોલ્ડર DocType: Website Route Meta,Website Route Meta,વેબસાઇટ રૂટ મેટા +DocType: Onboarding Slide Field,Onboarding Slide Field,Boardનબોર્ડિંગ સ્લાઇડ ક્ષેત્ર DocType: DocField,Index,ઈન્ડેક્સ DocType: Email Group,Newsletter Manager,ન્યૂઝલેટર વ્યવસ્થાપક apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,વિકલ્પ 1 @@ -817,7 +859,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,વ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ચાર્ટ્સ ગોઠવો DocType: User,Last IP,છેલ્લે IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,કૃપા કરીને તમારા ઇમેઇલ પર વિષય ઉમેરો -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,{0} નો એક નવો દસ્તાવેજ તમારી સાથે {1} શેર કરવામાં આવ્યો છે. DocType: Data Migration Connector,Data Migration Connector,ડેટા માઇગ્રેશન કનેક્ટર apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} પાછું ફેરવેલ {1} DocType: Email Account,Track Email Status,ઇમેઇલ સ્થિતિ ટ્રૅક કરો @@ -873,6 +914,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,શોધ DocType: Workflow State,text-width,લખાણ-પહોળાઈ apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,આ રેકોર્ડ મહત્તમ જોડાણ મર્યાદા સુધી પહોંચી હતી. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ફાઇલનામ અથવા એક્સ્ટેંશન દ્વારા શોધો +DocType: Onboarding Slide,Slide Title,સ્લાઇડ શીર્ષક DocType: Notification,View Properties (via Customize Form),(કસ્ટમાઇઝ ફોર્મ મારફતે) જુઓ ગુણધર્મો apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,તેને પસંદ કરવા માટે ફાઇલ પર ક્લિક કરો. DocType: Note Seen By,Note Seen By,દ્વારા જોઈ નોંધ @@ -899,13 +941,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,શેર યુઆરએલ DocType: System Settings,Allow Consecutive Login Attempts ,અનુકૂળ લૉગિન પ્રયાસોને મંજૂરી આપો apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,ચૂકવણીની પ્રક્રિયા દરમિયાન એક ભૂલ આવી. અમારો સંપર્ક કરો +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"જો સ્લાઇડ પ્રકાર બનાવો અથવા સેટિંગ્સ છે, તો સ્લાઇડ પૂર્ણ થયા પછી એક્ઝિક્યુટ થવાની બાકી {ref_doctype} .py ફાઇલમાં 'create_onboarding_docs' પદ્ધતિ હોવી જોઈએ." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} દિવસ પહેલા DocType: Email Account,Awaiting Password,પ્રતીક્ષામાં પાસવર્ડ DocType: Address,Address Line 1,સરનામાં રેખા 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,ના વંશજો DocType: Contact,Company Name,કંપની નું નામ DocType: Custom DocPerm,Role,ભૂમિકા -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,સેટિંગ્સ ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,તમારા બ્રાઉઝર પર apps/frappe/frappe/utils/data.py,Cent,ટકા ,Recorder,રેકોર્ડર @@ -964,6 +1006,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","જો તમારું ઇમેઇલ પ્રાપ્તકર્તા દ્વારા ખોલવામાં આવ્યું હોય તો ટ્રૅક કરો
નોંધ: જો તમે બહુવિધ પ્રાપ્તકર્તાઓને મોકલી રહ્યાં છો, ભલે 1 પ્રાપ્તકર્તા ઈમેઇલ વાંચે, તો તેને "ઓપન કરેલ" ગણવામાં આવશે" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ગુમ કિંમતો જરૂરી apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,ગૂગલ સંપર્કોને owક્સેસની મંજૂરી આપો +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,પ્રતિબંધિત DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,ન વાંચેલ તરીકે નિશાની કરો DocType: Activity Log,Operation,ઓપરેશન @@ -1016,6 +1059,7 @@ DocType: Web Form,Allow Print,પ્રિન્ટ માટે પરવાન DocType: Communication,Clicked,વાપરો apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,અવગણવું apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},કોઈ પરવાનગી '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી ડિફ defaultલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,મોકલવા માટે અનુસૂચિત DocType: DocType,Track Seen,ટ્રેક દેખાય DocType: Dropbox Settings,File Backup,ફાઇલ બૅકઅપ @@ -1024,12 +1068,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,કોઈ {0} apps/frappe/frappe/config/customization.py,Add custom forms.,વૈવિધ્યપૂર્ણ સ્વરૂપો ઉમેરો. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} માં {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,આ દસ્તાવેજ રજૂ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગી apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,સિસ્ટમ ઘણા પૂર્વ નિર્ધારિત ભૂમિકા પૂરી પાડે છે. તમે ફાઇનર પરવાનગીઓ સુયોજિત કરવા માટે નવી ભૂમિકા ઉમેરી શકો છો. DocType: Communication,CC,સીસી DocType: Country,Geo,જીઓ DocType: Data Migration Run,Trigger Name,ટ્રિગર નામ -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ડોમેન્સ +DocType: Onboarding Slide,Domains,ડોમેન્સ DocType: Blog Category,Blog Category,બ્લોગ કેટેગરી apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,નીચેના શરત નિષ્ફળ જાય છે કારણ મેપ નથી કરી શકો છો: DocType: Role Permission for Page and Report,Roles HTML,ભૂમિકાઓ HTML @@ -1069,7 +1112,6 @@ DocType: Assignment Rule Day,Saturday,શનિવારે DocType: User,Represents a User in the system.,સિસ્ટમમાં વપરાશકર્તા પ્રતિનિધિત્વ કરે છે. DocType: List View Setting,Disable Auto Refresh,સ્વત. તાજું કરો અક્ષમ કરો DocType: Comment,Label,લેબલ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","કાર્ય {0}, તમે {1}, બંધ કરવામાં આવ્યું છે સોંપેલ છે." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,આ વિન્ડો બંધ કરો DocType: Print Format,Print Format Type,પ્રિન્ટ ફોર્મેટ પ્રકાર DocType: Newsletter,A Lead with this Email Address should exist,આ ઇમેઇલ સરનામા સાથે લીડ અસ્તિત્વ ધરાવતું હોવું જોઈએ @@ -1086,6 +1128,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,આઉટગોઇં apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,એક પસંદ કરો DocType: Data Export,Filter List,ફિલ્ટર સૂચિ DocType: Data Export,Excel,એક્સેલ +DocType: System Settings,HH:mm,એચએચ: મીમી DocType: Email Account,Auto Reply Message,ઓટો જવાબ સંદેશ DocType: Data Migration Mapping,Condition,કન્ડિશન apps/frappe/frappe/utils/data.py,{0} hours ago,{0} કલાક પહેલા @@ -1104,12 +1147,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,નોલેજ બેઝ સહયોગી DocType: Communication,Sent Read Receipt,મોકલ્યું વાંચો રસીદ DocType: Email Queue,Unsubscribe Method,ઉમેદવારી દૂર કરો પદ્ધતિ +DocType: Onboarding Slide,Add More Button,વધુ બટન ઉમેરો DocType: GSuite Templates,Related DocType,સંબંધિત Doctype apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,સામગ્રી ઉમેરવા માટે સંપાદિત કરો apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ભાષા પસંદ કરો apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,કાર્ડ વિગતો apps/frappe/frappe/__init__.py,No permission for {0},માટે કોઈ પરવાનગી {0} DocType: DocType,Advanced,ઉન્નત +DocType: Onboarding Slide,Slide Image Source,સ્લાઇડ ઇમેજ સોર્સ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API કી લાગે છે કે API સિક્રેટ ખોટું છે !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},સંદર્ભ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,શ્રીમતી @@ -1126,6 +1171,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,માસ DocType: DocType,User Cannot Create,વપરાશકર્તા બનાવી શકતા નથી apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,સફળતાપૂર્વક થઈ ગયું apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ડ્રૉપબૉક્સ વપરાશ મંજૂર છે! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,શું તમે ખરેખર {0} ને {1} સાથે મર્જ કરવા માંગો છો? DocType: Customize Form,Enter Form Type,ફોર્મ પ્રકાર દાખલ કરો DocType: Google Drive,Authorize Google Drive Access,ગૂગલ ડ્રાઇવ Authorક્સેસને અધિકૃત કરો apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,ગુમ થયેલ પરિમાણ Kanban બોર્ડનું નામ @@ -1135,7 +1181,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Doctype, Doctype પરવાનગી આપે છે. સાવચેત રહો!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","પ્રિન્ટિંગ, ઇમેઇલ માટે વૈવિધ્યપૂર્ણ ફોર્મેટ્સ" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} નો સરવાળો -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,નવા સંસ્કરણ પર અપડેટ DocType: Custom Field,Depends On,પર આધાર રાખે છે DocType: Kanban Board Column,Green,ગ્રીન DocType: Custom DocPerm,Additional Permissions,વધારાની પરવાનગીઓ @@ -1163,6 +1208,7 @@ DocType: Energy Point Log,Social,સમાજ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","ગૂગલ કેલેન્ડર - {0}, ભૂલ કોડ {1} માટે કેલેન્ડર બનાવી શક્યું નથી." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,સંપાદન રો DocType: Workflow Action Master,Workflow Action Master,વર્કફ્લો ક્રિયા માસ્ટર +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,બધું કાઢી નાંખો DocType: Custom Field,Field Type,ફીલ્ડ પ્રકાર apps/frappe/frappe/utils/data.py,only.,જ. DocType: Route History,Route History,રૂટ ઇતિહાસ @@ -1196,11 +1242,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,પાસવર્ડ ભૂ DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,આઈડી apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,સર્વર ભૂલ +DocType: Server Script,After Delete,કા Deleteી નાંખો પછી apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,પાછલા બધા અહેવાલો જુઓ. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,લૉગિન આઈડી જરૂરી છે DocType: Website Slideshow,Website Slideshow,વેબસાઇટ વેબસાઇટ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,કોઈ ડેટા DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","વેબસાઈટ ઘર પાનું છે કે લિંક. ધોરણ કડીઓ (ઇન્ડેક્સ, પ્રવેશ, ઉત્પાદનો, બ્લોગ, વિશે, સંપર્ક)" +DocType: Server Script,After Submit,સબમિટ કર્યા પછી apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ઇમેઇલ એકાઉન્ટ {0} ઇમેઇલ્સ પ્રાપ્ત કરતી પ્રમાણીકરણ નિષ્ફળ થયું. સર્વર સંદેશ: {1} DocType: User,Banner Image,બૅનર છબી DocType: Custom Field,Custom Field,કસ્ટમ ફીલ્ડ @@ -1241,15 +1289,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","વપરાશકર્તા કોઇ ભૂમિકા ચકાસાયેલ હોય, તો પછી વપરાશકર્તા "સિસ્ટમ વપરાશકર્તા" બની જાય છે. "સિસ્ટમ વપરાશકર્તા" ડેસ્કટોપ ઍક્સેસ છે" DocType: System Settings,Date and Number Format,તારીખ અને સંખ્યા ફોર્મેટ apps/frappe/frappe/model/document.py,one of,માનૂ એક -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,એક ક્ષણ તપાસી apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,બતાવો ટૅગ્સ DocType: DocField,HTML Editor,એચટીએમએલ એડિટર 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,ક્રિયાઓ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા +DocType: DocType,Actions,ક્રિયાઓ DocType: Workflow State,align-justify,સંરેખિત-સર્મથન DocType: User,Middle Name (Optional),મધ્ય નામ (વૈકલ્પિક) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,પરવાનગી નથી @@ -1263,6 +1309,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,કોઈ DocType: System Settings,Security,સુરક્ષા apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} પ્રાપ્તકર્તાઓને મોકલવા માટે અનુસૂચિત apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,કાપવું +DocType: Server Script,After Save,સેવ પછી apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},બદલીને {0} માટે {1} DocType: Currency,**Currency** Master,** ** કરન્સી માસ્ટર DocType: Email Account,No of emails remaining to be synced,બાકી ઇમેઇલ્સ કોઈ સમન્વયિત કરવા @@ -1287,15 +1334,18 @@ DocType: Prepared Report,Filter Values,ફિલ્ટર મૂલ્યો DocType: Communication,User Tags,વપરાશકર્તા ટૅગ્સ DocType: Data Migration Run,Fail,નિષ્ફળ DocType: Workflow State,download-alt,ડાઉનલોડ કરો-Alt +DocType: Scheduled Job Type,Last Execution,છેલ્લું એક્ઝેક્યુશન DocType: Data Migration Run,Pull Failed,પુલ નિષ્ફળ થયું apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,કાર્ડ્સ બતાવો / છુપાવો DocType: Communication,Feedback Request,પ્રતિસાદ વિનંતી apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel ફાઇલોથી ડેટા આયાત કરો apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,નીચેના ક્ષેત્રોમાં ખૂટે છે: +DocType: Notification Log,From User,વપરાશકર્તા પાસેથી apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},રદ કરવું {0} DocType: Web Page,Main Section,મુખ્ય વિભાગ DocType: Page,Icon,ચિહ્ન apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","સંકેત: પાસવર્ડ પ્રતિકો, સંખ્યાઓ અને મૂડી અક્ષરો શામેલ" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","ઉલ્લેખ, સોંપણીઓ, energyર્જા પોઇન્ટ અને વધુ માટે સૂચનાઓ ગોઠવો." DocType: DocField,Allow in Quick Entry,ઝડપી એન્ટ્રીમાં મંજૂરી આપો apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,પીડીએફ DocType: System Settings,dd/mm/yyyy,dd / mm / YYYY @@ -1327,7 +1377,6 @@ DocType: Website Theme,Theme URL,થીમ URL DocType: Customize Form,Sort Field,સૉર્ટ કરો ફીલ્ડ DocType: Razorpay Settings,Razorpay Settings,Razorpay સેટિંગ્સ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,સંપાદિત કરો ફિલ્ટર -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,વધુ ઉમેરો DocType: System Settings,Session Expiry Mobile,સત્ર સમાપ્તિ મોબાઇલ apps/frappe/frappe/utils/password.py,Incorrect User or Password,ખોટો વપરાશકર્તા અથવા પાસવર્ડ apps/frappe/frappe/templates/includes/search_box.html,Search results for,માટે શોધ પરિણામ @@ -1343,8 +1392,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,એનર્જી પોઇન્ટ નિયમ DocType: Communication,Delayed,વિલંબિત apps/frappe/frappe/config/settings.py,List of backups available for download,ડાઉનલોડ માટે ઉપલબ્ધ બેકઅપ યાદી +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,નવા ડેટા આયાતનો પ્રયાસ કરો apps/frappe/frappe/www/login.html,Sign up,સાઇન અપ કરો apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,રો {0}: ધોરણ ક્ષેત્રો માટે ફરજિયાત અક્ષમ કરવા માટે મંજૂરી નથી +DocType: Webhook,Enable Security,સુરક્ષા સક્ષમ કરો apps/frappe/frappe/config/customization.py,Dashboards,ડેશબોર્ડ્સ DocType: Test Runner,Output,આઉટપુટ DocType: Milestone,Track Field,ટ્રેક ક્ષેત્ર @@ -1363,6 +1414,7 @@ DocType: Portal Menu Item,Portal Menu Item,પોર્ટલ મેનુ વ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ગાળકો સેટ કરો DocType: Contact Us Settings,Email ID,ઇમેઇલ ને DocType: Energy Point Rule,Multiplier Field,ગુણાકાર ક્ષેત્ર +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,રેઝરપે ઓર્ડર બનાવી શક્યાં નથી. કૃપા કરીને સંચાલકનો સંપર્ક કરો DocType: Dashboard Chart,Time Interval,સમય અંતરાલ DocType: Activity Log,Keep track of all update feeds,તમામ અપડેટ ફીડ્સનો ટ્રૅક રાખો DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,સંસાધનો યાદી કે જે ક્લાઈન્ટ એપ્લિકેશન વપરાશકર્તા તેને પરવાનગી આપે છે પછી ઍક્સેસ હશે.
દા.ત. પ્રોજેક્ટ @@ -1382,6 +1434,7 @@ DocType: DefaultValue,Key,કી DocType: Address,Contacts,સંપર્કો DocType: System Settings,Setup Complete,સેટઅપ પૂર્ણ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,બધા દસ્તાવેજ સરવાળો રિપોર્ટ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","આયાત ટેમ્પલેટ .csv, .xlsx અથવા .xls પ્રકારનાં હોવા જોઈએ" apps/frappe/frappe/www/update-password.html,New Password,નવો પાસવર્ડ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ફિલ્ટર {0} ગુમ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,માફ કરશો! તમે ઓટો પેદા ટિપ્પણીઓ કાઢી શકતા નથી @@ -1396,6 +1449,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ફેવિકોન apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,ચલાવો DocType: Blog Post,Content (HTML),સામગ્રી (એચટીએમએલ) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,માટે સેટઅપ DocType: Personal Data Download Request,User Name,વપરાશકર્તા નામ DocType: Workflow State,minus-sign,ઓછા સાઇન apps/frappe/frappe/public/js/frappe/request.js,Not Found,મળ્યું નથી @@ -1403,6 +1457,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,કોઈ {0} પરવા apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,નિકાસ વૈવિધ્યપૂર્ણ પરવાનગીઓ apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,કોઈ આઇટમ્સ મળી નથી DocType: Data Export,Fields Multicheck,ફીલ્ડ્સ મલ્ટિચેક +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} પૂર્ણ DocType: Activity Log,Login,પ્રવેશ DocType: Web Form,Payments,ચુકવણીઓ apps/frappe/frappe/www/qrcode.html,Hi {0},હાય {0} @@ -1431,6 +1486,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,સા apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,પરવાનગી ભૂલ apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},નામ {0} ન હોઈ શકે {1} DocType: User Permission,Applicable For,માટે લાગુ પડે છે +DocType: Dashboard Chart,From Date,તારીખ થી apps/frappe/frappe/core/doctype/version/version_view.html,Success,સફળતા apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,સત્ર સમાપ્ત થઈ DocType: Kanban Board Column,Kanban Board Column,Kanban બોર્ડ કૉલમ @@ -1442,7 +1498,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,સ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; શરતમાં અનુમતિ નથી DocType: Async Task,Async Task,Async ટાસ્ક DocType: Workflow State,picture,ચિત્ર -apps/frappe/frappe/www/complete_signup.html,Complete,પૂર્ણ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,પૂર્ણ DocType: DocType,Image Field,છબી ક્ષેત્ર DocType: Print Format,Custom HTML Help,કસ્ટમ HTML મદદ DocType: LDAP Settings,Default Role on Creation,બનાવટ પર મૂળભૂત ભૂમિકા @@ -1450,6 +1506,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,આગામી રાજ્ય DocType: User,Block Modules,બ્લોક મોડ્યુલો DocType: Print Format,Custom CSS,કસ્ટમ CSS +DocType: Energy Point Rule,Apply Only Once,ફક્ત એક જ વાર લાગુ કરો apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,એક ટિપ્પણી ઉમેરો DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},અવગણેલ: {0} માટે {1} @@ -1460,6 +1517,7 @@ DocType: Address,Postal,ટપાલ DocType: Email Account,Default Incoming,મૂળભૂત ઇનકમિંગ DocType: Workflow State,repeat,વારંવાર DocType: Website Settings,Banner,બૅનર +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,બધા દસ્તાવેજો રદ કરો DocType: Role,"If disabled, this role will be removed from all users.","જો અક્ષમ છે, આ ભૂમિકા બધા વપરાશકર્તાઓ દૂર કરવામાં આવશે." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} સૂચિ પર જાઓ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,શોધ પર મદદ @@ -1468,6 +1526,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,રજિ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,આ દસ્તાવેજનો સ્વત Auto પુનરાવર્તન અક્ષમ કરવામાં આવ્યું છે. DocType: DocType,Hide Copy,કૉપિ કરો છુપાવો apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,બધા ભૂમિકા સાફ +DocType: Server Script,Before Save,સેવ કરતા પહેલા apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} અનન્ય હોવો જોઈએ apps/frappe/frappe/model/base_document.py,Row,રો apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","સીસી, બીસીસી અને ઇમેઇલ ઢાંચો" @@ -1478,7 +1537,6 @@ DocType: Chat Profile,Offline,ઑફલાઇન apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},સફળતાપૂર્વક આયાત કરેલ {0} DocType: User,API Key,API કી DocType: Email Account,Send unsubscribe message in email,ઇમેઇલમાં અનસબ્સ્ક્રાઇબ સંદેશ મોકલો -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,શીર્ષક સંપાદિત કરો apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,આ લિંક ક્ષેત્ર માટે doctype હશે જે FIELDNAME. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,તમે અને તમારા દ્વારા સોંપાયેલ દસ્તાવેજો. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,તમે આને કોપી-પેસ્ટ પણ કરી શકો છો @@ -1509,8 +1567,10 @@ DocType: Data Migration Run,Total Pages,કુલ પૃષ્ઠો DocType: DocField,Attach Image,છબી સાથે જોડે છે DocType: Workflow State,list-alt,યાદી-Alt apps/frappe/frappe/www/update-password.html,Password Updated,પાસવર્ડ અપડેટ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગી apps/frappe/frappe/www/qrcode.html,Steps to verify your login,તમારા લૉગિનને ચકાસવાનાં પગલાં apps/frappe/frappe/utils/password.py,Password not found,પાસવર્ડ ન મળી +DocType: Webhook,Webhook Secret,વેબહૂક સિક્રેટ DocType: Data Migration Mapping,Page Length,પૃષ્ઠ લંબાઈ DocType: Email Queue,Expose Recipients,મેળવનારા પ્રદશિત apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,આવનારા મેલ્સ માટે ફરજિયાત છે જોડો @@ -1537,6 +1597,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,સિસ્ટમ DocType: Web Form,Max Attachment Size (in MB),મેક્સ જોડાણ માપ (MB માં) apps/frappe/frappe/www/login.html,Have an account? Login,એક એકાઉન્ટ છે? પ્રવેશ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,સેટિંગ્સ છાપો ... DocType: Workflow State,arrow-down,ડાઉન તીરને apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},પંક્તિ {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},વપરાશકર્તાને કાઢવા માટે મંજૂરી નથી {0}: {1} @@ -1556,6 +1617,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,તમા DocType: Dropbox Settings,Dropbox Access Secret,ડ્રૉપબૉક્સ ઍક્સેસ સિક્રેટ DocType: Tag Link,Document Title,દસ્તાવેજ શીર્ષક apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ફરજિયાત) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલાં DocType: Social Login Key,Social Login Provider,સામાજિક લૉગિન પ્રદાતા apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,અન્ય એક ટિપ્પણી ઉમેરો apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ફાઈલમાં કોઈ માહિતી મળી નથી. કૃપા કરીને નવી ફાઇલને ડેટા સાથે ફરીથી જોડો. @@ -1570,11 +1632,12 @@ DocType: Workflow State,hand-down,હાથ નીચે apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",એવા કોઈ ક્ષેત્રો મળ્યાં નથી કે જેનો ઉપયોગ કાનબન કumnલમ તરીકે થઈ શકે. "પસંદ કરો" પ્રકારનાં કસ્ટમ ક્ષેત્રને ઉમેરવા માટે કસ્ટમાઇઝ ફોર્મનો ઉપયોગ કરો. DocType: Address,GST State,જીએસટી રાજ્ય apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: વગર સબમિટ રદ સેટ કરી શકાતો નથી +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),વપરાશકર્તા ({0}) DocType: Website Theme,Theme,થીમ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,પુનઃદિશામાન યુઆરઆઇ ઑથ કોડ બંધાયેલ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,સહાય ખોલો DocType: DocType,Is Submittable,Submittable છે -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,નવું ઉલ્લેખ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,નવું ઉલ્લેખ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,કોઈ નવા Google સંપર્કો સમન્વયિત થયા નથી. DocType: File,Uploaded To Google Drive,ગૂગલ ડ્રાઇવ પર અપલોડ કર્યું apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ચેક ક્ષેત્ર માટે કિંમત 0 અથવા 1 હોઇ શકે છે @@ -1584,7 +1647,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,સિરીઝ ફ DocType: Workflow State,Inbox,ઇનબૉક્સ DocType: Kanban Board Column,Red,Red DocType: Workflow State,Tag,ટેગ -DocType: Custom Script,Script,સ્ક્રિપ્ટ +DocType: Report,Script,સ્ક્રિપ્ટ apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,દસ્તાવેજ સાચવી શકાતો નથી DocType: Energy Point Rule,Maximum Points,મહત્તમ પોઇંટ્સ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,મારી સેટિંગ્સ @@ -1613,8 +1676,10 @@ DocType: Email Queue,Email Queue,ઇમેઇલ કતાર DocType: Address,Haryana,હરિયાણા apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ભૂમિકાઓ તેમના વપરાશકર્તા પાનાંમાંથી વપરાશકર્તાઓ માટે સુયોજિત કરી શકાય છે. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,ટિપ્પણી ઉમેરો +DocType: Dashboard Chart,Select Date Range,તારીખ રેંજ પસંદ કરો DocType: DocField,Mandatory,ફરજિયાત apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,મોડ્યુલ નિકાસ કરવા માટે +DocType: Scheduled Job Type,Monthly Long,માસિક લાંબી apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: કોઈ મૂળભૂત પરવાનગીઓ સુયોજિત apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","રદ કરો, સબમિટ અર્થ સુધારો" @@ -1623,7 +1688,6 @@ DocType: Test Runner,Module Path,મોડ્યુલ પાથ DocType: Milestone Tracker,Track milestones for any document,કોઈપણ દસ્તાવેજ માટેનાં લક્ષ્યોને ટ્ર Trackક કરો DocType: Social Login Key,Identity Details,ઓળખની વિગતો apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ડેશબોર્ડ બતાવો -apps/frappe/frappe/desk/form/assign_to.py,New Message,નવો સંદેશ DocType: File,Preview HTML,પૂર્વાવલોકન HTML DocType: Desktop Icon,query-report,ક્વેરી અહેવાલ DocType: Data Import Beta,Template Warnings,Templateાંચો ચેતવણીઓ @@ -1640,12 +1704,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} નામ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,કોઈ પરવાનગીઓ આ માપદંડ માટે સુયોજિત કરો. DocType: Auto Email Report,Auto Email Report,ઓટો ઇમેઇલ રિપોર્ટ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,નવો દસ્તાવેજ શેર કર્યો apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,ટિપ્પણી કાઢી નાખીએ? DocType: Address Template,This format is used if country specific format is not found,દેશમાં ચોક્કસ ફોર્મેટ ન મળી આવે છે તો આ ફોર્મેટનો ઉપયોગ થાય છે DocType: System Settings,Allow Login using Mobile Number,લૉગિન મોબાઇલ નંબર ઉપયોગ કરવાની પરવાનગી apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,તમે આ સાધન વાપરવાની પૂરતી પરવાનગી નથી. ઍક્સેસ મેળવવા માટે તમારા સંચાલકનો સંપર્ક કરો. DocType: Custom Field,Custom,કસ્ટમ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","જો સક્ષમ કરેલ હોય, તો વપરાશકર્તાઓ કે જેઓ પ્રતિબંધિત IP એડ્રેસથી પ્રવેશ કરે છે, તેઓને બે ફેક્ટર ઑથ માટે પૂછવામાં આવશે નહીં" +DocType: Server Script,After Cancel,રદ કર્યા પછી DocType: Auto Repeat,Get Contacts,સંપર્કો મેળવો apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},હેઠળ દાખલ પોસ્ટ્સ {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,શીર્ષક વિનાની ક Colલમ છોડવી @@ -1656,6 +1722,7 @@ DocType: User,Login After,લૉગિન પછી DocType: Print Format,Monospace,વાળા DocType: Letter Head,Printing,પ્રિન્ટિંગ DocType: Workflow State,thumbs-up,"ઉત્તમ, શ્રેષ્ઠ" +DocType: Notification Log,Mention,ઉલ્લેખ કરો DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ફોન્ટ apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,શુદ્ધતા 1 અને 6 વચ્ચે પ્રયત્ન કરીશું @@ -1663,7 +1730,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,અને apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},આ અહેવાલ {0} પર પેદા થયો હતો DocType: Error Snapshot,Frames,ફ્રેમ્સ -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,સોંપણી +DocType: Notification Log,Assignment,સોંપણી DocType: Notification,Slack Channel,સ્લેક ચૅનલ DocType: About Us Team Member,Image Link,છબી લિંક DocType: Auto Email Report,Report Filters,રિપોર્ટ ગાળકો @@ -1680,6 +1747,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ઘટના અપડેટ કરવામાં અસમર્થ apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,ચકાસણી કોડ તમારા રજિસ્ટર્ડ ઇમેઇલ સરનામાં પર મોકલવામાં આવ્યો છે. apps/frappe/frappe/core/doctype/user/user.py,Throttled,થ્રોટલ્ડ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,તમારું લક્ષ્ય apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ફિલ્ટર 4 મૂલ્યો (Doctype, FIELDNAME ઓપરેટરને મૂલ્ય) હોવું જરૂરી છે: {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,સોંપણી નિયમ લાગુ કરો apps/frappe/frappe/utils/bot.py,show,શો @@ -1689,7 +1757,6 @@ DocType: Workflow State,text-height,લખાણ ઊંચાઈ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ડેટા માઇગ્રેશન પ્લાન મેપિંગ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé પ્રારંભ કરી રહ્યું છે ... DocType: Web Form Field,Max Length,મહત્તમ લંબાઈ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} માટે DocType: Print Format,Jinja,જીંજા DocType: Workflow State,map-marker,નકશા માર્કર apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,એક મુદ્દો સબમિટ @@ -1734,7 +1801,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,લિંક apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,તમારી ભાષામાં DocType: Dashboard Chart,Average,સરેરાશ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,પંક્તિ ઉમેરો -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,પ્રિન્ટર apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,ક્વેરી માટે SELECT હોવા જ જોઈએ DocType: Auto Repeat,Completed,પૂર્ણ @@ -1793,6 +1859,7 @@ DocType: GCalendar Account,Next Sync Token,આગળ સમન્વયન ટ DocType: Energy Point Settings,Energy Point Settings,એનર્જી પોઇન્ટ સેટિંગ્સ DocType: Async Task,Succeeded,સફળ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},જરૂરી ફરજિયાત ક્ષેત્રો {0} +DocType: Onboarding Slide Field,Align,સંરેખિત કરો apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,માટે ફરીથી સેટ પરવાનગીઓ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,વપરાશકર્તાઓ અને પરવાનગીઓ DocType: S3 Backup Settings,S3 Backup Settings,S3 બેકઅપ સેટિંગ્સ @@ -1809,7 +1876,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,નવું પ્રિંટ ફોર્મેટ નામ apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,વિનંતીને મંજૂરી આપવા માટે નીચેની લિંક પર ક્લિક કરો DocType: Workflow State,align-left,-ડાબે સંરેખિત કરો +DocType: Onboarding Slide,Action Settings,ક્રિયા સેટિંગ્સ DocType: User,Defaults,ડિફૉલ્ટ્સ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","સરખામણી માટે,> 5, <10 અથવા = 324 નો ઉપયોગ કરો. શ્રેણીઓ માટે, 5:10 (5 અને 10 ની કિંમતો માટે) નો ઉપયોગ કરો." DocType: Energy Point Log,Revert Of,રીવર્ટ ઓફ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,વર્તમાન સાથે મર્જ DocType: User,Birth Date,જન્મ તારીખ @@ -1864,6 +1933,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,માં DocType: Notification,Value Change,કિંમત બદલો DocType: Google Contacts,Authorize Google Contacts Access,ગૂગલ સંપર્કો Authorક્સેસને અધિકૃત કરો apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,રિપોર્ટમાંથી માત્ર સંખ્યાત્મક ફીલ્ડ્સ બતાવી રહ્યું છે +apps/frappe/frappe/utils/data.py,1 week ago,1 અઠવાડિયા પહેલા DocType: Data Import Beta,Import Type,આયાતનો પ્રકાર DocType: Access Log,HTML Page,એચટીએમએલ પૃષ્ઠ DocType: Address,Subsidiary,સબસિડીયરી @@ -1873,7 +1943,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Letterhead સાથે apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,અમાન્ય આઉટગોઇંગ મેલ સર્વર અથવા પોર્ટ DocType: Custom DocPerm,Write,લખો -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,માત્ર સંચાલક ક્વેરી / સ્ક્રિપ્ટ અહેવાલ બનાવવા માટે મંજૂરી apps/frappe/frappe/public/js/frappe/form/save.js,Updating,સુધારી રહ્યા છીએ DocType: Data Import Beta,Preview,પૂર્વદર્શન apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ક્ષેત્ર "કિંમત" ફરજિયાત છે. અપડેટ કરવાની કિંમત ઉલ્લેખ કરો @@ -1882,6 +1951,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From, apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,વપરાશકર્તા તરીકે આમંત્રણ આપો DocType: Data Migration Run,Started,શરૂ કર્યું DocType: Data Migration Run,End Time,અંત સમય +DocType: Dashboard Chart,Group By Based On,ગ્રુપ બાય બેઝ્ડ ઓન apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,પસંદ જોડાણો apps/frappe/frappe/model/naming.py, for {0},માટે {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,તમે આ દસ્તાવેજને છાપવા માટે પરવાનગી નથી @@ -1923,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ચકાસો DocType: Workflow Document State,Update Field,સુધારા ક્ષેત્ર DocType: Chat Profile,Enable Chat,ચેટ સક્ષમ કરો DocType: LDAP Settings,Base Distinguished Name (DN),મૂળ નામાંકિત નામ (ડીએન) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,આ વાતચીત છોડો apps/frappe/frappe/model/base_document.py,Options not set for link field {0},વિકલ્પો લિંક ક્ષેત્ર માટે સેટ નથી {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,કતાર / કામદાર @@ -1989,12 +2060,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,આ સમય પર માન્ય નથી લૉગિન DocType: Data Migration Run,Current Mapping Action,વર્તમાન મેપિંગ ઍક્શન DocType: Dashboard Chart Source,Source Name,સોર્સ નામ -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,વપરાશકર્તા સાથે સંકળાયેલ કોઈ ઇમેઇલ એકાઉન્ટ નથી. કૃપા કરીને વપરાશકર્તા> ઇમેઇલ ઇનબોક્સ હેઠળ એક એકાઉન્ટ ઉમેરો. DocType: Email Account,Email Sync Option,ઇમેઇલ સમન્વયન વિકલ્પ apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,પંક્તિ નં DocType: Async Task,Runtime,રનટાઈમ DocType: Post,Is Pinned,પિન થયેલ છે DocType: Contact Us Settings,Introduction,પરિચય +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,મદદ જોઈતી? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,પીન વૈશ્વિક apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ત્યારબાદ DocType: LDAP Settings,LDAP Email Field,LDAP ઇમેઇલ ક્ષેત્ર @@ -2004,7 +2075,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,પહે DocType: User Email,Enable Outgoing,આઉટગોઇંગ સક્ષમ DocType: Address,Fax,ફેક્સ apps/frappe/frappe/config/customization.py,Custom Tags,કસ્ટમ ટૅગ્સ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો DocType: Comment,Submitted,સબમિટ DocType: Contact,Pulled from Google Contacts,ગૂગલ સંપર્કોમાંથી ખેંચાય છે apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,અમાન્ય વિનંતી @@ -2025,9 +2095,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ઘર / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,મને સોંપો DocType: DocField,Dynamic Link,ડાયનેમિક લિંક apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,મેનુ અને સાઇડબારમાં અતિરિક્ત શ shortcર્ટકટ્સને ટ્રિગર કરવા માટે Alt કી દબાવો +DocType: Dashboard Chart,To Date,આજ સુધી DocType: List View Setting,List View Setting,સૂચિ જુઓ સેટિંગ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,બતાવો નિષ્ફળ નોકરી -DocType: Event,Details,વિગતો +DocType: Scheduled Job Log,Details,વિગતો DocType: Property Setter,DocType or Field,Doctype કે ફીલ્ડ apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,તમે આ દસ્તાવેજને અનુસર્યો છે apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,પ્રાથમિક રંગ @@ -2035,7 +2106,6 @@ DocType: Communication,Soft-Bounced,-સોફ્ટ Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","જો સક્ષમ હોય, તો બધા વપરાશકર્તાઓ બે ફેક્ટર ઑથનો ઉપયોગ કરીને કોઈપણ IP સરનામાંમાંથી લૉગ ઇન કરી શકે છે. આ વપરાશકર્તા પૃષ્ઠમાં ફક્ત ચોક્કસ વપરાશકર્તા (વપરાશકર્તાઓ) માટે જ સેટ કરી શકાય છે" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,લાગે publishable કી અથવા રહસ્ય કી ખોટી છે !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,પરવાનગીઓ સુયોજિત કરવા માટે ઝડપી મદદ -DocType: Tag Doc Category,Doctype to Assign Tags,ટૅગ્સ સોંપો Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,બતાવો relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ઇમેઇલ ટ્રેશમાં ખસેડવામાં આવી છે DocType: Report,Report Builder,રિપોર્ટ બિલ્ડર @@ -2050,6 +2120,7 @@ DocType: Workflow State,Upload,અપલોડ કરો DocType: User Permission,Advanced Control,ઉન્નત નિયંત્રણ DocType: System Settings,Date Format,તારીખ ફોર્મેટ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,પ્રકાશિત +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ડિફોલ્ટ સરનામું નમૂના મળ્યું નથી. કૃપા કરીને સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં ટેમ્પલેટમાંથી એક નવું બનાવો. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","વર્કફ્લો માટે ક્રિયાઓ (દા.ત., રદ મંજૂર)." DocType: Data Import,Skip rows with errors,ભૂલો સાથે પંક્તિઓ છોડો DocType: Workflow State,flag,ધ્વજ @@ -2066,7 +2137,7 @@ DocType: Post Comment,Post Comment,ટિપ્પણી પોસ્ટ કર apps/frappe/frappe/config/core.py,Documents,દસ્તાવેજો apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,દ્વારા પ્રવૃત્તિ લ Logગ ઇન DocType: Social Login Key,Custom Base URL,કસ્ટમ બેઝ URL -DocType: Email Flag Queue,Is Completed,પૂર્ણ થાય છે +DocType: Onboarding Slide,Is Completed,પૂર્ણ થાય છે apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ફીલ્ડ્સ મેળવો apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,પ્રોફાઇલ સંપાદિત કરો DocType: Kanban Board Column,Archived,પેટીવાળી @@ -2077,11 +2148,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",આ ક્ષેત્ર દેખાશે તો જ FIELDNAME અહીં વ્યાખ્યાયિત મૂલ્ય ધરાવે છે અથવા નિયમો સાચા (ઉદાહરણો) છે: myfield eval: doc.myfield == 'મારું કિંમત' eval: doc.age> 18 DocType: Social Login Key,Office 365,ઓફિસ 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,આજે +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,આજે apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","તમે આ સમૂહ છે એકવાર, વપરાશકર્તાઓ સક્ષમ વપરાશ દસ્તાવેજો હશે. (દા.ત. પોસ્ટ બ્લોગ) લિંક (દા.ત.. બ્લોગર) અસ્તિત્વમાં છે." DocType: Data Import Beta,Submit After Import,આયાત પછી સબમિટ કરો DocType: Error Log,Log of Scheduler Errors,નિયોજક ભૂલો લોગ DocType: User,Bio,બાયો +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Helpનબોર્ડિંગ સ્લાઇડ સહાય લિંક DocType: OAuth Client,App Client Secret,એપ્લિકેશન ક્લાઈન્ટ સિક્રેટ apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,સબમિટ apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,માતાપિતા એ દસ્તાવેજનું નામ છે કે જેના પર ડેટા ઉમેરવામાં આવશે. @@ -2089,7 +2161,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,અપર કેસ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,કસ્ટમ HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ફોલ્ડર નામ દાખલ કરો -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ડિફોલ્ટ સરનામું ટેમ્પલેટ મળ્યું નથી. કૃપા કરીને સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં ટેમ્પલેટમાંથી એક નવું બનાવો. apps/frappe/frappe/auth.py,Unknown User,અજ્ઞાત વપરાશકર્તા apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,ભૂમિકા પસંદ કરો DocType: Comment,Deleted,ડિલીટ @@ -2105,7 +2176,7 @@ DocType: Chat Token,Chat Token,ચેટ ટોકન apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ચાર્ટ બનાવો apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,આયાત કરશો નહીં -DocType: Web Page,Center,કેન્દ્ર +DocType: Onboarding Slide Field,Center,કેન્દ્ર DocType: Notification,Value To Be Set,કિંમત સેટ થવા દો apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} સંપાદિત કરો apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,પ્રથમ સ્તર @@ -2113,7 +2184,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ડેટાબેઝ નામ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,પુનઃતાજું ફોર્મ DocType: DocField,Select,પસંદ કરો -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,સંપૂર્ણ લોગ જુઓ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,સંપૂર્ણ લોગ જુઓ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","સરળ પાયથોન અભિવ્યક્તિ, ઉદાહરણ: સ્થિતિ == 'ખોલો' અને પ્રકાર == 'બગ'" apps/frappe/frappe/utils/csvutils.py,File not attached,ફાઇલ જોડાયેલ નથી apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,"સંમ્પર્ક તૂટવો, છૂટા પડી જવુ. કેટલીક સુવિધાઓ કાર્ય કરી શકશે નહીં" @@ -2145,6 +2216,7 @@ DocType: Web Page,HTML for header section. Optional,હેડર વિભાગ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,આ લક્ષણ બ્રાન્ડ નવી અને હજુ પણ પ્રાયોગિક છે apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,મહત્તમ {0} પંક્તિઓ મંજૂરી DocType: Dashboard Chart Link,Chart,ચાર્ટ +DocType: Scheduled Job Type,Cron,ક્રોન DocType: Email Unsubscribe,Global Unsubscribe,વૈશ્વિક ઉમેદવારી દૂર કરો apps/frappe/frappe/utils/password_strength.py,This is a very common password.,આ એક ખૂબ જ સામાન્ય પાસવર્ડ છે. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,જુઓ @@ -2161,6 +2233,7 @@ DocType: Data Migration Connector,Hostname,યજમાનનામ DocType: Data Migration Mapping,Condition Detail,સ્થિતિ વિગતવાર apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","ચલણ {0} માટે, લઘુત્તમ વ્યવહાર રકમ {1} હોવી જોઈએ" DocType: DocField,Print Hide,પ્રિંટ છુપાવો +DocType: System Settings,HH:mm:ss,એચએચ: મીમી: એસએસ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,વપરાશકર્તા માટે apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,કિંમત દાખલ DocType: Workflow State,tint,રંગભેદ @@ -2215,6 +2288,7 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js ,Lead Conversion Time,લીડ કન્વર્ઝન સમય apps/frappe/frappe/desk/page/activity/activity.js,Build Report,રિપોર્ટ બનાવો DocType: Note,Notify users with a popup when they log in,જ્યારે તેઓ પ્રવેશ વપરાશકર્તાઓ પોપઅપ સાથે સૂચિત +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,કોર મોડ્યુલો {0} ગ્લોબલ સર્ચમાં શોધી શકાતા નથી. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,ખુલ્લી ચેટ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} અસ્તિત્વમાં નથી, મર્જ કરવા માટે એક નવી લક્ષ્ય ને પસંદ કરો" DocType: Data Migration Connector,Python Module,પાયથોન મોડ્યુલ @@ -2224,6 +2298,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,લૉગિ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,આવું કરવા માટે ઉમેરો DocType: Footer Item,Company,કંપની apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},સરેરાશ {0} +DocType: Scheduled Job Log,Scheduled,અનુસૂચિત DocType: User,Logout from all devices while changing Password,પાસવર્ડ બદલી રહ્યા હોય ત્યારે બધા ઉપકરણોથી લૉગઆઉટ કરો apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,પાસવર્ડ ચકાસો apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,ભૂલો આવી હતી @@ -2249,7 +2324,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,વપરાશકર્તા પરવાનગી પહેલાથી અસ્તિત્વમાં છે apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},ક્ષેત્ર {1} માટે ક columnલમ {0} ને મેપિંગ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} જુઓ -DocType: User,Hourly,અવરલી +DocType: Scheduled Job Type,Hourly,અવરલી apps/frappe/frappe/config/integrations.py,Register OAuth Client App,નોંધણી ઑથ ક્લાઈન્ટ એપ્લિકેશન DocType: DocField,Fetch If Empty,ખાલી કરો તો લાવો DocType: Data Migration Connector,Authentication Credentials,પ્રમાણીકરણ ઓળખપત્રો @@ -2259,10 +2334,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,પોઇન્ટ DocType: SMS Settings,SMS Gateway URL,એસએમએસ ગેટવે URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ન હોઈ શકે "{2}". તે એક પ્રયત્ન કરીશું "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} અથવા {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,તમે બધા સુયોજિત છે! DocType: Workflow State,trash,કચરો DocType: System Settings,Older backups will be automatically deleted,જૂની બેકઅપ આપોઆપ કાઢી નાખવામાં આવશે apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,અમાન્ય ઍક્સેસ કી ID અથવા ગુપ્ત ઍક્સેસ કી -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,તમે કેટલાક ઉર્જા પોઇન્ટ ગુમાવ્યા છે DocType: Post,Is Globally Pinned,વૈશ્વિક સ્તરે પિન થયેલ છે apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,તાજેતરની પ્રવૃત્તિ DocType: Workflow Transition,Conditions,શરતો @@ -2271,6 +2346,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,પુષ્ DocType: Event,Ends on,રોજ સમાપ્ત થાય છે DocType: Payment Gateway,Gateway,ગેટવે DocType: LDAP Settings,Path to Server Certificate,સર્વર પ્રમાણપત્રનો માર્ગ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,જાવાસ્ક્રિપ્ટ તમારા બ્રાઉઝર પર અક્ષમ છે apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,લિંક્સ જોવા માટે પૂરતી પરવાનગી નથી apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,સરનામું શીર્ષક ફરજિયાત છે. DocType: Google Contacts,Push to Google Contacts,ગૂગલ સંપર્કો પર દબાણ કરો @@ -2288,7 +2364,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,ઇયુ-વેસ્ટ -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","જો આ ચકાસાયેલું હોય, તો માન્ય ડેટા સાથેની પંક્તિઓ આયાત કરવામાં આવશે અને અયોગ્ય પંક્તિઓ એક નવી ફાઇલમાં ડમ્પ કરવામાં આવશે, જે તમારા માટે પછીથી આયાત કરે છે." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,દસ્તાવેજ ભૂમિકા વપરાશકર્તાઓ દ્વારા માત્ર સંપાદનયોગ્ય છે -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",તમે {1} દ્વારા {2} બંધ કરવામાં આવ્યું છે સોંપેલ કે કાર્ય {0}. DocType: Print Format,Show Line Breaks after Sections,બતાવો લાઇન વિભાગો પછી તોડે DocType: Communication,Read by Recipient On,પ્રાપ્તકર્તા દ્વારા વાંચો DocType: Blogger,Short Name,ટૂંકા નામ @@ -2320,6 +2395,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,સ DocType: Translation,PR sent,પીઆર મોકલ્યો DocType: Auto Email Report,Only Send Records Updated in Last X Hours,જ મોકલો રેકોર્ડ્સ છેલ્લે એક્સ કલાક અપડેટ કર્યું DocType: Communication,Feedback,પ્રતિસાદ +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,નવી આવૃત્તિમાં અપડેટ કર્યું 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ઓપન ભાષાંતર apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,આ ઇમેઇલ સ્વતઃ નિર્માણ થયેલ છે DocType: Workflow State,Icon will appear on the button,ચિહ્ન બટન પર દેખાશે @@ -2357,6 +2433,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,પેજ DocType: DocField,Precision,શુદ્ધતા DocType: Website Slideshow,Slideshow Items,સ્લાઇડ શો વસ્તુઓ apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,વારંવાર શબ્દો અને અક્ષરો ટાળવા પ્રયાસ કરો +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,સૂચનાઓ અક્ષમ +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,શું તમે ખરેખર બધી પંક્તિઓ કા deleteી નાખવા માંગો છો? DocType: Workflow Action,Workflow State,વર્કફ્લો રાજ્ય apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,પંક્તિઓ ઉમેર્યું apps/frappe/frappe/www/list.py,My Account,મારું ખાતું @@ -2365,6 +2443,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,દિવસો પછી apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,ક્યૂઝેડ ટ્રે કનેક્શન સક્રિય! DocType: Contact Us Settings,Settings for Contact Us Page,અમારો સંપર્ક પેજમાં માટે સુયોજનો +DocType: Server Script,Script Type,સ્ક્રિપ્ટ પ્રકાર DocType: Print Settings,Enable Print Server,પ્રિન્ટ સર્વર સક્ષમ કરો apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} અઠવાડિયા પહેલા DocType: Email Account,Footer,ફૂટર @@ -2389,8 +2468,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,ચેતવણી apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,આ બહુવિધ પૃષ્ઠો પર છાપવામાં આવી શકે છે DocType: Data Migration Run,Percent Complete,ટકા પૂર્ણ -DocType: Tag Category,Tag Category,ટેગ વર્ગ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","સરખામણી માટે,> 5, <10 અથવા = 324 નો ઉપયોગ કરો. શ્રેણીઓ માટે, 5:10 (5 અને 10 ની કિંમતો માટે) નો ઉપયોગ કરો." DocType: Google Calendar,Pull from Google Calendar,ગૂગલ કેલેન્ડરમાંથી ખેંચો apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,મદદ DocType: User,Login Before,પ્રવેશ પહેલાં @@ -2400,17 +2477,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,વિકેન્ડ છુપાવો apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,આપમેળે રિકરિંગ દસ્તાવેજો ઉત્પન્ન થાય છે. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,છે +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,માહિતી સાઇન apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,માટે {0} યાદી ન હોઈ શકે ભાવ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","આ ચલણ કેવી રીતે બંધારણ જોઈએ? સેટ નથી, તો, સિસ્ટમ મૂળભૂતોને વાપર્યા હશે" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} દસ્તાવેજો સબમિટ કરીએ? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,તમે લૉગ ઇન અને બેકઅપ ઍક્સેસ કરવા માટે સક્ષમ હોઈ સિસ્ટમ વ્યવસ્થાપક ભૂમિકા હોય છે કરવાની જરૂર છે. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ક્યૂઝેડ ટ્રે એપ્લિકેશનથી કનેક્ટ કરવામાં ભૂલ ...

કાચો મુદ્રણ સુવિધા વાપરવા માટે તમારી પાસે ક્યૂઝેડ ટ્રે એપ્લિકેશન ઇન્સ્ટોલ અને ચાલુ હોવી જરૂરી છે.

ક્યૂઝેડ ટ્રેને ડાઉનલોડ અને ઇન્સ્ટોલ કરવા અહીં ક્લિક કરો .
કાચો છાપવા વિશે વધુ જાણવા માટે અહીં ક્લિક કરો ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,પ્રિન્ટર મેપિંગ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,જોડાણ પહેલા સેવ કરો. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,શું તમે બધા કડી થયેલ દસ્તાવેજો રદ કરવા માંગો છો? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ઉમેરાયેલ {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype થી બદલી શકાતું નથી {0} માટે {1} પંક્તિ માં {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,ભૂમિકા પરવાનગીઓ DocType: Help Article,Intermediate,વચગાળાના +apps/frappe/frappe/config/settings.py,Email / Notifications,ઇમેઇલ / સૂચનાઓ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,રદ થયેલી દસ્તાવેજ ડ્રાફ્ટ તરીકે પુનઃસ્થાપિત કરેલ DocType: Data Migration Run,Start Time,પ્રારંભ સમય apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} એ {2} {3} {4} સાથે કડી થયેલ છે કારણ કે કાઢી નાખી અથવા રદ કરી શકાતી નથી @@ -2425,6 +2506,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,અમાન્ય પ્રાપ્તકર્તા સરનામું DocType: Workflow State,step-forward,પગલું આગળ DocType: System Settings,Allow Login After Fail,નિષ્ફળતા પછી પ્રવેશ મંજૂરી આપો +DocType: DocType Link,DocType Link,ડ Docકટાઇપ લિંક DocType: Role Permission for Page and Report,Set Role For,ભૂમિકા માટે સેટ DocType: GCalendar Account,The name that will appear in Google Calendar,તે નામ કે જે Google Calendar માં દેખાશે apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} સાથે ડાયરેક્ટ રૂમ પહેલેથી જ અસ્તિત્વમાં છે. @@ -2434,12 +2516,14 @@ DocType: System Settings,System Settings,સિસ્ટમ ગોઠવણી DocType: GCalendar Settings,Google API Credentials,Google API ઓળખપત્રો apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,સત્ર શરૂ કરવામાં નિષ્ફળ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},આ ઇમેઇલ {0} મોકલવામાં આવે છે અને નકલ કરવામાં આવી હતી {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},આ દસ્તાવેજ સબમિટ કર્યો {0} DocType: Workflow State,th,મી DocType: Social Login Key,Provider Name,પ્રદાતાનું નામ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},બનાવેલા નવા {0} DocType: Contact,Google Contacts,ગૂગલ સંપર્કો DocType: GCalendar Account,GCalendar Account,GCalendar એકાઉન્ટ DocType: Email Rule,Is Spam,સ્પામ છે +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,છેલ્લા apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},રિપોર્ટ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ઓપન {0} DocType: Data Import Beta,Import Warnings,ચેતવણીઓ આયાત કરો @@ -2451,6 +2535,7 @@ DocType: Workflow State,ok-sign,બરાબર સાઇન apps/frappe/frappe/config/settings.py,Deleted Documents,કાઢી નાખેલ દસ્તાવેજો apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ફોર્મેટ કેસ સંવેદનશીલ છે apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ડેસ્કટોપ ચિહ્ન પહેલેથી જ અસ્તિત્વમાં છે +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"સ્લાઇડ્સ બતાવવા જોઈએ તે બધા ડોમેન્સમાં શું છે તેનો ઉલ્લેખ કરો. જો કંઇપણ સ્પષ્ટ કરેલ નથી, તો મૂળભૂત રીતે સ્લાઇડ બધા ડોમેન્સમાં બતાવવામાં આવશે." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ડુપ્લિકેટ DocType: Newsletter,Create and Send Newsletters,બનાવો અને મોકલો ન્યૂઝલેટર્સ apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,તમારી ટિપ્પણી બદલ આભાર. તે મંજૂરી બાદ પ્રકાશિત કરવામાં આવશે @@ -2460,6 +2545,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ગૂગલ કેલેન્ડર ઇવેન્ટ ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""પિતૃ"" પિતૃ ટેબલ નોંધે છે જેમાં આ પંક્તિ ઉમેરાવી જ જોઈએ" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,સમીક્ષા પોઇન્ટ્સ: +DocType: Scheduled Job Log,Scheduled Job Log,સુનિશ્ચિત જોબ લોગ +DocType: Server Script,Before Delete,કા Deleteી નાંખો તે પહેલાં apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,સાથે વહેંચાયેલ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ફાઇલો / URL ને જોડો અને કોષ્ટકમાં ઉમેરો. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,સંદેશ સેટઅપ નથી @@ -2482,19 +2569,20 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,વિશે પેજમાં માટે સુયોજનો apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ગેરુનો ચુકવણી ગેટવે સેટિંગ્સ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,પ્રિંટરને મોકલો! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energyર્જા પોઇંટ્સ +DocType: Notification Settings,Energy Points,Energyર્જા પોઇંટ્સ DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,દા.ત. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,કીઝ જનરેટ કરો apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,આ તમારા ડેટાને કાયમી ધોરણે દૂર કરશે. DocType: DocType,View Settings,સેટિંગ્સ જુઓ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,નવી સૂચના DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,વિનંતી સ્ટ્રક્ચર +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,કંટ્રોલર મેથડ ગેટ_રાઝોરપે_ર્ડર ખૂટે છે DocType: Personal Data Deletion Request,Pending Verification,બાકી ચકાસણી DocType: Website Meta Tag,Website Meta Tag,વેબસાઇટ મેટા ટ Tagગ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","બિન પ્રમાણભૂત પોર્ટ (દા.ત. 587). Google મેઘ પર જો, પોર્ટ 2525 ની અજમાવી જુઓ" apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","ક્લીયરિંગ સમાપ્તિ તારીખ, કારણ કે તે પ્રકાશિત પૃષ્ઠો માટે ભૂતકાળમાં હોઈ શકતી નથી." DocType: User,Send Me A Copy of Outgoing Emails,આઉટગોઇંગ ઇમેઇલ્સની કૉપિ મને મોકલો -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.,ગૂગલ ઍનલિટિક્સ ID ને ઉમેરો: દા.ત.. UA-89XXX57-1. વધુ માહિતી માટે Google Analytics પર મદદ શોધવા કૃપા કરીને. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,પાસવર્ડ 100 થી વધુ અક્ષરો લાંબા સમય સુધી ન હોઈ શકે છે DocType: OAuth Client,App Client ID,એપ્લિકેશન ક્લાઈન્ટ ID ને @@ -2523,6 +2611,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,નવો પ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} સાથે આ દસ્તાવેજ શેર {1} DocType: Website Settings,Brand Image,બ્રાન્ડ છબી DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,આયાત નમૂનામાં એક મથાળું અને ઓછામાં ઓછી એક પંક્તિ હોવી જોઈએ. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,ગૂગલ કેલેન્ડર રૂપરેખાંકિત થયેલ છે. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","ટોચની સંશોધક પટ્ટીમાં, ફૂટર અને લોગો સેટઅપ." DocType: Web Form Field,Max Value,મેક્સ ભાવ @@ -2531,6 +2620,7 @@ DocType: Auto Repeat,Preview Message,પૂર્વાવલોકન સંદ DocType: User Social Login,User Social Login,વપરાશકર્તા સામાજિક લૉગિન DocType: Contact,All,બધા DocType: Email Queue,Recipient,પ્રાપ્તકર્તા +DocType: Webhook,Webhook Security,વેબહૂક સુરક્ષા DocType: Communication,Has Attachment,જોડાણ ધરાવે DocType: Address,Sales User,સેલ્સ વપરાશકર્તા apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ખેંચો અને છોડો બિલ્ડ સાધન અને પ્રિન્ટ ફોર્મેટ્સ કસ્ટમાઇઝ કરવા માટે. @@ -2620,14 +2710,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,વેબસાઇટ સ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,સ્વયં મંજૂરીને મંજૂરી નથી DocType: GSuite Templates,Template ID,નમૂના ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,ગ્રાન્ટ પ્રકારનો મિશ્રણ ( {0} ) અને પ્રતિભાવ પ્રકાર ( {1} ) ને મંજૂરી નથી -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} નો નવો સંદેશ DocType: Portal Settings,Default Role at Time of Signup,સાઇનઅપ સમયે મૂળભૂત ભૂમિકા DocType: DocType,Title Case,શીર્ષક કેસ apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,તમારો ડેટા ડાઉનલોડ કરવા માટે નીચેની લિંક પર ક્લિક કરો apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},વપરાશકર્તા માટે સક્ષમ ઇમેઇલ ઇનબૉક્સ {0} DocType: Data Migration Run,Data Migration Run,ડેટા માઇગ્રેશન રન DocType: Blog Post,Email Sent,ઇમેઇલ મોકલ્યો છે -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,જૂનું DocType: DocField,Ignore XSS Filter,એક્સએસએસ ફિલ્ટર અવગણો apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,દૂર apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ડ્રૉપબૉક્સ બેકઅપ સેટિંગ્સ @@ -2681,6 +2769,7 @@ DocType: Async Task,Queued,કતારબદ્ધ DocType: Braintree Settings,Use Sandbox,ઉપયોગ સેન્ડબોક્સ apps/frappe/frappe/utils/goal.py,This month,આ મહિને apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,નવા કસ્ટમ પ્રિન્ટ ફોર્મેટ +DocType: Server Script,Before Save (Submitted Document),સેવ કરતા પહેલા (સબમિટ કરેલો દસ્તાવેજ) DocType: Custom DocPerm,Create,બનાવો apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,પ્રદર્શિત કરવા માટે વધુ આઇટમ્સ નથી apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,પાછલા રેકોર્ડ પર જાઓ @@ -2736,6 +2825,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ટ્રેશમાં ખસેડો DocType: Web Form,Web Form Fields,વેબ ફોર્મ ફીલ્ડ્સ DocType: Data Import,Amended From,સુધારો +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,વપરાશકર્તાને સ્લાઇડમાં શું ભરવું તે અંગે કોઈ વિચાર ન હોય તેવા કિસ્સામાં સહાયની વિડિઓ લિંક ઉમેરો. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},ચેતવણી: અક્ષમ શોધવા માટે {0} સંબંધિત કોઈ કોષ્ટકમાં {1} DocType: S3 Backup Settings,eu-north-1,ઇયુ-ઉત્તર -1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,આ દસ્તાવેજ હાલમાં અમલ માટે કતારમાં છે. મહેરબાની કરીને ફરીથી પ્રયતન કરો @@ -2756,6 +2846,7 @@ DocType: Blog Post,Blog Post,બ્લોગ પોસ્ટ DocType: Access Log,Export From,માંથી નિકાસ કરો apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,અદ્યતન શોધ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,તમને ન્યૂઝલેટર જોવાની પરવાનગી નથી. +DocType: Dashboard Chart,Group By,ગ્રુપ દ્વારા DocType: User,Interests,રૂચિ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,પાસવર્ડ રીસેટ સૂચનાઓ તમારા ઇમેઇલ પર મોકલવામાં આવ્યા છે DocType: Energy Point Rule,Allot Points To Assigned Users,સોંપાયેલ વપરાશકર્તાઓને પોઇન્ટ ફાળવો @@ -2771,6 +2862,7 @@ DocType: Assignment Rule,Assignment Rule,સોંપણી નિયમ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},સૂચવેલ વપરાશકર્તા નામ: {0} DocType: Assignment Rule Day,Day,દિવસ apps/frappe/frappe/public/js/frappe/desk.js,Modules,મોડ્યુલો +DocType: DocField,Mandatory Depends On,ફરજિયાત ચાલુ રાખે છે apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ચુકવણી સફળતા apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,કોઈ {0} મેલ DocType: OAuth Bearer Token,Revoked,રદ @@ -2778,6 +2870,7 @@ DocType: Web Page,Sidebar and Comments,સાઇડબાર અને ટિપ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","તમે એક દસ્તાવેજ પછી તે રદ કરો અને સેવ સુધારો હોય ત્યારે, તે જૂના નંબર ની આવૃત્તિ છે કે જે નવા સંખ્યા મળશે." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} દસ્તાવેજને જોડવાની મંજૂરી નથી, કૃપા કરીને પ્રિંટ સેટિંગ્સમાં {0} માટે છાપવા સક્ષમ કરો" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} પર દસ્તાવેજ જુઓ DocType: Stripe Settings,Publishable Key,publishable કી apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,આયાત પ્રારંભ કરો @@ -2790,6 +2883,7 @@ DocType: Currency,Fraction,અપૂર્ણાંક apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ઇવેન્ટ ગૂગલ કેલેન્ડર સાથે સમન્વયિત. DocType: LDAP Settings,LDAP First Name Field,LDAP પ્રથમ નામ ક્ષેત્ર DocType: Contact,Middle Name,પિતાનું નામ +DocType: DocField,Property Depends On,સંપત્તિ પર આધાર રાખે છે DocType: Custom Field,Field Description,ક્ષેત્ર વર્ણન apps/frappe/frappe/model/naming.py,Name not set via Prompt,પ્રોમ્પ્ટ મારફતે સુયોજિત નથી Name apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ઇમેઇલ ઇનબૉક્સ @@ -2836,11 +2930,11 @@ DocType: Workflow State,folder-close,ફોલ્ડર બંધ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,રિપોર્ટ: DocType: Print Settings,Print taxes with zero amount,શૂન્ય રકમ સાથે કર છાપો apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} નામ આપવામાં આવ્યું કરવાની પરવાનગી નથી +DocType: Server Script,Before Insert,દાખલ કરતા પહેલા DocType: Custom Script,Custom Script,કસ્ટમ સ્ક્રિપ્ટ DocType: Address,Address Line 2,સરનામું લાઇન 2 DocType: Address,Reference,સંદર્ભ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,સોંપેલ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી ડિફ defaultલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ડેટા માઇગ્રેશન મેપિંગ વિગતવાર DocType: Data Import,Action,ક્રિયા DocType: GSuite Settings,Script URL,સ્ક્રિપ્ટ URL @@ -2866,11 +2960,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,યાદી દૃશ્યમાં DocType: Email Account,Use TLS,ઉપયોગ TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,અમાન્ય લૉગિન અથવા પાસવર્ડ +DocType: Scheduled Job Type,Weekly Long,સાપ્તાહિક લાંબી apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ડાઉનલોડ નમૂનો apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,સ્વરૂપો કરવા માટે વૈવિધ્યપૂર્ણ Javascript ઉમેરો. ,Role Permissions Manager,ભૂમિકા પરવાનગીઓ વ્યવસ્થાપક apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,નવી પ્રિંટ ફોર્મેટ નામ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,સાઇડબાર ટૉગલ કરો +DocType: Server Script,After Save (Submitted Document),સેવ પછી (સબમિટ કરેલો દસ્તાવેજ) DocType: Data Migration Run,Pull Insert,સામેલ કરો પુલ કરો DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ગુણાકાર મૂલ્ય સાથેના ગુણાકાર પછી મહત્તમ પોઇન્ટ્સને મંજૂરી આપવામાં આવે છે (નોંધ: કોઈ મર્યાદા માટે આ ક્ષેત્રને ખાલી છોડી દો નહીં અથવા 0 સેટ કરો) @@ -2889,6 +2985,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,બ્લોગ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ઇન્સ્ટોલ કરેલું નથી apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,માહિતી સાથે ડાઉનલોડ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} માટેના મૂલ્યો બદલાયા +DocType: Server Script,Before Cancel,રદ કરતા પહેલા DocType: Workflow State,hand-right,હાથ અધિકાર DocType: Website Settings,Subdomain,સબડોમેઇન DocType: S3 Backup Settings,Region,પ્રદેશ @@ -2933,12 +3030,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,જુનો પાસ DocType: S3 Backup Settings,us-east-1,યુએસ-પૂર્વ -1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},દ્વારા પોસ્ટ્સ {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","બંધારણમાં સ્તંભો, ક્વેરી માં કૉલમ લેબલ્સ આપો." +DocType: Onboarding Slide,Slide Fields,સ્લાઇડ ક્ષેત્રો DocType: Has Domain,Has Domain,ડોમેનની DocType: User,Allowed In Mentions,મંજૂરીમાં ઉલ્લેખિત apps/frappe/frappe/www/login.html,Don't have an account? Sign up,એક એકાઉન્ટ નથી? સાઇન અપ કરો apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID ફીલ્ડને દૂર કરી શકતા નથી apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0}: Submittable જો નહિં, તો સોંપો સુધારો સેટ કરી શકાતો નથી" DocType: Address,Bihar,બિહાર +DocType: Notification Settings,Subscribed Documents,સબ્સ્ક્રાઇબ કરેલા દસ્તાવેજો apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,વપરાશકર્તા સેટિંગ્સ DocType: Report,Reference Report,સંદર્ભ અહેવાલ DocType: Activity Log,Link DocType,લિંક Doctype @@ -2956,6 +3055,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ગૂગલ કેલ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,પાનું તમને માટે જોઈ રહ્યા હોય ખૂટે છે. આ છે કારણ કે તે ખસેડવામાં આવે છે અથવા ત્યાં લિંક એક ટાઈપો છે હોઈ શકે છે. apps/frappe/frappe/www/404.html,Error Code: {0},ભૂલ કોડ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","સાદા લખાણમાં, રેખાઓ માત્ર એક દંપતિ પાનું યાદી માટે વર્ણન. (મહત્તમ 140 અક્ષરો)" +DocType: Server Script,DocType Event,ડ Docકટાઇપ ઇવેન્ટ DocType: Workflow,Allow Self Approval,સ્વયં મંજૂરીની મંજૂરી આપો DocType: Event,Event Category,ઇવેન્ટ કેટેગરી apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,જોહ્ન ડો @@ -2971,6 +3071,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,તમારું નામ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,કનેક્શન સફળતા DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,સ્લાઇડ પ્રકારનો boardનબોર્ડિંગ સ્લાઇડ પહેલાથી અસ્તિત્વમાં છે. DocType: DocType,Default Sort Field,ડિફોલ્ટ સortર્ટ ક્ષેત્ર DocType: File,Is Folder,ફોલ્ડર છે DocType: Document Follow,DocType,Doctype @@ -3007,7 +3108,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,મૂ DocType: Workflow State,arrow-up,તીર અપ DocType: Dynamic Link,Link Document Type,લિંક દસ્તાવેજ પ્રકાર apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} કોષ્ટક માટે ઓછામાં ઓછી એક પંક્તિ હોવી જોઈએ +DocType: Server Script,Server Script,સર્વર સ્ક્રિપ્ટ DocType: OAuth Bearer Token,Expires In,સમાપ્ત થાય છે +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","ક્ષેત્રોનો સેટ તમે પુનરાવર્તિત કરવા માંગો છો તે જથ્થો (દા.ત.: જો તમને સ્લાઇડમાં 3 ગ્રાહકો જોઈએ છે, તો આ ક્ષેત્રને 3 પર સેટ કરો. સ્લાઇડ્સમાં ફક્ત ક્ષેત્રોનો પ્રથમ સેટ જ ફરજિયાત બતાવવામાં આવશે)" DocType: DocField,Allow on Submit,સબમિટ પર પરવાનગી આપે છે DocType: DocField,HTML,એચટીએમએલ DocType: Error Snapshot,Exception Type,અપવાદ પ્રકાર @@ -3017,6 +3120,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,હેડર્સ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,આવનારી પ્રવૃત્તિઓ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,એપ્લિકેશન ઍક્સેસ કી અને એપ્લિકેશન સિક્રેટ કી કિંમતો દાખલ કરો +DocType: Email Account,Append Emails to Sent Folder,મોકલેલા ફોલ્ડરમાં ઇમેઇલ્સ જોડો DocType: Web Form,Accept Payment,ચુકવણી સ્વીકારી apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,સૂચિ આઇટમ પસંદ કરો apps/frappe/frappe/config/core.py,A log of request errors,વિનંતી ભૂલો લોગ @@ -3035,7 +3139,7 @@ DocType: Translation,Contributed,ફાળો આપ્યો apps/frappe/frappe/config/customization.py,Form Customization,ફોર્મ કસ્ટમાઇઝેશન apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,કોઈ સક્રિય સત્રો નથી DocType: Web Form,Route to Success Link,સફળતા લિંક માટે માર્ગ -DocType: Top Bar Item,Right,અધિકાર +DocType: Onboarding Slide Field,Right,અધિકાર apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,કોઈ આગામી ઘટનાઓ નથી DocType: User,User Type,વપરાશકર્તા પ્રકાર DocType: Prepared Report,Ref Report DocType,રિપોર્ટ રિપોર્ટ રિપોર્ટ રિપોર્ટ @@ -3052,6 +3156,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,મહેરબ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' અથવા 'https: //' થી પ્રારંભ થવો આવશ્યક છે apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,વિકલ્પ 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,આ પૂર્વવત્ કરી શકાતું નથી DocType: Workflow State,Edit,સંપાદિત કરો DocType: Website Settings,Chat Operators,ચેટ ઓપરેટર્સ DocType: S3 Backup Settings,ca-central-1,સીએ-સેન્ટ્રલ -1 @@ -3063,7 +3168,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,તમે આ ફોર્મ સંગ્રહ ન કરેલા ફેરફારો છે. તમે આ ચાલુ રાખવા પહેલાં સેવ કરો. DocType: Address,Telangana,તેલંગાણા apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} એક વિકલ્પ હોઈ જ જોઈએ માટે મૂળભૂત -DocType: Tag Doc Category,Tag Doc Category,ટેગ ડૉક વર્ગ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 થી વધુ કumnsલમ સાથેનો અહેવાલ લેન્ડસ્કેપ મોડમાં વધુ સારું લાગે છે. apps/frappe/frappe/database/database.py,Invalid field name: {0},અમાન્ય ક્ષેત્રનું નામ: {0} DocType: Milestone,Milestone,માઇલ સ્ટોન @@ -3072,7 +3176,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} પર જા apps/frappe/frappe/email/queue.py,Emails are muted,ઇમેઇલ્સ મ્યૂટ છે apps/frappe/frappe/config/integrations.py,Google Services,Google સેવાઓ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + ઉપર -apps/frappe/frappe/utils/data.py,1 weeks ago,1 અઠવાડિયા પહેલા +DocType: Onboarding Slide,Slide Description,સ્લાઇડ વર્ણન DocType: Communication,Error,ભૂલ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,કૃપા કરીને પહેલા સંદેશ સેટ કરો DocType: Auto Repeat,End Date,સમાપ્તિ તારીખ @@ -3093,10 +3197,12 @@ DocType: Footer Item,Group Label,જૂથ લેબલ DocType: Kanban Board,Kanban Board,Kanban બોર્ડ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ગૂગલ સંપર્કો રૂપરેખાંકિત કરવામાં આવી છે. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 રેકોર્ડની નિકાસ કરવામાં આવશે +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,વપરાશકર્તા સાથે સંકળાયેલ કોઈ ઇમેઇલ એકાઉન્ટ નથી. કૃપા કરીને વપરાશકર્તા> ઇમેઇલ ઇનબોક્સ હેઠળ એક એકાઉન્ટ ઉમેરો. DocType: DocField,Report Hide,રિપોર્ટ છુપાવો apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},વૃક્ષ દેખાવ માટે ઉપલબ્ધ નથી {0} DocType: DocType,Restrict To Domain,DOMAIN પર પ્રતિબંધિત DocType: Domain,Domain,ડોમેન +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,અમાન્ય ફાઇલ URL. કૃપા કરીને સિસ્ટમ સંચાલકનો સંપર્ક કરો. DocType: Custom Field,Label Help,લેબલ મદદ DocType: Workflow State,star-empty,સ્ટાર ખાલી apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,તારીખો ઘણીવાર અનુમાન કરવા માટે સરળ છે. @@ -3120,6 +3226,7 @@ DocType: Workflow State,hand-left,હાથ છોડી DocType: Data Import,If you are updating/overwriting already created records.,જો તમે પહેલાથી બનાવેલા રેકોર્ડ્સને ફરીથી અપડેટ કરી રહ્યાં હોવ તો. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,વૈશ્વિક છે DocType: Email Account,Use SSL,ઉપયોગ SSL +DocType: Webhook,HOOK-.####,હૂક -. #### DocType: Workflow State,play-circle,નાટક વર્તુળ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,દસ્તાવેજ યોગ્ય રીતે અસાઇન કરી શકાયું નથી apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",અમાન્ય "depends_on" એક્સપ્રેશન @@ -3136,6 +3243,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,છેલ્લે તાજું કર્યું apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,દસ્તાવેજ પ્રકાર માટે DocType: Workflow State,arrow-right,તીર અધિકાર +DocType: Server Script,API Method,એપીઆઇ પદ્ધતિ DocType: Workflow State,Workflow state represents the current state of a document.,વર્કફ્લો રાજ્ય દસ્તાવેજનું વર્તમાન રાજ્ય રજૂ કરે છે. DocType: Letter Head,Letter Head Based On,લેટર હેડ બેઝ્ડ apps/frappe/frappe/utils/oauth.py,Token is missing,ટોકન ગુમ થયેલ હોય @@ -3174,6 +3282,7 @@ DocType: Comment,Relinked,relinked DocType: Print Settings,Compact Item Print,કોમ્પેક્ટ વસ્તુ છાપો DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL પુનઃદિશામાન +DocType: Onboarding Slide Field,Placeholder,પ્લેસહોલ્ડર DocType: SMS Settings,Enter url parameter for receiver nos,રીસીવર અમે માટે URL પરિમાણ દાખલ DocType: Chat Profile,Online,ઓનલાઇન DocType: Email Account,Always use Account's Name as Sender's Name,હંમેશાં એકાઉન્ટના નામનો ઉપયોગ પ્રેષકના નામ તરીકે કરો @@ -3207,6 +3316,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,માલિક ત DocType: Data Migration Mapping,Push,દબાણ કરો apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ફાઇલો અહીં મૂકો DocType: OAuth Authorization Code,Expiration time,સમાપ્તિ સમય +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,દસ્તાવેજો ખોલો DocType: Web Page,Website Sidebar,વેબસાઇટ સાઇડબાર DocType: Web Form,Show Sidebar,બતાવો સાઇડબાર apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,તમે આ વપરાશ માટે લૉગ ઇન કરવાની જરૂર {0}. @@ -3222,6 +3332,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,વૈશ્ DocType: Desktop Icon,Page,પેજમાં apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},શોધી શકાતી નથી {0} માં {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,નામો અને પોતાને દ્વારા અટક ધારી સરળ હોય છે. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},દસ્તાવેજનું નામ {0} થી {1} કરાયું apps/frappe/frappe/config/website.py,Knowledge Base,જ્ઞાન પૃષ્ટ DocType: Workflow State,briefcase,બ્રીફકેસ apps/frappe/frappe/model/document.py,Value cannot be changed for {0},કિંમત માટે બદલી શકાતું નથી {0} @@ -3256,6 +3367,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,પ્રિન્ટ ફોર્મેટ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ગ્રિડ દૃશ્ય ટૉગલ કરો apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,આગળના રેકોર્ડ પર જાઓ +DocType: System Settings,Time Format,સમય ફોર્મેટ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,અમાન્ય ચુકવણી ગેટવે ઓળખાણપત્ર DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,આ નમૂનાની ફાઇલ છે જે ફક્ત કેટલીક પંક્તિઓથી બનેલી હરોળથી પેદા થાય છે. તમારે આ ફાઇલને સુધારણા અને આયાત માટે ઉપયોગ કરવો જોઈએ. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,દસ્તાવેજ પ્રકાર અને ભૂમિકાઓ પર સેટ પરવાનગીઓ @@ -3298,12 +3410,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,જવા apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ડેસ્ક પાના (સ્થળ ધારકો) DocType: DocField,Collapsible Depends On,સંકેલી શકાય એવું પર આધાર રાખે છે DocType: Print Style,Print Style Name,છાપો પ્રકાર નામ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,જૂથ બાય ફીલ્ડને ડેશબોર્ડ ચાર્ટ બનાવવા માટે જરૂરી છે DocType: Print Settings,Allow page break inside tables,કોષ્ટકો અંદર પૃષ્ઠ વિરામ માટે પરવાનગી આપે છે DocType: Email Account,SMTP Server,SMTP સર્વર DocType: Print Format,Print Format Help,પ્રિન્ટ ફોર્મેટ મદદ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} રૂમમાં લગભગ એક વપરાશકર્તા હોવો આવશ્યક છે. DocType: DocType,Beta,બીટા DocType: Dashboard Chart,Count,ગણતરી +DocType: Dashboard Chart,Group By Type,પ્રકાર પ્રમાણે જૂથ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},પુનર્સ્થાપિત {0} કે {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","તમે અપડેટ કરવામાં આવે છે, "પર ફરીથી લખી" પસંદ કરો બીજું હાલની પંક્તિઓ કાઢી નાખવામાં આવશે નહીં." DocType: DocField,Translatable,અનુવાદયોગ્ય @@ -3313,14 +3427,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,વપર DocType: Web Form,Web Form,વેબ ફોર્મ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},તારીખ {0} ફોર્મેટમાં હોવી જોઈએ: {1} DocType: About Us Settings,Org History Heading,મથાળું સંસ્થા ઇતિહાસ +DocType: Scheduled Job Type,Scheduled Job Type,સુનિશ્ચિત જોબનો પ્રકાર DocType: Print Settings,Allow Print for Cancelled,રદ માટે િ ટ કરો પરવાનગી આપે છે DocType: Communication,Integrations can use this field to set email delivery status,એકીકરણ ઇમેઇલ વિતરણ સ્થિતિ ગોઠવવા માટે આ ક્ષેત્ર ઉપયોગ કરી શકો છો +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,તમારી પાસે બધા કડી થયેલ દસ્તાવેજોને રદ કરવાની પરવાનગી નથી. DocType: Web Form,Web Page Link Text,વેબ પેજ લિંક ટેક્સ્ટ DocType: Page,System Page,સિસ્ટમ પૃષ્ઠ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","વગેરે સેટ મૂળભૂત બંધારણ, પાનું માપ, પ્રિન્ટ શૈલી" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} માટેના કસ્ટમાઇઝેશન આ પર નિકાસ:
{1} DocType: Website Settings,Include Search in Top Bar,શામેલ ટોચના બાર શોધો +DocType: Scheduled Job Type,Daily Long,દૈનિક લાંબી DocType: GSuite Settings,Allow GSuite access,GSuite ઍક્સેસની મંજૂરી આપો DocType: DocType,DESC,DESC DocType: DocType,Naming,નામકરણ @@ -3409,6 +3526,7 @@ DocType: Notification,Send days before or after the reference date,પહેલ DocType: User,Allow user to login only after this hour (0-24),વપરાશકર્તા માત્ર આ કલાક પછી પ્રવેશ કરવા માટે (0-24) માટે પરવાનગી આપે છે apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",અનુક્રમે એક પછી એક સોંપો DocType: Integration Request,Subscription Notification,સબ્સ્ક્રિપ્શન સૂચના +DocType: Customize Form Field, Allow in Quick Entry ,ક્વિક એન્ટ્રીમાં મંજૂરી આપો apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,અથવા જોડો એ DocType: Auto Repeat,Start Date,પ્રારંભ તારીખ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,ભાવ @@ -3423,6 +3541,7 @@ DocType: Google Drive,Backup Folder ID,બેકઅપ ફોલ્ડર ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,નથી વિકાસકર્તા મોડ માં! Site_config.json માં સુયોજિત અથવા 'વૈવિધ્યપૂર્ણ' Doctype બનાવે છે. DocType: Workflow State,globe,વિશ્વમાં DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,વિડિઓ DocType: Assignment Rule,Priority,પ્રાધાન્યતા DocType: Email Queue,Unsubscribe Param,ઉમેદવારી દૂર કરો પરમ DocType: DocType,Hide Sidebar and Menu,સાઇડબાર અને મેનુ છુપાવો @@ -3434,6 +3553,7 @@ DocType: DocType,Allow Import (via Data Import Tool),આયાત મંજૂ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,SR DocType: DocField,Float,ફ્લોટ DocType: Print Settings,Page Settings,પૃષ્ઠ સેટિંગ્સ +DocType: Notification Settings,Notification Settings,સૂચના સેટિંગ્સ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,સાચવી રહ્યું છે ... apps/frappe/frappe/www/update-password.html,Invalid Password,અમાન્ય પાસવર્ડ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,સફળતાપૂર્વક {1} માંથી {0} રેકોર્ડ આયાત કર્યો. @@ -3449,6 +3569,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,લેટર હેડ ઇમેજ DocType: Address,Party GSTIN,પાર્ટી GSTIN +DocType: Scheduled Job Type,Cron Format,ક્રોન ફોર્મેટ apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} રિપોર્ટ DocType: SMS Settings,Use POST,POST નો ઉપયોગ કરો DocType: Communication,SMS,એસએમએસ @@ -3493,18 +3614,20 @@ DocType: Workflow,Allow approval for creator of the document,દસ્તાવ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,રિપોર્ટ સાચવો DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API એન્ડપોઇન્ટ અર્ગસ +DocType: DocType Action,Server Action,સર્વર ક્રિયા apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,સંચાલક ઍક્સેસ {0} પર {1} IP સરનામું મારફતે {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,પેરેંટ ફીલ્ડ એક માન્ય ક્ષેત્રનું નામ હોવું આવશ્યક છે apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,સબ્સ્ક્રિપ્શનમાં સુધારો કરતી વખતે નિષ્ફળ DocType: LDAP Settings,LDAP Group Field,એલડીએપી ગ્રુપ ક્ષેત્ર +DocType: Notification Subscribed Document,Notification Subscribed Document,સૂચન સબ્સ્ક્રાઇબ કરેલું દસ્તાવેજ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,સમકક્ષ apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,અમાન્ય CSV ફોર્મેટ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ક્યૂઝેડ ટ્રે એપ્લિકેશનથી કનેક્ટ કરવામાં ભૂલ ...

કાચો મુદ્રણ સુવિધા વાપરવા માટે તમારી પાસે ક્યૂઝેડ ટ્રે એપ્લિકેશન ઇન્સ્ટોલ અને ચાલુ હોવી જરૂરી છે.

ક્યૂઝેડ ટ્રેને ડાઉનલોડ અને ઇન્સ્ટોલ કરવા અહીં ક્લિક કરો .
કાચો છાપવા વિશે વધુ જાણવા માટે અહીં ક્લિક કરો ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,સેટ બેકઅપ સંખ્યા DocType: DocField,Do not allow user to change after set the first time,પ્રથમ વખત વપરાશકર્તા પછી સમૂહ બદલવા માટે પરવાનગી આપે છે નથી apps/frappe/frappe/utils/data.py,1 year ago,1 વર્ષ પહેલાં +DocType: DocType,Links Section,કડીઓ વિભાગ apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","બધા છાપવા, ડાઉનલોડ અને નિકાસ ઇવેન્ટ્સનો લ Logગ જુઓ" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 મહિનો DocType: Contact,Contact,સંપર્ક @@ -3530,16 +3653,18 @@ DocType: Auto Email Report,Dynamic Report Filters,ગતિશીલ અહે DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,નવું ઇમેઇલ DocType: Custom DocPerm,Export,નિકાસ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},સફળતાપૂર્વક અપડેટ {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,ક્યૂઝેડ ટ્રે નિષ્ફળ: DocType: Dropbox Settings,Dropbox Settings,ડ્રૉપબૉક્સ સુયોજનો DocType: About Us Settings,More content for the bottom of the page.,આ પાનું તળિયે માટે વધુ સામગ્રી. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,આ દસ્તાવેજ પાછો ફર્યો છે apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,ગૂગલ ડ્રાઇવ બેકઅપ સફળ. +DocType: Webhook,Naming Series,નામકરણ સિરીઝ DocType: Workflow,DocType on which this Workflow is applicable.,Doctype જેના પર આ વર્કફ્લો લાગુ પડે છે. DocType: User,Enabled,સક્ષમ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,સેટઅપ પૂર્ણ કરવામાં નિષ્ફળ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},નવું {0}: {1} -DocType: Tag Category,Category Name,કેટેગરી નામ +DocType: Blog Category,Category Name,કેટેગરી નામ apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,ચાઇલ્ડ ટેબલ ડેટા મેળવવા માટે માતાપિતાની આવશ્યકતા છે apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,આયાત ઉમેદવારો DocType: Print Settings,PDF Settings,પીડીએફ સેટિંગ્સ @@ -3575,6 +3700,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,કેલેન્ડર apps/frappe/frappe/client.py,No document found for given filters,કોઈ દસ્તાવેજ આપવામાં ફિલ્ટર મળી apps/frappe/frappe/config/website.py,A user who posts blogs.,એક વપરાશકર્તા જે બ્લોગ્સ પોસ્ટ કરે છે. +DocType: DocType Action,DocType Action,ડ Docકટાઇપ .ક્શન apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","અન્ય {0} નામ {1} અસ્તિત્વમાં સાથે, અન્ય નામ પસંદ કરો" DocType: DocType,Custom?,કસ્ટમ? DocType: Website Settings,Website Theme Image,વેબસાઇટ થીમ છબી @@ -3584,6 +3710,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},લોડ apps/frappe/frappe/config/integrations.py,Backup,બેકઅપ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ડેશબોર્ડ ચાર્ટ બનાવવા માટે દસ્તાવેજ પ્રકાર આવશ્યક છે DocType: DocField,Read Only,ફક્ત વાંચી +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,રેઝરપે ઓર્ડર બનાવી શક્યાં નથી apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,નવી ન્યૂઝલેટર DocType: Energy Point Log,Energy Point Log,એનર્જી પોઇન્ટ લ Logગ DocType: Print Settings,Send Print as PDF,પીડીએફ તરીકે છાપો મોકલો @@ -3608,16 +3735,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ત apps/frappe/frappe/www/login.html,Or login with,અથવા પ્રવેશ DocType: Error Snapshot,Locals,સ્થાનિક apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},દ્વારા વાતચીત {0} પર {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} એક ટિપ્પણી માં તમારો ઉલ્લેખ કર્યો {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,દ્વારા જૂથ પસંદ કરો ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,દા.ત. (55 + 434) / 4 અથવા = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} જરૂરી છે DocType: Integration Request,Integration Type,એકત્રિકરણ પ્રકાર DocType: Newsletter,Send Attachements,attachements મોકલો +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,કોઈ ગાળકો મળ્યાં નથી apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ગૂગલ સંપર્કો એકીકરણ. DocType: Transaction Log,Transaction Log,ટ્રાન્ઝેક્શન લોગ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),ગયા મહિનાના પ્રદર્શન પર આધારિત આંકડા ({0} થી {1} થી) DocType: Contact Us Settings,City,સિટી +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,બધા વપરાશકર્તાઓ માટે કાર્ડ છુપાવો DocType: DocField,Perm Level,પર્મ સ્તર apps/frappe/frappe/www/confirm_workflow_action.html,View document,દસ્તાવેજ જુઓ apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,આજે કૅલેન્ડર ઘટનાઓ @@ -3627,6 +3755,7 @@ DocType: Blog Category,Blogger,બ્લોગર DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","જો સક્ષમ કરેલ હોય, તો દસ્તાવેજમાં થયેલા ફેરફારો ટ્રેક કરવામાં આવે છે અને સમયરેખામાં બતાવવામાં આવે છે" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'વૈશ્વિક શોધમાં' પંક્તિ {1} માં પ્રકાર {0} માટે મંજૂરી નથી DocType: Energy Point Log,Appreciation,પ્રશંસા +DocType: Dashboard Chart,Number of Groups,જૂથોની સંખ્યા apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,યાદી જુઓ DocType: Workflow,Don't Override Status,સ્થિતિ પર ફરીથી કરો apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,શોધ શબ્દ @@ -3664,7 +3793,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,ત DocType: S3 Backup Settings,cn-northwest-1,સીએન-વાયવ્ય -1 DocType: Dropbox Settings,Limit Number of DB Backups,ડીબી બેકઅપ્સની મર્યાદા DocType: Custom DocPerm,Level,સ્તર -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,છેલ્લા 30 દિવસ DocType: Custom DocPerm,Report,રિપોર્ટ apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,રકમ 0 કરતાં મોટી હોવી જ જોઈએ. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,ક્યૂઝેડ ટ્રે સાથે જોડાયેલ! @@ -3681,6 +3809,7 @@ DocType: S3 Backup Settings,us-west-2,યુએસ-વેસ્ટ -2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,બાળ કોષ્ટક પસંદ કરો apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ટ્રિગર પ્રાથમિક ક્રિયા apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,બદલો +DocType: Social Login Key,User ID Property,વપરાશકર્તા ID સંપત્તિ DocType: Email Domain,domain name,ડોમેન નામ DocType: Contact Email,Contact Email,સંપર્ક ઇમેઇલ DocType: Kanban Board Column,Order,ઓર્ડર @@ -3702,7 +3831,7 @@ DocType: Contact,Last Name,છેલ્લું નામ DocType: Event,Private,ખાનગી apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,આજે કોઈ ચેતવણીઓ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),પીડીએફ તરીકે ઇમેઇલ પ્રિંટ જોડાણો મોકલો (ભલામણ કરેલ) -DocType: Web Page,Left,ડાબે +DocType: Onboarding Slide Field,Left,ડાબે DocType: Event,All Day,બધા દિવસ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,કંઈક લાગે છે કે આ સાઇટના ચુકવણી ગેટવે રૂપરેખાંકન સાથે ખોટું છે. કોઈ ચુકવણી કરવામાં આવ્યો છે. DocType: GCalendar Settings,State,રાજ્ય @@ -3733,7 +3862,6 @@ DocType: Workflow State,User,વપરાશકર્તા DocType: Website Settings,"Show title in browser window as ""Prefix - title""",તરીકે બ્રાઉઝર વિન્ડો બતાવો શીર્ષક "ઉપસર્ગ - શીર્ષક" DocType: Payment Gateway,Gateway Settings,ગેટવે સેટિંગ્સ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,દસ્તાવેજ પ્રકારની લખાણ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,ચલાવો ટેસ્ટ apps/frappe/frappe/handler.py,Logged Out,લૉગ આઉટ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,વધુ ... DocType: System Settings,User can login using Email id or Mobile number,વપરાશકર્તા ઇમેઇલ id અથવા મોબાઇલ નંબરનો ઉપયોગ કરીને લોગઇન કરી શકો છો @@ -3748,6 +3876,7 @@ DocType: System Settings,Number Format,સંખ્યા ફોર્મેટ apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,સારાંશ DocType: Event,Event Participants,ઘટના ભાગ લેનારાઓ DocType: Auto Repeat,Frequency,આવર્તન +DocType: Onboarding Slide,Slide Order,સ્લાઇડ ઓર્ડર DocType: Custom Field,Insert After,પછી દાખલ કરો DocType: Event,Sync with Google Calendar,ગૂગલ કેલેન્ડર સાથે સમન્વયિત કરો DocType: Access Log,Report Name,રિપોર્ટ નામ @@ -3775,6 +3904,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},પ્રકાર કરન્સી માટે મહત્તમ પહોળાઈ પંક્તિ માં 100 પીએક્સ છે {0} apps/frappe/frappe/config/website.py,Content web page.,સામગ્રી વેબ પાનું. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,એક નવી ભૂમિકા ઉમેરો +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,વેબ પૃષ્ઠની મુલાકાત લો +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,નવી સોંપણી DocType: Google Contacts,Last Sync On,છેલ્લું સમન્વયન ચાલુ કરો DocType: Deleted Document,Deleted Document,ડિલીટ દસ્તાવેજ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,અરે! કંઈક ખોટું થયું @@ -3784,7 +3915,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,લેન્ડસ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,જાવા ક્લાઈન્ટ બાજુ સ્ક્રિપ્ટ એક્સ્ટેન્શન્સ DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,નીચેના doctypes માટે રેકોર્ડ ફિલ્ટર કરવામાં આવશે -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,સુનિશ્ચિત નિષ્ક્રિય +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,સુનિશ્ચિત નિષ્ક્રિય DocType: Blog Settings,Blog Introduction,બ્લોગ પરિચય DocType: Global Search Settings,Search Priorities,પ્રાધાન્યતા શોધો DocType: Address,Office,ઓફિસ @@ -3794,12 +3925,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ડેશબોર્ડ ચ DocType: User,Email Settings,ઇમેઇલ સેટિંગ્સ apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,અહીં છોડો DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","જો સક્ષમ કરેલ હોય, તો વપરાશકર્તા બે ફેક્ટર uthથનો ઉપયોગ કરીને કોઈપણ આઇપી સરનામાંથી લ loginગિન કરી શકે છે, આ સિસ્ટમ સેટિંગ્સમાંના બધા વપરાશકર્તાઓ માટે પણ સેટ કરી શકાય છે." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,પ્રિન્ટર સેટિંગ્સ ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,કૃપા કરીને તમારો પાસવર્ડ દાખલ કરો ચાલુ રાખવા માટે apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,હું apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} માન્ય રાજ્ય apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,બધા દસ્તાવેજોના પ્રકારો પર લાગુ કરો -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energyર્જા બિંદુ સુધારો +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energyર્જા બિંદુ સુધારો +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),જો દિવસો માટે નિષ્ક્રિય હોય તો જ રોજ રોજગાર ચલાવો apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',કૃપા કરીને બીજી ચુકવણી પદ્ધતિ પસંદ કરો. પેપાલ ચલણ વ્યવહારો ટેકો આપતાં નથી '{0}' DocType: Chat Message,Room Type,ઓરડા નો પ્રકાર DocType: Data Import Beta,Import Log Preview,લ Importગ પૂર્વાવલોકન આયાત કરો @@ -3808,6 +3939,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,બરાબર વર્તુળ DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP વપરાશકર્તા બનાવટ અને મેપિંગ apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',તમે પૂછવા 'ગ્રાહકો નારંગી શોધવા' દ્વારા વસ્તુઓ શોધી શકો છો +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,આજની ઘટનાઓ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,માફ કરશો! વપરાશકર્તા તેમની પોતાની રેકોર્ડ સંપૂર્ણ વપરાશ હોવો જોઈએ. ,Usage Info,વપરાશ માહિતી apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,કીબોર્ડ શોર્ટકટ્સ બતાવો @@ -3824,6 +3956,7 @@ DocType: DocField,Unique,અનન્ય apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{1} પર {0} પ્રશંસા apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,આંશિક સફળતા DocType: Email Account,Service,સેવા +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા DocType: File,File Name,ફાઈલનું નામ apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),મળી નથી {0} માટે {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ફરી: {0} @@ -3837,6 +3970,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,પૂ DocType: GCalendar Settings,Enable,સક્ષમ કરો DocType: Google Maps Settings,Home Address,ઘરનું સરનામું apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),જો તમે માત્ર એક જ વારમાં 5000 રેકોર્ડ સુધી અપલોડ કરી શકો છો. (કેટલાક કિસ્સાઓમાં ઓછી હોઈ શકે છે) +DocType: Report,"output in the form of `data = [columns, result]`","output ડેટા = [ક =લમ, પરિણામ] the ના રૂપમાં આઉટપુટ" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,લાગુ દસ્તાવેજ પ્રકાર apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,વપરાશકર્તા સોંપણીઓ માટે નિયમો સેટ કરો. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},માટે અપર્યાપ્ત પરવાનગી {0} @@ -3852,7 +3986,6 @@ DocType: Communication,To and CC,અને સીસી DocType: SMS Settings,Static Parameters,સ્થિર પરિમાણો DocType: Chat Message,Room,રૂમ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},માટે સુધારી {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,પૃષ્ઠભૂમિ નોકરીઓ ચાલી રહી નથી. કૃપા કરીને સંચાલકનો સંપર્ક કરો DocType: Portal Settings,Custom Menu Items,વૈવિધ્યપૂર્ણ મેનુ વસ્તુઓ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,વેબસાઈટ વેબસાઇટ સાથે જોડાયેલ બધી છબીઓ સાર્વજનિક હોવા જોઈએ DocType: Workflow State,chevron-right,શેવરોન અધિકાર @@ -3865,10 +3998,12 @@ DocType: Website Settings,Brand HTML,બ્રાન્ડ HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,બેકઅપ લો DocType: DocType,Allow Auto Repeat,Autoટો પુનરાવર્તનની મંજૂરી આપો apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,બતાવવા માટે કોઈ મૂલ્યો નથી +DocType: DocType,URL for documentation or help,દસ્તાવેજીકરણ અથવા સહાય માટે URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ઇમેઇલ ઢાંચો apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,સફળતાપૂર્વક {0} રેકોર્ડ અપડેટ કરાયો. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,જરૂરી બંને પ્રવેશ અને પાસવર્ડ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,ચાલો \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,તાજેતરની દસ્તાવેજ વિચાર તાજું કરો. DocType: User,Security Settings,સુરક્ષા સેટિંગ્સ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,કૉલમ ઉમેરો @@ -3877,6 +4012,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},નિકાસ રિપોર્ટ: {0} DocType: Auto Email Report,Filter Meta,ફિલ્ટર મેટા DocType: Web Page,Set Meta Tags,મેટા ટ Tagsગ્સ સેટ કરો +DocType: Email Account,Use SSL for Outgoing,આઉટગોઇંગ માટે SSL નો ઉપયોગ કરો 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: S3 Backup Settings,Backup Limit,બૅકઅપ સીમા DocType: Dashboard Chart,Line,લાઇન @@ -3908,4 +4044,3 @@ DocType: DocField,Ignore User Permissions,વપરાશકર્તા પર apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,સફળતાપૂર્વક સાચવ્યું apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,કૃપા કરીને તમારા વ્યવસ્થાપક તમારા સાઇન અપ ચકાસવા માટે પૂછો DocType: Domain Settings,Active Domains,સક્રિય ડોમેન્સ -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,લૉગ બતાવો diff --git a/frappe/translations/he.csv b/frappe/translations/he.csv index 02a7beabd6..78d679cacd 100644 --- a/frappe/translations/he.csv +++ b/frappe/translations/he.csv @@ -26,7 +26,6 @@ DocType: Activity Log,Logout,התנתקות DocType: Blog Post,Email Sent,"דוא""ל שנשלח" DocType: Email Account,Enable Auto Reply,אפשר מענה אוטומטי DocType: Notification,Send Alert On,שלח התראה ב -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","משימה חדשה, {0}, הוקצתה לך על ידי {1}. {2}" DocType: Property Setter,Property Setter overrides a standard DocType or Field property,נכס סתר עוקף DOCTYPE סטנדרטי או רכוש שדה apps/frappe/frappe/public/js/frappe/utils/utils.js,or,או 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.,ערכים אלה יהיו מעודכנים באופן אוטומטי בעסקות וגם יהיה שימושי כדי להגביל הרשאות למשתמש זה על עסקות המכילות את הערכים הללו. @@ -56,12 +55,12 @@ DocType: Activity Log,Failed,נכשל DocType: File,Preview HTML,התצוגה המקדימה של HTML apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: לא ניתן להגדיר הקצאת תיקון אם לא Submittable apps/frappe/frappe/model/document.py,none of,אף אחד מ -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,מנהל רק אפשר ליצור שאילתה / סקריפט דוחות DocType: Activity Log,Link Name,שם קישור DocType: Address,Contacts,מגעים apps/frappe/frappe/public/js/frappe/form/layout.js,Hide Details,פרטי הסתרה DocType: User,Website User,משתמש אתר apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,הוספת מנהל מערכת למשתמש זה כמו שיש חייבת להיות atleast מנהל מערכת אחת +DocType: Server Script,Script Type,תסריט סוג DocType: Bulk Update,Desk,שולחן apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,התקדמות DocType: Workflow State,random,אקראי @@ -95,7 +94,7 @@ apps/frappe/frappe/public/js/frappe/request.js,File size exceeded the maximum al apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","שמו של DOCTYPE צריך להתחיל באות והוא יכול להכיל רק אותיות, מספרים, רווחים וסימני קו תחתון" DocType: Email Account,SMTP Server,שרת SMTP apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select a DocType to make a new format,בחר DOCTYPE לעשות פורמט חדש -DocType: Event,Details,פרטים +DocType: Scheduled Job Log,Details,פרטים DocType: Web Page,Main Section,סעיף עיקרי apps/frappe/frappe/desk/moduleview.py,Standard Reports,דוחות סטנדרטיים apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,הוסף תפקיד חדש @@ -179,7 +178,7 @@ apps/frappe/frappe/desk/query_report.py,Must specify a Query to run,חייב ל DocType: Custom DocPerm,If user is the owner,אם משתמש הוא בעל DocType: Notification,Message Examples,דוגמאות הודעה apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,List a document type,רשימת סוג מסמך -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,מְשִׁימָה +DocType: Notification Log,Assignment,מְשִׁימָה apps/frappe/frappe/public/js/frappe/model/meta.js,Last Modified By,תאריך השינוי האחרון apps/frappe/frappe/config/users_and_permissions.py,User Roles,תפקיד משתמש DocType: Workflow,Defines workflow states and rules for a document.,מגדיר מדינות זרימת עבודה וכללים למסמך. @@ -209,6 +208,7 @@ eval:doc.myfield=='My Value' eval:doc.age>18",שדה זה יופיע רק אם fieldname מוגדר כאן יש ערך או כללים נכונים (דוגמאות): myfield eval: doc.myfield == 'ערך שלי' eval: doc.age> 18 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,בחרו עמודות DocType: Footer Item,URL,כתובת האתר +DocType: Scheduled Job Type,Stopped,נעצר DocType: Address,City/Town,עיר / יישוב DocType: Print Settings,Font Size,גודל גופן DocType: Email Group,Newsletter Manager,מנהל עלון @@ -255,7 +255,7 @@ apps/frappe/frappe/email/smtp.py,Invalid login or password,התחברות או DocType: Report,Letter Head,מכתב ראש DocType: Website Settings,Brand HTML,המותג HTML DocType: Workflow Action,Workflow State,מדינת זרימת עבודה -DocType: Web Page,Left,עזב +DocType: Onboarding Slide Field,Left,עזב DocType: Auto Repeat,Weekly,שבועי apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,טקסט בסוג המסמך DocType: Workflow State,chevron-right,שברון-תקין @@ -294,6 +294,7 @@ DocType: Async Task,Traceback,להתחקות apps/frappe/frappe/model/document.py,one of,אחד מ DocType: Custom DocPerm,Write,לכתוב apps/frappe/frappe/config/website.py,Categorize blog posts.,לסווג ההודעות שנכתבו על בלוג. +DocType: Webhook,Naming Series,סדרת שמות DocType: Letter Head,Letter Head in HTML,ראש המכתב ב- HTML DocType: Newsletter,Test,מבחן DocType: Report,Query Report,דוח שאילתות @@ -301,7 +302,6 @@ apps/frappe/frappe/public/js/frappe/form/save.js,Saving,שמירה apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: לא ניתן להגדיר ביטול ללא הגשה DocType: DocType,Route,מַסלוּל apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ודא -DocType: System Settings,Scheduler Last Event,האירוע אחרון מתזמן apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,אין לך מספיק הרשאות כדי לגשת למשאב זה. צור קשר עם מנהל המערכת כדי לקבל גישה. DocType: Letter Head,Default Letter Head,ברירת מחדל מכתב ראש apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Above,הכנס מעל @@ -316,7 +316,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Attach Your Picture,צ DocType: Footer Item,Group Label,לייבל הקבוצה DocType: Web Form,Web Page Link Text,טקסט קישור לדף אינטרנט apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,נסה להימנע מילות חוזרות ותווים -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype DocType: Workflow,Workflow Name,שם זרימת עבודה apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated By,עדכון אחרון על ידי apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be in developer mode to edit a Standard Web Form,אתה צריך להיות במצב מפתח לערוך טופס אינטרנט רגיל @@ -330,6 +330,7 @@ apps/frappe/frappe/public/js/frappe/utils/user.js,You,אתה apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,המשתמש הראשון יהפוך את מנהל המערכת (אתה יכול לשנות את זה בהמשך). DocType: Workflow State,road,כביש apps/frappe/frappe/public/js/frappe/form/layout.js,This form does not have any input,צורה זו אין כל קלט +DocType: Scheduled Job Log,Scheduled,מתוכנן apps/frappe/frappe/public/js/frappe/form/save.js,Cancelling,ביטול DocType: Customize Form Field,Customize Form Field,התאמה אישית של טופס מולא DocType: User,Third Party Authentication,הצד שלישי אימות @@ -440,7 +441,7 @@ DocType: Access Log,Method,שיטה DocType: Email Group,Email Group,קבוצת דוא"ל apps/frappe/frappe/public/js/frappe/desk.js,Modules,מודולים apps/frappe/frappe/www/login.html,Forgot Password?,שכחת את הסיסמא? -DocType: Web Form,Actions,פעולות +DocType: DocType,Actions,פעולות apps/frappe/frappe/core/doctype/data_export/exporter.py,Please do not change the template headings.,נא לא לשנות את כותרות התבנית. DocType: Email Account,Notify if unreplied for (in mins),נא להודיע אם unreplied ל( בדקות) DocType: Desktop Icon,Category,קָטֵגוֹרִיָה @@ -548,7 +549,7 @@ DocType: Chat Message,Group,קבוצה apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,אתה צריך להיות מחובר כדי לגשת זה {0}. DocType: Notification,Send days before or after the reference date,שלח ימים לפני או אחרי תאריך ההתייחסות apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,מצגות טבע תמונה בדפי אתר. -apps/frappe/frappe/public/js/frappe/desk.js,Domains,תחומים +DocType: Onboarding Slide,Domains,תחומים DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,למשל replies@yourcomany.com. כל התשובות יגיעו לתיבת דואר נכנסת של זה. DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,Print,הדפסה @@ -568,7 +569,7 @@ DocType: ToDo,Due Date,תאריך יעד DocType: Translation,Saved,הציל DocType: User Email,Enable Outgoing,אפשר יוצא DocType: Contact Us Settings,Email ID,מזהה דוא"ל -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,המשך +DocType: Onboarding Slide,Continue,המשך apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","על {0}, {1} כתב:" apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,לא במצב מפתח apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Misc,שונים @@ -693,7 +694,7 @@ DocType: Workflow State,ok-sign,בסדר-סימן apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: About Us Settings,Company Introduction,חברת מבוא DocType: Communication,Opened,נפתח -DocType: Custom Script,Script,תסריט +DocType: Report,Script,תסריט DocType: DocType,User Cannot Create,משתמש אינו יכול ליצור DocType: Kanban Board Column,Column Name,שם עמודה DocType: Email Account,Check this to pull emails from your mailbox,לבדוק את זה כדי למשוך מיילים מתיבת הדואר שלך @@ -776,6 +777,7 @@ DocType: Workflow State,share-alt,מניות alt apps/frappe/frappe/desk/page/backups/backups.html,Size,גודל apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},להרחיב {0} apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,אסור להדפיס מסמכי טיוטה +DocType: Scheduled Job Type,Annual,שנתי DocType: Communication,In Reply To,בתשובה ל DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","אם למשתמש יש כל תפקיד המסומן, ולאחר מכן המשתמש הופך "משתמש מערכת". "משתמש מערכת" יש גישה לשולחן העבודה" DocType: Workflow State,wrench,מפתח ברגים @@ -876,6 +878,7 @@ apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","פו DocType: Print Settings,A4,A4 DocType: Workflow State,circle-arrow-up,המעגל-חץ-עד apps/frappe/frappe/contacts/doctype/address_template/address_template.py,Default Address Template cannot be deleted,תבנית כתובת ברירת מחדל לא ניתן למחוק +DocType: Dashboard Chart,From Date,מתאריך apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Reload,רענן ,Usage Info,מידע שימוש DocType: Dropbox Settings,Dropbox Access Key,Dropbox מפתח הגישה @@ -885,6 +888,7 @@ DocType: Page,Roles,תפקידים apps/frappe/frappe/__init__.py,Thank you,תודה לך DocType: DocShare,Everyone,כולם apps/frappe/frappe/desk/query_report.py,Report {0} is disabled,דווח {0} אינו זמין +DocType: Dashboard Chart,Group By,קבוצה על ידי DocType: Comment,Website Manager,מנהל אתר DocType: Workflow State,chevron-left,שמאל שברון DocType: Blog Category,Blog Category,קטגוריה בלוג @@ -1113,7 +1117,6 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,אנא ציי DocType: DocField,Display,תצוגה DocType: Role Permission for Page and Report,Roles HTML,תפקידי HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,מנהל קבצים -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","המשימה {0}, שהקצית לאיש {1}, שנסגר על-ידי {2}." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permission Levels,רמות הרשאה DocType: DocType,Naming,שמות DocType: Web Page,"Page to show on the website @@ -1254,7 +1257,7 @@ DocType: Workflow Document State,Workflow Document State,זרימת עבודה DocType: Integration Request,Reference DocName,התייחסות DocName apps/frappe/frappe/public/js/frappe/form/print.js,Start,התחל apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,התחברות להגיב -DocType: Top Bar Item,Right,תקין +DocType: Onboarding Slide Field,Right,תקין apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","התקנה של סרגל ניווט העליון, תחתונה ולוגו." DocType: Workflow State,lock,לנעול apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Reference DocType and Reference Name are required,התייחסות DOCTYPE והפניה שם נדרשים @@ -1294,6 +1297,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,הכנס apps/frappe/frappe/email/queue.py,This email was sent to {0},האימייל הזה נשלח ל {0} DocType: Workflow State,briefcase,תיק DocType: Payment Gateway,Gateway,כְּנִיסָה +DocType: Dashboard Chart,To Date,לתאריך DocType: Web Page,Insert Style,הכנס סגנון DocType: Workflow State,adjust,להתאים apps/frappe/frappe/email/doctype/email_group/email_group.js,View Subscribers,צפה מנויים @@ -1406,7 +1410,6 @@ DocType: Web Page,Web Page,דף האינטרנט DocType: Newsletter,Newsletter,עלון DocType: Document Follow,DocType,DOCTYPE apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,"הוספה / ניהול חשבונות דוא""ל." -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","המשימה {0}, שהקצית לאיש {1}, נסגר." DocType: Print Settings,PDF Page Size,גודל דף PDF apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,צומת קבוצה apps/frappe/frappe/config/website.py,Web Site,אתר אינטרנט @@ -1461,7 +1464,7 @@ DocType: Notification,Optional: The alert will be sent if this expression is tru DocType: User,User Image,תמונת משתמש DocType: Contact,Salutation,שְׁאֵילָה DocType: Event,Leave blank to repeat always,שאר ריק כדי לחזור תמיד -apps/frappe/frappe/www/complete_signup.html,Complete,לְהַשְׁלִים +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,לְהַשְׁלִים DocType: Comment,Attachment Removed,הוסר Attachment apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,מנהל נצפה {0} על {1} באמצעות כתובת IP {2}. DocType: Email Account,Ignore attachments over this size,התעלם קבצים מצורפים מעל הגודל הזה @@ -1538,7 +1541,6 @@ DocType: SMS Settings,Enter url parameter for receiver nos,הזן פרמטר url apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} שם DocType: Communication,Recipient Unsubscribed,נמען לא רשום DocType: Web Page,Show Title,כותרת הצג -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ערוך כותרת DocType: User,Last Known Versions,גרסאות ידוע אחרונות DocType: Workflow State,plus,בתוספת DocType: Event,Starts on,מתחיל ב @@ -1650,7 +1652,7 @@ DocType: Email Queue,Send After,שלח אחרי DocType: Assignment Rule Day,Monday,יום שני DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,למשל pop.gmail.com / imap.gmail.com DocType: Email Queue,Email Queue,תור דוא"ל -DocType: Tag Category,Category Name,שם קטגוריה +DocType: Blog Category,Category Name,שם קטגוריה DocType: Workflow Document State,Doc Status,סטטוס דוק apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Click here to verify,לחץ כאן כדי לאמת apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),לא מצא {0} עבור {0} ({1}) @@ -1771,7 +1773,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi apps/frappe/frappe/www/login.html,Back to Login,חזרה להתחברות DocType: Workflow State,volume-down,נפח למטה apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,נתוני יבוא תבנית -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} הזכיר אותך בהערה ב {1} DocType: About Us Settings,"""Company History""","""היסטוריה של חברה""" apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Restore to default settings?,שחזור להגדרות ברירת המחדל? DocType: Communication,Error,שגיאה @@ -1786,13 +1787,12 @@ DocType: Currency,A symbol for this currency. For e.g. $,סימן של מטבע DocType: Custom Field,Select the label after which you want to insert new field.,בחר את התווית לאחר שרצונך להוסיף שדה חדש. DocType: DocField,Set Only Once,להגדיר רק פעם אחת apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,רכזת -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,עדכון לגרסה חדשה DocType: DocField,Options,אפשרויות apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,כותרת כתובת היא חובה. apps/frappe/frappe/core/doctype/doctype/doctype.py,Series {0} already used in {1},סדרת {0} כבר בשימוש {1} apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} months ago,{0} חודשים לפני DocType: Custom Field,Custom Field,שדה מותאם אישית -DocType: Web Page,Center,מרכז +DocType: Onboarding Slide Field,Center,מרכז DocType: DocType,DESC,DESC DocType: Auto Repeat,Accounts User,חשבונות משתמשים DocType: DocShare,DocShare,DocShare @@ -1807,7 +1807,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py,Assignment closed by {0},משימה DocType: Print Settings,Compact Item Print,הדפס פריט קומפקט DocType: Workflow State,volume-off,נפח-off DocType: DocField,Color,צבע -DocType: Address,Email Address,"כתובת דוא""ל" +apps/frappe/frappe/www/login.py,Email Address,"כתובת דוא""ל" DocType: Currency,"Sub-currency. For e.g. ""Cent""","תת מטבע. ל"" סנט ""למשל" apps/frappe/frappe/public/js/frappe/views/pageview.js,Sorry! I could not find what you were looking for.,סליחה! לא הצלחתי למצוא את מה שחיפשת. DocType: Web Form,Success Message,ההצלחה Message diff --git a/frappe/translations/hi.csv b/frappe/translations/hi.csv index b620cf01d6..958268245e 100644 --- a/frappe/translations/hi.csv +++ b/frappe/translations/hi.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,एक राशि फ़ील्ड का चयन करें। apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,आयात फ़ाइल लोड हो रही है ... DocType: Assignment Rule,Last User,अंतिम उपयोगकर्ता -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","एक नया कार्य, {0} {1} द्वारा आप के लिए सौंपा गया है। {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,सत्र चूक से बचाव किया apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,फ़ाइल पुनः लोड करें DocType: Email Queue,Email Queue records.,ईमेल कतार रिकॉर्ड। @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ट्री DocType: User,User Emails,उपयोगकर्ता ईमेल DocType: User,Username,यूजर का नाम apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ज़िप आयात करें +DocType: Scheduled Job Type,Create Log,लॉग बनाएँ apps/frappe/frappe/model/base_document.py,Value too big,मूल्य भी बड़ा DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,स्क्रिप्ट टेस्ट चलाएं @@ -60,6 +60,7 @@ apps/frappe/frappe/model/document.py,Beginning with,इसके साथ श apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,डेटा आयात खाका apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,An error occurred while setting Session Defaults,सत्र चूक को सेट करते समय एक त्रुटि हुई apps/frappe/frappe/public/js/frappe/model/model.js,Parent,माता-पिता +apps/frappe/frappe/templates/emails/download_data.html,We have received a request from you to download your {0} data associated with: {1},हमें आपसे {{1} डेटा से संबंधित डेटा डाउनलोड करने का अनुरोध मिला है: {1} 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,Default for 'Check' type of field must be either '0' or '1',क्षेत्र की 'चेक' प्रकार के लिए डिफ़ॉल्ट या तो '0' या '1' होना चाहिए @@ -71,7 +72,7 @@ DocType: Auto Repeat,Monthly,मासिक DocType: Address,Uttarakhand,उत्तराखंड DocType: Email Account,Enable Incoming,आवक सक्षम करें apps/frappe/frappe/core/doctype/version/version_view.html,Danger,खतरा -DocType: Address,Email Address,ईमेल पता +apps/frappe/frappe/www/login.py,Email Address,ईमेल पता DocType: Workflow State,th-large,वें बड़े DocType: Communication,Unread Notification Sent,भेजे गए अपठित अधिसूचना apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,निर्यात की अनुमति नहीं . आप निर्यात करने के लिए {0} भूमिका की जरूरत है. @@ -82,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,प्रकाशित क्षेत्र है DocType: GCalendar Settings,GCalendar Settings,GCalendar सेटिंग्स DocType: Email Group,Email Group,ईमेल समूह +apps/frappe/frappe/__init__.py,Only for {},केवल के लिए {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google कैलेंडर - Google कैलेंडर से ईवेंट {0} को नहीं मिटा सका, त्रुटि कोड {1}।" DocType: Event,Pulled from Google Calendar,Google कैलेंडर से खींचा गया DocType: Note,Seen By,द्वारा देखा गया apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,मल्टीपल जोड़ें -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,आपने कुछ ऊर्जा बिंदु प्राप्त किए apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,वैध उपयोगकर्ता छवि नहीं DocType: Energy Point Log,Reverted,वापस लाया गया DocType: Success Action,First Success Message,पहला सफलता संदेश @@ -94,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,उसके apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},गलत मूल्य: {0} होना चाहिए {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","बदले क्षेत्र गुण (छुपाने , केवल पढ़ने के लिए , अनुमति आदि )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,सराहना +DocType: Notification Settings,Document Share,दस्तावेज़ साझा करें DocType: Workflow State,lock,ताला apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,के लिए सेटिंग्स हमसे संपर्क पृष्ठ. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,प्रशासक लॉग में @@ -107,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","यदि सक्षम किया गया है, तो दस्तावेज़ को चिह्नित किया गया है, पहली बार जब कोई उपयोगकर्ता इसे खोलता है" DocType: Auto Repeat,Repeat on Day,दिन पर दोहराएं DocType: DocField,Color,रंग +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,सभी को पढ़ा हुआ मार्क करें DocType: Data Migration Run,Log,लॉग DocType: Workflow State,indent-right,इंडेंट सही DocType: Has Role,Has Role,भूमिका है @@ -125,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ट्रेसेबैक दिखाएं DocType: DocType,Default Print Format,डिफ़ॉल्ट प्रिंट प्रारूप DocType: Workflow State,Tags,टैग +DocType: Onboarding Slide,Slide Type,स्लाइड प्रकार apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,कोई नहीं: कार्यप्रवाह समाप्ति apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","गैर-अद्वितीय मौजूदा मानों के रूप में वहाँ {0} फ़ील्ड, {1} में के रूप में अद्वितीय सेट नहीं किया जा सकता" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,दस्तावेज़ प्रकार @@ -134,7 +138,6 @@ DocType: Language,Guest,अतिथि DocType: DocType,Title Field,शीर्षक फ़ील्ड DocType: Error Log,Error Log,त्रुटि संग्रह apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,अवैध यूआरएल -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,आखिरी 7 दिन apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" केवल थोड़ा कठिन "एबीसी" की तुलना में अनुमान करने के लिए कर रहे हैं जैसे दोहराता DocType: Notification,Channel,चैनल apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","आप इस अनधिकृत है लगता है, व्यवस्थापक पासवर्ड परिवर्तित करें।" @@ -153,6 +156,7 @@ DocType: OAuth Authorization Code,Client,ग्राहक apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,कॉलम चुनें apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,आप इसे लोड करने के बाद यह फार्म संशोधित किया गया है DocType: Address,Himachal Pradesh,हिमाचल प्रदेश +DocType: Notification Log,Notification Log,अधिसूचना लॉग DocType: System Settings,"If not set, the currency precision will depend on number format","यदि सेट नहीं है, तो मुद्रा सटीक संख्या प्रारूप पर निर्भर करेगा" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,विस्मयबोधक खोलें apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","ऐसा लगता है कि सर्वर की पट्टी विन्यास के साथ कोई समस्या है। विफलता के मामले में, राशि आपके खाते में वापस कर दी जाएगी।" @@ -162,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,भेजें DocType: Workflow Action Master,Workflow Action Name,वर्कफ़्लो कार्य का नाम apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,टैग विलय हो नहीं सकता -DocType: Web Form Field,Fieldtype,क्षेत्र प्रकार +DocType: Onboarding Slide Field,Fieldtype,क्षेत्र प्रकार apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,नहीं एक ज़िप फ़ाइल DocType: Global Search DocType,Global Search DocType,ग्लोबल सर्च डॉकाइप DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -175,7 +179,9 @@ DocType: Newsletter,Email Sent?,ईमेल भेजा है? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,टॉगल चार्ट apps/frappe/frappe/desk/form/save.py,Did not cancel,रद्द नहीं किया DocType: Social Login Key,Client Information,क्लाइंट की सूचना +DocType: Energy Point Rule,Apply this rule only once per document,इस नियम को दस्तावेज़ के अनुसार केवल एक बार लागू करें DocType: Workflow State,plus,प्लस +DocType: DocField,Read Only Depends On,केवल पढ़ने पर निर्भर करता है apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,अतिथि या प्रशासक के रूप में लॉग इन किया DocType: Email Account,UNSEEN,अनदेखी apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,फ़ाइल प्रबंधक @@ -199,9 +205,11 @@ DocType: Communication,BCC,बीसीसी DocType: Unhandled Email,Reason,कारण 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,कोई गतिविधि नहीं +DocType: Server Script,Script Manager,स्क्रिप्ट मैनेजर +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,कोई गतिविधि नहीं apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,तृतीय पक्ष ऐप्स apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,सिस्टम मैनेजर बन जाएगा पहले उपयोगकर्ता (आप इस पर बाद में बदल सकते हैं)। +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,नो इवेंट्स टुडे apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,आप अपने आप को समीक्षा अंक नहीं दे सकते apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,डॉक्टरेट प्रकार चयनित डॉक ईवेंट के लिए योग्य होना चाहिए DocType: Workflow State,circle-arrow-up,वृत्त - तीर अप @@ -233,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}: {1} के लिए अनुमति नहीं है। प्रतिबंधित क्षेत्र: {2} 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,You are not allowed to delete a standard Website Theme,आप एक मानक वेबसाइट के विषय को नष्ट करने की अनुमति नहीं है +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},अपना पहला {0} बनाएं DocType: Data Import,Log Details,लॉग विवरण DocType: Workflow Transition,Example,उदाहरण DocType: Webhook Header,Webhook Header,वेबहुआ हैडर @@ -247,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,चैट पृष्ठभूमि apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,पढ़े हुए का चिह्न apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} अपडेट करना +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,एक ही स्लाइड आदेश के साथ एक ऑनबोर्डिंग स्लाइड {0} पहले से मौजूद है apps/frappe/frappe/core/doctype/report/report.js,Disable Report,अक्षम रिपोर्ट DocType: Translation,Contributed Translation Doctype Name,योगदान अनुवाद सिद्धांत नाम +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें DocType: PayPal Settings,Redirect To,को अनुप्रेषित DocType: Data Migration Mapping,Pull,खींचें DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},जावास्क्रिप्ट स्वरूप: frappe.query_reports [' REPORTNAME '] = {} @@ -263,6 +274,7 @@ DocType: DocShare,Internal record of document shares,दस्तावेज़ DocType: Energy Point Settings,Review Levels,स्तर की समीक्षा करें DocType: Workflow State,Comment,टिप्पणी DocType: Data Migration Plan,Postprocess Method,पोस्टप्रोसेस विधि +DocType: DocType Action,Action Type,प्रक्रिया का प्रकार apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,फोटो लो DocType: Assignment Rule,Round Robin,राउंड रोबिन apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","आप उन्हें में संशोधन , तो उन्हें रद्द करने और द्वारा प्रस्तुत दस्तावेजों को बदल सकते हैं ." @@ -276,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,के रूप में सहेजें DocType: Comment,Seen,देखा apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,अधिक जानकारी के दिखाओ +DocType: Server Script,Before Submit,सबमिट करने से पहले DocType: System Settings,Run scheduled jobs only if checked,जाँच केवल अगर अनुसूचित नौकरियों भागो apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,अगर केवल अनुभाग शीर्षकों सक्षम हैं दिखाया जाएगा apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,संग्रह @@ -288,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ड्रॉपबॉक्स प apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,कस्टम स्क्रिप्ट के add_fetch कॉन्फ़िगरेशन में गलत फ़ील्डनाम {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Google संपर्कों का चयन करें, जिनसे संपर्क सिंक किया जाना चाहिए।" DocType: Web Page,Main Section (HTML),मुख्य भाग (HTML) +DocType: Scheduled Job Type,Annual,वार्षिक DocType: Workflow State,headphones,headphones apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,पासवर्ड की आवश्यकता है या प्रतीक्षा कर रहा है पासवर्ड का चयन किया जाता है DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,जैसे replies@yourcomany.com। सभी जवाब दें इस इनबॉक्स के लिए आ जाएगा। DocType: Slack Webhook URL,Slack Webhook URL,स्लेक वेबहूक यूआरएल +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","विज़ार्ड में स्लाइड का क्रम निर्धारित करता है। यदि स्लाइड को प्रदर्शित नहीं करना है, तो प्राथमिकता 0 पर सेट की जानी चाहिए।" DocType: Data Migration Run,Current Mapping,वर्तमान मैपिंग apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,आवश्यक मान्य ईमेल और नाम apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,सभी अनुलग्नकों को निजी बनाएं @@ -314,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,संक्रमण नियम apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,पूर्वावलोकन में केवल पहले {0} पंक्तियों को दिखा रहा है apps/frappe/frappe/core/doctype/report/report.js,Example:,उदाहरण: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,प्रतिबंध DocType: Workflow,Defines workflow states and rules for a document.,एक दस्तावेज के लिए कार्यप्रवाह राज्यों और नियमों को परिभाषित करता है। DocType: Workflow State,Filter,फिल्टर apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},अधिक जानकारी के लिए त्रुटि लॉग की जाँच करें: {0} @@ -325,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,काम apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} लॉग आउट: {1} DocType: Address,West Bengal,पश्चिम बंगाल +DocType: Onboarding Slide,Information,जानकारी apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : असाइन सबमिट सेट नहीं कर सकता Submittable यदि नहीं DocType: Transaction Log,Row Index,पंक्ति सूचकांक DocType: Social Login Key,Facebook,फेसबुक @@ -343,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,बटन की मदद DocType: Kanban Board Column,purple,बैंगनी DocType: About Us Settings,Team Members,टीम के सदस्यों को +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,निष्क्रिय साइटों के लिए दिन में केवल एक बार अनुसूचित नौकरी चलाएंगे। डिफ़ॉल्ट 4 दिन अगर 0 पर सेट किया गया। DocType: Assignment Rule,System Manager,सिस्टम प्रबंधक +DocType: Scheduled Job Log,Scheduled Job,अनुसूचित नौकरी DocType: Custom DocPerm,Permissions,अनुमतियाँ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,आंतरिक एकीकरण के लिए Slack Webhooks DocType: Dropbox Settings,Allow Dropbox Access,ड्रॉपबॉक्स पहुँच की अनुमति @@ -397,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,स DocType: Email Flag Queue,Email Flag Queue,ईमेल करें कतार DocType: Access Log,Columns / Fields,कॉलम / फ़ील्ड्स apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,प्रिंट प्रारूप के लिए स्टाइलशीट +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,डैशबोर्ड चार्ट बनाने के लिए एग्रीगेट फंक्शन फील्ड की आवश्यकता होती है apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,खुला पहचान नहीं कर सकते {0}। कुछ और प्रयास करें। apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,आपकी सूचना प्रस्तुत की गई है apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,प्रयोक्ता {0} मिटाया नहीं जा सकता @@ -412,11 +432,12 @@ DocType: Property Setter,Field Name,फ़ील्ड का नाम DocType: Assignment Rule,Assign To Users,उपयोगकर्ताओं को असाइन करें apps/frappe/frappe/public/js/frappe/utils/utils.js,or,या apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,मोड्यूल का नाम ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,जारी रखें +DocType: Onboarding Slide,Continue,जारी रखें apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google एकीकरण अक्षम है। DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,प्रमाणपत्र apps/frappe/frappe/templates/includes/login/login.js,Verifying...,यह जांच करना ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1} पर आपका असाइनमेंट हटा दिया गया है apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,पहली डेटा कॉलम खाली होना चाहिए। apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,सभी संस्करणों दिखाएँ apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,टिप्पणी देखें @@ -426,12 +447,14 @@ DocType: User,Restrict IP,आईपी प्रतिबंधित करे apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,डैशबोर्ड apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,इस समय ईमेल भेजने में असमर्थ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google कैलेंडर - Google कैलेंडर में घटना {0} को अपडेट नहीं कर सका, त्रुटि कोड {1}।" +DocType: Notification Log,Email Content,ईमेल सामग्री apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,आज्ञा खोजें या लिखें DocType: Activity Log,Timeline Name,इस समय नाम apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,केवल एक {0} को प्राथमिक के रूप में सेट किया जा सकता है। DocType: Email Account,e.g. smtp.gmail.com,जैसे smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,एक नया नियम जोड़ें DocType: Contact,Sales Master Manager,बिक्री मास्टर प्रबंधक +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,आपको अपने ऐप को काम करने के लिए जावास्क्रिप्ट सक्षम करना होगा। DocType: User Permission,For Value,मूल्य के लिए DocType: Event,Google Calendar ID,Google कैलेंडर आईडी apps/frappe/frappe/www/complete_signup.html,One Last Step,एक अंतिम कदम @@ -446,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP मध्य नाम फ़ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} का {0} आयात करना DocType: GCalendar Account,Allow GCalendar Access,GCalendar पहुंच की अनुमति दें apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} एक अनिवार्य क्षेत्र है +DocType: DocType,Documentation Link,डॉक्यूमेंटेशन लिंक apps/frappe/frappe/templates/includes/login/login.js,Login token required,लॉगिन टोकन आवश्यक है apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,मासिक रैंक: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,कई सूची आइटम का चयन करें @@ -467,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,फ़ाइल URL DocType: Version,Table HTML,टेबल HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,सदस्य जोड़ें +DocType: Notification Log,Energy Point,ऊर्जा बिंदु apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,आज के लिए आगामी घटनाएँ DocType: Google Calendar,Push to Google Calendar,Google कैलेंडर में पुश करें DocType: Notification Recipient,Email By Document Field,दस्तावेज़ क्षेत्र द्वारा ईमेल @@ -482,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,दूर DocType: Currency,Fraction Units,अंश इकाइयों apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} से {1} {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,पूर्ण के रूप में चिह्नित करें DocType: Chat Message,Type,टाइप DocType: Google Settings,OAuth Client ID,OAuth क्लाइंट आईडी DocType: Auto Repeat,Subject,विषय apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,डेस्क पर वापस DocType: Web Form,Amount Based On Field,राशि क्षेत्र के आधार पर +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} का कोई संस्करण ट्रैक नहीं हुआ है। apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,उपयोगकर्ता शेयर के लिए अनिवार्य है DocType: DocField,Hidden,छुपा DocType: Web Form,Allow Incomplete Forms,दो या दो रूपों की अनुमति दें @@ -510,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,सत्यापन के लिए अपने ईमेल की जाँच करें apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,मोड़ो फार्म के अंत में नहीं किया जा सकता DocType: Communication,Bounced,बाउंस +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,का DocType: Deleted Document,Deleted Name,हटाए गए नाम apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,सिस्टम और वेबसाइट के उपयोगकर्ताओं DocType: Workflow Document State,Doc Status,डॉक्टर स्थिति @@ -520,6 +546,7 @@ DocType: Language,Language Code,भाषा कोड DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,नोट: असफल बैकअप के लिए डिफ़ॉल्ट ईमेल द्वारा भेजे जाते हैं। apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,फ़िल्टर जोड़ें apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},एसएमएस निम्नलिखित संख्या के लिए भेजा: {0} +DocType: Notification Settings,Assignments,कार्य apps/frappe/frappe/utils/data.py,{0} and {1},{0} और {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,एक बातचीत शुरू। DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",हमेशा मुद्रण मसौदा दस्तावेज के लिए शीर्षक "ड्राफ्ट" जोड़ने @@ -528,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,वर्तमान मा apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ईमेल को स्पैम के रूप में चिह्नित किया गया है DocType: Comment,Website Manager,वेबसाइट प्रबंधक apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,फ़ाइल अपलोड डिस्कनेक्ट हो गई कृपया पुन: प्रयास करें। +DocType: Data Import Beta,Show Failed Logs,विफल लॉग दिखाएं apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,अनुवाद apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,आपने ड्राफ्ट या रद्द किए गए दस्तावेज़ों का चयन किया है apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},दस्तावेज़ {0} को {2} द्वारा {1} राज्य में सेट किया गया है @@ -535,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,दस्तावेज़ DocType: GSuite Templates,Destination ID,गंतव्य आईडी DocType: Desktop Icon,List,लिस्ट DocType: Activity Log,Link Name,लिंक का नाम +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,आपकी शरण\ DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy +DocType: Onboarding Slide,Onboarding Slide,ऑनबोर्डिंग स्लाइड apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,अवैध पासवर्ड: DocType: Print Settings,Send document web view link in email,भेजें ईमेल में दस्तावेज़ वेब दृश्य लिंक apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,पिछला @@ -596,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,गहरा भूरा apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},सफल: {0} को {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,डेमो में उपयोगकर्ता विवरण बदल नहीं सकते कृपया https://erpnext.com पर एक नए खाते के लिए साइनअप करें apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ड्रॉप +DocType: Dashboard Chart,Aggregate Function Based On,आधार पर कार्य apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,परिवर्तन करने के लिए इस दोहरे कृपया apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,बचाने के लिए Enter दबाएं apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,छवियों के खंडित लिंक के कारण PDF उत्पादन असफल हुआ @@ -609,7 +640,9 @@ DocType: Notification,Days Before,एक दिन पहले apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,डेली इवेंट्स को उसी दिन खत्म करना चाहिए। apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,संपादित करें ... DocType: Workflow State,volume-down,मात्रा नीचे +DocType: Onboarding Slide,Help Links,लिंक की मदद करें apps/frappe/frappe/auth.py,Access not allowed from this IP Address,इस IP पते से प्रवेश की अनुमति नहीं है +DocType: Notification Settings,Enable Email Notifications,ईमेल सूचनाएं सक्षम करें apps/frappe/frappe/desk/reportview.py,No Tags,कोई टैग नहीं DocType: Email Account,Send Notification to,को अधिसूचना भेजें DocType: DocField,Collapsible,खुलने और बंधनेवाला @@ -638,6 +671,7 @@ DocType: Google Drive,Last Backup On,अंतिम बैकअप पर DocType: Customize Form Field,Customize Form Field,प्रपत्र फ़ील्ड अनुकूलित DocType: Energy Point Rule,For Document Event,दस्तावेज़ घटना के लिए DocType: Website Settings,Chat Room Name,चैट रूम का नाम +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,स्थिर DocType: OAuth Client,Grant Type,अनुदान के प्रकार apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,दस्तावेज़ किसी उपयोगकर्ता द्वारा पठनीय हैं जो जांच करें DocType: Deleted Document,Hub Sync ID,हब सिंक आईडी @@ -645,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,व DocType: Auto Repeat,Quarterly,त्रैमासिक apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","ईमेल डोमेन इस खाते के लिए नियोजित नहीं है, एक बनाएँ?" DocType: User,Reset Password Key,पासवर्ड को रीसेट +DocType: Dashboard Chart,All Time,पूरा समय apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} के लिए अवैध दस्तावेज़ स्थिति DocType: Email Account,Enable Auto Reply,ऑटो जवाब सक्षम करें apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,नहीं देखा @@ -657,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,म DocType: Email Account,Notify if unreplied,Unreplied अगर सूचित करें apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR कोड को स्कैन करें और प्रदर्शित परिणाम कोड दर्ज करें। apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,स्नातक सक्षम करें +DocType: Scheduled Job Type,Hourly Long,प्रति घंटा लंबा DocType: System Settings,Minimum Password Score,न्यूनतम पासवर्ड स्कोर DocType: DocType,Fields,फील्ड्स DocType: System Settings,Your organization name and address for the email footer.,ईमेल पाद लेख के लिए अपने संगठन का नाम और पता। @@ -664,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,मात apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,एस 3 बैकअप पूर्ण! apps/frappe/frappe/config/desktop.py,Developer,डेवलपर apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,बनाया गया +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},इसे सक्षम करने के लिए निम्नलिखित लिंक में दिए गए निर्देशों का पालन करें: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} पंक्ति में {1} यूआरएल और बच्चे आइटम दोनों नहीं हो सकता apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},निम्न तालिकाओं के लिए कम से कम एक पंक्ति होनी चाहिए: {0} DocType: Print Format,Default Print Language,डिफ़ॉल्ट प्रिंट भाषा apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,के पूर्वजों apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,जड़ {0} मिटाया नहीं जा सकता +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,कोई विफल लॉग नहीं apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,अब तक कोई टिप्पणी नहीं apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","एसएमएस सेटिंग के माध्यम से, उसे प्रमाणीकरण विधि के रूप में सेट करने से पहले एसएमएस सेटअप करें" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,आवश्यक दोनों doctype और नाम @@ -692,6 +730,7 @@ DocType: Website Settings,Footer Items,पाद लेख आइटम apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,मेन्यू DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,दैनिक +DocType: Onboarding Slide,Max Count,अधिकतम गणना apps/frappe/frappe/config/users_and_permissions.py,User Roles,उपयोगकर्ता भूमिका DocType: Property Setter,Property Setter overrides a standard DocType or Field property,संपत्ति सेटर एक मानक doctype या फील्ड संपत्ति ओवरराइड करता है apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,अद्यतन नहीं कर सकता : लिंक गलत / समय सीमा समाप्त. @@ -710,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",लक्ष्य = "_blank&quo DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,मेज़बान DocType: Data Import Beta,Import File,फ़ाइल आयात करें +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,टेम्पलेट त्रुटि apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,कॉलम {0} पहले से ही मौजूद हैं। DocType: ToDo,High,उच्च apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,नयी घटना @@ -725,6 +765,7 @@ DocType: Web Form Field,Show in filter,फ़िल्टर में दिख DocType: Address,Daman and Diu,दमन और दीव apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,परियोजना DocType: Address,Personal,व्यक्तिगत +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,कच्चे मुद्रण सेटिंग्स ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,विवरण के लिए https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region देखें। apps/frappe/frappe/config/settings.py,Bulk Rename,थोक नाम बदलें DocType: Email Queue,Show as cc,सीसी के रूप में दिखाएँ @@ -734,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,वीडियो DocType: Contact Us Settings,Introductory information for the Contact Us Page,हमसे संपर्क करें पृष्ठ के लिए परिचयात्मक जानकारी DocType: Print Style,CSS,सीएसएस DocType: Workflow State,thumbs-down,नीचे अंगूठे +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,दस्तावेज रद्द करना DocType: User,Send Notifications for Email threads,ईमेल थ्रेड के लिए सूचनाएं भेजें apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,प्रोफेसर apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,नहीं डेवलपर मोड में @@ -741,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,फ़ा DocType: DocField,In Global Search,वैश्विक खोज में DocType: System Settings,Brute Force Security,ब्रूट फोर्स सुरक्षा DocType: Workflow State,indent-left,इंडेंट - बाएँ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,यह इस फ़ाइल को नष्ट करने के लिए जोखिम भरा है: {0}। अपने सिस्टम मैनेजर से संपर्क करें। DocType: Currency,Currency Name,मुद्रा का नाम apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,कोई ईमेल @@ -756,10 +797,12 @@ DocType: Energy Point Rule,User Field,प्रयोक्ता फील् DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,पुश हटाएं apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} के लिए पहले से ही हट {1} {2} +DocType: Scheduled Job Type,Stopped,रोक apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,दूर नहीं किया apps/frappe/frappe/desk/like.py,Liked,पसंद आया apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,अब भेजें apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","मानक डॉकटाइप डिफ़ॉल्ट प्रिंट प्रारूप नहीं हो सकता, कस्टमाइज़ फ़ॉर्म का उपयोग करें" +DocType: Server Script,Allow Guest,अतिथि की अनुमति दें DocType: Report,Query,प्रश्न DocType: Customize Form,Sort Order,सॉर्ट क्रम apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},' सूची दृश्य में ' की अनुमति नहीं प्रकार के लिए {0} पंक्ति में {1} @@ -781,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,दो फैक्टर प्रमाणीकरण विधि apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,पहले नाम सेट करें और रिकॉर्ड को सहेजें। apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 रिकॉर्ड +DocType: DocType Link,Link Fieldname,लिंक फ़ील्डनाम apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},साथ साझा किया गया {0} apps/frappe/frappe/email/queue.py,Unsubscribe,सदस्यता रद्द DocType: View Log,Reference Name,संदर्भ नाम apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,उपभोक्ता बदलें +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,प्रथम apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,अद्यतन अनुवाद DocType: Error Snapshot,Exception,अपवाद DocType: Email Account,Use IMAP,उपयोग आईमैप @@ -798,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,नियम कार्यप्रवाह में राज्य के संक्रमण को परिभाषित. DocType: File,Folder,फ़ोल्डर DocType: Website Route Meta,Website Route Meta,वेबसाइट मार्ग मेटा +DocType: Onboarding Slide Field,Onboarding Slide Field,स्लाइडिंग फील्ड ऑनबोर्डिंग DocType: DocField,Index,अनुक्रमणिका DocType: Email Group,Newsletter Manager,न्यूज़लैटर प्रबंधक apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,विकल्प 1 @@ -824,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ल apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,चार्ट कॉन्फ़िगर करें DocType: User,Last IP,अंतिम IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,कृपया अपने ईमेल में एक विषय जोड़ें -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,आपके साथ एक नया दस्तावेज़ {0} साझा किया गया है {1}। DocType: Data Migration Connector,Data Migration Connector,डेटा माइग्रेशन कनेक्टर apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} वापस {1} DocType: Email Account,Track Email Status,ईमेल स्थिति ट्रैक करें @@ -876,6 +921,7 @@ DocType: Email Account,Default Outgoing,डिफ़ॉल्ट निवर् DocType: Workflow State,play,खेल apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,नीचे अपना पंजीकरण पूरा करने के लिए इस लिंक पर क्लिक करें और एक नया पासवर्ड सेट apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,जोड़ नहीं था +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} {2} {3} के लिए {1} अंक प्राप्त किए apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,कोई ईमेल खाते निरुपित DocType: S3 Backup Settings,eu-west-2,यूरोपीय संघ के पश्चिम -2 DocType: Contact Us Settings,Contact Us Settings,हमसे सेटिंग्स संपर्क @@ -883,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,खोज DocType: Workflow State,text-width,अक्षर-चौड़ाई apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,इस रिकॉर्ड के लिए अधिकतम अनुलग्नक सीमा पर पहुंच गया। apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,फ़ाइल नाम या एक्सटेंशन द्वारा खोजें +DocType: Onboarding Slide,Slide Title,स्लाइड शीर्षक DocType: Notification,View Properties (via Customize Form),(अनुकूलित फॉर्म के माध्यम से) संपत्तियाँ देखें apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,इसे चुनने के लिए किसी फ़ाइल पर क्लिक करें। DocType: Note Seen By,Note Seen By,द्वारा देखा नोट @@ -909,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,यूआरएल साझा करें DocType: System Settings,Allow Consecutive Login Attempts ,अभिसरण लॉगिन प्रयासों की अनुमति दें apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,भुगतान प्रक्रिया के दौरान एक त्रुटि हुई। कृपया हमसे सम्पर्क करें। +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"यदि स्लाइड प्रकार बनाएँ या सेटिंग्स हैं, तो {ref_ctctype} में एक 'create_onboarding_docs' विधि होनी चाहिए। स्लाइड पूर्ण होने के बाद निष्पादित होने के लिए बाध्य .py फ़ाइल।" apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} दिन पहले DocType: Email Account,Awaiting Password,प्रतीक्षा कर रहा है पासवर्ड DocType: Address,Address Line 1,पता पंक्ति 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,के वंशज नहीं हैं DocType: Contact,Company Name,कंपनी का नाम DocType: Custom DocPerm,Role,भूमिका -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,सेटिंग्स... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,अपने ब्राउज़र पर apps/frappe/frappe/utils/data.py,Cent,प्रतिशत ,Recorder,रिकॉर्डर @@ -975,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","ट्रैक करें कि प्राप्तकर्ता द्वारा आपका ईमेल खोला गया है या नहीं।
नोट: यदि आप एकाधिक प्राप्तकर्ताओं को भेज रहे हैं, भले ही 1 प्राप्तकर्ता ईमेल पढ़ता है, तो इसे "खोला" माना जाएगा" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,आवश्यक लापता मूल्यों apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google संपर्क एक्सेस की अनुमति दें +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,वर्जित DocType: Data Migration Connector,Frappe,फ्रेपे apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,अपठित के रूप में चिह्नित करें DocType: Activity Log,Operation,ऑपरेशन @@ -1027,6 +1075,7 @@ DocType: Web Form,Allow Print,प्रिंट की अनुमति द DocType: Communication,Clicked,क्लिक किया apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,करें apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},करने के लिए कोई अनुमति नहीं '{0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,भेजने के लिए अनुसूचित DocType: DocType,Track Seen,ट्रैक देखा DocType: Dropbox Settings,File Backup,फ़ाइल बैकअप @@ -1035,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,कोई {0} apps/frappe/frappe/config/customization.py,Add custom forms.,कस्टम प्रपत्र जोड़ें। apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} में {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,इस दस्तावेज प्रस्तुत -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,प्रणाली कई पूर्व निर्धारित भूमिकाओं में हैं. आप महीन अनुमति सेट करने के लिए नई भूमिका में जोड़ सकते हैं . DocType: Communication,CC,सीसी DocType: Country,Geo,जियो DocType: Data Migration Run,Trigger Name,ट्रिगर नाम -apps/frappe/frappe/public/js/frappe/desk.js,Domains,डोमेन +DocType: Onboarding Slide,Domains,डोमेन DocType: Blog Category,Blog Category,ब्लॉग श्रेणी apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,निम्न स्थिति में विफल रहता है क्योंकि मैप नहीं कर सकते हैं: DocType: Role Permission for Page and Report,Roles HTML,भूमिकाओं HTML @@ -1080,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,शनिवार DocType: User,Represents a User in the system.,प्रणाली में एक उपयोगकर्ता का प्रतिनिधित्व करती। DocType: List View Setting,Disable Auto Refresh,ऑटो रीफ़्रेश अक्षम करें DocType: Comment,Label,लेबल -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","कार्य {0}, आप {1}, बंद कर दिया गया को सौंपा है।" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,इस विंडो को बंद करें DocType: Print Format,Print Format Type,प्रारूप टाइप प्रिंट DocType: Newsletter,A Lead with this Email Address should exist,इस ईमेल पते के साथ एक लीड मौजूद होना चाहिए @@ -1097,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,निवर्तम apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,a चुनें DocType: Data Export,Filter List,फ़िल्टर सूची DocType: Data Export,Excel,एक्सेल +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,ऑटो उत्तर संदेश DocType: Data Migration Mapping,Condition,शर्त apps/frappe/frappe/utils/data.py,{0} hours ago,{0} घंटे पहले @@ -1115,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ज्ञानकोष योगदानकर्ता DocType: Communication,Sent Read Receipt,भेजा पढ़ें रसीद DocType: Email Queue,Unsubscribe Method,सदस्यता समाप्त विधि +DocType: Onboarding Slide,Add More Button,अधिक बटन जोड़ें DocType: GSuite Templates,Related DocType,संबंधित डॉकटाइप apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,सामग्री जोड़ने के लिए संपादित करें apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,भाषा चुनाव apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,कार्ड के विवरण apps/frappe/frappe/__init__.py,No permission for {0},के लिए कोई अनुमति नहीं {0} DocType: DocType,Advanced,उन्नत +DocType: Onboarding Slide,Slide Image Source,स्लाइड इमेज सोर्स apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,एपीआई कुंजी लगता है या एपीआई गुप्त गलत है !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},संदर्भ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,श्रीमती @@ -1137,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,मास DocType: DocType,User Cannot Create,प्रयोक्ता नहीं बना सकते हैं apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,सफलतापूर्वक किया गया apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ड्रॉपबॉक्स का उपयोग मंजूरी दे दी है! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,क्या आप वाकई {0} को {1} के साथ मर्ज करना चाहते हैं? DocType: Customize Form,Enter Form Type,प्रपत्र प्रकार दर्ज करें DocType: Google Drive,Authorize Google Drive Access,Google डिस्क एक्सेस अधिकृत करें apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,अनुपलब्ध पैरामीटर Kanban बोर्ड का नाम @@ -1146,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","अनुमति दे टैग , टैग . सावधान!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","प्रिंटिंग, ईमेल के लिए अनुकूलित प्रारूप" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} का योग -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,नई संस्करण के लिए अद्यतन DocType: Custom Field,Depends On,पर निर्भर करता है DocType: Kanban Board Column,Green,ग्रीन DocType: Custom DocPerm,Additional Permissions,अतिरिक्त अनुमतियों @@ -1174,6 +1224,7 @@ DocType: Energy Point Log,Social,सामाजिक apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google कैलेंडर - {0}, त्रुटि कोड {1} के लिए कैलेंडर नहीं बना सका।" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,संपादन पंक्ति DocType: Workflow Action Master,Workflow Action Master,कार्यप्रवाह एक्शन मास्टर +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,सभी हटा दो DocType: Custom Field,Field Type,फ़ील्ड प्रकार apps/frappe/frappe/utils/data.py,only.,मात्र। DocType: Route History,Route History,मार्ग इतिहास @@ -1209,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,पासवर्ड भू DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,आईडी apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,सर्वर त्रुटि +DocType: Server Script,After Delete,डिलीट करने के बाद apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,पिछले सभी रिपोर्ट देखें। apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,लॉगिन आईडी की जरूरत है DocType: Website Slideshow,Website Slideshow,वेबसाइट स्लाइड शो apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,कोई डेटा नहीं DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","उस वेबसाइट के होम पेज कड़ी . स्टैंडर्ड लिंक (सूचकांक , लॉगिन , उत्पादों , ब्लॉग , के बारे में , संपर्क )" +DocType: Server Script,After Submit,सबमिट करने के बाद apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ईमेल खाता {0} से ईमेल प्राप्त करते हुए प्रमाणीकरण विफल। सर्वर से संदेश: {1} DocType: User,Banner Image,बैनर छवि DocType: Custom Field,Custom Field,कस्टम फ़ील्ड @@ -1254,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","उपयोगकर्ता किसी भी भूमिका की जाँच की है, तो यूजर को एक "सिस्टम उपयोगकर्ता" हो जाता है। "सिस्टम उपयोगकर्ता" डेस्कटॉप के लिए उपयोग किया है" DocType: System Settings,Date and Number Format,तिथि और संख्या स्वरूप apps/frappe/frappe/model/document.py,one of,में से एक -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,एक पल जाँच हो रही है apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,टैग्स दिखाएं DocType: DocField,HTML Editor,एचटीएमएल संपादक 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,क्रियाएँ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता +DocType: DocType,Actions,क्रियाएँ DocType: Workflow State,align-justify,संरेखित करें - का औचित्य साबित DocType: User,Middle Name (Optional),मध्य नाम (वैकल्पिक) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,अनुमति नहीं @@ -1277,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,कोई DocType: System Settings,Security,सुरक्षा apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} प्राप्तकर्ताओं को भेजने के लिए अनुसूचित apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,कट गया +DocType: Server Script,After Save,सेव के बाद apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},से नाम {0} को {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} {0} ({2} पंक्तियों के बच्चों के साथ) DocType: Currency,**Currency** Master,** मुद्रा ** मास्टर @@ -1303,15 +1355,18 @@ DocType: Prepared Report,Filter Values,फ़िल्टर मान DocType: Communication,User Tags,उपयोगकर्ता के टैग DocType: Data Migration Run,Fail,असफल DocType: Workflow State,download-alt,डाउनलोड-Alt +DocType: Scheduled Job Type,Last Execution,अंतिम निष्पादन DocType: Data Migration Run,Pull Failed,खींचो विफल apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,कार्ड दिखाएं / छिपाएं DocType: Communication,Feedback Request,प्रतिक्रिया के लिए अनुरोध apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel फ़ाइलों से डेटा आयात करें apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,निम्नलिखित क्षेत्रों याद कर रहे हैं: +DocType: Notification Log,From User,उपयोगकर्ता से apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},रद्द करना {0} DocType: Web Page,Main Section,मुख्य धारा DocType: Page,Icon,आइकन apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","संकेत: पासवर्ड में प्रतीकों, संख्याएं और कैपिटल अक्षरों को शामिल करें" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","उल्लेख, असाइनमेंट, ऊर्जा बिंदु और अधिक के लिए सूचनाएं कॉन्फ़िगर करें।" DocType: DocField,Allow in Quick Entry,त्वरित प्रविष्टि में अनुमति दें apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,पीडीएफ DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1343,7 +1398,6 @@ DocType: Website Theme,Theme URL,थीम URL DocType: Customize Form,Sort Field,क्रमबद्ध फील्ड DocType: Razorpay Settings,Razorpay Settings,Razorpay सेटिंग apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,संपादित फ़िल्टर -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,अधिक जोड़ें DocType: System Settings,Session Expiry Mobile,सत्र समाप्ति मोबाइल apps/frappe/frappe/utils/password.py,Incorrect User or Password,गलत उपयोगकर्ता या पासवर्ड apps/frappe/frappe/templates/includes/search_box.html,Search results for,के लिए खोज परिणाम @@ -1359,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,एनर्जी पॉइंट नियम DocType: Communication,Delayed,विलंबित apps/frappe/frappe/config/settings.py,List of backups available for download,डाउनलोड के लिए उपलब्ध बैकअप की सूची +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,नए डेटा आयात का प्रयास करें apps/frappe/frappe/www/login.html,Sign up,साइन अप करें apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,पंक्ति {0}: मानक क्षेत्रों के लिए अनिवार्य अक्षम करने की अनुमति नहीं है +DocType: Webhook,Enable Security,सुरक्षा सक्षम करें apps/frappe/frappe/config/customization.py,Dashboards,डैशबोर्ड DocType: Test Runner,Output,उत्पादन DocType: Milestone,Track Field,ट्रैक क्षेत्र @@ -1379,8 +1435,10 @@ DocType: Portal Menu Item,Portal Menu Item,पोर्टल मेन्यू apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,फिल्टर सेट करें DocType: Contact Us Settings,Email ID,ईमेल आईडी DocType: Energy Point Rule,Multiplier Field,गुणक क्षेत्र +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,रज़पुरी आदेश नहीं बना सके। कृपया प्रशासक से संपर्क करें DocType: Dashboard Chart,Time Interval,समय अंतराल DocType: Activity Log,Keep track of all update feeds,सभी अद्यतन फ़ीड का ट्रैक रखें +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ने आपके साथ {1} {2} एक दस्तावेज़ साझा किया 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,क्वेरी विकल्प @@ -1399,6 +1457,7 @@ DocType: DefaultValue,Key,कुंजी DocType: Address,Contacts,संपर्क DocType: System Settings,Setup Complete,सेटअप पूरा हुआ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,सभी दस्तावेज़ शेयरों की रिपोर्ट +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","आयात टेम्पलेट प्रकार का होना चाहिए .csv, .xlsx या .xls" apps/frappe/frappe/www/update-password.html,New Password,नया पासवर्ड apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,फ़िल्टर {0} लापता apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,माफ़ कीजिये! आप स्वत: उत्पन्न टिप्पणियों को नष्ट नहीं कर सकते @@ -1414,6 +1473,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,रन DocType: Blog Post,Content (HTML),सामग्री (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,के लिए व्यवस्था DocType: Personal Data Download Request,User Name,उपयोगकर्ता नाम DocType: Workflow State,minus-sign,ऋण पर हस्ताक्षर apps/frappe/frappe/public/js/frappe/request.js,Not Found,नहीं मिला @@ -1421,11 +1481,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,कोई {0} अनुम apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,निर्यात कस्टम अनुमतियां apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,कुछ नहीं मिला। DocType: Data Export,Fields Multicheck,फ़ील्ड मल्टीचेक +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} पूर्ण DocType: Activity Log,Login,लॉगिन DocType: Web Form,Payments,भुगतान apps/frappe/frappe/www/qrcode.html,Hi {0},हाय {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google ड्राइव एकीकरण। -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} {1} {2} पर आपकी बातों को पलट दिया DocType: System Settings,Enable Scheduled Jobs,अनुसूचित नौकरियों सक्षम करें apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,नोट : apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,निष्क्रिय @@ -1450,6 +1510,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,सा apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,अनुमति त्रुटि apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} के नाम नहीं हो सकता है {1} DocType: User Permission,Applicable For,के लिए लागू +DocType: Dashboard Chart,From Date,दिनांक से apps/frappe/frappe/core/doctype/version/version_view.html,Success,सफलता apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,सत्र समाप्त हुआ DocType: Kanban Board Column,Kanban Board Column,Kanban बोर्ड कॉलम @@ -1461,7 +1522,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,स apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; हालत में अनुमति नहीं है DocType: Async Task,Async Task,Async टास्क DocType: Workflow State,picture,तस्वीर -apps/frappe/frappe/www/complete_signup.html,Complete,पूरा +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,पूरा DocType: DocType,Image Field,छवि फील्ड DocType: Print Format,Custom HTML Help,कस्टम HTML मदद DocType: LDAP Settings,Default Role on Creation,निर्माण पर डिफ़ॉल्ट भूमिका @@ -1469,6 +1530,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,अगले राज्य DocType: User,Block Modules,ब्लॉक मॉड्यूल DocType: Print Format,Custom CSS,कस्टम सीएसएस +DocType: Energy Point Rule,Apply Only Once,केवल एक बार आवेदन करें apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,एक टिप्पणी जोड़ें DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},उपेक्षित: {0} को {1} @@ -1480,6 +1542,7 @@ DocType: Email Account,Default Incoming,डिफ़ॉल्ट आवक DocType: Workflow State,repeat,दोहराना DocType: Website Settings,Banner,बैनर apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},मान {0} में से एक होना चाहिए +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,सभी दस्तावेज़ रद्द करें DocType: Role,"If disabled, this role will be removed from all users.","यदि अक्षम है, इस भूमिका को सभी उपयोगकर्ताओं से निकाल दिया जाएगा।" apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} सूची में जाएं apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,खोज पर मदद @@ -1488,6 +1551,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,पंज apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,इस दस्तावेज़ के लिए ऑटो रिपीट अक्षम कर दिया गया है। DocType: DocType,Hide Copy,प्रतिलिपि बनाएँ छिपाएँ apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,सभी भूमिकाओं को साफ़ +DocType: Server Script,Before Save,सेव से पहले apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} अद्वितीय होना चाहिए apps/frappe/frappe/model/base_document.py,Row,पंक्ति apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","सीसी, बीसीसी और ईमेल टेम्पलेट" @@ -1498,7 +1562,6 @@ DocType: Chat Profile,Offline,ऑफलाइन apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},सफलतापूर्वक आयात किया गया {0} DocType: User,API Key,एपीआई कुंजी DocType: Email Account,Send unsubscribe message in email,ईमेल में सदस्यता समाप्त संदेश भेजें -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,संपादित करें शीर्षक apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,इस कड़ी क्षेत्र के लिए टैग किया जाएगा जो FIELDNAME. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,आप और आपके द्वारा सौंपा दस्तावेज। apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,आप इसे कॉपी-पेस्ट भी कर सकते हैं @@ -1530,8 +1593,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,छवि संलग्न करें DocType: Workflow State,list-alt,सूची Alt apps/frappe/frappe/www/update-password.html,Password Updated,पासवर्ड अपडेट +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ apps/frappe/frappe/www/qrcode.html,Steps to verify your login,अपना लॉगिन सत्यापित करने के लिए चरण apps/frappe/frappe/utils/password.py,Password not found,पासवर्ड नहीं मिला +DocType: Webhook,Webhook Secret,वेबहूक सीक्रेट DocType: Data Migration Mapping,Page Length,पृष्ठ की लंबाई DocType: Email Queue,Expose Recipients,प्राप्तकर्ता का पर्दाफाश apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,के लिए आने वाली मेल के लिए अनिवार्य है संलग्न @@ -1559,6 +1624,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,प्रणाली DocType: Web Form,Max Attachment Size (in MB),अधिकतम अनुलग्नक आकार (MB में) apps/frappe/frappe/www/login.html,Have an account? Login,एक खाता है? लॉग इन करें +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,सेटिंग प्रिंट करें ... DocType: Workflow State,arrow-down,नीचे तीर apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},रो {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},उपयोगकर्ता को नष्ट करने की अनुमति नहीं {0} {1} @@ -1579,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,अपन DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स पहुँच गुप्त DocType: Tag Link,Document Title,दस्तावेज़ का शीर्षक apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(अनिवार्य) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले DocType: Social Login Key,Social Login Provider,सामाजिक लॉगिन प्रदाता apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,एक अन्य टिप्पणी जोड़ें apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,फ़ाइल में कोई डेटा नहीं मिला कृपया डेटा के साथ नई फ़ाइल को पुनः जोड़ें। @@ -1593,11 +1660,12 @@ DocType: Workflow State,hand-down,हाथ नीचे apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",ऐसा कोई भी क्षेत्र नहीं मिला जिसे कानबन कॉलम के रूप में इस्तेमाल किया जा सके। "चयन करें" प्रकार का कस्टम फ़ील्ड जोड़ने के लिए कस्टमाइज़ फ़ॉर्म का उपयोग करें। DocType: Address,GST State,जीएसटी राज्य apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : सेट नहीं कर सकता सबमिट बिना रद्द +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),उपयोगकर्ता ({0}) DocType: Website Theme,Theme,विषय DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,पुनर्निर्देशित यूआरआइ प्रमाणीकरण कोड के लिए बाध्य apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,मदद खोलें DocType: DocType,Is Submittable,Submittable है -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,नया उल्लेख +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,नया उल्लेख apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,कोई नया Google संपर्क सिंक नहीं किया गया। DocType: File,Uploaded To Google Drive,Google ड्राइव पर अपलोड किया गया apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,एक चेक क्षेत्र के लिए मान 0 या 1 या तो किया जा सकता है @@ -1609,7 +1677,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,इनबॉक्स DocType: Kanban Board Column,Red,लाल DocType: Workflow State,Tag,टैग -DocType: Custom Script,Script,लिपि +DocType: Report,Script,लिपि apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,दस्तावेज़ सहेजा नहीं जा सकता DocType: Energy Point Rule,Maximum Points,अधिकतम अंक apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,मेरी सेटिंग्स @@ -1639,9 +1707,12 @@ DocType: Address,Haryana,हरयाणा apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} {1} {2} के लिए प्रशंसा अंक apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,भूमिकाएँ उनके सदस्य पृष्ठ से उपयोगकर्ताओं के लिए निर्धारित किया जा सकता है . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,टिप्पणी जोड़ें +DocType: Dashboard Chart,Select Date Range,तिथि सीमा का चयन करें DocType: DocField,Mandatory,अनिवार्य apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,मॉड्यूल निर्यात करने +DocType: Scheduled Job Type,Monthly Long,मासिक लंबा apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : कोई बुनियादी अनुमति सेट नहीं है +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,इसे लिंक करने के लिए {0} पर एक ईमेल भेजें apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","अर्थ की सबमिट रद्द, संशोधन" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,क्या करने के लिए @@ -1650,7 +1721,6 @@ DocType: Milestone Tracker,Track milestones for any document,किसी भी DocType: Social Login Key,Identity Details,पहचान विवरण apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},वर्कफ़्लो राज्य संक्रमण {0} से {1} की अनुमति नहीं है apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,डैशबोर्ड दिखाओ -apps/frappe/frappe/desk/form/assign_to.py,New Message,नया संदेश DocType: File,Preview HTML,पूर्वावलोकन एचटीएमएल DocType: Desktop Icon,query-report,प्रश्न-रिपोर्ट DocType: Data Import Beta,Template Warnings,टेम्पलेट चेतावनी @@ -1661,18 +1731,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,के स apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,ऑटो ईमेल रिपोर्ट सेटिंग संपादित करें DocType: Chat Room,Message Count,संदेश गणना DocType: Workflow State,book,किताब +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} निम्नलिखित प्रस्तुत दस्तावेजों के साथ जुड़ा हुआ है: {2} DocType: Communication,Read by Recipient,प्राप्तकर्ता द्वारा पढ़ें DocType: Website Settings,Landing Page,लैंडिंग पेज apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,कस्टम स्क्रिप्ट में त्रुटि apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} नाम apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,कोई अनुमतियाँ इस मापदंड के लिए निर्धारित किया है. DocType: Auto Email Report,Auto Email Report,ऑटो ईमेल रिपोर्ट +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,नया दस्तावेज़ साझा किया गया apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,टिप्पणी हटाएं? DocType: Address Template,This format is used if country specific format is not found,"देश विशिष्ट प्रारूप नहीं मिला है, तो यह प्रारूप प्रयोग किया जाता है" DocType: System Settings,Allow Login using Mobile Number,मोबाइल नंबर का उपयोग कर प्रवेश की अनुमति दें apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,आप इस संसाधन का उपयोग करने के लिए पर्याप्त अनुमति नहीं है। पहुँच पाने के लिए अपने प्रबंधक से संपर्क करें। DocType: Custom Field,Custom,रिवाज DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","सक्षम होने पर, प्रतिबंधित आईपी पते से लॉगिन करने वाले उपयोगकर्ता को दो फैक्टर एथ के लिए संकेत नहीं दिया जाएगा" +DocType: Server Script,After Cancel,रद्द करने के बाद DocType: Auto Repeat,Get Contacts,संपर्क प्राप्त करें apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},के तहत दायर की पोस्ट {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,लावारिस अनुपयोगी कॉलम @@ -1683,6 +1756,7 @@ DocType: User,Login After,बाद कीजिये DocType: Print Format,Monospace,मोनोस्पेस DocType: Letter Head,Printing,मुद्रण DocType: Workflow State,thumbs-up,अंगूठे अप +DocType: Notification Log,Mention,उल्लेख DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,फ़ॉन्ट्स apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,प्रेसिजन 1 और 6 के बीच होना चाहिए @@ -1690,7 +1764,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,और apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},यह रिपोर्ट {0} पर उत्पन्न हुई थी DocType: Error Snapshot,Frames,फ्रेम्स -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,असाइनमेंट +DocType: Notification Log,Assignment,असाइनमेंट DocType: Notification,Slack Channel,स्लैक चैनल DocType: About Us Team Member,Image Link,फोटो लिंक DocType: Auto Email Report,Report Filters,रिपोर्ट फ़िल्टर @@ -1707,7 +1781,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,घटना अपडेट करने में असमर्थ apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,सत्यापन कोड आपके पंजीकृत ईमेल पते पर भेजा गया है। apps/frappe/frappe/core/doctype/user/user.py,Throttled,घुटा +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,आपका लक्ष्य apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","फ़िल्टर में 4 मान (सिद्धांत, फ़ील्डनाम, ऑपरेटर, मान) होना चाहिए: {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},{0} के लिए कोई नाम निर्दिष्ट नहीं apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,असाइनमेंट नियम लागू करें apps/frappe/frappe/utils/bot.py,show,दिखाना apps/frappe/frappe/utils/data.py,Invalid field name {0},अमान्य फ़ील्ड नाम {0} @@ -1717,7 +1793,6 @@ DocType: Workflow State,text-height,अक्षर-ऊंचाई DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,डेटा माइग्रेशन प्लान मैपिंग apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,शुरू फ्रेपी ... DocType: Web Form Field,Max Length,अधिकतम लंबाई -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} के लिए DocType: Print Format,Jinja,जिंजा DocType: Workflow State,map-marker,नक्शा मार्कर apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,किसी समस्या सबमिट @@ -1753,6 +1828,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,लापता या स apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,समीक्षा DocType: DocType,Route,मार्ग apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay भुगतान प्रवेश द्वार सेटिंग्स +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ने {2} {3} के लिए {1} अंक प्राप्त किया apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,दस्तावेज़ से संलग्न छवियां प्राप्त करें DocType: Chat Room,Name,नाम DocType: Contact Us Settings,Skype,स्काइप @@ -1763,7 +1839,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,लिंक apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,आपकी भाषा DocType: Dashboard Chart,Average,औसत apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,लाइन जोड़ो -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,मुद्रक apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,प्रश्न एक का चयन किया जाना चाहिए DocType: Auto Repeat,Completed,पूरा @@ -1823,6 +1898,7 @@ DocType: GCalendar Account,Next Sync Token,अगला सिंक टोक DocType: Energy Point Settings,Energy Point Settings,ऊर्जा बिंदु सेटिंग्स DocType: Async Task,Succeeded,सफल रहा apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},में आवश्यक अनिवार्य क्षेत्रों {0} +DocType: Onboarding Slide Field,Align,संरेखित apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} के लिए अनुमतियाँ रीसेट ? apps/frappe/frappe/config/desktop.py,Users and Permissions,उपयोगकर्ता और अनुमतियाँ DocType: S3 Backup Settings,S3 Backup Settings,एस 3 बैकअप सेटिंग्स @@ -1839,7 +1915,9 @@ DocType: DocType,ASC,एएससी apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,नया प्रिंट प्रारूप नाम apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,अनुरोध को अनुमोदित करने के लिए नीचे दिए गए लिंक पर क्लिक करें DocType: Workflow State,align-left,संरेखित करें बाएं +DocType: Onboarding Slide,Action Settings,क्रिया सेटिंग्स DocType: User,Defaults,डिफ़ॉल्ट्स +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना के लिए,> 5, <10 या = 324 का उपयोग करें। श्रेणियों के लिए, 5:10 (5 और 10 के बीच मानों के लिए) का उपयोग करें।" DocType: Energy Point Log,Revert Of,वापस कर दिया apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,मौजूदा साथ मर्ज DocType: User,Birth Date,जन्म तिथि @@ -1894,6 +1972,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,में DocType: Notification,Value Change,मान बदलने DocType: Google Contacts,Authorize Google Contacts Access,Google संपर्क एक्सेस को अधिकृत करें apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,रिपोर्ट से केवल संख्यात्मक फ़ील्ड दिखा रहा है +apps/frappe/frappe/utils/data.py,1 week ago,1 सप्ताह पहले DocType: Data Import Beta,Import Type,आयात प्रकार DocType: Access Log,HTML Page,HTML पेज DocType: Address,Subsidiary,सहायक @@ -1903,7 +1982,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,लेटरहेड के साथ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,अवैध जावक मेल सर्वर या पोर्ट DocType: Custom DocPerm,Write,लिखना -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,केवल प्रशासक प्रश्न / स्क्रिप्ट रिपोर्टें बनाने की अनुमति apps/frappe/frappe/public/js/frappe/form/save.js,Updating,अद्यतन कर रहा है DocType: Data Import Beta,Preview,पूर्वावलोकन apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",फील्ड "मूल्य" अनिवार्य है। अद्यतन करने की मूल्य निर्दिष्ट करें @@ -1913,6 +1991,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,उपय DocType: Data Migration Run,Started,शुरू कर दिया है apps/frappe/frappe/permissions.py,User {0} does not have access to this document,उपयोगकर्ता {0} के पास इस दस्तावेज़ तक पहुंच नहीं है DocType: Data Migration Run,End Time,अंतिम समय +DocType: Dashboard Chart,Group By Based On,के आधार पर समूह apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,किए गए अनुलग्नकों के चयन करें apps/frappe/frappe/model/naming.py, for {0},के लिए {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,आप इस दस्तावेज़ मुद्रित करने की अनुमति नहीं है @@ -1954,6 +2033,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,सत्यापि DocType: Workflow Document State,Update Field,फील्ड अद्यतन DocType: Chat Profile,Enable Chat,चैट सक्षम करें DocType: LDAP Settings,Base Distinguished Name (DN),बेस विशिष्ट नाम (डी.एन.) +DocType: Server Script,API,एपीआई apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,इस बातचीत को छोड़ दो apps/frappe/frappe/model/base_document.py,Options not set for link field {0},विकल्प लिंक क्षेत्र के लिए निर्धारित नहीं {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,कतार / कार्यकर्ता @@ -2020,12 +2100,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,लॉगइन इस समय की अनुमति नहीं DocType: Data Migration Run,Current Mapping Action,वर्तमान मैपिंग एक्शन DocType: Dashboard Chart Source,Source Name,स्रोत का नाम -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,उपयोगकर्ता के साथ कोई ईमेल खाता संबद्ध नहीं है। कृपया उपयोगकर्ता> ईमेल इनबॉक्स के तहत एक खाता जोड़ें। DocType: Email Account,Email Sync Option,ईमेल सिंक विकल्प apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,पंक्ति संख्या नहीं DocType: Async Task,Runtime,क्रम DocType: Post,Is Pinned,पिन किया गया है DocType: Contact Us Settings,Introduction,परिचय +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,मदद की ज़रूरत है? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,पिन ग्लोबली apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,के बाद DocType: LDAP Settings,LDAP Email Field,LDAP ईमेल क्षेत्र @@ -2035,7 +2115,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,पहल DocType: User Email,Enable Outgoing,निवर्तमान सक्षम करें DocType: Address,Fax,फैक्स apps/frappe/frappe/config/customization.py,Custom Tags,कस्टम टैग -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएं DocType: Comment,Submitted,पेश DocType: Contact,Pulled from Google Contacts,Google संपर्कों से खींचा गया apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,अमान्य अनुरोध @@ -2056,9 +2135,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,घर / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,मुझे करने के लिए आवंटित DocType: DocField,Dynamic Link,गतिक कड़ी apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,मेनू और साइडबार में अतिरिक्त शॉर्टकट को ट्रिगर करने के लिए Alt कुंजी दबाएं +DocType: Dashboard Chart,To Date,तिथि करने के लिए DocType: List View Setting,List View Setting,सूची सेटिंग देखें apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,शो में विफल रहा है नौकरियों -DocType: Event,Details,विवरण +DocType: Scheduled Job Log,Details,विवरण DocType: Property Setter,DocType or Field,Doctype या फील्ड apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,आपने इस दस्तावेज़ को अनफ़ॉलो कर दिया apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,प्राथमिक रंग @@ -2066,7 +2146,6 @@ DocType: Communication,Soft-Bounced,शीतल बाउंस DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","यदि सक्षम है, तो सभी उपयोगकर्ता दो फैक्टर एथ का उपयोग करके किसी भी आईपी पते से लॉगिन कर सकते हैं। यह केवल उपयोगकर्ता पेज में विशिष्ट उपयोगकर्ता (ओं) के लिए सेट किया जा सकता है" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,प्रकाशन योग्य कुंजी या गुप्त कुंजी लगता है गलत है !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,अनुमतियाँ सेट करने के लिए त्वरित मदद -DocType: Tag Doc Category,Doctype to Assign Tags,टैग निरुपित करने के लिए Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,दिखाएँ relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ईमेल कचरा में स्थानांतरित कर दिया गया है DocType: Report,Report Builder,रिपोर्ट बिल्डर @@ -2081,6 +2160,7 @@ DocType: Workflow State,Upload,अपलोड DocType: User Permission,Advanced Control,उन्नत नियंत्रण DocType: System Settings,Date Format,दिनांक स्वरूप apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,प्रकाशित नहीं है +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं। apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","कार्यप्रवाह के लिए क्रिया (जैसे , स्वीकारें रद्द ) ." DocType: Data Import,Skip rows with errors,त्रुटियों वाली पंक्तियां छोड़ें DocType: Workflow State,flag,झंडा @@ -2090,7 +2170,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,द apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,मैदान में कूदें DocType: Contact Us Settings,Forward To Email Address,फॉरवर्ड ईमेल पते पर DocType: Contact Phone,Is Primary Phone,प्राथमिक फोन है -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,इसे लिंक करने के लिए {0} पर एक ईमेल भेजें। DocType: Auto Email Report,Weekdays,काम करने के दिन apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} रिकॉर्ड निर्यात किया जाएगा apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,शीर्षक फ़ील्ड एक वैध fieldname होना चाहिए @@ -2098,7 +2177,7 @@ DocType: Post Comment,Post Comment,टिप्पणी पोस्ट कर apps/frappe/frappe/config/core.py,Documents,दस्तावेज़ apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,गतिविधि लॉग इन करें DocType: Social Login Key,Custom Base URL,कस्टम बेस URL -DocType: Email Flag Queue,Is Completed,पूरा हो गया है +DocType: Onboarding Slide,Is Completed,पूरा हो गया है apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,फ़ील्ड प्राप्त करें apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,प्रोफ़ाइल संपादित करें DocType: Kanban Board Column,Archived,संग्रहीत @@ -2109,11 +2188,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",यह क्षेत्र केवल तभी दिखाई देगा FIELDNAME यहाँ परिभाषित महत्व है या नियमों के सच्चे (उदाहरण) कर रहे हैं: myfield eval: doc.myfield == 'मेरा मान' eval: doc.age> 18 DocType: Social Login Key,Office 365,ऑफिस 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,आज +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,आज apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आप इस सेट करने के बाद , उपयोगकर्ताओं को केवल सक्षम पहुँच दस्तावेजों लिंक मौजूद है, जहां (जैसे ब्लॉग पोस्ट) (जैसे ब्लॉगर ) हो जाएगा ." DocType: Data Import Beta,Submit After Import,आयात के बाद सबमिट करें DocType: Error Log,Log of Scheduler Errors,समयबद्धक त्रुटियाँ का प्रवेश DocType: User,Bio,जैव +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ऑनबोर्डिंग स्लाइड हेल्प लिंक DocType: OAuth Client,App Client Secret,अनुप्रयोग ग्राहकों का सीक्रेट apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,भेजने से apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,अभिभावक दस्तावेज़ का नाम है जिस पर डेटा जोड़ा जाएगा। @@ -2121,7 +2201,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,अपरकेस apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,कस्टम HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,फ़ोल्डर का नाम दर्ज -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं। apps/frappe/frappe/auth.py,Unknown User,अज्ञात उपयोगकर्ता apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,रोल का चयन करें DocType: Comment,Deleted,हटाए गए @@ -2137,7 +2216,7 @@ DocType: Chat Token,Chat Token,चैट टोकन apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,चार्ट बनाएं apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,आयात मत करो -DocType: Web Page,Center,केंद्र +DocType: Onboarding Slide Field,Center,केंद्र DocType: Notification,Value To Be Set,मूल्य निर्धारित करने के लिए apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} संपादित करें apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,पहला स्तर @@ -2145,7 +2224,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,डेटाबेस नाम apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ताज़ा करे पर्चा DocType: DocField,Select,चयन -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,पूर्ण लॉग देखें +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,पूर्ण लॉग देखें DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","सरल पायथन अभिव्यक्ति, उदाहरण: स्थिति == 'खुला' और प्रकार == 'बग'" apps/frappe/frappe/utils/csvutils.py,File not attached,फ़ाइल संलग्न नहीं apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,संपर्क टूट गया। कुछ सुविधाएं शायद काम न करें @@ -2177,6 +2256,7 @@ DocType: Web Page,HTML for header section. Optional,हैडर अनुभा apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,यह सुविधा नए ब्रांड और अभी भी प्रयोगात्मक है apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,अधिकतम {0} पंक्तियों की अनुमति दी DocType: Dashboard Chart Link,Chart,चार्ट +DocType: Scheduled Job Type,Cron,क्रॉन DocType: Email Unsubscribe,Global Unsubscribe,वैश्विक सदस्यता रद्द apps/frappe/frappe/utils/password_strength.py,This is a very common password.,यह एक बहुत ही आम पासवर्ड है। apps/frappe/frappe/email/doctype/email_group/email_group.js,View,राय @@ -2193,6 +2273,7 @@ DocType: Data Migration Connector,Hostname,होस्ट का नाम DocType: Data Migration Mapping,Condition Detail,स्थिति विस्तार apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","मुद्रा {0} के लिए, न्यूनतम लेनदेन राशि {1} होनी चाहिए" DocType: DocField,Print Hide,छिपाएँ प्रिंट +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,प्रयोगकर्ता के लिए apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,मान दर्ज DocType: Workflow State,tint,टिंट @@ -2259,6 +2340,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,लॉगि apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,जोड़ें करने के लिए क्या DocType: Footer Item,Company,कंपनी apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} का औसत +DocType: Scheduled Job Log,Scheduled,अनुसूचित DocType: User,Logout from all devices while changing Password,पासवर्ड बदलते समय सभी उपकरणों से लॉगआउट करें apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,पासवर्ड को सत्यापित करें apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,त्रुटियां थीं @@ -2284,7 +2366,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,उपयोगकर्ता अनुमति पहले से मौजूद है apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},मानचित्रण कॉलम {0} को {1} फ़ील्ड में apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} देखें -DocType: User,Hourly,प्रति घंटा +DocType: Scheduled Job Type,Hourly,प्रति घंटा apps/frappe/frappe/config/integrations.py,Register OAuth Client App,रजिस्टर OAuth क्लाइंट अनुप्रयोग DocType: DocField,Fetch If Empty,अगर खाली हो जाए DocType: Data Migration Connector,Authentication Credentials,प्रमाणीकरण प्रमाणन @@ -2295,10 +2377,10 @@ DocType: SMS Settings,SMS Gateway URL,एसएमएस गेटवे URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} नहीं हो सकता ""{2}"". यह ""{3}"" में से एक होना चाहिए" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} स्वचालित नियम {1} के माध्यम से प्राप्त apps/frappe/frappe/utils/data.py,{0} or {1},{0} या {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,आप सब तैयार हैं! DocType: Workflow State,trash,कचरा DocType: System Settings,Older backups will be automatically deleted,पुराने बैकअप स्वचालित रूप से हटा दिया जाएगा apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,अमान्य प्रवेश कुंजी आईडी या गुप्त पहुंच कुंजी -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,आपने कुछ ऊर्जा बिंदु खो दिए DocType: Post,Is Globally Pinned,विश्व स्तर पर पिन किया गया है apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,हाल की गतिविधि DocType: Workflow Transition,Conditions,शर्तेँ @@ -2307,6 +2389,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,पुष् DocType: Event,Ends on,पर समाप्त होता है DocType: Payment Gateway,Gateway,द्वार DocType: LDAP Settings,Path to Server Certificate,सर्वर प्रमाणपत्र के लिए पथ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,आपके ब्राउज़र पर जावास्क्रिप्ट अक्षम है apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,लिंक देखने की पर्याप्त अनुमति नहीं है apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,पता शीर्षक अनिवार्य है . DocType: Google Contacts,Push to Google Contacts,Google संपर्क में पुश करें @@ -2325,7 +2408,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,यूरोपीय संघ के पश्चिम-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","यदि यह चेक किया गया है, तो मान्य डेटा के साथ पंक्तियां आयात की जाएंगी और बाद में आयात करने के लिए अमान्य पंक्तियों को एक नई फ़ाइल में डाला जाएगा।" apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,दस्तावेज़ भूमिका के उपयोगकर्ताओं द्वारा केवल संपादन है -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",आप {1} ने {2} बंद कर दिया गया को सौंपा उस कार्य को {0}। DocType: Print Format,Show Line Breaks after Sections,शो लाइन वर्गों के बाद तोड़ता DocType: Communication,Read by Recipient On,प्राप्तकर्ता द्वारा पढ़ें DocType: Blogger,Short Name,संक्षिप्त नाम @@ -2357,6 +2439,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,न DocType: Translation,PR sent,पीआर भेजा गया DocType: Auto Email Report,Only Send Records Updated in Last X Hours,केवल अंतिम एक्स घंटे में अपडेट रिकॉर्ड भेजें DocType: Communication,Feedback,प्रतिपुष्टि +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,एक नए संस्करण के लिए अद्यतन 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ओपन अनुवाद apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,यह ईमेल स्वतः प्रेरित है DocType: Workflow State,Icon will appear on the button,आइकन बटन पर दिखाई देगा @@ -2395,6 +2478,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,पृष DocType: DocField,Precision,शुद्धता DocType: Website Slideshow,Slideshow Items,स्लाइड शो आइटम apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,बार-बार शब्दों और वर्ण से बचने की कोशिश +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,सूचनाएं अक्षम +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,क्या आप वाकई सभी पंक्तियों को हटाना चाहते हैं? DocType: Workflow Action,Workflow State,कार्यप्रवाह राज्य apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,पंक्तियाँ जोड़ apps/frappe/frappe/www/list.py,My Account,मेरा खाता @@ -2403,6 +2488,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,दिनों के बाद apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ ट्रे कनेक्शन सक्रिय! DocType: Contact Us Settings,Settings for Contact Us Page,हमसे संपर्क करें पृष्ठ के लिए सेटिंग +DocType: Server Script,Script Type,लिखावट टाइप DocType: Print Settings,Enable Print Server,प्रिंट सर्वर सक्षम करें apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} सप्ताह पहले DocType: Email Account,Footer,पाद लेख @@ -2428,8 +2514,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,चेतावनी apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,यह कई पृष्ठों पर मुद्रित हो सकता है DocType: Data Migration Run,Percent Complete,पूर्ण प्रतिशत -DocType: Tag Category,Tag Category,टैग श्रेणी -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना के लिए,> 5, <10 या = 324 का उपयोग करें। श्रेणियों के लिए, 5:10 (5 और 10 के बीच मानों के लिए) का उपयोग करें।" DocType: Google Calendar,Pull from Google Calendar,Google कैलेंडर से खींचो apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,मदद DocType: User,Login Before,इससे पहले कीजिये @@ -2439,17 +2523,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,सप्ताहांत छुपाएं apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,स्वचालित रूप से आवर्ती दस्तावेज़ उत्पन्न करता है। apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,है +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,जानकारी के संकेत apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} के एक सूची नहीं किया जा सकता मूल्य DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","इस मुद्रा को कैसे स्वरूपित किया जाना चाहिए? अगर सेट नहीं किया, प्रणाली चूक का उपयोग करेगा" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} दस्तावेज़ सबमिट करें? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,तुम में लॉग इन और बैकअप का उपयोग करने में सक्षम होने के लिए सिस्टम मैनेजर भूमिका हो जाने की जरूरत है . +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ट्रे एप्लिकेशन से कनेक्ट करने में त्रुटि ...

रॉ प्रिंट फीचर का उपयोग करने के लिए आपको QZ ट्रे एप्लिकेशन इंस्टॉल और रन करना होगा।

क्यूज ट्रे डाउनलोड और इंस्टॉल करने के लिए यहां क्लिक करें
रॉ प्रिंटिंग के बारे में अधिक जानने के लिए यहां क्लिक करें ।" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,प्रिंटर मैपिंग apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें। +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,क्या आप सभी लिंक किए गए दस्तावेज़ों को रद्द करना चाहते हैं? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),जोड़ा गया {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype को {0} से नहीं बदला जा सकता {1} पंक्ति में {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,भूमिका अनुमतियां DocType: Help Article,Intermediate,मध्यम +apps/frappe/frappe/config/settings.py,Email / Notifications,ईमेल सूचनाएं apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} परिवर्तित {1} से {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,रद्द किए गए दस्तावेज़ को ड्राफ्ट के रूप में बहाल किया गया DocType: Data Migration Run,Start Time,समय शुरू @@ -2466,6 +2554,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,प्राप्तकर्ता का पता अमान्य DocType: Workflow State,step-forward,कदम आगे DocType: System Settings,Allow Login After Fail,विफल होने के बाद लॉगिन की अनुमति दें +DocType: DocType Link,DocType Link,DocType लिंक DocType: Role Permission for Page and Report,Set Role For,इस भूमिका के लिए सेट करें DocType: GCalendar Account,The name that will appear in Google Calendar,वह नाम जो Google कैलेंडर में दिखाई देगा apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} वाला डायरेक्ट रूम पहले से मौजूद है। @@ -2482,6 +2571,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},एक DocType: Contact,Google Contacts,Google संपर्क DocType: GCalendar Account,GCalendar Account,GCalendar खाता DocType: Email Rule,Is Spam,स्पैम है +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,अंतिम apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},रिपोर्ट {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ओपन {0} DocType: Data Import Beta,Import Warnings,आयात चेतावनी @@ -2493,6 +2583,7 @@ DocType: Workflow State,ok-sign,ठीक है पर हस्ताक्ष apps/frappe/frappe/config/settings.py,Deleted Documents,हटाए गए दस्तावेज़ apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,सीएसवी प्रारूप मामले संवेदनशील है apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,डेस्कटॉप चिह्न पहले से मौजूद है +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"स्लाइड को दिखाने के लिए सभी डोमेन को निर्दिष्ट करना चाहिए। यदि कुछ भी निर्दिष्ट नहीं है, तो स्लाइड डिफ़ॉल्ट रूप से सभी डोमेन में दिखाई जाती है।" apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,डुप्लिकेट apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: पंक्ति {2} में फ़ील्ड {1} को छिपाया नहीं जा सकता है और डिफ़ॉल्ट रूप से अनिवार्य है DocType: Newsletter,Create and Send Newsletters,बनाने और भेजने समाचार @@ -2503,6 +2594,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google कैलेंडर ईवेंट आईडी apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""पॅरेंट"" का अर्थ पॅरेंट टेबल जिसमें यह पंक्ति को जोड़ा जाना चाहिए" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,अंक की समीक्षा करें: +DocType: Scheduled Job Log,Scheduled Job Log,अनुसूचित नौकरी लॉग +DocType: Server Script,Before Delete,हटाने से पहले apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,इसके साथ साझा किया गया apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,फाइल / यूआरएल संलग्न करें और तालिका में जोड़ें। apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,संदेश सेटअप नहीं है @@ -2525,19 +2618,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,हमारे बारे में पृष्ठ के लिए सेटिंग apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,धारी भुगतान गेटवे सेटिंग apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,प्रिंट प्रिंटर को भेजा गया! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,ऊर्जा अंक +DocType: Notification Settings,Energy Points,ऊर्जा अंक +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},समय {0} प्रारूप में होना चाहिए: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,जैसे pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,कुंजी उत्पन्न करें apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,यह आपके डेटा को स्थायी रूप से हटा देगा। DocType: DocType,View Settings,दृश्य सेटिंग्स +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,नई अधिसूचना DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,अनुरोध संरचना +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,नियंत्रक विधि get_razorpay_order गायब है DocType: Personal Data Deletion Request,Pending Verification,लंबित सत्यापन DocType: Website Meta Tag,Website Meta Tag,वेबसाइट मेटा टैग DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",यदि गैर मानक बंदरगाह (उदाहरण के लिए 587)। यदि Google क्लाउड पर पोर्ट 2525 का प्रयास करें। apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","क्लियरिंग एंड डेट, क्योंकि यह प्रकाशित पृष्ठों के लिए अतीत में नहीं हो सकता है।" DocType: User,Send Me A Copy of Outgoing Emails,मुझे बाहर जाने वाले ईमेल की प्रतिलिपि भेजें -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.,उदाहरण के लिए: गूगल एनालिटिक्स आईडी जोड़ें. यूए-89XXX57-1. अधिक जानकारी के लिए गूगल एनालिटिक्स पर मदद की खोज करें. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,पासवर्ड 100 से अधिक वर्ण लंबा नहीं हो सकता DocType: OAuth Client,App Client ID,अनुप्रयोग ग्राहक आईडी @@ -2566,6 +2661,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,नया प apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} के साथ इस दस्तावेज़ साझा {1} DocType: Website Settings,Brand Image,ब्रांड छवि DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,आयात टेम्पलेट में एक हेडर होना चाहिए और एक पंक्ति में कम से कम होना चाहिए। apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google कैलेंडर कॉन्फ़िगर किया गया है। apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","शीर्ष नेविगेशन पट्टी, पाद लेख, और लोगो का सेटअप." DocType: Web Form Field,Max Value,अधिकतम मूल्य @@ -2575,6 +2671,7 @@ DocType: User Social Login,User Social Login,उपयोगकर्ता स apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} ने {2} बिंदु के साथ {1} पर आपके काम की आलोचना की DocType: Contact,All,सभी DocType: Email Queue,Recipient,प्राप्तकर्ता +DocType: Webhook,Webhook Security,Webhook सुरक्षा DocType: Communication,Has Attachment,अटैचमेंट था DocType: Address,Sales User,बिक्री प्रयोक्ता apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,खींचें और ड्रॉप उपकरण का निर्माण और प्रिंट प्रारूप अनुकूलित करने के लिए। @@ -2641,7 +2738,6 @@ DocType: Data Migration Mapping,Migration ID Field,माइग्रेशन DocType: Dashboard Chart,Last Synced On,अंतिम बार सिंक किया गया DocType: Comment,Comment Type,टिप्पणी के प्रकार DocType: OAuth Client,OAuth Client,OAuth क्लायंट -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} {1} {2} पर आपके काम की आलोचना की DocType: Assignment Rule,Users,उपयोगकर्ता DocType: Address,Odisha,ओडिशा DocType: Report,Report Type,टाइप रिपोर्ट @@ -2666,14 +2762,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,वेबसाइट स apps/frappe/frappe/model/workflow.py,Self approval is not allowed,आत्म स्वीकृति की अनुमति नहीं है DocType: GSuite Templates,Template ID,टेम्पलेट आईडी apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,अनुदान प्रकार ( {0} ) और प्रतिक्रिया प्रकार ( {1} ) के संयोजन की अनुमति नहीं है -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} का नया संदेश DocType: Portal Settings,Default Role at Time of Signup,पंजीकरण के समय पर मूलभूत भूमिका DocType: DocType,Title Case,शीर्षक केस apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,अपना डेटा डाउनलोड करने के लिए नीचे दिए गए लिंक पर क्लिक करें apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},उपयोगकर्ता के लिए सक्षम ईमेल इनबॉक्स {0} DocType: Data Migration Run,Data Migration Run,डेटा माइग्रेशन रन DocType: Blog Post,Email Sent,ईमेल भेजा गया -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,पुराने DocType: DocField,Ignore XSS Filter,XSS फ़िल्टर पर ध्यान न दें apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,हटा दिया apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ड्रॉपबॉक्स सुरक्षित सेटिंग @@ -2728,6 +2822,7 @@ DocType: Async Task,Queued,पंक्तिबद्ध DocType: Braintree Settings,Use Sandbox,उपयोग सैंडबॉक्स apps/frappe/frappe/utils/goal.py,This month,इस महीने apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,नई कस्टम प्रिंट प्रारूप +DocType: Server Script,Before Save (Submitted Document),सहेजें (प्रस्तुत दस्तावेज़) से पहले DocType: Custom DocPerm,Create,बनाना apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,प्रदर्शित करने के लिए और आइटम नहीं हैं apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,पिछले रिकॉर्ड पर जाएं @@ -2784,6 +2879,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,रद्दी में डालें DocType: Web Form,Web Form Fields,वेब प्रपत्र फील्ड्स DocType: Data Import,Amended From,से संशोधित +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"उपयोगकर्ता को स्लाइड में क्या भरना है, इसके बारे में अभी कोई जानकारी नहीं है, एक सहायता वीडियो लिंक जोड़ें।" apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},चेतावनी: असमर्थ लगाने के लिए {0} से संबंधित किसी भी तालिका में {1} DocType: S3 Backup Settings,eu-north-1,यूरोपीय संघ और उत्तर 1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,इस दस्तावेज़ को वर्तमान में निष्पादन के लिए पंक्तिबद्ध है। कृपया पुन: प्रयास करें @@ -2805,6 +2901,7 @@ DocType: Blog Post,Blog Post,ब्लॉग पोस्ट DocType: Access Log,Export From,से निर्यात करें apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,उन्नत खोज apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,आपको न्यूज़लेटर देखने की अनुमति नहीं है +DocType: Dashboard Chart,Group By,समूह द्वारा DocType: User,Interests,रूचियाँ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,पासवर्ड रीसेट निर्देश अपने ईमेल पर भेज दिया गया है DocType: Energy Point Rule,Allot Points To Assigned Users,आवंटित उपयोगकर्ताओं को अंक आवंटित करें @@ -2820,6 +2917,7 @@ DocType: Assignment Rule,Assignment Rule,असाइनमेंट निय apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},सुझाए गए नाम: {0} DocType: Assignment Rule Day,Day,दिन apps/frappe/frappe/public/js/frappe/desk.js,Modules,मॉड्यूल +DocType: DocField,Mandatory Depends On,अनिवार्य निर्भर करता है apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,भुगतान की सफलता apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,कोई {0} मेल DocType: OAuth Bearer Token,Revoked,रद्द @@ -2827,6 +2925,7 @@ DocType: Web Page,Sidebar and Comments,साइडबार और टिप् apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","आप के बाद रद्द करें और इसे बचाने के लिए एक दस्तावेज़ में संशोधन , जब वह पुराने नंबर का एक संस्करण है कि एक नया नंबर मिल जाएगा ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} दस्तावेज़ संलग्न करने की अनुमति नहीं है, कृपया प्रिंट सेटिंग्स में {0} के लिए प्रिंट की अनुमति दें सक्षम करें" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएं apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} पर दस्तावेज़ देखें DocType: Stripe Settings,Publishable Key,प्रकाशित करने योग्य कुंजी apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,आयात प्रारंभ करें @@ -2840,13 +2939,13 @@ DocType: Currency,Fraction,अंश apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Google कैलेंडर के साथ ईवेंट सिंक किया गया। DocType: LDAP Settings,LDAP First Name Field,LDAP पहला नाम फील्ड DocType: Contact,Middle Name,मध्य नाम +DocType: DocField,Property Depends On,संपत्ति पर निर्भर करता है DocType: Custom Field,Field Description,फील्ड विवरण apps/frappe/frappe/model/naming.py,Name not set via Prompt,प्रॉम्प्ट के माध्यम से निर्धारित नहीं नाम apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ईमेल इनबॉक्स apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1} के {0} को अपडेट करना, {2}" DocType: Auto Email Report,Filters Display,फिल्टर प्रदर्शन apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",संशोधन करने के लिए "संशोधित_फ्रॉम" फ़ील्ड मौजूद होना चाहिए। -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} {1} {2} पर आपके काम की सराहना की apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,फ़िल्टर सहेजें DocType: Address,Plant,पौधा apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,सभी को उत्तर दें @@ -2887,11 +2986,11 @@ DocType: Workflow State,folder-close,फ़ोल्डर बंद apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,रिपोर्ट: DocType: Print Settings,Print taxes with zero amount,शून्य राशि के साथ करों को प्रिंट करें apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} नाम दिया जा करने की अनुमति नहीं +DocType: Server Script,Before Insert,डालने से पहले DocType: Custom Script,Custom Script,कस्टम स्क्रिप्ट DocType: Address,Address Line 2,पता पंक्ति 2 DocType: Address,Reference,संदर्भ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,को सौंपा -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,डेटा माइग्रेशन मैपिंग विस्तार DocType: Data Import,Action,कार्रवाई DocType: GSuite Settings,Script URL,स्क्रिप्ट यूआरएल @@ -2917,11 +3016,13 @@ DocType: User,Api Access,एपी एक्सेस DocType: DocField,In List View,सूची दृश्य में DocType: Email Account,Use TLS,टीएलएस का प्रयोग करें apps/frappe/frappe/email/smtp.py,Invalid login or password,अमान्य लॉगइन या पासवर्ड +DocType: Scheduled Job Type,Weekly Long,साप्ताहिक लंबा apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,टेम्पलेट डाउनलोड करें apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,रूपों के लिए कस्टम जावास्क्रिप्ट जोड़ें . ,Role Permissions Manager,रोल अनुमतियां प्रबंधक apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,नया प्रिंट प्रारूप का नाम apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,साइडबार टॉगल करें +DocType: Server Script,After Save (Submitted Document),सहेजें (प्रस्तुत दस्तावेज़) के बाद DocType: Data Migration Run,Pull Insert,खींचें डालें DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",गुणक मान के साथ गुणा करने के बाद अनुमत अधिकतम अंक (नोट: कोई सीमा नहीं के लिए इस क्षेत्र को खाली छोड़ दें या 0 सेट करें) @@ -2941,6 +3042,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ब्लॉग apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,एलडीएपी स्थापित नहीं है apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,डेटा के साथ डाउनलोड apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} के लिए बदले हुए मान +DocType: Server Script,Before Cancel,रद्द करने से पहले DocType: Workflow State,hand-right,हाथ - सही DocType: Website Settings,Subdomain,उपडोमेन DocType: S3 Backup Settings,Region,प्रदेश @@ -2986,12 +3088,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,पुराना प DocType: S3 Backup Settings,us-east-1,हमें पूर्व-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},द्वारा पोस्ट {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",", कॉलम प्रारूप क्वेरी में स्तंभ लेबल दे. करने के लिए" +DocType: Onboarding Slide,Slide Fields,स्लाइड फ़ील्ड DocType: Has Domain,Has Domain,डोमेन है DocType: User,Allowed In Mentions,अनुमति में अनुमति दी apps/frappe/frappe/www/login.html,Don't have an account? Sign up,एक खाता नहीं है? साइन अप करें apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID फ़ील्ड को नहीं निकाल सकते apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : असाइन संशोधन सेट नहीं कर सकता Submittable यदि नहीं DocType: Address,Bihar,बिहार +DocType: Notification Settings,Subscribed Documents,सब्स्क्राइब्ड दस्तावेज apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,उपयोगकर्ता सेटिंग DocType: Report,Reference Report,संदर्भ रिपोर्ट DocType: Activity Log,Link DocType,लिंक doctype @@ -3009,6 +3113,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google कैलें apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,पृष्ठ आप के लिए देख रहे हैं याद आ रही है। इसका कारण यह है कि यह ले जाया जाता है या वहाँ कड़ी में एक टाइपो है हो सकता है। apps/frappe/frappe/www/404.html,Error Code: {0},त्रुटि कोड: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","एक या दो पंग्तियोमे, केवल शब्दोमे, प्रविष्टि पृष्ठ का विवरण लिखे। (अधिकतम १४० अक्षर)" +DocType: Server Script,DocType Event,DocType इवेंट apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} अनिवार्य क्षेत्र हैं DocType: Workflow,Allow Self Approval,आत्म स्वीकृति की अनुमति दें DocType: Event,Event Category,घटना श्रेणी @@ -3025,6 +3130,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,आपका नाम apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,कनेक्शन सफलता DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,स्लाइड प्रकार जारी रखें का ऑनबोर्डिंग स्लाइड पहले से मौजूद है। DocType: DocType,Default Sort Field,डिफ़ॉल्ट सॉर्ट फ़ील्ड DocType: File,Is Folder,फ़ोल्डर है DocType: Document Follow,DocType,Doctype @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,मू DocType: Workflow State,arrow-up,तीर अप DocType: Dynamic Link,Link Document Type,लिंक दस्तावेज़ प्रकार apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} तालिका के लिए कम से कम एक पंक्ति होनी चाहिए +DocType: Server Script,Server Script,सर्वर स्क्रिप्ट apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","ऑटो रिपीट को कॉन्फ़िगर करने के लिए, {0} से "ऑटो रिपीट अनुमति दें" सक्षम करें।" DocType: OAuth Bearer Token,Expires In,में समाप्त होने वाला है +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","आप कितनी बार फ़ील्ड्स का सेट दोहराना चाहते हैं (उदाहरण के लिए: यदि आप स्लाइड में 3 ग्राहक चाहते हैं, तो इस फ़ील्ड को 3 पर सेट करें। केवल फ़ील्ड्स के पहले सेट को स्लाइड में अनिवार्य रूप से दिखाया गया है)" DocType: DocField,Allow on Submit,भेजें पर अनुमति दें DocType: DocField,HTML,एचटीएमएल DocType: Error Snapshot,Exception Type,अपवाद प्रकार @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,हेडर apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,आगामी कार्यक्रम apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,अनुप्रयोग प्रवेश कुंजी और app गुप्त कुंजी के लिए मान दर्ज करें +DocType: Email Account,Append Emails to Sent Folder,भेजे गए फ़ोल्डर में ईमेल भेजें DocType: Web Form,Accept Payment,भुगतान स्वीकार apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,सूची आइटम का चयन करें apps/frappe/frappe/config/core.py,A log of request errors,अनुरोध त्रुटियों की एक लॉग @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,योगदान apps/frappe/frappe/config/customization.py,Form Customization,फॉर्म अनुकूलन apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,कोई सक्रिय सत्र नहीं DocType: Web Form,Route to Success Link,सफलता लिंक के लिए मार्ग -DocType: Top Bar Item,Right,सही +DocType: Onboarding Slide Field,Right,सही apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,कोई आगामी घटनाएँ नहीं DocType: User,User Type,प्रयोक्ता प्रकार DocType: Prepared Report,Ref Report DocType,रेफ रिपोर्ट डॉकटाइप @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,कृपया apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' या 'https: //' से शुरू होना चाहिए apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,विकल्प 3 DocType: Communication,uid,यूआईडी +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,इसे असंपादित नहीं किया जा सकता है DocType: Workflow State,Edit,संपादित करें DocType: Website Settings,Chat Operators,चैट ऑपरेटर DocType: S3 Backup Settings,ca-central-1,सीए-मध्य-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,आप इस प्रपत्र में परिवर्तन सहेजे नहीं गए . DocType: Address,Telangana,तेलंगाना apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} एक विकल्प होना चाहिए के लिए डिफ़ॉल्ट -DocType: Tag Doc Category,Tag Doc Category,टैग डॉक्टर श्रेणी apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,लैंडस्केप मोड में 10 से अधिक कॉलम वाली रिपोर्ट बेहतर दिखती है। apps/frappe/frappe/database/database.py,Invalid field name: {0},अमान्य फ़ील्ड नाम: {0} DocType: Milestone,Milestone,मील का पत्थर @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} पर जा apps/frappe/frappe/email/queue.py,Emails are muted,ईमेल मौन हैं apps/frappe/frappe/config/integrations.py,Google Services,Google सेवाएं apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + ऊपर -apps/frappe/frappe/utils/data.py,1 weeks ago,1 महीने पहले +DocType: Onboarding Slide,Slide Description,स्लाइड विवरण DocType: Communication,Error,त्रुटि apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,कृपया पहले एक संदेश सेटअप करें DocType: Auto Repeat,End Date,समाप्ति तिथि @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,समूह लेबल DocType: Kanban Board,Kanban Board,Kanban बोर्ड apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google संपर्क कॉन्फ़िगर किए गए हैं। apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 रिकॉर्ड निर्यात किया जाएगा +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,उपयोगकर्ता के साथ कोई ईमेल खाता संबद्ध नहीं है। कृपया उपयोगकर्ता> ईमेल इनबॉक्स के तहत एक खाता जोड़ें। DocType: DocField,Report Hide,छिपाएँ रिपोर्ट apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},पेड़ को देखने के लिए उपलब्ध नहीं {0} DocType: DocType,Restrict To Domain,डोमेन तक सीमित करें DocType: Domain,Domain,डोमेन +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,अमान्य फ़ाइल URL। कृपया सिस्टम एडमिनिस्ट्रेटर से संपर्क करें। DocType: Custom Field,Label Help,लेबल मदद DocType: Workflow State,star-empty,सितारा खाली apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,तारीखें अक्सर अनुमान लगाना आसान है। @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,हाथ बाएँ DocType: Data Import,If you are updating/overwriting already created records.,यदि आप पहले ही बनाए गए रिकॉर्ड को अद्यतन / ओवरराइट कर रहे हैं apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ग्लोबल है DocType: Email Account,Use SSL,SSL का उपयोग +DocType: Webhook,HOOK-.####,हुक -। #### DocType: Workflow State,play-circle,खेलने सर्कल apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,दस्तावेज़ सही ढंग से असाइन नहीं किया जा सका apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",अमान्य "निर्भर_ऑन" अभिव्यक्ति @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,अंतिम बार रिफ्रेश किया गया apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,दस्तावेज़ प्रकार के लिए DocType: Workflow State,arrow-right,तीर सही +DocType: Server Script,API Method,एपीआई विधि DocType: Workflow State,Workflow state represents the current state of a document.,कार्यप्रवाह राज्य एक दस्तावेज की वर्तमान स्थिति का प्रतिनिधित्व करता है। DocType: Letter Head,Letter Head Based On,पत्र प्रमुख के आधार पर apps/frappe/frappe/utils/oauth.py,Token is missing,टोकन याद आ रही है @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,कॉम्पैक्ट मद प्रिंट DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,यूआरएल पुनर्निर्देशन +DocType: Onboarding Slide Field,Placeholder,प्लेसहोल्डर DocType: SMS Settings,Enter url parameter for receiver nos,रिसीवर ओपन स्कूल के लिए url पैरामीटर दर्ज करें DocType: Chat Profile,Online,ऑनलाइन DocType: Email Account,Always use Account's Name as Sender's Name,हमेशा खाता का नाम प्रेषक के नाम के रूप में उपयोग करें @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,होम DocType: OAuth Provider Settings,Auto,ऑटो DocType: System Settings,User can login using Email id or User Name,उपयोगकर्ता ईमेल आईडी या यूज़र नेम से लॉगिन कर सकता है DocType: Workflow State,question-sign,सवाल संकेत -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} अक्षम है apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",वेब "दृश्य" के लिए क्षेत्र "मार्ग" अनिवार्य है apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} से पहले स्तंभ सम्मिलित करें DocType: Energy Point Rule,The user from this field will be rewarded points,इस क्षेत्र के उपयोगकर्ता को पुरस्कृत अंक दिए जाएंगे @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,स्वामी DocType: Data Migration Mapping,Push,धक्का दें apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,फ़ाइल यहां छोड़ें DocType: OAuth Authorization Code,Expiration time,समय सीमा समाप्ति समय +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,दस्तावेज़ खोलें DocType: Web Page,Website Sidebar,वेबसाइट साइडबार DocType: Web Form,Show Sidebar,दिखाएँ साइडबार apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,आप इस का उपयोग करने में लॉग इन करने की आवश्यकता है {0}। @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,वैश् DocType: Desktop Icon,Page,पेज apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},नहीं मिल सकता है {0} में {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,नाम और खुद के द्वारा surnames अनुमान लगाना आसान है। +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},दस्तावेज़ का नाम बदलकर {0} से {1} कर दिया गया apps/frappe/frappe/config/website.py,Knowledge Base,ज्ञानधार DocType: Workflow State,briefcase,ब्रीफ़केस apps/frappe/frappe/model/document.py,Value cannot be changed for {0},मूल्य के लिए बदला नहीं जा सकता {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,प्रारूप प्रिंट apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ग्रिड व्यू टॉगल करें apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,अगले रिकॉर्ड पर जाएं +DocType: System Settings,Time Format,समय प्रारूप apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,अवैध भुगतान गेटवे साख DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,यह टेम्प्लेट फ़ाइल है जिसमें केवल कुछ पंक्तियों वाले पंक्तियां होती हैं। आपको सुधार और आयात के लिए इस फ़ाइल का उपयोग करना चाहिए apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,दस्तावेज़ प्रकार और भूमिकाओं पर अनुमतियां सेट करें @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,उत् apps/frappe/frappe/config/core.py,Pages in Desk (place holders),डेस्क पृष्ठ (जगह धारकों) DocType: DocField,Collapsible Depends On,सिमटने पर निर्भर करता है DocType: Print Style,Print Style Name,प्रिंट शैली का नाम +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,डैशबोर्ड चार्ट बनाने के लिए ग्रुप बाय फील्ड की आवश्यकता होती है DocType: Print Settings,Allow page break inside tables,टेबल के अंदर पृष्ठ विराम की अनुमति दें DocType: Email Account,SMTP Server,एसएमटीपी सर्वर DocType: Print Format,Print Format Help,छापा स्वरूप मदद apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} कमरे में लगभग एक उपयोगकर्ता होना चाहिए। DocType: DocType,Beta,बीटा DocType: Dashboard Chart,Count,गिनती +DocType: Dashboard Chart,Group By Type,ग्रुप बाय टाइप apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},{0} पर नई टिप्पणी: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},बहाल {0} {1} के रूप में apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","आप अद्यतन कर रहे हैं, ""अधिलेखन"" का चयन करें और कुछ मौजूदा पंक्तियों को हटाया नहीं जाएगा।" @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,उपय DocType: Web Form,Web Form,वेब फार्म apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},दिनांक {0} प्रारूप में होना चाहिए: {1} DocType: About Us Settings,Org History Heading,संगठन इतिहास शीर्षक +DocType: Scheduled Job Type,Scheduled Job Type,अनुसूचित नौकरी प्रकार DocType: Print Settings,Allow Print for Cancelled,रद्द करने के लिए प्रिंट की अनुमति दें DocType: Communication,Integrations can use this field to set email delivery status,एकीकरण ईमेल वितरण की स्थिति निर्धारित करने के लिए इस क्षेत्र का उपयोग कर सकते हैं +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,आपके पास सभी लिंक किए गए दस्तावेज़ों को रद्द करने की अनुमति नहीं है। DocType: Web Form,Web Page Link Text,वेब पेज लिंक शीर्षक DocType: Page,System Page,सिस्टम पेज apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","सेट डिफ़ॉल्ट स्वरूप, पृष्ठ आकार, मुद्रण शैली आदि" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} के लिए अनुकूलन को निर्यात किया गया:
{1} DocType: Website Settings,Include Search in Top Bar,शामिल टॉप बार में खोजें +DocType: Scheduled Job Type,Daily Long,डेली लॉन्ग DocType: GSuite Settings,Allow GSuite access,जीएसयूइट पहुंच की अनुमति दें DocType: DocType,DESC,DESC DocType: DocType,Naming,नामकरण @@ -3487,6 +3608,7 @@ DocType: Notification,Send days before or after the reference date,पहले DocType: User,Allow user to login only after this hour (0-24),उपयोगकर्ता इस घंटे के बाद ही प्रवेश करने की अनुमति दें (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","एक-एक करके, क्रम से असाइन करें" DocType: Integration Request,Subscription Notification,सदस्यता अधिसूचना +DocType: Customize Form Field, Allow in Quick Entry ,त्वरित प्रविष्टि में अनुमति दें apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,या संलग्न करें DocType: Auto Repeat,Start Date,प्रारंभ दिनांक apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,मूल्य @@ -3501,6 +3623,7 @@ DocType: Google Drive,Backup Folder ID,बैकअप फ़ोल्डर आ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,नहीं डेवलपर मोड में! Site_config.json में सेट या 'कस्टम' doctype बनाते हैं। DocType: Workflow State,globe,ग्लोब DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,वीडियो DocType: Assignment Rule,Priority,प्राथमिकता DocType: Email Queue,Unsubscribe Param,सदस्यता समाप्त परम DocType: DocType,Hide Sidebar and Menu,साइडबार और मेनू छिपाएँ @@ -3512,6 +3635,7 @@ DocType: DocType,Allow Import (via Data Import Tool),आयात की अन apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,सीनियर DocType: DocField,Float,नाव DocType: Print Settings,Page Settings,पृष्ठ सेटिंग्स +DocType: Notification Settings,Notification Settings,अधिसूचना सेटिंग apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,सहेजा जा रहा है ... apps/frappe/frappe/www/update-password.html,Invalid Password,अवैध पासवर्ड apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,सफलतापूर्वक {1} का {0} रिकॉर्ड आयात किया गया। @@ -3527,6 +3651,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,जीमेल DocType: Letter Head,Letter Head Image,लेटर हेड इमेज DocType: Address,Party GSTIN,पार्टी जीएसटीआईएन +DocType: Scheduled Job Type,Cron Format,क्रोन प्रारूप apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} रिपोर्ट DocType: SMS Settings,Use POST,पोस्ट का उपयोग करें DocType: Communication,SMS,एसएमएस @@ -3571,18 +3696,20 @@ DocType: Workflow,Allow approval for creator of the document,दस्ताव apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,रिपोर्ट सुरक्षित रखना DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,एपीआई समापन बिंदु Args +DocType: DocType Action,Server Action,सर्वर क्रिया apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,प्रशासक पहुँचा {0} को {1} आईपी पते के माध्यम {2}। apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,पेरेंट फ़ील्ड एक मान्य फ़ील्ड नाम होना चाहिए apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,सदस्यता में संशोधन करते समय विफल DocType: LDAP Settings,LDAP Group Field,LDAP समूह फ़ील्ड +DocType: Notification Subscribed Document,Notification Subscribed Document,अधिसूचना सब्स्क्राइब्ड दस्तावेज apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,बराबरी apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,अमान्य CSV प्रारूप -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ट्रे एप्लिकेशन से कनेक्ट करने में त्रुटि ...

रॉ प्रिंट फीचर का उपयोग करने के लिए आपको QZ ट्रे एप्लिकेशन इंस्टॉल और रन करना होगा।

क्यूज ट्रे डाउनलोड और इंस्टॉल करने के लिए यहां क्लिक करें
रॉ प्रिंटिंग के बारे में अधिक जानने के लिए यहां क्लिक करें ।" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,सेट बैकअप की संख्या DocType: DocField,Do not allow user to change after set the first time,उपयोगकर्ता को बदलने की अनुमति न होने के बाद पहली बार सेट apps/frappe/frappe/utils/data.py,1 year ago,1 साल पहले +DocType: DocType,Links Section,लिंक अनुभाग apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","सभी प्रिंट, डाउनलोड और निर्यात की घटनाओं के लॉग देखें" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 महीना DocType: Contact,Contact,संपर्क @@ -3609,16 +3736,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,नई ईमेल DocType: Custom DocPerm,Export,निर्यात apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Google कैलेंडर का उपयोग करने के लिए, {0} सक्षम करें।" +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},इसके अलावा स्थिति निर्भरता क्षेत्र {0} को जोड़ना +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},सफलतापूर्वक अपडेट किया गया {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ ट्रे विफल: DocType: Dropbox Settings,Dropbox Settings,ड्रॉपबॉक्स सेटिंग DocType: About Us Settings,More content for the bottom of the page.,पृष्ठ के नीचे के लिए सामग्री. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,इस दस्तावेज़ को वापस कर दिया गया है apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google ड्राइव बैकअप सफल। +DocType: Webhook,Naming Series,श्रृंखला का नामकरण DocType: Workflow,DocType on which this Workflow is applicable.,Doctype जिस पर इस कार्यप्रवाह लागू है. DocType: User,Enabled,Enabled apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,सेटअप पूर्ण करने में विफल apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},नया {0}: {1} -DocType: Tag Category,Category Name,श्रेणी नाम +DocType: Blog Category,Category Name,श्रेणी नाम apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,चाइल्ड टेबल डेटा प्राप्त करने के लिए अभिभावक की आवश्यकता होती है apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,आयात सदस्य DocType: Print Settings,PDF Settings,पीडीएफ सेटिंग्स @@ -3654,6 +3784,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,कैलेंडर apps/frappe/frappe/client.py,No document found for given filters,दिए गए फ़िल्टरों के लिए कोई दस्तावेज़ नहीं मिला apps/frappe/frappe/config/website.py,A user who posts blogs.,एक उपयोगकर्ता जो ब्लॉग पोस्ट करता है। +DocType: DocType Action,DocType Action,DocType एक्शन apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","एक और {0} नाम के साथ {1} मौजूद है, एक और नाम का चयन करें" DocType: DocType,Custom?,कस्टम? DocType: Website Settings,Website Theme Image,वेबसाइट के विषय छवि @@ -3663,6 +3794,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},लोड apps/frappe/frappe/config/integrations.py,Backup,बैकअप apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,डैशबोर्ड चार्ट बनाने के लिए दस्तावेज़ प्रकार की आवश्यकता होती है DocType: DocField,Read Only,केवल पठनीय +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Razorpay ऑर्डर नहीं बना सका apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,नई न्यूज़लेटर DocType: Energy Point Log,Energy Point Log,एनर्जी प्वाइंट लॉग DocType: Print Settings,Send Print as PDF,के रूप में प्रिंट भेजें पीडीएफ @@ -3688,16 +3820,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,आ apps/frappe/frappe/www/login.html,Or login with,या साथ लॉगिन DocType: Error Snapshot,Locals,स्थानीय लोग apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},के माध्यम से भेजी {0} को {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} में एक टिप्पणी में आपका उल्लेख {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,समूह का चयन करें ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदाहरण के लिए (55 + 434) / 4 या = गणित.पाप (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} के लिए आवश्यक है DocType: Integration Request,Integration Type,एकता के प्रकार DocType: Newsletter,Send Attachements,attachements भेजें +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,कोई फ़िल्टर नहीं मिला apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google संपर्क एकीकरण। DocType: Transaction Log,Transaction Log,लेन देन सुची apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),पिछले महीने के प्रदर्शन ({0} से {1} तक) पर आधारित आँकड़े DocType: Contact Us Settings,City,शहर +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,सभी उपयोगकर्ताओं के लिए कार्ड छिपाएँ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,कस्टमाइज़ फॉर्म में doctype {0} के लिए ऑटो रिपीट को सक्षम करें DocType: DocField,Perm Level,स्तर Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,दस्तावेज़ देखें @@ -3708,6 +3841,7 @@ DocType: Blog Category,Blogger,ब्लॉगर DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","यदि सक्षम किया गया है, तो दस्तावेज़ में परिवर्तन ट्रैक किए जाते हैं और समयरेखा में दिखाए जाते हैं" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},पंक्ति {1} में {0} प्रकार के लिए 'वैश्विक खोज में' की अनुमति नहीं है DocType: Energy Point Log,Appreciation,प्रशंसा +DocType: Dashboard Chart,Number of Groups,समूहों की संख्या apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,सूची देखें DocType: Workflow,Don't Override Status,स्थिति पर हावी नहीं है apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,शब्द को खोजें @@ -3749,7 +3883,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-उत्तर पश्चिम -1 DocType: Dropbox Settings,Limit Number of DB Backups,डीबी बैकअप की सीमा सीमित करें DocType: Custom DocPerm,Level,स्तर -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,पिछले 30 दिनों में DocType: Custom DocPerm,Report,रिपोर्ट apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,राशि 0 से अधिक होना चाहिए। apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ ट्रे से जुड़े! @@ -3766,6 +3899,7 @@ DocType: S3 Backup Settings,us-west-2,हमें पश्चिम -2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,बाल तालिका का चयन करें apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ट्रिगर प्राथमिक क्रिया apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,परिवर्तन +DocType: Social Login Key,User ID Property,उपयोगकर्ता आईडी संपत्ति DocType: Email Domain,domain name,डोमेन नाम DocType: Contact Email,Contact Email,संपर्क ईमेल DocType: Kanban Board Column,Order,व्यवस्था @@ -3788,7 +3922,7 @@ DocType: Contact,Last Name,सरनेम DocType: Event,Private,निजी apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,आज के लिए कोई अलर्ट DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),पीडीएफ के रूप में ईमेल प्रिंट अनुलग्नक भेजें (अनुशंसित) -DocType: Web Page,Left,वाम +DocType: Onboarding Slide Field,Left,वाम DocType: Event,All Day,सभी दिन apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,कुछ ऐसा लगता है इस साइट के भुगतान गेटवे विन्यास के साथ गलत है। कोई भुगतान किया गया है। DocType: GCalendar Settings,State,राज्य @@ -3820,7 +3954,6 @@ DocType: Workflow State,User,उपयोगकर्ता DocType: Website Settings,"Show title in browser window as ""Prefix - title""",के रूप में ब्राउज़र विंडो में दिखाएं शीर्षक "उपसर्ग - शीर्षक" DocType: Payment Gateway,Gateway Settings,गेटवे सेटिंग apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,लेख दस्तावेज़ प्रकार -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,रन टेस्ट apps/frappe/frappe/handler.py,Logged Out,लॉग आउट apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,अधिक... DocType: System Settings,User can login using Email id or Mobile number,उपयोगकर्ता ईमेल आईडी या मोबाइल नंबर का इस्तेमाल कर लॉगिन कर सकता है @@ -3836,6 +3969,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,सारांश DocType: Event,Event Participants,घटना प्रतिभागियों DocType: Auto Repeat,Frequency,आवृत्ति +DocType: Onboarding Slide,Slide Order,स्लाइड ऑर्डर DocType: Custom Field,Insert After,बाद सम्मिलित करें DocType: Event,Sync with Google Calendar,Google कैलेंडर के साथ सिंक करें DocType: Access Log,Report Name,रिपोर्ट नाम @@ -3863,6 +3997,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},प्रकार मुद्रा के लिए अधिकतम चौड़ाई पंक्ति में 100px है {0} apps/frappe/frappe/config/website.py,Content web page.,सामग्री वेब पेज. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,एक नई भूमिका में जोड़ें +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,वेब पेज पर जाएँ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,नया असाइनमेंट DocType: Google Contacts,Last Sync On,अंतिम सिंक ऑन DocType: Deleted Document,Deleted Document,हटाए गए दस्तावेज apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ओह! कुछ गलत हो गया है @@ -3873,7 +4009,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,परिदृश apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,जावास्क्रिप्ट में क्लाइंट साइड स्क्रिप्ट एक्सटेंशन DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,निम्नलिखित सिद्धांतों के लिए रिकॉर्ड्स को फ़िल्टर किया जाएगा -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,अनुसूचक निष्क्रिय +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,अनुसूचक निष्क्रिय DocType: Blog Settings,Blog Introduction,ब्लॉग परिचय DocType: Global Search Settings,Search Priorities,प्राथमिकताएं खोजें DocType: Address,Office,कार्यालय @@ -3883,12 +4019,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,डैशबोर्ड च DocType: User,Email Settings,ईमेल सेटिंग apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,यहां छोड़ें DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","यदि सक्षम किया गया है, तो उपयोगकर्ता टू फ़ैक्टर प्रामाणिक का उपयोग करके किसी भी आईपी पते से लॉगिन कर सकते हैं, यह सिस्टम सेटिंग्स में सभी उपयोगकर्ताओं के लिए भी सेट किया जा सकता है" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,प्रिंटर सेटिंग ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,जारी रखने के लिए कृपया अपना कूटशब्द दर्ज करें apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,मुझे apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} नहीं एक वैध राज्य apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,सभी दस्तावेज़ प्रकारों पर लागू करें -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,एनर्जी पॉइंट अपडेट +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,एनर्जी पॉइंट अपडेट +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),केवल दैनिक चलाने के लिए यदि निष्क्रिय (दिन) नौकरियां apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',कृपया किसी अन्य भुगतान विधि चुनें। पेपैल मुद्रा में लेन-देन का समर्थन नहीं करता '{0}' DocType: Chat Message,Room Type,कमरे जैसा DocType: Data Import Beta,Import Log Preview,आयात लॉग पूर्वावलोकन @@ -3897,6 +4033,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ठीक चक्र DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP उपयोगकर्ता निर्माण और मानचित्रण apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',आप पूछ 'ग्राहकों में नारंगी पा' से चीजें मिल सकता है +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,आज की घटनाएँ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,सॉरी! उपयोगकर्ता अपने ही रिकॉर्ड करने के लिए पूरा उपयोग किया जाना चाहिए। ,Usage Info,उपयोग जानकारी apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,कीबोर्ड शॉर्टकट दिखाएं @@ -3913,6 +4050,7 @@ DocType: DocField,Unique,अजूबा apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} की सराहना की {1} पर apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,आंशिक सफलता DocType: Email Account,Service,सेवा +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता DocType: File,File Name,फ़ाइल नाम apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),के लिए {0} नहीं मिला था {0} ({1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3926,6 +4064,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,पू DocType: GCalendar Settings,Enable,सक्षम DocType: Google Maps Settings,Home Address,घर का पता apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),आप केवल एक ही बार में 5000 के रिकॉर्ड तक अपलोड कर सकते हैं। (कुछ मामलों में कम हो सकता है) +DocType: Report,"output in the form of `data = [columns, result]`","`डेटा = [कॉलम, परिणाम] के रूप में आउटपुट" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,लागू दस्तावेज़ प्रकार apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,उपयोगकर्ता असाइनमेंट के लिए नियम सेट करें। apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} के लिए अपर्याप्त अनुमति @@ -3941,7 +4080,6 @@ DocType: Communication,To and CC,प्रति और प्रतिलिप DocType: SMS Settings,Static Parameters,स्टेटिक पैरामीटर DocType: Chat Message,Room,कक्ष apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},करने के लिए अद्यतन {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,बैकग्राउंड की नौकरियां नहीं चल रही हैं। कृपया प्रशासक से संपर्क करें DocType: Portal Settings,Custom Menu Items,कस्टम मेनू आइटम apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,वेबसाइट स्लाइडशो से जुड़ी सभी छवियां सार्वजनिक होने चाहिए DocType: Workflow State,chevron-right,शेवरॉन सही @@ -3956,11 +4094,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} मान चयनित DocType: DocType,Allow Auto Repeat,ऑटो रिपीट की अनुमति दें apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,दिखाने के लिए कोई मूल्य नहीं +DocType: DocType,URL for documentation or help,प्रलेखन या मदद के लिए URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ईमेल टेम्पलेट apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,सफलतापूर्वक {0} रिकॉर्ड अपडेट किया गया। apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},उपयोगकर्ता {0} के पास दस्तावेज़ के लिए भूमिका अनुमति के माध्यम से सिद्धांत का उपयोग नहीं है {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,आवश्यक लॉगिन और पासवर्ड दोनों +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,चलो \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,नवीनतम दस्तावेज प्राप्त करने के लिए ताज़ा करें. DocType: User,Security Settings,सुरक्षा सेटिंग्स apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,कॉलम जोड़ें @@ -3970,6 +4110,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,फ़िल्टर मेटा apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},कृपया संलग्न {0}: {1} खोजें DocType: Web Page,Set Meta Tags,मेटा टैग सेट करें +DocType: Email Account,Use SSL for Outgoing,आउटगोइंग के लिए एसएसएल का उपयोग करें 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: S3 Backup Settings,Backup Limit,बैकअप सीमा DocType: Dashboard Chart,Line,लाइन @@ -4002,4 +4143,3 @@ DocType: DocField,Ignore User Permissions,उपयोगकर्ता अन apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,सफलतापूर्वक बचाया apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,कृपया अपने व्यवस्थापक से अपने साइन-अप सत्यापित करने के लिए पूछना DocType: Domain Settings,Active Domains,सक्रिय डोमेन -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,प्रवेश देखें diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv index d09932dafc..06a020efab 100644 --- a/frappe/translations/hr.csv +++ b/frappe/translations/hr.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Odaberite polje Količina. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Učitavanje datoteke za uvoz ... DocType: Assignment Rule,Last User,Posljednji korisnik -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, dodijeljen Vama od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Zadržane sesije su spremljene apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Učitaj datoteku DocType: Email Queue,Email Queue records.,E-Queue zapisa. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,e-pošta korisnika DocType: User,Username,Korisničko ime apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Uvoz Zip +DocType: Scheduled Job Type,Create Log,Kreirajte dnevnik apps/frappe/frappe/model/base_document.py,Value too big,Vrijednost prevelika DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Pokreni test skripte @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mjesečno DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Omogućiti dolazne apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Opasnost -DocType: Address,Email Address,Email adresa +apps/frappe/frappe/www/login.py,Email Address,Email adresa DocType: Workflow State,th-large,og veliki DocType: Communication,Unread Notification Sent,Nepročitana Obavijest Poslano apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz . @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Otka DocType: DocType,Is Published Field,Je Objavljeno polje DocType: GCalendar Settings,GCalendar Settings,GCalendar postavke DocType: Email Group,Email Group,E-mail Group +apps/frappe/frappe/__init__.py,Only for {},Samo za {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google kalendar - Ne mogu se izbrisati događaj {0} iz Google kalendara, kod pogreške {1}." DocType: Event,Pulled from Google Calendar,Preuzeto iz Google kalendara DocType: Note,Seen By,vide apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj više stavki -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Stekli ste neke energetske bodove apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nije važeća Korisnička slika. DocType: Energy Point Log,Reverted,Vraćeno DocType: Success Action,First Success Message,Prva poruka o uspjehu @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ne kao apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Promjeni svojstva polja (sakrij, samo čitanje, dozvola i sl.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cijeniti +DocType: Notification Settings,Document Share,Dijeljenje dokumenta DocType: Workflow State,lock,zaključati apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Postavke za Kontaktirajte nas stranicu. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator prijavljeni @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ako je omogućen, dokument je označen kao vidljiv, prvi put kada ga korisnik otvori" DocType: Auto Repeat,Repeat on Day,Ponovite dan DocType: DocField,Color,Boja +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Označi sve kao pročitano DocType: Data Migration Run,Log,Prijava DocType: Workflow State,indent-right,alineje-desno DocType: Has Role,Has Role,ima ulogu @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Prikaži Traceback DocType: DocType,Default Print Format,Zadani oblik ispisa DocType: Workflow State,Tags,oznake +DocType: Onboarding Slide,Slide Type,Vrsta slajda apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ništa: Kraj Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polje ne može se postaviti kao jedinstvena po {1}, kao što su non-jedinstveni postojeće vrijednosti" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Vrste dokumenata @@ -135,7 +138,6 @@ DocType: Language,Guest,Gost DocType: DocType,Title Field,Naslov Field DocType: Error Log,Error Log,Greška Prijava apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Neispravan URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Zadnjih 7 dana apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ponavlja poput "abcabcabc" su samo malo teže pogoditi nego "ABC" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ako mislite da je to neovlašteno, molimo promijenite lozinku administratora." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Klijent apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Odaberite Stupac apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ovaj oblik je izmijenjen nakon što ste ga učitava DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Zapisnik obavijesti DocType: System Settings,"If not set, the currency precision will depend on number format","Ako nije postavljen, preciznost valute ovisit će o formatu brojeva" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otvorite Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Čini se da postoji problem s konfiguracijom trake poslužitelja. U slučaju neuspjeha, iznos će biti vraćen na vaš račun." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Po apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Poslati DocType: Workflow Action Master,Workflow Action Name,Workflow Akcija Ime apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE se ne može spajati -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nije zip datoteka DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Je li e-mail poslan? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Prebaci grafikon apps/frappe/frappe/desk/form/save.py,Did not cancel,Nije otkazano DocType: Social Login Key,Client Information,Informacije o klijentu +DocType: Energy Point Rule,Apply this rule only once per document,Primijenite ovo pravilo samo jednom po dokumentu DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Samo za čitanje ovisi apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Prijavljen kao gost ili administratora DocType: Email Account,UNSEEN,neviđen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Upravitelj datoteka @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Razlog 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Nema aktivnosti +DocType: Server Script,Script Manager,Upravitelj skripti +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nema aktivnosti apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacije treće strane apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nema događaja danas apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ne možete sebi dati ocjene apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mora biti podesiv za odabrani Doc događaj DocType: Workflow State,circle-arrow-up,krug sa strelicom prema gore @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nije dopušteno za {0}: {1}. Polje s ograničenjem: {2} 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,You are not allowed to delete a standard Website Theme,Nemate ovlasti za brisanje standardne teme web stranice +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Izradite svoj prvi {0} DocType: Data Import,Log Details,Pojedinosti dnevnika DocType: Workflow Transition,Example,Primjer DocType: Webhook Header,Webhook Header,Webhook Header @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Pozadina za chat apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Označi kao pročitano apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ažuriranje {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Već postoji brodski dijapozitiv {0} s istim redoslijedom dijapozitiva apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Onemogući Prijavite DocType: Translation,Contributed Translation Doctype Name,Naziv doprinosa prijevoda +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavljanje> Prilagodi obrazac DocType: PayPal Settings,Redirect To,preusmjeriti na DocType: Data Migration Mapping,Pull,Vuci DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript format : frappe.query_reports [ ' REPORTNAME ' ] = { } @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Unutarnja rekord dionica do DocType: Energy Point Settings,Review Levels,Razine pregleda DocType: Workflow State,Comment,Komentiraj DocType: Data Migration Plan,Postprocess Method,Postprocesna metoda +DocType: DocType Action,Action Type,Vrsta radnje apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Uslikaj DocType: Assignment Rule,Round Robin,Razigravanje apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Možete promijeniti potvrđene dokumente tako što ih otkažete, a zatim ih izmjenite i spremite." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Spremi kao DocType: Comment,Seen,Vidio apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Pokaži više detalja +DocType: Server Script,Before Submit,Prije slanja 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,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,Archive,Arhiva @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox pristupni ključ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Pogrešan naziv polja {0} u konfiguraciji prilagođene skripte add_fetch apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Odaberite Google kontakte s kojima kontakt treba sinkronizirati. DocType: Web Page,Main Section (HTML),Glavni odjeljak (HTML) +DocType: Scheduled Job Type,Annual,godišnji DocType: Workflow State,headphones,slušalice apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Lozinka je potrebna ili odaberite Očekujem lozinku DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,npr replies@yourcomany.com. Svi odgovori će doći na ovu inbox. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Određuje redoslijed slajda u čarobnjaku. Ako klizač ne želi biti prikazan, prioritet treba postaviti na 0." DocType: Data Migration Run,Current Mapping,Trenutna mapiranje apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Valjana email i ime potrebna apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Sve privitke učinite privatnim @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Prijelazna pravila apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Prikazivanje samo prvih {0} redaka u pregledu apps/frappe/frappe/core/doctype/report/report.js,Example:,Primjer: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ograničenja DocType: Workflow,Defines workflow states and rules for a document.,Određuje tijek rada države i pravila za dokument. DocType: Workflow State,Filter,filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Provjerite Dnevnik pogrešaka za više informacija: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Posao apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} odjavljen: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Informacija apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable DocType: Transaction Log,Row Index,Indeks redaka DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Button Pomoć DocType: Kanban Board Column,purple,purpurna boja DocType: About Us Settings,Team Members,Članovi tima +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Izvoditi će zakazane zadatke samo jednom dnevno za neaktivne stranice. Zadano 4 dana ako je postavljeno na 0. DocType: Assignment Rule,System Manager,Sustav Manager +DocType: Scheduled Job Log,Scheduled Job,Zakazani posao DocType: Custom DocPerm,Permissions,Dopuštenja apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks za internu integraciju DocType: Dropbox Settings,Allow Dropbox Access,Dopusti pristup Dropbox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skeni DocType: Email Flag Queue,Email Flag Queue,Email Zastava red čekanja DocType: Access Log,Columns / Fields,Stupci / polja apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stilski listovi za formate ispisa +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Za izradu grafikona nadzorne ploče potrebno je polje Zbirne funkcije apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Ne može se identificirati otvoreni {0}. Pokušajte nešto drugo. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Podaci su dostavljeni apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Korisnik {0} se ne može izbrisati @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Naziv polja DocType: Assignment Rule,Assign To Users,Dodijeli korisnicima apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ili apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Naziv modula ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Nastaviti +DocType: Onboarding Slide,Continue,Nastaviti apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google integracija je onemogućena. DocType: Custom Field,Fieldname,"Podataka, Naziv Polja" DocType: Workflow State,certificate,certifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Provjera ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Zadatak {0} {1} uklonjen je apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Prvi stupac mora biti prazan. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Prikaži sve verzije apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Pogledajte komentar @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Zabraniti IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,kontrolna ploča apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google kalendar - Nije moguće ažurirati događaj {0} u Google kalendaru, kôd pogreške {1}." +DocType: Notification Log,Email Content,Sadržaj e-pošte apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Traži ili upiši naredbu DocType: Activity Log,Timeline Name,Kronologija Ime apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Samo jedan {0} može se postaviti kao primarni. DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Prodaja Master Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Morate omogućiti JavaScript da bi vaša aplikacija radila. DocType: User Permission,For Value,Za vrijednost DocType: Event,Google Calendar ID,ID Google kalendara apps/frappe/frappe/www/complete_signup.html,One Last Step,Jedan Zadnji korak @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Polje LDAP-ovog imena apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: GCalendar Account,Allow GCalendar Access,Dopusti GCalendar pristup apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je obavezno polje +DocType: DocType,Documentation Link,Dokumentacijski link apps/frappe/frappe/templates/includes/login/login.js,Login token required,Potreban je tok za prijavu apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mjesečni poredak: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Odaberite više stavki popisa @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL datoteke DocType: Version,Table HTML,Tablica HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Dodaj Pretplatnici +DocType: Notification Log,Energy Point,Točka energije apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Buduća događanja za danas DocType: Google Calendar,Push to Google Calendar,Pritisnite na Google kalendar DocType: Notification Recipient,Email By Document Field,E-mail dokumentom Field @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Daleko DocType: Currency,Fraction Units,Frakcije Jedinice apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} od {1} {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Označi kao Gotovo DocType: Chat Message,Type,Vrsta DocType: Google Settings,OAuth Client ID,OAuth ID klijenta DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Natrag na stol DocType: Web Form,Amount Based On Field,Iznos koji se temelji na terenskom +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nema praćene verzije. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Korisnik je obvezan za Podijeli DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dopusti nepotpune Obrasci @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Provjerite e-poštu za potvrdu apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Puta ne mogu biti na kraju u obliku DocType: Communication,Bounced,Odskočiti +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,od DocType: Deleted Document,Deleted Name,Izbrisano ime apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Korisnici sustava i web stranice DocType: Workflow Document State,Doc Status,Doc status @@ -521,6 +546,7 @@ DocType: Language,Language Code,Jezični kôd DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Napomena: Prema zadanim se postavkama šalju poruke e-pošte za neuspjelu sigurnosnu kopiju. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Dodaj filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS poslan na sljedećim brojevima: {0} +DocType: Notification Settings,Assignments,zadaci apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Započnite razgovor. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Uvijek dodaj "skica" Na putu za ispis nacrta dokumenata @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Trenutni početak mapiranja apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-adresa je označena kao neželjena pošta DocType: Comment,Website Manager,Web Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Povučen prijenos datoteka odspojen. Molim te pokušaj ponovno. +DocType: Data Import Beta,Show Failed Logs,Prikaži neuspjele zapisnike apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Prijevodi apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Odabrali ste skice ili otkazane dokumente apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} postavljen je na stanje {1} za {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Dokument redu za slanje DocType: GSuite Templates,Destination ID,ID odredišta DocType: Desktop Icon,List,popis DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Niste \ DocType: System Settings,mm/dd/yyyy,mm-dd-yyyy +DocType: Onboarding Slide,Onboarding Slide,Klizač na brodu apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,prijašnji @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,tamno siva apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Uspješna: {0} do {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Pad +DocType: Dashboard Chart,Aggregate Function Based On,Zbirna funkcija na temelju apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Molimo dvostruke to napraviti promjene apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Pritisnite Enter za spremanje apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF generacija nije uspio zbog slomljenih slikovnih linkova @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Dani prije apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dnevni događaji trebali bi završiti istog dana. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Uredi... DocType: Workflow State,volume-down,glasnoće prema dolje +DocType: Onboarding Slide,Help Links,Veze za pomoć apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Nije dopušten pristup s ove IP adrese +DocType: Notification Settings,Enable Email Notifications,Omogući obavijesti putem e-pošte apps/frappe/frappe/desk/reportview.py,No Tags,nema oznaka DocType: Email Account,Send Notification to,Pošalji Obavijest DocType: DocField,Collapsible,Sklopiva @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Zadnja sigurnosna kopija uključena DocType: Customize Form Field,Customize Form Field,Prilagodba polja obrasca DocType: Energy Point Rule,For Document Event,Za Document Event DocType: Website Settings,Chat Room Name,Naziv sobe za chat +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,nepromijenjen DocType: OAuth Client,Grant Type,Vrsta Grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Provjeri koji dokumenti su korisniku čitljivi DocType: Deleted Document,Hub Sync ID,ID sinkronizacije huba @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,kori DocType: Auto Repeat,Quarterly,Tromjesečni apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Cijelo vrijeme apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Nevažeći status dokumenta za {0} DocType: Email Account,Enable Auto Reply,Omogućite Auto Odgovor apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ne vidi @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Poruk DocType: Email Account,Notify if unreplied,Obavijesti ako Neodgovoreno apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skenirajte QR kod i unesite prikazani kôd. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Omogući gradijente +DocType: Scheduled Job Type,Hourly Long,Svakodnevno po satu DocType: System Settings,Minimum Password Score,Minimalna ocjena zaporke DocType: DocType,Fields,Polja DocType: System Settings,Your organization name and address for the email footer.,Ime Vaše organizacije i adresa za e-podnožje. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Nadređena apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup kompletan! apps/frappe/frappe/config/desktop.py,Developer,Programer apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Napravljeno +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Da biste ga omogućili slijedite upute na sljedećoj vezi: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} je u redu {1} Ne možete imati i URL i dijete stavke apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Za sljedeće tablice treba biti najmanje jedan redak: {0} DocType: Print Format,Default Print Language,Zadani jezik ispisa apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predaka apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Korijen {0} se ne može izbrisati +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nema neuspjelih zapisnika apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Još uvijek nema komentara apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Postavite SMS prije postavljanja kao metode provjere autentičnosti putem SMS postavki apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Oba DOCTYPE i ime potrebi @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Proizvodi apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meni DocType: DefaultValue,DefaultValue,Zadana vrijednost DocType: Auto Repeat,Daily,Svakodnevno +DocType: Onboarding Slide,Max Count,Maks apps/frappe/frappe/config/users_and_permissions.py,User Roles,Korisničke uloge DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Nekretnine seter nadjačava standardnu vrstu dokumenta ili imovinu Field apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ne možete ažurirati : Nepravilan / istekla . @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Domaćin DocType: Data Import Beta,Import File,Uvezi datoteku +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Pogreška predloška apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolona {0} već postoji. DocType: ToDo,High,Visok apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Novi događaj @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Prikaži u filtru DocType: Address,Daman and Diu,Daman i Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Osobno +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Neobrađene postavke ispisa ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Pojedinosti potražite u https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Skupno preimenuj DocType: Email Queue,Show as cc,Prikaži kao cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Uzmi video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Uvodni podaci za stranicu Kontaktirajte nas DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,palac dolje +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Otkazivanje dokumenata DocType: User,Send Notifications for Email threads,Pošalji obavijesti za teme e-pošte apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne u načinu rada razvojnog programera @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Sigurnosna DocType: DocField,In Global Search,U Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alineje-lijevo -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije (i) godine apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,To je rizično izbrisati ovu datoteku: {0}. Molimo kontaktirajte svog sustava Manageru. DocType: Currency,Currency Name,Valuta Ime apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,nema e-pošte @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Korisničko polje DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Poništi brisanje apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} već neupisani {1} {2} +DocType: Scheduled Job Type,Stopped,Zaustavljen apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nije uklonjeno apps/frappe/frappe/desk/like.py,Liked,Svidjelo mi se apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Pošalji odmah apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standardni DocType ne može imati zadani format ispisa, koristite Prilagodi obrazac" +DocType: Server Script,Allow Guest,Dopusti gost DocType: Report,Query,Upit DocType: Customize Form,Sort Order,sortiranje apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'U prikazu popisa' nisu dopušteni za tip {0} u redu {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Dva metoda autentifikacije faktora apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprije postavite ime i spremite zapis. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 zapisa +DocType: DocType Link,Link Fieldname,Naziv polja veze apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Zajednička s {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Otkažite pretplatu DocType: View Log,Reference Name,Referenca Ime apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Promijeni korisnika +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Prvi apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ažuriraj Prijevodi DocType: Error Snapshot,Exception,Izuzetak DocType: Email Account,Use IMAP,Koristite IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Pravila definiraju prijelaz stanja u tijek rada. DocType: File,Folder,Mapa DocType: Website Route Meta,Website Route Meta,Web stranica Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Klizno polje na brodu DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Upravitelj apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opcija 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Pos apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfiguracija grafikona DocType: User,Last IP,Posljednja IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Dodajte predmet svojoj e-pošti -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Novi dokument {0} je podijeljen s Vama {1}. DocType: Data Migration Connector,Data Migration Connector,Priključak za migraciju podataka apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vratio se {1} DocType: Email Account,Track Email Status,Praćenje statusa e-pošte @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Zadani odlazni DocType: Workflow State,play,igrati apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Kliknite na link ispod kako bi dovršili registraciju i postaviti novu lozinku apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nije dodano +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} dobio je {1} bodova za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nema računa e-pošte Dodijeljeno DocType: S3 Backup Settings,eu-west-2,eu-zapad-2 DocType: Contact Us Settings,Contact Us Settings,"Postavke ""Kontaktirajte nas""" @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Pretraži DocType: Workflow State,text-width,tekst širine apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Gornja granica Prilog za ovaj rekord postignut. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Traži po nazivu datoteke ili ekstenziji +DocType: Onboarding Slide,Slide Title,Naslov slajda DocType: Notification,View Properties (via Customize Form),Pogledaj Nekretnine (preko Customize obrazac) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknite na datoteku da biste je odabrali. DocType: Note Seen By,Note Seen By,Napomena vide @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Dijeli URL DocType: System Settings,Allow Consecutive Login Attempts ,Dopusti pokušaje uzastopnog prijave apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Došlo je do pogreške tijekom postupka plaćanja. Molimo kontaktirajte nas. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ako je tip slajda kreiran ili je Postavke, u datoteci {ref_doctype} .py koja se mora izvršiti nakon slajda mora postojati metoda 'create_onboarding_docs'." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Prije {0} dana DocType: Email Account,Awaiting Password,Očekujem Lozinka DocType: Address,Address Line 1,Adresa - linija 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nisu napušteni DocType: Contact,Company Name,Ime tvrtke DocType: Custom DocPerm,Role,Uloga -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Postavke ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,na vaš preglednik apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Snimač @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Prati ako je primatelj otvorio vašu e-adresu.
Napomena: ako šaljete više primatelja, čak i ako 1 primatelj čita poruku e-pošte, smatra se "Otvoreno"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Nedostaje vrijednosti potrebne apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Omogući pristup Google kontaktima +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ograničen DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Označi kao nepročitano DocType: Activity Log,Operation,Operacija @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Dopusti Ispis DocType: Communication,Clicked,Kliknuo apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Prestani pratiti apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz programa Postavljanje> E-pošta> Račun e-pošte apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planirano za slanje DocType: DocType,Track Seen,Prati Gledano DocType: Dropbox Settings,File Backup,Sigurnosno kopiranje datoteka @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Ne {0} prona apps/frappe/frappe/config/customization.py,Add custom forms.,Dodaj prilagođene oblike. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} u {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,podnosi ovaj dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavljanje> Korisnička dopuštenja apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sustav nudi brojne unaprijed definirane uloge . Možete dodavati nove uloge postaviti finije dozvole. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domene +DocType: Onboarding Slide,Domains,Domene DocType: Blog Category,Blog Category,Kategorije bloga apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Ne mogu mapirati jer sljedeći uvjet ne uspije: DocType: Role Permission for Page and Report,Roles HTML,Uloge HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Subota DocType: User,Represents a User in the system.,Predstavlja korisnika u sustavu. DocType: List View Setting,Disable Auto Refresh,Onemogući automatsko osvježavanje DocType: Comment,Label,Oznaka -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Zadatak {0}, koju dodjeljuje {1}, je zatvoren." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Molimo zatvorite ovaj prozor DocType: Print Format,Print Format Type,Ispis formatu DocType: Newsletter,A Lead with this Email Address should exist,Potencijalni klijent s ovom e-maile adresom bi trebao postojati @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP postavke za odlazn apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izabrati DocType: Data Export,Filter List,Popis filtara DocType: Data Export,Excel,nadmašiti +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Poruka automatskog odgovora DocType: Data Migration Mapping,Condition,Stanje apps/frappe/frappe/utils/data.py,{0} hours ago,prije {0} sata @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Baza znanja Suradnik DocType: Communication,Sent Read Receipt,Poslano potvrdu čitanja DocType: Email Queue,Unsubscribe Method,odjaviti metoda +DocType: Onboarding Slide,Add More Button,Dodajte još gumba DocType: GSuite Templates,Related DocType,Povezani DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Uredi za dodavanje sadržaja apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,odaberite jezici apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detalji o kartici apps/frappe/frappe/__init__.py,No permission for {0},Nema dozvole za {0} DocType: DocType,Advanced,Napredan +DocType: Onboarding Slide,Slide Image Source,Izvor slike dijapozitiva apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referenca: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Gđa @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Korisnik ne može stvoriti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspješno završeno apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Pristup Dropbox je odobren! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Jeste li sigurni da želite spojiti {0} sa {1}? DocType: Customize Form,Enter Form Type,Unesite tip obrasca DocType: Google Drive,Authorize Google Drive Access,Autorizirajte pristup Google disku apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Nedostaje parametar naziva ploče Kanban @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Prilagođeno formati za ispis, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Zbroj {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Ažurirano na novu verziju DocType: Custom Field,Depends On,Ovisi o DocType: Kanban Board Column,Green,Zelena DocType: Custom DocPerm,Additional Permissions,Dodatne dozvole @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,socijalni apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google kalendar - Kalendar nije moguće stvoriti za {0}, kôd pogreške {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Uređivanje Row DocType: Workflow Action Master,Workflow Action Master,Workflow Akcija Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Izbrisati sve DocType: Custom Field,Field Type,Vrsta polja apps/frappe/frappe/utils/data.py,only.,samo. DocType: Route History,Route History,Povijest ruta @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Zaboravili ste lozinku? DocType: System Settings,yyyy-mm-dd,gggg-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,pogreška servera +DocType: Server Script,After Delete,Nakon brisanja apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Pogledajte sva prethodna izvješća. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Prijava ID je potrebno DocType: Website Slideshow,Website Slideshow,Klizač web stranice apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nema podataka DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Poveznica koja je početna stranica web stranice. Standardni linkovi ( indeks, prijava, proizvodi, blog, o nama, kontakt)" +DocType: Server Script,After Submit,Nakon predaje apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Provjera autentičnosti nije uspjela kod primanja emailova sa računa {0}. Poruka od poslužitelja: {1} DocType: User,Banner Image,Slika banera DocType: Custom Field,Custom Field,Prilagođeno polje @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ako korisnik ima bilo kakvu ulogu provjeriti, a zatim korisnik postaje "Korisnik sustava". "Korisnik sustava" ima pristup radnoj površini" DocType: System Settings,Date and Number Format,Datum i oblik brojeva apps/frappe/frappe/model/document.py,one of,Jedan od -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavljanje> Prilagodi obrazac apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Provjera jednom trenutku apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Pokaži oznake DocType: DocField,HTML Editor,HTML uređivač 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavljanje> Korisnik +DocType: DocType,Actions,Akcije DocType: Workflow State,align-justify,Poravnajte-opravdati DocType: User,Middle Name (Optional),Krsno ime (opcionalno) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nije dopuštena @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nema rezult DocType: System Settings,Security,Sigurnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planirano za slanje na {0} primatelja apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Izrezati +DocType: Server Script,After Save,Nakon Spremi apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},preimenovan je iz {0} do {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} od {1} ({2} redaka s djecom) DocType: Currency,**Currency** Master,** Valuta ** osnovna @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Vrijednosti filtriranja DocType: Communication,User Tags,Upute Tags DocType: Data Migration Run,Fail,iznevjeriti DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Posljednje izvršenje DocType: Data Migration Run,Pull Failed,Povuci nije uspjelo apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Prikaži / sakrij kartice DocType: Communication,Feedback Request,Zahtjev povratne informacije apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Uvoz podataka iz CSV / Excel datoteka. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Sljedeća polja su nestali: +DocType: Notification Log,From User,Od korisnika apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Otkazivanje {0} DocType: Web Page,Main Section,Glavno odjeljenje DocType: Page,Icon,ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Savjet: U lozinku uključite simbole, brojeve i velika slova" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurirajte obavijesti za spomene, zadatke, energetske točke i još mnogo toga." DocType: DocField,Allow in Quick Entry,Dopusti u brzom unosu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / gggg @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL teme DocType: Customize Form,Sort Field,Sortiranje polja DocType: Razorpay Settings,Razorpay Settings,Postavke Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Uredi Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Dodaj još DocType: System Settings,Session Expiry Mobile,Sjednica isteka Mobitel apps/frappe/frappe/utils/password.py,Incorrect User or Password,Neispravan korisnik ili lozinka apps/frappe/frappe/templates/includes/search_box.html,Search results for,Rezultati pretrage za @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske točke DocType: Communication,Delayed,Odgođeno apps/frappe/frappe/config/settings.py,List of backups available for download,Popis kopija dostupnih za preuzimanje +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Isprobajte novi uvoz podataka apps/frappe/frappe/www/login.html,Sign up,Prijavite se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Redak {0}: Nije dopušteno onemogućiti Obvezno za standardna polja +DocType: Webhook,Enable Security,Omogući sigurnost apps/frappe/frappe/config/customization.py,Dashboards,Nadzorna ploča DocType: Test Runner,Output,Izlaz DocType: Milestone,Track Field,Trag polje @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Postavljanje entiteta nakon upozo apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj polja obrascima. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu s ovom web stranicom Paypal konfiguracijom. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Dodajte recenziju +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} dodijelio vam je novi zadatak {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Veličina fonta (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Samo se standardni DocTypes mogu prilagoditi iz obrasca Customize. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Izbornička stavka apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Postavite filtre DocType: Contact Us Settings,Email ID,E-mail ID DocType: Energy Point Rule,Multiplier Field,Polje množitelja +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nije moguće stvoriti Razorpay nalog. Molimo kontaktirajte administratora DocType: Dashboard Chart,Time Interval,Vremenski interval DocType: Activity Log,Keep track of all update feeds,Pratite sve feedove ažuriranja +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} podijelio je s vama dokument {1} {2} 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Ključ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Postavljanje dovršeno apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Izvješće svih dionica dokumenata +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Uvozni predložak treba biti u obliku .csv, .xlsx ili .xls" apps/frappe/frappe/www/update-password.html,New Password,Nova zaporka apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} nedostaje apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Žao mi je! Ne možete izbrisati automatski generirane komentare @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Trčanje DocType: Blog Post,Content (HTML),Sadržaj (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Postavljanje za DocType: Personal Data Download Request,User Name,Korisničko ime DocType: Workflow State,minus-sign,minus znak apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nije pronađeno @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Nema {0} ovlasti apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz prilagođene dozvole apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nijedna stavka nije pronađena. DocType: Data Export,Fields Multicheck,Polja Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Dovršeno DocType: Activity Log,Login,Prijava DocType: Web Form,Payments,Plaćanja apps/frappe/frappe/www/qrcode.html,Hi {0},Pozdrav {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integracija Google diska. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} preokrenuo je bodove na {1} {2} DocType: System Settings,Enable Scheduled Jobs,Omogućite rasporedu radnih mjesta apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Zabilješke: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,neaktivan @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Predlo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Pogreška pri dozvoli apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Naziv od {0} ne može biti {1} DocType: User Permission,Applicable For,primjenjivo za +DocType: Dashboard Chart,From Date,Od datuma apps/frappe/frappe/core/doctype/version/version_view.html,Success,Uspješno apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Vrijeme isteklo DocType: Kanban Board Column,Kanban Board Column,Stupac Kanban zajednica @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Usp apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Nije dopušteno u uvjetu DocType: Async Task,Async Task,Asinkronom zadatak DocType: Workflow State,picture,slika -apps/frappe/frappe/www/complete_signup.html,Complete,Kompletna +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Kompletna DocType: DocType,Image Field,Područje slike DocType: Print Format,Custom HTML Help,Custom HTML Pomoć DocType: LDAP Settings,Default Role on Creation,Zadana uloga u stvaranju @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Sljedeća županija DocType: User,Block Modules,Blok Moduli DocType: Print Format,Custom CSS,Prilagođeni CSS +DocType: Energy Point Rule,Apply Only Once,Primjeni samo jednom apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Zanemareni: {0} do {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Zadana Incoming DocType: Workflow State,repeat,ponovi DocType: Website Settings,Banner,Baner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vrijednost mora biti jedna od {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Otkaži sve dokumente 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Idite na {0} Popis apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoć u pretraživanju @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registriran apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatsko ponavljanje ovog dokumenta onemogućeno je. DocType: DocType,Hide Copy,Sakrij Kopija apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Očisti sve uloge +DocType: Server Script,Before Save,Prije spremanja apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} mora biti jedinstvena apps/frappe/frappe/model/base_document.py,Row,Red apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC i e-predložak" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Uspješno uvezeno {0} DocType: User,API Key,API ključ DocType: Email Account,Send unsubscribe message in email,Pošalji odjaviti poruku e-pošte -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Uredi naslov apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Podataka, Naziv Polja koji će biti DOCTYPE za ovaj link području." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumenti dodijeljeni vama i od vas. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,To možete i kopirati i zalijepiti @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Pričvrstite slike DocType: Workflow State,list-alt,popis-alt apps/frappe/frappe/www/update-password.html,Password Updated,Obnovljena zaporka +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavljanje> Dopuštenja korisnika apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Koraci za potvrdu prijave apps/frappe/frappe/utils/password.py,Password not found,Lozinka nije pronađen +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Duljina stranice DocType: Email Queue,Expose Recipients,izložiti primatelja apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Priložena Da je obvezna za dolazne pošte @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sustav DocType: Web Form,Max Attachment Size (in MB),Max veličina privitaka (u MB) apps/frappe/frappe/www/login.html,Have an account? Login,Imate račun? Prijaviti se +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Postavke ispisa ... DocType: Workflow State,arrow-down,strelica prema dolje apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Redak {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite z DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup DocType: Tag Link,Document Title,Naslov dokumenta apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obavezno) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije (i) godine DocType: Social Login Key,Social Login Provider,Davatelj usluge društvenog prijavljivanja apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodaj još jedan komentar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nisu pronađeni podaci u datoteci. Ponovno spojite novu datoteku s podacima. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,rukom prema dolje apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Nije pronađeno polje koje se može upotrijebiti kao Kanbanski stupac. Upotrijebite obrazac Prilagodi za dodavanje prilagođenog polja vrste "Odaberi". DocType: Address,GST State,GST država apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Ne može se postaviti Odustani bez Potvrdi +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Korisnik ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmjeravanje URI dužni da autentifikacijski kôd apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Otvorite pomoć DocType: DocType,Is Submittable,Je Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova nocenja +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nova nocenja apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nisu sinkronizirani novi Google kontakti. DocType: File,Uploaded To Google Drive,Preneseno na Google disk apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Vrijednost za kontrola polja može biti 0 ili 1. @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Crvena DocType: Workflow State,Tag,Privjesak -DocType: Custom Script,Script,Skripta +DocType: Report,Script,Skripta apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument se ne može spremiti. DocType: Energy Point Rule,Maximum Points,Maksimalni bodovi apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje postavke @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} bodovi zahvalnosti za {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Uloge se mogu postaviti za korisnike iz svoje korisničke stranice . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Dodaj komentar +DocType: Dashboard Chart,Select Date Range,Odaberite Raspon datuma DocType: DocField,Mandatory,Obavezno apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul za izvoz +DocType: Scheduled Job Type,Monthly Long,Mjesečno dugo apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Nisu postavljene osnovne ovlasti +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Pošaljite poruku e-pošte {0} da biste je povezali ovdje apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Značenje od Podnijeti, Odustati, Izmijeniti" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Podsjetnik @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Pratite prekretnice DocType: Social Login Key,Identity Details,Pojedinosti identiteta apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Prijelaz stanja tijeka rada nije dopušten s {0} na {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Prikaži nadzornu ploču -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nova poruka DocType: File,Preview HTML,Pregled HTML DocType: Desktop Icon,query-report,query-izvješće DocType: Data Import Beta,Template Warnings,Upozorenja predloška @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Povezan s apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Uređivanje postavki izvješća za automatsku poštu DocType: Chat Room,Message Count,Broj poruka DocType: Workflow State,book,knjiga +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} povezan je sa sljedećim dokumentima: {2} DocType: Communication,Read by Recipient,Pročitajte po primatelju DocType: Website Settings,Landing Page,Odredišna stranica apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Greška u prilagođene skripte apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nema postavljenih ovlasti za ovaj kriterij. DocType: Auto Email Report,Auto Email Report,Automatski email izvještaja +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Dijeljen je novi dokument apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Obriši komentar? DocType: Address Template,This format is used if country specific format is not found,Ovaj format se koristi ako država specifičan format nije pronađena DocType: System Settings,Allow Login using Mobile Number,Dopusti prijavu pomoću broja mobilnog telefona apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ako je omogućeno, korisnici koji se prijavljuju s Ograničene IP adrese neće biti zatraženi za Dva faktorska autora" +DocType: Server Script,After Cancel,Nakon Odustani DocType: Auto Repeat,Get Contacts,Preuzmite kontakte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Postove dokumentirane pod {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskakanje stupca bez naslova @@ -1684,6 +1757,7 @@ DocType: User,Login After,Prijava nakon DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tiskanje DocType: Workflow State,thumbs-up,palac gore +DocType: Notification Log,Mention,Spomenuti DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fontovi apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precizna treba biti između 1 i 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,i apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ovo je izvješće generirano na {0} DocType: Error Snapshot,Frames,Okviri -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Zadatak +DocType: Notification Log,Assignment,Zadatak DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Link slike DocType: Auto Email Report,Report Filters,Izvješće Filteri @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nije moguće ažurirati događaj apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Kôd za potvrdu poslana je na vašu registriranu adresu e-pošte. apps/frappe/frappe/core/doctype/user/user.py,Throttled,gas +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Vaša meta apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtar mora imati 4 vrijednosti (doctype, ime polja, operator, vrijednost): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nije navedeno ime za {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Primijenite pravilo dodjele apps/frappe/frappe/utils/bot.py,show,pokazati apps/frappe/frappe/utils/data.py,Invalid field name {0},Nevažeći naziv polja {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,tekst-visina DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapiranje plana migracije podataka apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Početna Frappé ... DocType: Web Form Field,Max Length,Najveća duljina -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Za {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,Marker karte apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Slanje problem @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Stranica nedostaje ili je apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Recenzije DocType: DocType,Route,put apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay postavke Payment Gateway +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} stekao je {1} bod za {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Dohvatite priložene slike iz dokumenta DocType: Chat Room,Name,Ime DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Otvori link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tvoj jezik DocType: Dashboard Chart,Average,prosječan apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Dodaj Row -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Upit mora biti ODABERI DocType: Auto Repeat,Completed,Dovršen @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Sljedeći tokeni za sinkronizaciju DocType: Energy Point Settings,Energy Point Settings,Postavke energetske točke DocType: Async Task,Succeeded,Nasljednik apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obavezna polja potrebna u {0} +DocType: Onboarding Slide Field,Align,Uskladiti apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset dopuštenja za {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Korisnici i dozvole DocType: S3 Backup Settings,S3 Backup Settings,S3 sigurnosne postavke @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo ime formata ispisa apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kliknite vezu u nastavku kako biste odobrili zahtjev DocType: Workflow State,align-left,Poravnajte-lijevo +DocType: Onboarding Slide,Action Settings,Postavke radnje DocType: User,Defaults,Zadani +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu, koristite> 5, <10 ili = 324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." DocType: Energy Point Log,Revert Of,Povrat od apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Spoji sa postojećim DocType: User,Birth Date,Datum rođenja @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,u DocType: Notification,Value Change,Vrijednost Promjena DocType: Google Contacts,Authorize Google Contacts Access,Autorizirajte pristup Google kontaktima apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazuje se samo numerička polja iz Izvješća +apps/frappe/frappe/utils/data.py,1 week ago,Prije 1 tjedan DocType: Data Import Beta,Import Type,Vrsta uvoza DocType: Access Log,HTML Page,HTML stranicu DocType: Address,Subsidiary,Podružnica @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,S zaglavljem apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nevažeći server odlazne pošte ili port DocType: Custom DocPerm,Write,Pisati -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Samo je administrator ovlašten stvarati upite / izvješća skripte apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ažuriranje DocType: Data Import Beta,Preview,Pregled apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Polje "vrijednost" je obavezno. Navedite vrijednost se ažurira @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Pozovi kao DocType: Data Migration Run,Started,počeo apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Korisnik {0} nema pristup ovom dokumentu DocType: Data Migration Run,End Time,Kraj vremena +DocType: Dashboard Chart,Group By Based On,Grupiranje na temelju apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Odaberite privitke apps/frappe/frappe/model/naming.py, for {0},za {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Provjeriti DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Omogući chat DocType: LDAP Settings,Base Distinguished Name (DN),Baza Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Ostavite ovaj razgovor apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opcije nije postavljen za link polju {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Red / radnik @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Data Migration Run,Current Mapping Action,Aktualna mapiranje DocType: Dashboard Chart Source,Source Name,source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nije povezan račun s e-poštom s korisnikom. Dodajte račun u odjeljku Korisnik> Inbox. DocType: Email Account,Email Sync Option,E-mail Mogućnost sinkronizacije apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Redak br DocType: Async Task,Runtime,Dužina trajanja DocType: Post,Is Pinned,Prikvačena je DocType: Contact Us Settings,Introduction,Uvod +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Trebate pomoć? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Zakačite globalno apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Slijedi DocType: LDAP Settings,LDAP Email Field,LDAP E-mail polje @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Već u us DocType: User Email,Enable Outgoing,Omogući odlazni DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Prilagođeni Tagovi -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljan. Izradite novi račun e-pošte iz programa Setup> Email> račun e-pošte DocType: Comment,Submitted,Potvrđeno DocType: Contact,Pulled from Google Contacts,Preuzeto iz Google kontakata apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Neispravan zahtjev @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Početna / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Dodijeli mi DocType: DocField,Dynamic Link,Dinamička poveznica apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pritisnite tipku Alt za pokretanje dodatnih prečaca na izborniku i bočnoj traci +DocType: Dashboard Chart,To Date,Za datum DocType: List View Setting,List View Setting,Postavka prikaza popisa apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Pokaži nije poslovi -DocType: Event,Details,Detalji +DocType: Scheduled Job Log,Details,Detalji DocType: Property Setter,DocType or Field,DOCTYPE ili polje apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ponovno pratite ovaj dokument apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primarna boja @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-Odbijena DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ako je omogućeno, svi se korisnici mogu prijaviti iz bilo koje IP adrese pomoću Two Factor Auth. To se također može postaviti samo za određene korisnike na Korisničkoj stranici" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Izgleda da ključ ili ključ koji se može objavljivati krivo! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Brza pomoć za postavljanje dopuštenja -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE dodijeliti oznake apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Pokaži Relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-poruka je premještena u otpad DocType: Report,Report Builder,Report Builder @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,upload DocType: User Permission,Advanced Control,Napredna kontrola DocType: System Settings,Date Format,Oblik datuma apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nije objavljeno +apps/frappe/frappe/contacts/doctype/address/address.py,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 novu iz postavki Postavke> Ispis i marke> Predložak adresa. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Akcije za tijek rada ( npr. Odobri , Odustani ) ." DocType: Data Import,Skip rows with errors,Preskoči retke s pogreškama DocType: Workflow State,flag,zastava @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Ispi apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skok u polje DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu DocType: Contact Phone,Is Primary Phone,Je primarni telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošaljite poruku e-pošte na adresu {0} da biste je povezali ovdje. DocType: Auto Email Report,Weekdays,Radnim danom apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Izvodi se {0} zapisi apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Objavi komentar apps/frappe/frappe/config/core.py,Documents,Dokumenti apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Dnevnik aktivnosti DocType: Social Login Key,Custom Base URL,URL prilagođenog baze -DocType: Email Flag Queue,Is Completed,je završena +DocType: Onboarding Slide,Is Completed,je završena apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Dobiti polja apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Uredi profil DocType: Kanban Board Column,Archived,Arhivirano @@ -2110,11 +2189,12 @@ 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 DocType: Social Login Key,Office 365,Ured 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Danas +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Danas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Pošaljite nakon uvoza DocType: Error Log,Log of Scheduler Errors,Zapis grešaka pri planskim radnjama DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Link za pomoć na brodu DocType: OAuth Client,App Client Secret,Aplikacija tajna klijenta apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Slanje apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Roditelj je naziv dokumenta na koji će se podaci dodati. @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,VELIKA SLOVA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Prilagođeni HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Unesite naziv mape -apps/frappe/frappe/contacts/doctype/address/address.py,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 novu iz postavki Postavke> Ispis i marke> Predložak adresa. apps/frappe/frappe/auth.py,Unknown User,Nepoznati korisnik apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Odaberite ulogu DocType: Comment,Deleted,Izbrisano @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Chat token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Stvorite grafikon apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne uvozi -DocType: Web Page,Center,Centar +DocType: Onboarding Slide Field,Center,Centar DocType: Notification,Value To Be Set,Vrijednost koju treba postaviti apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Uredi {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prva razina @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Naziv baze podataka apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Osvježi obrazac DocType: DocField,Select,Odabrati -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Pogledajte cijeli dnevnik +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Pogledajte cijeli dnevnik DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Jednostavan Python Expression, Primjer: status == 'Open' i upišite == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Datoteka nije u prilogu apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Izgubljena veza. Neke značajke možda neće funkcionirati. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML za sekcije zaglavlja. O apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,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,Maximum {0} rows allowed,Maksimalno {0} redaka je dopušteno DocType: Dashboard Chart Link,Chart,Grafikon +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Globalna Odjava apps/frappe/frappe/utils/password_strength.py,This is a very common password.,To je vrlo čest lozinke. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Pogled @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Ime računala DocType: Data Migration Mapping,Condition Detail,Detaljno stanje apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Za valutu {0}, iznos minimalne transakcije trebao bi biti {1}" DocType: DocField,Print Hide,Sakrij ispis +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Korisniku apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Unesite vrijednost DocType: Workflow State,tint,nijansa @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kod za potv apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,"Dodaj u ""Za napraviti""" DocType: Footer Item,Company,Društvo apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Prosjek {0} +DocType: Scheduled Job Log,Scheduled,Planiran DocType: User,Logout from all devices while changing Password,Odjavite se s svih uređaja dok mijenjate zaporku apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Potvrdi Lozinku apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Bilo je grešaka @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Dozvola za korisnike već postoji apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Preslikavanje stupca {0} u polje {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Pogledajte {0} -DocType: User,Hourly,na sat +DocType: Scheduled Job Type,Hourly,na sat apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registracija OAuth klijentska aplikacija DocType: DocField,Fetch If Empty,Dohvati ako je prazno DocType: Data Migration Connector,Authentication Credentials,Potvrde vjerodostojnosti @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},dobiveno od {0} automatskim pravilom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ili {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Svi ste postavljeni! DocType: Workflow State,trash,smeće DocType: System Settings,Older backups will be automatically deleted,Stariji sigurnosne kopije automatski će se izbrisati apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nevažeći ID pristupnog ključa ili ključ za tajni pristup. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Izgubili ste neke energetske bodove DocType: Post,Is Globally Pinned,Globalno je zabodena apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Nedavna aktivnost DocType: Workflow Transition,Conditions,Uvjeti @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Potvrđen DocType: Event,Ends on,Završava DocType: Payment Gateway,Gateway,Prolaz DocType: LDAP Settings,Path to Server Certificate,Put do certifikata poslužitelja +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript je onemogućen u vašem pregledniku apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nema dovoljno dopuštenja za prikazivanje veza apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Naziv adrese je obavezan. DocType: Google Contacts,Push to Google Contacts,Pritisnite "Google kontakti" @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-zapad-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ako je ovo označeno, uvest će se redci s važećim podacima, a nevažeći će se retci baciti u novu datoteku koju ćete kasnije uvesti." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument može uređivati samo korisnik -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Zadatak {0}, koju dodjeljuje {1}, bio je zatvoren {2}." DocType: Print Format,Show Line Breaks after Sections,Prikaži Line Breaks nakon odjeljcima DocType: Communication,Read by Recipient On,Pročitajte po primatelju DocType: Blogger,Short Name,Kratko Ime @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Dodi DocType: Translation,PR sent,PR je poslan DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Pošaljite samo evidencije ažurirane u zadnjih X sati DocType: Communication,Feedback,Povratna veza +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Ažurirano na novu verziju 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Otvori prijevod apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ova je e-pošta autogenerirana DocType: Workflow State,Icon will appear on the button,Ikona će se pojaviti na gumbu @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Stranica n DocType: DocField,Precision,Preciznost DocType: Website Slideshow,Slideshow Items,Slideshow proizvodi apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Pokušajte izbjeći ponovio riječi i znakove +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Obavijesti su onemogućene +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Jeste li sigurni da želite izbrisati sve retke? DocType: Workflow Action,Workflow State,Stanje hodograma apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Redovi Dodana apps/frappe/frappe/www/list.py,My Account,Moj Račun @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dani poslije apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ veza s ladicama je aktivna! DocType: Contact Us Settings,Settings for Contact Us Page,Postavke za stranicu Kontaktirajte nas +DocType: Server Script,Script Type,Skripta Tip DocType: Print Settings,Enable Print Server,Omogući poslužitelj ispisa apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,prije {0} tjedana DocType: Email Account,Footer,Footer @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Upozorenje apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,To se može otisnuti na više stranica DocType: Data Migration Run,Percent Complete,Postotak dovršen -DocType: Tag Category,Tag Category,oznaka kategorije -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu, koristite> 5, <10 ili = 324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." DocType: Google Calendar,Pull from Google Calendar,Povucite iz Google kalendara apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Pomoć DocType: User,Login Before,Prijava prije @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sakrij vikende apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatski generira ponavljajuće dokumente. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-znak apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vrijednost za {0} ne može biti popis DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi ova valuta morala biti formatirana? Ako nije postavljeno, koristit će zadane postavke sustava" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pošaljite {0} dokumente? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pogreška prilikom povezivanja s aplikacijom QZ Tray ...

Za upotrebu značajke Raw Print morate imati instaliran i pokrenut program QZ Tray.

Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
Kliknite ovdje kako biste saznali više o sirovom ispisu ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapiranje pisača apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Molimo spremite prije postavljanja. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Želite li otkazati sve povezane dokumente? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Ovlasti uloge DocType: Help Article,Intermediate,srednji +apps/frappe/frappe/config/settings.py,Email / Notifications,E-pošta / obavijesti apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} promijenio je {1} u {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Otkazani dokument obnovljen je kao Nacrt DocType: Data Migration Run,Start Time,Vrijeme početka @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Mo apps/frappe/frappe/email/smtp.py,Invalid recipient address,Pogrešna adresa primatelja DocType: Workflow State,step-forward,korak naprijed DocType: System Settings,Allow Login After Fail,Dopusti prijava nakon neuspjeha +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Postavite uloga DocType: GCalendar Account,The name that will appear in Google Calendar,Naziv koji će se pojaviti u Google kalendaru apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Izravna soba s {0} već postoji. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Stvaranje DocType: Contact,Google Contacts,Google kontakti DocType: GCalendar Account,GCalendar Account,GCalendar račun DocType: Email Rule,Is Spam,Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Posljednji apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Prijavi {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otvori {0} DocType: Data Import Beta,Import Warnings,Uvozna upozorenja @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok-prijava apps/frappe/frappe/config/settings.py,Deleted Documents,Izbrisani dokumenti apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Format CSV razlikuje velika i mala slova apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona radne površine već postoji +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Navedite u kojim sve domenama trebaju biti prikazani dijapozitivi. Ako ništa nije navedeno, dijapozitiv se prema zadanim postavkama prikazuje u svim domenama." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Polje {1} u redu {2} ne može se sakriti i obavezno bez zadanih postavki DocType: Newsletter,Create and Send Newsletters,Kreiraj i pošalji bilten @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID događaja Google kalendara apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Nadređen"" označava nadređenu tablicu u koju se ovaj redak mora dodati." apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Pregled bodova: +DocType: Scheduled Job Log,Scheduled Job Log,Zakazani dnevnik poslova +DocType: Server Script,Before Delete,Prije brisanja apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Zajednička S apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Priložite datoteke / urlove i dodajte ih u tablicu. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Poruka nije postavljena @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Postavke za O nama stranice apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Postavke prolaza za prijenos stripe apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Ispis poslan na pisač! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energetske bodove +DocType: Notification Settings,Energy Points,Energetske bodove +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Vrijeme {0} mora biti u formatu: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generirajte tipke apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,To će trajno ukloniti vaše podatke. DocType: DocType,View Settings,Postavke prikaza +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nova obavijest DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktura zahtjeva +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Nedostaje metoda kontrolera get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Čeka se potvrda DocType: Website Meta Tag,Website Meta Tag,Meta oznaka web mjesta DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ako nije standardni priključak (npr. 587). Ako ste na Google Cloudu, pokušajte s priključkom 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Brisanje datuma završetka, budući da nije moguće u prošlosti za objavljene stranice." DocType: User,Send Me A Copy of Outgoing Emails,Pošalji mi kopiju odlaznih e-pošte -DocType: System Settings,Scheduler Last Event,Raspored Posljednja događanja DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Dodaj Google Analytics ID: npr.. UA-89XXX57-1. Molimo potražiti pomoć na Google Analytics za više informacija. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Lozinka ne može biti duži od 100 znakova DocType: OAuth Client,App Client ID,Aplikacija Client ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Potrebna je n apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} podijelio ovaj dokument sa {1} DocType: Website Settings,Brand Image,Slika marke DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Predložak uvoza treba sadržavati zaglavlje i najmanje jedan redak. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google kalendar je konfiguriran. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Postavke gornje navigacijske trake, podnožja i loga." DocType: Web Form Field,Max Value,Max vrijednost @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Korisnička društvena prijava apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritizirao je vaš rad na {1} s točkom {2} DocType: Contact,All,Sve DocType: Email Queue,Recipient,Primalac +DocType: Webhook,Webhook Security,Sigurnost webhooka DocType: Communication,Has Attachment,Sadrži prilog DocType: Address,Sales User,Prodaja Korisnik apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,"""Povucite i ispustite"" alat za izgradnju i prilagodbu ispisa formata." @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Polje ID migracije DocType: Dashboard Chart,Last Synced On,Zadnja sinkronizacija DocType: Comment,Comment Type,Tip komentar DocType: OAuth Client,OAuth Client,OAuth klijenta -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritizirao je vaš rad na {1} {2} DocType: Assignment Rule,Users,Korisnici DocType: Address,Odisha,Orissa DocType: Report,Report Type,Prijavi Vid @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Slajd proizvoda na web st apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Samoprocjena nije dopuštena DocType: GSuite Templates,Template ID,ID predloška apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombinacija Vrsta potpore ( {0} ) i vrsta odgovora ( {1} ) nije dopuštena -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nova poruka od {0} DocType: Portal Settings,Default Role at Time of Signup,Zadana uloga u vrijeme za prijavu za DocType: DocType,Title Case,Naslov slučaja apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Kliknite na donju vezu radi preuzimanja svojih podataka apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Omogućeno pristigl. E-pošte za korisnika {0} DocType: Data Migration Run,Data Migration Run,Trčanje migracija podataka DocType: Blog Post,Email Sent,E-mail poslan -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,starije DocType: DocField,Ignore XSS Filter,Zanemari XSS filtar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,uklonjena apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Postavke Dropbox rezervne @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,Čekanju DocType: Braintree Settings,Use Sandbox,Sandbox apps/frappe/frappe/utils/goal.py,This month,Ovaj mjesec apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novi Prilagođeni ispis formata +DocType: Server Script,Before Save (Submitted Document),Prije spremanja (poslani dokument) DocType: Custom DocPerm,Create,Stvoriti apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nema više za prikaz apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Idi na prethodni zapis @@ -2784,6 +2879,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Baci u smeće DocType: Web Form,Web Form Fields,Polja web obrasca DocType: Data Import,Amended From,Izmijenjena Od +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Dodajte video vezu za pomoć samo u slučaju da korisnik nema pojma o tome što treba popuniti. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Upozorenje: Nije moguće pronaći {0} u bilo kojoj tablici se odnose na {1} DocType: S3 Backup Settings,eu-north-1,eu-sjever-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ovaj dokument je trenutno čeka na izvršenje. Molim te pokušaj ponovno @@ -2805,6 +2901,7 @@ DocType: Blog Post,Blog Post,Blog članak DocType: Access Log,Export From,Izvoz iz apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Napredna pretraga apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nemate dopuštenje za pregled newslettera. +DocType: Dashboard Chart,Group By,Grupa Do DocType: User,Interests,interesi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Upute poništenja zaporke su poslane na e-mail DocType: Energy Point Rule,Allot Points To Assigned Users,Dodijelite bodove dodijeljenim korisnicima @@ -2820,6 +2917,7 @@ DocType: Assignment Rule,Assignment Rule,Pravilo dodjele apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Predložena Korisničko ime: {0} DocType: Assignment Rule Day,Day,Dan apps/frappe/frappe/public/js/frappe/desk.js,Modules,Moduli +DocType: DocField,Mandatory Depends On,Obvezno ovisi o apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Uspjeh plaćanja apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ne {0} mail DocType: OAuth Bearer Token,Revoked,Poništen @@ -2827,6 +2925,7 @@ DocType: Web Page,Sidebar and Comments,Bočna i komentari apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nije dopušteno priložiti dokument {0}, molimo omogućite Allow Print For {0} u Print Settings" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljan. Izradite novi račun e-pošte iz programa Setup> Email> račun e-pošte apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Pogledajte dokument na adresi {0} DocType: Stripe Settings,Publishable Key,Ključ koji se može objaviti apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Započni uvoz @@ -2840,13 +2939,13 @@ DocType: Currency,Fraction,Frakcija apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Događaj je sinkroniziran s Google kalendarom. DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Polje DocType: Contact,Middle Name,Srednje ime +DocType: DocField,Property Depends On,Vlasništvo ovisi o DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ne postavljajte ime preko Prompt-a apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-pošta apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ažuriranje {0} od {1}, {2}" DocType: Auto Email Report,Filters Display,filteri za prikaz apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Za dopunu mora biti prisutno polje "izmijenjeno_ i od". -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} cijenio je vaš rad na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Spremite filtre DocType: Address,Plant,Biljka apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori svima @@ -2887,11 +2986,11 @@ DocType: Workflow State,folder-close,mapa-blizu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Izvješće: DocType: Print Settings,Print taxes with zero amount,Ispis poreza s nula iznosa apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ne smije biti preimenovan +DocType: Server Script,Before Insert,Prije umetanja DocType: Custom Script,Custom Script,Prilagođena skripta DocType: Address,Address Line 2,Adresa - linija 2 DocType: Address,Reference,Upućivanje apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Dodijeljeno -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz programa Postavljanje> E-pošta> Račun e-pošte DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Pojedinosti o mapiranju migracija podataka DocType: Data Import,Action,Akcija DocType: GSuite Settings,Script URL,URL skripte @@ -2917,11 +3016,13 @@ DocType: User,Api Access,Pristup Api DocType: DocField,In List View,U prikazu popisa DocType: Email Account,Use TLS,Koristi TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Netočno korisničko ime ili zaporka +DocType: Scheduled Job Type,Weekly Long,Tjedno tjedno apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Preuzmite predložak apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj prilagođeni JavaScript za obrasce. ,Role Permissions Manager,Upravitelj ovlastima uloga apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ime novog ispisnog oblika apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Prebacivanje bočne trake +DocType: Server Script,After Save (Submitted Document),Nakon spremanja (poslani dokument) DocType: Data Migration Run,Pull Insert,Povucite umetak DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Maksimalan broj bodova dopušten nakon množenja bodova s vrijednošću množitelja (Napomena: Ako nema ograničenja, ovo polje ne ostavljajte prazno ili postavite 0)" @@ -2941,6 +3042,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nije instaliran apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Preuzmite podatke apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},promijenjene vrijednosti za {0} {1} +DocType: Server Script,Before Cancel,Prije odustajanja DocType: Workflow State,hand-right,ruka-desna DocType: Website Settings,Subdomain,Poddomena DocType: S3 Backup Settings,Region,Regija @@ -2986,12 +3088,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Stara zaporka DocType: S3 Backup Settings,us-east-1,nas-istok-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postovi po {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Za formatiranje stupaca, daju natpise stupaca u upitu." +DocType: Onboarding Slide,Slide Fields,Klizna polja DocType: Has Domain,Has Domain,Ima domene DocType: User,Allowed In Mentions,Dopušteno u spominjanjima apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nemate korisnički račun? Prijavite se apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Polje ID nije moguće ukloniti apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Pretplaćeni dokumenti apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Korisničke postavke DocType: Report,Reference Report,Referentno izvješće DocType: Activity Log,Link DocType,Link DOCTYPE @@ -3009,6 +3113,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizirajte pristup apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Stranica koju tražite je nestalo. To može biti zato što je premještena ili postoji pogreška pri upisu u vezu. apps/frappe/frappe/www/404.html,Error Code: {0},Kod greške: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za unos stranice, kao običan tekst, samo par redaka. (najviše 140 znakova)" +DocType: Server Script,DocType Event,DocType događaj apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} su obavezna polja DocType: Workflow,Allow Self Approval,Dopusti samoprovjera DocType: Event,Event Category,Kategorija događaja @@ -3025,6 +3130,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje ime apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Uspjeh veze DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Ugrađeni klizač nastavka vrste dijapozitiva već postoji. DocType: DocType,Default Sort Field,Zadano polje sortiranja DocType: File,Is Folder,Je mape DocType: Document Follow,DocType,DOCTYPE @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Vrijedn DocType: Workflow State,arrow-up,strelica prema gore DocType: Dynamic Link,Link Document Type,Vrsta dokumenta veze apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Za {0} tablicu treba biti najmanje jedan redak +DocType: Server Script,Server Script,Skripta poslužitelja apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Da biste konfigurirali automatsko ponavljanje, omogućite "Dopusti automatsko ponavljanje" od {0}." DocType: OAuth Bearer Token,Expires In,istječe +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Koliko puta želite ponoviti skup polja (npr .: ako želite 3 klijenta na dijapozitivu, postavite ovo polje na 3. Samo prvi set polja prikazan je kao obavezan na dijapozitivu)" DocType: DocField,Allow on Submit,Dopusti pri potvrdi DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Iznimka Tip @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,zaglavlja apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Nadolazeći događaji apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Unesite vrijednosti za App pristupni ključ i App tajni ključ +DocType: Email Account,Append Emails to Sent Folder,Dodajte e-poštu poslanoj mapi DocType: Web Form,Accept Payment,prihvaća plaćanje apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Odaberite stavku popisa apps/frappe/frappe/config/core.py,A log of request errors,Zapisnik grešaka zahtjeva @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,pridonijela apps/frappe/frappe/config/customization.py,Form Customization,Prilagodba oblika apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nema aktivnih sesija DocType: Web Form,Route to Success Link,Put do uspjeha veze -DocType: Top Bar Item,Right,Desno +DocType: Onboarding Slide Field,Right,Desno apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nema nadolazećih događaja DocType: User,User Type,Vrsta korisnika DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Molim te pokuša apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL mora početi s "http: //" ili "https: //" apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcija 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,To se ne može poništiti DocType: Workflow State,Edit,Uredi DocType: Website Settings,Chat Operators,Operatori chatova DocType: S3 Backup Settings,ca-central-1,CA-1-središnje @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Zadana za {0} mora biti opcija -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Izvještaj s više od 10 stupaca izgleda bolje u pejzažnom načinu. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nevažeći naziv polja: {0} DocType: Milestone,Milestone,Prekretnica @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Idite na {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-mailovi su prigušeni apps/frappe/frappe/config/integrations.py,Google Services,Google usluge apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Gore -apps/frappe/frappe/utils/data.py,1 weeks ago,Prije 1 tjedan +DocType: Onboarding Slide,Slide Description,Opis dijapozitiva DocType: Communication,Error,Pogreška apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Prvo postavite poruku DocType: Auto Repeat,End Date,Datum završetka @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Grupa Label DocType: Kanban Board,Kanban Board,Kanban zajednica apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti su konfigurirani. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Izvest će se 1 zapis +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun u odjeljku Korisnik> Inbox e-pošte. DocType: DocField,Report Hide,Prijavi Sakrij apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Prikaz stabla nisu dostupni za {0} DocType: DocType,Restrict To Domain,Ograničenje na domenu DocType: Domain,Domain,Domena +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Nevažeći URL datoteke. Molimo kontaktirajte administratora sustava. DocType: Custom Field,Label Help,Oznaka pomoć DocType: Workflow State,star-empty,zvijezda-prazna apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datumi su često lako pogoditi. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,ruka-lijeva DocType: Data Import,If you are updating/overwriting already created records.,Ako ažurirate / prepisati već stvorene zapise. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Je globalna DocType: Email Account,Use SSL,Koristite SSL +DocType: Webhook,HOOK-.####,KUKA-.#### DocType: Workflow State,play-circle,play-krug apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument nije mogao biti ispravno dodijeljen apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Nevažeći izraz "depend_on" @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Posljednje osvježeno apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Za vrstu dokumenta DocType: Workflow State,arrow-right,Strelica desno +DocType: Server Script,API Method,Metoda API DocType: Workflow State,Workflow state represents the current state of a document.,Stanje hodograma predstavlja trenutno stanje dokumenta. DocType: Letter Head,Letter Head Based On,Pismo na temelju apps/frappe/frappe/utils/oauth.py,Token is missing,Token nedostaje @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,ponovo povezani DocType: Print Settings,Compact Item Print,Kompaktni Stavka Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL za preusmjeravanje +DocType: Onboarding Slide Field,Placeholder,Rezerviranog mjesta DocType: SMS Settings,Enter url parameter for receiver nos,Unesite URL parametar za prijemnike br DocType: Chat Profile,Online,Na liniji DocType: Email Account,Always use Account's Name as Sender's Name,Uvijek koristite ime računa kao ime pošiljatelja @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,dom DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Korisnik se može prijaviti pomoću ID e-pošte ili korisničkog imena DocType: Workflow State,question-sign,pitanje-prijava -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je onemogućen apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Polje "ruta" obvezno je za web-prikazi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Umetni stupac prije {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Korisnik iz ovog polja dobit će bodove @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ako Vlasnika DocType: Data Migration Mapping,Push,Gurnuti apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Ovdje baci datoteke DocType: OAuth Authorization Code,Expiration time,vrijeme isteka +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Otvori dokumente DocType: Web Page,Website Sidebar,Bočna Website DocType: Web Form,Show Sidebar,Prikaži Bočna apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Morate biti prijavljeni da biste pristupili {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne pre DocType: Desktop Icon,Page,Stranica apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Ne mogu pronaći {0} {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imena i prezimena po sebi lako pogoditi. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument je preimenovan iz {0} u {1} apps/frappe/frappe/config/website.py,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,Aktovka apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format ispisa apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Uključi / isključi prikaz rešetke apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pređite na sljedeći zapis +DocType: System Settings,Time Format,Vremenski format apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nevažeće vjerodajnice Payment Gateway DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ovo je datoteka predloška generirana samo s redcima koji imaju neku pogrešku. Koristite ovu datoteku za ispravak i uvoz. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Postavi ovlasti vrste dokumenta i njihove uloge @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Odgovoriti apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Članci u Desk (nositelji mjesto) DocType: DocField,Collapsible Depends On,Sklopivi ovisi o DocType: Print Style,Print Style Name,Naziv stila ispisa +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Grupno polje potrebno je za izradu grafikona nadzorne ploče DocType: Print Settings,Allow page break inside tables,Dopusti stranicu puknuti u tablicama DocType: Email Account,SMTP Server,SMTP server DocType: Print Format,Print Format Help,Print Format Pomoć apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Soba za {0} mora imati najmanje jednog korisnika. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Računati +DocType: Dashboard Chart,Group By Type,Grupiranje po vrsti apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Novi komentar na {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovljena {0} od {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ako nadograđujete, odaberite ""Overwrite"" drugi postojeći redovi neće biti izbrisan." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Korisnič DocType: Web Form,Web Form,Web obrazac apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} mora biti u formatu: {1} DocType: About Us Settings,Org History Heading,Org Povijest Heading +DocType: Scheduled Job Type,Scheduled Job Type,Planirana vrsta posla DocType: Print Settings,Allow Print for Cancelled,Dopusti Ispis za Otkazan DocType: Communication,Integrations can use this field to set email delivery status,Integracije mogu koristiti ovo područje za postavljanje statusa isporuke e-mail +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nemate dopuštenja za otkazivanje svih povezanih dokumenata. DocType: Web Form,Web Page Link Text,Web stranica Link Text DocType: Page,System Page,Sustavna stranica apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Postavite zadani format, veličina stranice, print stil itd." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Prilagodbe za {0} izvoze se na:
{1} DocType: Website Settings,Include Search in Top Bar,Uključi Tražiti u gornjoj traci +DocType: Scheduled Job Type,Daily Long,Svakodnevno DocType: GSuite Settings,Allow GSuite access,Dopusti GSuite pristup DocType: DocType,DESC,DESC DocType: DocType,Naming,Imenovanje @@ -3486,6 +3607,7 @@ DocType: Notification,Send days before or after the reference date,Pošalji dana DocType: User,Allow user to login only after this hour (0-24),Dopustite korisniku da se prijavi tek nakon ovoliko sati (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Dodijelite jednu po jednu, redom" DocType: Integration Request,Subscription Notification,Obavijest o pretplati +DocType: Customize Form Field, Allow in Quick Entry ,Omogući u brzom ulasku apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ili priložite a DocType: Auto Repeat,Start Date,Datum početka apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Vrijednost @@ -3500,6 +3622,7 @@ DocType: Google Drive,Backup Folder ID,ID sigurnosne kopije mape apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne u načinu rada razvojnog! Postavite u site_config.json ili napraviti 'Custom' DOCTYPE. DocType: Workflow State,globe,globus DocType: System Settings,dd.mm.yyyy,dd.mm.gggg +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioritet DocType: Email Queue,Unsubscribe Param,Otkažite pretplatu Param DocType: DocType,Hide Sidebar and Menu,Sakrij bočnu traku i izbornik @@ -3511,6 +3634,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Dopustite uvoz (putem podat apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Plutati DocType: Print Settings,Page Settings,Postavke stranice +DocType: Notification Settings,Notification Settings,Postavke obavijesti apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Spremanje ... apps/frappe/frappe/www/update-password.html,Invalid Password,Netočna zaporka apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} zapis uvezen od {1}. @@ -3526,6 +3650,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Slika glave pisma DocType: Address,Party GSTIN,Stranka GSTIN +DocType: Scheduled Job Type,Cron Format,Format krona apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Prijavite DocType: SMS Settings,Use POST,Koristite POST DocType: Communication,SMS,SMS @@ -3570,18 +3695,20 @@ DocType: Workflow,Allow approval for creator of the document,Dopustite odobrenje apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Spremi izvješće DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Akcija poslužitelja apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} putem IP adresa {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Roditeljsko polje mora biti valjano ime polja apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Nije uspjelo prilikom izmjene pretplate DocType: LDAP Settings,LDAP Group Field,LDAP grupno polje +DocType: Notification Subscribed Document,Notification Subscribed Document,Obavijest Pretplaćeni dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,jednakima apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Neispravan format CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pogreška prilikom povezivanja s aplikacijom QZ Tray ...

Za upotrebu značajke Raw Print morate imati instaliran i pokrenut program QZ Tray.

Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
Kliknite ovdje kako biste saznali više o sirovom ispisu ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Postavite broj sigurnosnih kopija DocType: DocField,Do not allow user to change after set the first time,Ne dopustiti korisniku izmjene nakon što je upisao prvi put apps/frappe/frappe/utils/data.py,1 year ago,prije 1 godinu +DocType: DocType,Links Section,Odjeljak za veze apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Pogledajte Dnevnik svih događaja ispisa, preuzimanja i izvoza" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mjesec DocType: Contact,Contact,Kontakt @@ -3608,16 +3735,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nova E-mail DocType: Custom DocPerm,Export,Izvoz apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Za upotrebu Google kalendara omogućite {0}. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Također se dodaje polje ovisnosti o statusu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Uspješno ažurirano {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ ladica nije uspjela: DocType: Dropbox Settings,Dropbox Settings,Postavke Dropbox DocType: About Us Settings,More content for the bottom of the page.,Više sadržaja za dnu stranice. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ovaj je dokument vraćen apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Rezervna kopija Google diska uspješna. +DocType: Webhook,Naming Series,Imenovanje serije DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE na koje se primjenjuje ovaj radni proces. DocType: User,Enabled,Omogućeno apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Nije uspjelo dovršiti postavljanje apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Novo {0}: {1} -DocType: Tag Category,Category Name,Naziv kategorije +DocType: Blog Category,Category Name,Naziv kategorije apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Roditelj je potreban za dobivanje podataka dječje tablice apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Uvoz Pretplatnici DocType: Print Settings,PDF Settings,PDF postavke @@ -3653,6 +3783,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendar apps/frappe/frappe/client.py,No document found for given filters,Nije pronađen nijedan dokument za određene filtre apps/frappe/frappe/config/website.py,A user who posts blogs.,Korisnik koji objavljuje blogove. +DocType: DocType Action,DocType Action,Akcija DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Druga {0} s imenom {1} postoji , odaberite drugi naziv" DocType: DocType,Custom?,Prilagođeno? DocType: Website Settings,Website Theme Image,Web Tema sliku @@ -3662,6 +3793,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nije mogu apps/frappe/frappe/config/integrations.py,Backup,rezerva apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Vrsta dokumenta potrebna je za izradu grafikona nadzorne ploče DocType: DocField,Read Only,Read Only +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Ne mogu stvoriti razorpay nalog apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Novi bilten DocType: Energy Point Log,Energy Point Log,Evidencija energetske točke DocType: Print Settings,Send Print as PDF,Pošalji Print as PDF @@ -3687,16 +3819,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot apps/frappe/frappe/www/login.html,Or login with,Ili se prijavite sa DocType: Error Snapshot,Locals,Mještani apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Dostaviti putem {0} na {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} spomenula vas je u komentaru u {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Odaberi grupu po ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} je potrebno DocType: Integration Request,Integration Type,Vrsta integracije DocType: Newsletter,Send Attachements,Pošalji attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nije pronađen nijedan filtar apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracija Google kontakata. DocType: Transaction Log,Transaction Log,Zapis transakcije apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistika na temelju rezultata prošlog mjeseca (od {0} do {1}) DocType: Contact Us Settings,City,Grad +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Sakrij kartice za sve korisnike apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Omogući Dopusti automatsko ponavljanje dokumenata {0} u prilagodbi obrasca DocType: DocField,Perm Level,Razina ovlasti apps/frappe/frappe/www/confirm_workflow_action.html,View document,Prikaz dokumenta @@ -3707,6 +3840,7 @@ DocType: Blog Category,Blogger,Bloger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Ako je omogućeno, promjene dokumenta prate se i prikazuju u vremenskoj traci" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"U globalnom pretraživanju" nije dopušteno za vrstu {0} u retku {1} DocType: Energy Point Log,Appreciation,Zahvalnost +DocType: Dashboard Chart,Number of Groups,Broj grupa apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Pogledajte popis DocType: Workflow,Don't Override Status,Ne Brisanje statusa apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Pojam za pretraživanje @@ -3748,7 +3882,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-1-sjeverozapad DocType: Dropbox Settings,Limit Number of DB Backups,Ograničite broj DB sigurnosnih kopija DocType: Custom DocPerm,Level,Razina -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Zadnjih 30 dana DocType: Custom DocPerm,Report,Prijavi apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Iznos mora biti veći od 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Spojeni na QZ ladicu! @@ -3765,6 +3898,7 @@ DocType: S3 Backup Settings,us-west-2,nas-zapad-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Odaberite Dječja tablica apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Okidač primarne akcije apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Promjena +DocType: Social Login Key,User ID Property,Svojstvo User ID-a DocType: Email Domain,domain name,naziv domene DocType: Contact Email,Contact Email,Kontakt email DocType: Kanban Board Column,Order,Narudžba @@ -3787,7 +3921,7 @@ DocType: Contact,Last Name,Prezime DocType: Event,Private,Privatan apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Lijevo DocType: Event,All Day,Svaki dan apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Izgleda da nešto nije u redu sa ove stranice konfiguraciji Payment Gateway. Ne isplata izvršena. DocType: GCalendar Settings,State,Županija @@ -3819,7 +3953,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Postavke pristupnika apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Tekst u vrsti dokumenta -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Pokreni testove apps/frappe/frappe/handler.py,Logged Out,Odjavljen apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Više... DocType: System Settings,User can login using Email id or Mobile number,Korisnik se može prijaviti pomoću ID e-pošte ili broja mobitela @@ -3835,6 +3968,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sažetak DocType: Event,Event Participants,Sudionici događaja DocType: Auto Repeat,Frequency,Frekvencija +DocType: Onboarding Slide,Slide Order,Redoslijed slajdova DocType: Custom Field,Insert After,Umetni Nakon DocType: Event,Sync with Google Calendar,Sinkronizirajte s Google kalendarom DocType: Access Log,Report Name,Naziv izvješća @@ -3862,6 +3996,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksimalna širina za vrstu valute je 100px u redku {0} apps/frappe/frappe/config/website.py,Content web page.,Sadržaj web stranice. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj novu ulogu +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Posjetite web stranicu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova dodjela DocType: Google Contacts,Last Sync On,Posljednja sinkronizacija uključena DocType: Deleted Document,Deleted Document,Obrisane dokumenta apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Nešto je pošlo po zlu @@ -3872,7 +4008,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,pejzaž apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Strani klijenta skripti proširenja u Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Zapisnici za sljedeće vrste doktora bit će filtrirani -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planer neaktivan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planer neaktivan DocType: Blog Settings,Blog Introduction,Blog uvod DocType: Global Search Settings,Search Priorities,Prioriteti pretraživanja DocType: Address,Office,Ured @@ -3882,12 +4018,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Veza veze grafikona na nadzor DocType: User,Email Settings,Postavke e-pošte apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Spusti se ovdje DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ako je omogućeno, korisnik se može prijaviti s bilo koje IP adrese koristeći Two Factor Auth, a to se može postaviti i za sve korisnike u System Settings" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Postavke pisača ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Unesite svoju zaporku za nastavak apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mi apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nijevaljana država apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Primijeni na sve vrste dokumenata -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ažuriranje energetske točke +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Ažuriranje energetske točke +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Radite samo svakodnevno ako je neaktivan (dani) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}” DocType: Chat Message,Room Type,Vrsta sobe DocType: Data Import Beta,Import Log Preview,Uvezi pregled pregleda @@ -3896,6 +4032,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-krug DocType: LDAP Settings,LDAP User Creation and Mapping,Stvaranje i mapiranje LDAP korisnika apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Današnji događaji apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Žao nam je! Korisnik treba imati potpuni pristup vlastitom rekord. ,Usage Info,Korištenje Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Pokaži prečace na tipkovnici @@ -3912,6 +4049,7 @@ DocType: DocField,Unique,Jedinstvena apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} cijenjen je na {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Djelomičan uspjeh DocType: Email Account,Service,usluga +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavljanje> Korisnik DocType: File,File Name,Naziv datoteke apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3925,6 +4063,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Kompleta DocType: GCalendar Settings,Enable,omogućiti DocType: Google Maps Settings,Home Address,Kućna adresa apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Možete učitati samo do 5000 zapisa po upisu. (može biti manje u nekim slučajevima) +DocType: Report,"output in the form of `data = [columns, result]`","izlaz u obliku `podaci = [stupci, rezultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Primjenjive vrste dokumenata apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Postavljanje pravila za zadatke korisnika. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedovoljna dozvola za {0} @@ -3940,7 +4079,6 @@ DocType: Communication,To and CC,Da i CC DocType: SMS Settings,Static Parameters,Statički parametri DocType: Chat Message,Room,Soba apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ažurira se {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Posao u pozadini se ne izvodi. Molimo kontaktirajte administratora DocType: Portal Settings,Custom Menu Items,Stavke menija apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Sve slike pridodane prezentaciji web stranice trebaju biti javne DocType: Workflow State,chevron-right,Chevron-desno @@ -3955,11 +4093,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Odabrane su vrijednosti {0} DocType: DocType,Allow Auto Repeat,Dopusti automatsko ponavljanje apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nema vrijednosti za prikazivanje +DocType: DocType,URL for documentation or help,URL za dokumentaciju ili pomoć DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Predložak e-pošte apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} zapis je uspješno ažuriran. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Korisnik {0} nema pristup dokumentu putem dozvole uloge za dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Potrebni su i korisničko ime i lozinka +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Let \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvježi stranicu kako bi dobio najnoviji dokument. DocType: User,Security Settings,Sigurnosne postavke apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Dodaj stupac @@ -3969,6 +4109,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Metu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Priložite se {0}: {1} DocType: Web Page,Set Meta Tags,Postavljanje metaoznaka +DocType: Email Account,Use SSL for Outgoing,Upotrijebite SSL za odlazne 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: S3 Backup Settings,Backup Limit,Ograničenje sigurnosne kopije DocType: Dashboard Chart,Line,Crta @@ -4001,4 +4142,3 @@ DocType: DocField,Ignore User Permissions,Ignorirajte korisnička dopuštenja apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Spremljeno uspješno apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Zamolite administratora da potvrdite svoju registraciju DocType: Domain Settings,Active Domains,Aktivne domene -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Prikaži Prijava diff --git a/frappe/translations/hu.csv b/frappe/translations/hu.csv index 78c78e5ec8..918470e3a9 100644 --- a/frappe/translations/hu.csv +++ b/frappe/translations/hu.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Kérjük, válasszon ki egy Összeg mezőt." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Import fájl betöltése ... DocType: Assignment Rule,Last User,Utolsó felhasználó -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Egy új feladat, {0}, már hozzádrendelt általa {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,A munkamenet alapértelmezett értékei mentve apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Fájl újratöltése DocType: Email Queue,Email Queue records.,E-mail bejegyzések várólista. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{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/public/js/frappe/views/file/file_view.js,Import Zip,Zip importálás +DocType: Scheduled Job Type,Create Log,Napló létrehozása apps/frappe/frappe/model/base_document.py,Value too big,Túl nagy érték DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Script teszt futtatás @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Havi DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Engedélyezze mint beérkező apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Veszély -DocType: Address,Email Address,Email cím +apps/frappe/frappe/www/login.py,Email Address,Email cím DocType: Workflow State,th-large,TH-nagy DocType: Communication,Unread Notification Sent,Olvasatlan küldött értesítés apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export nem engedélyezett. A {0} beosztás szükséges az exporthoz. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,Ez Közzététel mező DocType: GCalendar Settings,GCalendar Settings,GNaptár beállítások DocType: Email Group,Email Group,E-mail csoport +apps/frappe/frappe/__init__.py,Only for {},Csak {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Naptár - A (z) {0} esemény nem törölhető a Google Naptárból, hibakód: {1}." DocType: Event,Pulled from Google Calendar,Húzza a Google Naptárból DocType: Note,Seen By,Látta apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Többszörös hozzáadás -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Ön szerzett néhány energiapontot apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nem érvényes felhasználói kép. DocType: Energy Point Log,Reverted,visszaállítva DocType: Success Action,First Success Message,Első sikeres üzenet @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nem mint apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Helytelen érték: {0} ez kell {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Mezőtulajdonságok megváltoztatása (eltüntet, csak olvasható, engedélyt stb)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Méltányol +DocType: Notification Settings,Document Share,Dokumentum megosztása DocType: Workflow State,lock,zár apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Beállítások Kapcsolat Oldalhoz. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Rendszergazda bejelentkezve @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ha engedélyezve van, akkor a dokumentumot látottként jelöli meg, amikor a felhasználó először nyitja meg" DocType: Auto Repeat,Repeat on Day,Ismételje meg a napot DocType: DocField,Color,Szín +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Összes megjelölése olvasottként DocType: Data Migration Run,Log,Napló DocType: Workflow State,indent-right,behúzás-jobbra DocType: Has Role,Has Role,Rendelkezik szereppel @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,A Traceback megjelenítése DocType: DocType,Default Print Format,Alapértelmezett nyomtatási formátum DocType: Workflow State,Tags,Címkék +DocType: Onboarding Slide,Slide Type,Dia típusa apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nincs: Munkafolyamat vége apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} mező nem beállítható egyedülállónak ebben {1}, mert már van néhány nem egyedi érték" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentum típusok @@ -135,7 +138,6 @@ DocType: Language,Guest,Vendég DocType: DocType,Title Field,Cím mező DocType: Error Log,Error Log,Hiba napló apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,érvénytelen URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Az elmúlt 7 nap apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Megismétli, mint a "abcabcabc" csak kicsit nehezebb kitalálni, mint az "abc"" DocType: Notification,Channel,Csatorna apps/frappe/frappe/templates/emails/administrator_logged_in.html,"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." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Ügyfél apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Válasszon oszlopot apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Ez az űrlap módosult, miután betöltötte" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Értesítési napló 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Nyissa meg az Awesomebar alkalmazást apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Úgy tűnik, hogy probléma van a kiszolgáló sávszélesség konfigurációjával. Hiba esetén az összeg visszafizetésre kerül a számlájára." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Be apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Küldés DocType: Workflow Action Master,Workflow Action Name,Munkafolyamat művelet neve apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,"DocType nem lehet összevonni," -DocType: Web Form Field,Fieldtype,MezőTípus +DocType: Onboarding Slide Field,Fieldtype,MezőTípus apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nem egy zip fájl DocType: Global Search DocType,Global Search DocType,Globális keresés DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Emailt elküldeni? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Diagram kapcsolása apps/frappe/frappe/desk/form/save.py,Did not cancel,Nem szakítja meg DocType: Social Login Key,Client Information,Ügyfél információ +DocType: Energy Point Rule,Apply this rule only once per document,Ezt a szabályt csak egyszer alkalmazza dokumentumonként DocType: Workflow State,plus,plusz +DocType: DocField,Read Only Depends On,Csak az olvasás függ apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Belépve mint Vendég vagy Rendszergazda DocType: Email Account,UNSEEN,OLVASATLAN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Fájlkezelő @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Ok 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Nincs aktivitás +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nincs aktivitás apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Harmadik féltől származó alkalmazások apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nincs esemény ma apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nem adhat át értékelési pontokat magadnak apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,A DocType-nek meg kell felelnie a kiválasztott Doc eseménynek DocType: Workflow State,circle-arrow-up,kör-nyíl-fel @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nem engedélyezett a (z) {0} számára: {1}. Korlátozott mező: {2} 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,You are not allowed to delete a standard Website Theme,Ön nem jogosult törölni egy alapértelmezett weboldal témát +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Hozza létre az első {0} DocType: Data Import,Log Details,Napló részletei DocType: Workflow Transition,Example,Példa DocType: Webhook Header,Webhook Header,Webes hívatkozások fejléce @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Csevegés háttere apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Jelölt olvasottként apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Frissítés: {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,A {0} fedélzeti fedélzeti diák ugyanolyan sorrendben léteznek apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Jelentés elrejtése DocType: Translation,Contributed Translation Doctype Name,Hozzájárult fordítás Doctype név +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Az űrlap testreszabása DocType: PayPal Settings,Redirect To,Átirányítás ide DocType: Data Migration Mapping,Pull,Kihúzni DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['JELENTÉSNÉV'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Belső rekord a dokumentum DocType: Energy Point Settings,Review Levels,Áttekintési szintek DocType: Workflow State,Comment,Megjegyzés DocType: Data Migration Plan,Postprocess Method,Utófeldolgozó metódus +DocType: DocType Action,Action Type,Művelet típusa apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fotót készít DocType: Assignment Rule,Round Robin,Kerek Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Meg változtathatja a dokumentumokat, annak visszavonásával, majd azok módosításával." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Mentés másként DocType: Comment,Seen,Látott apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Továbba részletek megjelenítése +DocType: Server Script,Before Submit,A benyújtás előtt DocType: System Settings,Run scheduled jobs only if checked,"Csak akkor futtassa az ütemezett feladatokat, ha be vannak jelölve" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,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,Archive,Archív @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox belépési kulcs apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Az egyedi parancsfájl add_fetch konfigurációjában hibás mezőnév {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Válassza ki azokat a Google Névjegyeket, amelyekkel szinkronizálni kell a kapcsolatot." DocType: Web Page,Main Section (HTML),Fő rész (HTML) +DocType: Scheduled Job Type,Annual,Éves DocType: Workflow State,headphones,fejhallgató apps/frappe/frappe/email/doctype/email_account/email_account.py,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. DocType: Slack Webhook URL,Slack Webhook URL,Laza Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Meghatározza a diák sorrendjét a varázslóban. Ha a dia nem jelenik meg, az prioritást 0-ra kell állítani." DocType: Data Migration Run,Current Mapping,Aktuális leképzés apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Érvényes e-mail és név szükséges apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Az összes mellékletet tegye privátnak @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Átvezetési szabályok apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Csak az első {0} sor jelenik meg az előnézetben apps/frappe/frappe/core/doctype/report/report.js,Example:,Példa: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,korlátozások DocType: Workflow,Defines workflow states and rules for a document.,Meghatározza a munkafolyamat állapotokat és szabályokat a dokumentumhoz. DocType: Workflow State,Filter,Szűrő apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},További információkért nézze meg a hibanaplót: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Munka apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} kijelentkezett: {1} DocType: Address,West Bengal,Nyugat-Bengál +DocType: Onboarding Slide,Information,Információ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nem állítható Hozzárendelés küldésre, ha nem Küldhető" DocType: Transaction Log,Row Index,Sor index DocType: Social Login Key,Facebook,Facebook fiók @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Gomb Súgó DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Csoport tagok +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Naptárilag csak egyszer futtat ütemezett munkákat inaktív webhelyek számára. Alapértelmezésben 4 nap, ha 0-ra állítja." DocType: Assignment Rule,System Manager,Rendszer menedzser +DocType: Scheduled Job Log,Scheduled Job,Ütemezett munka DocType: Custom DocPerm,Permissions,Jogosultságok apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Laza Webkönyök a belső integrációhoz DocType: Dropbox Settings,Allow Dropbox Access,Dropbox hozzáférés engedélyezése @@ -397,6 +415,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Barco DocType: Email Flag Queue,Email Flag Queue,E-mail zászló sorrend DocType: Access Log,Columns / Fields,Oszlopok / mezők apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stíluslapok nyomtatási formátumokhoz +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Az összesített funkció mezőre van szükség az irányítópult diagramjának létrehozásához apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Nem tudja azonosítani a megnyitott: {0}. Próbáljon ki valami mást. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Az információját benyújtották apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,A {0} felhasználó nem törölhető @@ -412,11 +431,12 @@ DocType: Property Setter,Field Name,Mező neve DocType: Assignment Rule,Assign To Users,Hozzárendelés a felhasználók számára apps/frappe/frappe/public/js/frappe/utils/utils.js,or,vagy apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modul neve ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Folytatás +DocType: Onboarding Slide,Continue,Folytatás apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,A Google Integráció le van tiltva. DocType: Custom Field,Fieldname,Mezőnév DocType: Workflow State,certificate,tanusítvány apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Ellenőrzés... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,A (z) {0} {1} napon végzett feladatát eltávolították apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Az első adat oszlopot üresen kell hagyni. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Összes verzió mutatása apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Megjegyzés megtekintése @@ -426,12 +446,14 @@ DocType: User,Restrict IP,IP korlátozás apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Műszerfal apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nem lehet e-mailt küldeni most apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Naptár - A (z) {0} esemény nem frissíthető a Google Naptárban, hibakód: {1}." +DocType: Notification Log,Email Content,E-mail tartalom apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Keressen vagy írja be a parancsot DocType: Activity Log,Timeline Name,Idővonal neve apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Csak egy {0} állítható be elsődlegesként. DocType: Email Account,e.g. smtp.gmail.com,pl. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Új szabály hozzáadása DocType: Contact,Sales Master Manager,Értékesítési törzsadat kezelő +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Engedélyeznie kell a JavaScriptet az alkalmazás működéséhez. DocType: User Permission,For Value,Értékért DocType: Event,Google Calendar ID,Google naptár azonosító ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Egy utolsó lépés @@ -446,6 +468,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP középső név mező apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} {0} importálása DocType: GCalendar Account,Allow GCalendar Access,GCalendar hozzáférés engedélyezése apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,A(z) {0} egy kötelező mező +DocType: DocType,Documentation Link,Dokumentációs link apps/frappe/frappe/templates/includes/login/login.js,Login token required,Bejelentkezési token szükséges apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Havi rang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Válasszon több listaelemet @@ -467,6 +490,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Fájl URL DocType: Version,Table HTML,Táblázat HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Előfizetők hozzáadása +DocType: Notification Log,Energy Point,Energiapont apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,"A mai nap eseményei, teendői" DocType: Google Calendar,Push to Google Calendar,Nyomja meg a Google Naptárt DocType: Notification Recipient,Email By Document Field,Email dokumentum mezőből @@ -482,12 +506,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Távol DocType: Currency,Fraction Units,Törtrész egységei apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} az {1} és {2} közt -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Jelölje elvégzettnek DocType: Chat Message,Type,Típus DocType: Google Settings,OAuth Client ID,OAuth kliens azonosító DocType: Auto Repeat,Subject,Tárgy apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Vissza az asztalhoz DocType: Web Form,Amount Based On Field,Összeg a mező alapján +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,A (z) {0} felhasználónak nincsenek nyomon követhető verziói. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -510,6 +534,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,"Kérjük, ellenőrizze e-mail a vizsgálathoz" apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Becsukás nem lehet az űrlap végén DocType: Communication,Bounced,Visszapattant +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,"nak,-nek" DocType: Deleted Document,Deleted Name,Törölt név apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Rendszer és a weboldal használói DocType: Workflow Document State,Doc Status,Dokumentum állapota @@ -520,6 +545,7 @@ DocType: Language,Language Code,Nyelvi kód DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Megjegyzés: Alapértelmezés szerint a sikertelen biztonsági másolatok e-mailjei kerülnek elküldésre. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Szűrő hozzáadása apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},Küldött SMS alábbi telefonszámokon: {0} +DocType: Notification Settings,Assignments,Feladatok apps/frappe/frappe/utils/data.py,{0} and {1},{0} és {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Beszélgetés indítása. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Mindig ""Tervezet"" fejszöveggel lássa el a vázlat nyomtatást" @@ -528,6 +554,7 @@ DocType: Data Migration Run,Current Mapping Start,Aktuális leképezés kezdete apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Az E-mail spamként jelölt DocType: Comment,Website Manager,Weboldal kezelő apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Fájl feltöltése levállva. Kérlek próbáld újra. +DocType: Data Import Beta,Show Failed Logs,A sikertelen naplók megjelenítése apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,fordítása apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,A kiválasztott tervezete vagy Törölt dokumentumai apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},A (z) {0} dokumentum {1} állapotát a {2} állította be. @@ -535,7 +562,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Sorbanálló dokumentum DocType: GSuite Templates,Destination ID,Cél azonosító DocType: Desktop Icon,List,Lista DocType: Activity Log,Link Name,Elérési link neve +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Ön menedéket \ DocType: System Settings,mm/dd/yyyy,hh/nn/éééé +DocType: Onboarding Slide,Onboarding Slide,Fedélzeti fedélzet apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Előző @@ -596,6 +625,7 @@ DocType: Kanban Board Column,darkgrey,sötétszürke apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Sikeres: {0} - {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Csepp +DocType: Dashboard Chart,Aggregate Function Based On,Összesített funkció alapján apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Kérjük kétszerezze meg ezt a változtatásra apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Nyomja meg az Enter billentyűt a mentéshez apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"PDF létrehozás nem sikerült, törött kép linkek miatt" @@ -609,7 +639,9 @@ DocType: Notification,Days Before,Nappal ez előtt apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,A napi eseményeknek ugyanazon a napon kell befejeződni. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Szerkesztése ... DocType: Workflow State,volume-down,hangerő csökkentés +DocType: Onboarding Slide,Help Links,Súgó linkek apps/frappe/frappe/auth.py,Access not allowed from this IP Address,A hozzáférés ezen az IP-címen nem engedélyezett +DocType: Notification Settings,Enable Email Notifications,E-mail értesítések engedélyezése apps/frappe/frappe/desk/reportview.py,No Tags,Nincsenek címkék DocType: Email Account,Send Notification to,Értesítés küldése DocType: DocField,Collapsible,Összecsukható @@ -638,6 +670,7 @@ DocType: Google Drive,Last Backup On,Utolsó biztonsági mentés be DocType: Customize Form Field,Customize Form Field,Űrlap mezőjének testreszabása DocType: Energy Point Rule,For Document Event,A dokumentum eseményhez DocType: Website Settings,Chat Room Name,Csevegő szoba neve +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Változatlan DocType: OAuth Client,Grant Type,Típus támogatása apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Ellenőrizze, hogy mely dokumentumok olvashatók egy Felhasználó részére" DocType: Deleted Document,Hub Sync ID,Hub szinkronizálási azonosító ID @@ -645,6 +678,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,a % DocType: Auto Repeat,Quarterly,Negyedévenként apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Mindig apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Illegális dokumentum státusz ehhez: {0} DocType: Email Account,Enable Auto Reply,Automatikus válasz engedélyezése apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nincs megtekintve @@ -657,6 +691,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Üzen DocType: Email Account,Notify if unreplied,"Értesítés, ha: megválaszolatlan" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,"Szkennelje a QR-kódot, és írja be a megjelenő kódot." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Színátmenetek engedélyezése +DocType: Scheduled Job Type,Hourly Long,Óránként hosszú DocType: System Settings,Minimum Password Score,Minimum jelszó pontszám DocType: DocType,Fields,Mezők DocType: System Settings,Your organization name and address for the email footer.,"A szervezete neve és címe, az e-mail láblécen." @@ -664,11 +699,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Fő táblá apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 biztonsági mentés elkészült! apps/frappe/frappe/config/desktop.py,Developer,Fejlesztő apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Létrehozta +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Engedélyezéséhez kövesse az alábbi link utasításait: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} a {1} sorban nem lehet egyszerre URL és gyermek elemek apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},A következő tábláknak legalább egy sornak kell lennie: {0} DocType: Print Format,Default Print Language,Alapértelmezett nyomtatási nyelv apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ősök apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nem lehet törölni +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nincsenek sikertelen naplók apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Nincs még hozzászólás apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Kérjük, állítsa be az SMS-t, mielőtt beállítja azt hitelesítési módként, az SMS-beállítások segítségével" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,A DocType és a név is szükséges @@ -692,6 +729,7 @@ DocType: Website Settings,Footer Items,Lábléc elemek apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menü DocType: DefaultValue,DefaultValue,AlapértelmezettÉrték DocType: Auto Repeat,Daily,Napi +DocType: Onboarding Slide,Max Count,Max. Szám apps/frappe/frappe/config/users_and_permissions.py,User Roles,Felhasználói Beosztások DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Tulajdonságbeállító felülírja a szokásos DocType vagy mező tulajdonságot apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nem lehet frissíteni: Helytelen / Lejárt link. @@ -710,6 +748,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Házigazda DocType: Data Import Beta,Import File,Fájl importálása +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Sablonhiba apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Oszlop {0} már létezik. DocType: ToDo,High,Nagy apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Új esemény @@ -725,6 +764,7 @@ DocType: Web Form Field,Show in filter,Megjelenítés a szűrőben DocType: Address,Daman and Diu,Daman és Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt téma DocType: Address,Personal,Személyes +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Nyers nyomtatási beállítások ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,A részleteket lásd a https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region oldalon. apps/frappe/frappe/config/settings.py,Bulk Rename,Tömeges átnevezés DocType: Email Queue,Show as cc,Megjelenítés mint cc @@ -734,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Videót készít DocType: Contact Us Settings,Introductory information for the Contact Us Page,Bevezető információk a Kapcsolat oldalhoz DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,hüvelykujj-le +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Dokumentumok törlése DocType: User,Send Notifications for Email threads,Értesítések küldése e-mail szálakhoz apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nem a Fejlesztői módban @@ -741,7 +782,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,A fájl biz DocType: DocField,In Global Search,Globális keresésben DocType: System Settings,Brute Force Security,Brute Force biztonság DocType: Workflow State,indent-left,behúzás-balra -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Kockázatos törölni ezt a fájlt: {0}. Kérjük, forduljon a Rendszergazdához." DocType: Currency,Currency Name,Pénznem neve apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nincsenek e-mailek @@ -756,10 +796,12 @@ DocType: Energy Point Rule,User Field,Felhasználói mező DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Benyomja a Törlés gombot apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} már leiratkozott erről {1} {2} +DocType: Scheduled Job Type,Stopped,Megállítva apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nem távolította el apps/frappe/frappe/desk/like.py,Liked,Tetszett apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Küldés most apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Engedélyezze a vendéget DocType: Report,Query,Érdeklődés DocType: Customize Form,Sort Order,Rendezési sorrend apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""A lista nézetben"" nem megengedett {0} típusú az {1} sorban" @@ -781,10 +823,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Két tényezős azonosítási módszer apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Először állítsa be a nevet és mentse a rekordot. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 felvétel +DocType: DocType Link,Link Fieldname,Link mezőnév apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Megosztva vele {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Leiratkozás DocType: View Log,Reference Name,Hivatkozott tétel apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Felhasználó módosítása +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Első apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Fordítások frissítése DocType: Error Snapshot,Exception,Kivétel DocType: Email Account,Use IMAP,IMAP használata @@ -798,6 +842,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type 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: Website Route Meta,Website Route Meta,Weboldal útvonal meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Fedélzeti fedélzet DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Hírlevél kezelő apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,1. lehetőség @@ -824,7 +869,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Sor apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diagramok beállításai DocType: User,Last IP,Utolsó IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Kérjük, adj hozzá egy tárgyat az e-mail címedhez" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,"Egy új dokumentum: {0}, amit megosztott veled {1}." DocType: Data Migration Connector,Data Migration Connector,Adatátviteli csatoló apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} visszaállítva {1} DocType: Email Account,Track Email Status,Az e-mail állapotának követése @@ -883,6 +927,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Keresés DocType: Workflow State,text-width,szöveg-szélesség apps/frappe/frappe/public/js/frappe/form/form.js,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/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Keresés fájlnév vagy kiterjesztés szerint +DocType: Onboarding Slide,Slide Title,Dia cím DocType: Notification,View Properties (via Customize Form),Tulajdonságok megtekintése (itt: Űrlap testreszabása) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kattintson egy fájlra a kiválasztásához. DocType: Note Seen By,Note Seen By,Megjegyzést láttta @@ -909,13 +954,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL megosztása DocType: System Settings,Allow Consecutive Login Attempts ,Egymást követő bejelentkezési kísérletek engedélyezése apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,"Hiba történt a fizetési folyamat közben. Kérjük, lépjen velünk kapcsolatba." +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ha a Dia típusa Létrehozás vagy Beállítások, akkor a {ref_doctype} .py fájlban létre kell hozni egy 'create_onboarding_docs' metódust, amelyet a diák kitöltése után kell végrehajtani." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} napja DocType: Email Account,Awaiting Password,Várakozás jelszóra DocType: Address,Address Line 1,1. cím sor apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nem leszármazottjai DocType: Contact,Company Name,Válallkozás neve DocType: Custom DocPerm,Role,Beosztás -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Beállítások... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,a böngészőbe apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,jegyző @@ -975,6 +1020,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Nyomja meg, ha az e-mailt a címzett megnyitotta.
Megjegyzés: Ha több címzettnek küld, még akkor is, ha 1 címzett elolvassa az e-mailt, az "Megnyitott"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Hiányzó szükséges értékek apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Engedélyezze a Google Névjegyekhez való hozzáférést +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Korlátozott DocType: Data Migration Connector,Frappe,Frappé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Megjelölés olvasatlanként DocType: Activity Log,Operation,Üzemeltetés @@ -1027,6 +1073,7 @@ DocType: Web Form,Allow Print,Nyomtatás engedélyezése DocType: Communication,Clicked,Rákattintott apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,unfollow apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nincs engedélye a '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítás> E-mail> E-mail fiók menüben" apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Ütemezett küldeni DocType: DocType,Track Seen,Követés megtekintve DocType: Dropbox Settings,File Backup,Fájl biztonsági mentés @@ -1035,12 +1082,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} sz. talá apps/frappe/frappe/config/customization.py,Add custom forms.,Egyéni űrlapok hozzáadása. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ebben: {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,benyújtotta ezt a dokumentumot -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,A rendszer számos előre meghatározott Beosztást ad. Felvehet új Beosztásokat finomabb jogosultság beállításokhoz. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domének +DocType: Onboarding Slide,Domains,Domének DocType: Blog Category,Blog Category,Blog Kategória apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Nem képezhető, mert a következő feltétel nem teljesül:" DocType: Role Permission for Page and Report,Roles HTML,Beosztások HTML @@ -1080,7 +1126,6 @@ DocType: Assignment Rule Day,Saturday,Szombat DocType: User,Represents a User in the system.,Felhasználót képvisel a rendszerben. DocType: List View Setting,Disable Auto Refresh,Az automatikus frissítés letiltása DocType: Comment,Label,Felirat -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","A feladat {0}, melyet hozzárendelt ide: {1}, már lezárták." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Kérjük, zárja be ezt az ablakot" DocType: Print Format,Print Format Type,Nyomtatvány sablon típusa DocType: Newsletter,A Lead with this Email Address should exist,Ezzel az Email címmel egy Érdeklődésnek léteznie kell @@ -1097,6 +1142,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP beállítások a k apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,válasszon egy DocType: Data Export,Filter List,Szűrő lista DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto üzenet válasz DocType: Data Migration Mapping,Condition,Feltétel apps/frappe/frappe/utils/data.py,{0} hours ago,{0} órája @@ -1115,12 +1161,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Tudásbázis Közreműködő DocType: Communication,Sent Read Receipt,Elküldött olvasási nyugták DocType: Email Queue,Unsubscribe Method,Leiratkozási módszer +DocType: Onboarding Slide,Add More Button,További gomb hozzáadása DocType: GSuite Templates,Related DocType,Kapcsolódó DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Szerkeszteni a tartalom felvételéhez apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Válasszon nyelveket apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kártya részletei apps/frappe/frappe/__init__.py,No permission for {0},Nincs engedélye erre {0} DocType: DocType,Advanced,Fejlett +DocType: Onboarding Slide,Slide Image Source,Dia képforrás apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Úgy tűnik API kulcs vagy API titkosítás rossz !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Referencia: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Asszony @@ -1137,6 +1185,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Fő adat DocType: DocType,User Cannot Create,Felhasználó nem hozhatja létre apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Sikeresen kész apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox belépés engedélyezve! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Biztosan össze szeretné egyesíteni a (z) {0} -ot a (z) {1} -nel? DocType: Customize Form,Enter Form Type,Adja meg az űrlap típusát DocType: Google Drive,Authorize Google Drive Access,A Google Drive Access engedélyezése apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Hiányzik a Kanban Board neve paraméter @@ -1146,7 +1195,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lehetővé teszi DocType, DocType. Legyen óvatos!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Testreszabott formátumok nyomtatás, E-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} összeg -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Frissítve az új verzióra DocType: Custom Field,Depends On,Függés ettől DocType: Kanban Board Column,Green,Zöld DocType: Custom DocPerm,Additional Permissions,További jogosultságok @@ -1174,6 +1222,7 @@ DocType: Energy Point Log,Social,Szociális apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Naptár - Nem sikerült létrehozni a (z) {0} naptárát, hibakód: {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Sor rzerkesztése DocType: Workflow Action Master,Workflow Action Master,Munkafolyamat művelet törzsadat +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Mindet törölni DocType: Custom Field,Field Type,Mező típusa apps/frappe/frappe/utils/data.py,only.,csak. DocType: Route History,Route History,Útvonal előzmények @@ -1209,11 +1258,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Elfelejtette a jelszót? DocType: System Settings,yyyy-mm-dd,éééé-hh-nn apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Szerver hiba +DocType: Server Script,After Delete,A törlés után apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Minden múltbéli jelentés megtekintése. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Bejelentkezés igazolvány szükséges DocType: Website Slideshow,Website Slideshow,Weboldal diavetítés apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nincs adat DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Elérési link ami a weboldal kezdőlapja. Szabványos Linkek (index, login, products, blog, about, contact)" +DocType: Server Script,After Submit,A benyújtás után apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Sikertelen hitelesítés miközben e-maileket fogad a következő e-mail fiókról: {0}. Üzenet a szerverről: {1} DocType: User,Banner Image,Banner Kép DocType: Custom Field,Custom Field,Egyedi mező @@ -1254,15 +1305,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ha a felhasználó ki van jelölve bármely beosztáshoz, akkor a felhasználó ""Rendszer felhasználó"" lesz. ""Rendszer felhasználó"" hozzáfér az asztalhoz" DocType: System Settings,Date and Number Format,Dátum és szám formátum apps/frappe/frappe/model/document.py,one of,az egyik -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Az űrlap testreszabása apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Ellenőrzés egy pillanat apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Címkék megjelenítése DocType: DocField,HTML Editor,HTML szerkesztő 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 a Szigorú felhasználói engedély be van jelölve, és a felhasználó engedélye definiálva van egy DocType felhasználó részére, akkor az összes olyan dokumentumot, ahol a kapcsolat értéke üres, nem jelenik meg az adott felhasználó részére" DocType: Address,Billing,Számlázás DocType: Email Queue,Not Sent,Elküldetlen -DocType: Web Form,Actions,Műveletek -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó +DocType: DocType,Actions,Műveletek DocType: Workflow State,align-justify,igazítás-sorkizárt DocType: User,Middle Name (Optional),Középső név (opcionális) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nem engedélyezett @@ -1277,6 +1326,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nincs eredm DocType: System Settings,Security,Biztonság apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Ütemezett küldeni a {0} címzettek apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Elvágott +DocType: Server Script,After Save,Mentés után apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},átnevezve erről {0} erre {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),A (z) {1} {0} ({2} sor gyermekekkel) DocType: Currency,**Currency** Master,** Valuta ** mester @@ -1302,15 +1352,18 @@ DocType: Prepared Report,Filter Values,Szűró értékei DocType: Communication,User Tags,Felhasználó címkéi DocType: Data Migration Run,Fail,Nem sikerül DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Utolsó végrehajtás DocType: Data Migration Run,Pull Failed,Kihúzás sikertelen apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Kártyák megjelenítése / elrejtése DocType: Communication,Feedback Request,Visszajelzés kérése apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Adat importálása CSV / Excel fájlokból. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Következő mezők hiányoznak: +DocType: Notification Log,From User,Felhasználótól apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} törlése DocType: Web Page,Main Section,Fő rész DocType: Page,Icon,Ikon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Tipp: Szimbólumok, számok és nagybetűk használata a jelszóban" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurálja az értesítéseket megemlítések, feladatok, energiapontok és így tovább." DocType: DocField,Allow in Quick Entry,Gyors bejegyzés engedélyezése apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,nn/hh/éééé @@ -1342,7 +1395,6 @@ DocType: Website Theme,Theme URL,Téma URL DocType: Customize Form,Sort Field,Rendező mező DocType: Razorpay Settings,Razorpay Settings,Razorpay beállítások apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Szűrő szerkesztése -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Több hozzáadása DocType: System Settings,Session Expiry Mobile,Munkamenet Lejárat Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Helytelen felhasználónév vagy jelszó apps/frappe/frappe/templates/includes/search_box.html,Search results for,Keressen eredményeket erre @@ -1358,8 +1410,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energiapont szabály DocType: Communication,Delayed,Késedelem apps/frappe/frappe/config/settings.py,List of backups available for download,Letölthető mentések listája +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Próbálja ki az új adatimportálást apps/frappe/frappe/www/login.html,Sign up,Regisztráljon apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,{0} sor: A szabványos mezők számára nem engedélyezhető a Kötelező mezők letiltása +DocType: Webhook,Enable Security,Biztonság engedélyezése apps/frappe/frappe/config/customization.py,Dashboards,Dashboards DocType: Test Runner,Output,Teljesítmény DocType: Milestone,Track Field,Pálya mező @@ -1367,6 +1421,7 @@ DocType: Notification,Set Property After Alert,Tulajdonság beállítása figyel apps/frappe/frappe/config/customization.py,Add fields to forms.,Új mezők hozzáadása űrlapokhoz. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Vélemény hozzáadása +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} új feladatot adott Önnek {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Betűméret (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Kizárólag a szabványos DocType-k testreszabhatók a Testreszabás űrlapból. DocType: Email Account,Sendgrid,Küldési háló @@ -1378,8 +1433,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portál menüpont apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Állítsa be a szűrőket DocType: Contact Us Settings,Email ID,E-mail ID azonosító DocType: Energy Point Rule,Multiplier Field,Szorzó mező +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nem sikerült létrehozni a Razorpay rendelést. Vegye fel a kapcsolatot az adminisztrátorral DocType: Dashboard Chart,Time Interval,Időintervallum DocType: Activity Log,Keep track of all update feeds,Kövesse nyomon az összes frissítési hírcsatornát +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} megosztott veled egy {1} {2} dokumentumot 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 @@ -1398,6 +1455,7 @@ DocType: DefaultValue,Key,Mutató DocType: Address,Contacts,Kapcsolatok DocType: System Settings,Setup Complete,Telepítés befejezve apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Jelentés az összes dokumentum részvények +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Az import sablonnak .csv, .xlsx vagy .xls típusúnak kell lennie" apps/frappe/frappe/www/update-password.html,New Password,Új jelszó apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Szűrés {0} hiányzik apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Bocsánat! Nem törölheti az automatikusan generált megjegyzéseket @@ -1413,6 +1471,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Kedvencekikon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Futtatás DocType: Blog Post,Content (HTML),Tartalom (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Telepítés ehhez DocType: Personal Data Download Request,User Name,Felhasználónév DocType: Workflow State,minus-sign,mínusz-jel apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nem található @@ -1420,11 +1479,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0} sz. engedély apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Egyéni jogosultságok exportja apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nem található tétel. DocType: Data Export,Fields Multicheck,Többszörös ellenőrzésű mezők +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Teljes DocType: Activity Log,Login,Bejelentkezés DocType: Web Form,Payments,Kifizetések apps/frappe/frappe/www/qrcode.html,Hi {0},Hello {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-integráció. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} visszaadta pontainkat a következő napon: {1} {2} DocType: System Settings,Enable Scheduled Jobs,Engedélyezze ütemezett feladatokat apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Megjegyzések: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inaktív @@ -1449,6 +1508,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mail apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Engedélyezési hiba apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Ez a név {0} nem lehet {1} DocType: User Permission,Applicable For,Alkalmazandó ehhez +DocType: Dashboard Chart,From Date,Dátumtól apps/frappe/frappe/core/doctype/version/version_view.html,Success,Sikeres apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Munkamenet ideje lejárt DocType: Kanban Board Column,Kanban Board Column,Kanban pult oszlop @@ -1460,7 +1520,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Sik apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; 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,Complete,Teljes +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Teljes DocType: DocType,Image Field,képmező DocType: Print Format,Custom HTML Help,Egyéni HTML Súgó DocType: LDAP Settings,Default Role on Creation,Alapértelmezett szerep a létrehozásban @@ -1468,6 +1528,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Következő állapot DocType: User,Block Modules,Zárolt modulok DocType: Print Format,Custom CSS,Egyedi CSS +DocType: Energy Point Rule,Apply Only Once,Csak egyszer alkalmazza apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Hozzászólás hozzáadása DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Figyelmen kívül hagyva: {0} - {1} @@ -1479,6 +1540,7 @@ DocType: Email Account,Default Incoming,Alapértelmezett bejövő DocType: Workflow State,repeat,ismétlés DocType: Website Settings,Banner,Zászló apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Az értéknek a következőnek kell lennie: {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Mégsem az összes dokumentumot 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Lépjen a (z) {0} listára apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Segítség a kereséshez @@ -1487,6 +1549,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Regisztrá apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,A dokumentum automatikus ismétlése le van tiltva. DocType: DocType,Hide Copy,Rejtett másolat apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Összes beosztás törlése +DocType: Server Script,Before Save,Mentés előtt apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} egyedinek kell lennie apps/frappe/frappe/model/base_document.py,Row,Sor apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email sablon" @@ -1497,7 +1560,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} sikeresen importált DocType: User,API Key,API kulcs DocType: Email Account,Send unsubscribe message in email,Küldjön leiratkozás üzenetet az e-mail-ben -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Cím szerkesztése apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Mezőnév, mely ennek a link mezőnek a DocType-ja lesz." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumentumok saját maga által Önhöz rendelt. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Ezt másolhatja és beillesztheti @@ -1529,8 +1591,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Kép csatolása DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Jelszó Frissítve +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek apps/frappe/frappe/www/qrcode.html,Steps to verify your login,A bejelentkezés ellenőrzéséhez szükséges lépések apps/frappe/frappe/utils/password.py,Password not found,A jelszót nem találta +DocType: Webhook,Webhook Secret,Webhook titkos DocType: Data Migration Mapping,Page Length,Oldal hossz DocType: Email Queue,Expose Recipients,Mutassa a címzetteket apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Hozzáfűzés kötelező a beérkező levelekhez @@ -1558,6 +1622,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Rendszer DocType: Web Form,Max Attachment Size (in MB),Max Csatolmány Méret (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Rrendelkezik fiókkal? Bejelentkezés +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Nyomtatási beállítások ... DocType: Workflow State,arrow-down,nyíl-le apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} sor apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Felhasználó törlése nem engedélyezett {0}: {1} @@ -1578,6 +1643,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Adja meg DocType: Dropbox Settings,Dropbox Access Secret,Dropbox belépési titkosítás DocType: Tag Link,Document Title,Dokumentum címe apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Kötelező) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt DocType: Social Login Key,Social Login Provider,Közösségi bejelentkezési szolgáltató apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Másik hozzászólás hozzáadása apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"Nincs adat a fájlban. Kérjük, csatolja újra az új fájlt, adatokkal." @@ -1592,11 +1658,12 @@ DocType: Workflow State,hand-down,kéz-le apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Nem található olyan mező, amelyet Kanban oszlopként lehet használni. Használja a Testreszabási űrlapot a "Kiválasztás" típusú egyedi mező hozzáadásához." DocType: Address,GST State,GST Állam apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Küldés nélkül nem lehet Visszavonni +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Felhasználó ({0}) DocType: Website Theme,Theme,Téma DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Átirányított URL jóváhagyíási kódhoz kötve apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Nyissa meg a Súgót DocType: DocType,Is Submittable,Ez küldhető -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Új említés +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Új említés apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nincs új Google Névjegy szinkronizálva. DocType: File,Uploaded To Google Drive,Feltöltve a Google Drive-ra apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Az ellenőrző mező értéke 1 vagy 0 lehet @@ -1608,7 +1675,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Bejövő DocType: Kanban Board Column,Red,Piros DocType: Workflow State,Tag,Címke -DocType: Custom Script,Script,Forgatókönyv +DocType: Report,Script,Forgatókönyv apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumentumot nem lehet menteni. DocType: Energy Point Rule,Maximum Points,Maximális pontok apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Beállításaim @@ -1638,9 +1705,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} értékelési pont a (z) {1} {2} számára apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Beosztásokat lehet osztani a felhasználóknak a Felhasználó oldalon. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Megjegyzés hozzáadása +DocType: Dashboard Chart,Select Date Range,Válassza a Dátumtartományt DocType: DocField,Mandatory,Kötelező apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul exportálása +DocType: Scheduled Job Type,Monthly Long,Havi hosszú apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Alapvető jogosultságok nincsenek beállítva +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Küldjön egy e-mailt a (z) {0} -re, hogy ide kapcsolja" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Elküld, Mégse, Módosít jelentése" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tennivaló @@ -1649,7 +1719,6 @@ DocType: Milestone Tracker,Track milestones for any document,Bármely dokumentum DocType: Social Login Key,Identity Details,Azonosító adatok apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},A munkafolyamat állapotának átalakítása nem engedélyezett a (z) {0} -ról {1} -re apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mutassa az irányítópultot -apps/frappe/frappe/desk/form/assign_to.py,New Message,Új üzenet DocType: File,Preview HTML,Előnézet HTML DocType: Desktop Icon,query-report,érdeklődés-jelentés DocType: Data Import Beta,Template Warnings,Sablon figyelmeztetések @@ -1660,18 +1729,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Összekötö apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Az automatikus e-mail jelentés beállításainak szerkesztése DocType: Chat Room,Message Count,Üzenet számláló DocType: Workflow State,book,könyv +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},A (z) {0} {1} kapcsolódik a következő benyújtott dokumentumokhoz: {2} DocType: Communication,Read by Recipient,Olvassa el a címzettet DocType: Website Settings,Landing Page,Érkezési oldal apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Hiba az Egyedi Scriptben apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Név apps/frappe/frappe/core/page/permission_manager/permission_manager.js,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/desk/doctype/notification_log/notification_log.py,New Document Shared,Új dokumentum megosztva apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Megjegyzés törlése? DocType: Address Template,This format is used if country specific format is not found,"Ezt a formátumot használják, ha ország-specifikus formátuma nem található" DocType: System Settings,Allow Login using Mobile Number,Belépés engedélyezése mobil szám használatával apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ha engedélyezve van, akkor a felhasználók, akik bejelentkeznek a korlátozott IP-címről, nem fogják megkérdezni a Két tényezős azonosítás szolgáltatást" +DocType: Server Script,After Cancel,Mégsem DocType: Auto Repeat,Get Contacts,Kapcsolattartók apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Hozzászólésok kiállítva ez alá: {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Ugró a cím nélküli oszlop @@ -1682,6 +1754,7 @@ 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 +DocType: Notification Log,Mention,Említés DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Betűtípusok apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Pontosságnak az 1. és 6. között kell lennie @@ -1689,7 +1762,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Továbbí apps/frappe/frappe/public/js/frappe/utils/utils.js,and,és apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ez a jelentés ekkor készült: {0} DocType: Error Snapshot,Frames,Keretek -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Hozzárendelés +DocType: Notification Log,Assignment,Hozzárendelés DocType: Notification,Slack Channel,Laza csatorna DocType: About Us Team Member,Image Link,Képhivatkozás DocType: Auto Email Report,Report Filters,jelentés szűrő @@ -1706,7 +1779,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nem lehet frissíteni az eseményt apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,A hitelesítési kódot elküldtük regisztrált e-mail címére. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Lassított +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,A célod apps/frappe/frappe/utils/data.py,"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/model/naming.py,No Name Specified for {0},Nincs megadva név a (z) {0} számára apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Alkalmazza a hozzárendelési szabályt apps/frappe/frappe/utils/bot.py,show,mutasd apps/frappe/frappe/utils/data.py,Invalid field name {0},Érvénytelen mezőnév {0} @@ -1716,7 +1791,6 @@ DocType: Workflow State,text-height,szöveg-magasság DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Adatátviteli terv leképezés apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé elindítása ... DocType: Web Form Field,Max Length,Max hossz -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,térkép-jelölő apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Jelentsen egy problémát @@ -1752,6 +1826,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Oldal hiányzó vagy áthe apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Vélemények DocType: DocType,Route,Útvonal apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Fizetési átjáró beállításai +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} {1} pontot szerzett a (z) {2} {3} számára apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Vegye le a csatolt képeket a dokumentumból DocType: Chat Room,Name,Név DocType: Contact Us Settings,Skype,Skype @@ -1762,7 +1837,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Link megnyit apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,A nyelve DocType: Dashboard Chart,Average,Átlagos apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Sor hozzáadás -DocType: Tag Category,Doctypes,Doctype-k apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Nyomtató apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Az érdeklődés csak SELECT lehet DocType: Auto Repeat,Completed,Befejezve @@ -1821,6 +1895,7 @@ DocType: GCalendar Account,Next Sync Token,Következő Sync Token DocType: Energy Point Settings,Energy Point Settings,Energiapont beállítások DocType: Async Task,Succeeded,Sikerült apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Kötelező mezők szükséges {0} +DocType: Onboarding Slide Field,Align,Igazítsa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset engedélyei {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Felhasználók és engedélyek DocType: S3 Backup Settings,S3 Backup Settings,S3 biztonsági mentési beállításai @@ -1837,7 +1912,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Új nyomtatási formátum neve apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kattintson az alábbi linkre a kérés jóváhagyásához DocType: Workflow State,align-left,igazítás-balra +DocType: Onboarding Slide,Action Settings,Művelet beállításai DocType: User,Defaults,Alapértelmezések +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Összehasonlításként használjon> 5, <10 vagy = 324. A tartományokhoz használja az 5:10 értéket (az 5 és 10 közötti értékekhez)." DocType: Energy Point Log,Revert Of,Vissza apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Meglévővel összefésülni DocType: User,Birth Date,Születési dátum @@ -1892,6 +1969,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Tartalmazza DocType: Notification,Value Change,Érték Változás DocType: Google Contacts,Authorize Google Contacts Access,A Google Névjegyekhez való hozzáférés engedélyezése apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Csak számmezők megjelenítése a Jelentésből +apps/frappe/frappe/utils/data.py,1 week ago,1 hete DocType: Data Import Beta,Import Type,Importálás típusa DocType: Access Log,HTML Page,HTML oldal DocType: Address,Subsidiary,Leányvállalat @@ -1901,7 +1979,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Fejléccel apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Érvénytelen Kimenő levelek kiszolgálója vagy Portja DocType: Custom DocPerm,Write,Ír -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Csak Rendszergazda hozhat létre Érdeklődést / Script Jelentéseket apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Frissítés DocType: Data Import Beta,Preview,Előnézet apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","""érték"" mező kötelező. Kérjük, adja meg az értéket a frissítéshez" @@ -1911,6 +1988,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Meghívás DocType: Data Migration Run,Started,Elkezdve apps/frappe/frappe/permissions.py,User {0} does not have access to this document,A (z) {0} felhasználó nem fér hozzá ehhez a dokumentumhoz DocType: Data Migration Run,End Time,Befejezés dátuma +DocType: Dashboard Chart,Group By Based On,Csoportosítása alapján apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Válassza ki a csatolmányokat apps/frappe/frappe/model/naming.py, for {0},{0} részére apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nem nyomtathatja ki ezt a dokumentumot @@ -1952,6 +2030,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Ellenőrzi DocType: Workflow Document State,Update Field,Mező frissítése DocType: Chat Profile,Enable Chat,Csevegés engedélyezése DocType: LDAP Settings,Base Distinguished Name (DN),Alapértelmezett elkülönítő név (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Beszélgetés elhagyása apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Választást nem állította be erre a link mezőre: {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Sor / munkás @@ -2018,12 +2097,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,A bejelentkezés tilos ebben az időben DocType: Data Migration Run,Current Mapping Action,Aktuális leképzési művelet DocType: Dashboard Chart Source,Source Name,Forrá név -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Nincs e-mail fiók társítva a Felhasználóval. Kérjük, vegyen fel egy fiókot a Felhasználó> E-mail beérkezett üzenetek csoportba." DocType: Email Account,Email Sync Option,E-mail szinkronizálás lehetőség apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Sor sz. DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Kitűzött DocType: Contact Us Settings,Introduction,Bevezetés +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Kell segítség? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,PIN-kód globálisan apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Követte DocType: LDAP Settings,LDAP Email Field,LDAP-mail mező @@ -2033,7 +2112,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Már a fe DocType: User Email,Enable Outgoing,Engedélyezze a kimenőt DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Egyedi címkék -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Az e-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiókot a Beállítás> E-mail> E-mail fiók közül" DocType: Comment,Submitted,Benyújtva DocType: Contact,Pulled from Google Contacts,A Google Névjegyekből vonult le apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Érvénytelen kérelem @@ -2054,9 +2132,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Kezdőlap / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Hozzám rendelt DocType: DocField,Dynamic Link,Dinamikus link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Az Alt billentyű megnyomásával további hivatkozásokat indíthat a menüben és az oldalsávban +DocType: Dashboard Chart,To Date,Dátumig DocType: List View Setting,List View Setting,Lista nézet beállítása apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Mutassa a sikertelen műveleteket -DocType: Event,Details,Részletek +DocType: Scheduled Job Log,Details,Részletek DocType: Property Setter,DocType or Field,DocType vagy Mező apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ön követte ezt a dokumentumot apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Elsődleges szín @@ -2064,7 +2143,6 @@ DocType: Communication,Soft-Bounced,Szoft-visszaküld DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ha engedélyezett, minden felhasználó bármely IP-címről bejelentkezhet a Két tényezős azonosítás segítségével. Ezt a beállítás csak a Felhasználó oldalon bizonyos felhasználó(k) számára állítható be" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Úgy tűnik, közzétehető Kulcs vagy a Titkos kulcs rossz !!!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Segítség a jogosultság beállításaihoz -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype a címkék hozzárendeléséhez apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Mutassa a visszaeséseket apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail került a kukába DocType: Report,Report Builder,Jelentéskészítő @@ -2079,6 +2157,7 @@ DocType: Workflow State,Upload,Feltöltés DocType: User Permission,Advanced Control,Speciális vezérlés DocType: System Settings,Date Format,Dátum formátum apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nincs közzé téve +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nem található alapértelmezett címsablon. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és márkajelzés> Címsablon menüpontból." apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Műveletek munkafolyamathoz (pl Jóváhagyja Mégsem). DocType: Data Import,Skip rows with errors,Hibás sorok kihagyása DocType: Workflow State,flag,zászló @@ -2088,7 +2167,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Doku apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Ugrás a mezőre DocType: Contact Us Settings,Forward To Email Address,Továbbítás emailcímekre DocType: Contact Phone,Is Primary Phone,Elsődleges telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Küldjön egy e-mailt a (z) {0} -re, hogy ide kapcsolja." DocType: Auto Email Report,Weekdays,Hétköznapok apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,A (z) {0} rekordok exportálásra kerülnek apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Cím mezőnek érvényes mezőnévvel kell rendelkeznie @@ -2096,7 +2174,7 @@ DocType: Post Comment,Post Comment,Üzenet elküldése apps/frappe/frappe/config/core.py,Documents,Dokumentumok apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Tevékenységi napló DocType: Social Login Key,Custom Base URL,Egyéni alap URL -DocType: Email Flag Queue,Is Completed,Ez elkészült +DocType: Onboarding Slide,Is Completed,Ez elkészült apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Mezők beszerzése apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Profil szerkesztése DocType: Kanban Board Column,Archived,Archivált @@ -2107,11 +2185,12 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Ma +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Ma apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Küldés importálás után DocType: Error Log,Log of Scheduler Errors,Ütemező hiba naplója DocType: User,Bio,Életrajz +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help link DocType: OAuth Client,App Client Secret,Alk kliens titkositas apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Benyújtása apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"A szülő az a dokumentum neve, amelyhez az adatokat hozzáadják." @@ -2119,7 +2198,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,NAGYBETŰ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Egyedi HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Írja be a mappa nevét -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nem található alapértelmezett címsablon. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és márkajelzés> Címsablon menüpontból." apps/frappe/frappe/auth.py,Unknown User,Ismeretlen felhasználó apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Válasszon beosztást DocType: Comment,Deleted,Törölt @@ -2135,7 +2213,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Diagram létrehozása apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne importáljon -DocType: Web Page,Center,Központ +DocType: Onboarding Slide Field,Center,Központ DocType: Notification,Value To Be Set,Beállítandó érték apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Szerkesztés {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Első szint @@ -2143,7 +2221,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Adatbázis név apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Űrlap frissítése DocType: DocField,Select,Választás -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Teljes napló megtekintése +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Teljes napló megtekintése DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Egyszerű Python kifejezés, példa: status == 'Megnyitás' és gépelés == 'Hiba'" apps/frappe/frappe/utils/csvutils.py,File not attached,A fájl nincs mellékelve apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,A kapcsolat megszakadt. Egyes funkciók nem működhetnek. @@ -2175,6 +2253,7 @@ DocType: Web Page,HTML for header section. Optional,HTML a fejlécben. Választh apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,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,Maximum {0} rows allowed,Maximum {0} sor megengedett DocType: Dashboard Chart Link,Chart,Diagram +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Globális Leiratkozás apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ez egy nagyon gyakori jelszó. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Nézet @@ -2191,6 +2270,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Feltétel részletei apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",A {0} pénznem esetében a minimális tranzakciós összeg: {1} DocType: DocField,Print Hide,Nyomtatás elrejtése +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Felhasználónak apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Adjon Értéket DocType: Workflow State,tint,színárnyalat @@ -2257,6 +2337,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kód a beje apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add hozzá a Tennivalókhoz DocType: Footer Item,Company,Vállalkozás apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} átlag +DocType: Scheduled Job Log,Scheduled,Ütemezett DocType: User,Logout from all devices while changing Password,Kijelentkezés az összes eszközről a jelszó megváltoztatáskor apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Jelszó megerősítése apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Hibák voltak @@ -2282,7 +2363,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Felhasználói engedély már létezik apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},A (z) {0} oszlop leképezése a (z) {1} mezőbe apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Megtekintés {0} -DocType: User,Hourly,Óránkénti +DocType: Scheduled Job Type,Hourly,Óránkénti apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Regisztráció OAuth Client App DocType: DocField,Fetch If Empty,"Lekérés, ha üres" DocType: Data Migration Connector,Authentication Credentials,Hitelesítési adatok @@ -2293,10 +2374,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS átjáró URL-je apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},a (z) {0} által a (z) {1} automatikus szabály révén nyert apps/frappe/frappe/utils/data.py,{0} or {1},{0} vagy {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Mindenki fel van állítva! DocType: Workflow State,trash,kuka DocType: System Settings,Older backups will be automatically deleted,Régebbi mentések automatikusan törlődnek apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Érvénytelen hozzáférési kulcs ID azonosító vagy titkos hozzáférési kulcs. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Elvesztette néhány energiapontot DocType: Post,Is Globally Pinned,Globálisan kitűzve apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Legutóbbi tevékenység DocType: Workflow Transition,Conditions,Körülmények @@ -2305,6 +2386,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Megerősíte DocType: Event,Ends on,Véget ér DocType: Payment Gateway,Gateway,Átjáró DocType: LDAP Settings,Path to Server Certificate,Út a kiszolgálói tanúsítványhoz +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,A Javascript le van tiltva a böngészőjében apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nincs elég Jogosultság a linkek megtekintéséhez apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Cím felirat kötelező. DocType: Google Contacts,Push to Google Contacts,Nyomja meg a Google Névjegyeket @@ -2323,7 +2405,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-nyugat-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ha ez be van jelölve, érvényes adatokkal rendelkező sorokat importálnak, és az érvénytelen sorokat egy későbbi importálásra új fájlba bocsátják." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,A dokumentumot csak beosztás szerinti felhasználók módosíthatják -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","A feladat {0}, melyet hozzárendelt ide: {1}, {2} által lezárva." DocType: Print Format,Show Line Breaks after Sections,Megmutatása a sortöréseket a szakaszok után DocType: Communication,Read by Recipient On,Olvassa el a címzettet DocType: Blogger,Short Name,Rövid név @@ -2355,6 +2436,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Hozz DocType: Translation,PR sent,PR elküldve DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Csak az X órán bellül frissített Rekordokat küldjük DocType: Communication,Feedback,Visszajelzés +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Új verzióra frissítve 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Fordítás megnyitása apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ez az e-mail automatikusan generált DocType: Workflow State,Icon will appear on the button,Ikon fog megjelenni a gombon @@ -2393,6 +2475,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Az oldal n DocType: DocField,Precision,Pontosság DocType: Website Slideshow,Slideshow Items,Diavetítés elemek apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Próbálja meg elkerülni az ismétlődő szavakat és karaktereket +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Értesítések letiltva +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Biztosan törli az összes sort? DocType: Workflow Action,Workflow State,Munkafolyamat állapot apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Sorok hozzáadva apps/frappe/frappe/www/list.py,My Account,Fiókom @@ -2401,6 +2485,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Nappal utána apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,A QZ tálca csatlakoztatása aktív! DocType: Contact Us Settings,Settings for Contact Us Page,Beállítások a Kapcsolat Oldalhoz +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,A nyomtatószerver engedélyezése apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} héttel ezelőtt DocType: Email Account,Footer,Lábléc @@ -2426,8 +2511,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Figyelmeztetés apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,"Előfordulhat, hogy több oldalra nyomtatják" DocType: Data Migration Run,Percent Complete,Százalék teljesítve -DocType: Tag Category,Tag Category,Címke kategória -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Összehasonlításként használjon> 5, <10 vagy = 324. A tartományokhoz használja az 5:10 értéket (az 5 és 10 közötti értékekhez)." DocType: Google Calendar,Pull from Google Calendar,Húzza a Google Naptárból apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Súgó DocType: User,Login Before,Bejelentkezés előtt @@ -2437,17 +2520,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Hétvégék elrejtése apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatikusan generál ismétlődő dokumentumokat. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Van +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,infó-jel apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Ennek értéke: {0} nem lehet egy lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hogyan kell ezt a pénznemet formázni? Ha nincs beállítva, akkor használja a rendszer alapértelmezettet" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Küldje el a {0} dokumentumokat? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Hiba történt a QZ tálca alkalmazáshoz való csatlakozáskor ...

A Raw Print szolgáltatás használatához a QZ Tray alkalmazásnak telepítve kell lennie és futnia kell.

Kattintson ide a QZ tálca letöltéséhez és telepítéséhez .
Kattintson ide, hogy többet tudjon meg a nyers nyomtatásról ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Nyomtató leképezése apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Kérjük mentsen a csatolás elött. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Törli az összes összekapcsolt dokumentumot? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Hozzáadva: {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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" apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Beosztás engedélyei DocType: Help Article,Intermediate,Közbülső +apps/frappe/frappe/config/settings.py,Email / Notifications,Email Értesítések apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} -ről {2} -re változott apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,A visszavont dokumentum vázlatként lett visszaállítva DocType: Data Migration Run,Start Time,Kezdés ideje @@ -2464,6 +2551,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Me apps/frappe/frappe/email/smtp.py,Invalid recipient address,Érvénytelen címzett cím DocType: Workflow State,step-forward,előrelépés DocType: System Settings,Allow Login After Fail,Hibás bejelentkezés utáni bejelentkezés engedélyezés +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Állítsa be ehhez a szerepet DocType: GCalendar Account,The name that will appear in Google Calendar,A Google naptárban megjelenő név apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,A közvetlen {0} szoba már létezik. @@ -2480,6 +2568,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Hozzon l DocType: Contact,Google Contacts,Google Névjegyek DocType: GCalendar Account,GCalendar Account,GNaptár-fiók DocType: Email Rule,Is Spam,Ez Levélszemét +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Utolsó apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0} megnyitva DocType: Data Import Beta,Import Warnings,Import figyelmeztetések @@ -2491,6 +2580,7 @@ DocType: Workflow State,ok-sign,ok-jel apps/frappe/frappe/config/settings.py,Deleted Documents,Törölt dokumentumok apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formátum a kis- és nagybetűkre érzékeny apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Asztal ikon már létezik +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Adja meg, hogy az összes domainben miként jelenjenek meg a diák. Ha semmit nem ad meg, a dia alapértelmezés szerint az összes domainben megjelenik." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Megsokszoroz apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: A (z) {2} sorban lévő {1} mező nem rejthető el és kötelező alapértelmezés nélkül DocType: Newsletter,Create and Send Newsletters,Létrehoz és küld hírleveleket @@ -2501,6 +2591,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,A Google Naptár eseményazonosítója apps/frappe/frappe/core/doctype/data_export/exporter.py,"""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" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Felülvizsgálati pontok: +DocType: Scheduled Job Log,Scheduled Job Log,Ütemezett munkanapló +DocType: Server Script,Before Delete,Törlés előtt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Megosztva apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,"Csatolja a fájlokat / URL-eket, és adja hozzá a táblázatban." apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Az üzenet nem állítható be @@ -2523,19 +2615,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Beállítások a Rólunk oldalhoz apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe fizetési átjáró beállításai apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Nyomtatás elküldve a nyomtatónak! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiapontok +DocType: Notification Settings,Energy Points,Energiapontok +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},A (z) {0} időnek formátumban kell lennie: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,pl. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Kulcsok generálása apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ez véglegesen eltávolítja az Ön adatait. DocType: DocType,View Settings,Nézet beállítások +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Új értesítés DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Kérjen felépítést +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,A get_razorpay_order vezérlő módszer hiányzik DocType: Personal Data Deletion Request,Pending Verification,Az ellenőrzés függőben van DocType: Website Meta Tag,Website Meta Tag,Weboldal Meta Tag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ha nem szabványos port (pl. 587). Ha a Google Cloud szolgáltatás, akkor próbálja meg a 2525-ös portot." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","A befejező dátum törlése, mivel nem lehet a múltban a közzétételi oldalakon." DocType: User,Send Me A Copy of Outgoing Emails,Küldjön nekem a kimenő e-mailek másolatából -DocType: System Settings,Scheduler Last Event,Utolsó esemény ütemezése DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Add a Google Analytics ID: pl. UA-89XXX57-1. Kérjük, keressen segítséget a Google Analytics-on további információkért." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,"Jelszó nem lehet több, mint 100 karakter hosszú" DocType: OAuth Client,App Client ID,Alk kliens ID @@ -2564,6 +2658,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Új jelszó s apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} megosztotta ezt a dokumentumot vele: {1} DocType: Website Settings,Brand Image,Márka képe DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Az import sablonnak fejlécet és legalább egy sort kell tartalmaznia. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,A Google Naptár konfigurálva van. apps/frappe/frappe/config/website.py,"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 @@ -2573,6 +2668,7 @@ DocType: User Social Login,User Social Login,Felhasználó közösségi bejelent apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} a (z) {1} -on {2} ponttal bírálta munkáját DocType: Contact,All,Összes DocType: Email Queue,Recipient,Címzett +DocType: Webhook,Webhook Security,Webhook biztonság DocType: Communication,Has Attachment,Melléklettel rendelkezik DocType: Address,Sales User,Értékesítési Felhasználó apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Fogd és húzd eszközzel építi és személyreszabja a nyomtatási formátumokat. @@ -2639,7 +2735,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrációs ID azonosító me DocType: Dashboard Chart,Last Synced On,Utoljára szinkronizálva DocType: Comment,Comment Type,Megjegyzés Típus DocType: OAuth Client,OAuth Client,OAuth kliens -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} bírálta a (z) {1} {2} munkáját DocType: Assignment Rule,Users,Felhasználók DocType: Address,Odisha,Orisza DocType: Report,Report Type,Report Type @@ -2664,14 +2759,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Weboldal diavetítés ele apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Önhitelesítés nem megengedett DocType: GSuite Templates,Template ID,Sablon azonosító apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,A támogatási típus ( {0} ) és a válasz típus ( {1} ) kombinációja nem engedélyezett -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Új üzenet innen {0} 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ő apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Az adatok letöltéséhez kattintson az alábbi linkre apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Engedélyezett e-mail üzenetek a {0} felhasználónak DocType: Data Migration Run,Data Migration Run,Adatátvitel futtatás DocType: Blog Post,Email Sent,Email elküldve -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,régebbi 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,removed,eltávolított apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox biztonsági mentés beállítások @@ -2726,6 +2819,7 @@ DocType: Async Task,Queued,Sorba állított DocType: Braintree Settings,Use Sandbox,Sandbox felhasználása apps/frappe/frappe/utils/goal.py,This month,Ebben a hónapban apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Új egyedi nyomtatási forma +DocType: Server Script,Before Save (Submitted Document),Mentés előtt (benyújtott dokumentum) DocType: Custom DocPerm,Create,Létrehozás apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nincs több elem a megjelenítéshez apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Ugrás az előző rekordra @@ -2782,6 +2876,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Átmozgatja a kukába DocType: Web Form,Web Form Fields,Web Űrlap mezők DocType: Data Import,Amended From,Módosított feladója +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Adjon hozzá egy súgó video linket, csak abban az esetben, ha a felhasználónak fogalma sincs arról, hogy mit kell kitöltenie a dián." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},"Figyelmeztetés: Nem sikerült megtalálni: {0}, bármely, ezzel kapcsolatos táblázatban: {1}" DocType: S3 Backup Settings,eu-north-1,eu-észak-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ez a dokumentum jelenleg várakozikó a végrehajtásra. Kérjük próbálja újra @@ -2803,6 +2898,7 @@ DocType: Blog Post,Blog Post,Blog bejegyzés DocType: Access Log,Export From,Exportálás innen apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Részletes keresés apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nem tekintheti meg a hírlevelet. +DocType: Dashboard Chart,Group By,Csoportosítva DocType: User,Interests,Érdekek apps/frappe/frappe/core/doctype/user/user.py,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 DocType: Energy Point Rule,Allot Points To Assigned Users,Pontot rendel a hozzárendelt felhasználók számára @@ -2818,6 +2914,7 @@ DocType: Assignment Rule,Assignment Rule,Hozzárendelési szabály apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Javasolt Felhasználónév: {0} DocType: Assignment Rule Day,Day,Nap apps/frappe/frappe/public/js/frappe/desk.js,Modules,Modulok +DocType: DocField,Mandatory Depends On,Kötelező attól függ apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Fizetési sikeres apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,{0} sz. levél DocType: OAuth Bearer Token,Revoked,Visszavont @@ -2825,6 +2922,7 @@ DocType: Web Page,Sidebar and Comments,Oldalsáv és megjegyzések apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nem lehet csatolni {0} dokumentumot, kérjük engedélyezze a Nyomtatás engedélyezése {0} lehetőséget a Nyomtatási beállításokban" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Az e-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiókot a Beállítás> E-mail> E-mail fiók közül" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Tekintse meg a dokumentumot itt: {0} DocType: Stripe Settings,Publishable Key,Közzétehető kulcs apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Importálás elindítása @@ -2838,13 +2936,13 @@ DocType: Currency,Fraction,Törtrész apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Az esemény szinkronizálva van a Google Naptárral. DocType: LDAP Settings,LDAP First Name Field,LDAP Utónév mező DocType: Contact,Middle Name,Középső név +DocType: DocField,Property Depends On,Az ingatlan attól függ DocType: Custom Field,Field Description,Mező leírása apps/frappe/frappe/model/naming.py,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,Email Inbox,E-mail beérkezett üzenetek apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","A (z) {1}, {2} {0} frissítése" DocType: Auto Email Report,Filters Display,Szűrők megjelenítése apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",A "módosított_from" mezőnek jelen kell lennie a módosítás végrehajtásához. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} értékelte a (z) {1} {2} -on végzett munkáját apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Szűrők mentése DocType: Address,Plant,Géppark apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Válasz mindenkinek @@ -2885,11 +2983,11 @@ DocType: Workflow State,folder-close,mappa-bezár apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Jelentés: DocType: Print Settings,Print taxes with zero amount,Adja meg az adókat nulla összeggel apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} nem szabad átnevezni +DocType: Server Script,Before Insert,Beszúrás előtt DocType: Custom Script,Custom Script,Egyéni szkript DocType: Address,Address Line 2,2. cím sor DocType: Address,Reference,Hivatkozás apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Felelős érte -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítás> E-mail> E-mail fiók menüben" DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Adatátvitel-leképezés részletek DocType: Data Import,Action,Művelet DocType: GSuite Settings,Script URL,Script URL @@ -2915,11 +3013,13 @@ DocType: User,Api Access,Api elérés DocType: DocField,In List View,Listanézetben DocType: Email Account,Use TLS,TLS használata apps/frappe/frappe/email/smtp.py,Invalid login or password,Érvénytelen belépés vagy jelszó +DocType: Scheduled Job Type,Weekly Long,Heti hosszú apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Sablon letöltése apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Egyéni JavaScript hozzáadása űrlapokhoz. ,Role Permissions Manager,Beosztás jogosultság kezelő apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Új nyomtatási formátum neve apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Oldalsáv kapcsolása +DocType: Server Script,After Save (Submitted Document),Mentés után (benyújtott dokumentum) DocType: Data Migration Run,Pull Insert,Kihúzza a beszúrást DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","A megengedett pontok maximális száma a szorzó értékével való szorzás után (Megjegyzés: Ezt a mezőt korlátozás nélkül hagyja üresen, vagy állítsa be a 0 értéket)" @@ -2939,6 +3039,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nincs telepítve apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Letöltés adatokkal apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},megváltozott értékek a (z) {0} {1} számára +DocType: Server Script,Before Cancel,Mégse előtt DocType: Workflow State,hand-right,kéz-jobb DocType: Website Settings,Subdomain,Aldoméin DocType: S3 Backup Settings,Region,Régió @@ -2984,12 +3085,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Régi jelszó DocType: S3 Backup Settings,us-east-1,us-kelet-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Hozzászólások {0} apps/frappe/frappe/core/doctype/report/report.js,"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: Onboarding Slide,Slide Fields,Diamezők DocType: Has Domain,Has Domain,Doménnnel rendelkezik DocType: User,Allowed In Mentions,Engedélyezett a megemlítésekben apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nincs még fiókja? Regisztráljon apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nem eltávolítható az ID mező apps/frappe/frappe/core/doctype/doctype/doctype.py,{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 +DocType: Notification Settings,Subscribed Documents,Feliratkozott dokumentumok apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Felhasználói beállítások DocType: Report,Reference Report,Referencia-jelentés DocType: Activity Log,Link DocType,Elérési link DocType @@ -3007,6 +3110,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,A Google Calendar Acce apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Az oldal, amit keres hiányzik. Ez azért lehet, mert átmozgatásra került, vagy van egy elírás a linkben." apps/frappe/frappe/www/404.html,Error Code: {0},Hibakód: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Leírás a listázási oldalra, sima szöveges, csak egy pár sor. (max 140 karakter)" +DocType: Server Script,DocType Event,DocType esemény apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,A (z) {0} mezők kitöltése kötelező DocType: Workflow,Allow Self Approval,Saját jóváhagyás engedélyezése DocType: Event,Event Category,Esemény kategória @@ -3023,6 +3127,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,A neve apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,A kapcsolat sikeres DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Már létezik a fedélzeti dián lévő diák típusa. DocType: DocType,Default Sort Field,Alapértelmezett rendezési mező DocType: File,Is Folder,Ez a mappa DocType: Document Follow,DocType,DocType @@ -3060,8 +3165,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Érték DocType: Workflow State,arrow-up,nyíl-fel DocType: Dynamic Link,Link Document Type,Link dokumentum típusa apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,A (z) {0} asztalhoz legalább egy sornak kell lennie +DocType: Server Script,Server Script,Szerver szkript apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Az automatikus ismétlés konfigurálásához engedélyezze az „Automatikus ismétlés engedélyezése” lehetőséget a (z) {0} helyről. DocType: OAuth Bearer Token,Expires In,Lejár ekkor +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Annak az alkalomnak a száma, ahányszor meg akarja ismételni a mezők sorozatát (pl .: ha 3 ügyfelet szeretne a diaban, állítsa ezt a mezőt 3-ra. Csak a mező első része az első kötelező.)" DocType: DocField,Allow on Submit,Benyújtáson engedélyezés DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Kivétel típusa @@ -3071,6 +3178,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Fejlécek apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Közelgő események apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Kérjük, adja meg az értékeket az Alk hozzáférés kulcshoz és Alk titkos kulcshoz" +DocType: Email Account,Append Emails to Sent Folder,E-mailek csatolása az elküldött mappához DocType: Web Form,Accept Payment,Fizetés fogadása apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Válassza ki a lista elemet apps/frappe/frappe/config/core.py,A log of request errors,A napló az igénylési hibákról @@ -3089,7 +3197,7 @@ DocType: Translation,Contributed,Hozzájárult apps/frappe/frappe/config/customization.py,Form Customization,Űrlap testreszabása apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nincs aktív munkamenet DocType: Web Form,Route to Success Link,Útvonal a sikeres linkhez -DocType: Top Bar Item,Right,Jobb +DocType: Onboarding Slide Field,Right,Jobb apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nincsenek közelgő események DocType: User,User Type,Felhasználó típusa DocType: Prepared Report,Ref Report DocType,Jelentés ref DocType @@ -3107,6 +3215,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Kérlek próbál apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Az URL-nek „http: //” vagy „https: //” -nel kell kezdődnie. apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3. lehetőség DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ezt nem lehet visszacsinálni DocType: Workflow State,Edit,Szerkesztés DocType: Website Settings,Chat Operators,Csevegőszolgáltatók DocType: S3 Backup Settings,ca-central-1,ca-Közép-1 @@ -3118,7 +3227,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,A 10-nél több oszlopot tartalmazó jelentés jobban néz ki fekvő módban. apps/frappe/frappe/database/database.py,Invalid field name: {0},Érvénytelen mezőnév: {0} DocType: Milestone,Milestone,Mérföldkő @@ -3127,7 +3235,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Ugrás a (z) {0} ol apps/frappe/frappe/email/queue.py,Emails are muted,E-mailek elnémítva apps/frappe/frappe/config/integrations.py,Google Services,Google szolgáltatások apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Fel -apps/frappe/frappe/utils/data.py,1 weeks ago,1 héttel ezelőtt +DocType: Onboarding Slide,Slide Description,Dia leírása DocType: Communication,Error,Hiba apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,"Kérjük, először üzembe helyezzen egy üzenetet" DocType: Auto Repeat,End Date,Befejezés dátuma @@ -3148,10 +3256,12 @@ DocType: Footer Item,Group Label,Csoport felirat DocType: Kanban Board,Kanban Board,Kanban pult apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,A Google Névjegyek konfigurálva vannak. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord exportálásra kerül +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Nincs e-mail fiók társítva a Felhasználóval. Kérjük, vegyen fel egy fiókot a Felhasználó> E-mail beérkezett üzenetek csoportba." DocType: DocField,Report Hide,Jelentés elrejtése apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Fa nézet nem elérhető erre {0} DocType: DocType,Restrict To Domain,Korlátozás Doménre DocType: Domain,Domain,Domén +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Érvénytelen fájl URL. Vegye fel a kapcsolatot a rendszergazdával. DocType: Custom Field,Label Help,Felirat súgó DocType: Workflow State,star-empty,csillag-üres apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Dátumokat gyakran könnyű kitalálni. @@ -3175,6 +3285,7 @@ DocType: Workflow State,hand-left,kéz-bal DocType: Data Import,If you are updating/overwriting already created records.,Ha a már létrehozott rekordokat frissít/felülír. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Ez globális DocType: Email Account,Use SSL,SSL használata +DocType: Webhook,HOOK-.####,HOROG-.#### DocType: Workflow State,play-circle,lejátszás-kör apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentumot nem lehet helyesen hozzárendelni apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Érvénytelen "depend_on" kifejezés @@ -3191,6 +3302,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Utolsó frissítés apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,A dokumentum típusához DocType: Workflow State,arrow-right,nyíl-jobbra +DocType: Server Script,API Method,API módszer DocType: Workflow State,Workflow state represents the current state of a document.,Munkafolyamat állapotámak jelenlegi állását mutatja a dokumentum. DocType: Letter Head,Letter Head Based On,Levél fej alapján apps/frappe/frappe/utils/oauth.py,Token is missing,Token hiányzik @@ -3230,6 +3342,7 @@ DocType: Comment,Relinked,Átszerkesztve DocType: Print Settings,Compact Item Print,Kompakt tétel Nyomtatás DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Az átirányítási URL +DocType: Onboarding Slide Field,Placeholder,Helykitöltő DocType: SMS Settings,Enter url parameter for receiver nos,Adjon url paramétert a fogadó számaihoz DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,A fiók nevét mindig küldõként használja @@ -3239,7 +3352,6 @@ DocType: Workflow State,Home,Kezdő oldal DocType: OAuth Provider Settings,Auto,Automatikus DocType: System Settings,User can login using Email id or User Name,A felhasználó bejelentkezhet az E-mail azonosítóval vagy a Felhasználónévvel DocType: Workflow State,question-sign,kérdőjel -apps/frappe/frappe/model/base_document.py,{0} is disabled,A (z) {0} le van tiltva apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views","A webes nézetekhez kötelező mező az ""útvonal""" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Oszlop beillesztése ez elé: {0} DocType: Energy Point Rule,The user from this field will be rewarded points,A mezőből származó felhasználó pontokat kap @@ -3264,6 +3376,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ha tulajdonos DocType: Data Migration Mapping,Push,Benyomja apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Dobja ide a fájlokat DocType: OAuth Authorization Code,Expiration time,Lejárati idő +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Nyissa meg a Dokumentumokat DocType: Web Page,Website Sidebar,Weboldal oldalsáv DocType: Web Form,Show Sidebar,Oldalsáv megjelenítése apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Be kell jelentkezie, hogy hozzáférjen ehhez {0}." @@ -3279,6 +3392,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globális hi DocType: Desktop Icon,Page,Oldal apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},"Nem található {0}, itt: {1}" apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Neveket és vezetékneveket önmagukban könnyű kitalálni. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},A dokumentum átnevezése: {0} - {1} apps/frappe/frappe/config/website.py,Knowledge Base,Tudásbázis DocType: Workflow State,briefcase,aktatáska apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Az érték nem változotatható ezen: {0} @@ -3315,6 +3429,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Nyomtatvány sablon apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Rácsnézet kapcsolása apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Ugrás a következő felvételre +DocType: System Settings,Time Format,Idő formátum apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Érvénytelen fizetési átjáró hitelesítő DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Ez az a sablonfájl, amely csak a hibát tartalmazó sorokból tevődik össze. Használja ezt a fájlt a javításhoz és az importáláshoz." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Engedélyek beállítása a dokumentum típusoknál és Beosztásoknál @@ -3357,12 +3472,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Válasz apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Oldalak a z Asztalon (helykitöltők) DocType: DocField,Collapsible Depends On,Összecsukhatóság ettől függ DocType: Print Style,Print Style Name,Nyomtatási stílus neve +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Csoportos mező mező szükséges az irányítópult-diagram létrehozásához DocType: Print Settings,Allow page break inside tables,Hagyjuk oldal break asztalok DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Nyomtatvány sablon Súgó apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,A {0} helyhez legalább egy felhasználónak kell tartoznia. DocType: DocType,Beta,Béta DocType: Dashboard Chart,Count,Számol +DocType: Dashboard Chart,Group By Type,Csoportosítása típus szerint apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Új megjegyzés a (z) {0} -ról: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},Visszaállított {0} mint {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ha aktualizál, kérjük válassza a ""Felülírás"" -t máskülönben a meglévő sorok nem kerülnek törlésre." @@ -3373,14 +3490,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Felhaszn DocType: Web Form,Web Form,Web Űrlap apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},A {0} dátumnak formátumban kell lennie: {1} DocType: About Us Settings,Org History Heading,Vállalkozás története Rovat +DocType: Scheduled Job Type,Scheduled Job Type,Ütemezett feladat típusa DocType: Print Settings,Allow Print for Cancelled,Törölt nyomtatásának engedélyezése DocType: Communication,Integrations can use this field to set email delivery status,Integrációk használhatják ezt a mezőt az e-mail kézbesítés állapotának beállításához +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nincs jogosultsága az összes összekapcsolt dokumentum visszavonására. DocType: Web Form,Web Page Link Text,Weboldal link szöveg DocType: Page,System Page,Rendszer oldal apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Alapértelmezett formátum, papírméret, nyomtatási stílus stb. beállítása." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},A (z) {0} testreszabása exportálva:
{1} DocType: Website Settings,Include Search in Top Bar,Keresés beillesztése a felső sávba +DocType: Scheduled Job Type,Daily Long,Napi hosszú DocType: GSuite Settings,Allow GSuite access,GSuite hozzáférés engedélyezése DocType: DocType,DESC,ÉCS DocType: DocType,Naming,Elnevezés @@ -3472,6 +3592,7 @@ DocType: Notification,Send days before or after the reference date,Küldjön a r DocType: User,Allow user to login only after this hour (0-24),"A felhasználó megadhatja, hogy ezen óra után jelentkezhet be (0-24)" apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Rendeljen egyenként, sorrendben" DocType: Integration Request,Subscription Notification,Előfizetési értesítés +DocType: Customize Form Field, Allow in Quick Entry ,Engedélyezze a gyors belépést apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,vagy csatolja a DocType: Auto Repeat,Start Date,Kezdés dátuma apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Érték @@ -3486,6 +3607,7 @@ DocType: Google Drive,Backup Folder ID,Biztonsági mappa azonosítója apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nem a fejlesztői módban! Állítsa be a site_config.json, vagy hozzon létre 'Egyedi' DocType." DocType: Workflow State,globe,földgolyó DocType: System Settings,dd.mm.yyyy,nn.hh.éééé +DocType: Onboarding Slide Help Link,Video,Videó DocType: Assignment Rule,Priority,Prioritás DocType: Email Queue,Unsubscribe Param,Leiratkozás Paraméter DocType: DocType,Hide Sidebar and Menu,Az oldalsáv és a menü elrejtése @@ -3497,6 +3619,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Import engedélyezése (az apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Tsz DocType: DocField,Float,Lebegőpontos DocType: Print Settings,Page Settings,Oldalbeállítások +DocType: Notification Settings,Notification Settings,Értesítési beállítások apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Megtakarítás... apps/frappe/frappe/www/update-password.html,Invalid Password,Érvénytelen jelszó apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,A (z) {0} rekord sikeresen importált a (z) {1} közül. @@ -3512,6 +3635,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Levél fej kép DocType: Address,Party GSTIN,Ügyfél GSTIN +DocType: Scheduled Job Type,Cron Format,Cron formátum apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Jelentés DocType: SMS Settings,Use POST,Használja a POS kasszát DocType: Communication,SMS,SMS @@ -3556,18 +3680,20 @@ DocType: Workflow,Allow approval for creator of the document,Dokumentum létreho apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Jelentés mentése DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API végpont érv +DocType: DocType Action,Server Action,Szerverművelet apps/frappe/frappe/core/doctype/user/user.py,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/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,A szülő mezőnek érvényes mezőnévnek kell lennie apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Sikertelen az előfizetés módosítása során DocType: LDAP Settings,LDAP Group Field,LDAP csoport mező +DocType: Notification Subscribed Document,Notification Subscribed Document,Értesítés előfizetött dokumentum apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Egyenlő apps/frappe/frappe/core/doctype/doctype/doctype.py,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 csoport felépítés fejszövege apps/frappe/frappe/utils/csvutils.py,Invalid CSV Format,Érvénytelen CSV formátum -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Hiba történt a QZ tálca alkalmazáshoz való csatlakozáskor ...

A Raw Print szolgáltatás használatához rendelkeznie kell a QZ Tray alkalmazás telepítésével és futtatásával.

Kattintson ide a QZ tálca letöltéséhez és telepítéséhez .
Kattintson ide, hogy többet megtudjon a nyers nyomtatásról ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Állítsa be a mentéseket számát DocType: DocField,Do not allow user to change after set the first time,"Ne engedje, hogy a felhasználó módosítsa, miután beállította az első időt" apps/frappe/frappe/utils/data.py,1 year ago,1 évvel ezelőtt +DocType: DocType,Links Section,Linkek szakasz apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Az összes nyomtatási, letöltési és exportálási eseménynapló megtekintése" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 hónap DocType: Contact,Contact,Kapcsolat @@ -3594,16 +3720,19 @@ DocType: Email Account,UIDVALIDITY,FELHIDERVENY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Új Email DocType: Custom DocPerm,Export,Export apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",A Google Naptár használatához engedélyezze a (z) {0} lehetőséget. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Az állapotfüggőségi mező hozzáadása {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Sikeresen frissítve {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Nem sikerült a QZ tálca: DocType: Dropbox Settings,Dropbox Settings,Dropbox beállításai DocType: About Us Settings,More content for the bottom of the page.,További tartalom a lap aljára. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ezt a dokumentumot visszavonták apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,A Google Drive biztonsági mentése sikeres. +DocType: Webhook,Naming Series,Elnevezési sorozatok DocType: Workflow,DocType on which this Workflow is applicable.,DocType melyre ez a munkafolyamat alkalmazható. DocType: User,Enabled,Engedélyezve apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Sikertelen telepítés apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Új {0}: {1} -DocType: Tag Category,Category Name,Kategória neve +DocType: Blog Category,Category Name,Kategória neve apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Szülő táblázat szükséges az al táblák adatai megszerzéséhez apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Feliratkozók importálása DocType: Print Settings,PDF Settings,PDF beállítások @@ -3639,6 +3768,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Naptár apps/frappe/frappe/client.py,No document found for given filters,Nem talált a megadott szűrőknek megfelelő dokumentumot apps/frappe/frappe/config/website.py,A user who posts blogs.,"Felhasználó, aki blogokat tesz közzé." +DocType: DocType Action,DocType Action,DocType művelet apps/frappe/frappe/model/rename_doc.py,"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 @@ -3648,6 +3778,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nem siker apps/frappe/frappe/config/integrations.py,Backup,Biztonsági mentés apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Az irányítópult-diagram létrehozásához dokumentumtípus szükséges DocType: DocField,Read Only,Csak olvasható +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nem sikerült létrehozni a borotvafizetési rendelést apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Új hírlevél DocType: Energy Point Log,Energy Point Log,Energiapont napló DocType: Print Settings,Send Print as PDF,Nyomtatvány küldése PDF-ben @@ -3673,16 +3804,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Er apps/frappe/frappe/www/login.html,Or login with,Vagy jelentkezz be ezzel DocType: Error Snapshot,Locals,Helyiek apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Keresztül közölt {0} ezen {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} megemlítette Önt egy megjegyzésben itt: {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Válassza ki a Csoportot ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pl. (55 + 434) / 4 vagy = Math.sin(Math.PI/2)... apps/frappe/frappe/utils/csvutils.py,{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 +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nem található szűrő apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,A Google Névjegyek Integrációja. DocType: Transaction Log,Transaction Log,Tranzakciós napló apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),A múlt hónap teljesítményén alapuló statisztikák ({0} - {1} -ig) DocType: Contact Us Settings,City,Város +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Elrejtése kártyák minden felhasználó számára apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Engedélyezze az Automatikus ismétlés engedélyezését a (z) {0} doctípushoz az űrlap testreszabása alatt DocType: DocField,Perm Level,Jog szint apps/frappe/frappe/www/confirm_workflow_action.html,View document,Dokumentum megtekintése @@ -3693,6 +3825,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Ha engedélyezve van, a dokumentum változásai nyomon követésre kerülnek és az idővonalban megjelennek" apps/frappe/frappe/core/doctype/doctype/doctype.py,'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 DocType: Energy Point Log,Appreciation,Felértékelődés +DocType: Dashboard Chart,Number of Groups,Csoportok száma apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Lista megtekintése DocType: Workflow,Don't Override Status,Ne írja fellül az állapotot apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Keresési kifejezés @@ -3734,7 +3867,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-Northwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,A DB-mentések számának korlátozása DocType: Custom DocPerm,Level,Szint -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Az elmúlt 30 nap DocType: Custom DocPerm,Report,Jelentés apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,"Összegnek nagyobbnak kell lennie, mint 0." apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Csatlakoztatva a QZ tálcához! @@ -3751,6 +3883,7 @@ DocType: S3 Backup Settings,us-west-2,us-nyugat-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Válassza a Gyerektáblát apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Indítsa el az elsődleges műveletet apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Változás +DocType: Social Login Key,User ID Property,Felhasználói azonosító tulajdon DocType: Email Domain,domain name,domén név DocType: Contact Email,Contact Email,Kapcsolattartó e-mailcíme DocType: Kanban Board Column,Order,Sorrend @@ -3773,7 +3906,7 @@ DocType: Contact,Last Name,Keresztnév DocType: Event,Private,Magán apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Elhagyja DocType: Event,All Day,Minden nap apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Úgy néz ki, hogy valami baj van ezen az oldalon a fizetési átjáró konfigurációval. Nem került sor kifizetésre." DocType: GCalendar Settings,State,Állam @@ -3805,7 +3938,6 @@ DocType: Workflow State,User,Felhasználó DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Cím megjelenítése a böngészőablakban, mint ""Előtag - cím""" DocType: Payment Gateway,Gateway Settings,Árjáró beállítások apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,szöveg dokumentum típusban -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Tesztek futtatása apps/frappe/frappe/handler.py,Logged Out,Kilépett apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,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 @@ -3821,6 +3953,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Összefoglalás DocType: Event,Event Participants,Esemény résztvevői DocType: Auto Repeat,Frequency,Gyakoriság +DocType: Onboarding Slide,Slide Order,Dia sorrend DocType: Custom Field,Insert After,Beszúrás utána DocType: Event,Sync with Google Calendar,Szinkronizálás a Google Naptárral DocType: Access Log,Report Name,Jelentés neve @@ -3848,6 +3981,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Weboldal tartalom. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Új beosztás hozzáadása +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Látogasson el a weboldalra +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Új megbízás DocType: Google Contacts,Last Sync On,Utolsó szinkronizálás ekkor DocType: Deleted Document,Deleted Document,Törölt dokumentum apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hoppá! Valami rosszul sült el @@ -3858,7 +3993,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Tájkép apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Kliens oldali script bővítmények Javascript alapon DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,A következő típusú doctypes adatai lesznek szűrve -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Ütemező inaktív +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Ütemező inaktív DocType: Blog Settings,Blog Introduction,Blog Bevezetés DocType: Global Search Settings,Search Priorities,Keresési prioritások DocType: Address,Office,Iroda @@ -3868,12 +4003,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Irányítópult diagram link DocType: User,Email Settings,Email beállítások apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Dobja ide DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ha engedélyezve van, a felhasználó bármilyen IP-címről bejelentkezhet a Two Factor Auth használatával, ez minden felhasználó számára beállítható a Rendszerbeállításokban" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Nyomtatóbeállítások ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Kérjük, adja meg a jelszavát a folytatáshoz" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Nekem apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nem érvényes Állam apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Az összes dokumentumtípusra vonatkozik -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapont frissítés +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energiapont frissítés +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Csak a munkákat futtassa naponta, ha inaktív (napokon)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}'" DocType: Chat Message,Room Type,Szoba típus DocType: Data Import Beta,Import Log Preview,Napló előnézet importálása @@ -3882,6 +4017,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-kör DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP felhasználó létrehozása és leképezése apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,A mai események apps/frappe/frappe/core/doctype/user/user.py,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. ,Usage Info,Használat Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Billentyűparancsok megjelenítése @@ -3898,6 +4034,7 @@ DocType: DocField,Unique,Egyedi apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} értékelve {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Részleges siker DocType: Email Account,Service,Szervíz +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó DocType: File,File Name,Fájl neve apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),"Nem találja ezt {0}, ehhez {0} ({1})" apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Feloszt.: {0} @@ -3911,6 +4048,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Regisztr DocType: GCalendar Settings,Enable,Engedélyezve DocType: Google Maps Settings,Home Address,Lakcím apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),"5000 rekordot tölthet fel egyszerre. (Kevesebb lehet, egyes esetekben)" +DocType: Report,"output in the form of `data = [columns, result]`","kimenet `data = [oszlopok, eredmény]` formában" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Alkalmazható dokumentumtípusok apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Szabályok beállítása a felhasználói hozzárendelésekhez. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nem elég Jogosultság ehhez {0} @@ -3926,7 +4064,6 @@ DocType: Communication,To and CC,Címzett és CC DocType: SMS Settings,Static Parameters,Statikus paraméterek DocType: Chat Message,Room,Szoba apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},frissítve erre: {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,A háttér jobok nem futnak. Vegye fel a kapcsolatot az adminisztrátorral DocType: Portal Settings,Custom Menu Items,Egyedi Menüpontok apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"A weboldal diavetítéshez csatolt, összes képének, nyilvánosnak kell lennie" DocType: Workflow State,chevron-right,Chevron-jobb @@ -3941,10 +4078,12 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} érték kiválasztva DocType: DocType,Allow Auto Repeat,Engedélyezze az automatikus ismétlést apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nincs megjeleníthető érték +DocType: DocType,URL for documentation or help,Dokumentáció vagy segítség URL-je DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-mail sablon apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,A (z) {0} rekord sikeresen frissítve. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,A bejelentkezési név és a jelszó is szükséges +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Let \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Kérjük, frissítse a legfrissebb dokumentum eléréséhez." DocType: User,Security Settings,Biztonsági beállítások apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Oszlop hozzáadása @@ -3954,6 +4093,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Szűrő meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},"Kérjük, csatolja a következőt: {0}: {1}" DocType: Web Page,Set Meta Tags,Metacímkék beállítása +DocType: Email Account,Use SSL for Outgoing,Használjon SSL-t a kimenőhez 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: S3 Backup Settings,Backup Limit,Biztonsági mentések számának felső határa DocType: Dashboard Chart,Line,Vonal @@ -3986,4 +4126,3 @@ DocType: DocField,Ignore User Permissions,Felhasználói engedélyek figyelmen k apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Sikeresen elmentve apps/frappe/frappe/core/doctype/user/user.py,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 -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Mutasd a naplót diff --git a/frappe/translations/id.csv b/frappe/translations/id.csv index 3fb4c8f31b..1be1606911 100644 --- a/frappe/translations/id.csv +++ b/frappe/translations/id.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Silakan pilih Bidang Jumlah. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Memuat file impor ... DocType: Assignment Rule,Last User,Pengguna Terakhir -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Sebuah tugas baru, {0}, telah diberikan kepada Anda oleh {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Default Sesi Disimpan apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Muat Ulang File DocType: Email Queue,Email Queue records.,Catatan Antrian Surel. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,Email Pengguna DocType: User,Username,Nama pengguna apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Impor Zip +DocType: Scheduled Job Type,Create Log,Buat Log apps/frappe/frappe/model/base_document.py,Value too big,Nilai terlalu besar DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Jalankan Script Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Bulanan DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktifkan masuk apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Bahaya -DocType: Address,Email Address,Alamat Email +apps/frappe/frappe/www/login.py,Email Address,Alamat Email DocType: Workflow State,th-large,th-besar DocType: Communication,Unread Notification Sent,Pemberitahuan belum dibaca Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Bata DocType: DocType,Is Published Field,Apakah Diterbitkan Lapangan DocType: GCalendar Settings,GCalendar Settings,Pengaturan GCalendar DocType: Email Group,Email Group,Kelompok Surel +apps/frappe/frappe/__init__.py,Only for {},Hanya untuk {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalender Google - Tidak dapat menghapus Acara {0} dari Kalender Google, kode kesalahan {1}." DocType: Event,Pulled from Google Calendar,Ditarik dari Kalender Google DocType: Note,Seen By,Dilihat oleh apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Tambahkan Beberapa -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Anda memperoleh beberapa poin energi apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Bukan Gambar Pengguna yang valid. DocType: Energy Point Log,Reverted,Dikembalikan DocType: Success Action,First Success Message,Pesan Sukses Pertama @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Tidak suka apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nilai yang tidak benar: {0} harus {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Sifat perubahan lapangan (hide, dibaca, izin dll)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Menghargai +DocType: Notification Settings,Document Share,Berbagi Dokumen DocType: Workflow State,lock,mengunci apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Pengaturan untuk Hubungi Kami PT. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator Logged In @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Jika diaktifkan, dokumen ditandai sebagai terlihat, pertama kali pengguna membukanya" DocType: Auto Repeat,Repeat on Day,Ulangi pada hari DocType: DocField,Color,Warna +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Tandai semua telah dibaca DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,indent kanan DocType: Has Role,Has Role,memiliki Peran @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Perlihatkan Traceback DocType: DocType,Default Print Format,Standar Print Format DocType: Workflow State,Tags,tag +DocType: Onboarding Slide,Slide Type,Jenis Slide apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Tidak ada: Akhir Alur Kerja apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} field tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang non-unik" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Jenis dokumen @@ -135,7 +138,6 @@ DocType: Language,Guest,Tamu DocType: DocType,Title Field,Judul Lapangan DocType: Error Log,Error Log,Catatan eror apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL tidak valid -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 hari terakhir apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Mengulangi seperti "abcabcabc" hanya sedikit lebih sulit untuk menebak dari "abc" DocType: Notification,Channel,Saluran apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jika Anda pikir ini adalah tidak sah, silakan mengubah password Administrator." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Client (Nasabah) apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Pilih Kolom apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Formulir ini telah dimodifikasi setelah Anda dimuat DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Log Pemberitahuan 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Buka Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Tampaknya ada masalah dengan konfigurasi strip server. Jika terjadi kegagalan, jumlah itu akan dikembalikan ke akun Anda." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Im apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Kirim DocType: Workflow Action Master,Workflow Action Name,Nama Tindakan Alur Kerja apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType tidak dapat digabungkan -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Bukan file zip DocType: Global Search DocType,Global Search DocType,DocType Pencarian Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Surel Terkirim? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart apps/frappe/frappe/desk/form/save.py,Did not cancel,Tidak membatalkan DocType: Social Login Key,Client Information,Informasi klien +DocType: Energy Point Rule,Apply this rule only once per document,Terapkan aturan ini hanya sekali per dokumen DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Hanya Baca Tergantung apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Login sebagai Guest atau Administrator DocType: Email Account,UNSEEN,TAK TERLIHAT apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Alasan 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Tidak ada kegiatan +DocType: Server Script,Script Manager,Pengelola Skrip +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Tidak ada kegiatan apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikasi Pihak Ketiga apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Tidak Ada Acara Hari Ini apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Anda tidak dapat memberikan poin ulasan untuk diri sendiri apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType harus Submittable untuk Doc Event yang dipilih DocType: Workflow State,circle-arrow-up,lingkaran-panah-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Tidak diperbolehkan untuk {0}: {1}. Bidang terbatas: {2} 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,You are not allowed to delete a standard Website Theme,Anda tidak diizinkan menghapus Tema Website standar +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Buat {0} pertama Anda DocType: Data Import,Log Details,Rincian log DocType: Workflow Transition,Example,Contoh DocType: Webhook Header,Webhook Header,Header Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Latar Belakang Obrolan apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Tandai sebagai membaca apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Memperbarui {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Slide Onboarding {0} dengan urutan slide yang sama sudah ada apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Nonaktifkan Laporan DocType: Translation,Contributed Translation Doctype Name,Nama Dokumen Terjemahan yang Dikontribusi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir DocType: PayPal Settings,Redirect To,redirect Untuk DocType: Data Migration Mapping,Pull,Tarik DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Catatan internal saham doku DocType: Energy Point Settings,Review Levels,Tinjau Tingkat DocType: Workflow State,Comment,Komentar DocType: Data Migration Plan,Postprocess Method,Metode Pascaproses +DocType: DocType Action,Action Type,tipe aksi apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Memotret DocType: Assignment Rule,Round Robin,Usul apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Anda dapat mengubah dokumen yang telah terkirim dengan membatalkannya, kemudian mengubahnya." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Disimpan Sebagai DocType: Comment,Seen,Terlihat apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Tampilkan lebih detail +DocType: Server Script,Before Submit,Sebelum Kirim 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,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,Archive,arsip @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Salah fieldname {0} dalam konfigurasi add_fetch dari custom script apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Pilih Google Kontak yang kontaknya harus disinkronkan. DocType: Web Page,Main Section (HTML),Bagian Utama (HTML) +DocType: Scheduled Job Type,Annual,Tahunan DocType: Workflow State,headphones,headphone apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Sandi diperlukan atau pilih Menunggu sandi DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,misalnya replies@yourcomany.com. Semua balasan akan datang ke inbox ini. DocType: Slack Webhook URL,Slack Webhook URL,URL Webhook Lambat +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Menentukan urutan slide di wizard. Jika slide tidak ditampilkan, prioritas harus ditetapkan ke 0." DocType: Data Migration Run,Current Mapping,Pemetaan saat ini apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Email yang valid dan nama diperlukan apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Jadikan semua lampiran pribadi @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Aturan Transisi apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Menampilkan hanya {0} baris pertama dalam pratinjau apps/frappe/frappe/core/doctype/report/report.js,Example:,Contoh: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Batasan DocType: Workflow,Defines workflow states and rules for a document.,Mendefinisikan status alur kerja dan aturan untuk dokumen. DocType: Workflow State,Filter,filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Periksa Log Kesalahan untuk informasi lebih lanjut: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Pekerjaan apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} log out: {1} DocType: Address,West Bengal,Benggala Barat +DocType: Onboarding Slide,Information,Informasi apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable DocType: Transaction Log,Row Index,Indeks Baris DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Tombol Bantuan DocType: Kanban Board Column,purple,ungu DocType: About Us Settings,Team Members,Anggota Tim +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Akan menjalankan pekerjaan terjadwal hanya sekali sehari untuk situs tidak aktif. Default 4 hari jika diatur ke 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Pekerjaan Terjadwal DocType: Custom DocPerm,Permissions,Otorisasi apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks untuk integrasi internal DocType: Dropbox Settings,Allow Dropbox Access,Izinkan Akses Dropbox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Pinda DocType: Email Flag Queue,Email Flag Queue,Tanda Antrian Surel DocType: Access Log,Columns / Fields,Kolom / Bidang apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets untuk Format Cetak +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Bidang Fungsi Agregat diperlukan untuk membuat bagan dasbor apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,tidak dapat mengidentifikasi terbuka {0}. Mencoba sesuatu yang lain. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Informasi Anda telah dikirim apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Pengguna {0} tidak dapat dihapus @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Nama Field DocType: Assignment Rule,Assign To Users,Tetapkan Untuk Pengguna apps/frappe/frappe/public/js/frappe/utils/utils.js,or,atau apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nama modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Terus +DocType: Onboarding Slide,Continue,Terus apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integrasi Google dinonaktifkan. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,sertifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Memverifikasi ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Tugas Anda pada {0} {1} telah dihapus apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Data kolom pertama harus kosong. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Tampilkan semua Versi apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Lihat Komentar @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Membatasi IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Dasbor apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Tidak dapat mengirim email saat ini apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalender Google - Tidak dapat memperbarui Acara {0} di Kalender Google, kode kesalahan {1}." +DocType: Notification Log,Email Content,Konten Email apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cari atau ketik perintah DocType: Activity Log,Timeline Name,Nama Timeline apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Hanya satu {0} yang dapat ditetapkan sebagai utama. DocType: Email Account,e.g. smtp.gmail.com,misalnya smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Tambah Aturan Baru DocType: Contact,Sales Master Manager,Master Manajer Penjualan +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Anda harus mengaktifkan JavaScript agar aplikasi Anda berfungsi. DocType: User Permission,For Value,Untuk nilai DocType: Event,Google Calendar ID,ID Kalender Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Satu Langkah terakhir @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Bidang Nama Tengah LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Mengimpor {0} dari {1} DocType: GCalendar Account,Allow GCalendar Access,Izinkan Akses GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} adalah kolom wajib +DocType: DocType,Documentation Link,Tautan Dokumentasi apps/frappe/frappe/templates/includes/login/login.js,Login token required,Token Login diperlukan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Peringkat Bulanan: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pilih beberapa item daftar @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL File DocType: Version,Table HTML,tabel HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Tambahkan Pelanggan +DocType: Notification Log,Energy Point,Titik Energi apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Acara Mendatang untuk Hari Ini DocType: Google Calendar,Push to Google Calendar,Dorong ke Kalender Google DocType: Notification Recipient,Email By Document Field,Surel Dengan Isian Dokumen @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Jauh DocType: Currency,Fraction Units,Unit Fraksi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} dari {1} ke {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Tandai Selesai DocType: Chat Message,Type,Jenis DocType: Google Settings,OAuth Client ID,ID Klien OAuth DocType: Auto Repeat,Subject,Perihal apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Kembali ke Meja DocType: Web Form,Amount Based On Field,Jumlah Berdasarkan Bidang +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} tidak memiliki versi yang dilacak. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Pengguna wajib untuk Berbagi DocType: DocField,Hidden,Tersembunyi DocType: Web Form,Allow Incomplete Forms,Izikan Formulir tidak lengkap @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Silahkan cek email Anda untuk verifikasi apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Lipat tidak bisa di akhir formulir DocType: Communication,Bounced,Memantul +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,dari DocType: Deleted Document,Deleted Name,Nama dihapus apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistem dan Pengguna DocType: Workflow Document State,Doc Status,Status Doc @@ -521,6 +546,7 @@ DocType: Language,Language Code,Kode bahasa DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Catatan: Secara default email untuk cadangan gagal dikirim. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Tambahkan Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS dikirim ke nomor berikut: {0} +DocType: Notification Settings,Assignments,Tugas apps/frappe/frappe/utils/data.py,{0} and {1},{0} dan {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Mulai percakapan. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Selalu menambahkan "Draft" Menuju rancangan pencetakan dokumen @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Pemetaan Saat Ini Mulai apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email telah ditandai sebagai spam DocType: Comment,Website Manager,Website Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Unggahan File Terputus. Silahkan coba lagi. +DocType: Data Import Beta,Show Failed Logs,Tampilkan Log Gagal apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Terjemahan apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Anda memilih dokumen yang masih bersifat Rancangan atau yang telah Dibatalkan apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumen {0} telah diatur untuk menyatakan {1} oleh {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumen Antri DocType: GSuite Templates,Destination ID,ID tujuan DocType: Desktop Icon,List,daftar DocType: Activity Log,Link Name,Link Nama +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Kamu berlindung \ DocType: System Settings,mm/dd/yyyy,hh / bb / tttt +DocType: Onboarding Slide,Onboarding Slide,Slide Onboarding apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Kata sandi salah: DocType: Print Settings,Send document web view link in email,Mengirim tautan tampilan web dokumen dalam email apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Kembali @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,Abu-abu gelap apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Sukses: {0} ke {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Penurunan +DocType: Dashboard Chart,Aggregate Function Based On,Fungsi Agregat Berdasarkan apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Silakan duplikat ini untuk membuat perubahan apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Tekan Enter untuk menyimpan apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generasi PDF gagal karena link gambar rusak @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Sebelum hari apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Acara Harian harus selesai pada Hari yang Sama. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ... DocType: Workflow State,volume-down,Volume-down +DocType: Onboarding Slide,Help Links,Tautan Bantuan apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Akses tidak diizinkan dari Alamat IP ini +DocType: Notification Settings,Enable Email Notifications,Aktifkan Pemberitahuan Email apps/frappe/frappe/desk/reportview.py,No Tags,Tidak ada Tags DocType: Email Account,Send Notification to,Kirim Pemberitahuan untuk DocType: DocField,Collapsible,Collapsible @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Cadangan Terakhir Aktif DocType: Customize Form Field,Customize Form Field,Sesuaikan Form Lapangan DocType: Energy Point Rule,For Document Event,Untuk Acara Dokumen DocType: Website Settings,Chat Room Name,Nama Ruang Obrolan +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Tidak berubah DocType: OAuth Client,Grant Type,Jenis Donasi apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Periksa Dokumen yang dapat dibaca oleh Pengguna DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,meng DocType: Auto Repeat,Quarterly,Triwulan apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Domain Email tidak dikonfigurasi untuk akun ini, Buat baru?" DocType: User,Reset Password Key,Reset Password Key +DocType: Dashboard Chart,All Time,Sepanjang waktu apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status Dokumen Ilegal untuk {0} DocType: Email Account,Enable Auto Reply,Aktifkan Auto Reply apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Tidak Terlihat @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Pesan DocType: Email Account,Notify if unreplied,Beritahu jika unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Scan QR Code dan masukkan hasil kode yang ditampilkan. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktifkan Gradien +DocType: Scheduled Job Type,Hourly Long,Per Jam Panjang DocType: System Settings,Minimum Password Score,Skor Kata Kunci Minimum DocType: DocType,Fields,Bidang DocType: System Settings,Your organization name and address for the email footer.,Nama dan alamat organisasi Anda untuk footer email. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Induk Tabel apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup selesai! apps/frappe/frappe/config/desktop.py,Developer,Pembangun apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Dibuat +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Untuk mengaktifkannya ikuti instruksi di tautan berikut: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} di baris {1} tidak dapat memiliki URL dan item turunan apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Setidaknya harus ada satu baris untuk tabel berikut: {0} DocType: Print Format,Default Print Language,Bahasa Cetak Default apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Leluhur Dari apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Akar {0} tidak dapat dihapus +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Tidak ada log yang gagal apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Belum ada komentar apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui Pengaturan SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Kedua DOCTYPE dan Nama diperlukan @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Items apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Sehari-hari +DocType: Onboarding Slide,Max Count,Jumlah Maks apps/frappe/frappe/config/users_and_permissions.py,User Roles,Peran Pengguna DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Setter Properti menimpa sebuah DOCTYPE standar atau properti Bidang apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Tidak bisa diperbarui: Tautan Salah / Kadaluarsa. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Tuan rumah DocType: Data Import Beta,Import File,Impor File +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Kesalahan Templat apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolom {0} sudah ada. DocType: ToDo,High,Tinggi apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Acara baru @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Tampilkan dalam filter DocType: Address,Daman and Diu,Daman dan Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Proyek DocType: Address,Personal,Pribadi +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Pengaturan Pencetakan Mentah ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Lihat https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region untuk detailnya. apps/frappe/frappe/config/settings.py,Bulk Rename,Rename massal DocType: Email Queue,Show as cc,Tampilkan sebagai cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Ambil video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informasi pengantar untuk Hubungi Kami Halaman DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Membatalkan dokumen DocType: User,Send Notifications for Email threads,Kirim Pemberitahuan untuk utas Email apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Tidak dalam Mode Developer @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,File cadang DocType: DocField,In Global Search,Di Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-kiri -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Hal ini berisiko untuk menghapus file ini: {0}. Silahkan hubungi System Manager Anda. DocType: Currency,Currency Name,Nama Mata Uang apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Tidak ada Email @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Bidang Pengguna DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Dorong Hapus apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} sudah berhenti berlangganan untuk {1} {2} +DocType: Scheduled Job Type,Stopped,Terhenti apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Tidak menghapus apps/frappe/frappe/desk/like.py,Liked,Menyukai apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Kirim sekarang apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","DocType standar tidak dapat memiliki format cetak standar, gunakan Customize Form" +DocType: Server Script,Allow Guest,Izinkan Tamu DocType: Report,Query,Query DocType: Customize Form,Sort Order,Tata Urutan apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Metode Two Factor Authentication apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Pertama-tama atur nama dan simpan catatannya. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 catatan +DocType: DocType Link,Link Fieldname,Tautan Fieldname apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Bersama dengan {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Berhenti berlangganan DocType: View Log,Reference Name,Referensi Nama apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Ganti pengguna +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pertama apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Perbarui Terjemahan DocType: Error Snapshot,Exception,Pengecualian DocType: Email Account,Use IMAP,Gunakan IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Aturan yang mendefinisikan transisi status dalam alur kerja. DocType: File,Folder,Map DocType: Website Route Meta,Website Route Meta,Rute Situs Web Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Bidang Slide Onboarding DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Surat edaran Manajer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Pilihan 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Men apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurasi Grafik DocType: User,Last IP,IP Terakhir apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Silakan tambahkan subjek ke email Anda -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Dokumen baru {0} telah dibagikan dengan Anda {1}. DocType: Data Migration Connector,Data Migration Connector,Konektor Migrasi Data apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} dikembalikan {1} DocType: Email Account,Track Email Status,Lacak Status Email @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Standar Outgoing DocType: Workflow State,play,bermain apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klik link di bawah ini untuk melengkapi pendaftaran Anda dan mengatur sandi baru apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Tidak menambahkan +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} diperoleh {1} poin untuk {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Tidak ada Akun Surel yang Diberikan DocType: S3 Backup Settings,eu-west-2,eu-barat-2 DocType: Contact Us Settings,Contact Us Settings,Hubungi Kami Settings @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Mencari . DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Batas Lampiran maksimum untuk catatan ini tercapai. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Cari berdasarkan nama file atau ekstensi +DocType: Onboarding Slide,Slide Title,Judul Salindia DocType: Notification,View Properties (via Customize Form),Listing (melalui Customize Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik pada sebuah file untuk memilihnya. DocType: Note Seen By,Note Seen By,Catatan Dilihat Oleh @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Bagikan URL DocType: System Settings,Allow Consecutive Login Attempts ,Izinkan Upaya Masuk Berturut-turut apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Terjadi kesalahan selama proses pembayaran. Silakan hubungi kami. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Jika Jenis Slide adalah Buat atau Pengaturan harus ada metode 'create_onboarding_docs' dalam file {ref_doctype} .py terikat untuk dieksekusi setelah slide selesai. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} hari yang lalu DocType: Email Account,Awaiting Password,Menunggu Sandi DocType: Address,Address Line 1,Alamat Baris 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Bukan Descendants Of DocType: Contact,Company Name,Nama Perusahaan DocType: Custom DocPerm,Role,Peran -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Setelan ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ke browser Anda apps/frappe/frappe/utils/data.py,Cent,Sen ,Recorder,Perekam @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Lacak jika email Anda telah dibuka oleh penerima.
Catatan: Jika Anda mengirim ke beberapa penerima, bahkan jika 1 penerima membaca email, itu akan dianggap "Dibuka"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Hilang Nilai Diperlukan apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Izinkan Google Kontak Mengakses +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Terbatas DocType: Data Migration Connector,Frappe,Frape apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Tandai sebagai Belum dibaca DocType: Activity Log,Operation,Operasi @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Izinkan Cetak DocType: Communication,Clicked,Diklik apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Berhenti mengikuti apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Silakan atur Akun Email default dari Pengaturan> Email> Akun Email apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Dijadwalkan untuk mengirim DocType: DocType,Track Seen,track Dilihat DocType: Dropbox Settings,File Backup,Cadangan File @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Tidak ada {0} apps/frappe/frappe/config/customization.py,Add custom forms.,Tambah formulir kustom. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} di {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,disampaikan dokumen ini -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistem ini menyediakan banyak peran yang telah ditentukan. Anda dapat menambahkan peran baru untuk mengatur hak akses lebih halus. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nama Pemicu -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domain +DocType: Onboarding Slide,Domains,Domain DocType: Blog Category,Blog Category,Kategori Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: , DocType: Role Permission for Page and Report,Roles HTML,Peran HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Sabtu DocType: User,Represents a User in the system.,Merupakan Pengguna dalam sistem. DocType: List View Setting,Disable Auto Refresh,Nonaktifkan Refresh Otomatis DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Tugas {0}, yang ditugaskan untuk {1}, telah ditutup." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Tutup jendela ini DocType: Print Format,Print Format Type,Print Format Type DocType: Newsletter,A Lead with this Email Address should exist,Pelanggan Prospek dengan alamat email ini harus ada @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Pengaturan SMTP untuk e apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pilih sebuah DocType: Data Export,Filter List,Daftar Filter DocType: Data Export,Excel,Unggul +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Reply Pesan DocType: Data Migration Mapping,Condition,Kondisi apps/frappe/frappe/utils/data.py,{0} hours ago,{0} jam yang lalu @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Kontributor DocType: Communication,Sent Read Receipt,Mengirim Baca Receipt DocType: Email Queue,Unsubscribe Method,Metode berhenti berlangganan +DocType: Onboarding Slide,Add More Button,Tambahkan Lebih Banyak Tombol DocType: GSuite Templates,Related DocType,Terkait DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Edit untuk menambahkan konten apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Pilih Bahasa apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detail kartu apps/frappe/frappe/__init__.py,No permission for {0},Tidak ada izin untuk {0} DocType: DocType,Advanced,Lanjutan +DocType: Onboarding Slide,Slide Image Source,Geser Sumber Gambar apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Tampaknya API Key atau API Secret adalah salah !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Referensi: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Nyonya @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Nahkoda DocType: DocType,User Cannot Create,Pengguna Tidak dapat Buat apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Berhasil Dilakukan apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Akses Dropbox disetujui! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Anda yakin ingin menggabungkan {0} dengan {1}? DocType: Customize Form,Enter Form Type,Masukkan Form Type DocType: Google Drive,Authorize Google Drive Access,Otorisasi Akses Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parameter yang hilang Nama Kanban Board @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Membiarkan DocType, DocType. Hati-hati!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Format disesuaikan untuk Pencetakan, Surel" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jumlah dari {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Diperbarui Ke Versi Baru DocType: Custom Field,Depends On,Tergantung Pada DocType: Kanban Board Column,Green,Hijau DocType: Custom DocPerm,Additional Permissions,Izin Tambahan @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Sosial apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Kalender - Tidak dapat membuat Kalender untuk {0}, kode kesalahan {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Editing Row DocType: Workflow Action Master,Workflow Action Master,Induk Tindakan Alur Kerja +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Hapus semua DocType: Custom Field,Field Type,Field Type apps/frappe/frappe/utils/data.py,only.,saja. DocType: Route History,Route History,Riwayat Rute @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Lupa kata sandi? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,server error +DocType: Server Script,After Delete,Setelah Hapus apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Lihat semua laporan sebelumnya. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Id Login diperlukan DocType: Website Slideshow,Website Slideshow,Situs Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Tidak ada data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Menghubungkan bahwa situs web halaman rumah. Links Standard (index, login, produk, blog, tentang, kontak)" +DocType: Server Script,After Submit,Setelah Kirim apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Otentikasi gagal saat menerima surel dari Akun surel {0}. Pesan dari server: {1} DocType: User,Banner Image,Spanduk Gambar DocType: Custom Field,Custom Field,Bidang Kustom @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Jika pengguna memiliki peran apapun diperiksa, maka pengguna menjadi "Sistem Pengguna". "Sistem Pengguna" memiliki akses ke desktop" DocType: System Settings,Date and Number Format,Tanggal dan Nomor Format apps/frappe/frappe/model/document.py,one of,Salah satu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Memeriksa satu saat apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Tampilkan tag DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna +DocType: DocType,Actions,Tindakan DocType: Workflow State,align-justify,rata-kanan-kiri DocType: User,Middle Name (Optional),Nama Tengah (Opsional) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Tidak Diijinkan @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,No Results DocType: System Settings,Security,Keamanan apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Dijadwalkan untuk mengirim ke {0} penerima apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Memotong +DocType: Server Script,After Save,Setelah Simpan apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},berganti nama dari {0} ke {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} dari {1} ({2} baris dengan anak-anak) DocType: Currency,**Currency** Master,**Mata Uang** Utama @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Filter Nilai DocType: Communication,User Tags,Pengguna Tags DocType: Data Migration Run,Fail,Gagal DocType: Workflow State,download-alt,mengunduh-alt +DocType: Scheduled Job Type,Last Execution,Eksekusi Terakhir DocType: Data Migration Run,Pull Failed,Tarik Gagal apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Tampilkan / Sembunyikan Kartu DocType: Communication,Feedback Request,Masukan Permintaan apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Impor Data dari file CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,bidang berikut yang hilang: +DocType: Notification Log,From User,Dari Pengguna apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Membatalkan {0} DocType: Web Page,Main Section,Bagian Utama DocType: Page,Icon,icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Petunjuk: Sertakan simbol, angka dan huruf kapital di dalam kata sandi" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurasikan pemberitahuan untuk menyebutkan, tugas, titik energi, dan lainnya." DocType: DocField,Allow in Quick Entry,Izinkan dalam Entri Cepat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,hh / bb / tttt @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL tema DocType: Customize Form,Sort Field,Urutkan Lapangan DocType: Razorpay Settings,Razorpay Settings,Pengaturan Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Mengedit Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Tambah Lagi DocType: System Settings,Session Expiry Mobile,Sesi kadaluarsa Ponsel apps/frappe/frappe/utils/password.py,Incorrect User or Password,Pengguna atau Kata Sandi salah apps/frappe/frappe/templates/includes/search_box.html,Search results for,Hasil pencarian @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Aturan Titik Energi DocType: Communication,Delayed,Terlambat apps/frappe/frappe/config/settings.py,List of backups available for download,Daftar cadangan yang tersedia untuk diunduh +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Coba Impor Data baru apps/frappe/frappe/www/login.html,Sign up,Daftar apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar +DocType: Webhook,Enable Security,Aktifkan Keamanan apps/frappe/frappe/config/customization.py,Dashboards,Dasbor DocType: Test Runner,Output,Keluaran DocType: Milestone,Track Field,Lacak Bidang @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Tetapkan Properti Setelah Pemberi apps/frappe/frappe/config/customization.py,Add fields to forms.,Menambahkan kolom ke form. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sepertinya ada yang salah dengan konfigurasi Paypal situs ini. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Tambahkan Ulasan +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} menetapkan tugas baru {1} {2} untuk Anda apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Ukuran Fon (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Tetapkan Filter DocType: Contact Us Settings,Email ID,ID Email DocType: Energy Point Rule,Multiplier Field,Bidang Pengganda +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Tidak dapat membuat pesanan Razorpay. Silakan hubungi Administrator DocType: Dashboard Chart,Time Interval,Jarak waktu DocType: Activity Log,Keep track of all update feeds,Lacak semua perbaruan masukan +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} berbagi dokumen {1} {2} dengan Anda 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,kunci DocType: Address,Contacts,Kontak DocType: System Settings,Setup Complete,Pengaturan Selesai apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Laporan dari seluruh saham dokumen +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Templat impor harus bertipe .csv, .xlsx atau .xls" apps/frappe/frappe/www/update-password.html,New Password,Kata sandi Baru apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} hilang apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Maaf! Anda tidak dapat menghapus komentar yang dihasilkan secara otomatis @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Menjalankan DocType: Blog Post,Content (HTML),Konten (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Setup untuk DocType: Personal Data Download Request,User Name,Nama pengguna DocType: Workflow State,minus-sign,minus tanda apps/frappe/frappe/public/js/frappe/request.js,Not Found,Tidak ditemukan @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Tidak ada {0} izin apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izin khusus ekspor apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Tidak ada item yang ditemukan. DocType: Data Export,Fields Multicheck,Bidang Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Selesai DocType: Activity Log,Login,Masuk DocType: Web Form,Payments,2. Payment (Pembayaran) apps/frappe/frappe/www/qrcode.html,Hi {0},Hai {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integrasi Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} mengembalikan poin Anda pada {1} {2} DocType: System Settings,Enable Scheduled Jobs,Aktifkan Jobs Terjadwal apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Catatan: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Tidak aktif @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Templa apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Kesalahan izin apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nama {0} tidak dapat {1} DocType: User Permission,Applicable For,Berlaku Untuk +DocType: Dashboard Chart,From Date,Dari Tanggal apps/frappe/frappe/core/doctype/version/version_view.html,Success,Sukses apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesi berakhir DocType: Kanban Board Column,Kanban Board Column,Kolom papan Kanban @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Keb apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; tidak diijinkan dalam kondisi DocType: Async Task,Async Task,Async Tugas DocType: Workflow State,picture,gambar -apps/frappe/frappe/www/complete_signup.html,Complete,Lengkap +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Lengkap DocType: DocType,Image Field,Bidang gambar DocType: Print Format,Custom HTML Help,Custom HTML Bantuan DocType: LDAP Settings,Default Role on Creation,Peran Default pada Pembuatan @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Negara berikutnya DocType: User,Block Modules,Blok Modul DocType: Print Format,Custom CSS,Kustom CSS +DocType: Energy Point Rule,Apply Only Once,Terapkan Hanya Sekali apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Tambah komentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Diabaikan: {0} ke {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Standar Masuk DocType: Workflow State,repeat,ulangi DocType: Website Settings,Banner,Spanduk apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Nilai harus salah satu dari {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Batalkan Semua Dokumen DocType: Role,"If disabled, this role will be removed from all users.","Jika dinonaktifkan, peran ini akan dihapus dari semua pengguna." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Buka Daftar {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Bantuan Pencarian @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Terdaftar t apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ulangi Otomatis untuk dokumen ini telah dinonaktifkan. DocType: DocType,Hide Copy,Sembunyikan Duplikat apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Hapus semua peran +DocType: Server Script,Before Save,Sebelum Menyimpan apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} harus merupakan kode unik apps/frappe/frappe/model/base_document.py,Row,Baris apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Template Email" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Berhasil diimpor {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Kirim pesan berhenti berlangganan dengan email -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Mengedit Judul apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname yang akan menjadi DocType untuk bidang link ini. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumen diberikan kepada Anda dan oleh Anda. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Anda juga dapat menyalin-menempel ini @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Pasang Gambar DocType: Workflow State,list-alt,daftar-alt apps/frappe/frappe/www/update-password.html,Password Updated,Password Diperbarui +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Langkah untuk memverifikasi login anda apps/frappe/frappe/utils/password.py,Password not found,Sandi tidak ditemukan +DocType: Webhook,Webhook Secret,Rahasia Webhook DocType: Data Migration Mapping,Page Length,Panjang halaman DocType: Email Queue,Expose Recipients,Paparan Penerima apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Tambahkan Untuk wajib untuk mail masuk @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Ukuran Lampiran (dalam MB) apps/frappe/frappe/www/login.html,Have an account? Login,Punya akun? Masuk +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Pengaturan Cetak ... DocType: Workflow State,arrow-down,panah-bawah apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Baris {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Pengguna tidak diperbolehkan untuk menghapus {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Rahasia DocType: Tag Link,Document Title,Judul dokumen apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Wajib) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu DocType: Social Login Key,Social Login Provider,Penyedia Login Sosial apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Tambahkan Komentar lain apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Tidak ada data yang ditemukan dalam file. Tolong pasang kembali file baru dengan data. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,tangan-ke bawah apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Tidak ada bidang yang ditemukan yang dapat digunakan sebagai Kolom Kanban. Gunakan Formulir Kustomisasi untuk menambahkan Bidang Kustom jenis "Pilih". DocType: Address,GST State,Negara bagian apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Pengguna ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound Untuk Kode Tupoksi apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Buka Bantuan DocType: DocType,Is Submittable,Apakah Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Perhatian Baru +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Perhatian Baru apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Tidak ada Kontak Google baru yang disinkronkan. DocType: File,Uploaded To Google Drive,Diunggah ke Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Kotak Masuk DocType: Kanban Board Column,Red,Merah DocType: Workflow State,Tag,Label -DocType: Custom Script,Script,Skrip +DocType: Report,Script,Skrip apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumen tidak dapat disimpan DocType: Energy Point Rule,Maximum Points,Poin Maksimum apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Pengaturan saya @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} poin penghargaan untuk {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Peran dapat diatur untuk pengguna dari halaman Pengguna mereka. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Tambahkan komentar +DocType: Dashboard Chart,Select Date Range,Pilih Rentang Tanggal DocType: DocField,Mandatory,Wajib apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul untuk Ekspor +DocType: Scheduled Job Type,Monthly Long,Panjang Bulanan apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Tidak ada perizinan dasar yang ditetapkan +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Kirim email ke {0} untuk menautkannya di sini apps/frappe/frappe/utils/backups.py,Download link for your backup will be emailed on the following email address: {0},Tautan unduh untuk cadangan Anda akan dikirimkan melalui surel pada alamat surel berikut: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Meaning of Submit, Cancel, Amend","Artinya dari Submit, Batal, Amend" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Lacak tonggak sejar DocType: Social Login Key,Identity Details,Rincian identitas apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Transisi status Workflow tidak diizinkan dari {0} ke {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Tampilkan Dasbor -apps/frappe/frappe/desk/form/assign_to.py,New Message,Pesan baru DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,laporan-query DocType: Data Import Beta,Template Warnings,Peringatan Templat @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Terhubung De apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Edit Pengaturan Laporan Surel Otomatis DocType: Chat Room,Message Count,Jumlah pesan DocType: Workflow State,book,buku +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2} DocType: Communication,Read by Recipient,Dibaca oleh Penerima DocType: Website Settings,Landing Page,Halaman Arahan apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Kesalahan Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nama apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Tidak ada Izin ditetapkan untuk kriteria ini. DocType: Auto Email Report,Auto Email Report,Laporan Surel Otomatis +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Dokumen Baru Dibagikan apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Hapus komentar? DocType: Address Template,This format is used if country specific format is not found,Format ini digunakan jika format khusus negara tidak ditemukan DocType: System Settings,Allow Login using Mobile Number,Izinkan Login menggunakan Nomor Handphone apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jika diaktifkan, pengguna yang masuk dari Alamat IP Terbatas, tidak akan diminta untuk Autentikasi Dua Faktor" +DocType: Server Script,After Cancel,Setelah Batal DocType: Auto Repeat,Get Contacts,Dapatkan Kontak apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posting mengajukan di bawah {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Melewati Kolom Tanpa Judul @@ -1684,6 +1757,7 @@ DocType: User,Login After,Login Setelah DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Pencetakan DocType: Workflow State,thumbs-up,thumbs-up +DocType: Notification Log,Mention,Menyebut DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Font apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Presisi harus antara 1 dan 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,dan apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Laporan ini dibuat pada {0} DocType: Error Snapshot,Frames,Frame -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tugas +DocType: Notification Log,Assignment,Tugas DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Image Link DocType: Auto Email Report,Report Filters,laporan Filter @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Tidak dapat memperbarui acara apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Kode verifikasi telah dikirim ke alamat email Anda yang terdaftar. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Terhempas +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Target Anda apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter harus memiliki 4 nilai (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Tidak Ada Nama Yang Ditentukan untuk {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Terapkan Aturan Penugasan apps/frappe/frappe/utils/bot.py,show,menunjukkan apps/frappe/frappe/utils/data.py,Invalid field name {0},Nama bidang tidak valid {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Pemetaan Rencana Migrasi Data apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Memulai Frappé ... DocType: Web Form Field,Max Length,Panjang maksimal -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Untuk {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,peta-penanda apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Menyerahkan Masalah @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Halaman hilang atau dipind apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Ulasan DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,pengaturan Pembayaran gateway Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} diperoleh {1} poin untuk {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Ambil gambar terlampir dari dokumen DocType: Chat Room,Name,Nama DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Bahasa Anda DocType: Dashboard Chart,Average,Rata-rata apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Menambahkan Baris -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,"Query harus berupa ""SELECT""" DocType: Auto Repeat,Completed,Selesai @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Token Sinkronisasi Berikutnya DocType: Energy Point Settings,Energy Point Settings,Pengaturan Titik Energi DocType: Async Task,Succeeded,Berhasil apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Bidang wajib yang dibutuhkan dalam {0} +DocType: Onboarding Slide Field,Align,Meluruskan apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Atur Ulang Perizinan untuk {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Pengguna dan Perizinan DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nama Format Cetak Baru apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik tautan di bawah untuk menyetujui permintaan DocType: Workflow State,align-left,rata-kiri +DocType: Onboarding Slide,Action Settings,Pengaturan Tindakan DocType: User,Defaults,Standar +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)." DocType: Energy Point Log,Revert Of,Kembalikan Dari apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merger dengan yang ada DocType: User,Birth Date,Tanggal Lahir @@ -1896,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,... Dalam DocType: Notification,Value Change,Nilai Perubahan DocType: Google Contacts,Authorize Google Contacts Access,Otorisasi Akses Kontak Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hanya menampilkan bidang numerik dari Laporan +apps/frappe/frappe/utils/data.py,1 week ago,1 minggu yang lalu DocType: Data Import Beta,Import Type,Jenis Impor DocType: Access Log,HTML Page,Halaman HTML DocType: Address,Subsidiary,Anak Perusahaan @@ -1905,7 +1984,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Dengan kop surat apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Outgoing Mail Server valid atau Pelabuhan DocType: Custom DocPerm,Write,Menulis -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Hanya Administrator diizinkan untuk membuat Query / Script Laporan apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Memperbarui DocType: Data Import Beta,Preview,Pratayang apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Kolom ""nilai"" adalah wajib. Silakan tentukan nilai untuk diperbarui" @@ -1915,6 +1993,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Undang seb DocType: Data Migration Run,Started,Dimulai apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Pengguna {0} tidak memiliki akses ke dokumen ini DocType: Data Migration Run,End Time,Waktu Akhir +DocType: Dashboard Chart,Group By Based On,Kelompok Berdasarkan Berdasarkan apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Pilih Lampiran apps/frappe/frappe/model/naming.py, for {0},untuk {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Anda tidak diizinkan mencetak dokumen ini @@ -1956,6 +2035,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Memeriksa DocType: Workflow Document State,Update Field,Perbarui Kolom DocType: Chat Profile,Enable Chat,Aktifkan Chat DocType: LDAP Settings,Base Distinguished Name (DN),Dasar Pembedaan Nama (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Tinggalkan percakapan ini apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Pilihan tidak diatur untuk bidang tautan {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Antrian / Pekerja @@ -2022,12 +2102,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Login tidak diizinkan untuk saat ini DocType: Data Migration Run,Current Mapping Action,Tindakan Pemetaan Saat Ini DocType: Dashboard Chart Source,Source Name,sumber Nama -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email. DocType: Email Account,Email Sync Option,Opsi Sinkronisasi Surel apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Baris No DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Apakah Dipasangi DocType: Contact Us Settings,Introduction,Pendahuluan +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Butuh bantuan? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Sematkan secara global apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Diikuti oleh DocType: LDAP Settings,LDAP Email Field,Kolom Surel LDAP @@ -2037,7 +2117,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Sudah di DocType: User Email,Enable Outgoing,Aktifkan Keluar DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Tags kustom -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun Email tidak disiapkan. Harap buat Akun Email baru dari Pengaturan> Email> Akun Email DocType: Comment,Submitted,Dikirim DocType: Contact,Pulled from Google Contacts,Ditarik dari Kontak Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Di Permintaan yang Valid @@ -2058,9 +2137,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Rumah / Tes apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Tetapkan ke saya DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tekan Alt Key untuk memicu pintasan tambahan di Menu dan Sidebar +DocType: Dashboard Chart,To Date,Untuk Tanggal DocType: List View Setting,List View Setting,Pengaturan Tampilan Daftar apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Tampilkan gagal pekerjaan -DocType: Event,Details,Penjelasan +DocType: Scheduled Job Log,Details,Penjelasan DocType: Property Setter,DocType or Field,DocType atau Bidang apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Anda berhenti mengikuti dokumen ini apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Warna primer @@ -2068,7 +2148,6 @@ DocType: Communication,Soft-Bounced,Soft-Terpental DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Jika diaktifkan, semua pengguna dapat masuk dari Alamat IP apa pun menggunakan Autentikasi Dua Faktor. Ini juga dapat diatur hanya untuk pengguna tertentu di Halaman Pengguna" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Sepertinya kunci kunci rahasia atau kunci rahasia salah! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Bantuan Cepat untuk Pengaturan Permissions -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE untuk Menetapkan Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Tampilkan Relaps apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Email telah dipindahkan ke sampah DocType: Report,Report Builder,Report Builder @@ -2083,6 +2162,7 @@ DocType: Workflow State,Upload,Mengunggah DocType: User Permission,Advanced Control,Kontrol Tingkat Lanjut DocType: System Settings,Date Format,Format Tanggal apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Tidak Diterbitkan +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Tindakan untuk alur kerja (misalnya Menyetujui, Membatalkan)." DocType: Data Import,Skip rows with errors,Lewati baris dengan kesalahan DocType: Workflow State,flag,tanda @@ -2092,7 +2172,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Ceta apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Lompat ke bidang DocType: Contact Us Settings,Forward To Email Address,Teruskan Ke Alamat Surel DocType: Contact Phone,Is Primary Phone,Apakah Telepon Utama -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Kirim email ke {0} untuk menautkannya di sini. DocType: Auto Email Report,Weekdays,Hari kerja apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} catatan akan diekspor apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Judul lapangan harus fieldname valid @@ -2100,7 +2179,7 @@ DocType: Post Comment,Post Comment,Kirim Komentar apps/frappe/frappe/config/core.py,Documents,Docuements apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Log Aktivitas oleh DocType: Social Login Key,Custom Base URL,URL Basis Kustom -DocType: Email Flag Queue,Is Completed,Apakah selesai +DocType: Onboarding Slide,Is Completed,Apakah selesai apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Dapatkan Fields apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Edit Profile DocType: Kanban Board Column,Archived,Diarsipkan @@ -2111,11 +2190,12 @@ 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 DocType: Social Login Key,Office 365,Kantor 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hari ini +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Hari ini apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Kirim Setelah Impor DocType: Error Log,Log of Scheduler Errors,Log Kesalahan Scheduler DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Tautan Bantuan Slide Onboarding DocType: OAuth Client,App Client Secret,Aplikasi Client Rahasia apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Mengirimkan apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Induk adalah nama dokumen yang akan ditambahkan datanya. @@ -2123,7 +2203,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,HURUF BESAR apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Masukkan nama folder -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template. apps/frappe/frappe/auth.py,Unknown User,Pengguna tidak dikenal apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Pilih Peran DocType: Comment,Deleted,Dihapus @@ -2139,7 +2218,7 @@ DocType: Chat Token,Chat Token,Token Obrolan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Buat Bagan apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Jangan Impor -DocType: Web Page,Center,Pusat +DocType: Onboarding Slide Field,Center,Pusat DocType: Notification,Value To Be Set,Nilai yang Akan Ditetapkan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Tingkat pertama @@ -2147,7 +2226,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nama database apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Form Segarkan DocType: DocField,Select,Pilih -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Lihat Log Lengkap +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Lihat Log Lengkap DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Ekspresi Python Sederhana, Contoh: status == 'Open' dan ketik == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Berkas tidak terpasang apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Koneksi terputus. Beberapa fitur mungkin tidak bekerja. @@ -2179,6 +2258,7 @@ DocType: Web Page,HTML for header section. Optional,HTML untuk bagian header. Pi apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Fitur ini baru dan masih eksperimental apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimum {0} baris diperbolehkan DocType: Dashboard Chart Link,Chart,Grafik +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global yang Unsubscribe apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ini adalah password yang sangat umum. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Melihat @@ -2195,6 +2275,7 @@ DocType: Data Migration Connector,Hostname,Nama host DocType: Data Migration Mapping,Condition Detail,Detail kondisi apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Untuk mata uang {0}, jumlah transaksi minimum harus {1}" DocType: DocField,Print Hide,Cetak Sembunyikan +DocType: System Settings,HH:mm:ss,HH: mm: dd apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Kepada Pengguna apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Masukkan Nilai DocType: Workflow State,tint,warna @@ -2261,6 +2342,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kode QR untuk apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tambahkan ke 'To Do' DocType: Footer Item,Company,Perusahaan apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Rata-rata dari {0} +DocType: Scheduled Job Log,Scheduled,Dijadwalkan DocType: User,Logout from all devices while changing Password,Keluar dari semua perangkat saat mengganti Sandi apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifikasi Kata Sandi apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ada kesalahan @@ -2286,7 +2368,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Izin pengguna sudah ada apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Memetakan kolom {0} ke bidang {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Lihat {0} -DocType: User,Hourly,Per jam +DocType: Scheduled Job Type,Hourly,Per jam apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Daftar OAuth Klien App DocType: DocField,Fetch If Empty,Ambil Jika Kosong DocType: Data Migration Connector,Authentication Credentials,Kredensial Otentikasi @@ -2297,10 +2379,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak dapat ""{2}"". Seharusnya salah satu dari ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},diperoleh sebesar {0} melalui aturan otomatis {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} atau {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Anda sudah siap! DocType: Workflow State,trash,sampah DocType: System Settings,Older backups will be automatically deleted,Cadangan yang lebih tua akan dihapus secara otomatis apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID Kunci Akses Tidak Valid atau Kunci Akses Rahasia. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Anda kehilangan beberapa titik energi DocType: Post,Is Globally Pinned,Apakah Dipasangi Secara Global apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Aktivitas Terbaru DocType: Workflow Transition,Conditions,Kondisi @@ -2309,6 +2391,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Dikonfirmasi DocType: Event,Ends on,Berakhir pada DocType: Payment Gateway,Gateway,Gerbang DocType: LDAP Settings,Path to Server Certificate,Jalur ke Sertifikat Server +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript dinonaktifkan di browser Anda apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Tidak cukup izin untuk melihat link apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Wajib masukan Judul Alamat. DocType: Google Contacts,Push to Google Contacts,Dorong ke Kontak Google @@ -2327,7 +2410,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-barat-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jika ini dicentang, baris dengan data yang valid akan diimpor dan baris yang tidak valid akan dibuang ke file baru untuk Anda impor nanti." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumen hanya dapat diedit oleh pengguna dari peran -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Tugas {0}, yang ditugaskan untuk {1}, telah ditutup oleh {2}." DocType: Print Format,Show Line Breaks after Sections,Tampilkan Jalur Breaks setelah Bagian DocType: Communication,Read by Recipient On,Baca oleh Penerima Aktif DocType: Blogger,Short Name,Nama pendek @@ -2359,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Mene DocType: Translation,PR sent,PR dikirim DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Hanya Kirim Data yang Diperbarui pada X Jam Terakhir DocType: Communication,Feedback,Umpan balik +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Diperbarui Ke Versi Baru 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Buka Terjemahan apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Email ini otomatis terkirim DocType: Workflow State,Icon will appear on the button,Icon akan muncul pada tombol @@ -2397,6 +2480,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Halaman ti DocType: DocField,Precision,Ketelitian DocType: Website Slideshow,Slideshow Items,Slideshow Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Cobalah untuk menghindari kata-kata berulang dan karakter +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Pemberitahuan Dinonaktifkan +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Anda yakin ingin menghapus semua baris? DocType: Workflow Action,Workflow State,Status Alur Kerja apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,baris Ditambahkan apps/frappe/frappe/www/list.py,My Account,Akun Saya @@ -2405,6 +2490,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Setelah hari apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Koneksi Baki QZ Aktif! DocType: Contact Us Settings,Settings for Contact Us Page,Pengaturan untuk Hubungi Kami Halaman +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Aktifkan Server Cetak apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} minggu yang lalu DocType: Email Account,Footer,Footer @@ -2430,8 +2516,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Peringatan apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Ini dapat dicetak pada beberapa halaman DocType: Data Migration Run,Percent Complete,Persen Lengkap -DocType: Tag Category,Tag Category,Kategori Tanda -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)." DocType: Google Calendar,Pull from Google Calendar,Tarik dari Kalender Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Bantuan DocType: User,Login Before,Login Sebelum @@ -2441,17 +2525,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sembunyikan Akhir Pekan apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Secara otomatis menghasilkan dokumen berulang. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Aku S +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-tanda apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Nilai untuk {0} tidak bisa daftar DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bagaimana seharusnya mata uang ini akan diformat? Jika tidak diatur, akan menggunakan default sistem" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Kirim {0} dokumen? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kesalahan menyambung ke Aplikasi Baki QZ ...

Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.

Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Pemetaan Printer apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Silakan simpan sebelum memasang. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Apakah Anda ingin membatalkan semua dokumen yang ditautkan? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Ditambahkan {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Izin peran DocType: Help Article,Intermediate,Menengah +apps/frappe/frappe/config/settings.py,Email / Notifications,Notifikasi email apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} diubah {1} menjadi {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Dokumen yang Dibatalkan dipulihkan sebagai Konsep DocType: Data Migration Run,Start Time,Waktu Mulai @@ -2468,6 +2556,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Da apps/frappe/frappe/email/smtp.py,Invalid recipient address,Alamat penerima tidak valid DocType: Workflow State,step-forward,langkah-maju DocType: System Settings,Allow Login After Fail,Perbolehkan Masuk Setelah Gagal +DocType: DocType Link,DocType Link,Tautan DocType DocType: Role Permission for Page and Report,Set Role For,Set Peran Untuk DocType: GCalendar Account,The name that will appear in Google Calendar,Nama yang akan muncul di Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Ruang langsung dengan {0} sudah ada. @@ -2484,6 +2573,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Buat baru DocType: Contact,Google Contacts,Kontak Google DocType: GCalendar Account,GCalendar Account,Akun GCalendar DocType: Email Rule,Is Spam,Apakah Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Terakhir apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Laporan {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Terbuka {0} DocType: Data Import Beta,Import Warnings,Peringatan Impor @@ -2495,6 +2585,7 @@ DocType: Workflow State,ok-sign,ok-tanda apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumen yang dihapus apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Format CSV bersifat case sensitive apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikon Desktop sudah ada +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Tentukan di semua domain mana slide akan ditampilkan. Jika tidak ada yang ditentukan slide secara default ditampilkan di semua domain. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Bidang {1} berturut-turut {2} tidak dapat disembunyikan dan wajib tanpa default DocType: Newsletter,Create and Send Newsletters,Membuat dan Kirim Nawala @@ -2505,6 +2596,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID Peristiwa Kalender Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Induk"" menandakan tabel induk di mana baris ini harus ditambahkan" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Poin Ulasan: +DocType: Scheduled Job Log,Scheduled Job Log,Log Pekerjaan Terjadwal +DocType: Server Script,Before Delete,Sebelum Hapus apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Bersama Dengan apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Lampirkan file / url dan tambahkan dalam tabel. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Pesan tidak disetel @@ -2527,19 +2620,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Pengaturan untuk Tentang Kami Halaman apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Pengaturan gateway pembayaran stripe apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Cetak Terkirim ke printer! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Poin Energi +DocType: Notification Settings,Energy Points,Poin Energi +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Waktu {0} harus dalam format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,misalnya pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Hasilkan Kunci apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ini akan menghapus data Anda secara permanen. DocType: DocType,View Settings,Lihat Pengaturan +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Pemberitahuan Baru DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktur Permintaan +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Metode pengontrol get_razorpay_order hilang DocType: Personal Data Deletion Request,Pending Verification,Verifikasi Tertunda DocType: Website Meta Tag,Website Meta Tag,Meta Tag situs web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Jika port non standar (misalnya 587). Jika di Google Cloud, coba port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Menghapus tanggal akhir, karena tidak boleh di masa lalu untuk halaman yang dipublikasikan." DocType: User,Send Me A Copy of Outgoing Emails,Kirimkan Saya Salinan Email yang Keluar -DocType: System Settings,Scheduler Last Event,Scheduler Acara terakhir DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Tambahkan ID Google Analytics: misalnya. UA-89XXX57-1. Silahkan cari bantuan di Google Analytics untuk informasi lebih lanjut. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Password tidak boleh lebih dari 100 karakter DocType: OAuth Client,App Client ID,Aplikasi Client ID @@ -2568,6 +2663,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Password Baru apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} berbagi dokumen ini dengan {1} DocType: Website Settings,Brand Image,Image Merek DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Impor template harus berisi Header dan minimal satu baris. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalender Google telah dikonfigurasi. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Setup atas bar navigasi, footer dan logo." DocType: Web Form Field,Max Value,Max Nilai @@ -2577,6 +2673,7 @@ DocType: User Social Login,User Social Login,Login Sosial Pengguna apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} mengkritik karya Anda pada {1} dengan {2} poin DocType: Contact,All,Semua DocType: Email Queue,Recipient,Penerima +DocType: Webhook,Webhook Security,Keamanan Webhook DocType: Communication,Has Attachment,memiliki Lampiran DocType: Address,Sales User,Penjualan Pengguna apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag dan drop alat untuk membangun dan menyesuaikan Format Cetak. @@ -2643,7 +2740,6 @@ DocType: Data Migration Mapping,Migration ID Field,Bidang ID Migrasi DocType: Dashboard Chart,Last Synced On,Terakhir Disinkronkan DocType: Comment,Comment Type,Komentar Type DocType: OAuth Client,OAuth Client,OAuth Klien -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} mengkritik pekerjaan Anda pada {1} {2} DocType: Assignment Rule,Users,Pengguna DocType: Address,Odisha,Odisha DocType: Report,Report Type,Jenis Laporan @@ -2668,14 +2764,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Situs web Slideshow Baran apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Persetujuan diri tidak diizinkan DocType: GSuite Templates,Template ID,ID template apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Kombinasi Tipe Hibah ( {0} ) dan Tipe Respon ( {1} ) tidak diperbolehkan -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Pesan baru dari {0} DocType: Portal Settings,Default Role at Time of Signup,Peran bawaan di Waktu Pendaftaran DocType: DocType,Title Case,Judul Kasus apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klik tautan di bawah untuk mengunduh data Anda apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Kotak masuk email yang diaktifkan untuk pengguna {0} DocType: Data Migration Run,Data Migration Run,Migrasi Data Jalankan DocType: Blog Post,Email Sent,Email Terkirim -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Lebih tua DocType: DocField,Ignore XSS Filter,Abaikan XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,dihapus apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Pengaturan cadangan Dropbox @@ -2730,6 +2824,7 @@ DocType: Async Task,Queued,Diantrikan DocType: Braintree Settings,Use Sandbox,Gunakan Sandbox apps/frappe/frappe/utils/goal.py,This month,Bulan ini apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Sebelum Menyimpan (Dokumen yang Dikirim) DocType: Custom DocPerm,Create,Buat apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Tidak ada lagi item untuk ditampilkan apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Pergi ke catatan sebelumnya @@ -2786,6 +2881,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Pindah Untuk Sampah DocType: Web Form,Web Form Fields,Formulir web Fields DocType: Data Import,Amended From,Diubah Dari +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Tambahkan tautan video bantuan untuk berjaga-jaga jika pengguna tidak tahu tentang apa yang harus diisi dalam slide. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Peringatan: Tidak dapat menemukan {0} di setiap meja yang berkaitan dengan {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Dokumen ini saat antri untuk eksekusi. Silakan coba lagi @@ -2807,6 +2903,7 @@ DocType: Blog Post,Blog Post,Posting Blog DocType: Access Log,Export From,Ekspor Dari apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Pencarian Lanjutan apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Anda tidak diizinkan untuk melihat nawala. +DocType: Dashboard Chart,Group By,Kelompok Dengan DocType: User,Interests,minat apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instruksi atur ulang password telah dikirim ke email Anda DocType: Energy Point Rule,Allot Points To Assigned Users,Allot Points Untuk Pengguna yang Ditugaskan @@ -2822,6 +2919,7 @@ DocType: Assignment Rule,Assignment Rule,Aturan Penugasan apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Disarankan Username: {0} DocType: Assignment Rule Day,Day,Hari apps/frappe/frappe/public/js/frappe/desk.js,Modules,modul +DocType: DocField,Mandatory Depends On,Wajib Tergantung apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Sukses pembayaran apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Tidak ada {0} email DocType: OAuth Bearer Token,Revoked,dicabut @@ -2829,6 +2927,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar dan Komentar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Tidak diizinkan untuk melampirkan dokumen {0}, silakan aktifkan Izinkan Cetak Untuk {0} di Pengaturan Cetak" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun Email tidak disiapkan. Harap buat Akun Email baru dari Pengaturan> Email> Akun Email apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Lihat dokumen di {0} DocType: Stripe Settings,Publishable Key,Kunci Publishable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Mulai Impor @@ -2842,13 +2941,13 @@ DocType: Currency,Fraction,Pecahan apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Acara Disinkronkan dengan Kalender Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Nama Field Pertama DocType: Contact,Middle Name,Nama tengah +DocType: DocField,Property Depends On,Properti Tergantung DocType: Custom Field,Field Description,Bidang Deskripsi apps/frappe/frappe/model/naming.py,Name not set via Prompt,Name tidak diatur melalui Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Kotak Masuk Surel apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Memperbarui {0} dari {1}, {2}" DocType: Auto Email Report,Filters Display,filter Tampilan apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Bidang "amended_from" harus ada untuk melakukan amandemen. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} menghargai karya Anda pada {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Simpan filter DocType: Address,Plant,Tanaman apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Membalas semua @@ -2889,11 +2988,11 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Melaporkan: DocType: Print Settings,Print taxes with zero amount,Cetak pajak dengan jumlah nol apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} tidak dapat dinamakan kembali +DocType: Server Script,Before Insert,Sebelum Memasukkan DocType: Custom Script,Custom Script,Kustom Script DocType: Address,Address Line 2,Alamat Baris 2 DocType: Address,Reference,Referensi apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Ditugaskan Kepada -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Silakan atur Akun Email default dari Pengaturan> Email> Akun Email DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detail Pemetaan Migrasi Data DocType: Data Import,Action,Tindakan DocType: GSuite Settings,Script URL,URL skrip @@ -2919,11 +3018,13 @@ DocType: User,Api Access,Akses Api DocType: DocField,In List View,Dalam Daftar View DocType: Email Account,Use TLS,Gunakan TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Login atau kata sandi tidak valid +DocType: Scheduled Job Type,Weekly Long,Panjang Mingguan apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Unduh Template apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Tambahkan kustom javascript untuk form. ,Role Permissions Manager,Pengelola Perizinan Peran apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nama Print Format baru apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar +DocType: Server Script,After Save (Submitted Document),Setelah Menyimpan (Dokumen yang Dikirim) DocType: Data Migration Run,Pull Insert,Tarik Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Poin maksimum diperbolehkan setelah mengalikan poin dengan nilai pengali (Catatan: Tanpa batas biarkan bidang ini kosong atau set 0) @@ -2943,6 +3044,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Tidak Terinstal apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Unduh dengan data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},nilai yang diubah untuk {0} {1} +DocType: Server Script,Before Cancel,Sebelum Batalkan DocType: Workflow State,hand-right,tangan kanan DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Wilayah @@ -2988,12 +3090,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Password Lama DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posting oleh {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Untuk memformat kolom, memberi label kolom dalam query." +DocType: Onboarding Slide,Slide Fields,Bidang Geser DocType: Has Domain,Has Domain,Memiliki Domain DocType: User,Allowed In Mentions,Diizinkan Dengan Sebutan apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Tidak memiliki account? Daftar apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Tidak dapat menghapus bidang ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Dokumen Berlangganan apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Pengaturan pengguna DocType: Report,Reference Report,Laporan Referensi DocType: Activity Log,Link DocType,Link DocType @@ -3011,6 +3115,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Otorisasi Akses Kalend apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Halaman yang Anda cari hilang. Ini bisa jadi karena itu dipindahkan atau ada kesalahan ketik pada link. apps/frappe/frappe/www/404.html,Error Code: {0},Kode Kesalahan: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Keterangan untuk halaman listing, dalam teks biasa, hanya beberapa baris. (Max 140 karakter)" +DocType: Server Script,DocType Event,Acara DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} adalah bidang wajib DocType: Workflow,Allow Self Approval,Izinkan Persetujuan Sendiri DocType: Event,Event Category,Kategori Peristiwa @@ -3027,6 +3132,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nama Anda apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Sukses Koneksi DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slide Onboarding dari Jenis Slide Lanjutkan sudah ada. DocType: DocType,Default Sort Field,Bidang Sortir Default DocType: File,Is Folder,Apakah Folder DocType: Document Follow,DocType,DocType @@ -3065,8 +3171,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Nilai B DocType: Workflow State,arrow-up,panah-atas DocType: Dynamic Link,Link Document Type,Tautkan Jenis Dokumen apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Harus ada minimal satu baris untuk tabel {0} +DocType: Server Script,Server Script,Skrip Server apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Untuk mengonfigurasi Ulangi Otomatis, aktifkan "Izinkan Ulangi Otomatis" dari {0}." DocType: OAuth Bearer Token,Expires In,Kadaluarsa dalam +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Jumlah kali Anda ingin mengulang set bidang (misalnya: jika Anda ingin 3 pelanggan dalam slide, setel bidang ini ke 3. Hanya set bidang pertama yang ditampilkan sebagai wajib dalam slide)" DocType: DocField,Allow on Submit,Izinkan Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Pengecualian Jenis @@ -3076,6 +3184,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Judul apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Acara Mendatang apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Masukkan nilai untuk App Access Key dan App Kunci Rahasia +DocType: Email Account,Append Emails to Sent Folder,Tambahkan Email ke Folder Terkirim DocType: Web Form,Accept Payment,Terima Pembayaran apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Pilih item daftar apps/frappe/frappe/config/core.py,A log of request errors,Daftar kesalahan permintaan @@ -3094,7 +3203,7 @@ DocType: Translation,Contributed,Berkontribusi apps/frappe/frappe/config/customization.py,Form Customization,Form Kustomisasi apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Tidak ada sesi aktif DocType: Web Form,Route to Success Link,Rute ke Tautan Sukses -DocType: Top Bar Item,Right,Benar +DocType: Onboarding Slide Field,Right,Benar apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Tidak Ada Acara Mendatang DocType: User,User Type,Tipe Pengguna DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3112,6 +3221,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Silakan coba lag apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL harus dimulai dengan 'http: //' atau 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opsi 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ini tidak dapat dibatalkan DocType: Workflow State,Edit,Ubah DocType: Website Settings,Chat Operators,Operator Obrolan DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3123,7 +3233,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Default untuk {0} harus menjadi pilihan -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Laporan dengan lebih dari 10 kolom terlihat lebih baik dalam mode Lansekap. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nama bidang tidak valid: {0} DocType: Milestone,Milestone,Batu @@ -3132,7 +3241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Pergi ke {0} apps/frappe/frappe/email/queue.py,Emails are muted,Surel diabaikan sementara apps/frappe/frappe/config/integrations.py,Google Services,Layanan Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 minggu yang lalu +DocType: Onboarding Slide,Slide Description,Deskripsi Slide DocType: Communication,Error,Kesalahan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Harap siapkan pesan terlebih dahulu DocType: Auto Repeat,End Date,Tanggal Berakhir @@ -3153,10 +3262,12 @@ DocType: Footer Item,Group Label,kelompok Label DocType: Kanban Board,Kanban Board,Papan kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontak Google telah dikonfigurasi. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 catatan akan diekspor +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email. DocType: DocField,Report Hide,Laporan Hide apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},tampilan pohon tidak tersedia untuk {0} DocType: DocType,Restrict To Domain,Batasi ke Domain DocType: Domain,Domain,Domain +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL file tidak valid. Silakan hubungi Administrator Sistem. DocType: Custom Field,Label Help,Label Bantuan DocType: Workflow State,star-empty,Bintang-kosong apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Tanggal seringkali mudah ditebak. @@ -3181,6 +3292,7 @@ DocType: Workflow State,hand-left,tangan kiri DocType: Data Import,If you are updating/overwriting already created records.,Jika Anda memperbarui / menimpa rekaman yang sudah dibuat. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Apakah global DocType: Email Account,Use SSL,Gunakan SSL +DocType: Webhook,HOOK-.####,MENGHUBUNGKAN-.#### DocType: Workflow State,play-circle,bermain-lingkaran apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumen tidak dapat ditetapkan dengan benar apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ekspresi "depend_on" tidak valid @@ -3197,6 +3309,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Terakhir disegarkan apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Untuk Jenis Dokumen DocType: Workflow State,arrow-right,panah-kanan +DocType: Server Script,API Method,Metode API DocType: Workflow State,Workflow state represents the current state of a document.,Status alur kerja menunjukkan status dokumen saat ini. DocType: Letter Head,Letter Head Based On,Kepala Surat Berdasarkan apps/frappe/frappe/utils/oauth.py,Token is missing,Token hilang @@ -3236,6 +3349,7 @@ DocType: Comment,Relinked,ditautkan kembali DocType: Print Settings,Compact Item Print,Kompak Barang Cetak DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,redirect URL +DocType: Onboarding Slide Field,Placeholder,Placeholder DocType: SMS Settings,Enter url parameter for receiver nos,Entrikan parameter url untuk penerima nos DocType: Chat Profile,Online,On line DocType: Email Account,Always use Account's Name as Sender's Name,Selalu gunakan Nama Akun sebagai Nama Pengirim @@ -3245,7 +3359,6 @@ DocType: Workflow State,Home,Rumah DocType: OAuth Provider Settings,Auto,Mobil DocType: System Settings,User can login using Email id or User Name,Pengguna bisa login menggunakan ID Email atau User Name DocType: Workflow State,question-sign,tanda tanya -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} dinonaktifkan apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Bidang "rute" adalah wajib untuk Tampilan Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Masukkan Kolom Sebelum {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Pengguna dari bidang ini akan diberi poin penghargaan @@ -3270,6 +3383,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jika Owner DocType: Data Migration Mapping,Push,Dorong apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Letakkan file di sini DocType: OAuth Authorization Code,Expiration time,waktu berakhirnya +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Buka Dokumen DocType: Web Page,Website Sidebar,Sidebar situs DocType: Web Form,Show Sidebar,Tampilkan Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Anda harus login untuk mengakses ini {0}. @@ -3285,6 +3399,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pintasan Glo DocType: Desktop Icon,Page,Halaman apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Tidak dapat menemukan {0} di {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nama dan nama keluarga sendiri mudah ditebak. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokumen diubah namanya dari {0} ke {1} apps/frappe/frappe/config/website.py,Knowledge Base,Dasar pengetahuan DocType: Workflow State,briefcase,tas kantor apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Nilai tidak dapat diubah untuk {0} @@ -3321,6 +3436,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format Cetak apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Grid View apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pergi ke catatan berikutnya +DocType: System Settings,Time Format,Format waktu apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,kredensial gateway pembayaran yang tidak valid DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ini adalah file template yang dihasilkan hanya dengan baris yang memiliki beberapa kesalahan. Anda harus menggunakan file ini untuk koreksi dan impor. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Permissions Set tentang Jenis Dokumen dan Peran @@ -3363,12 +3479,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Membalas apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Artikel dalam Meja (pemegang tempat) DocType: DocField,Collapsible Depends On,Collapsible Tergantung Pada DocType: Print Style,Print Style Name,Cetak Nama Gaya +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Kolom Group By diperlukan untuk membuat bagan dasbor DocType: Print Settings,Allow page break inside tables,Memungkinkan halaman istirahat dalam tabel DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print Format Bantuan apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Ruangan {0} harus memiliki paling banyak satu pengguna. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Menghitung +DocType: Dashboard Chart,Group By Type,Kelompokkan menurut Jenis apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Komentar Baru pada {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},dipulihkan {0} sebagai {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Jika Anda memperbarui, silahkan pilih ""Overwrite"" baris lain yang ada tidak akan dihapus." @@ -3379,14 +3497,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profil pe DocType: Web Form,Web Form,Formulir web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Tanggal {0} harus dalam format: {1} DocType: About Us Settings,Org History Heading,Org Sejarah Pos +DocType: Scheduled Job Type,Scheduled Job Type,Jenis Pekerjaan yang Dijadwalkan DocType: Print Settings,Allow Print for Cancelled,Memungkinkan Print untuk Dibatalkan DocType: Communication,Integrations can use this field to set email delivery status,Integrasi dapat menggunakan kolom ini untuk menetapkan status pengiriman surel +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan. DocType: Web Form,Web Page Link Text,Halaman web Teks Link DocType: Page,System Page,Sistem apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Mengatur format standar, ukuran halaman, gaya cetak dll" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Penyesuaian untuk {0} diekspor ke:
{1} DocType: Website Settings,Include Search in Top Bar,Sertakan Cari di Top Bar +DocType: Scheduled Job Type,Daily Long,Long setiap hari DocType: GSuite Settings,Allow GSuite access,Izinkan akses GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Penamaan @@ -3489,6 +3610,7 @@ DocType: Notification,Send days before or after the reference date,Kirim hari se DocType: User,Allow user to login only after this hour (0-24),Memungkinkan pengguna untuk login hanya setelah jam ini (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Tetapkan satu per satu, secara berurutan" DocType: Integration Request,Subscription Notification,Pemberitahuan Berlangganan +DocType: Customize Form Field, Allow in Quick Entry ,Izinkan dalam Entri Cepat apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,atau lampirkan a DocType: Auto Repeat,Start Date,Tanggal Mulai apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Nilai @@ -3503,6 +3625,7 @@ DocType: Google Drive,Backup Folder ID,ID Folder Cadangan apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat DOCTYPE 'Custom'. DocType: Workflow State,globe,di seluruh dunia. DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioritas DocType: Email Queue,Unsubscribe Param,Unsubscribe Param DocType: DocType,Hide Sidebar and Menu,Sembunyikan Bilah Samping dan Menu @@ -3514,6 +3637,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Izinkan Impor (melalui Alat apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Mengapung DocType: Print Settings,Page Settings,Pengaturan halaman +DocType: Notification Settings,Notification Settings,Pengaturan pemberitahuan apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Penghematan... apps/frappe/frappe/www/update-password.html,Invalid Password,kata sandi salah apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Rekor {0} berhasil diimpor dari {1}. @@ -3529,6 +3653,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Gambar Kepala Surat DocType: Address,Party GSTIN,Pesta GSTIN +DocType: Scheduled Job Type,Cron Format,Format Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Laporan DocType: SMS Settings,Use POST,Gunakan POST DocType: Communication,SMS,SMS @@ -3573,18 +3698,20 @@ DocType: Workflow,Allow approval for creator of the document,Izinkan persetujuan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Menyimpan laporan DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Aksi Server apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator mengakses {0} pada {1} melalui IP Address {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Bidang Induk harus nama bidang yang valid apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Gagal saat mengubah langganan DocType: LDAP Settings,LDAP Group Field,Bidang Grup LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Pemberitahuan Dokumen Berlangganan apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Equals apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,CSV Format valid -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kesalahan menyambung ke Aplikasi Baki QZ ...

Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.

Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Atur Jumlah Cadangan DocType: DocField,Do not allow user to change after set the first time,Jangan memungkinkan pengguna untuk mengubah setelah set pertama kalinya apps/frappe/frappe/utils/data.py,1 year ago,1 tahun yang lalu +DocType: DocType,Links Section,Bagian Tautan apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Lihat Log semua cetak, unduh, dan ekspor acara" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 bulan DocType: Contact,Contact,Kontak @@ -3611,16 +3738,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Surel Baru DocType: Custom DocPerm,Export,Ekspor apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Untuk menggunakan Kalender Google, aktifkan {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Juga menambahkan bidang dependensi status {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Berhasil diperbarui {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Baki QZ Gagal: DocType: Dropbox Settings,Dropbox Settings,Pengaturan dropbox DocType: About Us Settings,More content for the bottom of the page.,Konten lainnya untuk bagian bawah halaman. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Dokumen ini telah dikembalikan apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Cadangan Google Drive Berhasil. +DocType: Webhook,Naming Series,Series Penamaan DocType: Workflow,DocType on which this Workflow is applicable.,DocType yang menerapkan Alur Kerja ini. DocType: User,Enabled,Diaktifkan apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Gagal menyelesaikan penyiapan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Baru {0}: {1} -DocType: Tag Category,Category Name,Kategori Nama +DocType: Blog Category,Category Name,Kategori Nama apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Diperlukan orangtua untuk mendapatkan data tabel anak apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Impor Pengikut DocType: Print Settings,PDF Settings,Pengaturan PDF @@ -3656,6 +3786,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalender apps/frappe/frappe/client.py,No document found for given filters,Tidak ada dokumen yang ditemukan untuk filter yang diberikan apps/frappe/frappe/config/website.py,A user who posts blogs.,Seorang pengguna yang memposting blog. +DocType: DocType Action,DocType Action,Tindakan DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Lain {0} dengan nama {1} ada, pilih nama lain" DocType: DocType,Custom?,Kustom? DocType: Website Settings,Website Theme Image,Situs Tema Gambar @@ -3665,6 +3796,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Tidak dap apps/frappe/frappe/config/integrations.py,Backup,Cadangan apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Jenis dokumen diperlukan untuk membuat bagan dasbor DocType: DocField,Read Only,Read Only +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Tidak dapat membuat pesanan razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Newsletter Baru DocType: Energy Point Log,Energy Point Log,Energy Point Log DocType: Print Settings,Send Print as PDF,Kirim Cetak sebagai PDF @@ -3690,16 +3822,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Kon apps/frappe/frappe/www/login.html,Or login with,Atau login dengan DocType: Error Snapshot,Locals,Penduduk setempat apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Dikomunikasikan melalui {0} pada {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} menyebut Anda dalam komentar di {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Pilih Grup Menurut ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} diperlukan DocType: Integration Request,Integration Type,integrasi Type DocType: Newsletter,Send Attachements,Kirim attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Tidak ditemukan filter apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrasi Kontak Google. DocType: Transaction Log,Transaction Log,Log Transaksi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistik berdasarkan kinerja bulan lalu (dari {0} hingga {1}) DocType: Contact Us Settings,City,Kota +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Sembunyikan kartu untuk semua pengguna apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktifkan Perbolehkan Ulangi Otomatis untuk doctype {0} di Customize Form DocType: DocField,Perm Level,Perm Tingkat apps/frappe/frappe/www/confirm_workflow_action.html,View document,Lihat dokumen @@ -3710,6 +3843,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Jika diaktifkan, perubahan pada dokumen dilacak dan ditampilkan dalam timeline" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1} DocType: Energy Point Log,Appreciation,Apresiasi +DocType: Dashboard Chart,Number of Groups,Jumlah Grup apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Lihat Daftar DocType: Workflow,Don't Override Status,Jangan Override Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Istilah pencarian @@ -3751,7 +3885,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-barat laut-1 DocType: Dropbox Settings,Limit Number of DB Backups,Batasi Jumlah Cadangan DB DocType: Custom DocPerm,Level,Level -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 hari terakhir DocType: Custom DocPerm,Report,Laporan apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Jumlah harus lebih besar dari 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Terhubung ke Baki QZ! @@ -3768,6 +3901,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Pilih Tabel Anak apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Perubahan +DocType: Social Login Key,User ID Property,Properti ID Pengguna DocType: Email Domain,domain name,nama domain DocType: Contact Email,Contact Email,Email Kontak DocType: Kanban Board Column,Order,Memesan @@ -3790,7 +3924,7 @@ DocType: Contact,Last Name,Nama Belakang DocType: Event,Private,Swasta apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Tidak ada pemberitahuan untuk hari ini DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Kirim Email Cetak Lampiran sebagai PDF (Disarankan) -DocType: Web Page,Left,Waktu tersisa +DocType: Onboarding Slide Field,Left,Waktu tersisa DocType: Event,All Day,Semua Hari apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Sepertinya ada sesuatu yang salah dengan konfigurasi gateway pembayaran situs ini. Tidak ada pembayaran telah dilakukan. DocType: GCalendar Settings,State,Propinsi @@ -3822,7 +3956,6 @@ DocType: Workflow State,User,Pengguna DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Tampilkan judul di jendela browser sebagai "Awalan - judul" DocType: Payment Gateway,Gateway Settings,Pengaturan Gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teks dalam tipe dokumen -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Jalankan Tes apps/frappe/frappe/handler.py,Logged Out,Keluar apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Lebih... DocType: System Settings,User can login using Email id or Mobile number,Pengguna dapat login menggunakan id email atau nomor ponsel @@ -3838,6 +3971,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Ringkasan DocType: Event,Event Participants,Peserta Acara DocType: Auto Repeat,Frequency,Frekuensi +DocType: Onboarding Slide,Slide Order,Slide Order DocType: Custom Field,Insert After,Masukkan Setelah DocType: Event,Sync with Google Calendar,Sinkronkan dengan Google Kalender DocType: Access Log,Report Name,Nama Laporan @@ -3865,6 +3999,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max lebar untuk jenis mata uang adalah 100px berturut-turut {0} apps/frappe/frappe/config/website.py,Content web page.,Halaman web konten. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Tambahkan Peran Baru +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Kunjungi Halaman Web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Tugas baru DocType: Google Contacts,Last Sync On,Sinkron Terakhir Aktif DocType: Deleted Document,Deleted Document,Dokumen dihapus apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Ada yang salah @@ -3875,7 +4011,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pemandangan apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Ekstensi script sisi klien di Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Rekaman untuk tipe dokumen berikut akan difilter -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Penjadwal Tidak Aktif +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Penjadwal Tidak Aktif DocType: Blog Settings,Blog Introduction,Pendahuluan Blog DocType: Global Search Settings,Search Priorities,Prioritas Pencarian DocType: Address,Office,Kantor @@ -3885,12 +4021,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Tautan Bagan Dasbor DocType: User,Email Settings,Pengaturan Email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Jatuhkan Di Sini DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Jika diaktifkan, pengguna dapat masuk dari Alamat IP apa pun menggunakan Two Factor Auth, ini juga dapat diatur untuk semua pengguna di Pengaturan Sistem" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Pengaturan Printer ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Mohon masukkan kata sandi anda untuk melanjutkan apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Saya apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} bukan Keadaan yang berlaku apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Berlaku untuk semua Jenis Dokumen -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Pembaruan poin energi +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Pembaruan poin energi +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Jalankan Pekerjaan hanya Setiap Hari jika Tidak Aktif Untuk (Hari) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tipe ruangan DocType: Data Import Beta,Import Log Preview,Impor Pratinjau Log @@ -3899,6 +4035,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-lingkaran DocType: LDAP Settings,LDAP User Creation and Mapping,Pembuatan dan Pemetaan Pengguna LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Anda dapat menemukan hal-hal dengan bertanya 'temukan oranye di pelanggan' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Acara hari ini apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Mohon Maaf! Pengguna harus memiliki akses penuh untuk merekam mereka sendiri. ,Usage Info,Info penggunaan apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Tampilkan Pintasan Keyboard @@ -3915,6 +4052,7 @@ DocType: DocField,Unique,Unik apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} dihargai pada {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Sukses Partial DocType: Email Account,Service,Jasa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna DocType: File,File Name,berkas nama apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Tidak menemukan {0} untuk {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3928,6 +4066,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Pendafta DocType: GCalendar Settings,Enable,Aktifkan DocType: Google Maps Settings,Home Address,Alamat rumah apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Anda hanya dapat mengunggah hingga 5000 data sekaligus. (Mungkin kurang dalam beberapa kasus) +DocType: Report,"output in the form of `data = [columns, result]`","output dalam bentuk `data = [kolom, hasil]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Jenis Dokumen yang Berlaku apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Tetapkan aturan untuk tugas pengguna. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Izin tidak cukup untuk {0} @@ -3943,7 +4082,6 @@ DocType: Communication,To and CC,Untuk dan CC DocType: SMS Settings,Static Parameters,Parameter Statis DocType: Chat Message,Room,Kamar apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},diperbarui ke {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Pekerjaan latar belakang tidak berjalan. Silakan hubungi Administrator DocType: Portal Settings,Custom Menu Items,Kustom Menu Produk apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Semua Gambar yang dilampirkan pada Slideshow Situs Web harus umum DocType: Workflow State,chevron-right,chevron-kanan @@ -3958,11 +4096,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} nilai dipilih DocType: DocType,Allow Auto Repeat,Izinkan Ulangi Otomatis apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Tidak ada nilai untuk ditampilkan +DocType: DocType,URL for documentation or help,URL untuk dokumentasi atau bantuan DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Template Email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Catatan {0} berhasil diperbarui. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Pengguna {0} tidak memiliki akses doctype melalui izin peran untuk dokumen {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Baik login maupun password keduanya diperlukan +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Membiarkan\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Silahkan refresh untuk mendapatkan dokumen terbaru. DocType: User,Security Settings,Pengaturan Keamanan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Tambahkan Kolom @@ -3972,6 +4112,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Silakan temukan lampiran {0}: {1} DocType: Web Page,Set Meta Tags,Setel Tag Meta +DocType: Email Account,Use SSL for Outgoing,Gunakan SSL untuk Keluar 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: S3 Backup Settings,Backup Limit,Batas Cadangan DocType: Dashboard Chart,Line,Baris @@ -4004,4 +4145,3 @@ DocType: DocField,Ignore User Permissions,Abaikan Izin Pengguna apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Berhasil Disimpan apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Minta administrator untuk memverifikasi Anda sign-up DocType: Domain Settings,Active Domains,Domain aktif -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Tampilkan Log diff --git a/frappe/translations/is.csv b/frappe/translations/is.csv index 8a6e3ee05e..2fdcbe1fbd 100644 --- a/frappe/translations/is.csv +++ b/frappe/translations/is.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vinsamlegast veldu Magn reitinn. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Hleður innflutningsskrá ... DocType: Assignment Rule,Last User,Síðasti notandi -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Ný verkefni, {0}, hefur verið úthlutað af {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sjálfgefin vistun vistuð apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Endurhlaða skrána DocType: Email Queue,Email Queue records.,Netfang Biðröð færslur. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,notandi póst DocType: User,Username,Notandanafn apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Flytja inn zip +DocType: Scheduled Job Type,Create Log,Búðu til annál apps/frappe/frappe/model/base_document.py,Value too big,Gildi of stór DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Hlaupa Script Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mánaðarleg DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Virkja á Móttaka apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Danger -DocType: Address,Email Address,Netfang +apps/frappe/frappe/www/login.py,Email Address,Netfang DocType: Workflow State,th-large,Th-stór DocType: Communication,Unread Notification Sent,Ólesið tilkynning send apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export ekki leyfð. Þú þarft {0} hlutverki til útflutnings. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Hæt DocType: DocType,Is Published Field,Er birt Field DocType: GCalendar Settings,GCalendar Settings,GCalendar Stillingar DocType: Email Group,Email Group,Tölvupóstur Group +apps/frappe/frappe/__init__.py,Only for {},Aðeins fyrir {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google dagatal - Gat ekki eytt atburði {0} úr Google dagatali, villukóða {1}." DocType: Event,Pulled from Google Calendar,Dregið úr Google dagatalinu DocType: Note,Seen By,séð af apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Bæta við mörgum -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Þú náðir þér orkupunkta apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ekki gilt User Image. DocType: Energy Point Log,Reverted,Aftur á móti DocType: Success Action,First Success Message,Fyrsta velgengni skilaboð @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ekki eins og apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Rangt gildi: {0} verður að vera {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Breyting sviði eiginleikar (fela, skrifréttinda, leyfi o.fl.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Þakka +DocType: Notification Settings,Document Share,Hlutdeild skjals DocType: Workflow State,lock,læsa apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Stillingar fyrir Hafðu samband síðunni. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Stjórnandi innskráður @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ef þetta er virkt er skjalið merkt sem sést, í fyrsta skipti sem notandi opnar það" DocType: Auto Repeat,Repeat on Day,Endurtaka á dag DocType: DocField,Color,Litur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Merkja allt sem lesið DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,inndráttur hægri DocType: Has Role,Has Role,hefur hlutverki @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Sýna Traceback DocType: DocType,Default Print Format,Sjálfgefið Prenta Format DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Rennibraut apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ekkert: Lok Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} reit er ekki hægt að setja eins og einstök í {1}, þar sem það eru ekki einstök fyrirliggjandi gildi" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,skjal Tegundir @@ -135,7 +138,6 @@ DocType: Language,Guest,Guest DocType: DocType,Title Field,Title Field DocType: Error Log,Error Log,Villuannál apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Ógild slóð -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Síðustu 7 daga apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Endurtekur eins og "abcabcabc" eru aðeins örlítið erfiðara að giska en "abc" DocType: Notification,Channel,Rás apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",Ef þú heldur að þetta sé óheimilt skaltu breyta Stjórnandi lykilorð. @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,viðskiptavinur apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Veldu dálki apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Þessi mynd hefur verið breytt eftir að þú hefur hlaðið hana DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Tilkynningaskrá 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ð apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Opna Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",Það virðist sem það er vandamál með rétta stillingu miðlarans. Ef bilun er fyrir hendi verður fjárhæðin endurgreitt á reikninginn þinn. @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Fe apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Senda DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE er ekki hægt að sameinuð -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ekki zip skrá DocType: Global Search DocType,Global Search DocType,Alheimsleit DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Tölvupóstur sendur? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Skipta um mynd apps/frappe/frappe/desk/form/save.py,Did not cancel,Fékk ekki að hætta DocType: Social Login Key,Client Information,Upplýsingar viðskiptavinar +DocType: Energy Point Rule,Apply this rule only once per document,Notaðu þessa reglu aðeins einu sinni í hverju skjali DocType: Workflow State,plus,plús +DocType: DocField,Read Only Depends On,Lesa fer aðeins eftir apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Skráður inn sem gestur eða Administrator DocType: Email Account,UNSEEN,óséður apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Ástæðan 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Engin virkni +DocType: Server Script,Script Manager,Handritastjóri +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Engin virkni apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps forrit þriðja aðila apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Engir viðburðir í dag apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Þú getur ekki gefið sjálfum þér stig apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType verður að vera sendur fyrir valið skjalviðburð DocType: Workflow State,circle-arrow-up,hring-ör-upp @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ekki leyfilegt fyrir {0}: {1}. Takmarkaður reitur: {2} 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,You are not allowed to delete a standard Website Theme,Þú hefur ekki heimild til að eyða staðlað Website Þema +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Búðu til fyrstu {0} DocType: Data Import,Log Details,Skráarupplýsingar DocType: Workflow Transition,Example,Dæmi DocType: Webhook Header,Webhook Header,Webhook Header @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Spjallbakgrunnur apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Merkja sem lesið apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Uppfærir {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Um borðskyggni {0} með sömu rennipöntun er þegar til apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Slökkva Report DocType: Translation,Contributed Translation Doctype Name,Framlag Þýðing Doctype nafn +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Skipulag> Sérsníða form DocType: PayPal Settings,Redirect To,beina Til DocType: Data Migration Mapping,Pull,Dragðu DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Innri met skjal hluta DocType: Energy Point Settings,Review Levels,Farið yfir stig DocType: Workflow State,Comment,athugasemd DocType: Data Migration Plan,Postprocess Method,Aðferðaraðferð +DocType: DocType Action,Action Type,Aðgerðategund apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Taka mynd DocType: Assignment Rule,Round Robin,Umferð Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Þú getur breytt framlögð skjöl með því að loka þá og þá, um breytingu á þeim." @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Vista sem DocType: Comment,Seen,séð apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Sýna fleiri upplýsingar +DocType: Server Script,Before Submit,Áður en þú leggur fram 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,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,Archive,Skjalasafn @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Rangt reitheiti {0} í add_fetch stillingu sérsniðið handrit apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Veldu Google tengiliði sem tengiliðurinn á að samstilla við. DocType: Web Page,Main Section (HTML),Aðalhluti (HTML) +DocType: Scheduled Job Type,Annual,Árleg DocType: Workflow State,headphones,heyrnartól apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Lykilorð er krafist eða veldu bíður lykilorð DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,td replies@yourcomany.com. Öll svör munu koma til þessa pósthólfið. DocType: Slack Webhook URL,Slack Webhook URL,Slaka Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",Ákvarðar röð skyggnunnar í töframanninum. Ef skyggnið á ekki að birtast ætti að stilla forgang á 0. DocType: Data Migration Run,Current Mapping,Núverandi kortlagning apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Gilt netfang og nafn krafist apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Gera öll viðhengi lokuð @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,umskipti Reglur apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Sýnir aðeins fyrstu {0} línurnar í forskoðun apps/frappe/frappe/core/doctype/report/report.js,Example:,Dæmi: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Takmarkanir DocType: Workflow,Defines workflow states and rules for a document.,Skilgreinir workflow ríki og reglur um skjal. DocType: Workflow State,Filter,Sía apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Athugaðu villubókina fyrir frekari upplýsingar: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} innskráð út: {1} DocType: Address,West Bengal,Vestur-Bengal +DocType: Onboarding Slide,Information,Upplýsingar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Get ekki stillt á Velja Leggja ef ekki Submittable DocType: Transaction Log,Row Index,Row Index DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid 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 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Mun keyra tímaáætlun aðeins einu sinni á dag fyrir óvirka vefi. Sjálfgefið 4 daga ef stillt er á 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Skipulagt starf DocType: Custom DocPerm,Permissions,heimildir apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slaka Webhooks fyrir innri samþættingu DocType: Dropbox Settings,Allow Dropbox Access,Leyfa Dropbox aðgang @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skann DocType: Email Flag Queue,Email Flag Queue,Tölvupóstur Flag Biðröð DocType: Access Log,Columns / Fields,Súlur / reitir apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Sniðmát fyrir prentunarform +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Samanlagður aðgerðarreitur er nauðsynlegur til að búa til mælaborðsrit apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Ekki er hægt að bera kennsl á opinn {0}. Prófaðu eitthvað annað. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Upplýsingarnar þínar hafa verið lagðar fram apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,User {0} getur ekki eytt @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Field Name DocType: Assignment Rule,Assign To Users,Úthluta notendum apps/frappe/frappe/public/js/frappe/utils/utils.js,or,eða apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,mát nafn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Halda áfram +DocType: Onboarding Slide,Continue,Halda áfram apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Sameining Google er óvirk. DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,vottorð apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Staðfestir ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Verkefni þitt á {0} {1} hefur verið fjarlægt apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Fyrst gögn dálkur verður auður. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Sýna öllum útgáfum apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Skoða athugasemd @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Takmarka IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Mælaborð apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Ekki er hægt að senda tölvupóst á þessum tíma apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google dagatal - gat ekki uppfært viðburð {0} í Google dagatali, villukóða {1}." +DocType: Notification Log,Email Content,Efni tölvupósts apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Leitaðu eða slá inn skipun DocType: Activity Log,Timeline Name,Timeline Name apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Aðeins er hægt að stilla einn {0} sem aðal. DocType: Email Account,e.g. smtp.gmail.com,td smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Bæta við nýrri reglu DocType: Contact,Sales Master Manager,Velta Master Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Þú verður að virkja JavaScript til að forritið þitt virki. DocType: User Permission,For Value,Fyrir gildi DocType: Event,Google Calendar ID,Google Dagatal ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Eitt síðasta skref @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP miðnafnsreitur apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Flytur inn {0} af {1} DocType: GCalendar Account,Allow GCalendar Access,Leyfa GCalendar aðgangi apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} er lögboðið reit +DocType: DocType,Documentation Link,Skjölunartengill apps/frappe/frappe/templates/includes/login/login.js,Login token required,Innskráning lykilorð þarf apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mánaðarleg röðun: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Veldu marga lista hluti @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,File URL DocType: Version,Table HTML,Tafla HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Bæta Áskrifandi +DocType: Notification Log,Energy Point,Orkupunktur apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Næstu viðburðir í dag DocType: Google Calendar,Push to Google Calendar,Ýttu á Google dagatalið DocType: Notification Recipient,Email By Document Field,Netfang By Document Field @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Away DocType: Currency,Fraction Units,brot Einingar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} frá {1} til {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Merktu sem lokið DocType: Chat Message,Type,Gerð DocType: Google Settings,OAuth Client ID,Auðkenni viðskiptavinar OAuth DocType: Auto Repeat,Subject,Subject apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Til baka í skrifborð DocType: Web Form,Amount Based On Field,Upphæð Byggt á Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} hefur engar útgáfur að rekja. apps/frappe/frappe/core/doctype/docshare/docshare.py,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öð @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Vinsamlegast athugaðu tölvupóstinn þinn til staðfestingar apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold getur ekki verið í lok formi DocType: Communication,Bounced,hopp +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,af DocType: Deleted Document,Deleted Name,eytt Name apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,System og Website Notendur DocType: Workflow Document State,Doc Status,Doc Staða @@ -521,6 +546,7 @@ DocType: Language,Language Code,Tungumál Code DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Til athugunar: Sjálfgefið tölvupóstar fyrir mistókst afrit eru send. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Bæta Sía apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS send til eftirfarandi númer: {0} +DocType: Notification Settings,Assignments,Verkefni apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Byrjaðu samtal. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Alltaf að bæta "Draft" Heading fyrir prentun drög skjölum @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Núverandi Kortlagning apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Netfangið hefur verið merkt sem ruslpóstur DocType: Comment,Website Manager,Vefsíða Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Skráaflutningur ótengdur. Vinsamlegast reyndu aftur. +DocType: Data Import Beta,Show Failed Logs,Sýna mistök í annálum apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Þýðingar apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Þú valdir Draft eða Canceled skjöl apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Skjal {0} hefur verið stillt til að lýsa {1} með {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,skjal biðröð DocType: GSuite Templates,Destination ID,Áfangastað DocType: Desktop Icon,List,List DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Þú hefur ekki DocType: System Settings,mm/dd/yyyy,mm / dd / áááá +DocType: Onboarding Slide,Onboarding Slide,Rennibraut um borð apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,fyrri @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,dökk grár apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Vel heppnuðu: {0} til {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Dropi +DocType: Dashboard Chart,Aggregate Function Based On,Samanlagð aðgerð byggð á apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Vinsamlegast afrit þetta til að gera breytingar apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Ýttu á Enter til að vista apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF kynslóð mistókst vegna brotinn myndatenglum @@ -610,7 +640,9 @@ DocType: Notification,Days Before,dögum áður apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Daglegum atburðum ætti að ljúka sama degi. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Breyta ... DocType: Workflow State,volume-down,rúmmál niður +DocType: Onboarding Slide,Help Links,Hjálpartenglar apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Aðgangur er ekki leyfður frá þessari IP tölu +DocType: Notification Settings,Enable Email Notifications,Virkja tölvupósttilkynningar apps/frappe/frappe/desk/reportview.py,No Tags,Engin merki DocType: Email Account,Send Notification to,Senda tilkynningu til DocType: DocField,Collapsible,fellanlegur @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Síðasta afritun kveikt DocType: Customize Form Field,Customize Form Field,Sérsníða Form Field DocType: Energy Point Rule,For Document Event,Fyrir skjalatburð DocType: Website Settings,Chat Room Name,Spjallsvæði nafn +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Óbreytt DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Athugaðu hvaða Skjöl eru læsileg af notanda DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,nota DocType: Auto Repeat,Quarterly,ársfjórðungslega apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Allra tíma apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ólögleg skjalastaða fyrir {0} DocType: Email Account,Enable Auto Reply,Virkja sjálfvirka svar apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ekki séð @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Skila DocType: Email Account,Notify if unreplied,Tilkynna ef unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skannaðu QR kóða og sláðu inn kóða sem birtist. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Virkja halla +DocType: Scheduled Job Type,Hourly Long,Klukkutíma langur DocType: System Settings,Minimum Password Score,Lágmarks Lykilorðsstig DocType: DocType,Fields,Fields DocType: System Settings,Your organization name and address for the email footer.,Samtökin nafn þitt og heimilisfang fyrir the email fót. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tafl apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup lokið! apps/frappe/frappe/config/desktop.py,Developer,Hönnuður apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,búið +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Fylgdu leiðbeiningunum á eftirfarandi tengli til að gera það virkt: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} í röð {1} getur ekki bæði slóðina og barn atriði apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Það ætti að vera að minnsta kosti ein röð fyrir eftirfarandi töflur: {0} DocType: Print Format,Default Print Language,Sjálfgefið prentmál apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Forfaðir Af apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} getur ekki eytt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Engar annmarkar mistókst apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Engar athugasemdir enn sem komið er apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Vinsamlegast settu upp SMS áður en þú stillir það sem auðkenningaraðferð, með SMS stillingum" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Bæði DOCTYPE og Name krafist @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Footer Items apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,matseðill DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Daily +DocType: Onboarding Slide,Max Count,Hámarksfjöldi apps/frappe/frappe/config/users_and_permissions.py,User Roles,User Hlutverk DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Eign Setter hnekkir staðlað DOCTYPE eða Field eign apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Get ekki Uppfæra: Rangt / útrunnið Link. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Host DocType: Data Import Beta,Import File,Flytja inn skrá +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Sniðmátsvilla apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Column {0} þegar til. DocType: ToDo,High,Hár apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,New Event @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Sýna í síu DocType: Address,Daman and Diu,Daman og Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Project DocType: Address,Personal,Starfsfólk +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Raw prentunarstillingar ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Sjá https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region fyrir frekari upplýsingar. apps/frappe/frappe/config/settings.py,Bulk Rename,Magn Endurnefna DocType: Email Queue,Show as cc,Sýna sem CC @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Taka myndskeið DocType: Contact Us Settings,Introductory information for the Contact Us Page,Inngangs upplýsingum fyrir Hafðu samband síðunni DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,Thumbs niður +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Hætt við skjöl DocType: User,Send Notifications for Email threads,Sendu tilkynningar fyrir tölvupóstþræði apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prófessor apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ekki í forritarastillingu @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Skrá varab DocType: DocField,In Global Search,Í Global Leita DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,inndráttur vinstri -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Það er áhættusamt að eyða þessari skrá: {0}. Vinsamlegast hafðu samband System Manager. DocType: Currency,Currency Name,Gjaldmiðill Name apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,engar póst @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Notendasvið DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Ýta Eyða apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} þegar afskráðir fyrir {1} {2} +DocType: Scheduled Job Type,Stopped,Tappi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Ekki fjarlægja apps/frappe/frappe/desk/like.py,Liked,líkaði apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Senda Nú apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType getur ekki haft sjálfgefið prenta snið, nota Customize Form" +DocType: Server Script,Allow Guest,Leyfa gesti DocType: Report,Query,fyrirspurn DocType: Customize Form,Sort Order,Raða Order apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"Í listayfirliti 'ekki leyfð tegund {0} í röð {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Tvær þættir staðfestingaraðferð apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Settu fyrst nafnið og vistaðu skrána. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 met +DocType: DocType Link,Link Fieldname,Reitnafn tengils apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Deilt með {0} apps/frappe/frappe/email/queue.py,Unsubscribe,afskrá DocType: View Log,Reference Name,Tilvísun Name apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Skiptu um notanda +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Í fyrsta lagi apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Uppfæra þýðingar DocType: Error Snapshot,Exception,undantekning DocType: Email Account,Use IMAP,Nota IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Reglur skilgreina umskipti ríkisins í workflow. DocType: File,Folder,mappa DocType: Website Route Meta,Website Route Meta,Route Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Um borð rennibraut DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Fréttabréf Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,valkostur 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Stilla töflur DocType: User,Last IP,Síðasta IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Vinsamlegast bættu við efni við netfangið þitt -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Nýtt skjal {0} hefur verið deilt með þér {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} afturkallað {1} DocType: Email Account,Track Email Status,Track Email Status @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Sjálfgefið Outgoing DocType: Workflow State,play,spila apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Smelltu á tengilinn hér fyrir neðan til að ljúka skráningunni og setja nýtt lykilorð apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Fékk ekki að bæta +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} hlaut {1} stig fyrir {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Engin Email Accounts Úthlutað DocType: S3 Backup Settings,eu-west-2,eu-vestur-2 DocType: Contact Us Settings,Contact Us Settings,Hafðu samband Stillingar @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Leita ... DocType: Workflow State,text-width,texti-breidd apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Hámarks Attachment Limit fyrir þessa færslu náð. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Leitaðu að skráarnafni eða viðbót +DocType: Onboarding Slide,Slide Title,Rennititill DocType: Notification,View Properties (via Customize Form),Skoða Properties (með Customize Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Smelltu á skrá til að velja hana. DocType: Note Seen By,Note Seen By,Athugasemd séð af @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Deila vefslóð DocType: System Settings,Allow Consecutive Login Attempts ,Leyfa tilraunir til innskráningar í röð apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Villa kom upp við greiðsluferlið. Vinsamlegast hafðu samband við okkur. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ef skyggnugerð er Búa til eða Stillingar, þá ætti að vera 'create_onboarding_docs' aðferð í {ref_doctype} .py skránni sem verður keyrð eftir að rennibrautinni er lokið." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dagar síðan DocType: Email Account,Awaiting Password,bíður Lykilorð DocType: Address,Address Line 1,Heimilisfang lína 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ekki afkomendur af DocType: Contact,Company Name,nafn fyrirtækis DocType: Custom DocPerm,Role,hlutverk -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Stillingar ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,í vafranum þínum apps/frappe/frappe/utils/data.py,Cent,cent ,Recorder,Upptökutæki @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Fylgstu með ef tölvupósturinn þinn hefur verið opnaður af viðtakanda.
Athugaðu: Ef þú sendir til margra viðtakenda, jafnvel þótt 1 viðtakandi lesi tölvupóstinn, þá telst hann "opnaður"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Vantar gildi Áskilið apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Leyfa aðgang Google tengiliða +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Takmarkað DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Merkja sem ólesið DocType: Activity Log,Operation,Operation @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,leyfa Prenta DocType: Communication,Clicked,smellt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Hætta að fylgjast með apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Engin heimild til að '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefinn tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Áætlunarferðir til að senda DocType: DocType,Track Seen,Track Séð DocType: Dropbox Settings,File Backup,File Backup @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Engin {0} fan apps/frappe/frappe/config/customization.py,Add custom forms.,Bæta sérsniðnum form. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} í {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,lögð þessu skjali -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Skipulag> Notendaleyfi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Kerfið býður upp á ýmsa fyrirfram skilgreind hlutverk. Hægt er að bæta við nýjum hlutverkum að setja fínni heimildir. DocType: Communication,CC,CC DocType: Country,Geo,geo DocType: Data Migration Run,Trigger Name,Strikamerki -apps/frappe/frappe/public/js/frappe/desk.js,Domains,lén +DocType: Onboarding Slide,Domains,lén DocType: Blog Category,Blog Category,Blog Category apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Ekki er hægt að kortleggja vegna eftirfarandi skilyrði ekki: DocType: Role Permission for Page and Report,Roles HTML,hlutverk HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,laugardagur DocType: User,Represents a User in the system.,Táknar notandi í kerfinu. DocType: List View Setting,Disable Auto Refresh,Slökkva á sjálfvirkri endurnýjun DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Verkefni {0}, sem þú úthlutað til {1}, hefur verið lokað." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Lokaðu þessum glugga DocType: Print Format,Print Format Type,Print Format Tegund DocType: Newsletter,A Lead with this Email Address should exist,A Lead með þessu netfangi ætti til @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP stillingar fyrir s apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,veldu DocType: Data Export,Filter List,Sía listi DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Svara Message DocType: Data Migration Mapping,Condition,Ástand apps/frappe/frappe/utils/data.py,{0} hours ago,{0} klukkustundum síðan @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Framlög DocType: Communication,Sent Read Receipt,Sendur lestrarkvittun DocType: Email Queue,Unsubscribe Method,afskrá Aðferð +DocType: Onboarding Slide,Add More Button,Bættu við fleiri hnappi DocType: GSuite Templates,Related DocType,Tengd skjalgerð apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Breyta til að bæta við efni apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Select Tungumál apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kortaupplýsingar apps/frappe/frappe/__init__.py,No permission for {0},Engin heimild fyrir {0} DocType: DocType,Advanced,Ítarlegri +DocType: Onboarding Slide,Slide Image Source,Uppruni myndar apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Tilvísun: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Frú @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Notandi getur ekki búið apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Lokið apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox aðgangur er samþykkt! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Ertu viss um að þú viljir sameina {0} við {1}? DocType: Customize Form,Enter Form Type,Sláðu Form Tegund DocType: Google Drive,Authorize Google Drive Access,Leyfa aðgang að Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Vantar breytu Kanban stjórnarheiti @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Leyfa DOCTYPE, DOCTYPE. Farðu varlega!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Sérsniðin Snið fyrir prentun, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summa af {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Uppfært til New Version DocType: Custom Field,Depends On,Veltur á DocType: Kanban Board Column,Green,grænn DocType: Custom DocPerm,Additional Permissions,Önnur Heimildir @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Félagsleg apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google dagatal - Gat ekki búið til dagatal fyrir {0}, villukóða {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Breyti Row DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Eyða öllu DocType: Custom Field,Field Type,reitur Tegund apps/frappe/frappe/utils/data.py,only.,eingöngu. DocType: Route History,Route History,Leiðsaga @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Gleymt lykilorð? DocType: System Settings,yyyy-mm-dd,áááá-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server Villa +DocType: Server Script,After Delete,Eftir að eyða apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Sjá allar fyrri skýrslur. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Innskráning Id er krafist DocType: Website Slideshow,Website Slideshow,Vefsíða Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Engin gögn DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link sem er vefsíða heimasíða. Staðlaðar Links (vísitölu, tenging, vörur, blogg, um, snerting)" +DocType: Server Script,After Submit,Eftir að leggja apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Auðkenning mistókst meðan að fá tölvupóst frá netfangs {0}. Skilaboð frá miðlara: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Custom Field @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ef notandinn hefur hvaða hlutverk köflóttur, þá verður notandinn að "System User". "System Notandi" hefur aðgang að skjáborðinu" DocType: System Settings,Date and Number Format,Dagsetning og Number Format apps/frappe/frappe/model/document.py,one of,einn af -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Skipulag> Sérsníða form apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Athugar eitt augnablik apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Sýna Tags DocType: DocField,HTML Editor,HTML ritstjóri 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Skipulag> Notandi +DocType: DocType,Actions,aðgerðir DocType: Workflow State,align-justify,samræma-réttlæta DocType: User,Middle Name (Optional),Middle Name (Valfrjálst) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ekki leyfilegt @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,engar niðu DocType: System Settings,Security,Öryggi apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Áætlunarferðir til að senda til {0} viðtakenda apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Skera +DocType: Server Script,After Save,Eftir Vista apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},endurnefna frá {0} til {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} af {1} ({2} raðir með börn) DocType: Currency,**Currency** Master,** Gjaldmiðill ** Master @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Sía gildi DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Mistakast DocType: Workflow State,download-alt,sækja-alt +DocType: Scheduled Job Type,Last Execution,Last Framkvæmd DocType: Data Migration Run,Pull Failed,Draga mistókst apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Sýna / fela kort DocType: Communication,Feedback Request,athugasemdir Beiðni apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Flytja inn gögn úr CSV / Excel skrám. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Eftirfarandi reitir vantar: +DocType: Notification Log,From User,Frá notanda apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Hættir við {0} DocType: Web Page,Main Section,Main Section DocType: Page,Icon,Táknmynd apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Ábending: Hafa tákn, tölur og hástafi í lykilorðinu" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Stilla tilkynningar fyrir minnst, verkefni, orkupunkta og fleira." DocType: DocField,Allow in Quick Entry,Leyfa í flýtiritun apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / áááá @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,Slóð að þema DocType: Customize Form,Sort Field,Raða Field DocType: Razorpay Settings,Razorpay Settings,Razorpay Stillingar apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Breyta Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Bæta við fleiri DocType: System Settings,Session Expiry Mobile,Session Fyrning Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Rangt notandi eða lykilorð apps/frappe/frappe/templates/includes/search_box.html,Search results for,Leitarniðurstöður fyrir @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Reglu um orkupunkta DocType: Communication,Delayed,seinkað apps/frappe/frappe/config/settings.py,List of backups available for download,Listi yfir afrit hægt að sækja +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Prófaðu nýja Data Import apps/frappe/frappe/www/login.html,Sign up,Skráðu þig apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Row {0}: Ekki leyft að slökkva á Skylda fyrir staðlaða reiti +DocType: Webhook,Enable Security,virkja Öryggi apps/frappe/frappe/config/customization.py,Dashboards,Mælaborð DocType: Test Runner,Output,Output DocType: Milestone,Track Field,Brautarvöllur @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Setja eign eftir viðvörun apps/frappe/frappe/config/customization.py,Add fields to forms.,Bæta reiti til að formum. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Útlit eins og eitthvað er athugavert við Paypal stillingar þessa vefsvæðis. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Bættu við umsögn +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} úthlutaði þér nýju verkefni {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Leturstærð (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Aðeins er heimilt að aðlaga staðlaða DocTypes úr Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Stilltu síur DocType: Contact Us Settings,Email ID,Tölvupóstur ID DocType: Energy Point Rule,Multiplier Field,Margfaldari sviði +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Gat ekki búið til Razorpay röð. Vinsamlegast hafðu samband við kerfisstjóra DocType: Dashboard Chart,Time Interval,Tímabil DocType: Activity Log,Keep track of all update feeds,Fylgstu með öllum uppfærslumiðum +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} deilt skjal {1} {2} með þér 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Key DocType: Address,Contacts,Tengiliðir DocType: System Settings,Setup Complete,skipulag Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Skýrsla allra skjal hluta +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Innflutningssniðmát ætti að vera af gerðinni .csv, .xlsx eða .xls" apps/frappe/frappe/www/update-password.html,New Password,nýtt lykilorð apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Sía {0} vantar apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Afsakið! Þú getur ekki eytt sjálfvirkir athugasemdir @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,síðumerkis apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Hlaupa DocType: Blog Post,Content (HTML),Innihald (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Uppsetning fyrir DocType: Personal Data Download Request,User Name,Notandanafn DocType: Workflow State,minus-sign,mínus-merki apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ekki fundið @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Engin {0} leyfi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Útflutningur Sérsniðnar aðgangsheimildir apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Engar vörur fundust. DocType: Data Export,Fields Multicheck,Fields Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Lokið DocType: Activity Log,Login,Skrá inn DocType: Web Form,Payments,greiðslur apps/frappe/frappe/www/qrcode.html,Hi {0},Hæ {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive samþætting. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} afturkallaðu stigin þín á {1} {2} DocType: System Settings,Enable Scheduled Jobs,Virkja Tímaáætlun Jobs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Skýringar: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Óvirkt @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Email apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Leyfisveitingar Villa apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Heiti {0} er ekki hægt að {1} DocType: User Permission,Applicable For,gildir til +DocType: Dashboard Chart,From Date,frá Dagsetning apps/frappe/frappe/core/doctype/version/version_view.html,Success,Velgengni apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Session liðinn DocType: Kanban Board Column,Kanban Board Column,Kanban Board Column @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ár apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ekki leyft í skilyrðum DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,mynd -apps/frappe/frappe/www/complete_signup.html,Complete,Complete +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Complete DocType: DocType,Image Field,Mynd Field DocType: Print Format,Custom HTML Help,Custom HTML Hjálp DocType: LDAP Settings,Default Role on Creation,Sjálfgefin hlutverk við sköpun @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,næsta State DocType: User,Block Modules,blokk Modules DocType: Print Format,Custom CSS,Custom CSS +DocType: Energy Point Rule,Apply Only Once,Notið aðeins einu sinni apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Bæta við athugasemd DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Hunsuð: {0} til {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Sjálfgefið Komandi DocType: Workflow State,repeat,endurtaka DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Gildi verður að vera eitt af {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Hætta við öllum skjölum 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Farðu á {0} lista apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjálp á Leita @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Skráðir e apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Sjálfvirk endurtekning fyrir þetta skjal hefur verið gerð óvirk. DocType: DocType,Hide Copy,fela Afrita apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Hreinsa allt hlutverkum +DocType: Server Script,Before Save,Áður en vista apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} verður að vera einstakt apps/frappe/frappe/model/base_document.py,Row,Row apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Sniðmát" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} tókst að flytja inn DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Senda afskrá skilaboð í tölvupósti -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Breyta titli apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,FIELDNAME sem verður DOCTYPE fyrir þennan tengil sviði. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Skjöl úthlutað til þín og af þér. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Þú getur líka afritað og límt þetta @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,hengja mynd DocType: Workflow State,list-alt,lista-alt apps/frappe/frappe/www/update-password.html,Password Updated,Lykilorð Uppfært +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Skipulag> Notendaleyfi apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Skref til að staðfesta innskráninguna þína apps/frappe/frappe/utils/password.py,Password not found,Lykilorð fannst ekki +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Page Lengd DocType: Email Queue,Expose Recipients,Haldið viðtakendum apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Bæta við er nauðsynlegur fyrir komandi póstur @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Max Attachment Stærð (í MB) apps/frappe/frappe/www/login.html,Have an account? Login,Með reikning? Skrá inn +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Prentstillingar ... DocType: Workflow State,arrow-down,arrow niður apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Röð {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Notandi ekki leyft að eyða {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sláðu i DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Aðgangur Secret DocType: Tag Link,Document Title,Heiti skjals apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Skylda) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári DocType: Social Login Key,Social Login Provider,Félagsleg innskráningaraðili apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Bæta Annar athugasemd apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Engin gögn fundust í skránni. Vinsamlegast settu nýja skrána á ný með gögnum. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,hönd-niður apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Engir reitir fundust sem hægt er að nota sem Kanban súlu. Notaðu sérsniðið form til að bæta við sérsniðnum reit af gerðinni „Veldu“. DocType: Address,GST State,GST ríki apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Get ekki stillt Hætta án Senda +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Notandi ({0}) DocType: Website Theme,Theme,Þema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Beina URI Bound To Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Opna hjálp DocType: DocType,Is Submittable,er Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nýtt nefnt +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nýtt nefnt apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Engir nýir Google tengiliðir samstillt. DocType: File,Uploaded To Google Drive,Hlaðið upp á Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Gildi fyrir brottför sviði getur verið annaðhvort 0 eða 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Red DocType: Workflow State,Tag,tag -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Skjalið er ekki hægt að vista. DocType: Energy Point Rule,Maximum Points,Hámarks stig apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mínar Stillingar @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} þakklæti stig fyrir {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Hlutverk hægt að stilla fyrir notendur frá User síðunni þeirra. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Bæta við athugasemd +DocType: Dashboard Chart,Select Date Range,Veldu dagsetningarsvið DocType: DocField,Mandatory,nauðsynlegur apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module að flytja út +DocType: Scheduled Job Type,Monthly Long,Mánaðarlega langur apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} Nei undirstöðu heimildir sett +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Senda tölvupóst til {0} að tengja það hér apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Merking Senda, Hætta, breytt" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Að gera @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Fylgdu tímamótum DocType: Social Login Key,Identity Details,Upplýsingar um auðkenni apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Umskipti á verkflæðisríki ekki leyfð frá {0} til {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Sýna stjórnborð -apps/frappe/frappe/desk/form/assign_to.py,New Message,Ný skilaboð DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-skýrsla DocType: Data Import Beta,Template Warnings,Viðvaranir sniðmáts @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,tengd við apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Breyta stillingum fyrir sjálfvirkan tölvupóstskjá DocType: Chat Room,Message Count,Message Count DocType: Workflow State,book,bók +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} er tengt við eftirfarandi lögð fram skjöl: {2} DocType: Communication,Read by Recipient,Lesið af viðtakanda DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Villa í Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Heiti apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Engar heimildir sett þessi skilyrði. DocType: Auto Email Report,Auto Email Report,Auto Email Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nýtt skjal deilt apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Eyða athugasemd? DocType: Address Template,This format is used if country specific format is not found,Þetta snið er notað ef landið sérstakur snið er ekki að finna DocType: System Settings,Allow Login using Mobile Number,Leyfa Innskráning með því að nota farsímanúmer apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ef slökkt er á, verður ekki beðið um notendur sem skráir sig inn frá Takmarkað IP-tölu fyrir Two Factor Auth" +DocType: Server Script,After Cancel,Eftir að hætta við DocType: Auto Repeat,Get Contacts,Fáðu tengiliði apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Færslur í flokkinum {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Sleppi Untitled dálki @@ -1684,6 +1757,7 @@ DocType: User,Login After,Innskráning eftir DocType: Print Format,Monospace,Jafnbreitt DocType: Letter Head,Printing,Prentun DocType: Workflow State,thumbs-up,Thumbs upp +DocType: Notification Log,Mention,Nefna DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Skírnarfontur apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision ætti að vera á milli 1 og 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,og apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Þessi skýrsla var búin til á {0} DocType: Error Snapshot,Frames,rammar -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,framsal +DocType: Notification Log,Assignment,framsal DocType: Notification,Slack Channel,Slaka rás DocType: About Us Team Member,Image Link,Mynd Link DocType: Auto Email Report,Report Filters,Tilkynna síur @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Ekki er hægt að uppfæra atburði apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Staðfestingarkóði hefur verið send á skráð netfangið þitt. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Þrýstingur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Markmið þitt apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Sía verður að hafa 4 gildin (gerðargerð, svæðisnafn, rekstraraðili, gildi): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Ekkert nafn tilgreint fyrir {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Notaðu verkefnisreglu apps/frappe/frappe/utils/bot.py,show,sýna apps/frappe/frappe/utils/data.py,Invalid field name {0},Ógilt svæðisheiti {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,texti-hæð DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Gagnaflutningsáætlun Kortlagning apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Byrjar Frappé ... DocType: Web Form Field,Max Length,max Length -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Fyrir {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-merki apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Leggja mál @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page vantar eða flutt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Umsagnir DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay greiðslu hlið stillingar +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} hlaut {1} stig fyrir {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Hentu viðhengdum myndum úr skjali DocType: Chat Room,Name,heiti DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Þitt tungumál DocType: Dashboard Chart,Average,Meðaltal apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Bæta Row -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Prentari apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Fyrirspurn verður að vera SELECT DocType: Auto Repeat,Completed,lokið @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Næsta Sync Token DocType: Energy Point Settings,Energy Point Settings,Stillingar orkupunkta DocType: Async Task,Succeeded,Eftirmaður apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Umbeðnar krafist er í {0} +DocType: Onboarding Slide Field,Align,Samræma apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Endurstilla heimildir fyrir {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Notendur og heimildir DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nýtt nafn prentunarforms apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Smelltu á hlekkinn hér að neðan til að samþykkja beiðnina DocType: Workflow State,align-left,samræma vinstri +DocType: Onboarding Slide,Action Settings,Aðgerðastillingar DocType: User,Defaults,vanskil +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til samanburðar, notaðu> 5, <10 eða = 324. Notaðu 5:10 (fyrir gildi á milli 5 og 10) fyrir svið." DocType: Energy Point Log,Revert Of,Aftur á móti apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sameinast núverandi DocType: User,Birth Date,Fæðingardagur @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,í DocType: Notification,Value Change,gildi Breyta DocType: Google Contacts,Authorize Google Contacts Access,Leyfa aðgang Google tengiliða apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Sýnir aðeins Numeric reitir úr Report +apps/frappe/frappe/utils/data.py,1 week ago,Fyrir einni viku DocType: Data Import Beta,Import Type,Tegund innflutnings DocType: Access Log,HTML Page,HTML síðu DocType: Address,Subsidiary,dótturfélag @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,með bréfshaus apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ógild Outgoing Mail Server eða Port DocType: Custom DocPerm,Write,skrifaðu -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Aðeins Administrator leyft að búa Fyrirspurn / Script Skýrslur apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Uppfæri DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "gildi" er nauðsynlegur. Vinsamlegast tilgreindu gildi til að uppfæra @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Bjóða ei DocType: Data Migration Run,Started,Byrjað apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Notandi {0} hefur ekki aðgang að þessu skjali DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Flokkast eftir grunni apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Select Viðhengi apps/frappe/frappe/model/naming.py, for {0},fyrir {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Þú hefur ekki heimild til að prenta þetta skjal @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Staðfestu DocType: Workflow Document State,Update Field,Uppfæra Field DocType: Chat Profile,Enable Chat,Virkja spjall DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Skildu þetta samtal apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Valkostir ekki sett fyrir tengilinn sviði {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Biðröð / starfsmaður @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Innskráning ekki leyfð á þessum tíma DocType: Data Migration Run,Current Mapping Action,Núverandi Kortlagning DocType: Dashboard Chart Source,Source Name,Source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Enginn tölvupóstreikningur tengdur notandanum. Vinsamlegast bættu reikningi við Notandi> Netfang pósthólf. DocType: Email Account,Email Sync Option,Tölvupóstur Sync Valkostur apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Röð nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Er festur DocType: Contact Us Settings,Introduction,kynning +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Þurfa hjálp? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pinna á heimsvísu apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Fylgt af DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Þegar í DocType: User Email,Enable Outgoing,Virkja Outgoing DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Custom Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tölvupóstreikningur er ekki uppsettur. Vinsamlegast stofnaðu nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur DocType: Comment,Submitted,lögð DocType: Contact,Pulled from Google Contacts,Dregið úr Google tengiliðum apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ógild beiðni @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Forsíða / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Úthluta til mín DocType: DocField,Dynamic Link,dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Ýttu á Alt takkann til að kveikja á fleiri flýtileiðum í Valmynd og Sidebar +DocType: Dashboard Chart,To Date,Hingað til DocType: List View Setting,List View Setting,Stilling listaskjás apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Sýna mistókst störf -DocType: Event,Details,Nánar +DocType: Scheduled Job Log,Details,Nánar DocType: Property Setter,DocType or Field,DOCTYPE eða Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Þú lauk þessu skjali af apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Aðallitur @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-Hopp DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",Ef það er virkt geta allir notendur tengt frá hvaða IP-tölu sem er með því að nota Two Factor Auth. Þetta er einnig hægt að stilla aðeins fyrir tiltekna notendur í User Page apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Virðast birta lykil eða leynileg lykill er rangt !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Quick Help til að setja Heimildir -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE að Úthluta merkjum apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Sýna bakslögum apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Netfangið hefur verið flutt í ruslið DocType: Report,Report Builder,skýrsla Builder @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Hlaða DocType: User Permission,Advanced Control,Ítarlegri stjórn DocType: System Settings,Date Format,Dagsetning Format apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ekki birt +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ekkert sjálfgefið netsniðmát fannst. Vinsamlegast búðu til nýtt úr Skipulag> Prentun og vörumerki> Heimilismát. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Aðgerðir til workflow (td Samþykkja, Hætta)." DocType: Data Import,Skip rows with errors,Slepptu raðir með villum DocType: Workflow State,flag,merkja @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Pren apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hoppa að sviði DocType: Contact Us Settings,Forward To Email Address,Forward á netfangið DocType: Contact Phone,Is Primary Phone,Er aðalsími -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Sendu tölvupóst á {0} til að tengja það hér. DocType: Auto Email Report,Weekdays,Virka daga apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} færslur verða fluttar út apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Title reitur verður að vera gilt FIELDNAME @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Post Athugasemd apps/frappe/frappe/config/core.py,Documents,skjöl apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Afþreyingaskrá eftir DocType: Social Login Key,Custom Base URL,Sérsniðin grunnslóð -DocType: Email Flag Queue,Is Completed,er lokið +DocType: Onboarding Slide,Is Completed,er lokið apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Fáðu Fields apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Edit Profile DocType: Kanban Board Column,Archived,Eldri @@ -2110,11 +2189,12 @@ 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 DocType: Social Login Key,Office 365,Skrifstofa 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Í dag +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Í dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Sendu inn eftir innflutning DocType: Error Log,Log of Scheduler Errors,Log um Tímaáætlun Villa DocType: User,Bio,bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Hlekkur fyrir snjóbretti um borð DocType: OAuth Client,App Client Secret,App Viðskiptavinur Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Sendi apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Foreldri er heiti skjalsins sem gögnin munu fá bætt við. @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,hástafi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Sláðu inn heiti möppu -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ekkert sjálfgefið netsniðmát fannst. Vinsamlegast búðu til nýtt úr Skipulag> Prentun og vörumerki> Heimilismát. apps/frappe/frappe/auth.py,Unknown User,Óþekktur notandi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Veldu hlutverk DocType: Comment,Deleted,eytt @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Spjalltákn apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Búðu til mynd apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ekki flytja inn -DocType: Web Page,Center,Center +DocType: Onboarding Slide Field,Center,Center DocType: Notification,Value To Be Set,Gildi til að setja apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Breyta {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,First Level @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Gagnasafn Nafn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Uppfæra Form DocType: DocField,Select,Veldu -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Skoða fulla skrá +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Skoða fulla skrá DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Einföld Python-tjáning, dæmi: status == 'Open' og tegund == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Skrá ekki fest apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Tenging tapað. Sumar aðgerðir virka ekki. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML til síðuhaushlutum. v apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Þessi eiginleiki er glæný og enn á tilraunastigi apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Hámark {0} raðir leyft DocType: Dashboard Chart Link,Chart,Mynd +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global Afskrá apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Þetta er mjög algengt lykilorð. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Útsýni @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Skilyrði smáatriði apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Fyrir gjaldmiðil {0} skal lágmarks viðskipta upphæð vera {1} DocType: DocField,Print Hide,Print Fela +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Til notanda apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Sláðu gildi DocType: Workflow State,tint,blær @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kóða fyri apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Bæta við til að gera DocType: Footer Item,Company,fyrirtæki apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Meðaltal af {0} +DocType: Scheduled Job Log,Scheduled,áætlunarferðir DocType: User,Logout from all devices while changing Password,Skráðu þig út úr öllum tækjum meðan þú breytir aðgangsorðinu apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Staðfestu lykilorð apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Það voru villur @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Notandaskilyrði er þegar til apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kortleggja dálk {0} til reit {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Skoða {0} -DocType: User,Hourly,Klukkutíma +DocType: Scheduled Job Type,Hourly,Klukkutíma apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth client app DocType: DocField,Fetch If Empty,Ná í ef tómt DocType: Data Migration Connector,Authentication Credentials,Auðkenningar persónuskilríki @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},unnið með {0} með sjálfvirku reglu {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eða {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Þið eruð öll sett upp! DocType: Workflow State,trash,rugl DocType: System Settings,Older backups will be automatically deleted,Eldri afrit verður sjálfkrafa eytt apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ógilt aðgangs lykil ID eða Leyndarmál aðgangs lykill. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Þú tapaðir orkupunktum DocType: Post,Is Globally Pinned,Er hnitmiðað apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Nýleg virkni DocType: Workflow Transition,Conditions,Skilyrði @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,staðfest DocType: Event,Ends on,endar á DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Slóð til netþjónsvottorðs +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript er óvirkt í vafranum þínum apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ekki nóg leyfi til að sjá tengla apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Heimilisfang Titill er nauðsynlegur. DocType: Google Contacts,Push to Google Contacts,Ýttu á Google tengiliði @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-vestur-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",Ef þetta er skoðuð verða raðir með gögnum innfluttar og ógildir raðir verði seldar í nýjan skrá til að flytja inn síðar. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Skjalið er aðeins editable af notendum hlutverki -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Verkefni {0}, sem þú úthlutað til {1}, hefur verið lokað af {2}." DocType: Print Format,Show Line Breaks after Sections,Sýna Line Breaks eftir köflum DocType: Communication,Read by Recipient On,Lesið af viðtakanda DocType: Blogger,Short Name,Short Name @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,úth DocType: Translation,PR sent,PR sent DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Aðeins Senda Records Uppfært í síðustu X Hours DocType: Communication,Feedback,athugasemdir +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Uppfært í nýja útgáfu 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Opna Þýðing apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Þessi tölvupóstur er autogenerated DocType: Workflow State,Icon will appear on the button,Helgimynd vilja birtast á the hnappur @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,síða ekk DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Slideshow Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Reyndu að forðast endurteknar orð og stafi +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Tilkynningar óvirkar +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Ertu viss um að þú viljir eyða öllum línum? DocType: Workflow Action,Workflow State,workflow State apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,raðir bætt apps/frappe/frappe/www/list.py,My Account,Minn reikningur @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,dögum eftir apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ bakkatenging virk! DocType: Contact Us Settings,Settings for Contact Us Page,Stillingar fyrir Hafðu samband síðunni +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Virkja prentþjón apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} vikum DocType: Email Account,Footer,Footer @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Viðvörun apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Þetta gæti verið prentað á mörgum síðum DocType: Data Migration Run,Percent Complete,Hlutfall lokið -DocType: Tag Category,Tag Category,tag Flokkur -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til samanburðar, notaðu> 5, <10 eða = 324. Notaðu 5:10 (fyrir gildi á milli 5 og 10) fyrir svið." DocType: Google Calendar,Pull from Google Calendar,Dragðu úr Google dagatalinu apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Hjálp DocType: User,Login Before,Innskráning Áður @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Fela helgar apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Býr sjálfkrafa til endurtekinna skjala. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,er +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Upplýsingar-merki apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Gildi fyrir {0} getur ekki verið listi DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvernig ætti þetta gjaldmiðil vera sniðinn? Ef ekkert er valið, mun nota kerfið sjálfgefnar stillingar" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Sendu inn {0} skjöl? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Villa við tengingu við QZ bakkaforrit ...

Þú þarft að hafa QZ Tray forrit sett upp og keyra til að nota Raw Print aðgerðina.

Smelltu hér til að hlaða niður og setja upp QZ Bakki .
Smelltu hér til að læra meira um Hráprentun ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Prentun kortlagning apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vinsamlegast vista áður festa. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Viltu hætta við öll tengd skjöl? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Bætti {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ekki hægt að breyta frá {0} til {1} í röð {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,hlutverk Heimildir DocType: Help Article,Intermediate,Intermediate +apps/frappe/frappe/config/settings.py,Email / Notifications,Netfang / tilkynningar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} breytt {1} í {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Hætt við skjal sem er endurreist sem drög DocType: Data Migration Run,Start Time,Byrjunartími @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ge apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ógilt netfang viðtakanda DocType: Workflow State,step-forward,skref áfram DocType: System Settings,Allow Login After Fail,Leyfa innskráningu eftir mistök +DocType: DocType Link,DocType Link,DocType hlekkur DocType: Role Permission for Page and Report,Set Role For,Stilla hlutverk DocType: GCalendar Account,The name that will appear in Google Calendar,Nafnið sem birtist í Google Dagatal apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Bein herbergi með {0} er þegar til. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Búa til DocType: Contact,Google Contacts,Google tengiliðir DocType: GCalendar Account,GCalendar Account,GCalendar reikningur DocType: Email Rule,Is Spam,er ruslpóstur +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Síðast apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Skýrsla {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} DocType: Data Import Beta,Import Warnings,Innflutningsviðvaranir @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,OK-merki apps/frappe/frappe/config/settings.py,Deleted Documents,Eyðir skjölum apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV sniði er málmengandi apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop táknið er þegar til +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Tilgreindu á hvaða lénum skyggnurnar ættu að birtast. Ef ekkert er tilgreint er glæran sjálfgefið sýnd á öllum lénum. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,afrit apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Reitinn {1} í röð {2} er ekki hægt að fela og skylda án sjálfgefins DocType: Newsletter,Create and Send Newsletters,Búa til og senda Fréttabréf @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Auðkenni Google dagatals apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Parent" táknar foreldri borð sem þessi röð verður að bæta apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Skoðunarstig: +DocType: Scheduled Job Log,Scheduled Job Log,Skipulögð starfaskrá +DocType: Server Script,Before Delete,Áður en eytt er apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,deilt með apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Hengdu skrá / url og bættu við í töflu. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Skilaboð ekki uppsetning @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Stillingar fyrir Um okkur Page apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stillingar fyrir gáttargreiðslugátt apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Prenta sent til prentarans! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Orkupunktar +DocType: Notification Settings,Energy Points,Orkupunktar +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tími {0} verður að vera með sniði: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,td pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Búa til lykla apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Þetta mun fjarlægja gögnin þín til frambúðar. DocType: DocType,View Settings,Skoða stillingar +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ný tilkynning DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Biðja um uppbyggingu +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Stýringaraðferð get_razorpay_order vantar DocType: Personal Data Deletion Request,Pending Verification,Bíður staðfestingar DocType: Website Meta Tag,Website Meta Tag,Meta merki vefsíðu DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",Ef ekki staðlað höfn (td 587). Ef þú ert í Google Cloud skaltu prófa höfn 2525. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Hreinsa lokadagsetningu, eins og það getur ekki verið í fortíðinni fyrir birtar síður." DocType: User,Send Me A Copy of Outgoing Emails,Sendu mér afrit af sendan tölvupósti -DocType: System Settings,Scheduler Last Event,Tímaáætlun Síðasta Event DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Bæta við Google Analytics: td. UA-89XXX57-1. Prófaðu að leita hjálpar á Google Analytics til að fá frekari upplýsingar. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Lykilorð má ekki vera meira en 100 stafir að lengd DocType: OAuth Client,App Client ID,App Viðskiptavinur ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nýtt lykilor apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} deildi þessu skjali með {1} DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Innflutnings sniðmát ætti að innihalda haus og að minnsta kosti eina röð. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google dagatalið hefur verið stillt. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",Uppsetning á topp stöðustikunni fót og merki. DocType: Web Form Field,Max Value,max Value @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Notandi félagsleg innskráning apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} gagnrýndi verk þitt á {1} með {2} lið DocType: Contact,All,Allt DocType: Email Queue,Recipient,viðtakandi +DocType: Webhook,Webhook Security,Vefhooköryggi DocType: Communication,Has Attachment,hefur viðhengi DocType: Address,Sales User,velta User apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Draga og sleppa tól til að byggja upp og aðlaga prenta snið. @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Flutningsgagnasvæði DocType: Dashboard Chart,Last Synced On,Síðast samstillt á DocType: Comment,Comment Type,athugasemd Type DocType: OAuth Client,OAuth Client,OAuth Viðskiptavinur -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} gagnrýndi vinnu þína við {1} {2} DocType: Assignment Rule,Users,Notendur DocType: Address,Odisha,Odisha DocType: Report,Report Type,Tegund skýrslu @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Vefsíða Slideshow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Sjálfvottun er ekki leyfilegt DocType: GSuite Templates,Template ID,Sniðmát apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,Samsetning styrkleiki ( {0} ) og svarstegund ( {1} ) er ekki leyfilegt -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Ný skilaboð frá {0} DocType: Portal Settings,Default Role at Time of Signup,Sjálfgefið Hlutverk meðan á innskráningarinneign DocType: DocType,Title Case,Title Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Smelltu á hlekkinn hér að neðan til að hlaða niður gögnum apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Virkjað tölvupósthólf fyrir notanda {0} DocType: Data Migration Run,Data Migration Run,Data Migration Run DocType: Blog Post,Email Sent,Tölvupóstur sendur -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Eldri DocType: DocField,Ignore XSS Filter,Hunsa XSS Sía apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,fjarlægð apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox öryggisafrit stillingar @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,biðröð DocType: Braintree Settings,Use Sandbox,Nota Sandbox apps/frappe/frappe/utils/goal.py,This month,Í þessum mánuði apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Ný Custom Prenta Format +DocType: Server Script,Before Save (Submitted Document),Áður en þú vistar (sent skjal) DocType: Custom DocPerm,Create,Búa apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Ekki fleiri hlutir til að sýna apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Fara í fyrri skrá @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Henda í ruslið DocType: Web Form,Web Form Fields,Vefform Fields DocType: Data Import,Amended From,breytt Frá +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Bættu við hjálparmyndbandstengli ef notandi hefur enga hugmynd um hvað á að fylla í skyggnið. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Viðvörun: Ekki er hægt að finna {0} í hvaða borð sem tengjast {1} DocType: S3 Backup Settings,eu-north-1,eu-norður-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Þetta skjal er nú biðröð fyrir framkvæmd. Vinsamlegast reyndu aftur @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Flytja út frá apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Ítarleg leit apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Þú hefur ekki leyfi til að skoða fréttabréfið. +DocType: Dashboard Chart,Group By,Group By DocType: User,Interests,Áhugasvið apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Lykilorð Endurstilla leiðbeiningar hafa verið send til þinn email DocType: Energy Point Rule,Allot Points To Assigned Users,Úthlutaðu stigum til úthlutaðra notenda @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Verkefnisregla apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Lagði Notandanafn: {0} DocType: Assignment Rule Day,Day,dagur apps/frappe/frappe/public/js/frappe/desk.js,Modules,Modules +DocType: DocField,Mandatory Depends On,Skylda fer eftir apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,greiðsla Velgengni apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} mail DocType: OAuth Bearer Token,Revoked,afturkallað @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Skenkur og athugasemdir apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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ð." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ekki leyft að festa {0} skjalið, vinsamlegast virkjaðu Leyfa prentun fyrir {0} í prentastillingum" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tölvupóstreikningur er ekki uppsettur. Vinsamlegast stofnaðu nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Sjá skjalið á {0} DocType: Stripe Settings,Publishable Key,Birtanlegur lykill apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Byrja að flytja inn @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,brot apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Atburður samstilltur við Google dagatal. DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field DocType: Contact,Middle Name,Millinafn +DocType: DocField,Property Depends On,Eign fer eftir DocType: Custom Field,Field Description,Field Lýsing apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nafn ekki sett með Hvetja apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Innhólfið apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Uppfærir {0} af {1}, {2}" DocType: Auto Email Report,Filters Display,síur Sýna apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Reiturinn „breyttur_frá“ verður að vera til staðar til að gera breytingu. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} kunni að meta verk þitt við {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Vistaðu síur DocType: Address,Plant,Plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svara öllum @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,mappa-loka apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Skýrsla: DocType: Print Settings,Print taxes with zero amount,Prenta skatta með núll upphæð apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} Ekki leyfilegt að endurnefna +DocType: Server Script,Before Insert,Áður en það er sett í DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Heimilisfang lína 2 DocType: Address,Reference,Tilvísun apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Úthlutað til -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefinn tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Gögn Flutningur Kortlagning Detail DocType: Data Import,Action,aðgerð DocType: GSuite Settings,Script URL,Slóð URL @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Api Aðgangur DocType: DocField,In List View,Í listayfirliti DocType: Email Account,Use TLS,Nota TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Ógilt notandanafn eða lykilorð +DocType: Scheduled Job Type,Weekly Long,Vikulega löng apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Sækja Snið apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Bæta sérsniðin JavaScript til að formum. ,Role Permissions Manager,Hlutverk Heimildir Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Heiti nýju Prenta Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Skiptu um hliðarstiku +DocType: Server Script,After Save (Submitted Document),Eftir vistun (sent skjal) DocType: Data Migration Run,Pull Insert,Dragðu inn DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Hámarks leyfileg stig eftir margföldun punkta með margfaldandi gildi (Athugið: Fyrir engin takmörk skal skilja þennan reit tóman eða setja 0) @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ekki uppsett apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Sækja með gögn apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},breytt gildi fyrir {0} {1} +DocType: Server Script,Before Cancel,Áður en hætt er við DocType: Workflow State,hand-right,hönd-rétt DocType: Website Settings,Subdomain,undirlén DocType: S3 Backup Settings,Region,Region @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,gamalt lykilorð DocType: S3 Backup Settings,us-east-1,us-austur-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posts by {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Til sniði dálka, gefa dálki merki í fyrirspurninni." +DocType: Onboarding Slide,Slide Fields,Rennibrautir DocType: Has Domain,Has Domain,Hefur lén DocType: User,Allowed In Mentions,Leyfð í nefnum apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ertu ekki með reikning? Skráðu þig apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Ekki er hægt að fjarlægja auðkenni reit apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Get ekki stillt á Velja breytt ef ekki Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Áskrift skjöl apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Notandastillingar DocType: Report,Reference Report,Tilvísunarskýrsla DocType: Activity Log,Link DocType,Link DOCTYPE @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Leyfa aðgang að daga apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Síðan sem þú ert að leita að vantar. Þetta gæti verið vegna þess að það er flutt eða það er prentvilla í tengilinn. apps/frappe/frappe/www/404.html,Error Code: {0},Villa Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lýsing á skráningu síðu, í látlaus texti, aðeins nokkrar línur. (max 140 stafir)" +DocType: Server Script,DocType Event,DocType atburður apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} eru skyldur reitir DocType: Workflow,Allow Self Approval,Leyfa sjálfs samþykki DocType: Event,Event Category,Viðburð Flokkur @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nafn þitt apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Tengsl velgengni DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Óákveðinn greinir í ensku um borð rennibraut af skyggnu gerð áfram að vera til. DocType: DocType,Default Sort Field,Sjálfgefið raða reit DocType: File,Is Folder,er Folder DocType: Document Follow,DocType,DOCTYPE @@ -3063,8 +3169,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,gildi B DocType: Workflow State,arrow-up,ör-upp DocType: Dynamic Link,Link Document Type,Krækjið gerð skjals apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Það ætti að vera að minnsta kosti ein röð fyrir {0} töfluna +DocType: Server Script,Server Script,Framreiðslumaður handrit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Til að stilla sjálfvirka endurtekningu, virkjaðu „Leyfa sjálfvirka endurtekningu“ frá {0}." DocType: OAuth Bearer Token,Expires In,rennur Í +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",Tíminn sem þú vilt endurtaka mengi reitanna (td: ef þú vilt hafa 3 viðskiptavini í skyggnunni skaltu stilla þennan reit á 3. Aðeins fyrsta reitasettið er sýnt sem skylda í skyggnunni) DocType: DocField,Allow on Submit,Leyfa á Senda DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,undantekning Type @@ -3074,6 +3182,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Fyrirsagnir apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Viðburðir á næstunni apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Vinsamlegast sláðu inn gildin fyrir App Access Key og App Secret Key +DocType: Email Account,Append Emails to Sent Folder,Bættu tölvupósti við senda möppu DocType: Web Form,Accept Payment,Samþykkja Paypal apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Veldu listalista apps/frappe/frappe/config/core.py,A log of request errors,A log beiðni villur @@ -3092,7 +3201,7 @@ DocType: Translation,Contributed,Framlag apps/frappe/frappe/config/customization.py,Form Customization,Aðlögun mynda apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Engar virkar fundur DocType: Web Form,Route to Success Link,Leið til að ná árangri -DocType: Top Bar Item,Right,Hægri +DocType: Onboarding Slide Field,Right,Hægri apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Engir væntanlegir atburðir DocType: User,User Type,Gerð notanda DocType: Prepared Report,Ref Report DocType,Tilvísunarskýrsla DocType @@ -3110,6 +3219,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Vinsamlegast rey apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Vefslóð verður að byrja með 'http: //' eða 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,valkostur 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ekki er hægt að afturkalla þetta DocType: Workflow State,Edit,Breyta DocType: Website Settings,Chat Operators,Chat Operators DocType: S3 Backup Settings,ca-central-1,ca-mið-1 @@ -3121,7 +3231,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Skýrsla með meira en 10 dálkum lítur betur út í Landslagstillingu. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ógilt heiti reits: {0} DocType: Milestone,Milestone,Áfangi @@ -3130,7 +3239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Fara til {0} apps/frappe/frappe/email/queue.py,Emails are muted,Póstur er þögguð apps/frappe/frappe/config/integrations.py,Google Services,Google þjónustu apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 vikum +DocType: Onboarding Slide,Slide Description,Skyggnilýsing DocType: Communication,Error,villa apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Vinsamlegast settu upp skilaboð fyrst DocType: Auto Repeat,End Date,Lokadagur @@ -3151,10 +3260,12 @@ DocType: Footer Item,Group Label,Group Label DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google tengiliðir hafa verið stilltir. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 hljómplata verður flutt út +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Enginn tölvupóstreikningur tengdur notandanum. Vinsamlegast bættu reikningi við Notandi> Netfang pósthólf. DocType: DocField,Report Hide,skýrsla Fela apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Tree view ekki í boði fyrir {0} DocType: DocType,Restrict To Domain,Takmarka að léni DocType: Domain,Domain,Domain +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ógild slóð skrár. Vinsamlegast hafðu samband við kerfisstjóra. DocType: Custom Field,Label Help,Label Hjálp DocType: Workflow State,star-empty,stjörnu-tómt apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Dagsetningar eru oft auðvelt að giska. @@ -3179,6 +3290,7 @@ DocType: Workflow State,hand-left,hönd-vinstri DocType: Data Import,If you are updating/overwriting already created records.,Ef þú ert að uppfæra / skrifa yfir þegar búið er að búa til skrár. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Er Global DocType: Email Account,Use SSL,Nota SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,spila-hring apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Skjalið gæti ekki verið rétt úthlutað apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ógilt "depends_on" tjáning @@ -3195,6 +3307,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Síðast hress apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Fyrir gerð skjals DocType: Workflow State,arrow-right,arrow hægri +DocType: Server Script,API Method,API aðferð DocType: Workflow State,Workflow state represents the current state of a document.,Workflow ástand táknar núverandi stöðu skjals. DocType: Letter Head,Letter Head Based On,Bréf höfuð byggt á apps/frappe/frappe/utils/oauth.py,Token is missing,Token vantar @@ -3234,6 +3347,7 @@ DocType: Comment,Relinked,var tengdur DocType: Print Settings,Compact Item Print,Compact Item Prenta DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Framsendingarslóð +DocType: Onboarding Slide Field,Placeholder,Staðarhaldari DocType: SMS Settings,Enter url parameter for receiver nos,Sláðu url breytu til móttakara Nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Notaðu alltaf nafn reiknings sem nafn sendanda @@ -3243,7 +3357,6 @@ DocType: Workflow State,Home,Home DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Notandi getur skráð þig inn með tölvupósti eða notendanafni DocType: Workflow State,question-sign,spurning-merki -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} er óvirk apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Vettvangur "leið" er skylt fyrir vefskoðanir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Setja inn dálk fyrir {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Notandinn á þessu sviði fær verðlaun stig @@ -3268,6 +3381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ef Eigandi DocType: Data Migration Mapping,Push,Ýttu á apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Sendu skrár hér DocType: OAuth Authorization Code,Expiration time,gildistíma +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Opna skjöl DocType: Web Page,Website Sidebar,Vefsíða Sidebar DocType: Web Form,Show Sidebar,Sýna Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Þú þarft að vera innskráður til að fá aðgang að þessu {0}. @@ -3283,6 +3397,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Almennar fl DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Gat ekki fundið {0} í {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nöfn og eftirnöfn eftir sig er auðvelt að giska. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Skjal endurnefnt úr {0} til {1} apps/frappe/frappe/config/website.py,Knowledge Base,Þekkingargrunnur DocType: Workflow State,briefcase,skjalataska apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Gildi er ekki hægt að breyta fyrir {0} @@ -3319,6 +3434,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Víxla ristarsýn apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Fara í næstu skrá +DocType: System Settings,Time Format,Tímasnið apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ógildar Greiðsla Gateway DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Þetta er sniðmátaskráin sem myndast með aðeins raðunum sem hafa einhverja villu. Þú ættir að nota þessa skrá til leiðréttingar og innflutnings. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Stilla heimildir á skjali Tegundir og hlutverkum @@ -3361,12 +3477,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Svara apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Síður í Desk (place eigenda) DocType: DocField,Collapsible Depends On,Fellanlegur veltur á DocType: Print Style,Print Style Name,Prenta Style Name +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Hópur eftir reit er krafist til að búa til töfluborði DocType: Print Settings,Allow page break inside tables,Leyfa síðu hlé inni borðum DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print snið hjálp apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} herbergi verður að hafa amk einn notandi. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Telja +DocType: Dashboard Chart,Group By Type,Hópur eftir tegund apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Ný athugasemd við {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},aftur {0} og {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ef þú ert að uppfæra, vinsamlegast veldu "Skrifa" annað fyrirliggjandi raðir verður ekki eytt." @@ -3377,14 +3495,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Notandasn DocType: Web Form,Web Form,web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dagsetning {0} verður að vera í sniði: {1} DocType: About Us Settings,Org History Heading,Org Saga Fyrirsögn +DocType: Scheduled Job Type,Scheduled Job Type,Áætluð starfstegund DocType: Print Settings,Allow Print for Cancelled,Leyfa Prenta fyrir Hætt DocType: Communication,Integrations can use this field to set email delivery status,Samþætting getur notað þennan reit til að stilla tölvupósti sending stöðu +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Þú hefur ekki leyfi til að hætta við öll tengd skjöl. DocType: Web Form,Web Page Link Text,Web Page Link Text DocType: Page,System Page,System Page apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Setja sjálfgefið snið, síðu stærð, prenta stíl o.fl." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Sérsniðin fyrir {0} flutt til:
{1} DocType: Website Settings,Include Search in Top Bar,Eru Leit í Top Bar +DocType: Scheduled Job Type,Daily Long,Daglega langur DocType: GSuite Settings,Allow GSuite access,Leyfa GSuite aðgang DocType: DocType,DESC,DESC DocType: DocType,Naming,nafngiftir @@ -3476,6 +3597,7 @@ DocType: Notification,Send days before or after the reference date,Senda dögum DocType: User,Allow user to login only after this hour (0-24),Leyfa notanda að skráðu aðeins eftir þessum klukkutíma (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Úthlutaðu einu í einu, í röð" DocType: Integration Request,Subscription Notification,Tilkynning um áskrift +DocType: Customize Form Field, Allow in Quick Entry ,Leyfa í skyndifærslu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,eða festu a DocType: Auto Repeat,Start Date,Upphafsdagur apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,gildi @@ -3490,6 +3612,7 @@ DocType: Google Drive,Backup Folder ID,Auðkenni öryggisafrita möppu apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ekki í forritarastillingu! Setja í site_config.json eða gera 'sérstakar' DOCTYPE. DocType: Workflow State,globe,heim DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa +DocType: Onboarding Slide Help Link,Video,Myndband DocType: Assignment Rule,Priority,Forgangur DocType: Email Queue,Unsubscribe Param,afskrá Gildi DocType: DocType,Hide Sidebar and Menu,Fela skenkur og valmynd @@ -3501,6 +3624,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Leyfa Import (með Data Imp apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Page Stillingar +DocType: Notification Settings,Notification Settings,Tilkynningarstillingar apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Vistar ... apps/frappe/frappe/www/update-password.html,Invalid Password,ógilt lykilorð apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} færsla tókst af {1}. @@ -3516,6 +3640,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Bréfahöfuðmynd DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron snið apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Report DocType: SMS Settings,Use POST,Notaðu POST DocType: Communication,SMS,smáskilaboð @@ -3560,18 +3685,20 @@ DocType: Workflow,Allow approval for creator of the document,Leyfa samþykki fyr apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Vista skýrslu DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API endapunktar Args +DocType: DocType Action,Server Action,Aðgerð miðlarans apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Stjórnandi nálgast {0} á {1} gegnum IP Address {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Foreldravöllur verður að vera gilt reitnafn apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Mistókst að breyta áskrift DocType: LDAP Settings,LDAP Group Field,LDAP hópsvið +DocType: Notification Subscribed Document,Notification Subscribed Document,Tilkynnt áskrift skjal apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Jafnt apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Ógilt CSV snið -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Villa við tengingu við QZ bakkaforrit ...

Þú þarft að hafa QZ Tray forrit sett upp og keyra til að nota Raw Print aðgerðina.

Smelltu hér til að hlaða niður og setja upp QZ Bakki .
Smelltu hér til að læra meira um Hráprentun ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Setja Fjöldi Varabúnaður DocType: DocField,Do not allow user to change after set the first time,Ekki leyfa notanda að breyta eftir að setja í fyrsta skipti apps/frappe/frappe/utils/data.py,1 year ago,1 ár síðan +DocType: DocType,Links Section,Hlekkur Hluti apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Skoða skrá yfir alla prenta, hala niður og flytja viðburði" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mánuður DocType: Contact,Contact,Viltu samband við @@ -3598,16 +3725,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,nýtt Email DocType: Custom DocPerm,Export,útflutningur apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Til að nota Google dagatalið skaltu gera {0} virkan. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Bætir einnig við stöðufíknareitnum {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} tókst að uppfæra apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-bakki mistókst: DocType: Dropbox Settings,Dropbox Settings,Dropbox Stillingar DocType: About Us Settings,More content for the bottom of the page.,Meira efni fyrir neðst á síðunni. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Þessu skjali hefur verið snúið við apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Afritun Google Drive tókst. +DocType: Webhook,Naming Series,nafngiftir Series DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE sem þessi Workflow er við. DocType: User,Enabled,virkt apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Mistókst að ljúka uppsetningu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nýtt {0}: {1} -DocType: Tag Category,Category Name,Flokkur Nafn +DocType: Blog Category,Category Name,Flokkur Nafn apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Foreldri er krafist til að fá gögn um töflu barna apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Flytja Áskrifendur DocType: Print Settings,PDF Settings,PDF Stillingar @@ -3643,6 +3773,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Dagatal apps/frappe/frappe/client.py,No document found for given filters,Ekkert skjal fannst fyrir tiltekna síur apps/frappe/frappe/config/website.py,A user who posts blogs.,Notandi sem skrifar blogg. +DocType: DocType Action,DocType Action,DocType aðgerð apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",Annar {0} með nafninu {1} er til að velja annað nafn DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Vefsíða Þema Image @@ -3652,6 +3783,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Ekki tók apps/frappe/frappe/config/integrations.py,Backup,Afritun apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Gerð skjals er krafist til að búa til töfluborði DocType: DocField,Read Only,Lesið aðeins +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Gat ekki búið til razorpay röð apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,nýtt Fréttabréf DocType: Energy Point Log,Energy Point Log,Energy Point Log DocType: Print Settings,Send Print as PDF,Senda Prenta sem PDF @@ -3677,16 +3809,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Sta apps/frappe/frappe/www/login.html,Or login with,Eða tenging við DocType: Error Snapshot,Locals,heimamenn apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Miðlað í gegnum {0} á {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} minntist á þig í ummælum í {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Veldu hóp eftir ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} er krafist DocType: Integration Request,Integration Type,Sameining Type DocType: Newsletter,Send Attachements,Senda attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Engar síur fundust apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Sameining Google tengiliða. DocType: Transaction Log,Transaction Log,Viðskiptaskrá apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Tölfræði byggð á árangri síðasta mánaðar (frá {0} til {1}) DocType: Contact Us Settings,City,Borg +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Fela kort fyrir alla notendur apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Virkja Leyfa sjálfvirka endurtekningu fyrir kenninguna {0} á sérsniðnu formi DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Skoða skjal @@ -3697,6 +3830,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline",Ef það er virkt er fylgst með breytingum á skjalinu og þær sýndar á tímalínu apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Global Search' ekki leyfð fyrir tegund {0} í röð {1} DocType: Energy Point Log,Appreciation,Þakklæti +DocType: Dashboard Chart,Number of Groups,Fjöldi hópa apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,view List DocType: Workflow,Don't Override Status,Ekki Hunsa Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Leitarorð @@ -3738,7 +3872,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-norðvestur-1 DocType: Dropbox Settings,Limit Number of DB Backups,Takmarka Fjöldi DB Backups DocType: Custom DocPerm,Level,Level -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Síðustu 30 dagar DocType: Custom DocPerm,Report,skýrsla apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Upphæð verður að vera hærri en 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Tengt við QZ bakki! @@ -3755,6 +3888,7 @@ DocType: S3 Backup Settings,us-west-2,okkur-vestur-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Veldu barnatafla apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Kveikja á aðal aðgerð apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Breyta +DocType: Social Login Key,User ID Property,Notandakenni eign DocType: Email Domain,domain name,lén DocType: Contact Email,Contact Email,Netfang tengiliðar DocType: Kanban Board Column,Order,Panta @@ -3777,7 +3911,7 @@ DocType: Contact,Last Name,Eftirnafn DocType: Event,Private,Private apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,vinstri DocType: Event,All Day,Allan daginn apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Lítur út eins og eitthvað er athugavert við greiðslu hlið stillingar þessa vefsvæðis. Engin greiðsla hefur borist. DocType: GCalendar Settings,State,State @@ -3809,7 +3943,6 @@ DocType: Workflow State,User,Notandi DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Sýna titil í glugga sem "forskeytið - titill" DocType: Payment Gateway,Gateway Settings,Gáttarstillingar apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Textinn í skjalinu tegund -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Hlaupa próf apps/frappe/frappe/handler.py,Logged Out,ekki innskráður apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Meira ... DocType: System Settings,User can login using Email id or Mobile number,Notandi getur skráð þig inn með tölvupósti eða farsímanúmeri @@ -3825,6 +3958,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Yfirlit DocType: Event,Event Participants,Atburður þátttakendur DocType: Auto Repeat,Frequency,tíðni +DocType: Onboarding Slide,Slide Order,Rennipöntun DocType: Custom Field,Insert After,Settu Eftir DocType: Event,Sync with Google Calendar,Samstillt við Google dagatalið DocType: Access Log,Report Name,skýrsla Name @@ -3852,6 +3986,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max breidd fyrir tegund gjaldmiðillinn er 100px í röð {0} apps/frappe/frappe/config/website.py,Content web page.,Efni á vefnum síðu. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Bæta nýju hlutverki +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Farðu á vefsíðu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ný verkefni DocType: Google Contacts,Last Sync On,Síðasta samstilling á DocType: Deleted Document,Deleted Document,eytt Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Eitthvað fór úrskeiðis @@ -3862,7 +3998,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landslag apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Viðskiptavinur hlið handrit eftirnafn í JavaScript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Skrár fyrir eftirfarandi gerðir verða síaðir -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Tímaáætlun óvirk +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Tímaáætlun óvirk DocType: Blog Settings,Blog Introduction,Blog Inngangur DocType: Global Search Settings,Search Priorities,Forgangsröðun við leit DocType: Address,Office,Office @@ -3872,12 +4008,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Mælikvarði á myndatöflu DocType: User,Email Settings,tölvupóststillingar apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Sendu hér DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ef þetta er virkt getur notandi skráð sig inn frá hvaða IP-tölu sem er með tveggja þátta auðkenningu, þetta er einnig hægt að stilla fyrir alla notendur í kerfisstillingum" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Prentarastillingar ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vinsamlegast sláðu inn lykilorðið þitt til að halda áfram apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Ég apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ekki gilt State apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Gildir um allar skjalategundir -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Uppfærsla orkupunkta +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Uppfærsla orkupunkta +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Keyra störf aðeins daglega ef þau eru óvirk í (daga) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Herbergistegund DocType: Data Import Beta,Import Log Preview,Forskoðun innflutningsskrár @@ -3886,6 +4022,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-hring DocType: LDAP Settings,LDAP User Creation and Mapping,Notkun LDAP og kortlagning notanda apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Viðburðir dagsins apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Afsakið! Notandi ætti að hafa fullan aðgang að eigin met sitt. ,Usage Info,notkun Upplýsingar apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Sýna flýtilykla @@ -3902,6 +4039,7 @@ DocType: DocField,Unique,Unique apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} vel þegið {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Hlutlaus velgengni DocType: Email Account,Service,þjónusta +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Skipulag> Notandi DocType: File,File Name,Skráarnafn apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Fékk ekki fundið {0} {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3915,6 +4053,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Complete DocType: GCalendar Settings,Enable,Virkja DocType: Google Maps Settings,Home Address,Heimilisfangið apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Þú getur aðeins hlaðið allt að 5000 færslur í einu. (Kann að vera minna í sumum tilfellum) +DocType: Report,"output in the form of `data = [columns, result]`","framleiðsla í formi `gagna = [dálkar, útkoma]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Gildandi skjalategundir apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Settu upp reglur fyrir verkefna notenda. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ófullnægjandi heimild fyrir {0} @@ -3930,7 +4069,6 @@ DocType: Communication,To and CC,Til og CC DocType: SMS Settings,Static Parameters,Static Parameters DocType: Chat Message,Room,Room apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},uppfærð til {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Bakgrunnsstörf eru ekki í gangi. Vinsamlegast hafðu samband við stjórnanda DocType: Portal Settings,Custom Menu Items,Custom valmyndaratriði apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Allar myndir sem fylgja vefsíðu sýningunni ættu að vera opinber DocType: Workflow State,chevron-right,Chevron hægri @@ -3945,11 +4083,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} gildi valin DocType: DocType,Allow Auto Repeat,Leyfa sjálfvirka endurtekningu apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Engin gildi til að sýna +DocType: DocType,URL for documentation or help,Vefslóð fyrir skjöl eða hjálp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email Sniðmát apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Uppfærsla {0} tókst. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Notandi {0} hefur ekki aðgang að kenningum með leyfi fyrir hlutverki fyrir skjal {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Bæði notandanafn og lykilorð +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Látum \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vinsamlegast hressa til að fá nýjustu skjalið. DocType: User,Security Settings,Öryggi Stillingar apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Bæta dálk @@ -3959,6 +4099,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Sía Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Vinsamlegast finnið meðfylgjandi {0}: {1} DocType: Web Page,Set Meta Tags,Setja Meta tags +DocType: Email Account,Use SSL for Outgoing,Notaðu SSL fyrir sendan 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: S3 Backup Settings,Backup Limit,Backup Limit DocType: Dashboard Chart,Line,Lína @@ -3991,4 +4132,3 @@ DocType: DocField,Ignore User Permissions,Hunsa notanda Heimildir apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Vistað með góðum árangri apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Spyrðu kerfisstjórann þinn um að staðfesta skráninguna DocType: Domain Settings,Active Domains,Virk lén -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Sýna Log diff --git a/frappe/translations/it.csv b/frappe/translations/it.csv index aa65980fed..80f5484e4b 100644 --- a/frappe/translations/it.csv +++ b/frappe/translations/it.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Si prega di selezionare un campo Quantità. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Caricamento file di importazione ... DocType: Assignment Rule,Last User,Ultimo utente -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Una nuova attività, {0}, ti è stata assegnata da {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sessioni predefinite salvate apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Ricarica file DocType: Email Queue,Email Queue records.,record Email coda. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Albero DocType: User,User Emails,Messaggi di posta elettronica degli utenti DocType: User,Username,Nome utente apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importa Zip +DocType: Scheduled Job Type,Create Log,Crea registro apps/frappe/frappe/model/base_document.py,Value too big,Valore troppo grande DocType: DocField,DocField,CampoDoc DocType: GSuite Settings,Run Script Test,Esegui test di script @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensile DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Abilita Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Pericoloso -DocType: Address,Email Address,Indirizzo E-Mail +apps/frappe/frappe/www/login.py,Email Address,Indirizzo E-Mail DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Notifica inviata non letta apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Esportazione non consentita . Hai bisogno di {0} ruolo/i da esportare. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Canc DocType: DocType,Is Published Field,È pubblicato Campo DocType: GCalendar Settings,GCalendar Settings,Impostazioni GCalendar DocType: Email Group,Email Group,Email Group +apps/frappe/frappe/__init__.py,Only for {},Solo per {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar: impossibile eliminare l'evento {0} da Google Calendar, codice errore {1}." DocType: Event,Pulled from Google Calendar,Estratto da Google Calendar DocType: Note,Seen By,Visto da apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Aggiunta multipla -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Hai guadagnato alcuni punti energia apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Immagine dell'utente non valida. DocType: Energy Point Log,Reverted,ripristinata DocType: Success Action,First Success Message,Primo messaggio di successo @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Non come apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valore errato: {0} deve essere {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Modificare le proprietà di campo ( nascondere , in sola lettura, autorizzazione ecc )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apprezzare +DocType: Notification Settings,Document Share,Condividi documento DocType: Workflow State,lock,bloccare apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Impostazioni per la pagina contatti. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Amministratore connesso @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Se abilitato, il documento viene contrassegnato come visualizzato, la prima volta che un utente lo apre" DocType: Auto Repeat,Repeat on Day,Ripetere il giorno DocType: DocField,Color,Colore +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Segna tutti come letti DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,indent-right DocType: Has Role,Has Role,ha un ruolo @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostra traccia DocType: DocType,Default Print Format,Formato Stampa Predefinito DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Tipo di diapositiva apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nessuno: Fine del flusso di lavoro apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} campo non può essere impostato come unica in {1}, in quanto vi sono valori non univoci esistenti" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipi di documenti @@ -135,7 +138,6 @@ DocType: Language,Guest,Ospite DocType: DocType,Title Field,Titolo campo DocType: Error Log,Error Log,Registro errori apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL non valido -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Ultimi 7 giorni apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ripete come "abcabcabc" sono solo leggermente più difficile da trovare rispetto ad "ABC" DocType: Notification,Channel,Canale apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Se pensi che non sia autorizzato, si consiglia di cambiare la password dell'amministratore." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Intestatario apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Seleziona colonna apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Questo modulo è stato modificato dopo aver caricato la DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Registro delle notifiche 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Apri Awesomebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Sembra che ci sia un problema con la configurazione delle strisce del server. In caso di fallimento, l'importo verrà rimborsato sul tuo conto." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,In apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Invia DocType: Workflow Action Master,Workflow Action Name,Nome Azione del Workflow apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType non può essere fusa -DocType: Web Form Field,Fieldtype,Tipo di campo +DocType: Onboarding Slide Field,Fieldtype,Tipo di campo apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Non è un file zip DocType: Global Search DocType,Global Search DocType,Ricerca globale DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,E-mail Inviata? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Attiva / disattiva grafico apps/frappe/frappe/desk/form/save.py,Did not cancel,Non cancellare DocType: Social Login Key,Client Information,Informazioni sul cliente +DocType: Energy Point Rule,Apply this rule only once per document,Applicare questa regola una sola volta per documento DocType: Workflow State,plus,più +DocType: DocField,Read Only Depends On,La sola lettura dipende da apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Collegato come Ospite o amministratore DocType: Email Account,UNSEEN,NON VISIONATO apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Motivo 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Nessuna attività +DocType: Server Script,Script Manager,Gestore degli script +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nessuna attività apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Applicazioni di terze parti apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nessun evento oggi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Non puoi dare punti di recensione a te stesso apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType deve essere sottomessa per l'evento Doc selezionato DocType: Workflow State,circle-arrow-up,cerchio-freccia-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Non consentito per {0}: {1}. Campo riservato: {2} 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,You are not allowed to delete a standard Website Theme,Non è consentito eliminare un tema standard +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Crea il tuo primo {0} DocType: Data Import,Log Details,Dettagli del registro DocType: Workflow Transition,Example,Esempio DocType: Webhook Header,Webhook Header,Intestazione Webhook @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Sfondo della chat apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Segna come letto apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aggiornamento {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Esiste già una diapositiva onboarding {0} con lo stesso ordine di diapositive apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disabilita Report DocType: Translation,Contributed Translation Doctype Name,Nome del doctype della traduzione fornita +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Config> Personalizza modulo DocType: PayPal Settings,Redirect To,Redirect Per DocType: Data Migration Mapping,Pull,Tirare DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Formato JavaScript: frappe.query_reports ['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,Tracciamento interno delle DocType: Energy Point Settings,Review Levels,Livelli di recensione DocType: Workflow State,Comment,Commento DocType: Data Migration Plan,Postprocess Method,Metodo di postelaborazione +DocType: DocType Action,Action Type,Tipo di azione apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fare foto DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",È possibile modificare i documenti confermati prima annullandoli e poi correggendoli @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salva come DocType: Comment,Seen,Visto apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Mostra più dettagli +DocType: Server Script,Before Submit,Prima di inviare 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,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,Archive,Archivio @@ -289,10 +301,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Chiave Accesso Dropbox apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,Nome campo errato {0} nella configurazione add_fetch dello script personalizzato apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Seleziona Contatti Google con cui sincronizzare i contatti. DocType: Web Page,Main Section (HTML),Sezione principale (HTML) +DocType: Scheduled Job Type,Annual,Annuale DocType: Workflow State,headphones,auricolare apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,La password è necessaria o selezionare In attesa di password DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,p. es. replies@yourcomany.com. Tutte le risposte arriveranno su questa casella di posta. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Determina l'ordine della diapositiva nella procedura guidata. Se la diapositiva non deve essere visualizzata, la priorità deve essere impostata su 0." DocType: Data Migration Run,Current Mapping,Mappatura corrente apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,E-mail valido e nome richiesto apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Rendi privati tutti gli allegati @@ -315,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Regole di transizione apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Mostra solo le prime {0} righe nell'anteprima apps/frappe/frappe/core/doctype/report/report.js,Example:,Esempio: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,restrizioni DocType: Workflow,Defines workflow states and rules for a document.,Definisce gli stati del flusso di lavoro e le regole per un documento. DocType: Workflow State,Filter,Filtro apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Controlla il registro errori per ulteriori informazioni: {0} @@ -326,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Lavoro apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} disconnesso: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Informazione apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Impossibile Confermare se non Confermabile DocType: Transaction Log,Row Index,Indice di riga DocType: Social Login Key,Facebook,Facebook @@ -344,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,pulsante Guida DocType: Kanban Board Column,purple,viola DocType: About Us Settings,Team Members,Membri del Team +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Eseguirà i lavori pianificati solo una volta al giorno per i siti inattivi. Predefinito 4 giorni se impostato su 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Lavoro programmato DocType: Custom DocPerm,Permissions,Autorizzazioni apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slash Webhook per l'integrazione interna DocType: Dropbox Settings,Allow Dropbox Access,Consentire Accesso DropBox @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scans DocType: Email Flag Queue,Email Flag Queue,Coda Flag-mail DocType: Access Log,Columns / Fields,Colonne / Campi apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Fogli di stile per i formati di stampa +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Il campo Funzione aggregata è obbligatorio per creare un grafico dashboard apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Non è possibile identificare aperto {0}. Provare qualcos'altro. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Le tue informazioni sono state presentate apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Utente {0} non può essere eliminato @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,Nome Campo DocType: Assignment Rule,Assign To Users,Assegna agli utenti apps/frappe/frappe/public/js/frappe/utils/utils.js,or,oppure apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nome del modulo ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continuare +DocType: Onboarding Slide,Continue,Continuare apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,L'integrazione di Google è disabilitata. DocType: Custom Field,Fieldname,Nome del campo DocType: Workflow State,certificate,certificato apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verifica in corso ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Il tuo incarico su {0} {1} è stato rimosso apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Prima colonna di dati deve essere vuota. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Mostra tutte le versioni apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Vedi commento @@ -427,12 +447,14 @@ DocType: User,Restrict IP,Limitare IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Cruscotto apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Impossibile inviare e-mail in questo momento apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar: impossibile aggiornare l'evento {0} in Google Calendar, codice errore {1}." +DocType: Notification Log,Email Content,Contenuto e-mail apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cercare o digitare un comando DocType: Activity Log,Timeline Name,Nome Timeline apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,È possibile impostare solo uno {0} come primario. DocType: Email Account,e.g. smtp.gmail.com,p. es. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Aggiunge una nuova regola DocType: Contact,Sales Master Manager,Sales Master Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Devi abilitare JavaScript per far funzionare la tua app. DocType: User Permission,For Value,Per valore DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Un ultimo passaggio @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Campo del secondo nome LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importazione di {0} di {1} DocType: GCalendar Account,Allow GCalendar Access,Consenti accesso GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} è un campo obbligatorio +DocType: DocType,Documentation Link,Link alla documentazione apps/frappe/frappe/templates/includes/login/login.js,Login token required,Necessario il token di accesso apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rango mensile: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleziona più voci di elenco @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL del file DocType: Version,Table HTML,Tabella HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Aggiungi Abbonati +DocType: Notification Log,Energy Point,Punto di energia apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Prossimi eventi di oggi DocType: Google Calendar,Push to Google Calendar,Invia a Google Calendar DocType: Notification Recipient,Email By Document Field,Email Di Campo documento @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Lontano DocType: Currency,Fraction Units,Unità Frazione apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} da {1} a {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Segna come fatto DocType: Chat Message,Type,Tipo DocType: Google Settings,OAuth Client ID,ID client OAuth DocType: Auto Repeat,Subject,Oggetto apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Ritorna alla scrivania DocType: Web Form,Amount Based On Field,Importo basato sul Campo +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} non ha alcuna traccia tracciata. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,L'utente è obbligatorio per Condivisione DocType: DocField,Hidden,Nascosto DocType: Web Form,Allow Incomplete Forms,Consenti moduli incompleti @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Si prega di controllare la posta elettronica per la verifica apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold non può essere alla fine del modulo DocType: Communication,Bounced,Bounced +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,di DocType: Deleted Document,Deleted Name,Nome eliminata apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistema e utenti del sito DocType: Workflow Document State,Doc Status,Stato Doc @@ -521,6 +546,7 @@ DocType: Language,Language Code,Codice lingua DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: per e-mail predefinite per i backup non riusciti vengono inviati. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Aggiungi filtro apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS inviato al seguenti numeri: {0} +DocType: Notification Settings,Assignments,Compiti apps/frappe/frappe/utils/data.py,{0} and {1},{0} e {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Inizia una conversazione. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Aggiungere sempre ""Bozza"" nell'intestazione per la stampa dei documenti" @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,Inizio corrente di mapping apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,L'email è stata contrassegnata come spam DocType: Comment,Website Manager,Responsabile sito web apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Caricamento file scollegato. Riprova. +DocType: Data Import Beta,Show Failed Logs,Mostra registri falliti apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Traduzioni apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Hai selezionato un documento in Bozza o Eliminato apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Il documento {0} è stato impostato per indicare {1} per {2} @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,documento in coda DocType: GSuite Templates,Destination ID,ID destinazione DocType: Desktop Icon,List,Lista DocType: Activity Log,Link Name,Nome collegamento +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Tu non hai \ DocType: System Settings,mm/dd/yyyy,mm/gg/aaaa +DocType: Onboarding Slide,Onboarding Slide,Scivolo onboarding apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Precedente @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,grigio scuro apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Riuscito: {0} a {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Far cadere +DocType: Dashboard Chart,Aggregate Function Based On,Funzione aggregata basata su apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Si prega di duplicare questo per fare modifiche apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Premi Invio per salvare apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generazione PDF riuscita a causa di collegamenti di immagine rotti @@ -610,7 +640,9 @@ DocType: Notification,Days Before,Giorni Prima apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Gli eventi giornalieri dovrebbero concludersi nello stesso giorno. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Modificare... DocType: Workflow State,volume-down,volume-giù +DocType: Onboarding Slide,Help Links,Link di aiuto apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accesso non consentito da questo indirizzo IP +DocType: Notification Settings,Enable Email Notifications,Abilita notifiche e-mail apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Invia notifica a DocType: DocField,Collapsible,Pieghevole @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,Ultimo backup attivo DocType: Customize Form Field,Customize Form Field,Personalizzare Campo modulo DocType: Energy Point Rule,For Document Event,Per Evento Documento DocType: Website Settings,Chat Room Name,Nome della chat room +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,immutato DocType: OAuth Client,Grant Type,Tipo di grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Controllare che i documenti siano leggibili da un utente DocType: Deleted Document,Hub Sync ID,ID di sincronizzazione Hub @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,usar DocType: Auto Repeat,Quarterly,Trimestralmente apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Sempre apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Stato del documento non valido per {0} DocType: Email Account,Enable Auto Reply,Abilita risposta automatica apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Non Visto @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Messa DocType: Email Account,Notify if unreplied,Notifica se non risponde apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Eseguire la scansione del codice QR e immettere il codice risultante visualizzato. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Abilita gradienti +DocType: Scheduled Job Type,Hourly Long,Oraria lunga DocType: System Settings,Minimum Password Score,Punteggio minimo password DocType: DocType,Fields,Campi DocType: System Settings,Your organization name and address for the email footer.,Il tuo nome dell'organizzazione e l'indirizzo e-mail per il piè di pagina. @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabella pad apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup completo! apps/frappe/frappe/config/desktop.py,Developer,Sviluppatore apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creato +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Per abilitarlo segui le istruzioni nel seguente link: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in riga {1} non può avere sia URL che elementi figlio apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Dovrebbe esserci almeno una riga per le seguenti tabelle: {0} DocType: Print Format,Default Print Language,Lingua di stampa predefinita apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Antenati di apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} non può essere eliminato +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nessun registro fallito apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Ancora nessun commento apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Impostare SMS prima di impostarlo come metodo di autenticazione, tramite Impostazioni SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Sia DocType e Nome richiesto @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,Elementi Piè di Pagina apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Valore Predefinito DocType: Auto Repeat,Daily,Giornaliero +DocType: Onboarding Slide,Max Count,Conteggio massimo apps/frappe/frappe/config/users_and_permissions.py,User Roles,Ruoli utente DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter prevale un DOCTYPE standard o immobili Campo apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Impossibile Aggiornare : Link Errato / Scaduto. @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Ospite DocType: Data Import Beta,Import File,Importare file +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Errore modello apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Colonna {0} già esiste. DocType: ToDo,High,Alto apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nuovo evento @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,Mostra nel filtro DocType: Address,Daman and Diu,Daman e Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Progetto DocType: Address,Personal,Personale +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Impostazioni di stampa non elaborata ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Vedi https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region per i dettagli. apps/frappe/frappe/config/settings.py,Bulk Rename,Rinomina in massa DocType: Email Queue,Show as cc,Visualizzare cc @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Riprendi video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informazioni introduttive per la pagina Contattaci DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,pollice in giù +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Annullamento di documenti DocType: User,Send Notifications for Email threads,Invia notifiche per thread e-mail apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Non in modalità sviluppatore @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Il backup d DocType: DocField,In Global Search,Alla ricerca globale DocType: System Settings,Brute Force Security,Sicurezza contro Bruteforce DocType: Workflow State,indent-left,indent-left -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anno / i fa apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,E' rischioso cancellare questo file: {0}. Si prega di contattare il Responsabile di Sistema. DocType: Currency,Currency Name,Nome Valuta apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nessuna email @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,Campo utente DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Spingere l'eliminazione apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} iscrizione già cancellate per {1} {2} +DocType: Scheduled Job Type,Stopped,Arrestato apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Non rimuovere apps/frappe/frappe/desk/like.py,Liked,Piaciuto apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Invia Ora apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","DocType standard non può avere il formato di stampa predefinito, utilizzare Personalizza modulo" +DocType: Server Script,Allow Guest,Consenti Ospite DocType: Report,Query,Query DocType: Customize Form,Sort Order,ordine apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'Modalità Lista' non consentito per il tipo {0} in riga {1} @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Metodo di autenticazione due fattori apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Prima imposta il nome e salva il record. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 registrazioni +DocType: DocType Link,Link Fieldname,Nome campo collegamento apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Condiviso con {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Disiscrivi DocType: View Log,Reference Name,Nome di riferimento apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Cambia utente +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primo apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Aggiorna traduzioni DocType: Error Snapshot,Exception,Eccezione DocType: Email Account,Use IMAP,Utilizzare IMAP @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Regole che definiscono transizione di stato nel flusso di lavoro. DocType: File,Folder,Cartella DocType: Website Route Meta,Website Route Meta,Meta del percorso del sito Web +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,Indice DocType: Email Group,Newsletter Manager,Responsabile Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opzione 1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Imp apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configura i grafici DocType: User,Last IP,Ultimo IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Si prega di aggiungere un oggetto alla tua email -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Un nuovo documento {0} è stato condiviso da con te {1}. DocType: Data Migration Connector,Data Migration Connector,Connettore di migrazione dei dati apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ripristinato {1} DocType: Email Account,Track Email Status,Traccia lo stato della posta elettronica @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,Posta in Uscita predefinita DocType: Workflow State,play,giocare apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Clicca sul link qui sotto per completare la registrazione e impostare una nuova password apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Non aggiungere +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ha guadagnato {1} punti per {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nessun account di posta elettronica assegnato DocType: S3 Backup Settings,eu-west-2,eu-ovest-2 DocType: Contact Us Settings,Contact Us Settings,Impostazioni Contattaci @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Ricerca . DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Limite massimo di allegati per questo record raggiunto. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Cerca per nome file o estensione +DocType: Onboarding Slide,Slide Title,Titolo diapositiva DocType: Notification,View Properties (via Customize Form),Proprietà della vista (attraverso Personalizza modulo) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Fai clic su un file per selezionarlo. DocType: Note Seen By,Note Seen By,Nota vista da @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Condividi URL DocType: System Settings,Allow Consecutive Login Attempts ,Tentativi di accesso consecutivi consentiti apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Si è verificato un errore durante il processo di pagamento. Ci contatti per favore. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Se il tipo di diapositiva è Crea o Impostazioni, nel file {ref_doctype} .py deve essere eseguito un metodo "create_onboarding_docs" da eseguire dopo il completamento della diapositiva." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} giorni fa DocType: Email Account,Awaiting Password,In attesa di password DocType: Address,Address Line 1,Indirizzo apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Non discendenti di DocType: Contact,Company Name,Nome Azienda DocType: Custom DocPerm,Role,Ruolo -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Impostazioni... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,al tuo browser apps/frappe/frappe/utils/data.py,Cent,Centesimo ,Recorder,Registratore @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Tieni traccia se la tua e-mail è stata aperta dal destinatario.
Nota. Se invii a più destinatari, anche se 1 destinatario legge l'email, verrà considerato "Aperto"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Valori mancanti richiesti apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Consenti l'accesso ai contatti di Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Limitato DocType: Data Migration Connector,Frappe,Frappé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Segna come non letto DocType: Activity Log,Operation,Operazione @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,Consenti la stampa DocType: Communication,Clicked,Cliccato apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Smetti apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nessuna autorizzazione per '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configura l'account e-mail predefinito da Imposta> E-mail> Account e-mail apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,In programma per inviare DocType: DocType,Track Seen,Traccia Visto DocType: Dropbox Settings,File Backup,Backup di file @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,No {0} trovat apps/frappe/frappe/config/customization.py,Add custom forms.,Aggiungi moduli personalizzati. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} in {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,presentato questo documento -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Config> Autorizzazioni utente apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Il sistema fornisce molti ruoli predefiniti . È possibile aggiungere nuovi ruoli per impostare le autorizzazioni più fini . DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nome trigger -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domini +DocType: Onboarding Slide,Domains,Domini DocType: Blog Category,Blog Category,Categoria Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Impossibile mappare perché seguente condizione fallisce: DocType: Role Permission for Page and Report,Roles HTML,Ruoli HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,Sabato DocType: User,Represents a User in the system.,Rappresenta un utente nel sistema. DocType: List View Setting,Disable Auto Refresh,Disabilita l'aggiornamento automatico DocType: Comment,Label,Etichetta -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","L'attività {0}, assegnata a {1}, è stata chiusa." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Si prega di chiudere questa finestra DocType: Print Format,Print Format Type,Stampa Tipo di formato DocType: Newsletter,A Lead with this Email Address should exist,Un Lead con questo indirizzo e-mail deve esistere @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Impostazioni SMTP per l apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,scegli un DocType: Data Export,Filter List,Elenco dei filtri DocType: Data Export,Excel,Eccellere +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Messaggio di Risposta Automatico DocType: Data Migration Mapping,Condition,Condizione apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ore fa @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Contributore alla Base di Conoscenza DocType: Communication,Sent Read Receipt,Sent conferma di lettura DocType: Email Queue,Unsubscribe Method,Modalità di disiscrizione +DocType: Onboarding Slide,Add More Button,Aggiungi altro pulsante DocType: GSuite Templates,Related DocType,DocType correlato apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Modifica per aggiungere contenuti apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,selezionare le lingue apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Dettagli carta apps/frappe/frappe/__init__.py,No permission for {0},Nessun permesso per {0} DocType: DocType,Advanced,Avanzato +DocType: Onboarding Slide,Slide Image Source,Fonte immagine diapositiva apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Sembra chiave API o API Secret è sbagliato !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Riferimento: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Sig.ra @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Maestro DocType: DocType,User Cannot Create,L'utente non può creare apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fatto con successo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,accesso Dropbox è approvato! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Sei sicuro di voler unire {0} con {1}? DocType: Customize Form,Enter Form Type,Inserisci Tipo Modulo DocType: Google Drive,Authorize Google Drive Access,Autorizza l'accesso a Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parametro Kanban Board mancante @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permettere DocType, DocType. Fai attenzione!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formati su misura per la stampa, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Somma di {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Aggiornato alla nuova versione DocType: Custom Field,Depends On,Dipende da DocType: Kanban Board Column,Green,Verde DocType: Custom DocPerm,Additional Permissions,Autorizzazioni aggiuntive @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,Sociale apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar: impossibile creare il calendario per {0}, codice errore {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Modifica Riga DocType: Workflow Action Master,Workflow Action Master,Azione Master del flusso di lavoro +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Cancella tutto DocType: Custom Field,Field Type,Tipo di Campo apps/frappe/frappe/utils/data.py,only.,soltanto. DocType: Route History,Route History,Cronologia del percorso @@ -1210,11 +1260,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Hai dimenticato la password? DocType: System Settings,yyyy-mm-dd,aaaa-mm-gg apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Errore del server +DocType: Server Script,After Delete,Dopo Elimina apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Vedi tutti i rapporti precedenti. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,È richiesto ID di accesso DocType: Website Slideshow,Website Slideshow,Presentazione sito web apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Dati Assenti DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Collegamento che è la home page del sito . Links standard (indice , login, prodotti , blog , su , contatto)" +DocType: Server Script,After Submit,Dopo inviare apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autenticazione non riuscita durante la ricezione di email da account email {0}. Messaggio dal server: {1} DocType: User,Banner Image,Immagine Banner DocType: Custom Field,Custom Field,Campo Personalizzato @@ -1255,15 +1307,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Se l'utente ha alcun ruolo controllato, l'utente diventa un "User System". "Utente della rete" ha accesso al desktop" DocType: System Settings,Date and Number Format,Formato dei numeri e delle date apps/frappe/frappe/model/document.py,one of,Uno di -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Config> Personalizza modulo apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Controllo un momento apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Mostra Tag DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Config> Utente +DocType: DocType,Actions,Azioni DocType: Workflow State,align-justify,Giustifica DocType: User,Middle Name (Optional),Secondo Nome (facoltativo) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Non Consentito @@ -1278,6 +1328,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nessun risu DocType: System Settings,Security,sicurezza apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Programmato per inviare {0} destinatari apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Tagliare +DocType: Server Script,After Save,Dopo il salvataggio apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},rinominato da {0} a {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} di {1} ({2} righe con figli) DocType: Currency,**Currency** Master,**Valuta** Principale @@ -1304,15 +1355,18 @@ DocType: Prepared Report,Filter Values,Valori del filtro DocType: Communication,User Tags,Tags Utente DocType: Data Migration Run,Fail,Fallire DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Ultima esecuzione DocType: Data Migration Run,Pull Failed,Pull non riuscito apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Mostra / Nascondi carte DocType: Communication,Feedback Request,Feedback Richiesta apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importa dati da file CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Seguenti campi mancanti: +DocType: Notification Log,From User,Da utente apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Annullamento di {0} DocType: Web Page,Main Section,Sezione principale DocType: Page,Icon,Icona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Suggerimento: includere simboli, numeri e lettere maiuscole nella password" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configura le notifiche per menzioni, incarichi, punti energia e altro." DocType: DocField,Allow in Quick Entry,Consenti inserimento rapido apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,gg/mm/aaaa @@ -1344,7 +1398,6 @@ DocType: Website Theme,Theme URL,URL del tema DocType: Customize Form,Sort Field,Ordina campo DocType: Razorpay Settings,Razorpay Settings,Impostazioni Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Modifica filtro -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Aggiungi altro DocType: System Settings,Session Expiry Mobile,Durata Sessione Dispositivo Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Utente o password errati apps/frappe/frappe/templates/includes/search_box.html,Search results for,cerca risultati per @@ -1360,8 +1413,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Regola dei punti di energia DocType: Communication,Delayed,Ritardato apps/frappe/frappe/config/settings.py,List of backups available for download,Elenco dei backup disponibili per il download +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Prova la nuova importazione dei dati apps/frappe/frappe/www/login.html,Sign up,Iscriviti apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Riga {0}: non è consentito disabilitare Obbligatorio per i campi standard +DocType: Webhook,Enable Security,Abilita sicurezza apps/frappe/frappe/config/customization.py,Dashboards,cruscotti DocType: Test Runner,Output,Produzione DocType: Milestone,Track Field,Traccia campo @@ -1369,6 +1424,7 @@ DocType: Notification,Set Property After Alert,Imposta proprietà dopo avvisi apps/frappe/frappe/config/customization.py,Add fields to forms.,Aggiungi campi ai moduli. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sembra che qualcosa non va con la configurazione Paypal di questo sito. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Aggiungi recensione +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} ti ha assegnato una nuova attività {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Dimensione carattere (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Solo i DocTypes standard possono essere personalizzati dal modulo personalizzato. DocType: Email Account,Sendgrid,SendGrid @@ -1380,8 +1436,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal voce di menu apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Imposta filtri DocType: Contact Us Settings,Email ID,ID Email DocType: Energy Point Rule,Multiplier Field,Campo moltiplicatore +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Impossibile creare l'ordine Razorpay. Si prega di contattare l'amministratore DocType: Dashboard Chart,Time Interval,Intervallo di tempo DocType: Activity Log,Keep track of all update feeds,Tieni traccia di tutti i feed di aggiornamento +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ha condiviso un documento {1} {2} con te 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 @@ -1400,6 +1458,7 @@ DocType: DefaultValue,Key,Chiave DocType: Address,Contacts,Contatti DocType: System Settings,Setup Complete,installazione completa apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapporto del totale delle azioni di documenti +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Il modello di importazione deve essere di tipo .csv, .xlsx o .xls" apps/frappe/frappe/www/update-password.html,New Password,Nuova password apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtro {0} mancante apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Scusate! Non è possibile eliminare i commenti generati automaticamente @@ -1415,6 +1474,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Correre DocType: Blog Post,Content (HTML),Contenuto (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Installazione per DocType: Personal Data Download Request,User Name,Nome utente DocType: Workflow State,minus-sign,segno meno apps/frappe/frappe/public/js/frappe/request.js,Not Found,Non trovato @@ -1422,11 +1482,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,No {0} permesso apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export autorizzazioni personalizzate apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nessun articolo trovato. DocType: Data Export,Fields Multicheck,Campi Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Completare DocType: Activity Log,Login,Entra DocType: Web Form,Payments,Pagamenti apps/frappe/frappe/www/qrcode.html,Hi {0},Salve {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integrazione di Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} ha ripristinato i tuoi punti su {1} {2} DocType: System Settings,Enable Scheduled Jobs,Abilita lavori pianificati apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Note: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inattivo @@ -1451,6 +1511,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modell apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Errore di autorizzazione apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nome {0} non può essere {1} DocType: User Permission,Applicable For,Valido per +DocType: Dashboard Chart,From Date,Da Data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Riuscito apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessione scaduta DocType: Kanban Board Column,Kanban Board Column,Colonna della Kanban Board @@ -1462,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Non ammesso nella condizione DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,immagine -apps/frappe/frappe/www/complete_signup.html,Complete,Completare +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Completare DocType: DocType,Image Field,campo immagine DocType: Print Format,Custom HTML Help,Personalizzato Guida HTML DocType: LDAP Settings,Default Role on Creation,Ruolo predefinito alla creazione @@ -1470,6 +1531,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Stato Successivo DocType: User,Block Modules,Blocca Moduli DocType: Print Format,Custom CSS,CSS Personalizzato +DocType: Energy Point Rule,Apply Only Once,Applicare una sola volta apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Aggiungi un commento DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorato: {0} a {1} @@ -1481,6 +1543,7 @@ DocType: Email Account,Default Incoming,Posta in arrivo predefinita DocType: Workflow State,repeat,ripetizione DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Il valore deve essere uno di {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Annulla tutti i documenti 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Vai a {0} Elenco apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Aiuto su Cerca @@ -1489,6 +1552,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrato apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,La ripetizione automatica di questo documento è stata disabilitata. DocType: DocType,Hide Copy,Nascondi Copia apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Cancellare tutti i ruoli +DocType: Server Script,Before Save,Prima di salvare apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} deve essere univoco apps/frappe/frappe/model/base_document.py,Row,Riga apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC e modello di posta elettronica" @@ -1499,7 +1563,6 @@ DocType: Chat Profile,Offline,Disconnesso apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} importato correttamente DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Invia messaggio di disiscrizione -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Modifica Titolo apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname che sarà il DocType per questo campo collegamento. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documenti assegnati a voi e per voi. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Puoi anche copiare e incollare questo @@ -1531,8 +1594,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Allega immagine DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Password Aggiornata +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Config> Autorizzazioni utente apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Procedura per verificare il tuo login apps/frappe/frappe/utils/password.py,Password not found,Password non trovata +DocType: Webhook,Webhook Secret,Segreto Webhook DocType: Data Migration Mapping,Page Length,Lunghezza della pagina DocType: Email Queue,Expose Recipients,esporre Destinatari apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Aggiungere a è obbligatoria per mail in arrivo @@ -1560,6 +1625,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Dimensione Max Allegato (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Hai un account? Accedi +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Impostazioni di stampa ... DocType: Workflow State,arrow-down,freccia verso il basso apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Riga {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},L'utente non ha permesso di eliminare {0}: {1} @@ -1580,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Inserisci DocType: Dropbox Settings,Dropbox Access Secret,Accesso Segreto Dropbox DocType: Tag Link,Document Title,Titolo del documento apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obbligatorio) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anni fa DocType: Social Login Key,Social Login Provider,Provider di accesso sociale apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Aggiungi un altro Commento apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nessun dato trovato nel file. Riattaccare il nuovo file con i dati. @@ -1594,11 +1661,12 @@ DocType: Workflow State,hand-down,mano giù apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Nessun campo trovato che può essere utilizzato come colonna kanban. Utilizzare il modulo personalizzato per aggiungere un campo personalizzato di tipo "Seleziona". DocType: Address,GST State,Stato GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Impossibile Annullare senza Confermare +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Utente ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Reindirizzamento URI destinato a codice Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Apri la Guida DocType: DocType,Is Submittable,È Confermabile -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nuova menzione +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nuova menzione apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nessun nuovo contatto Google sincronizzato. DocType: File,Uploaded To Google Drive,Caricato su Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Valore per un campo di controllo può essere 0 o 1 @@ -1610,7 +1678,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Posta in arrivo DocType: Kanban Board Column,Red,Rosso DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Il documento non può essere salvato. DocType: Energy Point Rule,Maximum Points,Punti massimi apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Le mie impostazioni @@ -1640,9 +1708,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} punti di apprezzamento per {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,I ruoli possono essere impostate per gli utenti da loro pagina utente . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Aggiungi un commento +DocType: Dashboard Chart,Select Date Range,Seleziona Intervallo di date DocType: DocField,Mandatory,Obbligatorio apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Esportazione Modulo +DocType: Scheduled Job Type,Monthly Long,Long mensile apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Nessun set di autorizzazioni di base +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Invia un'email a {0} per collegarla qui apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Significato di Confermare, Cancellare, Rettificare" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Da Fare @@ -1651,7 +1722,6 @@ DocType: Milestone Tracker,Track milestones for any document,Tieni traccia dei t DocType: Social Login Key,Identity Details,Dettagli di identità apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Transizione dello stato del flusso di lavoro non consentita da {0} a {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostra dashboard -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nuovo messaggio DocType: File,Preview HTML,Anteprima HTML DocType: Desktop Icon,query-report,query-report DocType: Data Import Beta,Template Warnings,Avvertenze sui modelli @@ -1662,18 +1732,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Collegato co apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Modifica impostazioni di report di posta elettronica automatica DocType: Chat Room,Message Count,Conteggio messaggi DocType: Workflow State,book,libro +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} è collegato ai seguenti documenti inviati: {2} DocType: Communication,Read by Recipient,Leggi per destinatario DocType: Website Settings,Landing Page,Pagina di destinazione apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Errore in script personalizzato apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nome apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Permessi non impostati per questo criterio. DocType: Auto Email Report,Auto Email Report,Invio Automatico Email Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nuovo documento condiviso apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Elimina commento? DocType: Address Template,This format is used if country specific format is not found,Questo formato viene utilizzato se il formato specifico per il Paese non viene trovata DocType: System Settings,Allow Login using Mobile Number,Consenti l'accesso utilizzando il numero di cellulare apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Se abilitato, gli utenti che effettuano il login da Indirizzo IP limitato, non verranno richiesti Autori a due fattori" +DocType: Server Script,After Cancel,Dopo Annulla DocType: Auto Repeat,Get Contacts,Ottieni contatti apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Gli articoli archiviati in {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saltare la colonna senza titolo @@ -1684,6 +1757,7 @@ DocType: User,Login After,Accedi Dopo DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Stampa DocType: Workflow State,thumbs-up,pollice in su +DocType: Notification Log,Mention,Citare DocType: DocPerm,DocPerm,PermessiDoc DocType: Print Settings,Fonts,Caratteri apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precisione deve essere compresa tra 1 e 6 @@ -1691,7 +1765,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,e apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Questo rapporto è stato generato su {0} DocType: Error Snapshot,Frames,Cornici -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Assegnazione +DocType: Notification Log,Assignment,Assegnazione DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Link Immagine DocType: Auto Email Report,Report Filters,Filtri Report @@ -1708,7 +1782,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Impossibile aggiornare evento apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Il codice di verifica è stato inviato all'indirizzo di posta elettronica registrato. apps/frappe/frappe/core/doctype/user/user.py,Throttled,strozzato +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Il tuo obiettivo apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Il filtro deve avere 4 valori (doctype, nome di campo, operatore, valore): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nessun nome specificato per {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Applica regola di assegnazione apps/frappe/frappe/utils/bot.py,show,mostrare apps/frappe/frappe/utils/data.py,Invalid field name {0},Nome campo non valido {0} @@ -1718,7 +1794,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mappatura dei piani di migrazione dei dati apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Avvio di Frappé ... DocType: Web Form Field,Max Length,Lunghezza massima -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Per {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Segnala un Problema @@ -1754,6 +1829,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Pagina mancante o spostata apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Recensioni DocType: DocType,Route,Itinerario apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay impostazioni del gateway di pagamento +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ha guadagnato {1} punto per {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Scarica le immagini allegate dal documento DocType: Chat Room,Name,Nome DocType: Contact Us Settings,Skype,Skype @@ -1764,7 +1840,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,La tua lingua DocType: Dashboard Chart,Average,Media apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Aggiungi riga -DocType: Tag Category,Doctypes,DOCTYPE apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Stampante apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Query deve essere una SELEZIONA DocType: Auto Repeat,Completed,Completato @@ -1824,6 +1899,7 @@ DocType: GCalendar Account,Next Sync Token,Token successivo di sincronizzazione DocType: Energy Point Settings,Energy Point Settings,Impostazioni del punto di energia DocType: Async Task,Succeeded,Riuscito apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},I campi obbligatori richiesti in {0} +DocType: Onboarding Slide Field,Align,Allineare apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Aggiorna Autorizzazioni per {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utenti e Permessi DocType: S3 Backup Settings,S3 Backup Settings,S3 Impostazioni di backup @@ -1840,7 +1916,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nuovo nome del formato di stampa apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Fai clic sul link in basso per approvare la richiesta DocType: Workflow State,align-left,Allinea a sinistra +DocType: Onboarding Slide,Action Settings,Impostazioni dell'azione DocType: User,Defaults,Valori Predefiniti +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per il confronto, utilizzare> 5, <10 o = 324. Per gli intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)." DocType: Energy Point Log,Revert Of,Ripristina apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unisci con esistente DocType: User,Birth Date,Data di Nascita @@ -1895,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,Valore Change DocType: Google Contacts,Authorize Google Contacts Access,Autorizza l'accesso ai contatti di Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostra solo i campi numerici da Report +apps/frappe/frappe/utils/data.py,1 week ago,1 settimana fa DocType: Data Import Beta,Import Type,Tipo di importazione DocType: Access Log,HTML Page,Pagina HTML DocType: Address,Subsidiary,Sussidiario @@ -1904,7 +1983,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Con intestata apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Server di posta in uscita o porta non validi DocType: Custom DocPerm,Write,Scrivi -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Solo l'amministratore può creare delle Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aggiornamento DocType: Data Import Beta,Preview,anteprima apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Il campo "Valore" è obbligatoria. Si prega di specificare il valore di essere aggiornato @@ -1914,6 +1992,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Invita com DocType: Data Migration Run,Started,Iniziato apps/frappe/frappe/permissions.py,User {0} does not have access to this document,L'utente {0} non ha accesso a questo documento DocType: Data Migration Run,End Time,Ora fine +DocType: Dashboard Chart,Group By Based On,Raggruppa in base a apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selezionare Allegati apps/frappe/frappe/model/naming.py, for {0},per {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Non sei autorizzato a stampare questo documento @@ -1955,6 +2034,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verificare DocType: Workflow Document State,Update Field,Aggiorna Campo DocType: Chat Profile,Enable Chat,Abilita chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lasciare questa conversazione apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Le opzioni non impostate per il campo link {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Coda / Lavoratore @@ -2021,12 +2101,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Accesso non consentito in questo momento DocType: Data Migration Run,Current Mapping Action,Azioni correnti di mapping DocType: Dashboard Chart Source,Source Name,Source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nessun account e-mail associato all'utente. Aggiungi un account sotto Utente> Posta in arrivo. DocType: Email Account,Email Sync Option,Email Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Riga n DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,È appuntato DocType: Contact Us Settings,Introduction,Presentazione +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Ho bisogno di aiuto? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin a livello globale apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguito da DocType: LDAP Settings,LDAP Email Field,LDAP Email Campo @@ -2036,7 +2116,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Già pres DocType: User Email,Enable Outgoing,Abilita uscita DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Tags Personalizzati -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account e-mail non impostato. Crea un nuovo account e-mail da Imposta> E-mail> Account e-mail DocType: Comment,Submitted,Confermato DocType: Contact,Pulled from Google Contacts,Estratto da Contatti Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Richiesta non valida @@ -2057,9 +2136,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home/Test F apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Assegna a me DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Premi il tasto Alt per attivare ulteriori scorciatoie nel menu e nella barra laterale +DocType: Dashboard Chart,To Date,A Data DocType: List View Setting,List View Setting,Impostazione vista elenco apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Mostra fallito posti di lavoro -DocType: Event,Details,Dettagli +DocType: Scheduled Job Log,Details,Dettagli DocType: Property Setter,DocType or Field,DocType Campo apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Hai smesso di seguire questo documento apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Colore primario @@ -2067,7 +2147,6 @@ DocType: Communication,Soft-Bounced,Soft-Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Se abilitato, tutti gli utenti possono accedere da qualsiasi indirizzo IP usando l'autenticazione a due fattori. Questo può anche essere impostato solo per utenti specifici nella Pagina utente" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Sembra chiave chiave pubblica o segreta è sbagliato !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Guida rapida per Impostazione delle autorizzazioni -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype per assegnare tag apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Mostra ricadute apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,L'email è stata spostata nel cestino DocType: Report,Report Builder,Report Builder @@ -2082,6 +2161,7 @@ DocType: Workflow State,Upload,Caricare DocType: User Permission,Advanced Control,Controllo avanzato DocType: System Settings,Date Format,Formato Data apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Non Pubblicato +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nessun modello di indirizzo predefinito trovato. Creane uno nuovo da Imposta> Stampa e branding> Modello indirizzo. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Azioni del flusso di lavoro (p. es. Approva, Annulla) ." DocType: Data Import,Skip rows with errors,Salta le righe con errori DocType: Workflow State,flag,bandiera @@ -2091,7 +2171,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Stam apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Vai al campo DocType: Contact Us Settings,Forward To Email Address,Inoltra a Indirizzo e-mail DocType: Contact Phone,Is Primary Phone,È il telefono principale -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Invia un'email a {0} per collegarla qui. DocType: Auto Email Report,Weekdays,Nei giorni feriali apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Verranno esportati {0} record apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Campo del titolo deve essere un nome di campo valido @@ -2099,7 +2178,7 @@ DocType: Post Comment,Post Comment,Posta un commento apps/frappe/frappe/config/core.py,Documents,Documenti apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Registro attività di DocType: Social Login Key,Custom Base URL,URL di base personalizzato -DocType: Email Flag Queue,Is Completed,È completato +DocType: Onboarding Slide,Is Completed,È completato apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Ottieni campi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Modifica Profilo DocType: Kanban Board Column,Archived,Archiviato @@ -2110,11 +2189,12 @@ 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 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Oggi +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Oggi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 potranno accedere al documento (es. post del blog ) solo se il link esiste (es. Blogger ) ." DocType: Data Import Beta,Submit After Import,Invia dopo l'importazione DocType: Error Log,Log of Scheduler Errors,Log degli errori Scheduler DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Collegamento alla guida delle diapositive integrato DocType: OAuth Client,App Client Secret,App client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,In fase di conferma apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Padre è il nome del documento a cui verranno aggiunti i dati. @@ -2122,7 +2202,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,LETTERE MAIUSCOLE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML personalizzato apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Inserisci il nome della cartella -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nessun modello di indirizzo predefinito trovato. Creane uno nuovo da Imposta> Stampa e personalizzazione> Modello indirizzo. apps/frappe/frappe/auth.py,Unknown User,Utente sconosciuto apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Scegliere Ruolo DocType: Comment,Deleted,Eliminato @@ -2138,7 +2217,7 @@ DocType: Chat Token,Chat Token,Token della chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Crea grafico apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Non importare -DocType: Web Page,Center,Centro +DocType: Onboarding Slide Field,Center,Centro DocType: Notification,Value To Be Set,Valore da impostare apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Modifica {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primo livello @@ -2146,7 +2225,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nome del database apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Aggiorna Form DocType: DocField,Select,Selezionare -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Visualizza registro completo +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Visualizza registro completo DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Espressione Python semplice, esempio: status == "Apri" e type == "Bug"" apps/frappe/frappe/utils/csvutils.py,File not attached,File non allegato apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Collegamento perso. Alcune funzionalità potrebbero non funzionare. @@ -2178,6 +2257,7 @@ DocType: Web Page,HTML for header section. Optional,HTML per la sezione in intes apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Questa funzione è nuovo e ancora in fase sperimentale apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Massimo {0} righe ammesse DocType: Dashboard Chart Link,Chart,Grafico +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Annullamento iscrizione globale apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Questa è una password molto comune. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Vista @@ -2194,6 +2274,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Dettaglio stato apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Per la valuta {0}, l'importo minimo della transazione deve essere {1}" DocType: DocField,Print Hide,Stampa Hide +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,All'utente apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Immettere Valore DocType: Workflow State,tint,tinta @@ -2260,6 +2341,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Codice QR per apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Aggiungi a Cose da Fare DocType: Footer Item,Company,Azienda apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Media di {0} +DocType: Scheduled Job Log,Scheduled,Pianificate DocType: User,Logout from all devices while changing Password,Disconnetti da tutti i dispositivi durante la modifica della password apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifica La Password apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ci sono stati degli errori @@ -2285,7 +2367,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Il permesso dell'utente esiste già apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mappatura della colonna {0} al campo {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Visualizza {0} -DocType: User,Hourly,ogni ora +DocType: Scheduled Job Type,Hourly,ogni ora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrati OAuth client App DocType: DocField,Fetch If Empty,Scarica se vuoto DocType: Data Migration Connector,Authentication Credentials,Credenziali di autenticazione @@ -2296,10 +2378,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},guadagnato da {0} tramite la regola automatica {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} o {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Sei pronto! DocType: Workflow State,trash,cestinare DocType: System Settings,Older backups will be automatically deleted,I backup più vecchi verranno eliminati automaticamente apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID chiave di accesso non valido o chiave di accesso segreto. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Hai perso alcuni punti energia DocType: Post,Is Globally Pinned,È globalmente appuntato apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Attività Recente DocType: Workflow Transition,Conditions,condizioni @@ -2308,6 +2390,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confermato DocType: Event,Ends on,Termina il DocType: Payment Gateway,Gateway,Ingresso DocType: LDAP Settings,Path to Server Certificate,Percorso al certificato del server +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript non è attivato per il tuo browser apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Non è sufficiente l'autorizzazione per visualizzare i collegamenti apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Il titolo dell'indirizzo è obbligatorio. DocType: Google Contacts,Push to Google Contacts,Invia a Contatti Google @@ -2326,7 +2409,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-ovest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Se questa opzione è selezionata, verranno importate righe con dati validi e le righe non valide verranno riversate in un nuovo file per poterle importare in un secondo momento." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Documento è modificabile solo dagli utenti del ruolo -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","L'attività {0}, assegnata a {1}, è stata chiusa da {2}." DocType: Print Format,Show Line Breaks after Sections,Mostra interruzioni di riga dopo Sezioni DocType: Communication,Read by Recipient On,Leggi dal destinatario attivato DocType: Blogger,Short Name,Nome breve @@ -2358,6 +2440,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Asse DocType: Translation,PR sent,PR inviata DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Invia solo i record aggiornati nelle ultime ore X DocType: Communication,Feedback,Riscontri +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Aggiornato a una nuova versione 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Apri traduzione apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Questa email è autogenerata DocType: Workflow State,Icon will appear on the button,Icona apparirà sul tasto @@ -2396,6 +2479,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Pagina non DocType: DocField,Precision,Precisione DocType: Website Slideshow,Slideshow Items,Articoli Slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Cercate di evitare le parole e caratteri ripetuti +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Notifiche disabilitate +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Sei sicuro di voler eliminare tutte le righe? DocType: Workflow Action,Workflow State,Stati flusso di lavoro apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,righe aggiunte apps/frappe/frappe/www/list.py,My Account,Il Mio Account @@ -2404,6 +2489,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Giorni Dopo apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Connessione vassoio QZ attiva! DocType: Contact Us Settings,Settings for Contact Us Page,Impostazioni per Contattaci Pagina +DocType: Server Script,Script Type,Tipo di script DocType: Print Settings,Enable Print Server,Abilita server di stampa apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} settimane fa DocType: Email Account,Footer,Piè di pagina @@ -2429,8 +2515,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Attenzione apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Questo può essere stampato su più pagine DocType: Data Migration Run,Percent Complete,Percentuale completa -DocType: Tag Category,Tag Category,Tag Categoria -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per il confronto, utilizzare> 5, <10 o = 324. Per gli intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)." DocType: Google Calendar,Pull from Google Calendar,Estrai da Google Calendar apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Aiuto DocType: User,Login Before,Accedi Prima @@ -2440,17 +2524,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Nascondi fine settimana apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genera automaticamente documenti ricorrenti. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,È +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Il valore {0} non può essere un elenco DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Come dovrebbe essere formattata questa valuta? Se non impostato, verrà utilizzato il default di sistema" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Invia {0} documenti? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Errore durante la connessione all'applicazione vassoio QZ ...

È necessario disporre dell'applicazione QZ Tray installata e in esecuzione, per utilizzare la funzione Raw Print.

Fare clic qui per scaricare e installare il vassoio QZ .
Fai clic qui per ulteriori informazioni sulla stampa raw ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mappatura della stampante apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Salvare prima di allegare. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vuoi cancellare tutti i documenti collegati? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Aggiunti {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType non può essere modificato da {0} a {1} in riga {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Autorizzazioni di ruolo DocType: Help Article,Intermediate,Intermedio +apps/frappe/frappe/config/settings.py,Email / Notifications,Notifiche di posta elettronica apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} ha cambiato {1} in {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Documento annullato ripristinato come Bozza DocType: Data Migration Run,Start Time,Ora di inizio @@ -2467,6 +2555,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Pu apps/frappe/frappe/email/smtp.py,Invalid recipient address,Indirizzo del destinatario non valido DocType: Workflow State,step-forward,passo in avanti DocType: System Settings,Allow Login After Fail,Permetti Login dopo un Errore +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Imposta ruolo Per DocType: GCalendar Account,The name that will appear in Google Calendar,Il nome che apparirà in Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,La stanza diretta con {0} esiste già. @@ -2483,6 +2572,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Creare un DocType: Contact,Google Contacts,Contatti Google DocType: GCalendar Account,GCalendar Account,Conto GCalendar DocType: Email Rule,Is Spam,è spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Ultimo apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Apri {0} DocType: Data Import Beta,Import Warnings,Importa avvisi @@ -2494,6 +2584,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Documenti eliminati apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Il formato CSV è sensibile al maiuscolo / minuscolo apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,L'icona di Desktop esiste già +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specifica in quali domini devono essere visualizzati tutti i domini. Se non viene specificato nulla, la diapositiva viene visualizzata per impostazione predefinita in tutti i domini." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplica apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: il campo {1} nella riga {2} non può essere nascosto e obbligatorio senza impostazione predefinita DocType: Newsletter,Create and Send Newsletters,Creare e inviare newsletter @@ -2504,6 +2595,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID evento di Google Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Padre"" indica la tabella padre in cui si deve aggiungere la riga" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Punti di recensione: +DocType: Scheduled Job Log,Scheduled Job Log,Registro lavori pianificato +DocType: Server Script,Before Delete,Prima di eliminare apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Condiviso con apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Allega file / URL e aggiungi in tabella. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Messaggio non configurato @@ -2526,19 +2619,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Impostazioni per la pagina Chi Siamo apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Impostazioni del gateway di pagamento della striscia apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Stampa inviata alla stampante! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Punti energia +DocType: Notification Settings,Energy Points,Punti energia +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},L'ora {0} deve essere nel formato: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,p. es. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Genera chiavi apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Questo rimuoverà permanentemente i tuoi dati. DocType: DocType,View Settings,Visualizza impostazioni +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nuova notifica DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struttura della richiesta +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Metodo controller get_razorpay_order mancante DocType: Personal Data Deletion Request,Pending Verification,In attesa di verifica DocType: Website Meta Tag,Website Meta Tag,Meta tag del sito web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Se porta non standard (ad es. 587). Se su Google Cloud, prova la porta 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Cancellare la data di fine, in quanto non può essere nel passato per le pagine pubblicate." DocType: User,Send Me A Copy of Outgoing Emails,Inviami una copia di email in uscita -DocType: System Settings,Scheduler Last Event,Scheduler Ultimo evento DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Aggiungere ID Google Analytics : es. UA-89XXX57-1. Cerca su Google Analytics per ulteriori informazioni. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,La password non può essere più lunga di 100 caratteri DocType: OAuth Client,App Client ID,App Client ID @@ -2567,6 +2662,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nuova passwor apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ha condiviso questo documento con {1} DocType: Website Settings,Brand Image,Logo del brand DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Il modello di importazione deve contenere un'intestazione e almeno una riga. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Calendar è stato configurato. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Impostazione della barra di navigazione superiore, piè di pagina e il logo." DocType: Web Form Field,Max Value,Max Valore @@ -2576,6 +2672,7 @@ DocType: User Social Login,User Social Login,Accesso sociale dell'utente apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} ha criticato il tuo lavoro su {1} con {2} punti DocType: Contact,All,Tutto DocType: Email Queue,Recipient,Destinatario +DocType: Webhook,Webhook Security,Webhook Security DocType: Communication,Has Attachment,ha allegato DocType: Address,Sales User,Utente Vendite apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Trascina e rilascia per costruire e personalizzare formati di stampa. @@ -2642,7 +2739,6 @@ DocType: Data Migration Mapping,Migration ID Field,Campo ID migrazione DocType: Dashboard Chart,Last Synced On,Ultima sincronizzazione attivata DocType: Comment,Comment Type,Commento Type DocType: OAuth Client,OAuth Client,OAuth client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} ha criticato il tuo lavoro su {1} {2} DocType: Assignment Rule,Users,Utenti DocType: Address,Odisha,dell'Odisha DocType: Report,Report Type,Tipo Report @@ -2667,14 +2763,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Sito Slideshow articolo apps/frappe/frappe/model/workflow.py,Self approval is not allowed,L'autoapprovazione non è consentita DocType: GSuite Templates,Template ID,ID del modello apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,La combinazione del tipo di sovvenzione ( {0} ) e del tipo di risposta ( {1} ) non è consentita -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nuovo messaggio da {0} DocType: Portal Settings,Default Role at Time of Signup,Ruolo predefinito al momento della iscrizione DocType: DocType,Title Case,Titolo Caso apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Fai clic sul link in basso per scaricare i tuoi dati apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Posta in arrivo abilitata per l'utente {0} DocType: Data Migration Run,Data Migration Run,Esegui la migrazione dei dati DocType: Blog Post,Email Sent,E-mail Inviata -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Più vecchio DocType: DocField,Ignore XSS Filter,Ignora filtro XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,rimosso apps/frappe/frappe/config/integrations.py,Dropbox backup settings,impostazioni di backup Dropbox @@ -2729,6 +2823,7 @@ DocType: Async Task,Queued,In coda DocType: Braintree Settings,Use Sandbox,Usa Sandbox apps/frappe/frappe/utils/goal.py,This month,Questo mese apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuovo formato di stampa personalizzato +DocType: Server Script,Before Save (Submitted Document),Prima del salvataggio (documento inviato) DocType: Custom DocPerm,Create,Crea apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Non ci sono più elementi da visualizzare apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Vai al record precedente @@ -2785,6 +2880,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Sposta nel cestino DocType: Web Form,Web Form Fields,Campi modulo web DocType: Data Import,Amended From,Corretto da +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Aggiungi un collegamento al video di aiuto nel caso in cui l'utente non abbia idea di cosa inserire nella diapositiva. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Avviso: impossibile trovare {0} in qualsiasi tabella relativa a {1} DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Questo documento è attualmente in coda per l'esecuzione. Riprova @@ -2806,6 +2902,7 @@ DocType: Blog Post,Blog Post,Articolo Blog DocType: Access Log,Export From,Esporta da apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Ricerca Avanzata apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Non è consentito visualizzare la newsletter. +DocType: Dashboard Chart,Group By,Raggruppa per DocType: User,Interests,Interessi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Le istruzioni per la reimpostazione della password sono state inviate al tuo indirizzo email DocType: Energy Point Rule,Allot Points To Assigned Users,Assegnare punti agli utenti assegnati @@ -2821,6 +2918,7 @@ DocType: Assignment Rule,Assignment Rule,Regola di assegnazione apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Nome utente consigliata: {0} DocType: Assignment Rule Day,Day,Giorno apps/frappe/frappe/public/js/frappe/desk.js,Modules,Moduli +DocType: DocField,Mandatory Depends On,Obbligatorio dipende da apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Pagamento Effettuato apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} di posta DocType: OAuth Bearer Token,Revoked,revocato @@ -2828,6 +2926,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar e commenti apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Non è consentito allegare il documento {0}, abilitare Consenti stampa per {0} in Impostazioni di stampa" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account e-mail non impostato. Crea un nuovo account e-mail da Imposta> E-mail> Account e-mail apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vedi il documento in {0} DocType: Stripe Settings,Publishable Key,Chiave pubblicabile apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Inizia importazione @@ -2841,13 +2940,13 @@ DocType: Currency,Fraction,Frazione apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Evento sincronizzato con Google Calendar. DocType: LDAP Settings,LDAP First Name Field,LDAP Nome campo DocType: Contact,Middle Name,Secondo nome +DocType: DocField,Property Depends On,La proprietà dipende da DocType: Custom Field,Field Description,Descrizione Campo apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nome non impostato tramite Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail in arrivo apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aggiornamento {0} di {1}, {2}" DocType: Auto Email Report,Filters Display,filtri di visualizzazione apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Per poter apportare un emendamento è necessario che sia presente il campo "modificato_da" -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ha apprezzato il tuo lavoro su {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salva filtri DocType: Address,Plant,Impianto apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Rispondi a tutti @@ -2888,11 +2987,11 @@ DocType: Workflow State,folder-close,cartella-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Rapporto: DocType: Print Settings,Print taxes with zero amount,Stampa le tasse con importo zero apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} non può essere rinominato +DocType: Server Script,Before Insert,Prima dell'inserimento DocType: Custom Script,Custom Script,Script Personalizzato DocType: Address,Address Line 2,Indirizzo 2 DocType: Address,Reference,Riferimento apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Assegnato a -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configura l'account e-mail predefinito da Imposta> E-mail> Account e-mail DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Dati di mapping di migrazione dei dati DocType: Data Import,Action,Azione DocType: GSuite Settings,Script URL,URL dello script @@ -2918,11 +3017,13 @@ DocType: User,Api Access,Accesso Api DocType: DocField,In List View,In Vista Elenco DocType: Email Account,Use TLS,Usa TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Login o password non validi +DocType: Scheduled Job Type,Weekly Long,Long settimanale apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Scarica Modello apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Aggiungi javascript personalizzato al modulo. ,Role Permissions Manager,Gestione Permessi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nome del nuovo formato di stampa apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Attiva barra laterale +DocType: Server Script,After Save (Submitted Document),Dopo il salvataggio (documento inviato) DocType: Data Migration Run,Pull Insert,Tirare l'inserimento DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Punti massimi consentiti dopo aver moltiplicato i punti con il valore del moltiplicatore (Nota: per nessun limite, lasciare questo campo vuoto o impostare 0)" @@ -2942,6 +3043,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP non installato apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Scarica dati apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valori modificati per {0} {1} +DocType: Server Script,Before Cancel,Prima di annullare DocType: Workflow State,hand-right,mano destra DocType: Website Settings,Subdomain,Sottodominio DocType: S3 Backup Settings,Region,Regione @@ -2987,12 +3089,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Vecchia Password DocType: S3 Backup Settings,us-east-1,noi-est-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Messaggi di {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Per formattare le colonne, inserire le etichette delle colonne nella query." +DocType: Onboarding Slide,Slide Fields,Campi diapositiva DocType: Has Domain,Has Domain,Ha il dominio DocType: User,Allowed In Mentions,Permesso nelle Menzioni apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Non hai ancora un account? Registrati apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Impossibile rimuovere il campo ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Impossibile impostare Assegna la Correzione se non Confermabile DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Documenti sottoscritti apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Impostazioni utente DocType: Report,Reference Report,Rapporto di riferimento DocType: Activity Log,Link DocType,collegamento DocType @@ -3010,6 +3114,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizza l'access apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La pagina che stai cercando non è presente. Questo potrebbe essere dovuto al fatto che viene spostato o vi è un errore di battitura nel collegamento. apps/frappe/frappe/www/404.html,Error Code: {0},Codice di errore: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descrizione per la pagina di profilo, in testo normale, solo un paio di righe. (max 140 caratteri)" +DocType: Server Script,DocType Event,Evento DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sono campi obbligatori DocType: Workflow,Allow Self Approval,Consenti auto approvazione DocType: Event,Event Category,Categoria di eventi @@ -3026,6 +3131,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Il tuo nome apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connessione riuscita DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Esiste già una diapositiva integrata di tipo diapositiva Continua. DocType: DocType,Default Sort Field,Campo di ordinamento predefinito DocType: File,Is Folder,È Cartella DocType: Document Follow,DocType,DocType @@ -3064,8 +3170,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,valori DocType: Workflow State,arrow-up,freccia-up DocType: Dynamic Link,Link Document Type,Tipo di documento di collegamento apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Dovrebbe esserci almeno una riga per la tabella {0} +DocType: Server Script,Server Script,Script server apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Per configurare la ripetizione automatica, abilitare "Consenti ripetizione automatica" da {0}." DocType: OAuth Bearer Token,Expires In,Scade tra +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Il numero di volte in cui desideri ripetere l'insieme di campi (ad esempio: se desideri 3 clienti nella diapositiva, imposta questo campo su 3. Nella diapositiva viene visualizzato solo il primo insieme di campi)" DocType: DocField,Allow on Submit,Consenti se Confermato DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Tipo eccezione @@ -3075,6 +3183,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Intestazioni apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Prossimi eventi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Si prega di inserire i valori per App Access Key e App chiave segreta +DocType: Email Account,Append Emails to Sent Folder,Aggiungi e-mail alla cartella inviata DocType: Web Form,Accept Payment,Accetta pagamento apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Seleziona la voce dell'elenco apps/frappe/frappe/config/core.py,A log of request errors,Registro errori Request @@ -3093,7 +3202,7 @@ DocType: Translation,Contributed,Ha contribuito apps/frappe/frappe/config/customization.py,Form Customization,Personalizzazione del modulo apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nessuna sessione attiva DocType: Web Form,Route to Success Link,Link verso il successo -DocType: Top Bar Item,Right,Giusto +DocType: Onboarding Slide Field,Right,Giusto apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nessun evento imminente DocType: User,User Type,Tipo di utente DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3111,6 +3220,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Riprova apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',L'URL deve iniziare con 'http: //' o 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opzione 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Questo non può essere annullato DocType: Workflow State,Edit,Modifica DocType: Website Settings,Chat Operators,Operatori di chat DocType: S3 Backup Settings,ca-central-1,ca-centrale-1 @@ -3122,7 +3232,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Predefinito per {0} deve essere un'opzione -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Il rapporto con più di 10 colonne ha un aspetto migliore in modalità orizzontale. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nome campo non valido: {0} DocType: Milestone,Milestone,Milestone @@ -3131,7 +3240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Vai a {0} apps/frappe/frappe/email/queue.py,Emails are muted,Le E-mail sono disattivati apps/frappe/frappe/config/integrations.py,Google Services,Servizi di Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + -apps/frappe/frappe/utils/data.py,1 weeks ago,1 settimane fa +DocType: Onboarding Slide,Slide Description,Descrizione diapositiva DocType: Communication,Error,Errore apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Per favore imposta prima un messaggio DocType: Auto Repeat,End Date,Data di Fine @@ -3152,10 +3261,12 @@ DocType: Footer Item,Group Label,Label Group DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contatti Google è stato configurato. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Verrà esportato 1 record +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nessun account e-mail associato all'utente. Aggiungi un account in Utente> Posta in arrivo. DocType: DocField,Report Hide,Nascondi Report apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},visualizzazione ad albero non è disponibile per {0} DocType: DocType,Restrict To Domain,Limitare al dominio DocType: Domain,Domain,Dominio +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL del file non valido. Si prega di contattare l'amministratore di sistema. DocType: Custom Field,Label Help,Etichetta Aiuto DocType: Workflow State,star-empty,star-vuoto apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Le date sono spesso facili da indovinare. @@ -3180,6 +3291,7 @@ DocType: Workflow State,hand-left,mano sinistra DocType: Data Import,If you are updating/overwriting already created records.,Se si stanno aggiornando / sovrascrivendo i record già creati. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,È globale DocType: Email Account,Use SSL,Usa SSL +DocType: Webhook,HOOK-.####,GANCIO-.#### DocType: Workflow State,play-circle,play-cerchio apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Il documento non può essere assegnato correttamente apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Espressione "depend_on" non valida @@ -3196,6 +3308,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Ultimo aggiornamento apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Per tipo di documento DocType: Workflow State,arrow-right,freccia-destra +DocType: Server Script,API Method,Metodo API DocType: Workflow State,Workflow state represents the current state of a document.,Stato del flusso di lavoro rappresenta lo stato attuale di un documento. DocType: Letter Head,Letter Head Based On,Testa di lettera basata su apps/frappe/frappe/utils/oauth.py,Token is missing,Token mancante @@ -3235,6 +3348,7 @@ DocType: Comment,Relinked,Ricollegato DocType: Print Settings,Compact Item Print,Compact elemento di stampa DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL di reindirizzamento +DocType: Onboarding Slide Field,Placeholder,segnaposto DocType: SMS Settings,Enter url parameter for receiver nos,Inserisci parametri url per NOS ricevuti DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Usa sempre il nome dell'account come nome del mittente @@ -3244,7 +3358,6 @@ DocType: Workflow State,Home,Home DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,L'utente può accedere utilizzando l'ID e-mail o il nome utente DocType: Workflow State,question-sign,domanda-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} è disabilitato apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Il campo "percorso" è obbligatorio per le viste Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inserisci colonna prima di {0} DocType: Energy Point Rule,The user from this field will be rewarded points,All'utente di questo campo verranno assegnati punti @@ -3269,6 +3382,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Se Proprietario DocType: Data Migration Mapping,Push,Spingere apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Trascina i file qui DocType: OAuth Authorization Code,Expiration time,Data di scadenza +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Apri documenti DocType: Web Page,Website Sidebar,Sito Sidebar DocType: Web Form,Show Sidebar,Mostra barra laterale apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Devi essere loggato per accedere a questa {0}. @@ -3284,6 +3398,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Scorciatoie DocType: Desktop Icon,Page,Pagina apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Impossibile trovare {0} a {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nomi e cognomi di per sé sono facili da indovinare. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Documento rinominato da {0} a {1} apps/frappe/frappe/config/website.py,Knowledge Base,base di conoscenza DocType: Workflow State,briefcase,ventiquattrore apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Il valore non può essere cambiato per {0} @@ -3320,6 +3435,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Formato Stampa apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Attiva / disattiva visualizzazione griglia apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Vai al record successivo +DocType: System Settings,Time Format,Formato orario apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,credenziali di gateway di pagamento non valide DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Questo è il file modello generato con solo le righe con qualche errore. Dovresti usare questo file per la correzione e l'importazione. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Impostare le autorizzazioni per tipi di documento e ruoli @@ -3362,12 +3478,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Rispondi apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Pagine sul Desktop (segnaposto) DocType: DocField,Collapsible Depends On,In base al pieghevole DocType: Print Style,Print Style Name,Nome dello stile di stampa +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Il campo Raggruppa per è necessario per creare un grafico del dashboard DocType: Print Settings,Allow page break inside tables,Consenti interruzione di pagina all'interno delle tabelle DocType: Email Account,SMTP Server,Server SMTP DocType: Print Format,Print Format Help,Formato Stampa Guida apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,La stanza {0} deve avere almeno un utente. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Contare +DocType: Dashboard Chart,Group By Type,Raggruppa per tipo apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nuovo commento su {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurato {0} come {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Se si sta aggiornando, seleziona ""Sovrascrivi"" non saranno cancellati righe altro esistenti." @@ -3378,14 +3496,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profilo u DocType: Web Form,Web Form,Modulo web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La data {0} deve essere nel formato: {1} DocType: About Us Settings,Org History Heading,Org Storia Rubrica +DocType: Scheduled Job Type,Scheduled Job Type,Tipo di lavoro pianificato DocType: Print Settings,Allow Print for Cancelled,Consenti la stampa per gli Annullati DocType: Communication,Integrations can use this field to set email delivery status,Integrazioni possono utilizzare questo campo per impostare lo stato di consegna di posta elettronica +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Non hai i permessi per cancellare tutti i documenti collegati. DocType: Web Form,Web Page Link Text,Pagina Web Link Text DocType: Page,System Page,Pagina del sistema apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Impostare il formato predefinito, formato pagina, stile di stampa, ecc" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalizzazioni per {0} esportate in:
{1} DocType: Website Settings,Include Search in Top Bar,Includono la ricerca in Top Bar +DocType: Scheduled Job Type,Daily Long,Daily Long DocType: GSuite Settings,Allow GSuite access,Consenti accesso GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nomine @@ -3488,6 +3609,7 @@ DocType: Notification,Send days before or after the reference date,Invia giorni DocType: User,Allow user to login only after this hour (0-24),Consentire Login Utente solo dopo questo orario (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Assegna uno per uno, in sequenza" DocType: Integration Request,Subscription Notification,Notifica di iscrizione +DocType: Customize Form Field, Allow in Quick Entry ,Consenti in Accesso rapido apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,o allegare a DocType: Auto Repeat,Start Date,Data di inizio apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Valore @@ -3502,6 +3624,7 @@ DocType: Google Drive,Backup Folder ID,ID cartella di backup apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Non in modalità sviluppatore! Configura da site_config.json o crea un DocType 'Custom'. DocType: Workflow State,globe,mappamondo DocType: System Settings,dd.mm.yyyy,gg.mm.aaaa +DocType: Onboarding Slide Help Link,Video,video DocType: Assignment Rule,Priority,Priorità DocType: Email Queue,Unsubscribe Param,Parametri di disiscrizione DocType: DocType,Hide Sidebar and Menu,Nascondi barra laterale e menu @@ -3513,6 +3636,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Consentire l'importazione ( apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Impostazioni pagina +DocType: Notification Settings,Notification Settings,Impostazioni di notifica apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Salvataggio... apps/frappe/frappe/www/update-password.html,Invalid Password,Password non valida apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} importato correttamente su {1}. @@ -3528,6 +3652,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Immagine testa di lettera DocType: Address,Party GSTIN,GSTIN del Partner +DocType: Scheduled Job Type,Cron Format,Formato cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Report DocType: SMS Settings,Use POST,Utilizza POST DocType: Communication,SMS,sms @@ -3572,18 +3697,20 @@ DocType: Workflow,Allow approval for creator of the document,Consenti l'appr apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salva report DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,Argomenti dell'endpoint API +DocType: DocType Action,Server Action,Azione del server apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Accesso amministratore {0} il {1} tramite indirizzo IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Il campo padre deve essere un nome campo valido apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Errore durante la modifica dell'abbonamento DocType: LDAP Settings,LDAP Group Field,Campo gruppo LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Documento sottoscritto di notifica apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,uguale apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Invalid Formato CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Errore durante la connessione all'applicazione vassoio QZ ...

È necessario disporre dell'applicazione QZ Tray installata e in esecuzione, per utilizzare la funzione Raw Print.

Fare clic qui per scaricare e installare il vassoio QZ .
Fai clic qui per ulteriori informazioni sulla stampa raw ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Imposta il numero di backup DocType: DocField,Do not allow user to change after set the first time,Non permettere all'utente di cambiare dopo impostare la prima volta apps/frappe/frappe/utils/data.py,1 year ago,1 anno fa +DocType: DocType,Links Section,Sezione collegamenti apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Visualizza il registro di tutti gli eventi di stampa, download ed esportazione" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mese DocType: Contact,Contact,Contatto @@ -3610,16 +3737,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nuova email DocType: Custom DocPerm,Export,Esporta apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Per utilizzare Google Calendar, abilita {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Aggiunta anche del campo di dipendenza dello stato {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} aggiornato correttamente apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Vassoio QZ non riuscito: DocType: Dropbox Settings,Dropbox Settings,Impostazioni Dropbox DocType: About Us Settings,More content for the bottom of the page.,Più contenuti per la parte inferiore della pagina. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Questo documento è stato ripristinato apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Backup di Google Drive riuscito. +DocType: Webhook,Naming Series,Denominazione Serie DocType: Workflow,DocType on which this Workflow is applicable.,DocType su cui questo flusso di lavoro è applicabile DocType: User,Enabled,Attivato apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Impossibile completare l'installazione apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nuovo {0}: {1} -DocType: Tag Category,Category Name,Nome Categoria +DocType: Blog Category,Category Name,Nome Categoria apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,È richiesto il genitore per ottenere i dati della tabella figlio apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importa Abbonati DocType: Print Settings,PDF Settings,Impostazioni PDF @@ -3655,6 +3785,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Calendario apps/frappe/frappe/client.py,No document found for given filters,Nessun documento trovato per i filtri dati apps/frappe/frappe/config/website.py,A user who posts blogs.,Un utente che pubblica blog. +DocType: DocType Action,DocType Action,DocType Action apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Un altro {0} con il nome {1} esiste , selezionare un altro nome" DocType: DocType,Custom?,Personalizzato? DocType: Website Settings,Website Theme Image,Sito Theme Immagine @@ -3664,6 +3795,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Impossibi apps/frappe/frappe/config/integrations.py,Backup,Backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Il tipo di documento è necessario per creare un grafico dashboard DocType: DocField,Read Only,Solo lettura +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Impossibile creare l'ordine razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nuova Newsletter DocType: Energy Point Log,Energy Point Log,Registro punti energia DocType: Print Settings,Send Print as PDF,Invia Stampa in formato PDF @@ -3689,16 +3821,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con apps/frappe/frappe/www/login.html,Or login with,O login con DocType: Error Snapshot,Locals,La gente del posto apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicato via {0} il {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ti ha menzionato in un commento a {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Seleziona Raggruppa per ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} è richiesto DocType: Integration Request,Integration Type,Integrazione Tipo DocType: Newsletter,Send Attachements,Invia Allegati +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nessun filtro trovato apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrazione di Contatti Google. DocType: Transaction Log,Transaction Log,Registro delle transazioni apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistiche basate sul rendimento del mese scorso (da {0} a {1}) DocType: Contact Us Settings,City,Città +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Nascondi le carte per tutti gli utenti apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Abilita Consenti ripetizione automatica per il tipo di documento {0} in Personalizza modulo DocType: DocField,Perm Level,Perm Livello apps/frappe/frappe/www/confirm_workflow_action.html,View document,Visualizza il documento @@ -3709,6 +3842,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Se abilitato, le modifiche al documento vengono tracciate e visualizzate nella sequenza temporale" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'In ricerca globale' non consentito per il tipo {0} nella riga {1} DocType: Energy Point Log,Appreciation,Apprezzamento +DocType: Dashboard Chart,Number of Groups,Numero di gruppi apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Visualizza elenco DocType: Workflow,Don't Override Status,Non override Stato apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Termine di ricerca @@ -3750,7 +3884,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-ovest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limita il numero di backup del database DocType: Custom DocPerm,Level,Livello -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Ultimi 30 giorni DocType: Custom DocPerm,Report,Report apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,L'importo deve essere maggiore di 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Collegato al vassoio QZ! @@ -3767,6 +3900,7 @@ DocType: S3 Backup Settings,us-west-2,noi-ovest-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Seleziona tabella figlio apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Attiva azione primaria apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Cambia +DocType: Social Login Key,User ID Property,Proprietà ID utente DocType: Email Domain,domain name,nome del dominio DocType: Contact Email,Contact Email,Email Contatto DocType: Kanban Board Column,Order,Ordine @@ -3789,7 +3923,7 @@ DocType: Contact,Last Name,Cognome DocType: Event,Private,Privato apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Sinistra DocType: Event,All Day,Intera giornata apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Sembra che qualcosa non va con la configurazione gateway di pagamento di questo sito. Nessun pagamento è stato effettuato. DocType: GCalendar Settings,State,Stato @@ -3821,7 +3955,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Impostazioni del gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,testo tipo di documento -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Esegui test apps/frappe/frappe/handler.py,Logged Out,Disconnesso apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Di Più... DocType: System Settings,User can login using Email id or Mobile number,L'utente può accedere usando ID e-mail o numero di cellulare @@ -3837,6 +3970,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sommario DocType: Event,Event Participants,Partecipanti all'evento DocType: Auto Repeat,Frequency,Frequenza +DocType: Onboarding Slide,Slide Order,Ordine delle diapositive DocType: Custom Field,Insert After,Inserisci Dopo DocType: Event,Sync with Google Calendar,Sincronizza con Google Calendar DocType: Access Log,Report Name,Nome Report @@ -3864,6 +3998,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Larghezza massima per il tipo di valuta è 100px in riga {0} apps/frappe/frappe/config/website.py,Content web page.,Contenuto Pagina Web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Aggiungere un nuovo ruolo +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visita la pagina Web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nuovo incarico DocType: Google Contacts,Last Sync On,Ultima sincronizzazione attivata DocType: Deleted Document,Deleted Document,documento eliminato apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,"Spiacenti, Qualcosa è andato storto" @@ -3874,7 +4010,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paesaggio apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Estensioni di script lato client in Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,I record per i seguenti doctype verranno filtrati -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Scheduler inattivo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Scheduler inattivo DocType: Blog Settings,Blog Introduction,Introduzione Blog DocType: Global Search Settings,Search Priorities,Cerca priorità DocType: Address,Office,Ufficio @@ -3884,12 +4020,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Link grafico dashboard DocType: User,Email Settings,Impostazioni E-mail apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Drop Here DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Se abilitato, l'utente può accedere da qualsiasi indirizzo IP utilizzando Two Factor Auth, questo può anche essere impostato per tutti gli utenti in Impostazioni di sistema" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Impostazioni della stampante ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Si prega di inserire la password per continuare apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Me apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} non è uno Stato valido apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Applica a tutti i tipi di documenti -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aggiornamento del punto di energia +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Aggiornamento del punto di energia +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Esegui lavori solo quotidianamente se inattivo per (giorni) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tipo di stanza DocType: Data Import Beta,Import Log Preview,Importa anteprima registro @@ -3898,6 +4034,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-cerchio DocType: LDAP Settings,LDAP User Creation and Mapping,Creazione e mappatura degli utenti LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',È possibile trovare le cose chiedendo 'trova arancio nei clienti' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Eventi di oggi apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Sorry! L'utente dovrebbe avere accesso completo al proprio record. ,Usage Info,Informazioni Utilizzo apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Mostra scorciatoie da tastiera @@ -3914,6 +4051,7 @@ DocType: DocField,Unique,Unico apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apprezzato su {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Successo parziale DocType: Email Account,Service,servizio +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Config> Utente DocType: File,File Name,Nome del file apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Non {0} trovare per {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Ris: {0} @@ -3927,6 +4065,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Completa DocType: GCalendar Settings,Enable,permettere DocType: Google Maps Settings,Home Address,Indirizzo di casa apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),È possibile caricare solo fino a 5000 record in una volta. (Può essere inferiore in alcuni casi) +DocType: Report,"output in the form of `data = [columns, result]`","output sotto forma di `data = [colonne, risultato]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipi di documenti applicabili apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Imposta le regole per le assegnazioni degli utenti. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Autorizzazione insufficiente per {0} @@ -3942,7 +4081,6 @@ DocType: Communication,To and CC,Per e CC DocType: SMS Settings,Static Parameters,Parametri statici DocType: Chat Message,Room,Camera apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aggiornato a {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,I lavori in background non sono in esecuzione. Si prega di contattare l'amministratore DocType: Portal Settings,Custom Menu Items,Voci di menu personalizzate apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Tutte le immagini allegate alla presentazione del sito web devono essere pubbliche DocType: Workflow State,chevron-right,chevron-destra @@ -3957,11 +4095,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valori selezionati DocType: DocType,Allow Auto Repeat,Consenti ripetizione automatica apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nessun valore da mostrare +DocType: DocType,URL for documentation or help,URL per documentazione o aiuto DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Modello di email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Record {0} aggiornato correttamente. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},L'utente {0} non ha accesso al tipo di documento tramite l'autorizzazione del ruolo per il documento {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Sono richiesti login e password +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Permettere\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Si prega di aggiornare per ottenere l'ultimo documento. DocType: User,Security Settings,Impostazioni di sicurezza apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Aggiungi colonna @@ -3971,6 +4111,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtro Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Si trova in allegato {0}: {1} DocType: Web Page,Set Meta Tags,Imposta meta tag +DocType: Email Account,Use SSL for Outgoing,Usa SSL per In uscita 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: S3 Backup Settings,Backup Limit,Limite di backup DocType: Dashboard Chart,Line,Linea @@ -4003,4 +4144,3 @@ DocType: DocField,Ignore User Permissions,Ignora autorizzazioni utente apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvato con successo apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Si prega di chiedere all'amministratore di verificare la tua iscrizione DocType: Domain Settings,Active Domains,Domini attivi -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Mostra registro diff --git a/frappe/translations/ja.csv b/frappe/translations/ja.csv index 1ac4994e07..b3be600a2b 100644 --- a/frappe/translations/ja.csv +++ b/frappe/translations/ja.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,金額フィールドを選択してください。 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,インポートファイルを読み込んでいます... DocType: Assignment Rule,Last User,最後のユーザー -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",{1}からあなたに新しいタスク{0}が割当されています。 {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,保存されたセッションデフォルト apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ファイルをリロード DocType: Email Queue,Email Queue records.,メールキューのレコード。 @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0}ツリー DocType: User,User Emails,ユーザーのメール DocType: User,Username,ユーザー名 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zipのインポート +DocType: Scheduled Job Type,Create Log,ログを作成 apps/frappe/frappe/model/base_document.py,Value too big,大きすぎる値 DocType: DocField,DocField,文書フィールド DocType: GSuite Settings,Run Script Test,スクリプトテスト実行 @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,月次 DocType: Address,Uttarakhand,ウッタラーカンド州 DocType: Email Account,Enable Incoming,着信を有効にする apps/frappe/frappe/core/doctype/version/version_view.html,Danger,危険 -DocType: Address,Email Address,メールアドレス +apps/frappe/frappe/www/login.py,Email Address,メールアドレス DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,未読通知送信済 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,エクスポートは許可されていません。役割{0}を必要とします。 @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,公開フィールド DocType: GCalendar Settings,GCalendar Settings,GCalendarの設定 DocType: Email Group,Email Group,メールグループ +apps/frappe/frappe/__init__.py,Only for {},それだけに {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Googleカレンダー-Googleカレンダーからイベント{0}を削除できませんでした、エラーコード{1}。 DocType: Event,Pulled from Google Calendar,Googleカレンダーから取得 DocType: Note,Seen By,で見られる apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,複数追加 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,あなたはいくつかのエネルギーポイントを得ました apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,有効なユーザーイメージではありません。 DocType: Energy Point Log,Reverted,元に戻す DocType: Success Action,First Success Message,最初の成功メッセージ @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,みたいで apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},不正な値:{0} は {1} {2}でなければなりません apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",変更フィールドのプロパティ(非表示、読み取り専用、アクセス権など) apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,感謝する +DocType: Notification Settings,Document Share,ドキュメント共有 DocType: Workflow State,lock,ロック apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,お問い合わせページの設定 apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,管理者がログインしました @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",有効になっている場合、ユーザーが最初に開いたときに、文書は閲覧済みとしてマークされます。 DocType: Auto Repeat,Repeat on Day,日に繰り返す DocType: DocField,Color,色 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,すべて既読にする DocType: Data Migration Run,Log,ログ DocType: Workflow State,indent-right,インデント右 DocType: Has Role,Has Role,役割あり @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,トレースバックを表示 DocType: DocType,Default Print Format,デフォルト印刷フォーマット DocType: Workflow State,Tags,タグ +DocType: Onboarding Slide,Slide Type,スライドタイプ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,なし:ワークフローの終了 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",非ユニークの値が存在するため、フィールド {0} を{1} 内でユニークに設定することはできません apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,文書タイプ @@ -135,7 +138,6 @@ DocType: Language,Guest,ゲスト DocType: DocType,Title Field,タイトルフィールド DocType: Error Log,Error Log,エラーログ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,無効なURL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,過去7日間 apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",「ABCABCABC」などの繰り返しは「ABC」よりわずかに推測が困難です DocType: Notification,Channel,チャネル apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",これが不正であると考えられる場合は、管理者パスワードを変更してください。 @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,クライアント apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,列選択 apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,このフォームは読み込み後に変更されています DocType: Address,Himachal Pradesh,ヒマーチャル・プラデーシュ州 +DocType: Notification Log,Notification Log,通知ログ DocType: System Settings,"If not set, the currency precision will depend on number format",設定されていない場合、通貨精度は数値形式に依存します apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebarを開く apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",サーバーのストライプ構成に問題があるようです。不具合が発生した場合、その金額はお客様のアカウントに払い戻されます。 @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,送信 DocType: Workflow Action Master,Workflow Action Name,ワークフローアクション名 apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,文書タイプを混在させることはできません。 -DocType: Web Form Field,Fieldtype,フィールドタイプ +DocType: Onboarding Slide Field,Fieldtype,フィールドタイプ apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,zipファイルではありません DocType: Global Search DocType,Global Search DocType,グローバル検索DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,メール送信済み? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,トグルチャート apps/frappe/frappe/desk/form/save.py,Did not cancel,キャンセルされませんでした DocType: Social Login Key,Client Information,クライアント情報 +DocType: Energy Point Rule,Apply this rule only once per document,このルールをドキュメントごとに1回だけ適用します DocType: Workflow State,plus,プラス +DocType: DocField,Read Only Depends On,読み取り専用に依存 apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,ゲストまたは管理者としてログイン DocType: Email Account,UNSEEN,未読 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ファイルマネージャー @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,理由 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,アクティビティなし +DocType: Server Script,Script Manager,スクリプトマネージャー +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,アクティビティなし apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,サードパーティのアプリ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,最初のユーザーは、システムマネージャとなります。(後で変更できます) +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,今日のイベントはありません apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,あなたは自分自身にレビューポイントを与えることはできません apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocTypeは、選択したDocイベントに対してSubmittableでなければなりません DocType: Workflow State,circle-arrow-up,円矢印(上) @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}には使用できません:{1}。制限付きフィールド:{2} 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,You are not allowed to delete a standard Website Theme,標準のWebサイトテーマを削除することは許可されていません +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},最初の{0}を作成します DocType: Data Import,Log Details,ログ詳細 DocType: Workflow Transition,Example,例 DocType: Webhook Header,Webhook Header,Webhookヘッダー @@ -248,8 +256,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,チャットの背景 apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,既読としてマーク apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0}を更新しています +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,同じスライド順序のオンボーディングスライド{0}が既に存在します apps/frappe/frappe/core/doctype/report/report.js,Disable Report,レポートを無効にする DocType: Translation,Contributed Translation Doctype Name,寄稿された翻訳のDoctype名 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,[設定]> [フォームのカスタマイズ] DocType: PayPal Settings,Redirect To,リダイレクト DocType: Data Migration Mapping,Pull,プル DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript形式:frappe.query_reports ['REPORTNAME'] = {} @@ -264,6 +274,7 @@ DocType: DocShare,Internal record of document shares,文書共有の内部レコ DocType: Energy Point Settings,Review Levels,レビューレベル DocType: Workflow State,Comment,コメント DocType: Data Migration Plan,Postprocess Method,後処理方法 +DocType: DocType Action,Action Type,アクションタイプ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,写真を撮る DocType: Assignment Rule,Round Robin,ラウンドロビン apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",提出した書類は、キャンセルし修正することによって変更することができます @@ -277,6 +288,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,名前を付けて保存 DocType: Comment,Seen,閲覧済 apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,詳細を表示 +DocType: Server Script,Before Submit,送信する前に DocType: System Settings,Run scheduled jobs only if checked,スケジュールされたジョブを実行(チェックを入れた場合のみ) apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,セクションの見出しが有効になっている場合にのみ表示されます apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,アーカイブ @@ -289,11 +301,13 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropboxのアクセスキー apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,カスタムスクリプトのadd_fetch設定でフィールド名{0}が間違っています apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,連絡先を同期するGoogle連絡先を選択します。 DocType: Web Page,Main Section (HTML),メインセクション(HTML) +DocType: Scheduled Job Type,Annual,年次 DocType: Workflow State,headphones,ヘッドフォン apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,パスワードが必要か、待ちパスワードを選択されています DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,"例「replies@yourcomany.com」 全ての返信はこの受信トレイに入ります" DocType: Slack Webhook URL,Slack Webhook URL,Webhook URLをゆるめる +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",ウィザードでのスライドの順序を決定します。スライドを表示しない場合は、優先度を0に設定する必要があります。 DocType: Data Migration Run,Current Mapping,現在のマッピング apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,有効なメールアドレスと名前が必要です。 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,すべての添付ファイルをプライベートにする @@ -316,6 +330,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,移行ルール apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,プレビューで最初の{0}行のみを表示しています apps/frappe/frappe/core/doctype/report/report.js,Example:,例: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,制限事項 DocType: Workflow,Defines workflow states and rules for a document.,ドキュメントのためのワークフローの状況とルールを定義します。 DocType: Workflow State,Filter,フィルタ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},エラーログで詳細を確認してください:{0} @@ -327,6 +342,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ジョブ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0}ログアウト:{1} DocType: Address,West Bengal,西ベンガル州 +DocType: Onboarding Slide,Information,情報 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}:提出可能になっていない場合は、割当の提出が設定できません DocType: Transaction Log,Row Index,行インデックス DocType: Social Login Key,Facebook,Facebook @@ -345,7 +361,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,ボタンヘルプ DocType: Kanban Board Column,purple,紫 DocType: About Us Settings,Team Members,チームメンバー +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,非アクティブなサイトに対してスケジュールされたジョブを1日1回のみ実行します。 0に設定されている場合、デフォルトの4日間。 DocType: Assignment Rule,System Manager,システム管理者 +DocType: Scheduled Job Log,Scheduled Job,スケジュールされたジョブ DocType: Custom DocPerm,Permissions,権限 apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,内部統合のための不十分なWebhooks DocType: Dropbox Settings,Allow Dropbox Access,Dropboxのアクセスを許可 @@ -398,6 +416,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,バ DocType: Email Flag Queue,Email Flag Queue,メールフラグキュー DocType: Access Log,Columns / Fields,列/フィールド apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,印刷書式のスタイルシート +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,ダッシュボードチャートを作成するには、集計関数フィールドが必要です apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,{0}のオープン識別することはできません。何か他のものを試してみてください。 apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,情報が送信されました apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ユーザー{0}を削除することはできません @@ -413,11 +432,12 @@ DocType: Property Setter,Field Name,フィールド名 DocType: Assignment Rule,Assign To Users,ユーザーに割り当て apps/frappe/frappe/public/js/frappe/utils/utils.js,or,または apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,モジュール名... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,継続 +DocType: Onboarding Slide,Continue,継続 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google統合は無効です。 DocType: Custom Field,Fieldname,フィールド名 DocType: Workflow State,certificate,証明書 apps/frappe/frappe/templates/includes/login/login.js,Verifying...,確認しています... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1}の割り当てが削除されました apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,最初のデータ列は空白でなければなりません apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,全バージョン表示 apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,コメントを見る @@ -427,12 +447,14 @@ DocType: User,Restrict IP,IPアドレス制限 apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ダッシュボード apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,メールを送信することができません。 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Googleカレンダー-Googleカレンダーのイベント{0}を更新できませんでした、エラーコード{1}。 +DocType: Notification Log,Email Content,メールの内容 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,検索またはコマンド入力 DocType: Activity Log,Timeline Name,タイムライン名 apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,プライマリとして設定できる{0}は1つだけです。 DocType: Email Account,e.g. smtp.gmail.com,例「smtp.gmail.com」 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,新しいルールを追加 DocType: Contact,Sales Master Manager,販売マスターマネージャー +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,アプリが機能するにはJavaScriptを有効にする必要があります。 DocType: User Permission,For Value,価値観 DocType: Event,Google Calendar ID,GoogleカレンダーID apps/frappe/frappe/www/complete_signup.html,One Last Step,最後のステップ @@ -447,6 +469,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAPミドルネームフィール apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1}の{0}をインポートしています DocType: GCalendar Account,Allow GCalendar Access,GCalendarアクセスを許可する apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0}は必須フィールドです +DocType: DocType,Documentation Link,ドキュメントリンク apps/frappe/frappe/templates/includes/login/login.js,Login token required,ログイントークンが必要です apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,月間ランク: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,複数のリストアイテムを選択 @@ -468,6 +491,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ファイルURL DocType: Version,Table HTML,表HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,登録者を追加 +DocType: Notification Log,Energy Point,エネルギーポイント apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,今日の予定 DocType: Google Calendar,Push to Google Calendar,Googleカレンダーにプッシュ DocType: Notification Recipient,Email By Document Field,文書フィールドによるメール @@ -483,12 +507,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,離席 DocType: Currency,Fraction Units,分数単位 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} {1}から{2}へ -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,完了としてマーク DocType: Chat Message,Type,タイプ DocType: Google Settings,OAuth Client ID,OAuthクライアントID DocType: Auto Repeat,Subject,タイトル apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,デスクに戻る DocType: Web Form,Amount Based On Field,金額フィールドに基づいて +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0}にはバージョンが追跡されていません。 apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,共有にはユーザーが必須です DocType: DocField,Hidden,隠された DocType: Web Form,Allow Incomplete Forms,不完全なフォームを許可する @@ -511,6 +535,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,検証のためにあなたの電子メールをチェックしてください apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,フォールドはフォームの最後にすることはできません DocType: Communication,Bounced,不達 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,の DocType: Deleted Document,Deleted Name,削除された名前 apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,システムとウェブサイトユーザー DocType: Workflow Document State,Doc Status,文書ステータス @@ -521,6 +546,7 @@ DocType: Language,Language Code,言語コード DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,注:デフォルトでは、失敗したバックアップの電子メールが送信されます。 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,フィルタを追加 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},次の番号に送信されたSMS:{0} +DocType: Notification Settings,Assignments,課題 apps/frappe/frappe/utils/data.py,{0} and {1},{0}と{1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,会話を開始する。 DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",常に印刷ドラフト文書の見出し "ドラフト"を追加 @@ -529,6 +555,7 @@ DocType: Data Migration Run,Current Mapping Start,現在のマッピングの開 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,メールがスパムとしてマークされています DocType: Comment,Website Manager,Webサイトマネージャー apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ファイルのアップロードが切断されました。もう一度お試しください。 +DocType: Data Import Beta,Show Failed Logs,失敗したログを表示 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,翻訳 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,下書きまたはキャンセルされた文書を選択しました apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},文書{0}は{2}で状態{1}に設定されています @@ -536,7 +563,9 @@ apps/frappe/frappe/model/document.py,Document Queued,文書キュー DocType: GSuite Templates,Destination ID,宛先ID DocType: Desktop Icon,List,リスト DocType: Activity Log,Link Name,リンク名 +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,あなたが持っている\ DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy +DocType: Onboarding Slide,Onboarding Slide,オンボーディングスライド apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,無効なパスワード: DocType: Print Settings,Send document web view link in email,電子メールでのドキュメントのWebビューのリンクを送信 apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,前 @@ -597,6 +626,7 @@ DocType: Kanban Board Column,darkgrey,濃い灰色 apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},成功:{0} {1}へ apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,デモでユーザーの詳細を変更することはできません。 https://erpnext.comで新規アカウントにサインアップしてください apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ドロップ +DocType: Dashboard Chart,Aggregate Function Based On,に基づく集約関数 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,複製した後、変更してください apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Enterキーを押して保存します apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,画像リンクが壊れているため、PDFの生成に失敗しました @@ -610,7 +640,9 @@ DocType: Notification,Days Before,事前 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,毎日のイベントは同じ日に終了する必要があります。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,編集... DocType: Workflow State,volume-down,音量を下げる +DocType: Onboarding Slide,Help Links,ヘルプリンク apps/frappe/frappe/auth.py,Access not allowed from this IP Address,このIPアドレスからのアクセスは許可されていません +DocType: Notification Settings,Enable Email Notifications,メール通知を有効にする apps/frappe/frappe/desk/reportview.py,No Tags,タグがありません DocType: Email Account,Send Notification to,通知送信先 DocType: DocField,Collapsible,折り畳み @@ -639,6 +671,7 @@ DocType: Google Drive,Last Backup On,最終バックアップオン DocType: Customize Form Field,Customize Form Field,フォームフィールドをカスタマイズ DocType: Energy Point Rule,For Document Event,ドキュメントイベント用 DocType: Website Settings,Chat Room Name,チャットルーム名 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,変更なし DocType: OAuth Client,Grant Type,助成金タイプ apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ユーザーが読み取り可能なドキュメントにチェック DocType: Deleted Document,Hub Sync ID,ハブ同期ID @@ -646,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ワ DocType: Auto Repeat,Quarterly,4半期ごと apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",このアカウントにはメールのドメインが設定されていません。新規作成しますか? DocType: User,Reset Password Key,パスワードキーリセット +DocType: Dashboard Chart,All Time,いつも apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}の不正な文書ステータス DocType: Email Account,Enable Auto Reply,自動返信を有効にする apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,閲覧なし @@ -658,6 +692,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,メ DocType: Email Account,Notify if unreplied,返信されていない場合に通知 apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QRコードをスキャンし、表示されるコードを入力します。 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,グラデーションを有効にする +DocType: Scheduled Job Type,Hourly Long,毎時 DocType: System Settings,Minimum Password Score,最小パスワードスコア DocType: DocType,Fields,フィールド DocType: System Settings,Your organization name and address for the email footer.,メールフッター内の組織名と住所 @@ -665,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,親テー apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3バックアップ完了! apps/frappe/frappe/config/desktop.py,Developer,開発者 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,作成済 +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},有効にするには、次のリンクの指示に従ってください:{0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,行{1}の{0}は、URLと子アイテムの両方を持つことはできません apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},次のテーブルには少なくとも1行必要です:{0} DocType: Print Format,Default Print Language,デフォルトの印刷言語 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,祖先 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ルート{0}は削除できません +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,失敗したログはありません apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,まだコメントはありません apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",認証方法としてSMSを設定する前に、SMS設定を完了してください apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,文書タイプと名前が必要です。 @@ -693,6 +730,7 @@ DocType: Website Settings,Footer Items,フッター項目 apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,メニュー DocType: DefaultValue,DefaultValue,デフォルト値 DocType: Auto Repeat,Daily,日次 +DocType: Onboarding Slide,Max Count,最大カウント apps/frappe/frappe/config/users_and_permissions.py,User Roles,ユーザーの役割 DocType: Property Setter,Property Setter overrides a standard DocType or Field property,属性設定は標準で文書タイプまたはフィールド属性を上書きします apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,更新することができません:不適切または期限切れリンク @@ -711,6 +749,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,ハードディスク DocType: Integration Request,Host,ホスト DocType: Data Import Beta,Import File,インポートファイル +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,テンプレートエラー apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,列{0}はすでに存在しています。 DocType: ToDo,High,高 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,新しいイベント @@ -726,6 +765,7 @@ DocType: Web Form Field,Show in filter,フィルタに表示する DocType: Address,Daman and Diu,ダマン・ディーウ連邦直轄領 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,プロジェクト DocType: Address,Personal,個人情報 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,生の印刷設定... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,詳細についてはhttps://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_regionを参照してください。 apps/frappe/frappe/config/settings.py,Bulk Rename,一括名前変更 DocType: Email Queue,Show as cc,CCとして表示 @@ -735,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ビデオを撮る DocType: Contact Us Settings,Introductory information for the Contact Us Page,お問い合わせページのための入門的な情報 DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,不賛成 +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,ドキュメントをキャンセルする DocType: User,Send Notifications for Email threads,電子メールスレッドへの通知の送信 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,教授 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,非開発者モード @@ -742,7 +783,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ファイ DocType: DocField,In Global Search,グローバル検索内 DocType: System Settings,Brute Force Security,ブルートフォースセキュリティ DocType: Workflow State,indent-left,インデント左 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,このファイル {0} を削除することは危険です。システム管理者にお問い合わせください。 DocType: Currency,Currency Name,通貨名 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,メールがありません @@ -757,10 +797,12 @@ DocType: Energy Point Rule,User Field,ユーザーフィールド DocType: DocType,MyISAM,MyISAMテーブル DocType: Data Migration Run,Push Delete,プッシュ削除 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} は {1} {2} により登録解除済です +DocType: Scheduled Job Type,Stopped,停止 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,削除されませんでした。 apps/frappe/frappe/desk/like.py,Liked,いいね!済 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,今すぐ送信 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",標準の文書タイプは、デフォルトの印刷フォーマットを持つことはできません。カスタマイズフォームを使用してください +DocType: Server Script,Allow Guest,ゲストを許可 DocType: Report,Query,クエリー DocType: Customize Form,Sort Order,並び順 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},「リスト表示」は行{1}のタイプ{0}では許可されません @@ -782,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,2要素認証方式 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,最初に名前を設定し、レコードを保存します。 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5件 +DocType: DocType Link,Link Fieldname,リンクフィールド名 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0}と共有 apps/frappe/frappe/email/queue.py,Unsubscribe,登録解除 DocType: View Log,Reference Name,参照名 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ユーザーを変更 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,最初 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,翻訳を更新する DocType: Error Snapshot,Exception,例外 DocType: Email Account,Use IMAP,IMAPを使用 @@ -799,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,ワークフローの状態遷移を定義するルール DocType: File,Folder,フォルダ DocType: Website Route Meta,Website Route Meta,ウェブサイトルートメタ +DocType: Onboarding Slide Field,Onboarding Slide Field,オンボーディングスライドフィールド DocType: DocField,Index,索引 DocType: Email Group,Newsletter Manager,ニュースレターマネージャー apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,オプション1 @@ -825,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,取 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,チャートの設定 DocType: User,Last IP,最新のIP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,あなたの電子メールに件名を追加してください -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,新しい文書 {0} があなた {1} と共有されました DocType: Data Migration Connector,Data Migration Connector,データ移行コネクタ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}が{1}を元に戻しました DocType: Email Account,Track Email Status,電子メールステータスを追跡する @@ -877,6 +921,7 @@ DocType: Email Account,Default Outgoing,デフォルト支出 DocType: Workflow State,play,再生 apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,登録を完了し、新しいパスワードを設定するためには、次のリンクをクリックしてください apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,追加しませんでした +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0}は{2} {3}で{1}ポイントを獲得しました apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,割り当てられたメールアカウントがありません DocType: S3 Backup Settings,eu-west-2,東西2 DocType: Contact Us Settings,Contact Us Settings,お問い合わせの設定 @@ -884,6 +929,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,検索中 DocType: Workflow State,text-width,テキスト幅 apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,レコードの添付ファイルの最大制限値に到達しました apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ファイル名または拡張子で検索 +DocType: Onboarding Slide,Slide Title,スライドのタイトル DocType: Notification,View Properties (via Customize Form),ビュー属性(カスタマイズフォーム経由) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ファイルをクリックして選択します。 DocType: Note Seen By,Note Seen By,から見たノート @@ -910,13 +956,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,共有URL DocType: System Settings,Allow Consecutive Login Attempts ,連続ログイン試行を許可する apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,支払い処理中にエラーが発生しました。お問い合わせください。 +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,スライドタイプが作成または設定の場合、スライドの完了後に実行される{ref_doctype} .pyファイルに「create_onboarding_docs」メソッドがバインドされている必要があります。 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0}日前 DocType: Email Account,Awaiting Password,仮パスワード DocType: Address,Address Line 1,住所 1行目 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,の子孫ではない DocType: Contact,Company Name,(会社名) DocType: Custom DocPerm,Role,役割 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,設定... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,あなたのブラウザに apps/frappe/frappe/utils/data.py,Cent,セント ,Recorder,レコーダー @@ -976,6 +1022,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",受信者が電子メールを開いたかどうかを追跡します。
注:複数の受信者に送信する場合、1人の受信者が電子メールを読み取ったとしても、そのメールは「開封済み」とみなされます。 apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,欠損値が必要です apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google連絡先へのアクセスを許可する +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,制限あり DocType: Data Migration Connector,Frappe,フラッペ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,未読としてマーク DocType: Activity Log,Operation,作業 @@ -1028,6 +1075,7 @@ DocType: Web Form,Allow Print,印刷を許可する DocType: Communication,Clicked,クリック済 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,フォローを解除 apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},権限がありません '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,送信するスケジュール DocType: DocType,Track Seen,トラックは見ました DocType: Dropbox Settings,File Backup,ファイルバックアップ @@ -1036,12 +1084,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0}が見つ apps/frappe/frappe/config/customization.py,Add custom forms.,カスタムフォームを追加 apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}:{1} {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,この文書を提出 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザー権限 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,このシステムは、多くの事前定義された役割を提供しています。細かい権限を設定するための新しい役割を追加することができます。 DocType: Communication,CC,CC DocType: Country,Geo,地理 DocType: Data Migration Run,Trigger Name,トリガー名 -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ドメイン +DocType: Onboarding Slide,Domains,ドメイン DocType: Blog Category,Blog Category,ブログカテゴリー apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,次の条件に問題があるため配置できません: DocType: Role Permission for Page and Report,Roles HTML,役割HTML @@ -1081,7 +1128,6 @@ DocType: Assignment Rule Day,Saturday,土曜日 DocType: User,Represents a User in the system.,システム内のユーザーを表します。 DocType: List View Setting,Disable Auto Refresh,自動更新を無効にする DocType: Comment,Label,ラベル -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",{1}に割当されていたタスク{0}は、クローズされています apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,このウィンドウを閉じてください DocType: Print Format,Print Format Type,印刷書式タイプ DocType: Newsletter,A Lead with this Email Address should exist,このメールアドレスを持つリードが存在している必要があります @@ -1098,6 +1144,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,送信メール用のSM apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,選ぶ DocType: Data Export,Filter List,フィルタリスト DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH:mm DocType: Email Account,Auto Reply Message,自動返信メッセージ DocType: Data Migration Mapping,Condition,条件 apps/frappe/frappe/utils/data.py,{0} hours ago,{0}時間前 @@ -1116,12 +1163,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ナレッジベースコントリビューター DocType: Communication,Sent Read Receipt,送信された開封確認 DocType: Email Queue,Unsubscribe Method,配信停止方法 +DocType: Onboarding Slide,Add More Button,追加ボタン DocType: GSuite Templates,Related DocType,関連する文書タイプ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,コンテンツを追加して編集 apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,言語を選択 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,カードの詳細 apps/frappe/frappe/__init__.py,No permission for {0},{0} には許可がありません DocType: DocType,Advanced,高度な +DocType: Onboarding Slide,Slide Image Source,スライド画像ソース apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,APIキーまたはAPIシークレットが間違っているようです! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},参照:{0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,夫人 @@ -1138,6 +1187,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,マスタ DocType: DocType,User Cannot Create,ユーザーが作成できません。 apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,成功しました apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropboxのアクセスが承認されます! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,{0}を{1}とマージしてもよろしいですか? DocType: Customize Form,Enter Form Type,フォームタイプを入力してください DocType: Google Drive,Authorize Google Drive Access,Googleドライブアクセスを認証する apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,かんばんボード名にパラメータが不足 @@ -1147,7 +1197,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",文書タイプを許可(慎重に!) apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",印刷・電子メールのカスタマイズ形式 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}の合計 -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,新しいバージョンに更新 DocType: Custom Field,Depends On,依存関係 DocType: Kanban Board Column,Green,グリーン DocType: Custom DocPerm,Additional Permissions,追加のアクセス許可 @@ -1175,6 +1224,7 @@ DocType: Energy Point Log,Social,ソーシャル apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",Googleカレンダー-{0}のカレンダーを作成できませんでした、エラーコード{1}。 apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,行の編集 DocType: Workflow Action Master,Workflow Action Master,ワークフローアクションマスター +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,すべて削除 DocType: Custom Field,Field Type,フィールドタイプ apps/frappe/frappe/utils/data.py,only.,のみ。 DocType: Route History,Route History,ルート履歴 @@ -1210,12 +1260,14 @@ apps/frappe/frappe/www/login.html,Forgot Password?,パスワードをお忘れ DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,サーバーエラー +DocType: Server Script,After Delete,削除後 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,過去の報告をすべて見る。 apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ログインIDが必要です DocType: Website Slideshow,Website Slideshow,ウェブサイトのスライドショー apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,データがありません DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Webサイトホームページのリンク。 標準リンク(インデックス、ログイン、商品、ブログ、運営者、連絡先)" +DocType: Server Script,After Submit,送信後 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},メールアカウント{0}からのメールを受信中、認証に失敗しました。サーバーからのメッセージ:{1} DocType: User,Banner Image,バナー画像 DocType: Custom Field,Custom Field,カスタムフィールド @@ -1256,15 +1308,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",ユーザーがチェック任意の役割を持っている場合、ユーザは、「システム・ユーザー」になります。 「システム・ユーザーは、「デスクトップへのアクセス権を持っています DocType: System Settings,Date and Number Format,日付と番号の書式 apps/frappe/frappe/model/document.py,one of,一部 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,[設定]> [フォームのカスタマイズ] apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,一瞬の確認 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,ショータグ DocType: DocField,HTML Editor,HTMLエディタ 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,動作 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー +DocType: DocType,Actions,動作 DocType: Workflow State,align-justify,均等割付 DocType: User,Middle Name (Optional),ミドルネーム(任意) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,許可されていません @@ -1279,6 +1329,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,結果が DocType: System Settings,Security,セキュリティ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0}の受信者に送信するようにスケジュールしました apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,カット +DocType: Server Script,After Save,保存後 apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},{0}から{1}に名前を変更 apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1}の{0}(子を持つ{2}行) DocType: Currency,**Currency** Master,「通貨」マスター @@ -1305,15 +1356,18 @@ DocType: Prepared Report,Filter Values,フィルタ値 DocType: Communication,User Tags,ユーザータグ DocType: Data Migration Run,Fail,失敗 DocType: Workflow State,download-alt,ダウンロード-ALT +DocType: Scheduled Job Type,Last Execution,最終実行 DocType: Data Migration Run,Pull Failed,プル失敗 apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,カードの表示/非表示 DocType: Communication,Feedback Request,フィードバック依頼 apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excelファイルからデータをインポートする。 apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,次のフィールドが不足しています: +DocType: Notification Log,From User,ユーザーから apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0}をキャンセルしています DocType: Web Page,Main Section,メインセクション DocType: Page,Icon,アイコン apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",ヒント:パスワードに記号、数字、大文字を含める +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",メンション、割り当て、エネルギーポイントなどの通知を構成します。 DocType: DocField,Allow in Quick Entry,クイックエントリで許可する apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/yyyy @@ -1345,7 +1399,6 @@ DocType: Website Theme,Theme URL,テーマURL DocType: Customize Form,Sort Field,並べ替えフィールド DocType: Razorpay Settings,Razorpay Settings,Razorpay設定 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,フィルタ編集 -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,さらに追加 DocType: System Settings,Session Expiry Mobile,セッション有効期限(モバイル) apps/frappe/frappe/utils/password.py,Incorrect User or Password,不正なユーザーまたはパスワード apps/frappe/frappe/templates/includes/search_box.html,Search results for,検索結果 @@ -1361,8 +1414,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,エネルギーポイントルール DocType: Communication,Delayed,遅延 apps/frappe/frappe/config/settings.py,List of backups available for download,ダウンロード可能なバックアップのリスト +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,新しいデータインポートをお試しください apps/frappe/frappe/www/login.html,Sign up,サインアップ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,行{0}:無効にすることはできません標準フィールドには必須 +DocType: Webhook,Enable Security,セキュリティを有効にする apps/frappe/frappe/config/customization.py,Dashboards,ダッシュボード DocType: Test Runner,Output,出力 DocType: Milestone,Track Field,トラックフィールド @@ -1370,6 +1425,7 @@ DocType: Notification,Set Property After Alert,アラート後のプロパティ apps/frappe/frappe/config/customization.py,Add fields to forms.,フォームにフィールドを追加。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,このサイトのPaypal設定に何らかの問題があるようです。 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,レビューを追加 +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0}が新しいタスク{1} {2}をあなたに割り当てました apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),フォントサイズ(px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,標準のDocTypeだけがフォームのカスタマイズからカスタマイズできます。 DocType: Email Account,Sendgrid,Sendgrid @@ -1381,8 +1437,10 @@ DocType: Portal Menu Item,Portal Menu Item,ポータルメニューアイテム apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,フィルタを設定する DocType: Contact Us Settings,Email ID,メールアドレス DocType: Energy Point Rule,Multiplier Field,乗数フィールド +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay注文を作成できませんでした。管理者に連絡してください DocType: Dashboard Chart,Time Interval,時間間隔 DocType: Activity Log,Keep track of all update feeds,すべての更新フィードを追跡する +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0}はドキュメント{1} {2}をあなたと共有しました 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,クエリーオプション @@ -1401,6 +1459,7 @@ DocType: DefaultValue,Key,キー DocType: Address,Contacts,連絡先 DocType: System Settings,Setup Complete,セットアップ完了 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,すべての共有文書のレポート +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",インポートテンプレートは、.csv、.xlsx、または.xlsタイプである必要があります apps/frappe/frappe/www/update-password.html,New Password,新しいパスワード apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,フィルター{0}欠落 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,自動生成されたコメントを削除することはできません @@ -1416,6 +1475,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,実行 DocType: Blog Post,Content (HTML),コンテンツ(HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,セットアップ DocType: Personal Data Download Request,User Name,ユーザー名 DocType: Workflow State,minus-sign,マイナス記号 apps/frappe/frappe/public/js/frappe/request.js,Not Found,見つかりません @@ -1423,11 +1483,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0}の権限はありま apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,エクスポートカスタムアクセス許可 apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,項目は見つかりませんでした。 DocType: Data Export,Fields Multicheck,フィールドのマルチチェック +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{}完了 DocType: Activity Log,Login,ログイン DocType: Web Form,Payments,支払 apps/frappe/frappe/www/qrcode.html,Hi {0},こんにちは{0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Googleドライブの統合。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0}は{1} {2}でポイントを戻しました DocType: System Settings,Enable Scheduled Jobs,スケジュールされたジョブを有効にする apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,注: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,非アクティブ @@ -1452,6 +1512,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,一般 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,許可エラー apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0}の名前は{1}にすることはできません DocType: User Permission,Applicable For,適用可能なもの +DocType: Dashboard Chart,From Date,開始日 apps/frappe/frappe/core/doctype/version/version_view.html,Success,成功 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,セッションの有効期限が切れ DocType: Kanban Board Column,Kanban Board Column,かんばんボード列 @@ -1463,7 +1524,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,成 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,;条件に許可されていない DocType: Async Task,Async Task,非同期タスク DocType: Workflow State,picture,画像 -apps/frappe/frappe/www/complete_signup.html,Complete,完了 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,完了 DocType: DocType,Image Field,画像フィールド DocType: Print Format,Custom HTML Help,カスタムHTMLヘルプ DocType: LDAP Settings,Default Role on Creation,作成時のデフォルトの役割 @@ -1471,6 +1532,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,次の状態 DocType: User,Block Modules,ブロックモジュール DocType: Print Format,Custom CSS,カスタムCSS +DocType: Energy Point Rule,Apply Only Once,一度だけ適用 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,コメントを追加 DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},無視されます:{0} {1} @@ -1482,6 +1544,7 @@ DocType: Email Account,Default Incoming,デフォルト収益 DocType: Workflow State,repeat,繰り返し DocType: Website Settings,Banner,バナー apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},値は{0}のいずれかでなければなりません +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,すべてのドキュメントをキャンセル DocType: Role,"If disabled, this role will be removed from all users.",無効にした場合、この役割は全ユーザーから削除されます。 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0}リストに移動します apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,検索のヘルプ @@ -1490,6 +1553,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,登録さ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,この文書の自動繰り返しは無効になっています。 DocType: DocType,Hide Copy,コピーを非表示にする apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,すべての役割をクリア +DocType: Server Script,Before Save,保存する前に apps/frappe/frappe/model/base_document.py,{0} must be unique,{0}は重複出来ません apps/frappe/frappe/model/base_document.py,Row,行 apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template",CC、BCC&Emailテンプレート @@ -1500,7 +1564,6 @@ DocType: Chat Profile,Offline,オフライン apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0}が正常にインポートされました DocType: User,API Key,APIキー DocType: Email Account,Send unsubscribe message in email,電子メールでの登録解除メッセージを送ります -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,タイトル編集 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,このリンクフィールドのDocTypeになるフィールド名。 apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,自分で割当した文書 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,これをコピー&ペーストすることもできます @@ -1532,8 +1595,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,画像を添付 DocType: Workflow State,list-alt,リスト(別種) apps/frappe/frappe/www/update-password.html,Password Updated,パスワード更新 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザー権限 apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ログインの確認手順 apps/frappe/frappe/utils/password.py,Password not found,パスワードが見つかりません +DocType: Webhook,Webhook Secret,Webhookシークレット DocType: Data Migration Mapping,Page Length,ページの長さ DocType: Email Queue,Expose Recipients,受信者を公開 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,「追加先」はメール受信のために必須です @@ -1561,6 +1626,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,システム DocType: Web Form,Max Attachment Size (in MB),添付ファイル最大容量(MB単位) apps/frappe/frappe/www/login.html,Have an account? Login,アカウントをお持ちですか?ログイン +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,印刷設定... DocType: Workflow State,arrow-down,下矢印 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},行{0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ユーザーは{0}を削除できません:{1} @@ -1581,6 +1647,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,パスワ DocType: Dropbox Settings,Dropbox Access Secret,Dropboxのアクセスの秘密 DocType: Tag Link,Document Title,ドキュメントのタイトル apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必須) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 DocType: Social Login Key,Social Login Provider,ソーシャルログインプロバイダ apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,別のコメントを追加 apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ファイルにデータが見つかりません。新しいファイルをデータで再接続してください。 @@ -1595,11 +1662,12 @@ DocType: Workflow State,hand-down,手(下) apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",かんばん列として使用できるフィールドが見つかりませんでした。 [選択]フォームを使用して、 "選択"タイプのカスタムフィールドを追加します。 DocType: Address,GST State,GSTの状態 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}:提出せずにキャンセルを設定することはできません +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ユーザー({0}) DocType: Website Theme,Theme,テーマ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,認証コードにバインドされたURIをリダイレクト apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,ヘルプを開く DocType: DocType,Is Submittable,提出可能 -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,新しい言及 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,新しい言及 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,新しいGoogle連絡先が同期されていません。 DocType: File,Uploaded To Google Drive,Googleドライブにアップロードしました apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,チェックフィールドの値は0か1のどちらかです @@ -1611,7 +1679,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,受信トレイ DocType: Kanban Board Column,Red,レッド DocType: Workflow State,Tag,タグ -DocType: Custom Script,Script,スクリプト +DocType: Report,Script,スクリプト apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,文書を保存できませんでした。 DocType: Energy Point Rule,Maximum Points,最大ポイント apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,私の設定 @@ -1641,9 +1709,12 @@ DocType: Address,Haryana,ハリヤーナー州 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{1}の評価ポイント{0} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,役割は、ユーザーページからユーザーが設定することができます。 apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,コメント追加 +DocType: Dashboard Chart,Select Date Range,期間を選択 DocType: DocField,Mandatory,必須 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,モジュールがエクスポートします +DocType: Scheduled Job Type,Monthly Long,毎月 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}:基本的なアクセス権が設定されていません +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,{0}にメールを送信して、ここにリンクしてください apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",提出、キャンセル、修正の意味 apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,やることリスト @@ -1652,7 +1723,6 @@ DocType: Milestone Tracker,Track milestones for any document,あらゆる文書 DocType: Social Login Key,Identity Details,アイデンティティの詳細 apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},{0}から{1}へのワークフロー状態遷移は許可されていません apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ダッシュボードを表示 -apps/frappe/frappe/desk/form/assign_to.py,New Message,新しいメッセージ DocType: File,Preview HTML,プレビューHTML DocType: Desktop Icon,query-report,query-report DocType: Data Import Beta,Template Warnings,テンプレートの警告 @@ -1663,18 +1733,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,とリンク apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,自動メールレポートの設定を編集する DocType: Chat Room,Message Count,メッセージ数 DocType: Workflow State,book,本 +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1}は、提出された次のドキュメントにリンクされています:{2} DocType: Communication,Read by Recipient,受信者が読む DocType: Website Settings,Landing Page,ランディングページ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,カスタムスクリプトでエラーが発生しました apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0}の名前 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,この条件には権限が設定されていません。 DocType: Auto Email Report,Auto Email Report,自動メールレポート +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,新しいドキュメントの共有 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,コメントを削除しますか? DocType: Address Template,This format is used if country specific format is not found,国別の書式が無い場合は、この書式が使用されます DocType: System Settings,Allow Login using Mobile Number,携帯電話番号でのログインを許可する apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,このリソースにアクセスするための権限がありません。権限を得るためには管理者に連絡してください。 DocType: Custom Field,Custom,カスタム DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",有効にすると、制限付きIPアドレスからログインしたユーザーは、Two Factor Auth +DocType: Server Script,After Cancel,キャンセル後 DocType: Auto Repeat,Get Contacts,連絡先を取得する apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0}配下の投稿 apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,無題の列をスキップする @@ -1685,6 +1758,7 @@ DocType: User,Login After,ログイン後 DocType: Print Format,Monospace,等幅 DocType: Letter Head,Printing,印刷 DocType: Workflow State,thumbs-up,賛成 +DocType: Notification Log,Mention,言及 DocType: DocPerm,DocPerm,文書管理 DocType: Print Settings,Fonts,フォント apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,精度は1と6の間でなければなりません @@ -1692,7 +1766,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw:{0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,& apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},このレポートは{0} DocType: Error Snapshot,Frames,フレーム -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,割当 +DocType: Notification Log,Assignment,割当 DocType: Notification,Slack Channel,スラックチャンネル DocType: About Us Team Member,Image Link,画像リンク DocType: Auto Email Report,Report Filters,レポートフィルタ @@ -1709,7 +1783,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,イベントを更新することができません apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,確認コードが登録されたメールアドレスに送信されました。 apps/frappe/frappe/core/doctype/user/user.py,Throttled,抑えられた +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,あなたのターゲット apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",フィルタには4つの値(doctype、fieldname、operator、value)が必要です:{0} +apps/frappe/frappe/model/naming.py,No Name Specified for {0},{0}に名前が指定されていません apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,割り当てルールを適用 apps/frappe/frappe/utils/bot.py,show,表示 apps/frappe/frappe/utils/data.py,Invalid field name {0},無効なフィールド名{0} @@ -1719,7 +1795,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,データ移行計画マッピング apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappéを開始中... DocType: Web Form Field,Max Length,最大の長さ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1}の場合 DocType: Print Format,Jinja,ジンジャ DocType: Workflow State,map-marker,マップマーカー apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,課題を投稿 @@ -1755,6 +1830,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,ページが存在しま apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,レビュー DocType: DocType,Route,ルート apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay支払いゲートウェイの設定 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0}は{2} {3}で{1}ポイントを獲得しました apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,ドキュメントから添付されたイメージを取得する DocType: Chat Room,Name,名前 DocType: Contact Us Settings,Skype,Skype @@ -1765,7 +1841,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,リンクを apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,あなたの言語 DocType: Dashboard Chart,Average,平均 apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,行の追加 -DocType: Tag Category,Doctypes,文書タイプ apps/frappe/frappe/public/js/frappe/form/print.js,Printer,プリンター apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,質問は選択肢でなければなりません。 DocType: Auto Repeat,Completed,完了 @@ -1826,6 +1901,7 @@ DocType: GCalendar Account,Next Sync Token,次の同期トークン DocType: Energy Point Settings,Energy Point Settings,エネルギーポイント設定 DocType: Async Task,Succeeded,成功 apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0}に必要な必須フィールド +DocType: Onboarding Slide Field,Align,整列 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0}のアクセス権限をリセットしますか? apps/frappe/frappe/config/desktop.py,Users and Permissions,ユーザーと権限 DocType: S3 Backup Settings,S3 Backup Settings,S3バックアップ設定 @@ -1842,7 +1918,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,新しい印刷フォーマット名 apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,下のリンクをクリックしてリクエストを承認してください。 DocType: Workflow State,align-left,左寄せ +DocType: Onboarding Slide,Action Settings,アクション設定 DocType: User,Defaults,デフォルト +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",比較のために、> 5、<10または= 324を使用します。範囲の場合、5:10を使用します(5〜10の値の場合)。 DocType: Energy Point Log,Revert Of,元に戻す apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,既存のものとマージ DocType: User,Birth Date,生年月日 @@ -1897,6 +1975,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,値変更 DocType: Google Contacts,Authorize Google Contacts Access,Google連絡先へのアクセスを承認 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,レポートから数値フィールドのみを表示する +apps/frappe/frappe/utils/data.py,1 week ago,1週間前 DocType: Data Import Beta,Import Type,インポートタイプ DocType: Access Log,HTML Page,HTMLページ DocType: Address,Subsidiary,子会社 @@ -1906,7 +1985,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,レターヘッド付き apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,無効な送信メールサーバーまたはポート DocType: Custom DocPerm,Write,書き込む -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,クエリー/スクリプトレポートを作成することができるのは管理者だけです apps/frappe/frappe/public/js/frappe/form/save.js,Updating,更新 DocType: Data Import Beta,Preview,プレビュー apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",フィールド「値」が必須です。更新する値を指定してください @@ -1916,6 +1994,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,ユーザ DocType: Data Migration Run,Started,始めた apps/frappe/frappe/permissions.py,User {0} does not have access to this document,ユーザー{0}はこの文書にアクセスできません DocType: Data Migration Run,End Time,終了時間 +DocType: Dashboard Chart,Group By Based On,基づいてグループ化 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,添付ファイルを選択 apps/frappe/frappe/model/naming.py, for {0},{0}用 apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,この文書を印刷することが許可されていません。 @@ -1957,6 +2036,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,検証 DocType: Workflow Document State,Update Field,フィールド更新 DocType: Chat Profile,Enable Chat,チャットを有効にする DocType: LDAP Settings,Base Distinguished Name (DN),ベースDN +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,この会話を残します apps/frappe/frappe/model/base_document.py,Options not set for link field {0},リンクフィールド{0}に設定されていないオプション apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,キュー/ワーカー @@ -2024,12 +2104,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,この時点でログインは許可されていません。 DocType: Data Migration Run,Current Mapping Action,現在のマッピングアクション DocType: Dashboard Chart Source,Source Name,ソース名 -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ユーザーに関連付けられたメールアカウントはありません。 [ユーザー]> [メール受信ボックス]でアカウントを追加してください。 DocType: Email Account,Email Sync Option,メール同期オプション apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,行番号 DocType: Async Task,Runtime,実行時間 DocType: Post,Is Pinned,固定されている DocType: Contact Us Settings,Introduction,はじめに +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,助けが必要? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,グローバルに固定 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,に続く DocType: LDAP Settings,LDAP Email Field,LDAPメールフィールド @@ -2039,7 +2119,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,既にユ DocType: User Email,Enable Outgoing,送信を有効にする DocType: Address,Fax,FAX apps/frappe/frappe/config/customization.py,Custom Tags,カスタムタグ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください DocType: Comment,Submitted,提出済 DocType: Contact,Pulled from Google Contacts,Googleコンタクトから取得 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,無効なリクエスト @@ -2060,9 +2139,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ホーム/ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,自分に割当 DocType: DocField,Dynamic Link,動的リンク apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Altキーを押すと、メニューとサイドバーにショートカットが追加されます。 +DocType: Dashboard Chart,To Date,日付 DocType: List View Setting,List View Setting,リストビュー設定 apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,失敗したジョブ表示 -DocType: Event,Details,詳細 +DocType: Scheduled Job Log,Details,詳細 DocType: Property Setter,DocType or Field,文書タイプまたはフィールド apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,この文書のフォローを解除しました apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,原色 @@ -2070,7 +2150,6 @@ DocType: Communication,Soft-Bounced,送信失敗 DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",有効にすると、すべてのユーザーはTwo Factor Authを使用して任意のIPアドレスからログインできます。これは、ユーザーページの特定のユーザーに対してのみ設定することもできます apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,公開可能な鍵または秘密鍵が間違っているようです。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,権限設定のクイックヘルプ -DocType: Tag Doc Category,Doctype to Assign Tags,タグを割り当てるにはDOCTYPE apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,再発を表示 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,メールはゴミ箱に移動されました DocType: Report,Report Builder,レポートビルダ @@ -2085,6 +2164,7 @@ DocType: Workflow State,Upload,アップロード DocType: User Permission,Advanced Control,高度な制御 DocType: System Settings,Date Format,日付の表示形式 apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,公開されていません +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランディング]> [アドレステンプレート]から新しいものを作成してください。 apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",ワークフローのアクション(例:承認、キャンセル) DocType: Data Import,Skip rows with errors,エラーのある行をスキップする DocType: Workflow State,flag,フラグ @@ -2094,7 +2174,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ド apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,フィールドへジャンプ DocType: Contact Us Settings,Forward To Email Address,メールアドレスに転送 DocType: Contact Phone,Is Primary Phone,プライマリ電話です -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ここにリンクするには、{0}にEメールを送信してください。 DocType: Auto Email Report,Weekdays,平日 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0}レコードがエクスポートされます apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,タイトルフィールドは、有効なフィールド名である必要があります。 @@ -2102,7 +2181,7 @@ DocType: Post Comment,Post Comment,コメントを投稿 apps/frappe/frappe/config/core.py,Documents,文書 apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,アクティビティログ DocType: Social Login Key,Custom Base URL,カスタムベースURL -DocType: Email Flag Queue,Is Completed,完成されました +DocType: Onboarding Slide,Is Completed,完成されました apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,フィールドを取得する apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,プロフィール編集 DocType: Kanban Board Column,Archived,アーカイブ @@ -2113,11 +2192,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",ここで定義されたフィールド名が値を持っているかのルールが真(例)である場合にのみ、このフィールドが表示されます:myFieldでのeval:doc.myfield == 'マイ値'のeval:doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,今日 +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,今日 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",この設定によりユーザーはリンクのあるドキュメント(ブログ記事など)にアクセス可能となります(例:Blogger)。 DocType: Data Import Beta,Submit After Import,インポート後に送信 DocType: Error Log,Log of Scheduler Errors,スケジューラーのエラーログ DocType: User,Bio,自己紹介 +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,オンボーディングスライドヘルプリンク DocType: OAuth Client,App Client Secret,アプリのクライアントシークレット apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,提出 apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parentは、データが追加されるドキュメントの名前です。 @@ -2125,7 +2205,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,大文字 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,カスタムHTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,フォルダ名を入力 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランディング]> [アドレステンプレート]から新しいものを作成してください。 apps/frappe/frappe/auth.py,Unknown User,未知のユーザ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,役割を選択 DocType: Comment,Deleted,削除済 @@ -2141,7 +2220,7 @@ DocType: Chat Token,Chat Token,チャットトークン apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,グラフを作成 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,インポートしない -DocType: Web Page,Center,中央 +DocType: Onboarding Slide Field,Center,中央 DocType: Notification,Value To Be Set,設定する値 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0}を編集する apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,第1レベル @@ -2149,7 +2228,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,データベース名 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,フォームを更新 DocType: DocField,Select,選択 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,完全なログを表示 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,完全なログを表示 DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",単純なPython表現、例:status == 'Open'、type == 'Bug' apps/frappe/frappe/utils/csvutils.py,File not attached,ファイルが添付されていません apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,接続切断。一部の機能が動作しない可能性があります。 @@ -2181,6 +2260,7 @@ DocType: Web Page,HTML for header section. Optional,(任意)ヘッダー部 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,この機能は、ブランドの新しい、まだ実験的なものです apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,最大 {0} 行許容 DocType: Dashboard Chart Link,Chart,チャート +DocType: Scheduled Job Type,Cron,クロン DocType: Email Unsubscribe,Global Unsubscribe,グローバル配信停止 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,これは非常に一般的なパスワードです。 apps/frappe/frappe/email/doctype/email_group/email_group.js,View,表示 @@ -2197,6 +2277,7 @@ DocType: Data Migration Connector,Hostname,ホスト名 DocType: Data Migration Mapping,Condition Detail,条件の詳細 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",通貨{0}の場合、最小取引額は{1} DocType: DocField,Print Hide,印刷を隠す +DocType: System Settings,HH:mm:ss,HH:mm:ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ユーザーへ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,値を入力します DocType: Workflow State,tint,色調 @@ -2263,6 +2344,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ログイン apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,やることリストに追加 DocType: Footer Item,Company,会社 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0}の平均 +DocType: Scheduled Job Log,Scheduled,スケジュール設定済 DocType: User,Logout from all devices while changing Password,パスワードの変更中にすべてのデバイスからログアウトする apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,パスワード照合 apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,エラーが発生しました @@ -2288,7 +2370,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ユーザー権限は既に存在します apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},列{0}をフィールド{1}にマッピングしています apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ビュー{0} -DocType: User,Hourly,毎時 +DocType: Scheduled Job Type,Hourly,毎時 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuthクライアントアプリの登録 DocType: DocField,Fetch If Empty,空の場合は取得 DocType: Data Migration Connector,Authentication Credentials,認証資格情報 @@ -2299,10 +2381,10 @@ DocType: SMS Settings,SMS Gateway URL,SMSゲートウェイURL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} は""{2}""にすることはできません。""{3}""のいずれかでなければなりません" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},自動ルール{1}により{0}が獲得しました apps/frappe/frappe/utils/data.py,{0} or {1},{0}または{1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,準備は完了です! DocType: Workflow State,trash,ゴミ箱 DocType: System Settings,Older backups will be automatically deleted,古いバックアップは自動的に削除されます apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,無効なアクセスキーIDまたはシークレットアクセスキーです。 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,エネルギーポイントをいくつか失いました DocType: Post,Is Globally Pinned,グローバルに固定されていますか? apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,最近の活動 DocType: Workflow Transition,Conditions,条件 @@ -2311,6 +2393,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,確認済 DocType: Event,Ends on,終了 DocType: Payment Gateway,Gateway,ゲートウェイ DocType: LDAP Settings,Path to Server Certificate,サーバー証明書へのパス +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascriptがブラウザで無効になっています apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,リンクを表示する権限がありません apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,住所タイトルは必須です。 DocType: Google Contacts,Push to Google Contacts,Googleコンタクトにプッシュ @@ -2329,7 +2412,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",これをチェックすると、有効なデータを持つ行がインポートされ、後でインポートするために無効な行が新しいファイルにダンプされます。 apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,文書は、ユーザーの役割によってのみ編集可能となります -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",{1}に割当されていたタスク{0}は、{2}によってクローズされています DocType: Print Format,Show Line Breaks after Sections,セクションの後に表示する改行 DocType: Communication,Read by Recipient On,受信者で読む DocType: Blogger,Short Name,略名 @@ -2361,6 +2443,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,割 DocType: Translation,PR sent,PRが送信されました DocType: Auto Email Report,Only Send Records Updated in Last X Hours,直近のX時間内に更新されたレコードのみを送信 DocType: Communication,Feedback,フィードバック +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,新しいバージョンに更新🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,オープン翻訳 apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,このメールは自動的に生成されています DocType: Workflow State,Icon will appear on the button,アイコンがボタン上に表示されます @@ -2399,6 +2482,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,ページ DocType: DocField,Precision,精度 DocType: Website Slideshow,Slideshow Items,スライドショーアイテム apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,繰り返し単語や文字を避けるようにしてください +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,無効な通知 +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,すべての行を削除してもよろしいですか? DocType: Workflow Action,Workflow State,ワークフローの状態 apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,行が追加されました apps/frappe/frappe/www/list.py,My Account,自分のアカウント @@ -2407,6 +2492,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,後日 apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZトレイ接続がアクティブです。 DocType: Contact Us Settings,Settings for Contact Us Page,お問い合わせページ設定 +DocType: Server Script,Script Type,スクリプトタイプ DocType: Print Settings,Enable Print Server,プリントサーバーを有効にする apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0}週間前 DocType: Email Account,Footer,フッター @@ -2432,8 +2518,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,警告 apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,これは複数のページに印刷されるかもしれません DocType: Data Migration Run,Percent Complete,完了率 -DocType: Tag Category,Tag Category,カテゴリーにタグ付け -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",比較のために、> 5、<10または= 324を使用します。範囲の場合、5:10を使用します(5〜10の値の場合)。 DocType: Google Calendar,Pull from Google Calendar,Googleカレンダーから取得 apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,ヘルプ DocType: User,Login Before,ログイン前 @@ -2443,17 +2527,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,週末を隠す apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,定期的な文書を自動的に生成します。 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,あります +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,インフォサイン apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0}の値は、リストにすることはできません DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",この通貨はどのようなフォーマットにするべきですか?設定されていない場合は、システムデフォルトを使用します apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0}文書を提出しますか? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,バックアップにアクセスするには、ログインしていること、システムマネージャーの役割を持っていることが必要です +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZトレイアプリケーションへの接続エラー...

Raw印刷機能を使用するには、QZ Trayアプリケーションをインストールして実行する必要があります。

QZ Trayをダウンロードしてインストールするには、ここをクリックしてください
Raw印刷の詳細については、ここをクリックしてください 。" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,プリンタマッピング apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,添付する前に保存してください +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,すべてのリンクされたドキュメントをキャンセルしますか? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),追加された{0}({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},行{2}のフィールドタイプは{0}から{1}に変更することはできません apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,役割の権限 DocType: Help Article,Intermediate,中間体 +apps/frappe/frappe/config/settings.py,Email / Notifications,メール/通知 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0}が{1}を{2}に変更しました apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,取り消されたドキュメントが下書きとして復元されました DocType: Data Migration Run,Start Time,開始時間 @@ -2470,6 +2558,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,無効な受信者のアドレス DocType: Workflow State,step-forward,進む DocType: System Settings,Allow Login After Fail,失敗後にログインを許可する +DocType: DocType Link,DocType Link,DocTypeリンク DocType: Role Permission for Page and Report,Set Role For,役割を設定 DocType: GCalendar Account,The name that will appear in Google Calendar,Googleカレンダーに表示される名前 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0}のダイレクトルームは既に存在します。 @@ -2486,6 +2575,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},新しい DocType: Contact,Google Contacts,Googleの連絡先 DocType: GCalendar Account,GCalendar Account,GCalendarアカウント DocType: Email Rule,Is Spam,スパム +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,最終 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},レポート {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0}を開く DocType: Data Import Beta,Import Warnings,インポート警告 @@ -2497,6 +2587,7 @@ DocType: Workflow State,ok-sign,OKサイン apps/frappe/frappe/config/settings.py,Deleted Documents,削除されたドキュメント apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV形式は大文字と小文字を区別します apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,デスクトップアイコンは既に存在します +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,スライドを表示するすべてのドメインを指定します。何も指定されていない場合、スライドはデフォルトですべてのドメインに表示されます。 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,複製 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}のフィールド{1}はデフォルトで非表示にすることはできません必須 DocType: Newsletter,Create and Send Newsletters,ニュースレターの作成・送信 @@ -2507,6 +2598,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,GoogleカレンダーイベントID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",「親」は、この行を追加する必要のある親テーブルを意味します apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,レビューポイント: +DocType: Scheduled Job Log,Scheduled Job Log,スケジュールされたジョブログ +DocType: Server Script,Before Delete,削除する前に apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,共有済 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ファイル/ URLを添付してテーブルに追加します。 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,メッセージは設定されません @@ -2529,19 +2622,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,会社概要ページ設定 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ストライプ支払いゲートウェイの設定 apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,印刷プリンタに送信します。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,エネルギーポイント +DocType: Notification Settings,Energy Points,エネルギーポイント +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},時間{0}の形式は{1}でなければなりません DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,例:pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,鍵を生成する apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,これはあなたのデータを永久に削除します。 DocType: DocType,View Settings,設定表示 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,新しい通知 DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,リクエスト構造 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,コントローラーメソッドget_razorpay_orderがありません DocType: Personal Data Deletion Request,Pending Verification,保留中の確認 DocType: Website Meta Tag,Website Meta Tag,ウェブサイトメタタグ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",非標準ポート(587など)の場合Google Cloudの場合は、ポート2525をお試しください。 apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",公開されたページの過去の日付ではないため、終了日をクリアします。 DocType: User,Send Me A Copy of Outgoing Emails,送信メールのコピーを私に送ってください -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.,Google AnalyticsのIDを追加します(例:UA-89XXX57-1)。詳細については、Google Analyticsのヘルプを検索してください。 apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,パスワードは、100文字を超える長いことはできません DocType: OAuth Client,App Client ID,アプリのクライアントID @@ -2571,6 +2666,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,新しいパ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} がこの文書を{1}と共有 DocType: Website Settings,Brand Image,ブランド画像 DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,インポートテンプレートには、ヘッダーと少なくとも1行を含める必要があります。 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Googleカレンダーが設定されました。 apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",上部のナビゲーションバー・フッター・ロゴ設定 DocType: Web Form Field,Max Value,最大値 @@ -2580,6 +2676,7 @@ DocType: User Social Login,User Social Login,ユーザーソーシャルログ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0}は{1}に対する作業を{2}のポイントで批判しています DocType: Contact,All,すべて DocType: Email Queue,Recipient,受信者 +DocType: Webhook,Webhook Security,Webhookセキュリティ DocType: Communication,Has Attachment,添付ファイルあり DocType: Address,Sales User,販売ユーザー apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,印刷形式を構築しカスタマイズするためのドラッグ&ドロップツール @@ -2648,7 +2745,6 @@ DocType: Data Migration Mapping,Migration ID Field,移行IDフィールド DocType: Dashboard Chart,Last Synced On,最後に同期しました DocType: Comment,Comment Type,コメントタイプ DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0}は{1} {2}での作業を批判しました DocType: Assignment Rule,Users,ユーザー DocType: Address,Odisha,オリッサ州 DocType: Report,Report Type,レポートタイプ @@ -2673,14 +2769,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,ウェブサイトのス apps/frappe/frappe/model/workflow.py,Self approval is not allowed,自己承認は許可されていません DocType: GSuite Templates,Template ID,テンプレートID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,許可タイプ( {0} )と応答タイプ( {1} )の組み合わせは許可されていません -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0}からの新しいメッセージ DocType: Portal Settings,Default Role at Time of Signup,サインアップ時のデフォルト役割 DocType: DocType,Title Case,タイトルの大文字指定 apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,下のリンクをクリックしてデータをダウンロードしてください。 apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},ユーザー{0}のメール受信トレイを有効にしました DocType: Data Migration Run,Data Migration Run,データ移行の実行 DocType: Blog Post,Email Sent,メール送信済 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,年上の DocType: DocField,Ignore XSS Filter,XSSフィルターを無視 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,削除済 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropboxのバックアップの設定 @@ -2735,6 +2829,7 @@ DocType: Async Task,Queued,キュー追加済 DocType: Braintree Settings,Use Sandbox,サンドボックスを使用 apps/frappe/frappe/utils/goal.py,This month,今月 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新しいカスタム印刷フォーマット +DocType: Server Script,Before Save (Submitted Document),保存前(提出された文書) DocType: Custom DocPerm,Create,作成 apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,表示する項目がこれ以上ありません apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,前のレコードに移動 @@ -2791,6 +2886,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ゴミ箱に移動 DocType: Web Form,Web Form Fields,Webフォームフィールド DocType: Data Import,Amended From,修正元 +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,ユーザーがスライドに何を入力するかわからない場合に備えて、ヘルプビデオリンクを追加します。 apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},警告:{1}に関連するすべてのテーブルに{0}を見つけることができません。 DocType: S3 Backup Settings,eu-north-1,EU北1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,この文書では、現在の実行のためにキューイングされます。もう一度やり直してください @@ -2812,6 +2908,7 @@ DocType: Blog Post,Blog Post,ブログの投稿 DocType: Access Log,Export From,エクスポート元 apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,詳細検索 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ニュースレターを閲覧することはできません。 +DocType: Dashboard Chart,Group By,グループ化 DocType: User,Interests,興味 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,パスワードのリセット手順をメールで送信しました DocType: Energy Point Rule,Allot Points To Assigned Users,割り当てられたユーザーにポイントを割り当てる @@ -2827,6 +2924,7 @@ DocType: Assignment Rule,Assignment Rule,割り当て規則 apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},推奨ユーザ名:{0} DocType: Assignment Rule Day,Day,日 apps/frappe/frappe/public/js/frappe/desk.js,Modules,モジュール +DocType: DocField,Mandatory Depends On,必須の依存 apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,支払成功 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,{0}メールはありません DocType: OAuth Bearer Token,Revoked,失効 @@ -2834,6 +2932,7 @@ DocType: Web Page,Sidebar and Comments,サイドバーとコメント apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",キャンセル後に書類を修正・保存した場合、その書類には新規の番号が付与されます。 apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",{0}ドキュメントを添付することはできません。印刷設定で{0}の印刷を許可してください +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0}の文書を参照してください。 DocType: Stripe Settings,Publishable Key,公開可能なキー apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,インポートを開始する @@ -2847,13 +2946,13 @@ DocType: Currency,Fraction,分数 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Googleカレンダーと同期されたイベント。 DocType: LDAP Settings,LDAP First Name Field,LDAP名前フィールド DocType: Contact,Middle Name,ミドルネーム +DocType: DocField,Property Depends On,プロパティ依存 DocType: Custom Field,Field Description,フィールド説明 apps/frappe/frappe/model/naming.py,Name not set via Prompt,プロンプトから名前が設定されていません apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,メール受信トレイ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",{1}、{2}の{0}を更新しています DocType: Auto Email Report,Filters Display,フィルタの表示 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",修正を行うには、「amended_from」フィールドが存在する必要があります。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0}は{1} {2}での作業を高く評価しました apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,フィルタを保存 DocType: Address,Plant,プラント apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,全員に返信 @@ -2894,11 +2993,11 @@ DocType: Workflow State,folder-close,フォルダを閉じる apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,報告する: DocType: Print Settings,Print taxes with zero amount,金額ゼロの税金を印刷する apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0}の名前は変更できません +DocType: Server Script,Before Insert,挿入前 DocType: Custom Script,Custom Script,カスタムスクリプト DocType: Address,Address Line 2,住所2行目 DocType: Address,Reference,リファレンス apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,割当先 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,データ移行マッピングの詳細 DocType: Data Import,Action,アクション DocType: GSuite Settings,Script URL,スクリプトURL @@ -2924,11 +3023,13 @@ DocType: User,Api Access,APIアクセス DocType: DocField,In List View,リストビュー内 DocType: Email Account,Use TLS,TLSを使用 apps/frappe/frappe/email/smtp.py,Invalid login or password,無効なログインまたはパスワード +DocType: Scheduled Job Type,Weekly Long,ウィークリーロング apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,テンプレートのダウンロード apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,フォームへのカスタムJavaScriptを追加します。 ,Role Permissions Manager,役割権限マネージャー apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,新しい印刷形式の名前 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,サイドバーの切り替え +DocType: Server Script,After Save (Submitted Document),保存後(提出文書) DocType: Data Migration Run,Pull Insert,プルインサート DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ポイントに乗数値を乗算した後に許可される最大ポイント(注:制限がない場合、このフィールドを空のままにするか、0に設定します) @@ -2948,6 +3049,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ブログ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAPがインストールされていません apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,データをダウンロード apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1}の値を変更しました +DocType: Server Script,Before Cancel,キャンセルする前に DocType: Workflow State,hand-right,手(右) DocType: Website Settings,Subdomain,サブドメイン DocType: S3 Backup Settings,Region,地域 @@ -2993,12 +3095,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,以前のパスワー DocType: S3 Backup Settings,us-east-1,私たち東-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},投稿 {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",カラムを設定するには、クエリ内にカラムラベルを付与します +DocType: Onboarding Slide,Slide Fields,スライドフィールド DocType: Has Domain,Has Domain,ドメインあり DocType: User,Allowed In Mentions,言及で許可される apps/frappe/frappe/www/login.html,Don't have an account? Sign up,アカウントを持っていないのですか?サインアップ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,IDフィールドは削除できません apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}:提出可能になっていない場合は、割当の修正が設定できません DocType: Address,Bihar,ビハール州 +DocType: Notification Settings,Subscribed Documents,購読文書 apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,ユーザー設定 DocType: Report,Reference Report,レファレンスレポート DocType: Activity Log,Link DocType,リンク文書タイプ @@ -3016,6 +3120,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Googleカレンダー apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,あなたが探しているページがありません。それが移動またはリンクにタイプミスがあるされているので、これは可能性があります。 apps/frappe/frappe/www/404.html,Error Code: {0},エラーコード:{0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",一覧ページの説明(最大2行・140文字・プレーンテキストのみ) +DocType: Server Script,DocType Event,DocTypeイベント apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0}は必須フィールドです DocType: Workflow,Allow Self Approval,自己承認を許可する DocType: Event,Event Category,イベントカテゴリ @@ -3032,6 +3137,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,あなたの名前 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,接続成功 DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,スライドタイプ続行のオンボーディングスライドは既に存在します。 DocType: DocType,Default Sort Field,デフォルトのソートフィールド DocType: File,Is Folder,フォルダ DocType: Document Follow,DocType,文書タイプ @@ -3069,8 +3175,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,変更 DocType: Workflow State,arrow-up,上矢印 DocType: Dynamic Link,Link Document Type,リンクドキュメントタイプ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0}テーブルには少なくとも1行必要です +DocType: Server Script,Server Script,サーバースクリプト apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",自動繰り返しを設定するには、{0}から「自動繰り返しを許可する」を有効にします。 DocType: OAuth Bearer Token,Expires In,で有効期限 +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",フィールドのセットを繰り返す回数(例:スライドに3人の顧客が必要な場合、このフィールドを3に設定します。スライドでは最初のフィールドのセットのみが必須として表示されます) DocType: DocField,Allow on Submit,提出を許可 DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,例外タイプ @@ -3080,6 +3188,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,ヘッダー apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,今後のイベント apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,App Access KeyとApp Secret Keyを入力してください +DocType: Email Account,Append Emails to Sent Folder,メールを送信済みフォルダーに追加 DocType: Web Form,Accept Payment,支払承認 apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,リスト項目を選択 apps/frappe/frappe/config/core.py,A log of request errors,リクエストエラーのログ @@ -3098,7 +3207,7 @@ DocType: Translation,Contributed,寄稿 apps/frappe/frappe/config/customization.py,Form Customization,フォームのカスタマイズ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,アクティブなセッションがありません DocType: Web Form,Route to Success Link,成功リンクへの経路 -DocType: Top Bar Item,Right,右 +DocType: Onboarding Slide Field,Right,右 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,今後のイベントはありません DocType: User,User Type,ユーザー タイプ DocType: Prepared Report,Ref Report DocType,RefレポートDocType @@ -3116,6 +3225,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,もう一度や apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URLは「http://」または「https://」で始まる必要があります apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,オプション3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,これは、元に戻すことはできません DocType: Workflow State,Edit,編集 DocType: Website Settings,Chat Operators,チャットオペレータ DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3127,7 +3237,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,この書式に保存されていない変更事項があります。継続する前に、保存してください。 DocType: Address,Telangana,テランガーナ州 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0}のデフォルトはオプションでなければなりません -DocType: Tag Doc Category,Tag Doc Category,文書カテゴリーにタグ付け apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,横モードでは、10列以上のレポートが見やすくなります。 apps/frappe/frappe/database/database.py,Invalid field name: {0},無効なフィールド名:{0} DocType: Milestone,Milestone,マイルストーン @@ -3136,7 +3245,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0}に移動しま apps/frappe/frappe/email/queue.py,Emails are muted,メールはミュートされました apps/frappe/frappe/config/integrations.py,Google Services,Googleサービス apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl+↑ -apps/frappe/frappe/utils/data.py,1 weeks ago,1週間前 +DocType: Onboarding Slide,Slide Description,スライドの説明 DocType: Communication,Error,エラー apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,最初にメッセージを設定してください DocType: Auto Repeat,End Date,終了日 @@ -3157,10 +3266,12 @@ DocType: Footer Item,Group Label,グループ・ラベル DocType: Kanban Board,Kanban Board,かんばんボード apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google連絡先が設定されました。 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1レコードがエクスポートされます +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ユーザーに関連付けられたメールアカウントはありません。 [ユーザー]> [メール受信ボックス]でアカウントを追加してください。 DocType: DocField,Report Hide,レポート非表示 apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0}のツリービューは利用できません DocType: DocType,Restrict To Domain,ドメインに制限する DocType: Domain,Domain,ドメイン +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,無効なファイルURL。システム管理者に連絡してください。 DocType: Custom Field,Label Help,ラベルのヘルプ DocType: Workflow State,star-empty,星(空白) apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,日付は、多くの場合、推測するのは簡単です。 @@ -3185,6 +3296,7 @@ DocType: Workflow State,hand-left,手(左) DocType: Data Import,If you are updating/overwriting already created records.,既に作成されたレコードを更新/上書きする場合。 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,グローバル DocType: Email Account,Use SSL,SSLを使用 +DocType: Webhook,HOOK-.####,針-。#### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,文書を正しく割り当てることができませんでした apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",無効な「depends_on」式 @@ -3201,6 +3313,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,最終更新 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,伝票タイプ DocType: Workflow State,arrow-right,右矢印 +DocType: Server Script,API Method,APIメソッド DocType: Workflow State,Workflow state represents the current state of a document.,ワークフローの状態は、書類の現在の状態を表します DocType: Letter Head,Letter Head Based On,に基づくレターヘッド apps/frappe/frappe/utils/oauth.py,Token is missing,トークンがありません @@ -3240,6 +3353,7 @@ DocType: Comment,Relinked,再リンク DocType: Print Settings,Compact Item Print,コンパクトな項目を印刷 DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,リダイレクトURL +DocType: Onboarding Slide Field,Placeholder,プレースホルダー DocType: SMS Settings,Enter url parameter for receiver nos,受信者番号にURLパラメータを入力してください DocType: Chat Profile,Online,オンライン DocType: Email Account,Always use Account's Name as Sender's Name,送信者の名前として常にアカウントの名前を使用する @@ -3249,7 +3363,6 @@ DocType: Workflow State,Home,ホーム DocType: OAuth Provider Settings,Auto,オート DocType: System Settings,User can login using Email id or User Name,ユーザーは電子メールIDまたはユーザー名を使用してログインできます DocType: Workflow State,question-sign,質問記号 -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0}は無効です apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ウェブビューでは「経路」フィールドは必須です apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0}の前に列を挿入する DocType: Energy Point Rule,The user from this field will be rewarded points,このフィールドのユーザーにはポイントが与えられます @@ -3274,6 +3387,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,所有者の場合 DocType: Data Migration Mapping,Push,プッシュ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ここにファイルをドロップします DocType: OAuth Authorization Code,Expiration time,呼気時間 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,ドキュメントを開く DocType: Web Page,Website Sidebar,ウェブサイトのサイドバー DocType: Web Form,Show Sidebar,サイドバー表示 apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,この {0} にアクセスするにはログインする必要があります @@ -3289,6 +3403,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,グローバ DocType: Desktop Icon,Page,ページ apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},{1}に{0}が見つかりませんでした apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,姓・名自体が推測容易です。 +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},ドキュメントの名前が{0}から{1}に変更されました apps/frappe/frappe/config/website.py,Knowledge Base,ナレッジベース DocType: Workflow State,briefcase,書類鞄 apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0}の値は変更することはできません。 @@ -3325,6 +3440,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,印刷書式 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,グリッド表示の切り替え apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,次のレコードに進む +DocType: System Settings,Time Format,時間の形式 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,無効な支払いゲートウェイの資格情報 DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,これは、何らかのエラーを持つ行だけで生成されたテンプレートファイルです。このファイルを修正およびインポートに使用する必要があります。 apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,書類タイプと役割にアクセス許可を設定 @@ -3367,12 +3483,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,返信 apps/frappe/frappe/config/core.py,Pages in Desk (place holders),デスクにあるページ(プレースホルダ) DocType: DocField,Collapsible Depends On,折り畳み依存関係 DocType: Print Style,Print Style Name,印刷スタイル名 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,グループ化フィールドは、ダッシュボードチャートを作成するために必要です DocType: Print Settings,Allow page break inside tables,表内での改ページを許可する DocType: Email Account,SMTP Server,SMTPサーバー DocType: Print Format,Print Format Help,印刷書式ヘルプ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0}部屋には、最大で1人のユーザーがいる必要があります。 DocType: DocType,Beta,ベータ DocType: Dashboard Chart,Count,カウント +DocType: Dashboard Chart,Group By Type,タイプ別グループ apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},新しいコメント{0}:{1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} を {1} として復元 apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",更新した場合、「上書き」を選択してください。他の既存の行は削除されません。 @@ -3383,14 +3501,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ユーザ DocType: Web Form,Web Form,ウェブフォーム apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},日付{0}は書式:{1}でなければなりません DocType: About Us Settings,Org History Heading,沿革見出し +DocType: Scheduled Job Type,Scheduled Job Type,スケジュールされたジョブタイプ DocType: Print Settings,Allow Print for Cancelled,キャンセル済みの印刷を許可 DocType: Communication,Integrations can use this field to set email delivery status,統合では、メール配信のステータスを設定するために、このフィールドを使用することができます +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,すべてのリンクされたドキュメントをキャンセルする権限がありません。 DocType: Web Form,Web Page Link Text,Webページのリンクテキスト DocType: Page,System Page,システムページ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",デフォルト書式、ページサイズ、印刷スタイル等を設定 apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0}のカスタマイズをエクスポートしました:
{1} DocType: Website Settings,Include Search in Top Bar,トップバーに検索欄を含む +DocType: Scheduled Job Type,Daily Long,デイリーロング DocType: GSuite Settings,Allow GSuite access,GSuiteアクセスを許可する DocType: DocType,DESC,DESC DocType: DocType,Naming,命名 @@ -3493,6 +3614,7 @@ DocType: Notification,Send days before or after the reference date,基準日の DocType: User,Allow user to login only after this hour (0-24),(0-24)以降の時間のみユーザーログインを許可 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",順番に1つずつ割り当てる DocType: Integration Request,Subscription Notification,購読通知 +DocType: Customize Form Field, Allow in Quick Entry ,クイックエントリで許可 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,または添付 DocType: Auto Repeat,Start Date,開始日 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,値 @@ -3507,6 +3629,7 @@ DocType: Google Drive,Backup Folder ID,バックアップフォルダID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,開発者モードではありません!site_config.jsonを設定するか「カスタム」文書タイプを作成してください DocType: Workflow State,globe,地球 DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ビデオ DocType: Assignment Rule,Priority,優先度 DocType: Email Queue,Unsubscribe Param,配信停止パラメータ DocType: DocType,Hide Sidebar and Menu,サイドバーとメニューを隠す @@ -3518,6 +3641,7 @@ DocType: DocType,Allow Import (via Data Import Tool),インポートを許可す apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,小数 DocType: Print Settings,Page Settings,ページ設定 +DocType: Notification Settings,Notification Settings,通知設定 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,保存中... apps/frappe/frappe/www/update-password.html,Invalid Password,無効なパスワード apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1}から{0}レコードを正常にインポートしました。 @@ -3533,6 +3657,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail DocType: Letter Head,Letter Head Image,レターヘッド画像 DocType: Address,Party GSTIN,当事者GSTIN +DocType: Scheduled Job Type,Cron Format,cron形式 apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0}レポート DocType: SMS Settings,Use POST,POSTを使用する DocType: Communication,SMS,SMS @@ -3577,18 +3702,20 @@ DocType: Workflow,Allow approval for creator of the document,文書作成者の apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,レポートを保存 DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,APIエンドポイント引数 +DocType: DocType Action,Server Action,サーバーアクション apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,管理者がIPアドレス{2}から{1}の{0}にアクセスしました。 apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,親フィールドは有効なフィールド名でなければなりません apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,定期購入の変更中に失敗しました DocType: LDAP Settings,LDAP Group Field,LDAPグループフィールド +DocType: Notification Subscribed Document,Notification Subscribed Document,通知購読文書 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,= apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,無効なCSV形式 -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZトレイアプリケーションへの接続エラー...

Raw印刷機能を使用するには、QZ Trayアプリケーションをインストールして実行する必要があります。

QZ Trayをダウンロードしてインストールするには、ここをクリックしてください
Raw印刷の詳細については、ここをクリックしてください 。" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,バックアップのセット番号 DocType: DocField,Do not allow user to change after set the first time,初回設定以降、ユーザーが変更することはできません apps/frappe/frappe/utils/data.py,1 year ago,1年前 +DocType: DocType,Links Section,リンクセクション apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",すべての印刷、ダウンロード、エクスポートイベントのログを表示 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1ヶ月 DocType: Contact,Contact,連絡先 @@ -3615,16 +3742,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,新しいメール DocType: Custom DocPerm,Export,エクスポート apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Googleカレンダーを使用するには、{0}を有効にします。 +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},ステータス依存フィールド{0}も追加しています +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0}を更新しました apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZトレイが失敗しました: DocType: Dropbox Settings,Dropbox Settings,Dropboxの設定 DocType: About Us Settings,More content for the bottom of the page.,より多くのコンテンツがページ下部にあります。 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,この文書は元に戻されました apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Googleドライブのバックアップに成功しました。 +DocType: Webhook,Naming Series,シリーズ名を付ける DocType: Workflow,DocType on which this Workflow is applicable.,このワークフローには文書タイプが適用可能です DocType: User,Enabled,有効 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,セットアップを完了できませんでした apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},新しい{0}:{1} -DocType: Tag Category,Category Name,カテゴリ名 +DocType: Blog Category,Category Name,カテゴリ名 apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,子テーブルデータを取得するには親が必要です apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,登録者インポート DocType: Print Settings,PDF Settings,PDF設定 @@ -3660,6 +3790,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,カレンダー apps/frappe/frappe/client.py,No document found for given filters,指定されたフィルタでドキュメントが見つかりません apps/frappe/frappe/config/website.py,A user who posts blogs.,ブログを投稿したユーザー。 +DocType: DocType Action,DocType Action,DocTypeアクション apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",{1} という名前の別の {0} が存在しますので、別の名前を選択してください DocType: DocType,Custom?,カスタム? DocType: Website Settings,Website Theme Image,ウェブサイトのテーマ画像 @@ -3669,6 +3800,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},{0}がロ apps/frappe/frappe/config/integrations.py,Backup,バックアップ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ダッシュボードチャートを作成するにはドキュメントタイプが必要です DocType: DocField,Read Only,読み取り専用 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,razorpay注文を作成できませんでした apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,新しいニュースレター DocType: Energy Point Log,Energy Point Log,エネルギーポイントログ DocType: Print Settings,Send Print as PDF,PDFで書類を送信 @@ -3694,16 +3826,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,メ apps/frappe/frappe/www/login.html,Or login with,またはでログイン DocType: Error Snapshot,Locals,ローカル apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},介して通信{0} {1}:{2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} が {1} へのコメントであなたを話題にしています apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,グループ化を選択... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例:(55 + 434) / 4 または =Math.sin(Math.PI/2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}が必要です DocType: Integration Request,Integration Type,統合型 DocType: Newsletter,Send Attachements,添付を送信 +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,フィルターが見つかりません apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Googleの連絡先の統合。 DocType: Transaction Log,Transaction Log,トランザクションログ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),先月のパフォーマンスに基づく統計情報({0}から{1}まで) DocType: Contact Us Settings,City,都市 +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,すべてのユーザーに対してカードを非表示 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,カスタマイズフォームでDoctype {0}の自動繰り返しを許可を有効にします DocType: DocField,Perm Level,権限レベル apps/frappe/frappe/www/confirm_workflow_action.html,View document,ドキュメントを表示する @@ -3714,6 +3847,7 @@ DocType: Blog Category,Blogger,ブロガー DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline",有効にすると、ドキュメントへの変更が追跡され、タイムラインに表示されます。 apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},行{1}の{0}型に対して 'グローバル検索中'が許可されていません DocType: Energy Point Log,Appreciation,感謝 +DocType: Dashboard Chart,Number of Groups,グループ数 apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,リスト表示 DocType: Workflow,Don't Override Status,ステータスを上書きしないでください apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,検索語 @@ -3755,7 +3889,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-北西-1 DocType: Dropbox Settings,Limit Number of DB Backups,DBバックアップの数を制限する DocType: Custom DocPerm,Level,レベル -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,過去30日間 DocType: Custom DocPerm,Report,レポート apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,量は0より大きくなければなりません。 apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZトレイに接続しました! @@ -3772,6 +3905,7 @@ DocType: S3 Backup Settings,us-west-2,私たち西2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,子テーブルを選択 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,プライマリアクションをトリガする apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,変更 +DocType: Social Login Key,User ID Property,ユーザーIDプロパティ DocType: Email Domain,domain name,ドメイン名 DocType: Contact Email,Contact Email,連絡先 メール DocType: Kanban Board Column,Order,注文 @@ -3794,7 +3928,7 @@ DocType: Contact,Last Name,お名前(姓) DocType: Event,Private,個人 apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,今日のアラートはありません DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),書類をPDFでメールに添付して送信(推奨) -DocType: Web Page,Left,退職 +DocType: Onboarding Slide Field,Left,退職 DocType: Event,All Day,一日中 apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,何かが、このサイトの決済ゲートウェイの設定に問題があるように見えます。ご入金がなされていません。 DocType: GCalendar Settings,State,状態 @@ -3826,7 +3960,6 @@ DocType: Workflow State,User,ユーザー DocType: Website Settings,"Show title in browser window as ""Prefix - title""",「接頭辞 - タイトル」のようにブラウザでタイトルを表示 DocType: Payment Gateway,Gateway Settings,ゲートウェイ設定 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,文書タイプのテキスト -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,テスト実行 apps/frappe/frappe/handler.py,Logged Out,ログアウト apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,もっと... DocType: System Settings,User can login using Email id or Mobile number,ユーザーは、電子メールIDまたは携帯電話番号を使用してログインできます @@ -3842,6 +3975,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,概要 DocType: Event,Event Participants,イベント参加者 DocType: Auto Repeat,Frequency,周波数 +DocType: Onboarding Slide,Slide Order,スライド注文 DocType: Custom Field,Insert After,後に挿入 DocType: Event,Sync with Google Calendar,Googleカレンダーと同期 DocType: Access Log,Report Name,レポート名 @@ -3869,6 +4003,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},行{0}の通貨表記の最大幅は100pxです apps/frappe/frappe/config/website.py,Content web page.,コンテンツのWebページ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,新しい役割の追加 +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Webページにアクセス +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,新しい課題 DocType: Google Contacts,Last Sync On,最後の同期オン DocType: Deleted Document,Deleted Document,削除された文書 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,問題が起きました @@ -3879,7 +4015,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景観 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,JavaScriptのクライアントサイドスクリプト拡張子 DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,次のdoctypeのレコードはフィルタリングされます -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,スケジューラー非アクティブ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,スケジューラー非アクティブ DocType: Blog Settings,Blog Introduction,ブログの紹介 DocType: Global Search Settings,Search Priorities,検索の優先順位 DocType: Address,Office,事務所 @@ -3889,12 +4025,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ダッシュボードチャ DocType: User,Email Settings,メール設定 apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ここにドロップ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",有効になっている場合、ユーザーはTwo Factor認証を使用して任意のIPアドレスからログインできます。これは、システム設定ですべてのユーザーに対して設定することもできます。 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,プリンタ設定... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,続行するパスワードを入力してください apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,私 apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0}は有効ではありません apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,すべての文書タイプに適用 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,エネルギーポイントの更新 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,エネルギーポイントの更新 +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),非アクティブ(日)の場合にのみジョブを毎日実行する apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',他のお支払方法を選択してください。 PayPalは通貨「{0}」での取引をサポートしていません DocType: Chat Message,Room Type,ルームタイプ DocType: Data Import Beta,Import Log Preview,インポートログプレビュー @@ -3903,6 +4039,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OKマーク DocType: LDAP Settings,LDAP User Creation and Mapping,LDAPユーザーの作成とマッピング apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',「顧客の中からオレンジ色を検索」と質問することで検索することができます +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,今日のイベント apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,ユーザーは、自分のレコードへの完全なアクセス権限を持っている必要があります ,Usage Info,使用法情報 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,キーボードショートカットを表示 @@ -3919,6 +4056,7 @@ DocType: DocField,Unique,ユニーク apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} {1}に感謝 apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,部分的な成功 DocType: Email Account,Service,サービス +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー DocType: File,File Name,ファイル名 apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0}({1})により{0}が見つかりませんでした apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},結果:{0} @@ -3932,6 +4070,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,登録 DocType: GCalendar Settings,Enable,有効にする DocType: Google Maps Settings,Home Address,自宅住所 apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),1回につき5000件までアップロードすることができます。 +DocType: Report,"output in the form of `data = [columns, result]`",`data = [columns、result]`の形式で出力 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,適用文書タイプ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ユーザー割り当てのルールを設定します。 apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}のアクセス権が不十分です @@ -3947,7 +4086,6 @@ DocType: Communication,To and CC,To・CC DocType: SMS Settings,Static Parameters,静的パラメータ DocType: Chat Message,Room,教室 apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0}に更新 -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,バックグラウンドジョブは実行されていません。管理者に連絡してください DocType: Portal Settings,Custom Menu Items,カスタムメニュー項目 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ウェブサイトのスライドショーに添付されているすべての画像は公開する必要があります DocType: Workflow State,chevron-right,山カッコ(右) @@ -3962,11 +4100,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0}個の値が選択されました DocType: DocType,Allow Auto Repeat,自動繰り返しを許可 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,表示する値がありません +DocType: DocType,URL for documentation or help,ドキュメントまたはヘルプのURL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,メールテンプレート apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0}レコードを更新しました。 apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ユーザー{0}には、文書{1}のロール許可によるDoctypeアクセス権がありません apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ログインとパスワードの両方が必要 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Let \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,最新の書類を取得するために更新してください DocType: User,Security Settings,セキュリティ設定 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,列の追加 @@ -3976,6 +4116,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,メタをフィルタリング apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},添付の{0}を見つけてください:{1} DocType: Web Page,Set Meta Tags,メタタグを設定する +DocType: Email Account,Use SSL for Outgoing,発信にSSLを使用する 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: S3 Backup Settings,Backup Limit,バックアップ制限 DocType: Dashboard Chart,Line,ライン @@ -4008,4 +4149,3 @@ DocType: DocField,Ignore User Permissions,ユーザー権限を無視 apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,正常に保存 apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,あなたのサインアップを検証するために、管理者にお問い合わせください DocType: Domain Settings,Active Domains,アクティブドメイン -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,ログ表示 diff --git a/frappe/translations/km.csv b/frappe/translations/km.csv index 2022175eb0..91a66b4d71 100644 --- a/frappe/translations/km.csv +++ b/frappe/translations/km.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,សូមជ្រើសវាលចំនួនទឹកប្រាក់។ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,កំពុងផ្ទុកឯកសារនាំចូល ... DocType: Assignment Rule,Last User,អ្នកប្រើប្រាស់ចុងក្រោយ។ -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ការភារកិច្ចថ្មី, {0} ត្រូវបានផ្ដល់ទៅអ្នកដោយ {1} ។ {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,បានរក្សាទុកលំនាំដើមវេន។ apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ផ្ទុកឯកសារឡើងវិញ។ DocType: Email Queue,Email Queue records.,កំណត់ត្រាជួរអ៊ីម៉ែល។ @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,ដើមឈើ { DocType: User,User Emails,អ៊ីមែលរបស់អ្នកប្រើ DocType: User,Username,ឈ្មោះអ្នកប្រើ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,នាំចូលហ្ស៊ីប +DocType: Scheduled Job Type,Create Log,បង្កើតកំណត់ហេតុ apps/frappe/frappe/model/base_document.py,Value too big,តម្លៃធំពេក DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,រត់ការសាកល្បងស្គ្រីប @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,ប្រចាំខែ DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,អនុញ្ញាតការចូល apps/frappe/frappe/core/doctype/version/version_view.html,Danger,គ្រោះថ្នាក់ -DocType: Address,Email Address,អាសយដ្ឋានអ៊ីម៉ែល +apps/frappe/frappe/www/login.py,Email Address,អាសយដ្ឋានអ៊ីម៉ែល DocType: Workflow State,th-large,ទីធំ DocType: Communication,Unread Notification Sent,ការជូនដំណឹងដែលមិនទាន់អានបានផ្ញើ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ការនាំចេញមិនត្រូវបានអនុញ្ញាត។ អ្នកត្រូវការ {0} តួនាទីក្នុងការនាំចេញ។ @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ប DocType: DocType,Is Published Field,ត្រូវបានចេញផ្សាយនៅវាល DocType: GCalendar Settings,GCalendar Settings,ការកំណត់ GCalendar DocType: Email Group,Email Group,គ្រុបអ៊ីម៉ែល +apps/frappe/frappe/__init__.py,Only for {},សម្រាប់តែ {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google ប្រតិទិន - មិនអាចលុបព្រឹត្តិការណ៍ {0} ពីប្រតិទិនហ្គូហ្កលកូដកំហុស {1} បានទេ។ DocType: Event,Pulled from Google Calendar,ទាញចេញពី Google ប្រតិទិន។ DocType: Note,Seen By,បានឃើញដោយ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,បន្ថែមច្រើន -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,អ្នកទទួលបានចំណុចថាមពលខ្លះ។ apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,មិនមែនជារូបភាពអ្នកប្រើត្រឹមត្រូវ។ DocType: Energy Point Log,Reverted,បានត្រឡប់។ DocType: Success Action,First Success Message,សារជោគជ័យដំបូង @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,មិនច apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},តម្លៃមិនត្រឹមត្រូវ: {0} ត្រូវតែ {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","លក្ខណៈសម្បត្តិនៃការផ្លាស់ប្តូរវាល (លាក់, បានតែអាន, ការអនុញ្ញាតល)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,កោតសរសើរ។ +DocType: Notification Settings,Document Share,ចែករំលែកឯកសារ DocType: Workflow State,lock,ចាក់សោរ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ការកំណត់សម្រាប់ទំនាក់ទំនងយើងខ្ញុំទំព័រ។ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,អ្នកគ្រប់គ្រងចូលទេ @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",ប្រសិនបើបានបើកឯកសារត្រូវបានសម្គាល់ដូចដែលបានឃើញជាលើកដំបូងដែលអ្នកប្រើបើកវា។ DocType: Auto Repeat,Repeat on Day,ធ្វើម្តងទៀតនៅថ្ងៃ DocType: DocField,Color,ពណ៌ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,សម្គាល់ទាំងអស់ថាអាន DocType: Data Migration Run,Log,កំណត់ហេតុ DocType: Workflow State,indent-right,ចូលបន្ទាត់ស្តាំ DocType: Has Role,Has Role,មានតួនាទី @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,បង្ហាញ Traceback ។ DocType: DocType,Default Print Format,ទ្រង់ទ្រាយបោះពុម្ពលំនាំដើម DocType: Workflow State,Tags,ស្លាក +DocType: Onboarding Slide,Slide Type,ប្រភេទស្លាយ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,គ្មាន: ការបញ្ចប់នៃលំហូរការងារ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} វាលមិនអាចត្រូវបានកំណត់ជាតែមួយគត់នៅ {1}, ដូចជាមានតម្លៃតែមួយគត់ដែលមិនមែនជាដែលមានស្រាប់" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ប្រភេទឯកសារ @@ -135,7 +138,6 @@ DocType: Language,Guest,អ្នកទស្សនា DocType: DocType,Title Field,ចំណងជើងវាល DocType: Error Log,Error Log,កំហុសក្នុងការចូល apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL មិនត្រឹមត្រូវ។ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,៧ ថ្ងៃចុងក្រោយ apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",ម្តងទៀតដូចជា "abcabcabc" ត្រូវបានតែបន្តិចពិបាកក្នុងការទាយជាង "ABC" DocType: Notification,Channel,ឆានែល apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","បើអ្នកគិតថានេះគឺជាការគ្មានការអនុញ្ញាត, សូមផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នកគ្រប់គ្រង។" @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,ម៉ាស៊ីនភ្ញៀវ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,ជ្រើសជួរឈរ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,សំណុំបែបបទនេះត្រូវបានកែប្រែបន្ទាប់ពីអ្នកបានផ្ទុកវា DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,កំណត់ហេតុជូនដំណឹង DocType: System Settings,"If not set, the currency precision will depend on number format",ប្រសិនបើមិនបានកំណត់ភាពជាក់លាក់រូបិយប័ណ្ណនឹងពឹងផ្អែកលើទ្រង់ទ្រាយលេខ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,បើក Aw Awbar ។ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",វាហាក់បីដូចជាមានបញ្ហាជាមួយការកំណត់រចនាសម្ព័ន្ធឆ្នូតរបស់ម៉ាស៊ីនមេ។ ក្នុងករណីមានការខកខានចំនួនទឹកប្រាក់នឹងត្រូវបានសងប្រាក់វិញទៅក្នុងគណនីរបស់អ្នក។ @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ផ្ញើ DocType: Workflow Action Master,Workflow Action Name,ឈ្មោះសកម្មភាពលំហូរការងារ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,ចង្អុលបង្ហាញនេះមិនអាចត្រូវបានបញ្ចូលគ្នា -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,មិនមែនជាឯកសារ zip មួយ DocType: Global Search DocType,Global Search DocType,ការស្វែងរកប្រភេទឯកសារសកល។ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,អ៊ីម៉ែល? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,បិទបើកគំនូសតាង apps/frappe/frappe/desk/form/save.py,Did not cancel,មិនបានលុបចោល DocType: Social Login Key,Client Information,ព័ត៌មានអំពីអតិថិជន +DocType: Energy Point Rule,Apply this rule only once per document,អនុវត្តច្បាប់នេះតែម្តងគត់ក្នុងមួយឯកសារ DocType: Workflow State,plus,បូក +DocType: DocField,Read Only Depends On,អានតែពឹងផ្អែកលើ apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,ចូលជាភ្ញៀវឬអ្នកគ្រប់គ្រង DocType: Email Account,UNSEEN,មើលមិនឃើញ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,កម្មវិធីគ្រប់គ្រងឯកសារ @@ -199,9 +204,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,ហេតុផល 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,គ្មានសកម្មភាព។ +DocType: Server Script,Script Manager,អ្នកគ្រប់គ្រងស្គ្រីប +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,គ្មានសកម្មភាព។ apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,កម្មវិធីរបស់ភាគីទីបី apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,អ្នកប្រើដំបូងនឹងក្លាយជាអ្នកគ្រប់គ្រងប្រព័ន្ធ (អ្នកអាចផ្លាស់ប្តូរនៅពេលក្រោយនេះ) ។ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,គ្មានព្រឹត្តិការណ៍ថ្ងៃនេះទេ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,អ្នកមិនអាចផ្តល់ពិន្ទុពិនិត្យឡើងវិញចំពោះខ្លួនឯងបានទេ។ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ត្រូវតែបញ្ជូនសំរាប់ព្រឹត្តិការណ៍ Doc ដែលបានជ្រើសរើស DocType: Workflow State,circle-arrow-up,សញ្ញាព្រួញរង្វង់ឡើង @@ -232,6 +239,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed t apps/frappe/frappe/model/db_query.py,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,You are not allowed to delete a standard Website Theme,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យលុបស្បែកគេហទំព័រស្តង់ដារ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},បង្កើត {0} ដំបូងរបស់អ្នក DocType: Data Import,Log Details,ព័ត៌មានលម្អិតអំពីកំណត់ហេតុ DocType: Workflow Transition,Example,ឧទាហរណ៏ DocType: Webhook Header,Webhook Header,បឋមកថា Webhook @@ -246,8 +254,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,ជជែកកំសាន្តផ្ទៃខាងក្រោយ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,សម្គាល់ថាបានអាន apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},ធ្វើបច្ចុប្បន្នភាព {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,ស្លាយ Onboarding {0} ដែល មានលំដាប់ស្លាយដូចគ្នាមានរួចហើយ apps/frappe/frappe/core/doctype/report/report.js,Disable Report,របាយការណ៍បិទ DocType: Translation,Contributed Translation Doctype Name,ឈ្មោះការបកប្រែភាសាវិភាគលេខកូដ។ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ទម្រង់បែបបទតាមតម្រូវការ DocType: PayPal Settings,Redirect To,ប្តូរទិសទៅ DocType: Data Migration Mapping,Pull,ទាញ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript ទ្រង់ទ្រាយ: frappe.query_reports ['REPORTNAME'] = {} @@ -262,6 +272,7 @@ DocType: DocShare,Internal record of document shares,កំណត់ត្រា DocType: Energy Point Settings,Review Levels,កំរិតពិនិត្យឡើងវិញ។ DocType: Workflow State,Comment,ការអត្ថាធិប្បាយបានទេ DocType: Data Migration Plan,Postprocess Method,វិធីសាស្រ្តក្រោយដំណើរការ +DocType: DocType Action,Action Type,ប្រភេទសកម្មភាព apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ថតរូប DocType: Assignment Rule,Round Robin,រ៉ូបឺរមូល។ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",អ្នកអាចផ្លាស់ប្តូរឯកសារដែលបានផ្តល់ជូនដោយលុបចោលពួកគេហើយបន្ទាប់មកកែប្រែពួកគេ។ @@ -275,6 +286,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,រក្សាទុកជា DocType: Comment,Seen,គេមើលឃើញ apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,បង្ហាញតែការព័ត៌មានលម្អិតបន្ថែមទៀត +DocType: Server Script,Before Submit,មុននឹងដាក់ស្នើ DocType: System Settings,Run scheduled jobs only if checked,រត់ការងារដែលបានកំណត់ពេលតែប៉ុណ្ណោះប្រសិនបើបានគូសធីក apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,នឹងត្រូវបានបង្ហាញតែប៉ុណ្ណោះប្រសិនបើក្បាលត្រូវបានអនុញ្ញាតផ្នែក apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,បណ្ណសារ @@ -287,10 +299,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox គន្លឹះចូល apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,ឈ្មោះវាលមិនត្រឹមត្រូវ {0} នៅក្នុងការកំណត់រចនាសម្ព័ន្ធ add_fetch នៃស្គ្រីបផ្ទាល់ខ្លួន apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ជ្រើស Google ទំនាក់ទំនងដែលទំនាក់ទំនងគួរត្រូវបានធ្វើសមកាលកម្ម។ DocType: Web Page,Main Section (HTML),ផ្នែកសំខាន់ (HTML) +DocType: Scheduled Job Type,Annual,ប្រចាំឆ្នាំ DocType: Workflow State,headphones,កាស apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,ពាក្យសម្ងាត់គឺត្រូវបានទាមទារឬជ្រើសរង់ចាំការពាក្យសម្ងាត់ DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ឧ replies@yourcomany.com ។ ការឆ្លើយតបទាំងអស់នឹងមកដល់ប្រអប់សំបុត្រនេះ។ DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",កំណត់លំដាប់ស្លាយក្នុងវីហ្សាដ។ ប្រសិនបើស្លាយមិនត្រូវបានបង្ហាញអាទិភាពគួរតែត្រូវបានកំណត់ទៅ 0 ។ DocType: Data Migration Run,Current Mapping,ផែនទីបច្ចុប្បន្ន apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,ឈ្មោះនិងអ៊ីមែលដែលមានសុពលភាពបានទាមទារ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,ធ្វើឱ្យឯកសារភ្ជាប់ទាំងអស់មានលក្ខណៈឯកជន។ @@ -313,6 +327,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,ច្បាប់នៃការផ្លាស់ប្តូរ apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,បង្ហាញតែជួរដេក {0} ដំបូងក្នុងការមើលជាមុន។ apps/frappe/frappe/core/doctype/report/report.js,Example:,ឧទាហរណ៍: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ការដាក់កម្រិត DocType: Workflow,Defines workflow states and rules for a document.,កំណត់របស់រដ្ឋជាលំហូរការងារនិងច្បាប់សម្រាប់ឯកសារមួយ។ DocType: Workflow State,Filter,តម្រង apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},សូមពិនិត្យមើលកំណត់ហេតុកំហុសសម្រាប់ព័ត៌មានបន្ថែម៖ {0} @@ -324,6 +339,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ការងារ។ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} បានចេញ: {1} DocType: Address,West Bengal,រដ្ឋ West Bengal +DocType: Onboarding Slide,Information,ព័ត៌មាន apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: មិនអាចកំណត់ឱយដាក់ស្នើប្រសិនបើមិនបានបញ្ជូន DocType: Transaction Log,Row Index,សន្ទស្សន៍ជួរដេក DocType: Social Login Key,Facebook,ហ្វេសប៊ុក @@ -341,7 +357,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,មិន DocType: Web Form,Button Help,ជំនួយប៊ូតុង DocType: Kanban Board Column,purple,ស្វាយ DocType: About Us Settings,Team Members,សមាជិកក្រុម +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,នឹងដំណើរការការងារដែលបានគ្រោងទុកតែមួយដងក្នុងមួយថ្ងៃសម្រាប់គេហទំព័រអសកម្ម។ លំនាំដើម ៤ ថ្ងៃបើកំណត់ទៅ ០ ។ DocType: Assignment Rule,System Manager,ប្រព័ន្ធអ្នកគ្រប់គ្រង +DocType: Scheduled Job Log,Scheduled Job,ការងារគ្រោងទុក DocType: Custom DocPerm,Permissions,សិទ្ធិ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks សម្រាប់សមាហរណកម្មផ្ទៃក្នុង DocType: Dropbox Settings,Allow Dropbox Access,អនុញ្ញាតឱ្យចូលដំណើរការ Dropbox @@ -395,6 +413,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ស DocType: Email Flag Queue,Email Flag Queue,ជួរទង់អ៊ីម៉ែល DocType: Access Log,Columns / Fields,ជួរឈរ / វាល។ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,សន្លឹករចនាប័ទ្មសម្រាប់ទ្រង់ទ្រាយបោះពុម្ព +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,វាលមុខងារសរុបត្រូវបានទាមទារដើម្បីបង្កើតគំនូសតាងផ្ទៃតាប្លូ apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,មិនអាចកំណត់អត្តសញ្ញាណបានបើកចំហ {0} ។ សូមព្យាយាមអ្វីផ្សេងទៀត។ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ទិន្នន័យរបស់អ្នកត្រូវបានដាក់ស្នើ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,អ្នកប្រើ {0} មិនអាចត្រូវបានលុប @@ -410,11 +429,12 @@ DocType: Property Setter,Field Name,ឈ្មោះវាល DocType: Assignment Rule,Assign To Users,ចាត់ចែងឱ្យអ្នកប្រើប្រាស់។ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ឬ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ឈ្មោះម៉ូឌុល ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ការបន្ត +DocType: Onboarding Slide,Continue,ការបន្ត apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google សមាហរណកម្មត្រូវបានបិទ។ DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,វិញ្ញាបនបត្រ apps/frappe/frappe/templates/includes/login/login.js,Verifying...,កំពុងផ្ទៀងផ្ទាត់ ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,ការងាររបស់អ្នកលើ {0} {1} ត្រូវបានលុបចោល apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,ជួរឈរទិន្នន័យដំបូងត្រូវតែជាទទេ។ apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,បង្ហាញកំណែទាំងអស់ apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,មើលមតិយោបល់។ @@ -424,11 +444,13 @@ DocType: User,Restrict IP,ដាក់កម្រិត IP របស់ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ផ្ទាំងគ្រប់គ្រង apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,មិនអាចផ្ញើអ៊ីម៉ែលនៅពេលនេះ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google ប្រតិទិន - មិនអាចធ្វើបច្ចុប្បន្នភាពព្រឹត្តិការណ៍ {0} នៅក្នុងប្រតិទិនហ្គូហ្កលកូដកំហុស {1} ។ +DocType: Notification Log,Email Content,មាតិកាអ៊ីម៉ែល apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ស្វែងរកឬវាយពាក្យបញ្ជា DocType: Activity Log,Timeline Name,ឈ្មោះកំណត់ពេលវេលា DocType: Email Account,e.g. smtp.gmail.com,ឧ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,បន្ថែមច្បាប់ថ្មី DocType: Contact,Sales Master Manager,កម្មវិធីគ្រប់គ្រងលោកគ្រូការលក់ +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,អ្នកត្រូវបើកដំណើរការ JavaScript ដើម្បី ឲ្យ កម្មវិធីរបស់អ្នកដំណើរការ។ DocType: User Permission,For Value,សម្រាប់តម្លៃ DocType: Event,Google Calendar ID,លេខសម្គាល់ប្រតិទិន Google apps/frappe/frappe/www/complete_signup.html,One Last Step,មួយជំហានមុន @@ -443,6 +465,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,វាលឈ្មោះកណ្ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},ការនាំចូល {0} នៃ {1} DocType: GCalendar Account,Allow GCalendar Access,អនុញ្ញាតឱ្យចូលដំណើរការ GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} គឺជាវាលចាំបាច់មួយ +DocType: DocType,Documentation Link,តំណភ្ជាប់ឯកសារ apps/frappe/frappe/templates/includes/login/login.js,Login token required,តម្រូវឱ្យចូលនិមិត្តសញ្ញា apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ចំណាត់ថ្នាក់ប្រចាំខែ៖ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ជ្រើសរើសធាតុបញ្ជីច្រើន។ @@ -464,6 +487,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL ឯកសារ DocType: Version,Table HTML,តារាង HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,បន្ថែមអតិថិជន +DocType: Notification Log,Energy Point,ចំណុចថាមពល apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,ព្រឹត្តិការណ៍ជិតមកដល់សម្រាប់ថ្ងៃនេះ DocType: Google Calendar,Push to Google Calendar,រុញទៅប្រតិទិន Google ។ DocType: Notification Recipient,Email By Document Field,អ៊ីម៉ែលដោយវាលឯកសារ @@ -479,12 +503,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ចាកឆ្ងាយ DocType: Currency,Fraction Units,ប្រភាគឯកតា apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} ពី {1} ទៅ {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,សម្គាល់ថាបានធ្វើ DocType: Chat Message,Type,ប្រភេទ DocType: Google Settings,OAuth Client ID,លេខសម្គាល់អតិថិជន OAuth ។ DocType: Auto Repeat,Subject,ប្រធានបទ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ត្រលប់ទៅតុ DocType: Web Form,Amount Based On Field,ចំនួនទឹកប្រាក់ដោយផ្អែកលើវាល +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} មិនមានកំណែបានតាមដានទេ។ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,អ្នកប្រើគឺជាការចាំបាច់បំផុតសម្រាប់ចែករំលែក DocType: DocField,Hidden,ដែលបានលាក់ DocType: Web Form,Allow Incomplete Forms,អនុញ្ញាតឱ្យសំណុំបែបបទមិនពេញលេញ @@ -507,6 +531,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,សូមពិនិត្យមើលអ៊ីមែលរបស់អ្នកសម្រាប់ការផ្ទៀងផ្ទាត់ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ដងមិនអាចមាននៅចុងបញ្ចប់នៃសំណុំបែបបទនេះ DocType: Communication,Bounced,លោត +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,នៃ DocType: Deleted Document,Deleted Name,ឈ្មោះបានលុប apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,ប្រព័ន្ធនិងអ្នកប្រើប្រាស់វេបសាយ DocType: Workflow Document State,Doc Status,ស្ថានភាពដុក @@ -517,6 +542,7 @@ DocType: Language,Language Code,កូដភាសា DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,សំគាល់: តាមអ៊ីមែលលំនាំដើមសម្រាប់ការបម្រុងទុកដែលបរាជ័យបានផ្ញើ។ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,បន្ថែមតម្រង apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},ផ្ញើសារទៅកាន់លេខដូចខាងក្រោម: {0} +DocType: Notification Settings,Assignments,កិច្ចការ apps/frappe/frappe/utils/data.py,{0} and {1},{0} និង {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ចាប់ផ្ដើមការសន្ទនា។ DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",តែងតែបន្ថែម "សេចក្តីព្រាង" ក្បាលសេចក្តីព្រាងបោះពុម្ពសម្រាប់ឯកសារ @@ -525,6 +551,7 @@ DocType: Data Migration Run,Current Mapping Start,ចាប់ផ្ដើមផ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,អ៊ីម៉ែលដែលត្រូវបានគេសម្គាល់ថាជាសារឥតបាន DocType: Comment,Website Manager,កម្មវិធីគ្រប់គ្រងវែបសាយ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ការផ្ទេរឯកសារត្រូវបានផ្តាច់។ សូមព្យាយាមម្ដងទៀត។ +DocType: Data Import Beta,Show Failed Logs,បង្ហាញកំណត់ហេតុដែលបរាជ័យ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ការបកប្រែ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,អ្នកព្រាងដែលបានជ្រើសឬឯកសារដែលបានលុបចោល apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ឯកសារ {0} ត្រូវបានកំណត់ឱ្យកំណត់ {1} ដោយ {2} @@ -532,7 +559,9 @@ apps/frappe/frappe/model/document.py,Document Queued,ជូរឯកសារ DocType: GSuite Templates,Destination ID,លេខសម្គាល់ទិសដៅ DocType: Desktop Icon,List,បញ្ជី DocType: Activity Log,Link Name,ឈ្មោះតំណភ្ជាប់ +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,អ្នកមិនមាន DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy ឆ្នាំ +DocType: Onboarding Slide,Onboarding Slide,ការរុញលើនាវា apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ពាក្យសម្ងាត់មិនត្រឹមត្រូវ: DocType: Print Settings,Send document web view link in email,ផ្ញើឯកសារតំណទិដ្ឋភាពបណ្ដាញនៅក្នុងអ៊ីមែល apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,មុន @@ -592,6 +621,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},ទទួលបានជោគជ័យ: {0} ទៅ {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,មិនអាចផ្លាស់ប្តូរការបង្ហាញសេចក្តីលម្អិតអ្នកប្រើនៅក្នុង។ សូមចុះឈ្មោះសម្រាប់គណនីថ្មីមួយនៅ https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ទម្លាក់។ +DocType: Dashboard Chart,Aggregate Function Based On,មុខងារសរុបផ្អែកលើ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,សូមចម្លងនេះដើម្បីធ្វើការផ្លាស់ប្តូរ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,ចុច Enter ដើម្បីរក្សាទុក apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,ជំនាន់ឯកសារ PDF បានបរាជ័យដោយសារតែការខូចតំណភ្ជាប់រូបភាព @@ -605,7 +635,9 @@ DocType: Notification,Days Before,ប៉ុន្មានថ្ងៃមុន apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ព្រឹត្តិការណ៍ប្រចាំថ្ងៃគួរតែបញ្ចប់នៅថ្ងៃតែមួយ។ apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,កែសម្រួល ... DocType: Workflow State,volume-down,បរិមាណចុះ +DocType: Onboarding Slide,Help Links,តំណភ្ជាប់ជំនួយ apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ការចូលប្រើមិនត្រូវបានអនុញ្ញាតពីអាសយដ្ឋាន IP នេះទេ។ +DocType: Notification Settings,Enable Email Notifications,បើកការជូនដំណឹងតាមអ៊ីមែល apps/frappe/frappe/desk/reportview.py,No Tags,គ្មានស្លាក DocType: Email Account,Send Notification to,ផ្ញើការជូនដំណឹងទៅ DocType: DocField,Collapsible,ការដួលរលំ @@ -634,6 +666,7 @@ DocType: Google Drive,Last Backup On,ការបម្រុងទុកចុ DocType: Customize Form Field,Customize Form Field,ប្ដូរតាមវាលសំណុំបែបបទ DocType: Energy Point Rule,For Document Event,សម្រាប់ព្រឹត្តិការណ៍ឯកសារ។ DocType: Website Settings,Chat Room Name,ឈ្មោះបន្ទប់ជជែកកំសាន្ត +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,មិនផ្លាស់ប្តូរ DocType: OAuth Client,Grant Type,ប្រភេទជំនួយឥតសំណង apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,មើលឯកសារដែលអាចអានបានដោយអ្នកប្រើ DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -641,6 +674,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ប DocType: Auto Repeat,Quarterly,ប្រចាំត្រីមាស apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","អ៊ីម៉ែលដែលមិនបានកំណត់រចនាសម្ព័ន្ធដែនសម្រាប់គណនីនេះ, បង្កើតមួយ?" DocType: User,Reset Password Key,គន្លឹះពាក្យសម្ងាត់កំណត់ឡើងវិញ +DocType: Dashboard Chart,All Time,គ្រប់ពេល apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},ស្ថានភាពឯកសារខុសច្បាប់សម្រាប់ {0} DocType: Email Account,Enable Auto Reply,អនុញ្ញាតការឆ្លើយតបដោយស្វ័យប្រវត្តិ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,មិនដែលឃើញ @@ -653,6 +687,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ប DocType: Email Account,Notify if unreplied,ជូនដំណឹងប្រសិនបើ unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,វិភាគកូដ QR ហើយបញ្ចូលលេខកូដលទ្ធផលដែលបង្ហាញ។ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,បើកដំណើរការជម្រាល។ +DocType: Scheduled Job Type,Hourly Long,ឡុងឡុង DocType: System Settings,Minimum Password Score,ពិន្ទុពាក្យសម្ងាត់អប្បបរមា DocType: DocType,Fields,វាល DocType: System Settings,Your organization name and address for the email footer.,ឈ្មោះរបស់អង្គការរបស់អ្នកនិងអាសយដ្ឋានអ៊ីម៉ែលសម្រាប់បាតកថា។ @@ -665,6 +700,7 @@ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atle DocType: Print Format,Default Print Language,ភាសាបោះពុម្ពលំនាំដើម។ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,បុព្វបុរសនៃ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ជា Root {0} មិនអាចត្រូវបានលុប +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,គ្មានកំណត់ហេតុបរាជ័យ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,គ្មានយោបល់ឡើយទេ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",សូមបង្កើតសារជាអក្សរមុននឹងកំណត់វាជាវិធីសាស្ត្រផ្ទៀងផ្ទាត់តាមរយៈការកំណត់ SMS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,ទាំងពីរចង្អុលបង្ហាញនិងឈ្មោះដែលបានទាមទារ @@ -687,6 +723,7 @@ DocType: Website Settings,Footer Items,បាតកថាធាតុ apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,ម៉ឺនុយ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,ជារៀងរាល់ថ្ងៃ +DocType: Onboarding Slide,Max Count,ចំនួនអតិបរមា apps/frappe/frappe/config/users_and_permissions.py,User Roles,តួនាទីរបស់អ្នកប្រើ DocType: Property Setter,Property Setter overrides a standard DocType or Field property,អចលនទ្រព្យមួយដែលចង្អុលបង្ហាញសិតបដិសេធស្ដង់ដារឬទ្រព្យវាល apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,មិនអាចធ្វើឱ្យទាន់សម័យ: មិនត្រឹមត្រូវតំណ / ផុតកំណត់។ @@ -705,6 +742,7 @@ DocType: Footer Item,"target = ""_blank""",គោលដៅ = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,ម៉ាស៊ីន DocType: Data Import Beta,Import File,នាំចូលឯកសារ។ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,កំហុសគំរូ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ជួរឈរ {0} មានរួចហើយ។ DocType: ToDo,High,ឧត្តម apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,ព្រឹត្តិការណ៍ថ្មី @@ -720,6 +758,7 @@ DocType: Web Form Field,Show in filter,បង្ហាញក្នុងតម DocType: Address,Daman and Diu,ដាមេននិង Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,គម្រោង DocType: Address,Personal,ផ្ទាល់ខ្លួន +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,ការកំណត់ការបោះពុម្ពឆៅ ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,សូមមើល https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region សម្រាប់ព័ត៌មានលម្អិត។ apps/frappe/frappe/config/settings.py,Bulk Rename,ប្តូរឈ្មោះភាគច្រើន DocType: Email Queue,Show as cc,បង្ហាញជា cc & ‧; @@ -729,6 +768,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,យកវីដេ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ព័ត៌មានណែនាំសម្រាប់ទំនាក់ទំនងយើងទំព័រ DocType: Print Style,CSS,ជា CSS DocType: Workflow State,thumbs-down,មេដៃចុះ +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,បោះបង់ឯកសារ DocType: User,Send Notifications for Email threads,ផ្ញើការជូនដំណឹងសម្រាប់ខ្សែស្រឡាយអ៊ីម៉ែល។ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,សាស្រ្តាចារ្យ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,មិននៅក្នុងរបៀបអ្នកអភិវឌ្ឍ @@ -750,10 +790,12 @@ DocType: Energy Point Rule,User Field,វាលអ្នកប្រើ។ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,រុញលុប apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} មិនជាវរួចទៅហើយសម្រាប់ {1} {2} +DocType: Scheduled Job Type,Stopped,បញ្ឈប់ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,មិនបានយក apps/frappe/frappe/desk/like.py,Liked,ចូលចិត្ត apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,ផ្ញើឥឡូវ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ស្ដង់ដារប្រភេទឯកសារមិនអាចមានទ្រង់ទ្រាយម៉ាស៊ីនបោះពុម្ពលំនាំដើម, ប្រើទម្រង់បែបបទប្តូរតាមបំណង" +DocType: Server Script,Allow Guest,អនុញ្ញាតឱ្យភ្ញៀវ DocType: Report,Query,សំណួរ DocType: Customize Form,Sort Order,តម្រៀបតាមលំដាប់ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},«នៅក្នុងទិដ្ឋភាពបញ្ជី 'មិនបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} @@ -775,10 +817,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,វិធីសាស្ត្រផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវពីរ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ដំបូងកំណត់ឈ្មោះនិងរក្សាទុកកំណត់ត្រា។ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,៥ កំណត់ត្រា។ +DocType: DocType Link,Link Fieldname,ភ្ជាប់ឈ្មោះវាល apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ចែករំលែកជាមួយនឹង {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ឈប់ជាវ DocType: View Log,Reference Name,ឈ្មោះឯកសារយោង apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ផ្លាស់ប្តូរអ្នកប្រើប្រាស់។ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ដំបូង apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ធ្វើបច្ចុប្បន្នភាពការបកប្រែ DocType: Error Snapshot,Exception,ករណីលើកលែង DocType: Email Account,Use IMAP,ការប្រើ IMAP & ‧; @@ -792,6 +836,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,វិធានកំណត់ការផ្លាស់ប្តូររដ្ឋនៅក្នុងលំហូរការងារនេះ។ DocType: File,Folder,ថត DocType: Website Route Meta,Website Route Meta,គេហទំព័រផ្លូវមេតា។ +DocType: Onboarding Slide Field,Onboarding Slide Field,វាលរំកិលលើនាវា DocType: DocField,Index,សន្ទស្សន៍ DocType: Email Group,Newsletter Manager,កម្មវិធីគ្រប់គ្រងព្រឹត្តិប័ត្រព័ត៌មាន apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,ជម្រើសទី 1 @@ -818,7 +863,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ក apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,កំណត់រចនាសម្ព័ន្ធគំនូសតាង DocType: User,Last IP,ចុងក្រោយនេះកម្មសិទ្ធិបញ្ញា apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,សូមបន្ថែមប្រធានបទទៅអ៊ីមែលរបស់អ្នក -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,ឯកសារថ្មី {0} ត្រូវបានចែករំលែកជាមួយអ្នក {1} ។ DocType: Data Migration Connector,Data Migration Connector,តំណផ្ទេរទិន្នន័យ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ត្រឡប់វិញ {1} DocType: Email Account,Track Email Status,តាមដានស្ថានភាពអ៊ីម៉ែល @@ -877,6 +921,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,ស្វ DocType: Workflow State,text-width,អត្ថបទដែលមានទទឹង apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ដែនកំណត់អតិបរមាសម្រាប់កំណត់ត្រាឯកសារភ្ជាប់នេះបានឈានដល់។ apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ស្វែងរកតាមឈ្មោះឯកសារឬផ្នែកបន្ថែម។ +DocType: Onboarding Slide,Slide Title,ចំណងជើងស្លាយ DocType: Notification,View Properties (via Customize Form),លក្ខណៈសម្បត្តិទិដ្ឋភាព (ទម្រង់បែបបទតាមបំណងតាមរយៈការ) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ចុចលើឯកសារដើម្បីជ្រើសរើសវា។ DocType: Note Seen By,Note Seen By,ចំណាំមើលឃើញដោយ @@ -903,13 +948,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,ចែករំលែក URL DocType: System Settings,Allow Consecutive Login Attempts ,អនុញ្ញាតឱ្យព្យាយាមចូលតៗគ្នា apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,មានកំហុសកើតឡើងក្នុងដំណើរការទូទាត់។ សូមទាក់ទងមកយើងខ្ញុំ។ +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,ប្រសិនបើប្រភេទស្លាយត្រូវបានបង្កើតឬការកំណត់វាគួរតែមានវិធីសាស្រ្ត 'create_onboarding_docs' នៅក្នុងឯកសារ {ref_doctype} .py ដែលត្រូវប្រតិបត្តិបន្ទាប់ពីការបញ្ចាំងស្លាយត្រូវបានបញ្ចប់។ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ថ្ងៃមុន DocType: Email Account,Awaiting Password,រង់ចាំការពាក្យសម្ងាត់ DocType: Address,Address Line 1,អាសយដ្ឋានបន្ទាត់ 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,មិនមែនជាកូនចៅនៃ DocType: Contact,Company Name,ឈ្មោះក្រុមហ៊ុន DocType: Custom DocPerm,Role,តួនាទីរបស់ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ការកំណត់ ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ទៅកម្មវិធីអ៊ីនធឺណិតរបស់អ្នក។ apps/frappe/frappe/utils/data.py,Cent,ភាគ ,Recorder,ថត។ @@ -969,6 +1014,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",តាមដានបើអ៊ីម៉ែលរបស់អ្នកត្រូវបានបើកដោយអ្នកទទួល។
ចំណាំ: ប្រសិនបើអ្នកផ្ញើទៅអ្នកទទួលច្រើនសូម្បីតែអ្នកទទួល 1 អានអ៊ីម៉ែលវានឹងត្រូវបានចាត់ទុកថា "បានបើក" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,តម្លៃដែលបាត់ត្រូវការ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,អនុញ្ញាតការចូលប្រើទំនាក់ទំនង Google ។ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,បានដាក់កម្រិត DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,លោក Mark ដែលជាមិនទាន់អាន DocType: Activity Log,Operation,ប្រតិបត្ដិការ @@ -1021,6 +1067,7 @@ DocType: Web Form,Allow Print,អនុញ្ញាតឱ្យបោះពុ DocType: Communication,Clicked,ចុច apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,មិនបំពេញ។ apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},គ្មានសិទ្ធិ '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមរៀបចំគណនីអ៊ីមែលលំនាំដើមពីតំឡើង> អ៊ីមែល> គណនីអ៊ីមែល apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,គ្រោងនឹងផ្ញើ DocType: DocType,Track Seen,បទឃើញ DocType: Dropbox Settings,File Backup,ឯកសារបម្រុងទុក @@ -1029,12 +1076,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,គ្មា apps/frappe/frappe/config/customization.py,Add custom forms.,បន្ថែមទម្រង់បែបបទផ្ទាល់ខ្លួន។ apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} នៅក្នុង {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,បានដាក់ស្នើឯកសារនេះ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,តំឡើង> សិទ្ធិអ្នកប្រើប្រាស់ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ប្រព័ន្ធនេះបានផ្ដល់នូវតួនាទីដែលបានកំណត់ជាមុនជាច្រើន។ អ្នកអាចបន្ថែមតួនាទីថ្មីកំណត់សិទ្ធិស្តើង។ DocType: Communication,CC,ចម្លងជូន DocType: Country,Geo,ភូមិសាស្ត្រ DocType: Data Migration Run,Trigger Name,ឈ្មោះកេះ -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ដែន +DocType: Onboarding Slide,Domains,ដែន DocType: Blog Category,Blog Category,ប្រភេទកំណត់ហេតុបណ្ដាញ apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,មិនអាចផ្គូផ្គងទេព្រោះលក្ខខណ្ឌដូចខាងក្រោមបរាជ័យ: DocType: Role Permission for Page and Report,Roles HTML,តួនាទីរបស់ HTML @@ -1074,7 +1120,6 @@ DocType: Assignment Rule Day,Saturday,ថ្ងៃសៅរ៍ DocType: User,Represents a User in the system.,តំណាងឱ្យអ្នកប្រើនៅក្នុងប្រព័ន្ធ។ DocType: List View Setting,Disable Auto Refresh,បិទដំណើរការធ្វើឱ្យស្រស់ដោយស្វ័យប្រវត្តិ។ DocType: Comment,Label,ស្លាក -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","ភារកិច្ច {0}, ដែលអ្នកផ្ដល់ទៅឱ្យ {1} ត្រូវបានបិទ។" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,សូមបិទបង្អួចនេះ DocType: Print Format,Print Format Type,ការបោះពុម្ពទ្រង់ទ្រាយប្រភេទ DocType: Newsletter,A Lead with this Email Address should exist,អ្នកដឹកនាំការជាមួយអាសយដ្ឋានអ៊ីមែលនេះគួរតែមាន @@ -1090,6 +1135,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,ការកំណត apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ជ្រើសយកមួយ។ DocType: Data Export,Filter List,បញ្ជីតម្រង DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: ម DocType: Email Account,Auto Reply Message,សារឆ្លើយតបដោយស្វ័យប្រវត្តិ DocType: Data Migration Mapping,Condition,លក្ខខណ្ឌ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ម៉ោងមុន @@ -1108,12 +1154,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ចំនេះដឹងមូលដ្ឋានបរិច្ចាគ DocType: Communication,Sent Read Receipt,ដែលបានផ្ញើបង្កាន់ដៃអាន DocType: Email Queue,Unsubscribe Method,វិធីសាស្រ្តឈប់ជាវ +DocType: Onboarding Slide,Add More Button,បន្ថែមប៊ូតុងបន្ថែមទៀត DocType: GSuite Templates,Related DocType,ប្រភេទឯកសារដែលទាក់ទង apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,កែសម្រួលដើម្បីបន្ថែមមាតិកា apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ជ្រើសភាសា apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,ព័ត៌មានអំពីកាត apps/frappe/frappe/__init__.py,No permission for {0},មិនមានសិទ្ធិដើម្បី {0} DocType: DocType,Advanced,កម្រិតខ្ពស់ +DocType: Onboarding Slide,Slide Image Source,ប្រភពរូបភាពស្លាយ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,ហាក់ដូចជា API របស់សោ API ឬជាខុស !!! សម្ងាត់ apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},ឯកសារយោង: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,អ្នកស្រី @@ -1130,6 +1178,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,អនុ DocType: DocType,User Cannot Create,អ្នកប្រើដែលមិនអាចបង្កើត apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ធ្វើបានជោគជ័យ។ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ការចូលដំណើរការ Dropbox ត្រូវបានអនុម័ត! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,តើអ្នកពិតជាចង់បញ្ចូល {0} ជាមួយ {1} មែនទេ? DocType: Customize Form,Enter Form Type,បញ្ចូលប្រភេទសំណុំបែបបទ DocType: Google Drive,Authorize Google Drive Access,ផ្តល់សិទ្ធិចូលប្រើថាសហ្គូហ្គល។ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,បាត់ប៉ារ៉ាម៉ែត្រឈ្មោះក្រុមប្រឹក្សាភិបាល Kanban @@ -1139,7 +1188,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","អនុញ្ញាតឱ្យចង្អុលបង្ហាញ, ចង្អុលបង្ហាញ។ ចូរប្រយ័ត្ន!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ទ្រង់ទ្រាយប្ដូរតាមបំណងសម្រាប់ការបោះពុម្ព, អ៊ីម៉ែល" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},ផលបូកនៃ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,ធ្វើឱ្យទាន់សម័យទៅកំណែថ្មី DocType: Custom Field,Depends On,អាស្រ័យទៅលើ DocType: Kanban Board Column,Green,ពណ៌បៃតង DocType: Custom DocPerm,Additional Permissions,សិទ្ធិបន្ថែម @@ -1167,6 +1215,7 @@ DocType: Energy Point Log,Social,សង្គម apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",ប្រតិទិនហ្គូហ្គល - មិនអាចបង្កើតប្រតិទិនសម្រាប់ {0} លេខកូដកំហុស {1} ។ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,ការកែសម្រួលជួរដេក DocType: Workflow Action Master,Workflow Action Master,លំហូរការងារសកម្មភាពអនុបណ្ឌិត +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,លុបទាំងអស់ DocType: Custom Field,Field Type,ប្រភេទវាល apps/frappe/frappe/utils/data.py,only.,តែប៉ុណ្ណោះ។ DocType: Route History,Route History,ប្រវត្តិផ្លូវ @@ -1201,11 +1250,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,ភ្លេចលេខស DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,លេខសម្គាល់ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,កំហុសម៉ាស៊ីនបម្រើ +DocType: Server Script,After Delete,បន្ទាប់ពីលុប apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,មើលរបាយការណ៍អតីតកាលទាំងអស់។ apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,លេខសម្គាល់ការចូលត្រូវបានទាមទារ DocType: Website Slideshow,Website Slideshow,វេបសាយបញ្ចាំងស្លាយ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,គ្មានទិន្នន័យ DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","តំណភ្ជាប់នោះគឺជាគេហទំព័រវែបសាយ។ តំណស្តង់ដារ (លិបិក្រម, ចូលផលិតផល, កំណត់ហេតុបណ្ដាញ, អំពីទំនក់ទំនង)" +DocType: Server Script,After Submit,បន្ទាប់ពីដាក់ស្នើ apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវបានបរាជ័យខណៈពេលដែលទទួលអ៊ីម៉ែលពីគណនីអ៊ីម៉ែល {0} ។ សារពីម៉ាស៊ីនបម្រើ: {1} DocType: User,Banner Image,រូបភាពបដា DocType: Custom Field,Custom Field,វាលតាមតំរូវការ @@ -1246,15 +1297,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",ប្រសិនបើអ្នកប្រើមានតួនាទីអ្វីបានគូសធីកនោះអ្នកប្រើក្លាយជា "អ្នកប្រើប្រាស់ប្រព័ន្ធ" ។ "អ្នកប្រើប្រាស់ប្រព័ន្ធ" មានសិទ្ធិចូលដំណើរការទៅផ្ទៃតុ DocType: System Settings,Date and Number Format,លេខទ្រង់ទ្រាយកាលបរិច្ឆេទនិង apps/frappe/frappe/model/document.py,one of,មួយក្នុងចំណោម -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ទម្រង់បែបបទតាមតម្រូវការ apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,កំពុងពិនិត្យមើលមួយពេល apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,បង្ហាញស្លាក DocType: DocField,HTML Editor,កម្មវិធីនិពន្ធ HTML 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,ការប្រព្រឹត្ដ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,តំឡើង> អ្នកប្រើប្រាស់ +DocType: DocType,Actions,ការប្រព្រឹត្ដ DocType: Workflow State,align-justify,តម្រឹម-បង្ហាញអំពីភាពត្រឹមត្រូវ DocType: User,Middle Name (Optional),ឈ្មោះពាក់កណ្តាល (ជាជម្រើស) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,មិនអនុញ្ញាត @@ -1268,6 +1317,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,មិន DocType: System Settings,Security,សន្ដិសុខ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,គ្រោងនឹងផ្ញើទៅអ្នកទទួល {0} apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,កាត់ +DocType: Server Script,After Save,បន្ទាប់ពីរក្សាទុក apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},ប្តូរឈ្មោះពី {0} ទៅ {1} DocType: Currency,**Currency** Master,** រូបិយប័ណ្ណ ** អនុបណ្ឌិត DocType: Email Account,No of emails remaining to be synced,អ៊ីម៉ែលដែលនៅសេសសល់មិនត្រូវបានធ្វើសមកាលកម្មទៅ @@ -1292,15 +1342,18 @@ DocType: Prepared Report,Filter Values,តម្លៃតម្រង DocType: Communication,User Tags,ស្លាករបស់អ្នកប្រើ DocType: Data Migration Run,Fail,បរាជ័យ DocType: Workflow State,download-alt,ទាញយក-alt +DocType: Scheduled Job Type,Last Execution,ការប្រតិបត្តិចុងក្រោយ DocType: Data Migration Run,Pull Failed,ទាញបរាជ័យ apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,បង្ហាញ / លាក់កាត។ DocType: Communication,Feedback Request,មតិអ្នកសំណើ apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,នាំចូលទិន្នន័យពីឯកសារ CSV / Excel ។ apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,វាលដូចខាងក្រោមដែលត្រូវបានបាត់ខ្លួន: +DocType: Notification Log,From User,ពីអ្នកប្រើប្រាស់ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},បោះបង់ {0} DocType: Web Page,Main Section,ផ្នែកដ៏សំខាន់ DocType: Page,Icon,រូបតំណាង apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",ជំនួយ: រួមបញ្ចូលនិមិត្តសញ្ញាលេខនិងអក្សរមូលធននៅក្នុងពាក្យសម្ងាត់ +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",កំណត់រចនាសម្ព័ន្ធការជូនដំណឹងសម្រាប់ការលើកឡើងការចាត់តាំងចំណុចថាមពលនិងរបស់ជាច្រើនទៀត។ DocType: DocField,Allow in Quick Entry,អនុញ្ញាតក្នុងការចូលរហ័ស apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,ជា PDF DocType: System Settings,dd/mm/yyyy,DD / MM / YYYY @@ -1332,7 +1385,6 @@ DocType: Website Theme,Theme URL,URL ស្បែក។ DocType: Customize Form,Sort Field,តម្រៀបវាល DocType: Razorpay Settings,Razorpay Settings,ការកំណត់ Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,កែសម្រួលតម្រង -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,បន្ថែមទៀត DocType: System Settings,Session Expiry Mobile,សម័យដែលបានផុតកំណត់ចល័ត apps/frappe/frappe/utils/password.py,Incorrect User or Password,អ្នកប្រើប្រាស់ឬលេខសំងាត់មិនត្រឹមត្រូវ apps/frappe/frappe/templates/includes/search_box.html,Search results for,លទ្ធផលស្វែងរកសម្រាប់ @@ -1348,8 +1400,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,វិធានចំណុចថាមពល។ DocType: Communication,Delayed,បានពន្យាពេល apps/frappe/frappe/config/settings.py,List of backups available for download,បញ្ជីនៃការបម្រុងអាចទាញយកបាន +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,សាកល្បងនាំចូលទិន្នន័យថ្មី apps/frappe/frappe/www/login.html,Sign up,ចុះឈ្មោះ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,ជួរដេក {0}: មិនត្រូវបានអនុញ្ញាតឱ្យបិទការដាក់កំហិតសម្រាប់វាលស្តង់ដារ +DocType: Webhook,Enable Security,បើកដំណើរការសុវត្ថិភាព apps/frappe/frappe/config/customization.py,Dashboards,ផ្ទាំងគ្រប់គ្រង។ DocType: Test Runner,Output,ទិន្នផល DocType: Milestone,Track Field,តាមដានវាល។ @@ -1357,6 +1411,7 @@ DocType: Notification,Set Property After Alert,កំណត់អចលនទ្ apps/frappe/frappe/config/customization.py,Add fields to forms.,បន្ថែមវាលទៅទម្រង់។ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,មើលទៅដូចជាមានអ្វីមួយគឺជាការខុសដោយការកំណត់រចនាសម្ព័ន្ធលើ Paypal របស់តំបន់បណ្ដាញនេះ។ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,បន្ថែមការពិនិត្យឡើងវិញ។ +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} បានប្រគល់ភារកិច្ចថ្មី {1} {2} ដល់អ្នក apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ទំហំអក្សរ (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,មានតែ DocTypes ស្តង់ដារប៉ុណ្ណោះដែលត្រូវបានអនុញ្ញាតិអោយប្តូរតាមទម្រង់បែបបទផ្ទាល់ខ្លួន។ DocType: Email Account,Sendgrid,Sendgrid @@ -1368,8 +1423,10 @@ DocType: Portal Menu Item,Portal Menu Item,ធាតុម៉ឺនុយវិ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,កំណត់តម្រង។ DocType: Contact Us Settings,Email ID,លេខសម្គាល់អ៊ីម៉ែល DocType: Energy Point Rule,Multiplier Field,វាលគុណ។ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,មិនអាចបង្កើតការបញ្ជាទិញរ៉ាហ្សាបៃ។ សូមទាក់ទងអ្នកគ្រប់គ្រង DocType: Dashboard Chart,Time Interval,ចន្លោះពេល DocType: Activity Log,Keep track of all update feeds,តាមដានរាល់មតិព័ត៌មានទាន់សម័យទាំងអស់ +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} បានចែករំលែកឯកសារ {1} {2} ជាមួយអ្នក 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,ជម្រើសសំណួរ @@ -1387,6 +1444,7 @@ DocType: DefaultValue,Key,គន្លឹះដ៏សំខាន់ DocType: Address,Contacts,ទំនក់ទំនង DocType: System Settings,Setup Complete,រៀបចំការបំពេញ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,របាយការណ៏នៃការចែករំលែកឯកសារទាំងអស់ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","គម្រូនាំចូលគួរតែមានប្រភេទ .csv, .xlsx ឬ .xls" apps/frappe/frappe/www/update-password.html,New Password,ពាក្យសម្ងាត់ថ្មីមួយ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,តម្រង {0} ដែលបាត់ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,សូមអភ័យទោស! អ្នកមិនអាចលុបមតិបានបង្កើតដោយស្វ័យប្រវត្តិ @@ -1401,6 +1459,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,favicons apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,រត់ DocType: Blog Post,Content (HTML),មាតិកា (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,រៀបចំសម្រាប់ DocType: Personal Data Download Request,User Name,ឈ្មោះអ្នកប្រើប្រាស់ DocType: Workflow State,minus-sign,ដកសញ្ញា apps/frappe/frappe/public/js/frappe/request.js,Not Found,រកមិនឃើញ @@ -1408,6 +1467,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,គ្មានការ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,នាំចេញសិទ្ធិផ្ទាល់ខ្លួន apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,មិនមែនមុខទំនិញ DocType: Data Export,Fields Multicheck,វាលច្រើន +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} បញ្ចប់ DocType: Activity Log,Login,ចូល DocType: Web Form,Payments,ការទូទាត់ apps/frappe/frappe/www/qrcode.html,Hi {0},សួស្តី {0} @@ -1434,6 +1494,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ពុ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,កំហុសសិទ្ធិ apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},ឈ្មោះរបស់ {0} មិនអាចមាន {1} DocType: User Permission,Applicable For,កម្មវិធីសម្រាប់ +DocType: Dashboard Chart,From Date,ពីកាលបរិច្ឆេទ apps/frappe/frappe/core/doctype/version/version_view.html,Success,ទទួលបានភាពជោគជ័យ apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,សម័យកាលបានផុតកំណត់ DocType: Kanban Board Column,Kanban Board Column,ក្តារកានបានជួរឈរ @@ -1445,7 +1506,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ជ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; មិនត្រូវបានអនុញ្ញាតក្នុងលក្ខខណ្ឌ DocType: Async Task,Async Task,Async ការងារ DocType: Workflow State,picture,រូបភាព -apps/frappe/frappe/www/complete_signup.html,Complete,ពេញលេញ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ពេញលេញ DocType: DocType,Image Field,វាលរូបភាព DocType: Print Format,Custom HTML Help,ផ្ទាល់ខ្លួនជំនួយរបស់ HTML DocType: LDAP Settings,Default Role on Creation,តួនាទីលំនាំដើមលើការបង្កើត។ @@ -1453,6 +1514,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,រដ្ឋបន្ទាប់ DocType: User,Block Modules,ម៉ូឌុលប្លុក DocType: Print Format,Custom CSS,CSS ផ្ទាល់ +DocType: Energy Point Rule,Apply Only Once,ដាក់ពាក្យសុំតែម្ដង apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,បន្ថែមសេចក្តីអធិប្បាយ DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},មិនអើពើ: {0} ទៅ {1} @@ -1464,6 +1526,7 @@ DocType: Email Account,Default Incoming,លំនាំដើមចូល DocType: Workflow State,repeat,ការធ្វើឡើងវិញ DocType: Website Settings,Banner,បដា apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},តម្លៃត្រូវតែជាផ្នែកមួយនៃ {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,បោះបង់រាល់ឯកសារទាំងអស់ DocType: Role,"If disabled, this role will be removed from all users.","ប្រសិនបើអ្នកបានបិទ, តួនាទីនេះនឹងត្រូវបានយកចេញពីអ្នកប្រើទាំងអស់។" apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,ចូលទៅកាន់ {0} បញ្ជី។ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ជំនួយអំពីស្វែងរក @@ -1472,6 +1535,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,បាន apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ការធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិសម្រាប់ឯកសារនេះត្រូវបានបិទ។ DocType: DocType,Hide Copy,លាក់ចម្លង apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ជម្រះតួនាទីទាំងអស់ +DocType: Server Script,Before Save,មុនពេលរក្សាទុក apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ត្រូវតែមានតែមួយគត់ apps/frappe/frappe/model/base_document.py,Row,ជួរដេក apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & ពុម្ពអ៊ីម៉ែល" @@ -1482,7 +1546,6 @@ DocType: Chat Profile,Offline,ក្រៅបណ្តាញ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},បាននាំចូលដោយជោគជ័យ {0} DocType: User,API Key,កូនសោ API DocType: Email Account,Send unsubscribe message in email,ផ្ញើសារជាវជាប្រចាំនៅក្នុងអ៊ីមែល -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,កែសម្រួលចំណងជើង apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname ដែលនឹងត្រូវបានចង្អុលបង្ហាញសម្រាប់វាលតំណនេះ។ apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,ឯកសារដែលបានផ្ដល់ទៅឱ្យអ្នកនិងដោយអ្នក។ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,អ្នកក៏អាចចម្លង - បិទភ្ជាប់នេះ។ @@ -1514,8 +1577,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,ភ្ជាប់រូបភាព DocType: Workflow State,list-alt,បញ្ជីធៀបទៅនឹងនីវ៉ូទឹក apps/frappe/frappe/www/update-password.html,Password Updated,ពាក្យសម្ងាត់ដែលបានធ្វើបច្ចុប្បន្នភាព +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,តំឡើង> សិទ្ធិអ្នកប្រើប្រាស់ apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ជំហានដើម្បីផ្ទៀងផ្ទាត់ការចូលរបស់អ្នក apps/frappe/frappe/utils/password.py,Password not found,រកមិនឃើញការពាក្យសម្ងាត់ +DocType: Webhook,Webhook Secret,Webhook សម្ងាត់ DocType: Data Migration Mapping,Page Length,ប្រវែងទំព័រ DocType: Email Queue,Expose Recipients,ឈមមុខនឹងអ្នកទទួល apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,បន្ថែមខាងចុងដើម្បីជាការចាំបាច់សម្រាប់សំបុត្រចូល @@ -1542,6 +1607,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,របស់ប្រព័ន្ធ DocType: Web Form,Max Attachment Size (in MB),ទំហំឯកសារភ្ជាប់អតិបរមា (នៅក្នុងមេកាបៃ) apps/frappe/frappe/www/login.html,Have an account? Login,មានគណនីទេឬ? ចូល +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,កំណត់ការបោះពុម្ព ... DocType: Workflow State,arrow-down,ព្រួញចុះ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ជួរដេក {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},អ្នកប្រើមិនត្រូវបានអនុញ្ញាតឱ្យលុប {0} {1} @@ -1576,11 +1642,12 @@ DocType: Workflow State,hand-down,ដៃចុះ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",រកមិនឃើញវាលដែលអាចត្រូវបានប្រើជាជួរឈរកានបាន។ ប្រើទម្រង់ប្តូរតាមបំណងដើម្បីបន្ថែមវាលផ្ទាល់ខ្លួននៃប្រភេទ "ជ្រើសរើស" ។ DocType: Address,GST State,រដ្ឋជីអេសធី apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: មិនអាចកំណត់ដោយមិនបានដាក់ស្នើបោះបង់ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),អ្នកប្រើប្រាស់ ({0}) DocType: Website Theme,Theme,ស្បែក DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,ប្តូរទិស URI ដែលបានចងទៅ Auth ក្រម apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,បើកជំនួយ។ DocType: DocType,Is Submittable,តើការ Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ការនិយាយថ្មី +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,ការនិយាយថ្មី apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,គ្មានទំនាក់ទំនង Google ថ្មីបានធ្វើសមកាលកម្មទេ។ DocType: File,Uploaded To Google Drive,បានផ្ទុកឡើងទៅថាសហ្គូហ្គល។ apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,តម្លៃសម្រាប់វាលធីកអាចជា 0 ឬ 1 @@ -1591,7 +1658,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,ដាក់ឈ្ម DocType: Workflow State,Inbox,ប្រអប់ទទួល DocType: Kanban Board Column,Red,ពណ៌ក្រហម DocType: Workflow State,Tag,ស្លាក -DocType: Custom Script,Script,ស្គ្រីប +DocType: Report,Script,ស្គ្រីប apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ឯកសារមិនអាចរក្សាទុកបានទេ។ DocType: Energy Point Rule,Maximum Points,ពិន្ទុអតិបរមា។ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,ការកំណត់របស់ខ្ញុំ @@ -1619,9 +1686,12 @@ DocType: Email Queue,Email Queue,ជួរអ៊ីម៉ែល DocType: Address,Haryana,រដ្ឋ Haryana apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,តួនាទីអាចត្រូវបានកំណត់សម្រាប់អ្នកប្រើពីទំព័រអ្នកប្រើប្រាស់របស់ពួកគេ។ apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,បន្ថែមសេចក្តីអធិប្បាយ +DocType: Dashboard Chart,Select Date Range,ជ្រើសជួរកាលបរិច្ឆេទ DocType: DocField,Mandatory,ជាចាំបាច់ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ម៉ូឌុលនាំ +DocType: Scheduled Job Type,Monthly Long,ឡុងប្រចាំខែ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: មិនមានសំណុំសិទ្ធិជាមូលដ្ឋាន +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,សូមផ្ញើអ៊ីមែលទៅ {0} ដើម្បីភ្ជាប់វានៅទីនេះ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","អត្ថន័យនៃការដាក់ស្នើ, បោះបង់ធ្វើវិសោធនកម្ម" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ដើម្បីធ្វើ @@ -1629,7 +1699,6 @@ DocType: Test Runner,Module Path,ផ្លូវម៉ូឌុល DocType: Milestone Tracker,Track milestones for any document,តាមដានទិសដៅសម្រាប់ឯកសារណាមួយ។ DocType: Social Login Key,Identity Details,ព័ត៌មានលំអិតអត្តសញ្ញាណ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,បង្ហាញផ្ទាំងគ្រប់គ្រង។ -apps/frappe/frappe/desk/form/assign_to.py,New Message,សារថ្មី DocType: File,Preview HTML,មើលជាមុនរបស់ HTML DocType: Desktop Icon,query-report,របាយការណ៍សំណួរ DocType: Data Import Beta,Template Warnings,ការព្រមានគំរូ។ @@ -1640,18 +1709,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,ភ្ជា apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,កែសម្រួលការកំណត់របាយការណ៍អ៊ីម៉ែលស្វ័យប្រវត្តិ DocType: Chat Room,Message Count,ចំនួនសារ DocType: Workflow State,book,សៀវភៅ +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ត្រូវបានភ្ជាប់ជាមួយឯកសារដែលបានដាក់ស្នើដូចខាងក្រោមៈ {2} DocType: Communication,Read by Recipient,អានដោយអ្នកទទួល DocType: Website Settings,Landing Page,ទំព័រចុះចត apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,កំហុសក្នុងស្គ្រីបផ្ទាល់ខ្លួន apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,ឈ្មោះ {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,គ្មានសិទ្ធិកំណត់សម្រាប់លក្ខណៈវិនិច្ឆ័យនេះ។ DocType: Auto Email Report,Auto Email Report,របាយការណ៍អ៊ីមែលដោយស្វ័យប្រវត្តិ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,បានចែករំលែកឯកសារថ្មី apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,លុបមតិយោបល់? DocType: Address Template,This format is used if country specific format is not found,ទ្រង់ទ្រាយនេះត្រូវបានប្រើប្រសិនបើទ្រង់ទ្រាយជាក់លាក់គឺមិនត្រូវបានរកឃើញថាប្រទេស DocType: System Settings,Allow Login using Mobile Number,អនុញ្ញាតការចូលដោយប្រើលេខទូរស័ព្ទដៃ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,អ្នកមិនមានសិទ្ធិគ្រប់គ្រាន់ក្នុងការចូលដំណើរការធនធាននេះ។ សូមទាក់ទងអ្នកគ្រប់គ្រងរបស់អ្នកដើម្បីទទួលបានការចូលដំណើរការ។ DocType: Custom Field,Custom,ផ្ទាល់ខ្លួន DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",ប្រសិនបើបើកដំណើរការអ្នកប្រើដែលចូលពីអាស័យដ្ឋាន IP ដែលបានដាក់កម្រិតនឹងមិនត្រូវបានជូនដំណឹងសម្រាប់ Two Factor Auth ទេ +DocType: Server Script,After Cancel,បន្ទាប់ពីបោះបង់ DocType: Auto Repeat,Get Contacts,ទទួលបានទំនាក់ទំនង apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ប្រកាសបានដាក់នៅក្រោម {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,រំលងជួរឈរគ្មានចំណងជើង។ @@ -1662,6 +1734,7 @@ DocType: User,Login After,ចូលបន្ទាប់ពី DocType: Print Format,Monospace,ដកឃ្លា DocType: Letter Head,Printing,ការបោះពុម្ព DocType: Workflow State,thumbs-up,មេដៃឡើង +DocType: Notification Log,Mention,និយាយ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ពុម្ពអក្សរ apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,ភាពជាក់លាក់គួរតែត្រូវបានរវាង 1 និងទី 6 @@ -1669,7 +1742,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,និង apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},របាយការណ៍នេះត្រូវបានបង្កើតនៅ {0} DocType: Error Snapshot,Frames,ស៊ុម -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ការចាត់តាំង +DocType: Notification Log,Assignment,ការចាត់តាំង DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,រូបភាពភ្ជាប់ DocType: Auto Email Report,Report Filters,តម្រងរបាយការណ៍ @@ -1686,7 +1759,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,មិនអាចធ្វើឱ្យទាន់សម័យដែលព្រឹត្តិការណ៍ apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,លេខកូដផ្ទៀងផ្ទាត់ត្រូវបានផ្ញើទៅអាសយដ្ឋានអ៊ីមែលដែលបានចុះឈ្មោះរបស់អ្នក។ apps/frappe/frappe/core/doctype/user/user.py,Throttled,បិទ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,គោលដៅរបស់អ្នក apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","តម្រងត្រូវមាន 4 តម្លៃ (DOCTYPE, fieldname ប្រតិបត្តិករតម្លៃ): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},គ្មានឈ្មោះដែលបានបញ្ជាក់សម្រាប់ {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,អនុវត្តវិធានចាត់តាំង។ apps/frappe/frappe/utils/bot.py,show,បង្ហាញ apps/frappe/frappe/utils/data.py,Invalid field name {0},ឈ្មោះវាលមិនត្រឹមត្រូវ {0} @@ -1696,7 +1771,6 @@ DocType: Workflow State,text-height,កម្ពស់អត្ថបទ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ការធ្វើផែនទីផែនការធ្វើចំណាកស្រុក apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,ចាប់ផ្តើមFrappé ... DocType: Web Form Field,Max Length,ប្រវែងអតិបរមា -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},សម្រាប់ {0} {1} DocType: Print Format,Jinja,ជីនចា។ DocType: Workflow State,map-marker,ផែនទីបង្គោល apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ដាក់ស្នើនូវបញ្ហា @@ -1741,7 +1815,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,បើកត apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,ភាសារបស់អ្នក DocType: Dashboard Chart,Average,មធ្យម។ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,បន្ថែមជួរដេក -DocType: Tag Category,Doctypes,DOCTYPE apps/frappe/frappe/public/js/frappe/form/print.js,Printer,ម៉ាស៊ីនព្រីន។ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,សំណួរត្រូវតែមានការជ្រើស DocType: Auto Repeat,Completed,បានបញ្ចប់ @@ -1800,6 +1873,7 @@ DocType: GCalendar Account,Next Sync Token,សមកាលកម្មសំង DocType: Energy Point Settings,Energy Point Settings,ការកំណត់ចំណុចថាមពល។ DocType: Async Task,Succeeded,ទទួលបានជោគជ័យ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},វាលដែលចាំបាច់តម្រូវឱ្យមាននៅ {0} +DocType: Onboarding Slide Field,Align,តម្រឹម apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,សិទ្ធិកំណត់ឡើងសម្រាប់ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,អ្នកប្រើនិងសិទ្ធិ DocType: S3 Backup Settings,S3 Backup Settings,ការកំណត់បម្រុងទុក S3 @@ -1816,7 +1890,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ឈ្មោះទ្រង់ទ្រាយបោះពុម្ពថ្មី។ apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ចុចលើតំណភ្ជាប់ខាងក្រោមដើម្បីអនុម័តលើសំណើរ។ DocType: Workflow State,align-left,តម្រឹមឆ្វេង +DocType: Onboarding Slide,Action Settings,ការកំណត់សកម្មភាព DocType: User,Defaults,លំនាំដើម +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","សម្រាប់ការប្រៀបធៀបប្រើ> ៥, ១០ ឬ = ៣២៤ ។ សម្រាប់ជួរប្រើ 5:10 (សម្រាប់តម្លៃចន្លោះពី 5 និង 10) ។" DocType: Energy Point Log,Revert Of,ត្រឡប់នៃ។ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,បញ្ចូលចូលគ្នាជាមួយនឹងការដែលមានស្រាប់ DocType: User,Birth Date,ថ្ងៃខែឆ្នាំកំណើត @@ -1871,6 +1947,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ក្នុង DocType: Notification,Value Change,តម្លៃរបស់ការផ្លាស់ប្តូរ DocType: Google Contacts,Authorize Google Contacts Access,ផ្តល់សិទ្ធិចូលប្រើទំនាក់ទំនង Google ។ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,បង្ហាញតែវាលលេខពីរបាយការណ៍ +apps/frappe/frappe/utils/data.py,1 week ago,១ សប្តាហ៍មុន DocType: Data Import Beta,Import Type,ប្រភេទនាំចូល។ DocType: Access Log,HTML Page,ទំព័រ HTML ។ DocType: Address,Subsidiary,ក្រុមហ៊ុនបុត្រសម្ព័ន្ធ @@ -1880,7 +1957,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,ដោយមានក្បាលលិខិត apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ម៉ាស៊ីនបម្រើសំបុត្រចេញត្រឹមត្រូវឬកំពង់ផែ DocType: Custom DocPerm,Write,ការសរសេរ -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,មានតែអ្នកគ្រប់គ្រងត្រូវបានអនុញ្ញាតឱ្យបង្កើតសំណួរ / របាយការណ៏ស្គ្រីប apps/frappe/frappe/public/js/frappe/form/save.js,Updating,បង្ដើតថ្មី DocType: Data Import Beta,Preview,មើលជាមុន apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",វាល "តម្លៃ" គឺជាចាំបាច់។ សូមបញ្ជាក់តម្លៃដែលនឹងត្រូវបានធ្វើឱ្យទាន់សម័យ @@ -1890,6 +1966,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,អញ្ DocType: Data Migration Run,Started,បានចាប់ផ្តើម apps/frappe/frappe/permissions.py,User {0} does not have access to this document,អ្នកប្រើប្រាស់ {0} មិនមានសិទ្ធិចូលប្រើឯកសារនេះទេ។ DocType: Data Migration Run,End Time,ពេលវេលាបញ្ចប់ +DocType: Dashboard Chart,Group By Based On,ដាក់ជាក្រុមតាមមូលដ្ឋាន apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ជ្រើសឯកសារភ្ជាប់ apps/frappe/frappe/model/naming.py, for {0},សម្រាប់ {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបោះពុម្ពឯកសារនេះ @@ -1931,6 +2008,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ផ្ទៀងផ្ DocType: Workflow Document State,Update Field,វាលធ្វើឱ្យទាន់សម័យ DocType: Chat Profile,Enable Chat,បើកការជជែក DocType: LDAP Settings,Base Distinguished Name (DN),មូលដ្ឋានឈ្មោះកិត្តិយស (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ទុកឱ្យការសន្ទនានេះ apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ជម្រើសមិនត្រូវបានកំណត់សម្រាប់វាលតំណ {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,ជួរ / កម្មករ។ @@ -1997,12 +2075,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,មិនអនុញ្ញាតឱ្យចូលនៅពេលនេះ DocType: Data Migration Run,Current Mapping Action,សកម្មភាពផ្គូផ្គងបច្ចុប្បន្ន DocType: Dashboard Chart Source,Source Name,ឈ្មោះប្រភព -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,គ្មានគណនីអ៊ីមែលដែលទាក់ទងនឹងអ្នកប្រើប្រាស់។ សូមបន្ថែមគណនីនៅក្រោមអ្នកប្រើ> ប្រអប់ទទួលអ៊ីម៉ែល។ DocType: Email Account,Email Sync Option,ធ្វើសមកាលកម្មជម្រើសអ៊ីម៉ែល apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,ជួរដេកលេខ DocType: Async Task,Runtime,ពេលរត់ DocType: Post,Is Pinned,ត្រូវបានខ្ទាស់ DocType: Contact Us Settings,Introduction,សេចក្តីផ្តើម +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,ត្រូវការជំនួយ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ពិនទូទាំងពិភពលោក។ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,តាមដានដោយ DocType: LDAP Settings,LDAP Email Field,បម្រើ LDAP វាលអ៊ីមែល @@ -2012,7 +2090,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,រួច DocType: User Email,Enable Outgoing,អនុញ្ញាតឱ្យចេញ DocType: Address,Fax,ទូរសារ apps/frappe/frappe/config/customization.py,Custom Tags,ស្លាកផ្ទាល់ខ្លួន -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីមែលមិនត្រូវបានរៀបចំទេ។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីតំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល DocType: Comment,Submitted,ផ្តល់ជូន DocType: Contact,Pulled from Google Contacts,ទាញចេញពី Google ទំនាក់ទំនង។ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,ក្នុងសំណើត្រឹមត្រូវ @@ -2033,9 +2110,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ទំព apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,ផ្តល់តម្លៃដល់ខ្ញុំ DocType: DocField,Dynamic Link,តំណថាមវន្ត apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ចុចគ្រាប់ចុច Alt ដើម្បីកេះផ្លូវកាត់បន្ថែមនៅក្នុងមឺនុយនិងរបារចំហៀង។ +DocType: Dashboard Chart,To Date,ដើម្បីកាលបរិច្ឆេទ DocType: List View Setting,List View Setting,ការកំណត់ទិដ្ឋភាពបញ្ជី។ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,បរាជ័យក្នុងការងារបង្ហាញ -DocType: Event,Details,ពត៌មានលំអិត +DocType: Scheduled Job Log,Details,ពត៌មានលំអិត DocType: Property Setter,DocType or Field,ចង្អុលបង្ហាញឬវាល apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,អ្នកបានទុកឯកសារនេះ។ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,ពណ៌ចម្បង។ @@ -2043,7 +2121,6 @@ DocType: Communication,Soft-Bounced,ទន់ Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",ប្រសិនបើបានបើកអ្នកប្រើទាំងអស់អាចចូលពីអាសយដ្ឋាន IP ណាមួយដោយប្រើ Two Autor Auth ។ នេះក៏អាចត្រូវបានកំណត់សម្រាប់តែអ្នកប្រើជាក់លាក់នៅក្នុងទំព័រអ្នកប្រើ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ហាក់ដូចជាកូនសោគន្លឹះសម្ងាត់បោះពុម្ពផ្សាយឬជាខុស !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,ជំនួយរហ័សសម្រាប់ការកំណត់សិទ្ធិ -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE ដើម្បីផ្ដល់ស្លាក apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,បង្ហាញលាប់ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,អ៊ីម៉ែលដែលត្រូវបានផ្លាស់ទីទៅធុងសំរាម DocType: Report,Report Builder,កម្មវិធីបង្កើតរបាយការណ៍ @@ -2058,6 +2135,7 @@ DocType: Workflow State,Upload,ផ្ទុកឡើង DocType: User Permission,Advanced Control,ការត្រួតពិនិត្យកម្រិតខ្ពស់ DocType: System Settings,Date Format,ទ្រង់ទ្រាយកាលបរិច្ឆេទ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,មិនបានបោះពុម្ភផ្សាយ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញគំរូអាសយដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការតំឡើង> បោះពុម្ពនិងយីហោ> គំរូអាសយដ្ឋាន។ apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",សកម្មភាពសម្រាប់លំហូរការងារ (ឧយល់ព្រមបោះបង់) ។ DocType: Data Import,Skip rows with errors,រំលងជួរដេកដែលមានកំហុស DocType: Workflow State,flag,ទង់ជាតិ @@ -2067,7 +2145,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ប apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,លោតទៅវាល។ DocType: Contact Us Settings,Forward To Email Address,បញ្ចូនបន្តទៅអាសយដ្ឋានអ៊ីម៉ែ DocType: Contact Phone,Is Primary Phone,គឺជាទូរស័ព្ទបឋម។ -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,សូមផ្ញើអ៊ីមែលទៅ {0} ដើម្បីភ្ជាប់វានៅទីនេះ។ DocType: Auto Email Report,Weekdays,ថ្ងៃធ្វើការ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} កំណត់ត្រានឹងត្រូវបាននាំចេញ។ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,វាលចំណងជើងត្រូវតែជា fieldname ដែលមានសុពលភាព @@ -2075,7 +2152,7 @@ DocType: Post Comment,Post Comment,ដាក់មតិយោបល់ apps/frappe/frappe/config/core.py,Documents,ឯកសារ apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,កំណត់ហេតុសកម្មភាពដោយ DocType: Social Login Key,Custom Base URL,URL ផ្ទាល់ខ្លួន -DocType: Email Flag Queue,Is Completed,ត្រូវបានបញ្ចប់ +DocType: Onboarding Slide,Is Completed,ត្រូវបានបញ្ចប់ apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ទទួលបានវាល apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,កែសម្រួលទម្រង់ DocType: Kanban Board Column,Archived,ទុកក្នុងប័ណ្ណសារ @@ -2086,11 +2163,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",វាលនេះនឹងបង្ហាញតែប៉ុណ្ណោះប្រសិនបើបានកំណត់នៅទីនេះ fieldname តម្លៃឬច្បាប់ដែលមាននេះគឺជាការពិត (ឧទាហរណ៍): myfield eval: doc.myfield == 'តម្លៃរបស់ខ្ញុំ' eval: doc.age> 18 DocType: Social Login Key,Office 365,ការិយាល័យ 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ថ្ងៃនេះ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ថ្ងៃនេះ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",នៅពេលដែលអ្នកបានកំណត់នេះអ្នកប្រើនឹងត្រូវបានចូលដំណើរការឯកសារដែលអាច (ឧ។ ប្រកាសកំណត់ហេតុបណ្ដាញ) ដែលជាកន្លែងដែលតំណនេះមាន (អ្នកសរសេរប្លុកឧ។ ) ។ DocType: Data Import Beta,Submit After Import,ដាក់ស្នើបន្ទាប់ពីនាំចូល។ DocType: Error Log,Log of Scheduler Errors,កំណត់ហេតុនៃកំហុសកម្មវិធីកំណត់ពេល DocType: User,Bio,ជីវប្រវត្តិ +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,តំណជំនួយស្លាយលើទូក DocType: OAuth Client,App Client Secret,កម្មវិធីម៉ាស៊ីនភ្ញៀវសម្ងាត់ apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ដាក់ស្នើ apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,មាតាបិតាគឺជាឈ្មោះនៃឯកសារដែលទិន្នន័យនឹងត្រូវបន្ថែមទៅ។ @@ -2098,7 +2176,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,អក្សរធំ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML ផ្ទាល់ខ្លួន apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,បញ្ចូលឈ្មោះឱ្យថត -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញគំរូអាសយដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការតំឡើង> បោះពុម្ពនិងយីហោ> គំរូអាសយដ្ឋាន។ apps/frappe/frappe/auth.py,Unknown User,អ្នកប្រើមិនស្គាល់ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,ជ្រើសតួនាទី DocType: Comment,Deleted,ដែលបានលុប @@ -2114,7 +2191,7 @@ DocType: Chat Token,Chat Token,លេខសំងាត់ជជែក apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,បង្កើតគំនូសតាង។ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,កុំនាំចូល។ -DocType: Web Page,Center,មជ្ឈមណ្ឌល +DocType: Onboarding Slide Field,Center,មជ្ឈមណ្ឌល DocType: Notification,Value To Be Set,តម្លៃត្រូវបានកំណត់ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},កែសម្រួល {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,កម្រិតទីមួយ @@ -2122,7 +2199,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ឈ្មោះមូលដ្ឋានទិន្នន័យ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,សំណុំបែបបទធ្វើឱ្យស្រស់ DocType: DocField,Select,ជ្រើស -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,មើលកំណត់ហេតុពេញ។ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,មើលកំណត់ហេតុពេញ។ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",កន្សោមពស់ថ្លាន់សាមញ្ញឧទាហរណ៍៖ ស្ថានភាព == 'បើក' ហើយវាយ == 'កំហុស' apps/frappe/frappe/utils/csvutils.py,File not attached,ឯកសារមិនបានភ្ជាប់ apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ការតភ្ជាប់បានដាច់។ លក្ខណៈមួយចំនួនប្រហែលជាមិនដំណើរការ។ @@ -2154,6 +2231,7 @@ DocType: Web Page,HTML for header section. Optional,HTML សម្រាប់ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,លក្ខណៈពិសេសនេះគឺជាម៉ាកថ្មីនិងពិសោធន៍នៅតែមាន apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,ជាអតិបរមា {0} ជួរដេកដែលបានអនុញ្ញាត DocType: Dashboard Chart Link,Chart,គំនូសតាង +DocType: Scheduled Job Type,Cron,ក្រូន DocType: Email Unsubscribe,Global Unsubscribe,លុបឈ្មោះជាសកល apps/frappe/frappe/utils/password_strength.py,This is a very common password.,នេះគឺជាពាក្យសម្ងាត់ជារឿងធម្មតាណាស់។ apps/frappe/frappe/email/doctype/email_group/email_group.js,View,មើល @@ -2170,6 +2248,7 @@ DocType: Data Migration Connector,Hostname,ឈ្មោះម៉ាស៊ីន DocType: Data Migration Mapping,Condition Detail,ពត៌មានលំអិត apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",សម្រាប់រូបិយប័ណ្ណ {0} ចំនួនទឹកប្រាក់ប្រតិបត្តិអប្បបរមាគួរតែ {1} DocType: DocField,Print Hide,បោះពុម្ពលាក់ +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ដល់អ្នកប្រើប្រាស់។ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,បញ្ចូលតម្លៃ DocType: Workflow State,tint,ស្នាម @@ -2235,6 +2314,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR កូដ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,បន្ថែមទៅធ្វើ DocType: Footer Item,Company,ក្រុមហ៊ុន apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},មធ្យមនៃ {0} +DocType: Scheduled Job Log,Scheduled,កំណត់ពេលវេលា DocType: User,Logout from all devices while changing Password,ចេញពីឧបករណ៍ទាំងអស់ខណៈពេលប្តូរពាក្យសម្ងាត់ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ផ្ទៀងផ្ទាត់ពាក្យសម្ងាត់ apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,មានកំហុស @@ -2259,7 +2339,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,សិទ្ធិអ្នកប្រើមានរួចហើយ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},មើល {0} -DocType: User,Hourly,រៀងរាល់ម៉ោង +DocType: Scheduled Job Type,Hourly,រៀងរាល់ម៉ោង apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ចុះឈ្មោះកម្មវិធីម៉ាស៊ីនភ្ញៀវ OAuth DocType: DocField,Fetch If Empty,ទៅយកប្រសិនបើទទេ។ DocType: Data Migration Connector,Authentication Credentials,អត្តសញ្ញាណសម្គាល់អត្តសញ្ញាណ @@ -2270,10 +2350,10 @@ DocType: SMS Settings,SMS Gateway URL,URL ដែលបានសារ SMS Gatewa apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} មិនអាចត្រូវបាន "{2}" ។ វាគួរតែជាផ្នែកមួយនៃ "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ទទួលបានដោយ {0} តាមរយៈច្បាប់ស្វ័យប្រវត្តិ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ឬ {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,អ្នកបានរៀបចំរួចរាល់ហើយ! DocType: Workflow State,trash,ធុងសំរាម DocType: System Settings,Older backups will be automatically deleted,បម្រុងទុកចាស់ជាងនេះនឹងត្រូវបានលុបដោយស្វ័យប្រវត្តិ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,លេខសម្គាល់ការចូលប្រើមិនត្រឹមត្រូវឬកូនសោសម្ងាត់។ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,អ្នកបានបាត់បង់ចំនុចថាមពលមួយចំនួន។ DocType: Post,Is Globally Pinned,ត្រូវបានគេភ្ជាប់ជាសកល apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,សកម្មភាពថ្មីៗ។ DocType: Workflow Transition,Conditions,លក្ខខណ្ឌ @@ -2282,6 +2362,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,បានប DocType: Event,Ends on,បញ្ចប់នៅថ្ងៃ DocType: Payment Gateway,Gateway,ផ្លូវចេញចូល DocType: LDAP Settings,Path to Server Certificate,ផ្លូវទៅវិញ្ញាបនប័ត្រម៉ាស៊ីនមេ។ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript ត្រូវបានបិទនៅលើ browser របស់អ្នក apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,មិនមានសិទ្ធិគ្រប់គ្រាន់ក្នុងការមើលឃើញតំណភ្ជាប់ apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,អាសយដ្ឋានចំណងជើងគឺជាចាំបាច់។ DocType: Google Contacts,Push to Google Contacts,រុញទៅទំនាក់ទំនង Google ។ @@ -2299,7 +2380,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,អឺ - ខាងលិច -១ ។ DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",បើធីកនេះជួរដេកដែលមានទិន្នន័យត្រឹមត្រូវនឹងត្រូវបាននាំចូលហើយជួរដេកមិនត្រឹមត្រូវនឹងត្រូវបានបោះចោលទៅក្នុងឯកសារថ្មីមួយសម្រាប់ឱ្យអ្នកនាំចូលនៅពេលក្រោយ។ apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ឯកសារតែមួយគត់ដែលអាចកែបានដោយអ្នកប្រើនៃតួនាទី -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,អានដោយអ្នកទទួលនៅថ្ងៃ DocType: Blogger,Short Name,ឈ្មោះខ្លី @@ -2331,6 +2411,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,ច DocType: Translation,PR sent,ការិយាល័យទទួលជំនួយផ្ទាល់បានផ្ញើ។ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,មានតែផ្ញើកំណត់ត្រាដែលបានធ្វើបច្ចុប្បន្នភាពនៅម៉ោងចុងក្រោយ X បាន DocType: Communication,Feedback,មតិអ្នក +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ធ្វើឱ្យទាន់សម័យទៅកំណែថ្មី🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,បើកការបកប្រែ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,អ៊ីមែលនេះត្រូវបានបង្កើតដោយស្វ័យប្រវត្តិ DocType: Workflow State,Icon will appear on the button,រូបតំណាងនឹងបង្ហាញនៅលើប៊ូតុង @@ -2368,6 +2449,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,រកម DocType: DocField,Precision,ភាពជាក់លាក់ DocType: Website Slideshow,Slideshow Items,ការបញ្ចាំងស្លាយធាតុ apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,សូមព្យាយាមដើម្បីជៀសវាងពាក្យម្តងហើយម្តងទៀតនិងតួអក្សរ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,ការជូនដំណឹងត្រូវបានបិទ +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,តើអ្នកពិតជាចង់លុបជួរដេកទាំងអស់មែនទេ? DocType: Workflow Action,Workflow State,រដ្ឋលំហូរការងារ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ជួរដេកបន្ថែម apps/frappe/frappe/www/list.py,My Account,គណនីរបស់ខ្ញុំ @@ -2376,6 +2459,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,ថ្ងៃបន្ទាប់ពីការ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,ការតភ្ជាប់ថាស QZ សកម្ម! DocType: Contact Us Settings,Settings for Contact Us Page,ការកំណត់សម្រាប់ទំនាក់ទំនងយើងទំព័រ +DocType: Server Script,Script Type,ប្រភេទស្គ្រីប DocType: Print Settings,Enable Print Server,បើកដំណើរការម៉ាស៊ីនបោះពុម្ភ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} សប្តាហ៍មុន DocType: Email Account,Footer,បាតកថា @@ -2401,8 +2485,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,ព្រមាន & ‧; apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,វាអាចត្រូវបានបោះពុម្ពលើទំព័រជាច្រើន។ DocType: Data Migration Run,Percent Complete,ភាគរយពេញលេញ -DocType: Tag Category,Tag Category,ប្រភេទស្លាក -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","សម្រាប់ការប្រៀបធៀបប្រើ> 5, <10 ឬ = 324 ។ សម្រាប់ជួរប្រើ 5:10 (សម្រាប់តម្លៃចន្លោះពី 5 និង 10) ។" DocType: Google Calendar,Pull from Google Calendar,ទាញពី Google ប្រតិទិន។ apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,សូមជួយ DocType: User,Login Before,ចូលមុនពេល @@ -2412,17 +2494,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,លាក់ចុងសប្តាហ៍ apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,បង្កើតឯកសារកើតឡើងដដែលៗដោយស្វ័យប្រវត្តិ។ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,តើមាន +DocType: Onboarding Slide,ERPNext,ERP បន្ទាប់ DocType: Workflow State,info-sign,ពត៌មានសញ្ញា apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,តម្លៃសម្រាប់ {0} មិនអាចជាបញ្ជីមួយ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",គួរត្រូវបានធ្វើទ្រង់ទ្រាយជារូបិយប័ណ្ណនេះបានយ៉ាងដូចម្តេច? បើមិនកំណត់នឹងប្រើលំនាំដើមរបស់ប្រព័ន្ធ apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ដាក់ស្នើ {0} ឯកសារ? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,អ្នកត្រូវការដើម្បីត្រូវបានកត់ឈ្មោះចូលនិងមានតួនាទីនៃប្រព័ន្ធអ្នកគ្រប់គ្រងដើម្បីអាចចូលដំណើរការបានព័ត៌មានបម្រុងទុក។ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","កំហុសក្នុងការភ្ជាប់ទៅ QZ ថាសកម្មវិធី ...

អ្នកត្រូវមានកម្មវិធីតំឡើង QZ ថាសនិងតំឡើងដើម្បីប្រើមុខងារព្រីនព្រីន។

ចុចត្រង់នេះដើម្បីទាញយកនិងតំឡើង QZ ថាស
សូមចុចនៅទីនេះដើម្បីស្វែងយល់បន្ថែមអំពីការបោះពុម្ពឆៅ ។" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,គូសផែនទីព្រីន។ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។ +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,តើអ្នកចង់លុបចោលឯកសារភ្ជាប់ទាំងអស់ទេ? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),បន្ថែម {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype មិនអាចត្រូវបានផ្លាស់ប្តូរពី {0} ទៅ {1} នៅក្នុងជួរ {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,សិទ្ធិតួនាទីយ៉ាង DocType: Help Article,Intermediate,កម្រិតមធ្យម +apps/frappe/frappe/config/settings.py,Email / Notifications,អ៊ីមែល / ការជូនដំណឹង apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,បានបោះបង់ឯកសារដែលបានស្ដារឡើងវិញជាសេចក្តីព្រាង DocType: Data Migration Run,Start Time,ពេលវេលាចាប់ផ្ដើម apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},មិនអាចលុបឬបោះបង់ដោយសារតែ {0} {1} ត្រូវបានភ្ជាប់ជាមួយ {2} {3} {4} @@ -2438,6 +2524,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,អាសយដ្ឋានអ្នកទទួលមិនត្រឹមត្រូវ DocType: Workflow State,step-forward,ជំហានទៅមុខ DocType: System Settings,Allow Login After Fail,អនុញ្ញាតការចូលបន្ទាប់ពីបរាជ័យ +DocType: DocType Link,DocType Link,តំណភ្ជាប់ប្រភេទឯកសារ DocType: Role Permission for Page and Report,Set Role For,កំណត់តួនាទីសម្រាប់ DocType: GCalendar Account,The name that will appear in Google Calendar,ឈ្មោះដែលនឹងបង្ហាញក្នុងប្រតិទិន Google apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,បន្ទប់ដោយផ្ទាល់ជាមួយ {0} មានរួចហើយ។ @@ -2455,6 +2542,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},បង្ DocType: Contact,Google Contacts,ទំនាក់ទំនង Google ។ DocType: GCalendar Account,GCalendar Account,គណនី GCalendar DocType: Email Rule,Is Spam,នេះគឺជាសារឥតបានការ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,ចុងក្រោយ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},របាយការណ៍ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ការបើកចំហរ {0} DocType: Data Import Beta,Import Warnings,នាំចូលការព្រមាន។ @@ -2466,6 +2554,7 @@ DocType: Workflow State,ok-sign,អីសញ្ញា apps/frappe/frappe/config/settings.py,Deleted Documents,ឯកសារដែលបានលុប apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,ទ្រង់ទ្រាយ CSV គឺប្រកាន់អក្សរតូចធំ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,រូបតំណាងផ្ទៃតុមានរួចហើយ +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,បញ្ជាក់នៅក្នុងអ្វីដែលដែនទាំងអស់គួរតែបង្ហាញ។ ប្រសិនបើគ្មានអ្វីត្រូវបានបញ្ជាក់ស្លាយត្រូវបានបង្ហាញនៅក្នុងដែនទាំងអស់តាមលំនាំដើម។ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ស្ទួន DocType: Newsletter,Create and Send Newsletters,បង្កើតនិងផ្ញើការពិពណ៌នា apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,សូមអរគុណចំពោះការអត្ថាធិប្បាយរបស់អ្នក។ វានឹងត្រូវផ្សព្វផ្សាយបន្ទាប់ពីមានការយល់ព្រម។ @@ -2475,6 +2564,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,លេខសម្គាល់ព្រឹត្តិការណ៍ប្រតិទិនរបស់ Google ។ apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","ឪពុកម្តាយ" បង្ហាញតារាងមេដែលជួរដេកនេះត្រូវតែត្រូវបានបន្ថែម apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,ចំណុចពិនិត្យឡើងវិញ៖ +DocType: Scheduled Job Log,Scheduled Job Log,កំណត់ពេលការងារដែលបានគ្រោងទុក +DocType: Server Script,Before Delete,មុនពេលលុប apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,ចែករំលែកជាមួយ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ភ្ជាប់ឯកសារ / urls និងបន្ថែមក្នុងតារាង។ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,មិនបានរៀបចំសារ @@ -2498,19 +2589,21 @@ DocType: About Us Settings,Settings for the About Us Page,ការកំណត apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ការកំណត់ការទូទាត់ឆ្នូត apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ការកំណត់ការទូទាត់ឆ្នូត apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ព្រីនបានផ្ញើទៅព្រីន! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,ចំណុចថាមពល។ +DocType: Notification Settings,Energy Points,ចំណុចថាមពល។ +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},ពេលវេលា {0} ត្រូវតែជាទ្រង់ទ្រាយ៖ {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ឧ pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,បង្កើតកូនសោ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,វានឹងលុបទិន្នន័យរបស់អ្នកជាអចិន្ត្រៃយ៍។ DocType: DocType,View Settings,ការកំណត់ទិដ្ឋភាព +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,សេចក្តីជូនដំណឹងថ្មី DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,ស្នើសុំរចនាសម្ព័ន្ធ។ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,វិធីសាស្រ្តអ្នកត្រួតពិនិត្យបានបាត់ DocType: Personal Data Deletion Request,Pending Verification,ការផ្ទៀងផ្ទាត់រង់ចាំ DocType: Website Meta Tag,Website Meta Tag,គេហទំព័រស្លាកមេតា។ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",ប្រសិនបើច្រកមិនមានស្តង់ដារ (ឧ។ 587) ។ បើនៅលើ Google ពពកសាកល្បងច្រក 2525 ។ apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",បញ្ចប់កាលបរិច្ឆេតបញ្ចប់ដោយសារវាមិនអាចនៅក្នុងអតីតកាលសម្រាប់ទំព័រដែលបានបោះពុម្ពផ្សាយ។ DocType: User,Send Me A Copy of Outgoing Emails,ផ្ញើមកខ្ញុំនូវចំលងអ៊ីមែលចេញ -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.,បន្ថែម Google បានវិភាគលេខឧ។ UA បាន-89XXX57-1 ។ សូមស្វែងរកជំនួយនៅលើ Google បានវិភាគសម្រាប់ព័ត៌មានបន្ថែម។ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,ពាក្យសម្ងាត់ដែលមិនអាចមានរយៈពេលយូរជាង 100 តួអក្សរ DocType: OAuth Client,App Client ID,លេខសម្គាល់កម្មវិធីម៉ាស៊ីនភ្ញៀវ @@ -2539,6 +2632,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,ពាក្ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ចែករំលែកឯកសារនេះជាមួយនឹង {1} DocType: Website Settings,Brand Image,រូបភាពយីហោ DocType: Print Settings,A4,រថយន្ត A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,ពុម្ពនាំចូលគួរតែមានបឋមកថានិងនៅជួរដេកមួយជួរ។ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,ប្រតិទិន Google ត្រូវបានកំណត់រចនាសម្ព័ន្ធ។ apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",ការរៀបចំនៃរបាររុករកកំពូលរបស់បាតកថានិងស្លាកសញ្ញា។ DocType: Web Form Field,Max Value,តម្លៃអតិបរមា @@ -2547,6 +2641,7 @@ DocType: Auto Repeat,Preview Message,មើលសារជាមុន DocType: User Social Login,User Social Login,ការចូលសង្គមរបស់អ្នកប្រើប្រាស់ DocType: Contact,All,ទាំងអស់ DocType: Email Queue,Recipient,អ្នកទទួល +DocType: Webhook,Webhook Security,សុវត្ថិភាព Webhook DocType: Communication,Has Attachment,មានឯកសារភ្ជាប់ DocType: Address,Sales User,ការលក់របស់អ្នកប្រើប្រាស់ apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,អូសនិងទម្លាក់ដើម្បីកសាងឧបករណ៍និងប្ដូរតាមបំណងទ្រង់ទ្រាយបោះពុម្ព។ @@ -2638,14 +2733,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,វេបសាយធា apps/frappe/frappe/model/workflow.py,Self approval is not allowed,មិនអនុញ្ញាតឱ្យមានការយល់ព្រមពីខ្លួនឯងឡើយ DocType: GSuite Templates,Template ID,លេខសម្គាល់ពុម្ពគំរូ apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,ការរួមបញ្ចូលប្រភេទជំនួយ ( {0} ) និងប្រភេទឆ្លើយតប ( {1} ) មិនត្រូវបានអនុញ្ញាត -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},សារថ្មីពី {0} DocType: Portal Settings,Default Role at Time of Signup,តួនាទីលំនាំដើមនៅពេលនៃការចូលរួម DocType: DocType,Title Case,ចំណងជើងករណី apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,ចុចលើតំណខាងក្រោមដើម្បីទាញយកទិន្នន័យរបស់អ្នក។ apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},បានបើកប្រអប់សំបុត្រអ៊ីម៉ែលសម្រាប់អ្នកប្រើប្រាស់ {0} DocType: Data Migration Run,Data Migration Run,ការធ្វើអន្តោប្រវេសន៍ទិន្នន័យរត់ DocType: Blog Post,Email Sent,អ៊ីម៉ែល -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,ចាស់ជាង។ DocType: DocField,Ignore XSS Filter,មិនអើពើតម្រង XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,បានយកចេញ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,កំណត់ការបម្រុងទុក Dropbox @@ -2700,6 +2793,7 @@ DocType: Async Task,Queued,បានដាក់ជាជួរ DocType: Braintree Settings,Use Sandbox,ប្រើសេនបក់ apps/frappe/frappe/utils/goal.py,This month,ខែនេះ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ញូទ្រង់ទ្រាយបោះពុម្ពផ្ទាល់ខ្លួន +DocType: Server Script,Before Save (Submitted Document),មុនពេលរក្សាទុក (ឯកសារដែលបានបញ្ជូន) DocType: Custom DocPerm,Create,បង្កើត apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,មិនមានធាតុបន្ថែមដើម្បីបង្ហាញទេ។ apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,ទៅកាន់កំណត់ត្រាមុន។ @@ -2757,6 +2851,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ផ្លាស់ទីទៅធុងសំរាម DocType: Web Form,Web Form Fields,វាលសំណុំបែបបទបណ្ដាញ DocType: Data Import,Amended From,ធ្វើវិសោធនកម្មពី +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,បន្ថែមតំណវីដេអូជំនួយក្នុងករណីដែលអ្នកប្រើប្រាស់មិនដឹងអំពីអ្វីដែលត្រូវបំពេញនៅក្នុងស្លាយ។ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},ព្រមាន & ‧;: មិនអាចរកឃើញ {0} ក្នុងតារាងណាមួយដែលទាក់ទងទៅនឹង {1} DocType: S3 Backup Settings,eu-north-1,អឺ - ខាងជើង -១ apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ឯកសារនេះត្រូវបានរៀបជាជួរសម្រាប់ការប្រតិបត្តិ។ សូមព្យាយាមម្ដងទៀត @@ -2779,6 +2874,7 @@ DocType: Blog Post,Blog Post,ភ្នំពេញប៉ុស្តិ៍កំ DocType: Access Log,Export From,នាំចេញពី។ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ស្វែងរកកំរិតខ្ពស់ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យមើលព្រឹត្តិប័ត្រ។ +DocType: Dashboard Chart,Group By,ក្រុមតាម DocType: User,Interests,ចំណាប់អារម្មណ៍ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,សេចក្តីណែនាំអំពីការកំណត់ពាក្យសម្ងាត់ត្រូវបានគេបញ្ជូនទៅកាន់អ៊ីម៉ែលរបស់អ្នក DocType: Energy Point Rule,Allot Points To Assigned Users,ពិន្ទុទាំងអស់ដើម្បីចាត់តាំងអ្នកប្រើប្រាស់។ @@ -2794,6 +2890,7 @@ DocType: Assignment Rule,Assignment Rule,វិធានចាត់តាំង apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},ឈ្មោះអ្នកប្រើដែលបានស្នើ: {0} DocType: Assignment Rule Day,Day,ថ្ងៃ apps/frappe/frappe/public/js/frappe/desk.js,Modules,ម៉ូឌុល +DocType: DocField,Mandatory Depends On,ចាំបាច់អាស្រ័យលើ apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ទទួលបានភាពជោគជ័យក្នុងការទូទាត់ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,គ្មានសំបុត្រ {0} DocType: OAuth Bearer Token,Revoked,ដកហូត @@ -2801,6 +2898,7 @@ DocType: Web Page,Sidebar and Comments,របារចំហៀងនិងក apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",នៅពេលដែលអ្នកធ្វើវិសោធនកម្មឯកសារមួយបន្ទាប់ពីការបោះបង់និងរក្សាទុកវាវានឹងទទួលបានមួយចំនួនថ្មីដែលជាកំណែនៃចំនួនចាស់។ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",មិនអនុញ្ញាតឱ្យភ្ជាប់ឯកសារ {0} សូមអនុញ្ញាតអនុញ្ញាតបោះពុម្ពសម្រាប់ {0} នៅក្នុងការកំណត់បោះពុម្ព +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីមែលមិនត្រូវបានរៀបចំទេ។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីតំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},មើលឯកសារនៅ {0} DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ @@ -2816,13 +2914,13 @@ DocType: Currency,Fraction,ប្រភាគ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ព្រឹត្តិការណ៍បានធ្វើសមកាលកម្មជាមួយប្រតិទិន Google ។ DocType: LDAP Settings,LDAP First Name Field,ឈ្មោះវាលដំបូងរបស់ LDAP DocType: Contact,Middle Name,ជាឈ្មោះកណ្តាល +DocType: DocField,Property Depends On,ទ្រព្យសម្បត្តិអាស្រ័យលើ DocType: Custom Field,Field Description,វាលទិសដៅ apps/frappe/frappe/model/naming.py,Name not set via Prompt,មិនបានកំណត់តាមរយៈការពីឈ្មោះវីនដូ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ប្រអប់ទទួលអ៊ីម៉ែល apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","កំពុងធ្វើបច្ចុប្បន្នភាព {0} នៃ {1}, {2}" DocType: Auto Email Report,Filters Display,បង្ហាញតម្រង apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",វាល "ដែលបានធ្វើវិសោធនកម្ម - ត្រូវតែមានវត្តមាន" ដើម្បីធ្វើវិសោធនកម្ម។ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} បានកោតសរសើរចំពោះការងាររបស់អ្នកលើ {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,រក្សាទុកតម្រង។ DocType: Address,Plant,រោងចក្រ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ឆ្លើយតបទាំងអស់ @@ -2863,11 +2961,11 @@ DocType: Workflow State,folder-close,ថតដែលបានបិទ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,របាយការណ៍: DocType: Print Settings,Print taxes with zero amount,បោះពុម្ពពន្ធដែលមានលេខសូន្យ apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} មិនត្រូវបានអនុញ្ញាតឱ្យត្រូវបានប្តូរឈ្មោះ +DocType: Server Script,Before Insert,មុនពេលបញ្ចូល DocType: Custom Script,Custom Script,ស្គ្រីបផ្ទាល់ខ្លួន DocType: Address,Address Line 2,អាសយដ្ឋានបន្ទាត់ទី 2 DocType: Address,Reference,ឯកសារយោង apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,បានផ្ដល់តម្លៃទៅ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមរៀបចំគណនីអ៊ីមែលលំនាំដើមពីតំឡើង> អ៊ីមែល> គណនីអ៊ីមែល DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ពត៌មានលំអិតផែនទីអន្តោប្រវេសន៍ទិន្នន័យ DocType: Data Import,Action,សកម្មភាព DocType: GSuite Settings,Script URL,URL ស្គ្រីប @@ -2893,11 +2991,13 @@ DocType: User,Api Access,ការចូលដំណើរការ Api DocType: DocField,In List View,នៅក្នុងទិដ្ឋភាពបញ្ជី DocType: Email Account,Use TLS,ការប្រើប្រាស់ឱ្យ TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,ការចូលឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ +DocType: Scheduled Job Type,Weekly Long,ឡុងប្រចាំសប្តាហ៍ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ទំព័រគំរូទាញយក apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,បន្ថែម JavaScript ផ្ទាល់ខ្លួនទៅទម្រង់។ ,Role Permissions Manager,កម្មវិធីគ្រប់គ្រងសិទ្ធិតួនាទីយ៉ាង apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ឈ្មោះនៃទ្រង់ទ្រាយបោះពុម្ពថ្មី apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,បិទ / បើករបារចំហៀង +DocType: Server Script,After Save (Submitted Document),បន្ទាប់ពីរក្សាទុក (ឯកសារបញ្ជូន) DocType: Data Migration Run,Pull Insert,ទាញបញ្ចូល DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ពិន្ទុអតិបរិមាត្រូវបានអនុញ្ញាតបន្ទាប់ពីគុណនឹងចំនុចគុណ (ចំណាំ៖ សំរាប់គ្មានដែនកំណត់ទុកវាលនេះអោយនៅទទេឬកំណត់ ០) @@ -2917,6 +3017,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,កំណត់ហេ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,បម្រើ LDAP មិនបានដំឡើង apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ទាញយកជាមួយនឹងទិន្នន័យ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},បានផ្លាស់ប្តូរតម្លៃសម្រាប់ {0} {1} +DocType: Server Script,Before Cancel,មុននឹងបោះបង់ DocType: Workflow State,hand-right,នៅខាងស្ដាំដៃ DocType: Website Settings,Subdomain,ដែនរង DocType: S3 Backup Settings,Region,តំបន់ @@ -2962,12 +3063,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,ពាក្យសម DocType: S3 Backup Settings,us-east-1,us-east-1 ។ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ប្រកាសដោយ {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",ទៅជួរឈរទ្រង់ទ្រាយដែលបានផ្តល់ឱ្យស្លាកជួរឈរក្នុងសំណួរ។ +DocType: Onboarding Slide,Slide Fields,វាលរុញ DocType: Has Domain,Has Domain,មានដែន DocType: User,Allowed In Mentions,អនុញ្ញាតក្នុងការនិយាយ។ apps/frappe/frappe/www/login.html,Don't have an account? Sign up,មិនមានគណនីមួយ? ចុះឈ្មោះ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,មិនអាចលុបវាលលេខសម្គាល់ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: មិនអាចកំណត់ការផ្តល់តម្លៃឱ្យធ្វើវិសោធនកម្មប្រសិនបើមិនបានបញ្ជូន DocType: Address,Bihar,ប៊ីហារ +DocType: Notification Settings,Subscribed Documents,ឯកសារដែលបានជាវ apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,ការកំណត់អ្នកប្រើ។ DocType: Report,Reference Report,របាយការណ៍យោង។ DocType: Activity Log,Link DocType,DOCTYPE តំណ @@ -2985,6 +3088,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ផ្តល់សិ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ទំព័រដែលអ្នកកំពុងតែស្វែងរកការត្រូវបានបាត់។ នេះអាចជាដោយសារតែវាបានផ្លាស់ប្តូរឬមានកំហុសនៃការសរសេរតំណមួយ។ apps/frappe/frappe/www/404.html,Error Code: {0},កំហុសកូដ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",សេចក្ដីពិពណ៌នាសម្រាប់ឈ្មោះទំព័រក្នុងអត្ថបទធម្មតាតែពីរបន្ទាត់មួយ។ (អតិបរមា 140 តួអក្សរ) +DocType: Server Script,DocType Event,ព្រឹត្តិការណ៍ប្រភេទឯកសារ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} គឺជាវាលចាំបាច់។ DocType: Workflow,Allow Self Approval,អនុញ្ញាតិឱ្យខ្លួនឯងយល់ព្រម DocType: Event,Event Category,ប្រភេទព្រឹត្តិការណ៍ @@ -3001,6 +3105,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ឈ្មោះរបស់អ្នក apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,ការតភ្ជាប់ជោគជ័យ DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ការបញ្ចាំងស្លាយនៃប្រភេទស្លាយបន្តមានរួចហើយ។ DocType: DocType,Default Sort Field,វាលតម្រៀបលំនាំដើម។ DocType: File,Is Folder,តើការថត DocType: Document Follow,DocType,ចង្អុលបង្ហាញ @@ -3037,8 +3142,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,តម DocType: Workflow State,arrow-up,ព្រួញឡើងលើ DocType: Dynamic Link,Link Document Type,ប្រភេទឯកសារភ្ជាប់ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,វាគួរតែមានយ៉ាងហោចណាស់ជួរដេកមួយសម្រាប់តារាង {0} ។ +DocType: Server Script,Server Script,ស្គ្រីបម៉ាស៊ីនមេ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",ដើម្បីកំណត់រចនាសម្ព័ន្ធការធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិបើកដំណើរការ "អនុញ្ញាតឱ្យធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិ" ពី {0} ។ DocType: OAuth Bearer Token,Expires In,ផុតកំណត់នៅ +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",ចំនួនដងដែលអ្នកចង់ធ្វើម្តងទៀតនូវសំណុំវាល (ឧទាហរណ៍៖ ប្រសិនបើអ្នកចង់បានអតិថិជន ៣ នាក់នៅក្នុងស្លាយកំណត់វាលនេះដល់ ៣ ។ មានតែសំណុំដំបូងនៃវាលដែលត្រូវបានបង្ហាញជាចាំបាច់នៅក្នុងស្លាយប៉ុណ្ណោះ) DocType: DocField,Allow on Submit,អនុញ្ញាតឱ្យនៅលើដាក់ស្នើ DocType: DocField,HTML,របស់ HTML DocType: Error Snapshot,Exception Type,ប្រភេទករណីលើកលែង @@ -3048,6 +3155,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,បឋមកថា apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,ព្រឹត្តិការណ៍ជិតមកដល់ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,សូមបញ្ចូលតម្លៃសម្រាប់ចូលដំណើរការកម្មវិធីនិងកម្មវិធីសម្ងាត់គន្លឹះគន្លឹះ +DocType: Email Account,Append Emails to Sent Folder,បន្ថែមអ៊ីមែលទៅថតឯកសារដែលបានផ្ញើ DocType: Web Form,Accept Payment,ព្រមទទួលការទូទាត់ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ជ្រើសធាតុបញ្ជី។ apps/frappe/frappe/config/core.py,A log of request errors,កំណត់ហេតុនៃកំហុសសំណើ @@ -3066,7 +3174,7 @@ DocType: Translation,Contributed,បានចូលរួមចំណែក។ apps/frappe/frappe/config/customization.py,Form Customization,ការកែប្រែទម្រង់។ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,គ្មានសម័យសកម្ម DocType: Web Form,Route to Success Link,ផ្លូវទៅកាន់តំណជោគជ័យ -DocType: Top Bar Item,Right,ស្តាំ +DocType: Onboarding Slide Field,Right,ស្តាំ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,គ្មានព្រឹត្តិការណ៍ជិតមកដល់ DocType: User,User Type,ប្រភេទរបស់អ្នកប្រើប្រាស់ DocType: Prepared Report,Ref Report DocType,រាយការណ៍របាយការ DocType @@ -3083,6 +3191,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,សូមព្ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL ត្រូវតែចាប់ផ្តើមជាមួយ 'http: //' ឬ 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ជម្រើសទី 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,នេះមិនអាចត្រូវបានធ្វើវិញទេ DocType: Workflow State,Edit,កែសម្រួល DocType: Website Settings,Chat Operators,កម្មវិធីប្រតិបត្តិការជជែកកំសាន្ត DocType: S3 Backup Settings,ca-central-1,ca-central-1 ។ @@ -3094,7 +3203,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ការផ្លាស់ប្តូរមិនបានរក្សាទុកដែលអ្នកមាននៅក្នុងសំណុំបែបបទនេះ។ សូមរក្សាទុកមុនពេលអ្នកបន្ត។ DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,លំនាំដើមសម្រាប់ {0} ត្រូវតែជាជម្រើសមួយ -DocType: Tag Doc Category,Tag Doc Category,ស្លាកប្រភេទដុក apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,របាយការណ៍ដែលមានជួរឈរច្រើនជាង ១០ មើលទៅប្រសើរជាងមុននៅក្នុងរបៀបផ្ដេក។ apps/frappe/frappe/database/database.py,Invalid field name: {0},ឈ្មោះវាលមិនត្រឹមត្រូវ៖ {0} DocType: Milestone,Milestone,ដុំថ្ម។ @@ -3103,7 +3211,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},ចូលទៅ {0} apps/frappe/frappe/email/queue.py,Emails are muted,អ៊ីម៉ែលគឺមានបំបិទ apps/frappe/frappe/config/integrations.py,Google Services,សេវាកម្ម Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,បញ្ជា + ឡើង -apps/frappe/frappe/utils/data.py,1 weeks ago,១ សប្តាហ៍មុន +DocType: Onboarding Slide,Slide Description,ការពិពណ៌នាអំពីស្លាយ DocType: Communication,Error,កំហុសក្នុងការ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,សូមបង្កើតសារមុន DocType: Auto Repeat,End Date,កាលបរិច្ឆេទបញ្ចប់ @@ -3124,10 +3232,12 @@ DocType: Footer Item,Group Label,ស្លាកគ្រុប DocType: Kanban Board,Kanban Board,ក្តារកានបាន apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ទំនាក់ទំនង Google ត្រូវបានតំឡើង។ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,កំណត់ត្រា ១ នឹងត្រូវនាំចេញ។ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,គ្មានគណនីអ៊ីមែលដែលទាក់ទងនឹងអ្នកប្រើប្រាស់។ សូមបន្ថែមគណនីនៅក្រោមអ្នកប្រើ> ប្រអប់ទទួលអ៊ីម៉ែល។ DocType: DocField,Report Hide,របាយការលាក់ apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ទិដ្ឋភាពមែកធាងមិនអាចរកបានសម្រាប់ {0} DocType: DocType,Restrict To Domain,ដាក់កម្រិតទៅដែន DocType: Domain,Domain,ដែន +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL ឯកសារមិនត្រឹមត្រូវ។ សូមទាក់ទងអ្នកគ្រប់គ្រងប្រព័ន្ធ។ DocType: Custom Field,Label Help,ស្លាកជំនួយ DocType: Workflow State,star-empty,តារាទទេ apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,កាលបរិច្ឆេទជាញឹកញាប់ជាការងាយស្រួលក្នុងការស្មាន។ @@ -3151,6 +3261,7 @@ DocType: Workflow State,hand-left,ដៃឆ្វេង DocType: Data Import,If you are updating/overwriting already created records.,ប្រសិនបើអ្នកកំពុងធ្វើបច្ចុប្បន្នភាព / សរសេរជាន់លើទិន្នន័យដែលបានបង្កើតរួចហើយ។ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,គឺសកល DocType: Email Account,Use SSL,ប្រើ SSL +DocType: Webhook,HOOK-.####,រកមើល - #### DocType: Workflow State,play-circle,លេងរង្វង់ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,មិនអាចកំណត់ឯកសារឱ្យបានត្រឹមត្រូវ apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",ឃ្លា "អាស្រ័យលើ" មិនត្រឹមត្រូវ @@ -3167,6 +3278,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,បានធ្វើឱ្យស្រស់ចុងក្រោយ។ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,សម្រាប់ប្រភេទឯកសារ។ DocType: Workflow State,arrow-right,ព្រួញស្តាំ +DocType: Server Script,API Method,វិធីសាស្ត្រ API DocType: Workflow State,Workflow state represents the current state of a document.,រដ្ឋដែលតំណាងឱ្យលំហូរការងារបច្ចុប្បន្ននៃរដ្ឋបានឯកសារមួយ។ DocType: Letter Head,Letter Head Based On,លិខិតក្បាលផ្អែកលើ។ apps/frappe/frappe/utils/oauth.py,Token is missing,សញ្ញាសម្ងាត់ត្រូវបានបាត់ @@ -3204,6 +3316,7 @@ DocType: Comment,Relinked,ភ្ជាប់ឡើងវិញ DocType: Print Settings,Compact Item Print,ធាតុបង្រួមបោះពុម្ព DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,ប្តូរទិស URL ដែល +DocType: Onboarding Slide Field,Placeholder,កន្លែងដាក់ DocType: SMS Settings,Enter url parameter for receiver nos,បញ្ចូល URL សម្រាប់ការទទួលប៉ារ៉ាម៉ែត្រ NOS DocType: Chat Profile,Online,លើបណ្តាញ DocType: Email Account,Always use Account's Name as Sender's Name,តែងតែប្រើឈ្មោះគណនីជាឈ្មោះរបស់អ្នកផ្ញើ។ @@ -3213,7 +3326,6 @@ DocType: Workflow State,Home,ទំព័រដើម DocType: OAuth Provider Settings,Auto,ដោយស្វ័យប្រវត្តិ DocType: System Settings,User can login using Email id or User Name,អ្នកប្រើអាចចូលដោយប្រើអ៊ីម៉ែលលេខសម្គាល់ឬឈ្មោះអ្នកប្រើ DocType: Workflow State,question-sign,សំណួរសញ្ញា -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ត្រូវបានបិទ។ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",វាល "ផ្លូវ" គឺចាំបាច់សម្រាប់ការមើលបណ្តាញ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},បញ្ចូលជួរឈរមុន {0} DocType: Energy Point Rule,The user from this field will be rewarded points,អ្នកប្រើប្រាស់ពីវិស័យនេះនឹងទទួលបានរង្វាន់។ @@ -3238,6 +3350,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,បើសិនជ DocType: Data Migration Mapping,Push,រុញ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ទម្លាក់ឯកសារនៅទីនេះ។ DocType: OAuth Authorization Code,Expiration time,ពេលផុតកំណត់ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,បើកឯកសារ DocType: Web Page,Website Sidebar,របារចំហៀងគេហទំព័រ DocType: Web Form,Show Sidebar,បង្ហាញរបារចំហៀង apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,អ្នកត្រូវតែចូលក្នុងដើម្បីចូលដំណើរការនេះបាន {0} ។ @@ -3289,6 +3402,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,ការបោះពុម្ពទ្រង់ទ្រាយ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,បិទ / បើកទិដ្ឋភាពក្រឡាចត្រង្គ apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ទៅកាន់កំណត់ត្រាបន្ទាប់។ +DocType: System Settings,Time Format,ទ្រង់ទ្រាយពេលវេលា apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,លិខិតសម្គាល់ការទូទាត់មិនត្រឹមត្រូវ DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,នេះជាឯកសារគំរូដែលបង្កើតបានតែជួរដេកប៉ុណ្ណោះដែលមានកំហុសមួយចំនួន។ អ្នកគួរតែប្រើឯកសារនេះដើម្បីកែតម្រូវនិងនាំចូល។ apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,កំណត់សិទ្ធិលើប្រភេទឯកសារនិងតួនាទី @@ -3332,12 +3446,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,ឆ្ល apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ទំព័រដែលមានក្នុងតុ (កន្លែងដាក់) DocType: DocField,Collapsible Depends On,ការដួលរលំអាស្រ័យលើ DocType: Print Style,Print Style Name,បោះពុម្ពឈ្មោះរចនាប័ទ្ម +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ក្រុមតាមវាលត្រូវបានទាមទារដើម្បីបង្កើតគំនូសតាងផ្ទៃតាប្លូ DocType: Print Settings,Allow page break inside tables,អនុញ្ញាតការបំបែកទំព័រនៅក្នុងតារាង DocType: Email Account,SMTP Server,ម៉ាស៊ីនបម្រើ SMTP DocType: Print Format,Print Format Help,ការបោះពុម្ពទ្រង់ទ្រាយជំនួយ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} បន្ទប់ត្រូវតែមានអ្នកប្រើយ៉ាងច្រើនបំផុតម្នាក់ ។ DocType: DocType,Beta,បេតា DocType: Dashboard Chart,Count,រាប់។ +DocType: Dashboard Chart,Group By Type,ដាក់ជាក្រុមតាមប្រភេទ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ស្តារឡើងវិញដែលជា {0} {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ជួរដេកផ្សេងទៀតដែលមានស្រាប់ប្រសិនបើអ្នកកំពុងធ្វើឱ្យទាន់សម័យ, សូមជ្រើសរើសយក "សរសេរជាន់លើ" នឹងមិនត្រូវបានលុប។" DocType: DocField,Translatable,អាចបកប្រែបាន @@ -3346,8 +3462,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ព័ត DocType: Web Form,Web Form,សំណុំបែបបទបណ្ដាញ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},កាលបរិច្ឆេទ {0} ត្រូវតែមាននៅក្នុងទ្រង់ទ្រាយ: {1} DocType: About Us Settings,Org History Heading,org ប្រវត្តិសាស្រ្តក្បាល +DocType: Scheduled Job Type,Scheduled Job Type,ប្រភេទការងារដែលបានគ្រោងទុក DocType: Print Settings,Allow Print for Cancelled,អនុញ្ញាតឱ្យបោះពុម្ពសម្រាប់ការលុបចោល DocType: Communication,Integrations can use this field to set email delivery status,រួមបញ្ចូលគ្នាដែលអាចប្រើវាលនេះដើម្បីកំណត់ស្ថានភាពផ្តល់អ៊ីម៉ែល +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,អ្នកមិនមានសិទ្ធិបោះបង់ឯកសារភ្ជាប់ទាំងអស់ទេ។ DocType: Web Form,Web Page Link Text,ទំព័រភ្ជាប់បណ្តាញអត្ថបទ DocType: Page,System Page,ទំព័រប្រព័ន្ធ DocType: Page,System Page,ទំព័រប្រព័ន្ធ @@ -3355,6 +3473,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,គេច apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ការប្ដូរតាមបំណងសម្រាប់ {0} បាន នាំចេញទៅ:
{1} DocType: Website Settings,Include Search in Top Bar,រួមមានការស្វែងរកក្នុងរបារកំពូល +DocType: Scheduled Job Type,Daily Long,ឡុងរាល់ថ្ងៃ DocType: GSuite Settings,Allow GSuite access,អនុញ្ញាតការចូលដំណើរការ GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,ដាក់ឈ្មោះ @@ -3445,6 +3564,7 @@ DocType: Notification,Send days before or after the reference date,ផ្ញើ DocType: User,Allow user to login only after this hour (0-24),អនុញ្ញាតឱ្យអ្នកប្រើដើម្បីចូលតែប៉ុណ្ណោះបន្ទាប់ពីម៉ោងនេះ (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",ចាត់តាំងម្តងមួយៗតាមលំដាប់លំដោយ។ DocType: Integration Request,Subscription Notification,សេចក្ដីជូនដំណឹងការជាវ +DocType: Customize Form Field, Allow in Quick Entry ,អនុញ្ញាតឱ្យចូលរហ័ស apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ឬភ្ជាប់ឯកសារ DocType: Auto Repeat,Start Date,ថ្ងៃចាប់ផ្តើម apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,គុណតម្លៃ @@ -3459,6 +3579,7 @@ DocType: Google Drive,Backup Folder ID,លេខសម្គាល់ថតឯ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,មិននៅក្នុងរបៀបអភិវឌ្ឍន៍! បានកំណត់នៅក្នុង site_config.json ឬធ្វើឱ្យចង្អុលបង្ហាញរបស់អតិថិជន "។ DocType: Workflow State,globe,ពិភពលោក DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,វីដេអូ។ DocType: Assignment Rule,Priority,អាទិភាព DocType: Email Queue,Unsubscribe Param,ឈប់ជាវ Param DocType: DocType,Hide Sidebar and Menu,លាក់របារចំហៀងនិងម៉ឺនុយ។ @@ -3470,6 +3591,7 @@ DocType: DocType,Allow Import (via Data Import Tool),អនុញ្ញាតឱ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,ទសភាគ DocType: Print Settings,Page Settings,ការកំណត់ទំព័រ +DocType: Notification Settings,Notification Settings,ការកំណត់ការជូនដំណឹង apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,កំពុងរក្សាទុក ... apps/frappe/frappe/www/update-password.html,Invalid Password,ពាក្យសម្ងាត់មិនត្រឹមត្រូវ DocType: Contact,Purchase Master Manager,ការទិញកម្មវិធីគ្រប់គ្រងអនុបណ្ឌិត @@ -3484,6 +3606,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,រូបភាពក្បាលលិខិត។ DocType: Address,Party GSTIN,GSTIN គណបក្ស +DocType: Scheduled Job Type,Cron Format,ទ្រង់ទ្រាយស៊ីរ៉ូ apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,របាយការណ៍ {0} DocType: SMS Settings,Use POST,ប្រើ POST DocType: Communication,SMS,សារ @@ -3529,18 +3652,20 @@ DocType: Workflow,Allow approval for creator of the document,អនុញ្ញ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,រក្សាទុករបាយការណ៍។ DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,ចំណុចបញ្ចប់របស់ API +DocType: DocType Action,Server Action,សកម្មភាពម៉ាស៊ីនមេ apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,អ្នកគ្រប់គ្រងបានចូលដំណើរការនៅលើ {0} {1} បានតាមរយៈអាសយដ្ឋាន IP {2} ។ apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,វាលមេត្រូវតែជាឈ្មោះវាលត្រឹមត្រូវ។ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,បានបរាជ័យក្នុងពេលកែប្រែការជាវប្រចាំ DocType: LDAP Settings,LDAP Group Field,អិលឌីភីក្រុមគ្រុប។ +DocType: Notification Subscribed Document,Notification Subscribed Document,ឯកសារដែលបានជាវសេចក្តីជូនដំណឹង apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,ស្មើ apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,ទ្រង់ទ្រាយជា CSV មិនត្រឹមត្រូវ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","កំហុសក្នុងការភ្ជាប់ទៅ QZ ថាសកម្មវិធី ...

អ្នកត្រូវមានកម្មវិធីតំឡើង QZ ថាសនិងតំឡើងដើម្បីប្រើមុខងារព្រីនព្រីន។

ចុចត្រង់នេះដើម្បីទាញយកនិងតំឡើង QZ ថាស
សូមចុចនៅទីនេះដើម្បីស្វែងយល់បន្ថែមអំពីការបោះពុម្ពឆៅ ។" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,កំណត់ចំនួននៃការបម្រុងទុក DocType: DocField,Do not allow user to change after set the first time,ចូរកុំអនុញ្ញាតឱ្យអ្នកប្រើដើម្បីផ្លាស់ប្តូរបន្ទាប់ពីបានកំណត់ជាលើកដំបូង apps/frappe/frappe/utils/data.py,1 year ago,១ ឆ្នាំមុន +DocType: DocType,Links Section,ផ្នែកភ្ជាប់ apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",មើលកំណត់ហេតុនៃការបោះពុម្ពទាញយកនិងនាំចេញព្រឹត្តិការណ៍ទាំងអស់។ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,១ ខែ។ DocType: Contact,Contact,ការទំនាក់ទំនង @@ -3567,15 +3692,18 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,អ៊ីមែលថ្មី DocType: Custom DocPerm,Export,ការនាំចេញ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",ដើម្បីប្រើប្រតិទិនហ្គូហ្គលបើក {0} ។ +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},បន្ថែមវាលភាពអាស្រ័យស្ថានភាពផងដែរ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},បានធ្វើបច្ចុប្បន្នភាពដោយជោគជ័យ {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ ថាសបានបរាជ័យ៖ DocType: Dropbox Settings,Dropbox Settings,ការកំណត់ Dropbox DocType: About Us Settings,More content for the bottom of the page.,មាតិកាបន្ថែមទៀតសម្រាប់ផ្នែកខាងក្រោមនៃទំព័រនេះ។ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ឯកសារនេះត្រូវបានត្រឡប់។ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,ការបម្រុងទុក Google ថាសបានជោគជ័យ។ +DocType: Webhook,Naming Series,ដាក់ឈ្មោះកម្រងឯកសារ DocType: Workflow,DocType on which this Workflow is applicable.,ចង្អុលបង្ហាញនៅលើដែលលំហូរការងារនេះគឺអនុវត្តបាន។ DocType: User,Enabled,បានបើក apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,បរាជ័យក្នុងការបញ្ចប់ការដំឡើង -DocType: Tag Category,Category Name,ប្រភេទឈ្មោះ +DocType: Blog Category,Category Name,ប្រភេទឈ្មោះ apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,ឪពុកម្តាយត្រូវបានទាមទារដើម្បីទទួលបានទិន្នន័យតារាងកុមារ។ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,នាំចូលអតិថិជន DocType: Print Settings,PDF Settings,ការកំណត់ជា PDF @@ -3611,6 +3739,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ប្រតិទិន apps/frappe/frappe/client.py,No document found for given filters,រកឃើញសម្រាប់តម្រងដែលបានផ្តល់ឯកសារគ្មាន apps/frappe/frappe/config/website.py,A user who posts blogs.,អ្នកប្រើដែលបង្ហោះប្លុក។ +DocType: DocType Action,DocType Action,សកម្មភាពប្រភេទឯកសារ apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",មួយទៀត {0} ដែលមានឈ្មោះ {1} មានជ្រើសឈ្មោះមួយទៀត DocType: DocType,Custom?,ផ្ទាល់ខ្លួន? DocType: Website Settings,Website Theme Image,រូបភាពស្បែកវេបសាយ @@ -3620,6 +3749,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},មិន apps/frappe/frappe/config/integrations.py,Backup,បម្រុងទុក apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ប្រភេទឯកសារតម្រូវឱ្យបង្កើតគំនូសតាងផ្ទៃតាប្លូ។ DocType: DocField,Read Only,បានតែអាន +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,មិនអាចបង្កើតលំដាប់ razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,ព្រឹត្តិប័ត្រព័ត៌មានថ្មីមួយ DocType: Energy Point Log,Energy Point Log,កំណត់ហេតុចំណុចថាមពល។ DocType: Print Settings,Send Print as PDF,ផ្ញើការបោះពុម្ពជា PDF @@ -3645,15 +3775,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ប apps/frappe/frappe/www/login.html,Or login with,ឬការចូលជាមួយនឹង DocType: Error Snapshot,Locals,អ្នកស្រុក apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},បានទាក់ទងតាមរយៈ {0} {1} លើ: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} និយាយអំពីអ្នកក្នុងការអត្ថាធិប្បាយបានទេនៅក្នុង {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ជ្រើសរើសក្រុមតាម ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ឧទាហរណ៏ (55 + + 434) / 4 ឬ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} គឺត្រូវបានទាមទារ DocType: Integration Request,Integration Type,ប្រភេទសមាហរណកម្ម DocType: Newsletter,Send Attachements,ផ្ញើឯកសារភ្ជាប់ +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,រកមិនឃើញតម្រងទេ apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,សមាហរណកម្មទំនាក់ទំនងហ្គូហ្គល។ DocType: Transaction Log,Transaction Log,កំណត់ហេតុប្រតិបត្តិការ DocType: Contact Us Settings,City,ទីក្រុង +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,លាក់កាតសម្រាប់អ្នកប្រើប្រាស់ទាំងអស់ DocType: DocField,Perm Level,កម្រិត Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,មើលឯកសារ apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,ព្រឹត្តការណ៍ក្នុងប្រតិទិនថ្ងៃនេះ @@ -3664,6 +3795,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""ស្វែងរកសកល 'មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1}" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"នៅក្នុងការស្វែងរកសកល 'មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} DocType: Energy Point Log,Appreciation,ការកោតសរសើរ +DocType: Dashboard Chart,Number of Groups,ចំនួនក្រុម apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,ទិដ្ឋភាពបញ្ជី DocType: Workflow,Don't Override Status,កុំបដិសេធស្ថានភាព apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,ពាក្យស្វែងរក @@ -3705,7 +3837,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn- ពាយព្យ - ១ DocType: Dropbox Settings,Limit Number of DB Backups,កំណត់ចំនួននៃការបម្រុងទុក DB DocType: Custom DocPerm,Level,កំរិត -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,៣០ ថ្ងៃចុងក្រោយ DocType: Custom DocPerm,Report,របាយការណ៏ apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,ចំនួនទឹកប្រាក់ត្រូវតែធំជាង 0 ។ apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,ភ្ជាប់ទៅ QZ ថាស! @@ -3722,6 +3853,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 ។ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,ជ្រើសរើសតារាងកុមារ។ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,សកម្មភាពបឋមកេះ។ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,ការផ្លាស់ប្តូរ +DocType: Social Login Key,User ID Property,ទ្រព្យសម្បត្តិលេខសម្គាល់អ្នកប្រើ DocType: Email Domain,domain name,ឈ្មោះដែន DocType: Contact Email,Contact Email,ទំនាក់ទំនងតាមអ៊ីមែល DocType: Kanban Board Column,Order,លំដាប់ @@ -3744,7 +3876,7 @@ DocType: Contact,Last Name,ឈ្មោះចុងក្រោយ DocType: Event,Private,ឯកជន apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,គ្មានការជូនដំណឹងសម្រាប់ថ្ងៃនេះ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ផ្ញើអ៊ីមែលបោះពុម្ពឯកសារភ្ជាប់ជា PDF (ផ្ដល់អនុសាសន៍) -DocType: Web Page,Left,ពីឆ្វេង +DocType: Onboarding Slide Field,Left,ពីឆ្វេង DocType: Event,All Day,ថ្ងៃទាំងអស់ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,មើលទៅដូចជាមានអ្វីមួយគឺជាការខុសដោយការកំណត់រចនាសម្ព័ន្ធការទូទាត់តំបន់បណ្តាញនេះ។ គ្មានការទូទាត់ត្រូវបានធ្វើឡើង។ DocType: GCalendar Settings,State,រដ្ឋ @@ -3776,7 +3908,6 @@ DocType: Workflow State,User,របស់អ្នកប្រើ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",បង្ហាញចំណងជើងនៅក្នុងបង្អួចកម្មវិធីរុករកជា "បុព្វបទ - ចំណងជើងថា" DocType: Payment Gateway,Gateway Settings,ការកំណត់ច្រកទ្វារ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,អត្ថបទក្នុងប្រភេទឯកសារ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,រត់ការធ្វើតេស្ត apps/frappe/frappe/handler.py,Logged Out,ចេញ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ច្រើនទៀត ... DocType: System Settings,User can login using Email id or Mobile number,អ្នកប្រើអាចចូលដោយប្រើលេខសម្គាល់អ៊ីម៉ែលឬលេខទូរស័ព្ទ @@ -3792,6 +3923,7 @@ DocType: System Settings,Number Format,ទ្រង់ទ្រាយលេខ apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,សង្ខេប DocType: Event,Event Participants,អ្នកចូលរួមព្រឹត្តិការណ៍ DocType: Auto Repeat,Frequency,ភពញឹកញប់ +DocType: Onboarding Slide,Slide Order,លំដាប់ស្លាយ DocType: Custom Field,Insert After,បញ្ចូលបន្ទាប់ពី DocType: Event,Sync with Google Calendar,ធ្វើសមកាលកម្មជាមួយប្រតិទិន Google ។ DocType: Access Log,Report Name,ឈ្មោះរបាយការណ៏ @@ -3819,6 +3951,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},ទទឹងអតិបរមាសម្រាប់ប្រភេទរូបិយប័ណ្ណគឺ 100px នៅក្នុងជួរ {0} apps/frappe/frappe/config/website.py,Content web page.,មាតិកាបណ្ដាញទំព័រ។ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,បន្ថែមតួនាទីថ្មី +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ទស្សនាគេហទំព័រ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ការងារថ្មី DocType: Google Contacts,Last Sync On,ធ្វើសមកាលកម្មចុងក្រោយ DocType: Deleted Document,Deleted Document,លុបឯកសារ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,អូ! អ្វីមួយដែលខុស @@ -3829,7 +3963,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ទេសភាព apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ផ្នែកបន្ថែមស្គ្រីបខាងម៉ាស៊ីនភ្ញៀវនៅក្នុងការអនុញ្ញាត JavaScript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,កំណត់ត្រាសម្រាប់វេជ្ជបណ្ឌិតខាងក្រោមនឹងត្រូវបានត្រង -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,ឧបករណ៍កំណត់ពេលវេលាអសកម្ម។ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,ឧបករណ៍កំណត់ពេលវេលាអសកម្ម។ DocType: Blog Settings,Blog Introduction,សេចក្តីផ្តើមកំណត់ហេតុបណ្ដាញ DocType: Global Search Settings,Search Priorities,ស្វែងរកអាទិភាព DocType: Address,Office,ការិយាល័យ @@ -3839,13 +3973,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,តំណភ្ជាប់ DocType: User,Email Settings,ការកំណត់អ៊ីមែល apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ទម្លាក់នៅទីនេះ។ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",ប្រសិនបើបានបើកដំណើរការអ្នកប្រើប្រាស់អាចចូលពីអាស័យដ្ឋាន IP ណាមួយដោយប្រើកត្តាពីរកត្តានេះអាចត្រូវបានកំណត់សម្រាប់អ្នកប្រើប្រាស់ទាំងអស់នៅក្នុងការកំណត់ប្រព័ន្ធ។ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,ការកំណត់ម៉ាស៊ីនបោះពុម្ព ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,សូមបញ្ចូលពាក្យសម្ងាត់របស់អ្នកដើម្បីបន្ត apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,សូមបញ្ចូលពាក្យសម្ងាត់របស់អ្នកដើម្បីបន្ត apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ខ្ញុំ។ apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} មិនមែនជារដ្ឋដែលមានសុពលភាព apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,អនុវត្តចំពោះប្រភេទឯកសារទាំងអស់។ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ការធ្វើបច្ចុប្បន្នភាពចំណុចថាមពល។ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,ការធ្វើបច្ចុប្បន្នភាពចំណុចថាមពល។ +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),ដំណើរការការងារជារៀងរាល់ថ្ងៃប្រសិនបើអសកម្ម (ថ្ងៃ) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',សូមជ្រើសវិធីសាស្ត្រទូទាត់ផ្សេងទៀត។ បានតាមរយៈការមិនគាំទ្រការតិបត្តិការនៅក្នុងរូបិយប័ណ្ណ '{0}' DocType: Chat Message,Room Type,ប្រភេទបន្ទប់ DocType: Data Import Beta,Import Log Preview,ការនាំចូលកំណត់ហេតុមើលជាមុន។ @@ -3854,6 +3988,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,អី-រង្វង់ DocType: LDAP Settings,LDAP User Creation and Mapping,ការបង្កើតនិងគូសផែនទីអ្នកប្រើអិលភីភី។ apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',អ្នកអាចរកឃើញអ្វីដោយសួរ "បានរកឃើញក្រូចអតិថិជន +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,ព្រឹត្តិការណ៍ថ្ងៃនេះ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,សូមទោស! អ្នកប្រើដែលគួរតែមានសិទ្ធិចូលដំណើរការពេញលេញក្នុងកំណត់ត្រាផ្ទាល់ខ្លួនរបស់ពួកគេ។ ,Usage Info,ព័តមានការប្រើប្រាស់ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,បង្ហាញផ្លូវកាត់ក្តារចុច។ @@ -3870,6 +4005,7 @@ DocType: DocField,Unique,មានតែមួយគត់ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} កោតសរសើរចំពោះ {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ជោគជ័យមួយផ្នែក DocType: Email Account,Service,សេវាកម្ម +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,តំឡើង> អ្នកប្រើប្រាស់ DocType: File,File Name,ឈ្មោះឯកសារ apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),មិនបានរកឃើញ {0} {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3883,6 +4019,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,បញ DocType: GCalendar Settings,Enable,អនុញ្ញាត DocType: Google Maps Settings,Home Address,អាសយដ្ឋានផ្ទះ apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),អ្នកអាចផ្ទុកឡើងបានតែរីករាយជាមួយនឹង 5000 កំណត់ត្រាក្នុងមួយទៅ។ (អាចនឹងមានតិចជាងនៅក្នុងករណីមួយចំនួន) +DocType: Report,"output in the form of `data = [columns, result]`",លទ្ធផលក្នុងទំរង់ `ទិន្នន័យ = [ជួរឈរលទ្ធផល]` apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ប្រភេទឯកសារដែលអាចប្រើបាន។ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,រៀបចំច្បាប់សម្រាប់ការងាររបស់អ្នកប្រើប្រាស់។ apps/frappe/frappe/model/document.py,Insufficient Permission for {0},សិទ្ធិមិនគ្រប់គ្រាន់សម្រាប់ {0} @@ -3900,7 +4037,6 @@ DocType: Communication,To and CC,ទៅនិង CC DocType: SMS Settings,Static Parameters,ប៉ារ៉ាម៉ែត្រឋិតិវន្ត DocType: Chat Message,Room,បន្ទប់ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ធ្វើឱ្យទាន់សម័យទៅនឹង {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,ការងារផ្ទៃខាងក្រោយមិនដំណើរការទេ។ សូមទាក់ទងអ្នកគ្រប់គ្រង។ DocType: Portal Settings,Custom Menu Items,កែម៉ឺនុយមុខទំនិញ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,រូបភាពទាំងអស់ដែលភ្ជាប់ទៅនឹងការបញ្ចាំងស្លាយគួរតែជាសាធារណៈ DocType: Workflow State,chevron-right,ក្រុមហ៊ុន Chevron ស្តាំ @@ -3914,11 +4050,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} តម្លៃដែលបានជ្រើសរើស។ DocType: DocType,Allow Auto Repeat,អនុញ្ញាតឱ្យធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិ។ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,មិនមានតម្លៃដើម្បីបង្ហាញ។ +DocType: DocType,URL for documentation or help,URL សម្រាប់ឯកសារឬជំនួយ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,គំរូអ៊ីម៉ែល apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,បានធ្វើបច្ចុប្បន្នភាពកំណត់ត្រា {0} ដោយជោគជ័យ។ apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},អ្នកប្រើ {0} មិនមានសិទ្ធិចូលប្រើផ្នែកគំហើញតាមរយៈការអនុញ្ញាតតួនាទីសម្រាប់ឯកសារ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,អ្នកទាំងពីរចូលនិងពាក្យសម្ងាត់ដែលបានទាមទារ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,សូម \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,សូមស្រស់ដើម្បីទទួលបានឯកសារថ្មីបំផុត។ DocType: User,Security Settings,ការកំណត់សុវត្ថិភាព apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,បន្ថែមជួរឈរ @@ -3928,6 +4066,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,តម្រងមេតា apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},សូមស្វែងរកឯកសារភ្ជាប់ {0}: {1} DocType: Web Page,Set Meta Tags,កំណត់ស្លាកមេតា។ +DocType: Email Account,Use SSL for Outgoing,ប្រើ SSL សម្រាប់ការចេញ 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: S3 Backup Settings,Backup Limit,ដែនកំណត់បម្រុងទុក DocType: Dashboard Chart,Line,បន្ទាត់។ @@ -3960,4 +4099,3 @@ DocType: DocField,Ignore User Permissions,មិនអើពើសិទ្ធ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,បានរក្សាទុកដោយជោគជ័យ។ apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,សូមសួរអ្នកគ្រប់គ្រងរបស់អ្នកដើម្បីផ្ទៀងផ្ទាត់ការចុះឈ្មោះរបស់អ្នក DocType: Domain Settings,Active Domains,ដែនសកម្ម -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,បង្ហាញកំណត់ហេតុ diff --git a/frappe/translations/kn.csv b/frappe/translations/kn.csv index e449583624..40413895d6 100644 --- a/frappe/translations/kn.csv +++ b/frappe/translations/kn.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ಒಂದು ಪ್ರಮಾಣ ಫೀಲ್ಡ್ ಆಯ್ಕೆ ಮಾಡಿ. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ಆಮದು ಫೈಲ್ ಅನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ ... DocType: Assignment Rule,Last User,ಕೊನೆಯ ಬಳಕೆದಾರ -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ಒಂದು ಹೊಸ ಕೆಲಸವನ್ನು, {0}, {1} ನಿಮಗೆ ಗೊತ್ತುಮಾಡಲ. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,ಸೆಷನ್ ಡೀಫಾಲ್ಟ್‌ಗಳನ್ನು ಉಳಿಸಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ಫೈಲ್ ಅನ್ನು ಮರುಲೋಡ್ ಮಾಡಿ DocType: Email Queue,Email Queue records.,ಇಮೇಲ್ ಸರದಿಗೆ ದಾಖಲೆಗಳು. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ಟ್ರಿ DocType: User,User Emails,ಬಳಕೆದಾರ ಇಮೇಲ್ಗಳನ್ನು DocType: User,Username,ಬಳಕೆದಾರ ಹೆಸರು apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ಆಮದು ಜಿಪ್ +DocType: Scheduled Job Type,Create Log,ಲಾಗ್ ರಚಿಸಿ apps/frappe/frappe/model/base_document.py,Value too big,ಮೌಲ್ಯ ತುಂಬಾ ದೊಡ್ಡ DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ರನ್ ಸ್ಕ್ರಿಪ್ಟ್ ಟೆಸ್ಟ್ @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,ಮಾಸಿಕ DocType: Address,Uttarakhand,ಉತ್ತರಾಖಂಡ್ DocType: Email Account,Enable Incoming,ಒಳಬರುವ ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ಅಪಾಯ -DocType: Address,Email Address,ಇಮೇಲ್ ವಿಳಾಸ +apps/frappe/frappe/www/login.py,Email Address,ಇಮೇಲ್ ವಿಳಾಸ DocType: Workflow State,th-large,ನೇ ದೊಡ್ಡ DocType: Communication,Unread Notification Sent,ಕಳುಹಿಸಲಾಗಿದೆ ಓದದ ಅಧಿಸೂಚನೆಯನ್ನು apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ರಫ್ತು ಅವಕಾಶ . ನೀವು ರಫ್ತು {0} ಪಾತ್ರದಲ್ಲಿ ಅಗತ್ಯವಿದೆ . @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,ಪ್ರಕಟಿಸಲಾಗಿದೆ ಫೀಲ್ಡ್ DocType: GCalendar Settings,GCalendar Settings,ಜಿಕಾಲೆಂಡರ್ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Email Group,Email Group,ಇಮೇಲ್ ಗುಂಪು +apps/frappe/frappe/__init__.py,Only for {},ಗೋಸ್ಕರ {} DocType: Event,Pulled from Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್‌ನಿಂದ ಎಳೆಯಲಾಗಿದೆ DocType: Note,Seen By,ಸೀನ್ ಬೈ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ಬಹು ಸೇರಿಸಿ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,ನೀವು ಕೆಲವು ಶಕ್ತಿ ಅಂಕಗಳನ್ನು ಗಳಿಸಿದ್ದೀರಿ apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ಮಾನ್ಯ ಬಳಕೆದಾರ ಚಿತ್ರವಲ್ಲ. DocType: Energy Point Log,Reverted,ಹಿಂತಿರುಗಿಸಲಾಗಿದೆ DocType: Success Action,First Success Message,ಮೊದಲ ಯಶಸ್ಸು ಸಂದೇಶ @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ಲೈಕ apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ತಪ್ಪಾದ ಮೌಲ್ಯವು: {0} ಇರಬೇಕು {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ಬದಲಾಯಿಸಿ ಕ್ಷೇತ್ರ ಗುಣಗಳನ್ನು ( ಮರೆಮಾಡಲು , ಮಾತ್ರ , ಅನುಮತಿ , ಇತ್ಯಾದಿ ಓದಲು )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ಪ್ರಶಂಸಿಸಿ +DocType: Notification Settings,Document Share,ಡಾಕ್ಯುಮೆಂಟ್ ಹಂಚಿಕೆ DocType: Workflow State,lock,ಕರುಳು apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ನಮ್ಮನ್ನು ಪುಟ ಸಂಪರ್ಕಿಸಿ ಸೆಟ್ಟಿಂಗ್ಗಳು. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ನಿರ್ವಾಹಕ ಲಾಗ್ ಇನ್ @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ನೋಡಿದಂತೆ ಗುರುತಿಸಲಾಗಿದೆ, ಬಳಕೆದಾರರು ಅದನ್ನು ಮೊದಲ ಬಾರಿಗೆ ತೆರೆದಾಗ" DocType: Auto Repeat,Repeat on Day,ದಿನ ಪುನರಾವರ್ತಿಸಿ DocType: DocField,Color,ಬಣ್ಣ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,ಎಲ್ಲವನ್ನು ಓದಲಾಗಿದೆ ಎಂದು ಗುರುತಿಸಿ DocType: Data Migration Run,Log,ಲಾಗ್ DocType: Workflow State,indent-right,ಇಂಡೆಂಟ್ ಬಲ DocType: Has Role,Has Role,ಪಾತ್ರ ಹ್ಯಾಸ್ @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ಟ್ರೇಸ್‌ಬ್ಯಾಕ್ ತೋರಿಸಿ DocType: DocType,Default Print Format,ಡೀಫಾಲ್ಟ್ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ DocType: Workflow State,Tags,ಟ್ಯಾಗ್ಗಳು +DocType: Onboarding Slide,Slide Type,ಸ್ಲೈಡ್ ಪ್ರಕಾರ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ಯಾವುದೂ : ವರ್ಕ್ಫ್ಲೋ ಅಂತ್ಯ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",ಅ ಅನನ್ಯ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಮೌಲ್ಯಗಳನ್ನು ಲಭ್ಯವಿರುವುದರಿಂದ {0} ಕ್ಷೇತ್ರದಲ್ಲಿ {1} ನಲ್ಲಿ ಅನನ್ಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು @@ -134,7 +137,6 @@ DocType: Language,Guest,ಅತಿಥಿ DocType: DocType,Title Field,ಶೀರ್ಷಿಕೆ ಫೀಲ್ಡ್ DocType: Error Log,Error Log,ದೋಷ ಲಾಗ್ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,ಅಮಾನ್ಯ URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,ಕೊನೆಯ 7 ದಿನಗಳು apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" "ಎಬಿಸಿ" ಹೆಚ್ಚು ಊಹಿಸಲು ಕಷ್ಟ ಸ್ವಲ್ಪ ಹಾಗೆ ಪುನರಾವರ್ತನೆಗಳು DocType: Notification,Channel,ಚಾನಲ್ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ಈ ಅನಧಿಕೃತ ಭಾವಿಸಿದರೆ, ನಿರ್ವಾಹಕ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲು ದಯವಿಟ್ಟು." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,ಕಕ್ಷಿಗಾರ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,ಕಾಲಮ್ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ನೀವು ಲೋಡ್ ನಂತರ ಈ ರೂಪ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ DocType: Address,Himachal Pradesh,ಹಿಮಾಚಲ ಪ್ರದೇಶ +DocType: Notification Log,Notification Log,ಅಧಿಸೂಚನೆ ಲಾಗ್ DocType: System Settings,"If not set, the currency precision will depend on number format","ಹೊಂದಿಸದಿದ್ದಲ್ಲಿ, ಕರೆನ್ಸಿ ನಿಖರ ಸಂಖ್ಯೆ ಫಾರ್ಮ್ಯಾಟ್ ಅವಲಂಬಿಸಿರುತ್ತದೆ" DocType: System Settings,"If not set, the currency precision will depend on number format","ಹೊಂದಿಸದಿದ್ದಲ್ಲಿ, ಕರೆನ್ಸಿ ನಿಖರ ಸಂಖ್ಯೆ ಫಾರ್ಮ್ಯಾಟ್ ಅವಲಂಬಿಸಿರುತ್ತದೆ" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ಅದ್ಭುತ ಬಾರ್ ತೆರೆಯಿರಿ @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ಕಳುಹಿಸು DocType: Workflow Action Master,Workflow Action Name,ವರ್ಕ್ಫ್ಲೋ ಆಕ್ಷನ್ ಹೆಸರು apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Doctype ವಿಲೀನಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ಒಂದು ಜಿಪ್ ಫೈಲ್ DocType: Global Search DocType,Global Search DocType,ಜಾಗತಿಕ ಹುಡುಕಾಟ ಡಾಕ್ಟೈಪ್ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,ಕಳುಹಿಸಲಾದ ಇಮೇಲ್ ? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ಟಾಗಲ್ ಚಾರ್ಟ್ apps/frappe/frappe/desk/form/save.py,Did not cancel,ನಿಲ್ಲಿಸಲಿಲ್ಲ DocType: Social Login Key,Client Information,ಗ್ರಾಹಕ ಮಾಹಿತಿ +DocType: Energy Point Rule,Apply this rule only once per document,ಪ್ರತಿ ಡಾಕ್ಯುಮೆಂಟ್‌ಗೆ ಒಮ್ಮೆ ಮಾತ್ರ ಈ ನಿಯಮವನ್ನು ಅನ್ವಯಿಸಿ DocType: Workflow State,plus,ಜೊತೆಗೆ +DocType: DocField,Read Only Depends On,ಓದಲು ಮಾತ್ರ ಅವಲಂಬಿಸಿರುತ್ತದೆ apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,ಅತಿಥಿ ಅಥವ ನಿರ್ವಾಹಕರಂತೆ ಲಾಗ್ ಇನ್ DocType: Email Account,UNSEEN,ಅನ್ಸೀನ್ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ಕಡತ ವ್ಯವಸ್ಥಾಪಕ @@ -200,9 +205,11 @@ DocType: Communication,BCC,ಬಿಸಿಸಿ DocType: Unhandled Email,Reason,ಕಾರಣ 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,ಯಾವುದೇ ಚಟುವಟಿಕೆ ಇಲ್ಲ +DocType: Server Script,Script Manager,ಸ್ಕ್ರಿಪ್ಟ್ ಮ್ಯಾನೇಜರ್ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ಯಾವುದೇ ಚಟುವಟಿಕೆ ಇಲ್ಲ apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,ಮೂರನೇ ವ್ಯಕ್ತಿಯ ಅಪ್ಲಿಕೇಶನ್ಗಳು apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ವ್ಯವಸ್ಥೆ ನಿರ್ವಾಹಕರಾಗುತ್ತೀರಿ ಮೊದಲ ಬಳಕೆದಾರ (ನೀವು ನಂತರ ಬದಲಾಯಿಸಬಹುದು). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ಇಂದು ಯಾವುದೇ ಘಟನೆಗಳು ಇಲ್ಲ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,ನಿಮಗಾಗಿ ವಿಮರ್ಶೆ ಅಂಕಗಳನ್ನು ನೀಡಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,ಆಯ್ಕೆಮಾಡಿದ ಡಾಕ್ ಈವೆಂಟ್ಗೆ ಡಾಕ್ಟೈಪ್ ಸಲ್ಲಿಸಬೇಕು DocType: Workflow State,circle-arrow-up,ಸರ್ಕಲ್ ಬಾಣದ ಅಪ್ @@ -250,6 +257,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ ವರದಿ DocType: Translation,Contributed Translation Doctype Name,ಕೊಡುಗೆ ಅನುವಾದ ಡಾಕ್ಟೈಪ್ ಹೆಸರು +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ DocType: PayPal Settings,Redirect To,ಮರುನಿರ್ದೇಶಿಸುತ್ತದೆ DocType: Data Migration Mapping,Pull,ಪುಲ್ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಫಾರ್ಮ್ಯಾಟ್: frappe.query_reports [ 'ವರದಿಯನ್ನು ಹೆಸರು '] = {} @@ -263,6 +271,7 @@ DocType: DocShare,Internal record of document shares,ಡಾಕ್ಯುಮೆಂ DocType: Energy Point Settings,Review Levels,ಹಂತಗಳನ್ನು ಪರಿಶೀಲಿಸಿ DocType: Workflow State,Comment,ಟಿಪ್ಪಣಿ DocType: Data Migration Plan,Postprocess Method,ಪೋಸ್ಟ್ ಪ್ರೊಸೆಸರ್ ವಿಧಾನ +DocType: DocType Action,Action Type,ಕ್ರಿಯೆಯ ಪ್ರಕಾರ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ಭಾವಚಿತ್ರವನ್ನು ತೆಗಿರಿ DocType: Assignment Rule,Round Robin,ರೌಂಡ್ ರಾಬಿನ್ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","ನೀವು ಅವುಗಳನ್ನು ತಿದ್ದುಪಡಿ , ನಂತರ ಅವುಗಳನ್ನು ರದ್ದು ಮತ್ತು ಸಲ್ಲಿಸಲ್ಪಟ್ಟ ದಾಖಲೆಗಳನ್ನು ಬದಲಾಯಿಸಬಹುದು ." @@ -276,6 +285,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ಉಳಿಸಿ DocType: Comment,Seen,ಸೀನ್ apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,ಇನ್ನಷ್ಟು ವಿವರಗಳನ್ನು ತೋರಿಸು +DocType: Server Script,Before Submit,ಸಲ್ಲಿಸುವ ಮೊದಲು DocType: System Settings,Run scheduled jobs only if checked,ಪರೀಕ್ಷಿಸಿದ್ದು ಮಾತ್ರ ನಿಗದಿತ ಉದ್ಯೋಗಗಳು ರನ್ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,ವಿಭಾಗ ಶೀರ್ಷಿಕೆಗಳ ಶಕ್ತಗೊಳಿಸಿದಲ್ಲಿ ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತದೆ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,ಆರ್ಕೈವ್ @@ -288,10 +298,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ಡ್ರಾಪ್ಬಾಕ್ಸ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,ಕಸ್ಟಮ್ ಲಿಪಿಯ add_fetch ಸಂರಚನೆಯಲ್ಲಿ {0} ತಪ್ಪಾದ ಕ್ಷೇತ್ರನಾಮ apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ಯಾವ ಸಂಪರ್ಕವನ್ನು ಸಿಂಕ್ ಮಾಡಬೇಕೆಂದು Google ಸಂಪರ್ಕಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ. DocType: Web Page,Main Section (HTML),ಮುಖ್ಯ ವಿಭಾಗ (HTML) +DocType: Scheduled Job Type,Annual,ವಾರ್ಷಿಕ DocType: Workflow State,headphones,ಹೆಡ್ಫೋನ್ apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ ಅಥವಾ ಕಾಯುತ್ತಿದ್ದ ಪಾಸ್ವರ್ಡ್ ಆಯ್ಕೆ ಆಗಿದೆ DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ಉದಾ replies@yourcomany.com. ಎಲ್ಲಾ ಪ್ರತ್ಯುತ್ತರಗಳನ್ನು ಈ ಇನ್ಬಾಕ್ಸ್ಗೆ ಬರುತ್ತದೆ. DocType: Slack Webhook URL,Slack Webhook URL,ಸ್ಲ್ಯಾಕ್ ವೆಬ್ಹಕ್ URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","ಮಾಂತ್ರಿಕದಲ್ಲಿನ ಸ್ಲೈಡ್‌ನ ಕ್ರಮವನ್ನು ನಿರ್ಧರಿಸುತ್ತದೆ. ಸ್ಲೈಡ್ ಅನ್ನು ಪ್ರದರ್ಶಿಸದಿದ್ದರೆ, ಆದ್ಯತೆಯನ್ನು 0 ಗೆ ಹೊಂದಿಸಬೇಕು." DocType: Data Migration Run,Current Mapping,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,ಅಗತ್ಯವಿದೆ ಮಾನ್ಯ ಇಮೇಲ್ ಮತ್ತು ಹೆಸರು apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,ಎಲ್ಲಾ ಲಗತ್ತುಗಳನ್ನು ಖಾಸಗಿಯಾಗಿ ಮಾಡಿ @@ -315,6 +327,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,ಪರಿವರ್ತನೆ ನಿಯಮಗಳು apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,ಪೂರ್ವವೀಕ್ಷಣೆಯಲ್ಲಿ ಮೊದಲ {0} ಸಾಲುಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತಿದೆ apps/frappe/frappe/core/doctype/report/report.js,Example:,ಉದಾಹರಣೆ : +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ನಿರ್ಬಂಧಗಳು DocType: Workflow,Defines workflow states and rules for a document.,ಒಂದು ದಾಖಲೆ ಕೆಲಸದೊತ್ತಡದ ರಾಜ್ಯಗಳು ಮತ್ತು ನಿಯಮಗಳನ್ನು ವ್ಯಾಖ್ಯಾನಿಸುತ್ತದೆ. DocType: Workflow State,Filter,ಫಿಲ್ಟರ್ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ದೋಷ ಲಾಗ್ ಅನ್ನು ಪರಿಶೀಲಿಸಿ: {0} @@ -326,6 +339,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ಕೆಲಸ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ಲಾಗ್ ಔಟ್: {1} DocType: Address,West Bengal,ಪಶ್ಚಿಮ ಬಂಗಾಳ +DocType: Onboarding Slide,Information,ಮಾಹಿತಿ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : ನಿಯೋಜನೆ ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ Submittable ಅಲ್ಲ DocType: Transaction Log,Row Index,ಸಾಲು ಸೂಚ್ಯಂಕ DocType: Social Login Key,Facebook,ಫೇಸ್ಬುಕ್ @@ -343,7 +357,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ಮೂಲ DocType: Web Form,Button Help,ಬಟನ್ ಸಹಾಯ DocType: Kanban Board Column,purple,ನೇರಳೆ DocType: About Us Settings,Team Members,ತಂಡದ ಸದಸ್ಯರು +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,ನಿಷ್ಕ್ರಿಯ ಸೈಟ್‌ಗಳಿಗೆ ದಿನಕ್ಕೆ ಒಂದು ಬಾರಿ ಮಾತ್ರ ನಿಗದಿತ ಉದ್ಯೋಗಗಳನ್ನು ನಡೆಸುತ್ತದೆ. 0 ಗೆ ಹೊಂದಿಸಿದರೆ ಡೀಫಾಲ್ಟ್ 4 ದಿನಗಳು. DocType: Assignment Rule,System Manager,ವ್ಯವಸ್ಥೆ ಮ್ಯಾನೇಜರ್ +DocType: Scheduled Job Log,Scheduled Job,ಪರಿಶಿಷ್ಟ ಕೆಲಸ DocType: Custom DocPerm,Permissions,ಅನುಮತಿಗಳು apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ಆಂತರಿಕ ಏಕೀಕರಣಕ್ಕಾಗಿ ಸ್ಲಾಕ್ ವೆಬ್ಹೂಕ್ಸ್ DocType: Dropbox Settings,Allow Dropbox Access,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಅನುಮತಿಸಬಹುದು @@ -395,6 +411,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ಬ DocType: Email Flag Queue,Email Flag Queue,ಇಮೇಲ್ ಫ್ಲಾಗ್ ಸರದಿಗೆ DocType: Access Log,Columns / Fields,ಕಾಲಮ್‌ಗಳು / ಕ್ಷೇತ್ರಗಳು apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ಮುದ್ರಣ ಸ್ವರೂಪಗಳಿಗಾಗಿ ಸ್ಟೈಲ್ಶೀಟ್ಗಳು +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,ಡ್ಯಾಶ್‌ಬೋರ್ಡ್ ಚಾರ್ಟ್ ರಚಿಸಲು ಒಟ್ಟು ಕಾರ್ಯ ಕ್ಷೇತ್ರದ ಅಗತ್ಯವಿದೆ apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ತೆರೆದ ಗುರುತಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ {0}. ಯಾವುದೋ ಪ್ರಯತ್ನಿಸಿ. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ನಿಮ್ಮ ಮಾಹಿತಿಯನ್ನು ಸಲ್ಲಿಸಲಾಗಿದೆ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ಬಳಕೆದಾರ {0} ಅಳಿಸಲಾಗಿಲ್ಲ @@ -411,7 +428,7 @@ DocType: Property Setter,Field Name,ಕ್ಷೇತ್ರ ಹೆಸರು DocType: Assignment Rule,Assign To Users,ಬಳಕೆದಾರರಿಗೆ ನಿಯೋಜಿಸಿ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ಅಥವಾ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ಘಟಕ ಹೆಸರು ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ಮುಂದುವರಿಸಿ +DocType: Onboarding Slide,Continue,ಮುಂದುವರಿಸಿ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google ಏಕೀಕರಣವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. DocType: Custom Field,Fieldname,ಕ್ಷೇತ್ರ ಹೆಸರು DocType: Workflow State,certificate,ಪ್ರಮಾಣಪತ್ರ @@ -424,11 +441,13 @@ DocType: Energy Point Log,Review,ವಿಮರ್ಶೆ DocType: User,Restrict IP,ಐಪಿ ನಿರ್ಬಂಧಿಸಿ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ಡ್ಯಾಶ್ಬೋರ್ಡ್ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ಈ ಸಮಯದಲ್ಲಿ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +DocType: Notification Log,Email Content,ಇಮೇಲ್ ವಿಷಯ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ಆಜ್ಞಾ ಹುಡುಕಿ ಅಥವಾ ಟೈಪ್ DocType: Activity Log,Timeline Name,ಟೈಮ್ಲೈನ್ ಹೆಸರು DocType: Email Account,e.g. smtp.gmail.com,ಉದಾ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ಹೊಸ ನಿಯಮ ಸೇರಿಸಿ DocType: Contact,Sales Master Manager,ಮಾರಾಟ ಮಾಸ್ಟರ್ ಮ್ಯಾನೇಜರ್ +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,ನಿಮ್ಮ ಅಪ್ಲಿಕೇಶನ್ ಕಾರ್ಯನಿರ್ವಹಿಸಲು ನೀವು ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕಾಗಿದೆ. DocType: User Permission,For Value,ಮೌಲ್ಯಕ್ಕಾಗಿ DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,ಕೊನೆಯ ಹೆಜ್ಜೆ @@ -443,6 +462,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP ಮಧ್ಯದ ಹೆಸರು ಕ್ಷೇತ್ರ DocType: GCalendar Account,Allow GCalendar Access,GCalendar ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಿ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ಒಂದು ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರವಾಗಿದೆ +DocType: DocType,Documentation Link,ದಸ್ತಾವೇಜನ್ನು ಲಿಂಕ್ apps/frappe/frappe/templates/includes/login/login.js,Login token required,ಲಾಗಿನ್ ಟೋಕನ್ ಅಗತ್ಯವಿದೆ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ಮಾಸಿಕ ಶ್ರೇಣಿ: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ಬಹು ಪಟ್ಟಿ ವಸ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ @@ -464,6 +484,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ಫೈಲ್ URL ಅನ್ನು DocType: Version,Table HTML,ಟೇಬಲ್ ಎಚ್ಟಿಎಮ್ಎಲ್ apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,ಚಂದಾದಾರರು ಸೇರಿಸಿ +DocType: Notification Log,Energy Point,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,ಇಂದು ಮುಂಬರುವ ಕಾರ್ಯಕ್ರಮಗಳು DocType: Google Calendar,Push to Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್‌ಗೆ ಒತ್ತಿ DocType: Notification Recipient,Email By Document Field,ಡಾಕ್ಯುಮೆಂಟ್ ಕ್ಷೇತ್ರವು ಇಮೇಲ್ @@ -479,7 +500,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ಅವೇ DocType: Currency,Fraction Units,ಫ್ರ್ಯಾಕ್ಷನ್ ಘಟಕಗಳು apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} {1} ನಿಂದ {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,ಮುಗಿದಿದೆ ಎಂದು ಗುರುತಿಸಿ DocType: Chat Message,Type,ದರ್ಜೆ DocType: Google Settings,OAuth Client ID,OAuth ಕ್ಲೈಂಟ್ ID DocType: Auto Repeat,Subject,ವಿಷಯ @@ -507,6 +527,7 @@ DocType: Report,JSON,JSON ಅನ್ನು apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,ದಯವಿಟ್ಟು ಪರಿಶೀಲನೆ ನಿಮ್ಮ ಇಮೇಲ್ ಪರಿಶೀಲಿಸಿ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ಪಟ್ಟು ರೂಪ ಕೊನೆಯಲ್ಲಿ ಸಾಧ್ಯವಿಲ್ಲ DocType: Communication,Bounced,ಪುಟಿದೇಳುವ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ನ DocType: Deleted Document,Deleted Name,ಅಳಿಸಲಾಗಿದೆ ಹೆಸರು apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,ವ್ಯವಸ್ಥೆ ಮತ್ತು ವೆಬ್ಸೈಟ್ ಬಳಕೆದಾರರು DocType: Workflow Document State,Doc Status,ಡಾಕ್ ಸ್ಥಿತಿ @@ -517,6 +538,7 @@ DocType: Language,Language Code,ಭಾಷೆ ಕೋಡ್ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ಗಮನಿಸಿ: ವಿಫಲವಾದ ಬ್ಯಾಕ್ಅಪ್ಗಳಿಗಾಗಿ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ಗಳ ಮೂಲಕ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,ಫಿಲ್ಟರ್ ಸೇರಿಸಿ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},ಎಸ್ಎಂಎಸ್ ಸಂಖ್ಯೆಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ: {0} +DocType: Notification Settings,Assignments,ಕಾರ್ಯಯೋಜನೆಯು apps/frappe/frappe/utils/data.py,{0} and {1},{0} ಮತ್ತು {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ಸಂವಾದವನ್ನು ಪ್ರಾರಂಭಿಸಿ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ಯಾವಾಗಲೂ "ಡ್ರಾಫ್ಟ್" ಸೇರಿಸಿ ಮುದ್ರಣ ಕರಡು ದಾಖಲೆಗಳನ್ನು ಶಿರೋನಾಮೆ @@ -525,6 +547,7 @@ DocType: Data Migration Run,Current Mapping Start,ಪ್ರಸ್ತುತ ಮ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ಇಮೇಲ್ ಸ್ಪ್ಯಾಮ್ ಎಂದು ಗುರುತಿಸಲಾಗಿದೆ DocType: Comment,Website Manager,ವೆಬ್ಸೈಟ್ ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ಫೈಲ್ ಅಪ್ಲೋಡ್ ಸಂಪರ್ಕ ಕಡಿತಗೊಂಡಿದೆ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ. +DocType: Data Import Beta,Show Failed Logs,ವಿಫಲವಾದ ದಾಖಲೆಗಳನ್ನು ತೋರಿಸಿ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ಅನುವಾದಗಳು apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,ನೀವು ಆಯ್ಕೆ ಡ್ರಾಫ್ಟ್ ಅಥವಾ ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ ದಾಖಲೆಗಳನ್ನು apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ಡಾಕ್ಯುಮೆಂಟ್ {0} ಅನ್ನು {1} {2} ನಿಂದ ರಾಜ್ಯಕ್ಕೆ ಹೊಂದಿಸಲಾಗಿದೆ @@ -532,7 +555,9 @@ apps/frappe/frappe/model/document.py,Document Queued,ಡಾಕ್ಯುಮೆಂ DocType: GSuite Templates,Destination ID,ಗಮ್ಯಸ್ಥಾನ ID DocType: Desktop Icon,List,ಪಟ್ಟಿ DocType: Activity Log,Link Name,ಲಿಂಕ್ ಹೆಸರು +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,ನೀವು ಧಾಮ \ DocType: System Settings,mm/dd/yyyy,DD / MM / YYYY +DocType: Onboarding Slide,Onboarding Slide,ಆನ್‌ಬೋರ್ಡಿಂಗ್ ಸ್ಲೈಡ್ apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್: DocType: Print Settings,Send document web view link in email,ಇಮೇಲ್ ಡಾಕ್ಯುಮೆಂಟ್ ವೆಬ್ ವೀಕ್ಷಿಸಿ ಲಿಂಕ್ ಕಳುಹಿಸಿ @@ -592,6 +617,7 @@ DocType: Kanban Board Column,darkgrey,ಕಡು ಬೂದು apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},ಯಶಸ್ವಿ: {0} ಗೆ {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ಡೆಮೊ ಬಳಕೆದಾರ ವಿವರಗಳನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. https://erpnext.com ನಲ್ಲಿ ಹೊಸ ಖಾತೆ ಸೈನ್ ಅಪ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ಬಿಡಿ +DocType: Dashboard Chart,Aggregate Function Based On,ಒಟ್ಟು ಕಾರ್ಯವನ್ನು ಆಧರಿಸಿದೆ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಈ ನಕಲು ದಯವಿಟ್ಟು apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,ಉಳಿಸಲು Enter ಅನ್ನು ಒತ್ತಿರಿ apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,ಪಿಡಿಎಫ್ ಪೀಳಿಗೆಯ ಏಕೆಂದರೆ ಮುರಿದ ಚಿತ್ರ ಕೊಂಡಿಗಳು ಉಂಟಾಗಿದ್ದರಿಂದ @@ -605,7 +631,9 @@ DocType: Notification,Days Before,ದಿನಗಳ ಮೊದಲು apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ದೈನಂದಿನ ಘಟನೆಗಳು ಒಂದೇ ದಿನದಲ್ಲಿ ಮುಗಿಯಬೇಕು. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ಸಂಪಾದಿಸಿ ... DocType: Workflow State,volume-down,ಪರಿಮಾಣ ಡೌನ್ +DocType: Onboarding Slide,Help Links,ಸಹಾಯ ಲಿಂಕ್‌ಗಳು apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ಈ ಐಪಿ ವಿಳಾಸದಿಂದ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ +DocType: Notification Settings,Enable Email Notifications,ಇಮೇಲ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/desk/reportview.py,No Tags,ಯಾವುದೇ ಟ್ಯಾಗ್ಗಳು DocType: Email Account,Send Notification to,ಗೆ ಅಧಿಸೂಚನೆ ಕಳುಹಿಸಿ DocType: DocField,Collapsible,ಬಾಗಿಕೊಳ್ಳಬಹುದಾದ @@ -634,6 +662,7 @@ DocType: Google Drive,Last Backup On,ಕೊನೆಯ ಬ್ಯಾಕಪ್ ಆ DocType: Customize Form Field,Customize Form Field,ಫಾರ್ಮ್ ಫೀಲ್ಡ್ ಕಸ್ಟಮೈಸ್ DocType: Energy Point Rule,For Document Event,ಡಾಕ್ಯುಮೆಂಟ್ ಈವೆಂಟ್‌ಗಾಗಿ DocType: Website Settings,Chat Room Name,ಚಾಟ್ ರೂಂ ಹೆಸರು +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,ಬದಲಾಗಿಲ್ಲ DocType: OAuth Client,Grant Type,ಗ್ರಾಂಟ್ ಕೌಟುಂಬಿಕತೆ apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ಡಾಕ್ಯುಮೆಂಟ್ಸ್ ಒಂದು ಬಳಕೆದಾರ ಮೂಲಕ ಓದಬಹುದಾದ ಇದು ಪರಿಶೀಲಿಸಿ DocType: Deleted Document,Hub Sync ID,ಹಬ್ ಸಿಂಕ್ ID @@ -641,6 +670,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ವ DocType: Auto Repeat,Quarterly,ತ್ರೈಮಾಸಿಕ apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",ಇಮೇಲ್ ಡೊಮೈನ್ ಒಂದು ರಚಿಸಿ ಈ ಖಾತೆಗಾಗಿ ಕಾನ್ಫಿಗರ್ ಇಲ್ಲ? DocType: User,Reset Password Key,ಪಾಸ್ವರ್ಡ್ ಕೀ ಕೊಡುಗೆಗಳು +DocType: Dashboard Chart,All Time,ಸದಾ ಕಾಲ apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} ಗಾಗಿ ಅಕ್ರಮ ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿ DocType: Email Account,Enable Auto Reply,ಆಟೋ ಉತ್ತರಿಸಿ ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ನೋಡಿಲ್ಲ @@ -653,6 +683,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ಸ DocType: Email Account,Notify if unreplied,Unreplied ವೇಳೆ ಸೂಚಿಸಿ apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿ ಮತ್ತು ಪ್ರದರ್ಶಿಸುವ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಿ. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ಗ್ರೇಡಿಯಂಟ್‌ಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ +DocType: Scheduled Job Type,Hourly Long,ಗಂಟೆ ಉದ್ದ DocType: System Settings,Minimum Password Score,ಕನಿಷ್ಠ ಪಾಸ್ವರ್ಡ್ ಸ್ಕೋರ್ DocType: System Settings,Minimum Password Score,ಕನಿಷ್ಠ ಪಾಸ್ವರ್ಡ್ ಸ್ಕೋರ್ DocType: DocType,Fields,ಫೀಲ್ಡ್ಸ್ @@ -661,11 +692,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ಪೊ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 ಬ್ಯಾಕಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ! apps/frappe/frappe/config/desktop.py,Developer,ಡೆವಲಪರ್ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,ದಾಖಲಿಸಿದವರು +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},ಅದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ಈ ಕೆಳಗಿನ ಲಿಂಕ್‌ನಲ್ಲಿರುವ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} ಸತತವಾಗಿ {1} URL ಮತ್ತು ಮಗು ಐಟಂಗಳನ್ನು ಎರಡೂ ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},ಕೆಳಗಿನ ಕೋಷ್ಟಕಗಳಿಗೆ ಕನಿಷ್ಠ ಒಂದು ಸಾಲು ಇರಬೇಕು: {0} DocType: Print Format,Default Print Language,ಡೀಫಾಲ್ಟ್ ಮುದ್ರಣ ಭಾಷೆ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,ಪೂರ್ವಜರ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ರೂಟ್ {0} ಅಳಿಸಲಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,ವಿಫಲವಾದ ದಾಖಲೆಗಳಿಲ್ಲ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,ಇನ್ನೂ ಇಲ್ಲ ಕಾಮೆಂಟ್ಗಳನ್ನು apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",ಎಸ್ಎಂಎಸ್ ಸೆಟ್ಟಿಂಗ್ಗಳ ಮೂಲಕ ದೃಢೀಕರಣ ವಿಧಾನವಾಗಿ ಅದನ್ನು ಹೊಂದಿಸುವ ಮೊದಲು SMS ಅನ್ನು ಸೆಟಪ್ ಮಾಡಿ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,ಅಗತ್ಯವಿದೆ ಎರಡೂ DOCTYPE ಮತ್ತು ಹೆಸರು @@ -688,6 +721,7 @@ DocType: Website Settings,Footer Items,ಅಡಿಟಿಪ್ಪಣಿ ಐಟಂ apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,ಮೆನು DocType: DefaultValue,DefaultValue,ಡೀಫಾಲ್ಟ್ ಮೌಲ್ಯ DocType: Auto Repeat,Daily,ಪ್ರತಿದಿನ +DocType: Onboarding Slide,Max Count,ಗರಿಷ್ಠ ಎಣಿಕೆ apps/frappe/frappe/config/users_and_permissions.py,User Roles,ಬಳಕೆದಾರ ಪಾತ್ರಗಳು DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ಆಸ್ತಿ ಸೆಟ್ಟರ್ ಪ್ರಮಾಣಿತ DOCTYPE ಅಥವಾ ಫೀಲ್ಡ್ ಆಸ್ತಿ ಅತಿಕ್ರಮಿಸುತ್ತದೆ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ನವೀಕರಿಸಲಾಗುವುದಿಲ್ಲ : ಕೊನೆಗೊಂಡಿದೆ / ತಪ್ಪಾದ ಲಿಂಕ್ . @@ -706,6 +740,7 @@ DocType: Footer Item,"target = ""_blank""","ಗುರಿ = ""_blank""" DocType: Workflow State,hdd,ಎಚ್ಡಿಡಿ DocType: Integration Request,Host,ಹೋಸ್ಟ್ DocType: Data Import Beta,Import File,ಫೈಲ್ ಆಮದು ಮಾಡಿ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,ಟೆಂಪ್ಲೇಟು ದೋಷ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ಅಂಕಣ {0} ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. DocType: ToDo,High,ಎತ್ತರದ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,ಹೊಸ ಈವೆಂಟ್ @@ -721,6 +756,7 @@ DocType: Web Form Field,Show in filter,ಫಿಲ್ಟರ್ನಲ್ಲಿ ತ DocType: Address,Daman and Diu,ದಮನ್ ಮತ್ತು ದಿಯು apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,ಯೋಜನೆ DocType: Address,Personal,ದೊಣ್ಣೆ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,ಕಚ್ಚಾ ಮುದ್ರಣ ಸೆಟ್ಟಿಂಗ್‌ಗಳು ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,ವಿವರಗಳಿಗಾಗಿ https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region ನೋಡಿ. apps/frappe/frappe/config/settings.py,Bulk Rename,ದೊಡ್ಡ ಮರುಹೆಸರಿಸು DocType: Email Queue,Show as cc,ಸಿಸಿ ತೋರಿಸಿ @@ -730,6 +766,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ವೀಡಿಯೊ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ಸಂಪರ್ಕಿಸಿ ಪೇಜ್ ಪರಿಚಯಾತ್ಮಕ ಮಾಹಿತಿ DocType: Print Style,CSS,ಸಿಎಸ್ಎಸ್ DocType: Workflow State,thumbs-down,ಥಂಬ್ಸ್ ಡೌನ್ +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,ದಾಖಲೆಗಳನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗುತ್ತಿದೆ DocType: User,Send Notifications for Email threads,ಇಮೇಲ್ ಎಳೆಗಳಿಗಾಗಿ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಿ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ಪ್ರೊಫೆಸರ್ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ಮಾಡಿರುವುದಿಲ್ಲ ಡೆವಲಪರ್ ಮೋಡ್ನಲ್ಲಿ @@ -737,7 +774,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ಫೈ DocType: DocField,In Global Search,ಜಾಗತಿಕ ಸರ್ಚ್ DocType: System Settings,Brute Force Security,ಬ್ರೂಟ್ ಫೋರ್ಸ್ ಸೆಕ್ಯುರಿಟಿ DocType: Workflow State,indent-left,ಇಂಡೆಂಟ್ ಎಡ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,ಇದು ಈ ಕಡತ ಅಳಿಸಲು ಅಪಾಯಕಾರಿ: {0}. ನಿಮ್ಮ ಸಿಸ್ಟಂ ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ. DocType: Currency,Currency Name,CurrencyName apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ಯಾವುದೇ ಇಮೇಲ್ಗಳನ್ನು @@ -752,11 +788,13 @@ DocType: Energy Point Rule,User Field,ಬಳಕೆದಾರ ಕ್ಷೇತ್ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,ಅಳಿಸು ಪುಶ್ ಮಾಡಿ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ಈಗಾಗಲೇ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ {1} {2} +DocType: Scheduled Job Type,Stopped,ನಿಲ್ಲಿಸಿತು apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ತೆಗೆದು ಇಲ್ಲ apps/frappe/frappe/desk/like.py,Liked,ಇಷ್ಟಪಟ್ಟಿದ್ದಾರೆ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,ಈಗ ಕಳುಹಿಸಿ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ಸ್ಟ್ಯಾಂಡರ್ಡ್ DOCTYPE, ಡೀಫಾಲ್ಟ್ ಮುದ್ರಣ ರೂಪದಲ್ಲಿ ಹೊಂದುವಂತಿಲ್ಲ ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಬಳಸಲು" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ಸ್ಟ್ಯಾಂಡರ್ಡ್ DOCTYPE, ಡೀಫಾಲ್ಟ್ ಮುದ್ರಣ ರೂಪದಲ್ಲಿ ಹೊಂದುವಂತಿಲ್ಲ ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಬಳಸಲು" +DocType: Server Script,Allow Guest,ಅತಿಥಿಯನ್ನು ಅನುಮತಿಸಿ DocType: Report,Query,ಪ್ರಶ್ನೆಯ DocType: Customize Form,Sort Order,ವಿಂಗಡಣಾ ಕ್ರಮ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},' ListView ರಲ್ಲಿ ' ಅವಕಾಶ ಮಾದರಿ {0} ಸತತವಾಗಿ {1} @@ -778,10 +816,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,ಎರಡು ಫ್ಯಾಕ್ಟರ್ ದೃಢೀಕರಣ ವಿಧಾನ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ಮೊದಲ ಹೆಸರನ್ನು ಹೊಂದಿಸಿ ಮತ್ತು ದಾಖಲೆಯನ್ನು ಉಳಿಸಿ. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ದಾಖಲೆಗಳು +DocType: DocType Link,Link Fieldname,ಕ್ಷೇತ್ರದ ಹೆಸರನ್ನು ಲಿಂಕ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ DocType: View Log,Reference Name,ರೆಫರೆನ್ಸ್ ಹೆಸರು apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ಬಳಕೆದಾರರನ್ನು ಬದಲಾಯಿಸಿ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ಪ್ರಥಮ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ಅನುವಾದಗಳನ್ನು ನವೀಕರಿಸಿ DocType: Error Snapshot,Exception,ಎಕ್ಸೆಪ್ಶನ್ DocType: Email Account,Use IMAP,ಬಳಸಿ IMAP @@ -796,6 +836,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,ಕೆಲಸದೊತ್ತಡದ ರಾಜ್ಯದ ಪರಿವರ್ತನೆ ನಿಯಮಗಳು ಲಕ್ಷಣವನ್ನು . DocType: File,Folder,ಫೋಲ್ಡರ್ DocType: Website Route Meta,Website Route Meta,ವೆಬ್‌ಸೈಟ್ ಮಾರ್ಗ ಮೆಟಾ +DocType: Onboarding Slide Field,Onboarding Slide Field,ಆನ್‌ಬೋರ್ಡಿಂಗ್ ಸ್ಲೈಡ್ ಕ್ಷೇತ್ರ DocType: DocField,Index,ಸೂಚಿ DocType: Email Group,Newsletter Manager,ಸುದ್ದಿಪತ್ರ ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,ಆಯ್ಕೆ 1 @@ -822,7 +863,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ವ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ಚಾರ್ಟ್ಸ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ DocType: User,Last IP,ಕೊನೆಯ ಐಪಿ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಮೇಲ್ಗೆ ವಿಷಯ ಸೇರಿಸಿ -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,{1} ನಿಮ್ಮೊಂದಿಗೆ ಹೊಸ ಡಾಕ್ಯುಮೆಂಟ್ {0} ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ. DocType: Data Migration Connector,Data Migration Connector,ಡೇಟಾ ವಲಸೆ ಸಂಪರ್ಕಕ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ಹಿಂತಿರುಗಿಸಲಾಗಿದೆ {1} DocType: Email Account,Track Email Status,ಇಮೇಲ್ ಸ್ಥಿತಿ ಟ್ರ್ಯಾಕ್ ಮಾಡಿ @@ -880,6 +920,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,ಹುಡ DocType: Workflow State,text-width,ಪಠ್ಯ ಅಗಲ apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ಈ ರೆಕಾರ್ಡ್ ಗರಿಷ್ಠ ಲಗತ್ತು ಮಿತಿ ತಲುಪಿದೆ. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ಫೈಲ್ ಹೆಸರು ಅಥವಾ ವಿಸ್ತರಣೆಯ ಮೂಲಕ ಹುಡುಕಿ +DocType: Onboarding Slide,Slide Title,ಸ್ಲೈಡ್ ಶೀರ್ಷಿಕೆ DocType: Notification,View Properties (via Customize Form),(ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಮೂಲಕ) @ action: inmenu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ಫೈಲ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಲು ಅದನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ. DocType: Note Seen By,Note Seen By,ಸೀನ್ ಬೈ ಗಮನಿಸಿ @@ -906,13 +947,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL ಹಂಚಿಕೊಳ್ಳಿ DocType: System Settings,Allow Consecutive Login Attempts ,ಸತತ ಲಾಗಿನ್ ಪ್ರಯತ್ನಗಳನ್ನು ಅನುಮತಿಸಿ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,ಪಾವತಿ ಪ್ರಕ್ರಿಯೆಯ ಸಮಯದಲ್ಲಿ ದೋಷ ಸಂಭವಿಸಿದೆ. ದಯವಿಟ್ಟು ನಮ್ಮನ್ನು ಸಂಪರ್ಕಿಸಿ. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,ಸ್ಲೈಡ್ ಪ್ರಕಾರವನ್ನು ರಚಿಸಿ ಅಥವಾ ಸೆಟ್ಟಿಂಗ್‌ಗಳಾಗಿದ್ದರೆ {ref_doctype} .py ಫೈಲ್‌ನಲ್ಲಿ 'create_onboarding_docs' ವಿಧಾನ ಇರಬೇಕು .ಸ್ಲೈಡ್ ಪೂರ್ಣಗೊಂಡ ನಂತರ ಕಾರ್ಯಗತಗೊಳಿಸಲಾಗುವುದು. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ದಿನಗಳ ಹಿಂದೆ DocType: Email Account,Awaiting Password,ಕಾಯುತ್ತಿದ್ದ ಪಾಸ್ವರ್ಡ್ DocType: Address,Address Line 1,ಲೈನ್ 1 ವಿಳಾಸ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,ವಂಶಸ್ಥರಲ್ಲ DocType: Contact,Company Name,ಕಂಪನಿ ಹೆಸರು DocType: Custom DocPerm,Role,ರೋಲ್ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ಸೆಟ್ಟಿಂಗ್ಗಳು ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ನಿಮ್ಮ ಬ್ರೌಸರ್‌ಗೆ apps/frappe/frappe/utils/data.py,Cent,ಸೆಂಟ್ ,Recorder,ರೆಕಾರ್ಡರ್ @@ -971,6 +1012,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","ಸ್ವೀಕರಿಸುವವರ ಮೂಲಕ ನಿಮ್ಮ ಇಮೇಲ್ ತೆರೆದಿದ್ದರೆ ಟ್ರ್ಯಾಕ್ ಮಾಡಿ.
ಗಮನಿಸಿ: ನೀವು ಬಹು ಸ್ವೀಕರಿಸುವವರಿಗೆ ಕಳುಹಿಸುತ್ತಿದ್ದರೆ, 1 ಸ್ವೀಕರಿಸುವವರು ಈ ಇಮೇಲ್ ಅನ್ನು ಓದುತ್ತಿದ್ದರೂ, ಅದನ್ನು "ತೆರೆಯಲಾಗಿದೆ" ಎಂದು ಪರಿಗಣಿಸಲಾಗುತ್ತದೆ." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ಅಗತ್ಯ ELEMENTARY ಸ್ಥಳ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google ಸಂಪರ್ಕಗಳ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಿ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ DocType: Data Migration Connector,Frappe,ಫ್ರಾಪ್ಪೆ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,ಓದಿಲ್ಲ ಅಂತ ಗುರುತುಹಾಕಿ DocType: Activity Log,Operation,ಆಪರೇಷನ್ @@ -1024,6 +1066,7 @@ DocType: Web Form,Allow Print,ಪ್ರಿಂಟ್ ಅನುಮತಿಸಿ DocType: Communication,Clicked,ಕ್ಲಿಕ್ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ಅನುಸರಿಸಬೇಡಿ apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ಯಾವುದೇ ಅನುಮತಿಯಿಲ್ಲ ' {0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ಕಳುಹಿಸಲು ಪರಿಶಿಷ್ಟ DocType: DocType,Track Seen,ಟ್ರ್ಯಾಕ್ ಸೀನ್ DocType: Dropbox Settings,File Backup,ಫೈಲ್ ಬ್ಯಾಕಪ್ @@ -1032,12 +1075,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,ಯಾವು apps/frappe/frappe/config/customization.py,Add custom forms.,ಕಸ್ಟಮ್ ರೂಪಗಳು ಸೇರಿಸಿ. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ನಲ್ಲಿ {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಸಲ್ಲಿಸಿದ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ವ್ಯವಸ್ಥೆಯ ಅನೇಕ ಪೂರ್ವ ನಿರ್ಧಾರಿತ ಪಾತ್ರಗಳನ್ನು ಒದಗಿಸುತ್ತದೆ . ನೀವು ಸೂಕ್ಷ್ಮ ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಸಲು ಹೊಸ ಪಾತ್ರಗಳನ್ನು ಸೇರಿಸಬಹುದು. DocType: Communication,CC,ಸಿಸಿ DocType: Country,Geo,ಜಿಯೋ DocType: Data Migration Run,Trigger Name,ಟ್ರಿಗ್ಗರ್ ಹೆಸರು -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ಡೊಮೇನ್ಗಳ +DocType: Onboarding Slide,Domains,ಡೊಮೇನ್ಗಳ DocType: Blog Category,Blog Category,ಬ್ಲಾಗ್ ವರ್ಗ apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: , DocType: Role Permission for Page and Report,Roles HTML,ಪಾತ್ರಗಳು ಎಚ್ಟಿಎಮ್ಎಲ್ @@ -1078,7 +1120,6 @@ DocType: Assignment Rule Day,Saturday,ಶನಿವಾರ DocType: User,Represents a User in the system.,ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಒಂದು ಬಳಕೆದಾರ ಪ್ರತಿನಿಧಿಸುತ್ತದೆ. DocType: List View Setting,Disable Auto Refresh,ಸ್ವಯಂ ರಿಫ್ರೆಶ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ DocType: Comment,Label,ಚೀಟಿ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","ಕಾರ್ಯ {0}, ನೀವು {1}, ಮುಚ್ಚಲಾಗಿದೆ ನಿಗದಿಪಡಿಸಲಾಗಿದೆ ಎಂದು." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ಈ ವಿಂಡೋ ಮುಚ್ಚಿ DocType: Print Format,Print Format Type,ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ ಕೌಟುಂಬಿಕತೆ DocType: Newsletter,A Lead with this Email Address should exist,ಈ ಇಮೇಲ್ ಹೊಂದಿರುವ ಒಂದು ಲೀಡ್ ಯಾವಾಗ ಇರಬೇಕು @@ -1094,6 +1135,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,ಹೊರಹೊ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ಒಂದು ಆಯ್ಕೆ DocType: Data Export,Filter List,ಫಿಲ್ಟರ್ ಪಟ್ಟಿ DocType: Data Export,Excel,ಎಕ್ಸೆಲ್ +DocType: System Settings,HH:mm,HH: ಮಿಮೀ DocType: Email Account,Auto Reply Message,ಆಟೋ ಉತ್ತರಿಸಿ ಸಂದೇಶ DocType: Data Migration Mapping,Condition,ಪರಿಸ್ಥಿತಿ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ಗಂಟೆಗಳ ಹಿಂದೆ @@ -1112,12 +1154,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ಜ್ಞಾನ ನೆಲೆ ಕೊಡುಗೆದಾರರು DocType: Communication,Sent Read Receipt,ಕಳುಹಿಸಲಾಗಿದೆ ಓದಿ ರಸೀತಿ DocType: Email Queue,Unsubscribe Method,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ವಿಧಾನ +DocType: Onboarding Slide,Add More Button,ಇನ್ನಷ್ಟು ಬಟನ್ ಸೇರಿಸಿ DocType: GSuite Templates,Related DocType,ಸಂಬಂಧಿತ doctype apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,ವಿಷಯ ಸೇರಿಸಿ ಸಂಪಾದಿಸಿ apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ಭಾಷೆಗಳು ಆಯ್ಕೆ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,ಕಾರ್ಡ್ ವಿವರಗಳು apps/frappe/frappe/__init__.py,No permission for {0},ಯಾವುದೇ ಅನುಮತಿ {0} DocType: DocType,Advanced,ಸುಧಾರಿತ +DocType: Onboarding Slide,Slide Image Source,ಚಿತ್ರದ ಮೂಲವನ್ನು ಸ್ಲೈಡ್ ಮಾಡಿ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API ಕೀ ತೋರುತ್ತದೆ ಅಥವಾ API ಸೀಕ್ರೆಟ್ ತಪ್ಪು !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},ರೆಫರೆನ್ಸ್: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,ಶ್ರೀಮತಿ @@ -1142,7 +1186,6 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Re apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,ನೀವು ಇಂಟರ್ನೆಟ್ಗೆ ಸಂಪರ್ಕ ಹೊಂದಿಲ್ಲ. ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಮರುಪ್ರಯತ್ನಿಸಿ. apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",ಅವಕಾಶ doctype doctype . ಎಚ್ಚರಿಕೆ! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ಮುದ್ರಣ, ಇಮೇಲ್ ಕಸ್ಟಮೈಸ್ ಸ್ವರೂಪಗಳು" -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,ಹೊಸ ಆವೃತ್ತಿ ಅಪ್ಡೇಟ್ DocType: Custom Field,Depends On,ಅವಲಂಬಿಸಿರುತ್ತದೆ DocType: Kanban Board Column,Green,ಹಸಿರು DocType: Custom DocPerm,Additional Permissions,ಹೆಚ್ಚುವರಿ ಅನುಮತಿಗಳು @@ -1168,6 +1211,7 @@ DocType: Address,Is Your Company Address,ನಿಮ್ಮ ಕಂಪನಿ ವಿ DocType: Energy Point Log,Social,ಸಮಾಜ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,ಸಂಪಾದನೆ ರೋ DocType: Workflow Action Master,Workflow Action Master,ವರ್ಕ್ಫ್ಲೋ ಕ್ರಿಯೆ ಮಾಸ್ಟರ್ +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,ಎಲ್ಲಾ ಅಳಿಸಿ DocType: Custom Field,Field Type,ಕ್ಷೇತ್ರ ಪ್ರಕಾರ apps/frappe/frappe/utils/data.py,only.,ಮಾತ್ರ. DocType: Route History,Route History,ಮಾರ್ಗ ಇತಿಹಾಸ @@ -1203,11 +1247,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,ಪಾಸ್ವರ್ಡ್ DocType: System Settings,yyyy-mm-dd,YYYY -MM-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,ಐಡಿ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,ಸರ್ವರ್ ದೋಷ +DocType: Server Script,After Delete,ಅಳಿಸಿದ ನಂತರ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,ಹಿಂದಿನ ಎಲ್ಲಾ ವರದಿಗಳನ್ನು ನೋಡಿ. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ಲಾಗಿನ್ ಐಡಿ ಅಗತ್ಯವಿದೆ DocType: Website Slideshow,Website Slideshow,ವೆಬ್ಸೈಟ್ ಸ್ಲೈಡ್ಶೋ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ಡೇಟಾ ಇಲ್ಲ DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","ಸಂಪರ್ಕ ಮಾಡಿದರು ವೆಬ್ಸೈಟ್ ಮುಖಪುಟದಲ್ಲಿ ಹೊಂದಿದೆ. ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಕೊಂಡಿಗಳು ( ಸೂಚ್ಯಂಕ , ಲಾಗಿನ್ , ಉತ್ಪನ್ನಗಳು , ಬ್ಲಾಗ್ , ಬಗ್ಗೆ , ಸಂಪರ್ಕ )" +DocType: Server Script,After Submit,ಸಲ್ಲಿಸಿದ ನಂತರ apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ಇಮೇಲ್ ಖಾತೆ {0} ಇಮೇಲ್ಗಳನ್ನು ಸ್ವೀಕರಿಸುವುದನ್ನು ಸಂದರ್ಭದಲ್ಲಿ ದೃಢೀಕರಣ ವಿಫಲಗೊಂಡಿತು. ಸರ್ವರ್ನಿಂದ ಸಂದೇಶ: {1} DocType: User,Banner Image,ಬ್ಯಾನರ್ ಚಿತ್ರ DocType: Custom Field,Custom Field,ಕಸ್ಟಮ್ ಫೀಲ್ಡ್ @@ -1247,15 +1293,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","ಬಳಕೆದಾರ ಪರಿಶೀಲಿಸಿದ ಯಾವುದೇ ಪಾತ್ರವನ್ನು ಹೊಂದಿದೆ, ನಂತರ ಬಳಕೆದಾರರು "ವ್ಯವಸ್ಥೆ ಬಳಕೆದಾರ" ಆಗುತ್ತದೆ. "ಸಿಸ್ಟಮ್ ಬಳಕೆದಾರ" ಡೆಸ್ಕ್ಟಾಪ್ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿದೆ" DocType: System Settings,Date and Number Format,ದಿನಾಂಕ ಮತ್ತು ಸಂಖ್ಯೆ ಸ್ವರೂಪ apps/frappe/frappe/model/document.py,one of,ಒಂದು -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ಒಂದು ಕ್ಷಣ ಪರಿಶೀಲಿಸಲಾಗುತ್ತಿದೆ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,ತೋರಿಸು ಟ್ಯಾಗ್ಗಳು DocType: DocField,HTML Editor,ಎಚ್ಟಿಎಮ್ಎಲ್ ಎಡಿಟರ್ 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,ಕ್ರಿಯೆಗಳು -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ +DocType: DocType,Actions,ಕ್ರಿಯೆಗಳು DocType: Workflow State,align-justify,ಸಮರ್ಥಿಸಿಕೊಳ್ಳಲು align DocType: User,Middle Name (Optional),ಮಧ್ಯ ಹೆಸರು (ಐಚ್ಛಿಕ) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,ಅನುಮತಿಯಿಲ್ಲ @@ -1270,6 +1314,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ಯಾವ DocType: System Settings,Security,ಭದ್ರತೆ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} ಸ್ವೀಕರಿಸುವವರಿಗೆ ಕಳುಹಿಸಲು ಪರಿಶಿಷ್ಟ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ಕತ್ತರಿಸಿ +DocType: Server Script,After Save,ಉಳಿಸಿದ ನಂತರ apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},ಮರುನಾಮಕರಣ {0} ನಿಂದ {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} ನ {0} (ಮಕ್ಕಳೊಂದಿಗೆ {2} ಸಾಲುಗಳು) DocType: Currency,**Currency** Master,** ಕರೆನ್ಸಿ ** ಮಾಸ್ಟರ್ @@ -1294,16 +1339,19 @@ DocType: Prepared Report,Filter Values,ಫಿಲ್ಟರ್ ಮೌಲ್ಯಗ DocType: Communication,User Tags,ಬಳಕೆದಾರ ಟ್ಯಾಗ್ಗಳು DocType: Data Migration Run,Fail,ಅನುತ್ತೀರ್ಣ DocType: Workflow State,download-alt,ಡೌನ್ಲೋಡ್ ವಯಸ್ಸಿನ +DocType: Scheduled Job Type,Last Execution,ಕೊನೆಯ ಮರಣದಂಡನೆ DocType: Data Migration Run,Pull Failed,ಪುಲ್ ವಿಫಲವಾಗಿದೆ apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,ಕಾರ್ಡ್‌ಗಳನ್ನು ತೋರಿಸಿ / ಮರೆಮಾಡಿ DocType: Communication,Feedback Request,ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,ಸಿಎಸ್ವಿ / ಎಕ್ಸೆಲ್ ಫೈಲ್ಗಳಿಂದ ಆಮದು ಡೇಟಾ. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ನಂತರ ಜಾಗ ಕಾಣೆಯಾಗಿವೆ: +DocType: Notification Log,From User,ಬಳಕೆದಾರರಿಂದ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} ರದ್ದುಪಡಿಸಲಾಗುತ್ತಿದೆ DocType: Web Page,Main Section,ಮುಖ್ಯ ವಿಭಾಗ DocType: Page,Icon,ಐಕಾನ್ apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","ಸುಳಿವು: ಪಾಸ್ವರ್ಡ್ ಚಿಹ್ನೆಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ಅಕ್ಷರಗಳಲ್ಲಿ ಸೇರಿಸಿ" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","ಸುಳಿವು: ಪಾಸ್ವರ್ಡ್ ಚಿಹ್ನೆಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ಅಕ್ಷರಗಳಲ್ಲಿ ಸೇರಿಸಿ" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","ಉಲ್ಲೇಖಗಳು, ಕಾರ್ಯಯೋಜನೆಗಳು, ಶಕ್ತಿ ಬಿಂದುಗಳು ಮತ್ತು ಹೆಚ್ಚಿನವುಗಳಿಗಾಗಿ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ." DocType: DocField,Allow in Quick Entry,ತ್ವರಿತ ಪ್ರವೇಶದಲ್ಲಿ ಅನುಮತಿಸಿ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,ಪಿಡಿಎಫ್ DocType: System Settings,dd/mm/yyyy,DD / MM / YYYY @@ -1335,7 +1383,6 @@ DocType: Website Theme,Theme URL,ಥೀಮ್ URL DocType: Customize Form,Sort Field,ವಿಂಗಡಿಸಿ ಫೀಲ್ಡ್ DocType: Razorpay Settings,Razorpay Settings,Razorpay ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ಸಂಪಾದಿಸಿ ಫಿಲ್ಟರ್ -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,ಸೇರಿಸಿ ಇನ್ನಷ್ಟು DocType: System Settings,Session Expiry Mobile,ಸೆಷನ್ ಅಂತ್ಯ ಮೊಬೈಲ್ apps/frappe/frappe/utils/password.py,Incorrect User or Password,ತಪ್ಪಾದ ಬಳಕೆದಾರ ಅಥವಾ ಪಾಸ್ವರ್ಡ್ apps/frappe/frappe/templates/includes/search_box.html,Search results for,ಹುಡುಕಾಟ ಫಲಿತಾಂಶಗಳು @@ -1351,8 +1398,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ರೂಲ್ DocType: Communication,Delayed,ತಡವಾಗಿದೆ apps/frappe/frappe/config/settings.py,List of backups available for download,ಡೌನ್ಲೋಡ್ಗೆ ಲಭ್ಯವಿದೆ ಬ್ಯಾಕ್ಅಪ್ ಪಟ್ಟಿ +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,ಹೊಸ ಡೇಟಾ ಆಮದು ಪ್ರಯತ್ನಿಸಿ apps/frappe/frappe/www/login.html,Sign up,ಸೈನ್ ಅಪ್ ಮಾಡಿ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,ಸಾಲು {0}: ಪ್ರಮಾಣಿತ ಕ್ಷೇತ್ರಗಳಿಗಾಗಿ ಕಡ್ಡಾಯವಾಗಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲು ಅನುಮತಿಸಲಾಗಿಲ್ಲ +DocType: Webhook,Enable Security,ಭದ್ರತೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/config/customization.py,Dashboards,ಡ್ಯಾಶ್‌ಬೋರ್ಡ್‌ಗಳು DocType: Test Runner,Output,ಔಟ್ಪುಟ್ DocType: Milestone,Track Field,ಟ್ರ್ಯಾಕ್ ಫೀಲ್ಡ್ @@ -1371,6 +1420,7 @@ DocType: Portal Menu Item,Portal Menu Item,ಪೋರ್ಟಲ್ ಮೆನ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ಫಿಲ್ಟರ್‌ಗಳನ್ನು ಹೊಂದಿಸಿ DocType: Contact Us Settings,Email ID,ಇಮೇಲ್ DocType: Energy Point Rule,Multiplier Field,ಗುಣಕ ಕ್ಷೇತ್ರ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,ರೇಜರ್ಪೇ ಆದೇಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ DocType: Dashboard Chart,Time Interval,ಸಮಯ ಮಧ್ಯಂತರ DocType: Activity Log,Keep track of all update feeds,ಎಲ್ಲಾ ಅಪ್ಡೇಟ್ ಫೀಡ್ಗಳನ್ನು ಗಮನದಲ್ಲಿರಿಸಿಕೊಳ್ಳಿ DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,ಪಟ್ಟಿ ಸಂಪನ್ಮೂಲಗಳ ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ ಬಳಕೆದಾರ ನಂತರ ಅನುಮತಿಸುತ್ತದೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿರುತ್ತದೆ.
ಉದಾ ಯೋಜನೆಯ @@ -1390,6 +1440,7 @@ DocType: DefaultValue,Key,ಕೀಲಿಕೈ DocType: Address,Contacts,ಸಂಪರ್ಕಗಳು DocType: System Settings,Setup Complete,ಸೆಟಪ್ ಕಂಪ್ಲೀಟ್ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ಎಲ್ಲಾ ಡಾಕ್ಯುಮೆಂಟ್ ಷೇರುಗಳ ವರದಿ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ಆಮದು ಟೆಂಪ್ಲೇಟ್ .csv, .xlsx ಅಥವಾ .xls ಪ್ರಕಾರವಾಗಿರಬೇಕು" apps/frappe/frappe/www/update-password.html,New Password,ಹೊಸ ಪಾಸ್ವರ್ಡ್ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ಫಿಲ್ಟರ್ {0} ಕಾಣೆಯಾಗಿದೆ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ಕ್ಷಮಿಸಿ! ನೀವು ಸ್ವಯಂ ರಚಿತ ಕಾಮೆಂಟ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ @@ -1405,6 +1456,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ಫೆವಿಕಾನ್ apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,ರನ್ DocType: Blog Post,Content (HTML),ವಿಷಯ (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,ಇದಕ್ಕಾಗಿ ಸೆಟಪ್ ಮಾಡಿ DocType: Personal Data Download Request,User Name,ಬಳಕೆದಾರ ಹೆಸರು DocType: Workflow State,minus-sign,ಮೈನಸ್ ಚಿಹ್ನೆ apps/frappe/frappe/public/js/frappe/request.js,Not Found,ಕಂಡುಬಂದಿಲ್ಲ @@ -1412,6 +1464,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,ಯಾವುದೇ {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ರಫ್ತು ಕಸ್ಟಮ್ ಅನುಮತಿಗಳು apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ಯಾವುದೇ ಐಟಂಗಳು ಕಂಡುಬಂದಿಲ್ಲ. DocType: Data Export,Fields Multicheck,ಫೀಲ್ಡ್ಸ್ ಮಲ್ಟಿಚ್ಕ್ +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,}} ಪೂರ್ಣಗೊಂಡಿದೆ DocType: Activity Log,Login,ಲಾಗಿನ್ DocType: Web Form,Payments,ಪಾವತಿಗಳು apps/frappe/frappe/www/qrcode.html,Hi {0},ಹಾಯ್ {0} @@ -1440,6 +1493,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ಸಾ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,ಅನುಮತಿ ದೋಷ apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} ನ ಹೆಸರು ಸಾಧ್ಯವಿಲ್ಲ {1} DocType: User Permission,Applicable For,ಜ +DocType: Dashboard Chart,From Date,Fromdate apps/frappe/frappe/core/doctype/version/version_view.html,Success,ಯಶಸ್ಸು apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ಸೆಷನ್ ಮುಕ್ತಾಯಗೊಂಡಿದ್ದು apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ಸೆಷನ್ ಮುಕ್ತಾಯಗೊಂಡಿದ್ದು @@ -1452,7 +1506,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ಯ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ಸ್ಥಿತಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: Async Task,Async Task,Async ಟಾಸ್ಕ್ DocType: Workflow State,picture,ಚಿತ್ರ -apps/frappe/frappe/www/complete_signup.html,Complete,ಕಂಪ್ಲೀಟ್ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ಕಂಪ್ಲೀಟ್ DocType: DocType,Image Field,ಚಿತ್ರ ಫೀಲ್ಡ್ DocType: Print Format,Custom HTML Help,ಕಸ್ಟಮ್ HTML ಸಹಾಯ DocType: LDAP Settings,Default Role on Creation,ಸೃಷ್ಟಿಯಲ್ಲಿ ಡೀಫಾಲ್ಟ್ ಪಾತ್ರ @@ -1460,6 +1514,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,ಮುಂದೆ ರಾಜ್ಯ DocType: User,Block Modules,ಬ್ಲಾಕ್ ಘಟಕಗಳನ್ನು DocType: Print Format,Custom CSS,ಕಸ್ಟಮ್ CSS +DocType: Energy Point Rule,Apply Only Once,ಒಮ್ಮೆ ಮಾತ್ರ ಅನ್ವಯಿಸಿ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ಕಾಮೆಂಟ್ ಅನ್ನು ಸೇರಿಸಿ DocType: Webhook,on_update,ಆನ್_ಅಪ್ಡೇಟ್ apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},ನಿರ್ಲಕ್ಷಿಸಲಾಗಿದೆ: {0} ಗೆ {1} @@ -1470,6 +1525,7 @@ DocType: Address,Postal,ಅಂಚೆಯ DocType: Email Account,Default Incoming,ಡೀಫಾಲ್ಟ್ ಒಳಬರುವ DocType: Workflow State,repeat,ಪುನರಾವರ್ತಿತ DocType: Website Settings,Banner,ಗಮನಸೆಳೆಯುವ +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,ಎಲ್ಲಾ ದಾಖಲೆಗಳನ್ನು ರದ್ದುಮಾಡಿ DocType: Role,"If disabled, this role will be removed from all users.","ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ, ಈ ಪಾತ್ರವನ್ನು ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗೆ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} ಪಟ್ಟಿಗೆ ಹೋಗಿ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ಹುಡುಕಾಟ ಸಹಾಯ @@ -1478,6 +1534,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ನೊ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ಈ ಡಾಕ್ಯುಮೆಂಟ್‌ಗಾಗಿ ಸ್ವಯಂ ಪುನರಾವರ್ತನೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. DocType: DocType,Hide Copy,ನಕಲಿಸಿ ಮರೆಮಾಡಿ apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ಎಲ್ಲಾ ಪಾತ್ರಗಳನ್ನು ತೆರವುಗೊಳಿಸಿ +DocType: Server Script,Before Save,ಉಳಿಸುವ ಮೊದಲು apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ಅನನ್ಯ ಇರಬೇಕು apps/frappe/frappe/model/base_document.py,Row,ರೋ apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","ಸಿಸಿ, ಬಿಸಿಸಿ ಮತ್ತು ಇಮೇಲ್ ಟೆಂಪ್ಲೇಟು" @@ -1488,7 +1545,6 @@ DocType: Chat Profile,Offline,ಆಫ್ಲೈನ್ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},ಯಶಸ್ವಿಯಾಗಿ ಆಮದು ಮಾಡಲಾಗಿದೆ {0} DocType: User,API Key,API ಕೀ DocType: Email Account,Send unsubscribe message in email,ಇಮೇಲ್ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಸಂದೇಶವನ್ನು ಕಳುಹಿಸಲು -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ಸಂಪಾದಿಸಿ ಶೀರ್ಷಿಕೆ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,ಈ ಲಿಂಕ್ ಕ್ಷೇತ್ರಕ್ಕೆ doctype ವಾಗಿರುತ್ತದೆ FIELDNAME. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,ನೀವು ಮತ್ತು ನೀವು ಅದಕ್ಕೆ ಡಾಕ್ಯುಮೆಂಟ್ಸ್. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,ನೀವು ಇದನ್ನು ನಕಲಿಸಿ-ಅಂಟಿಸಬಹುದು @@ -1518,8 +1574,10 @@ DocType: Data Migration Run,Total Pages,ಒಟ್ಟು ಪುಟಗಳು DocType: DocField,Attach Image,ಚಿತ್ರ ಲಗತ್ತಿಸಿ DocType: Workflow State,list-alt,ಪಟ್ಟಿ ವಯಸ್ಸಿನ apps/frappe/frappe/www/update-password.html,Password Updated,ಪಾಸ್ವರ್ಡ್ Updated +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ನಿಮ್ಮ ಲಾಗಿನ್ ಅನ್ನು ಪರಿಶೀಲಿಸಲು ಕ್ರಮಗಳು apps/frappe/frappe/utils/password.py,Password not found,ಪಾಸ್ವರ್ಡ್ ಕಂಡುಬಂದಿಲ್ಲ +DocType: Webhook,Webhook Secret,ವೆಬ್‌ಹುಕ್ ರಹಸ್ಯ DocType: Data Migration Mapping,Page Length,ಪುಟ ಉದ್ದ DocType: Email Queue,Expose Recipients,ಸ್ವೀಕೃತದಾರರ ಒಡ್ಡಲು apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ಒಳಬರುವ ಮೇಲ್ಗಳು ಕಡ್ಡಾಯವಾದರೂ ಸೇರಿಸು @@ -1546,6 +1604,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,ವ್ಯವಸ್ಥೆ DocType: Web Form,Max Attachment Size (in MB),ಮ್ಯಾಕ್ಸ್ ಲಗತ್ತು ಗಾತ್ರ (MB ಯಲ್ಲಿ) apps/frappe/frappe/www/login.html,Have an account? Login,ಒಂದು ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲ? ಲಾಗಿನ್ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಮುದ್ರಿಸಿ ... DocType: Workflow State,arrow-down,ಬಾಣದ ಡೌನ್ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ಸಾಲು {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ಬಳಕೆದಾರ ಅಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ {0}: {1} @@ -1567,6 +1626,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ನಿಮ DocType: Dropbox Settings,Dropbox Access Secret,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಸೀಕ್ರೆಟ್ DocType: Tag Link,Document Title,ಡಾಕ್ಯುಮೆಂಟ್ ಶೀರ್ಷಿಕೆ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ಕಡ್ಡಾಯ) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ DocType: Social Login Key,Social Login Provider,ಸಮಾಜ ಲಾಗಿನ್ ಒದಗಿಸುವವರು apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ಮತ್ತೊಂದು ಕಾಮೆಂಟ್ ಸೇರಿಸಿ apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ಫೈಲ್ನಲ್ಲಿ ಯಾವುದೇ ಡೇಟಾ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಹೊಸ ಫೈಲ್ ಅನ್ನು ಡೇಟಾದೊಂದಿಗೆ ಮರುಹೊಂದಿಸಿ. @@ -1581,11 +1641,12 @@ DocType: Workflow State,hand-down,ಕೈ ಕೆಳಗೆ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",ಕಾನ್ಬನ್ ಅಂಕಣವಾಗಿ ಬಳಸಬಹುದಾದ ಯಾವುದೇ ಕ್ಷೇತ್ರಗಳು ಕಂಡುಬಂದಿಲ್ಲ. "ಆಯ್ಕೆ" ಪ್ರಕಾರದ ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸಲು ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಅನ್ನು ಬಳಸಿ. DocType: Address,GST State,ಜಿಎಸ್ಟಿ ರಾಜ್ಯ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : ಸಲ್ಲಿಸಿ ರದ್ದು ಇಲ್ಲದೆ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ಬಳಕೆದಾರ ({0}) DocType: Website Theme,Theme,ಥೀಮ್ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ಅನ್ನು ದೃಢೀಕರಣ ಕೋಡ್ ತಲುಪಿದೆ ಮರುನಿರ್ದೇಶಿಸುತ್ತದೆ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,ಸಹಾಯ ತೆರೆಯಿರಿ DocType: DocType,Is Submittable,Submittable ಈಸ್ -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ಹೊಸ ಉಲ್ಲೇಖ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,ಹೊಸ ಉಲ್ಲೇಖ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ಯಾವುದೇ ಹೊಸ Google ಸಂಪರ್ಕಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಿಲ್ಲ. DocType: File,Uploaded To Google Drive,Google ಡ್ರೈವ್‌ಗೆ ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾಗಿದೆ apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ಒಂದು ಕ್ಷೇತ್ರದಲ್ಲಿ ಚೆಕ್ ಮೌಲ್ಯ 0 ಅಥವಾ 1 ಆಗಿರಬಹುದು @@ -1595,7 +1656,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,ಸರಣಿ ಕಡ DocType: Workflow State,Inbox,ಇನ್ಬಾಕ್ಸ್ DocType: Kanban Board Column,Red,ಕೆಂಪು DocType: Workflow State,Tag,ಡೇ -DocType: Custom Script,Script,ಸ್ಕ್ರಿಪ್ಟ್ +DocType: Report,Script,ಸ್ಕ್ರಿಪ್ಟ್ apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಉಳಿಸಲಾಗುವುದಿಲ್ಲ. DocType: Energy Point Rule,Maximum Points,ಗರಿಷ್ಠ ಅಂಕಗಳು apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,ನನ್ನ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು @@ -1624,8 +1685,10 @@ DocType: Email Queue,Email Queue,ಇಮೇಲ್ ಸರದಿಗೆ DocType: Address,Haryana,ಹರಿಯಾಣ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ಪಾತ್ರಗಳು ಅವರ ಬಳಕೆದಾರ ಪುಟ ಬಳಕೆದಾರರಿಗೆ ಹೊಂದಿಸಬಹುದಾಗಿದೆ. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,ಕಾಮೆಂಟ್ ಸೇರಿಸಿ +DocType: Dashboard Chart,Select Date Range,ದಿನಾಂಕ ಶ್ರೇಣಿ ಆಯ್ಕೆಮಾಡಿ DocType: DocField,Mandatory,ಆಜ್ಞಾಪಕ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ರಫ್ತು ಮಾಡ್ಯೂಲ್ +DocType: Scheduled Job Type,Monthly Long,ಮಾಸಿಕ ಉದ್ದ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : ಇಲ್ಲ ಮೂಲಭೂತ ಅನುಮತಿಗಳನ್ನು ಸೆಟ್ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","ಆಫ್ , ಸಲ್ಲಿಸಿ ರದ್ದು , ಮಾಡಿರಿ ಅರ್ಥ" @@ -1634,7 +1697,6 @@ DocType: Test Runner,Module Path,ಮಾಡ್ಯೂಲ್ ಪಾತ್ DocType: Milestone Tracker,Track milestones for any document,ಯಾವುದೇ ಡಾಕ್ಯುಮೆಂಟ್‌ಗಾಗಿ ಮೈಲಿಗಲ್ಲುಗಳನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಿ DocType: Social Login Key,Identity Details,ಗುರುತಿನ ವಿವರಗಳು apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ಡ್ಯಾಶ್‌ಬೋರ್ಡ್ ತೋರಿಸು -apps/frappe/frappe/desk/form/assign_to.py,New Message,ಹೊಸ ಸಂದೇಶ DocType: File,Preview HTML,ಮುನ್ನೋಟ ಎಚ್ಟಿಎಮ್ಎಲ್ DocType: Desktop Icon,query-report,ಪ್ರಶ್ನಾವಳಿ ವರದಿ DocType: Data Import Beta,Template Warnings,ಟೆಂಪ್ಲೇಟು ಎಚ್ಚರಿಕೆಗಳು @@ -1651,12 +1713,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} ಹೆಸರು apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ಯಾವುದೇ ಅನುಮತಿಗಳು ಈ ಮಾನದಂಡಗಳನ್ನು ಸೆಟ್ . DocType: Auto Email Report,Auto Email Report,ಆಟೋ ಇಮೇಲ್ ವರದಿ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,ಹೊಸ ಡಾಕ್ಯುಮೆಂಟ್ ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,ಕಾಮೆಂಟ್ ಅನ್ನು ಅಳಿಸಲು? DocType: Address Template,This format is used if country specific format is not found,ದೇಶದ ನಿರ್ದಿಷ್ಟ ಸ್ವರೂಪ ದೊರೆಯಲಿಲ್ಲ ವೇಳೆ ಈ ವಿನ್ಯಾಸವನ್ನು ಬಳಸಿದಾಗ DocType: System Settings,Allow Login using Mobile Number,ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಬಳಸಿ ಲಾಗಿನ್ ಆಗಿ ಅನುಮತಿಸಿ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,ಈ ಸಂಪನ್ಮೂಲವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅಗತ್ಯವಾದ ಅನುಮತಿ ಇಲ್ಲ. ಪ್ರವೇಶ ಪಡೆಯಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ. DocType: Custom Field,Custom,ಪದ್ಧತಿ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ನಿರ್ಬಂಧಿತ ಐಪಿ ವಿಳಾಸದಿಂದ ಲಾಗಿನ್ ಮಾಡುವ ಬಳಕೆದಾರರನ್ನು ಎರಡು ಫ್ಯಾಕ್ಟರ್ ದೃಢೀಕರಣಕ್ಕಾಗಿ ಪ್ರಾಂಪ್ಟ್ ಮಾಡಲಾಗುವುದಿಲ್ಲ" +DocType: Server Script,After Cancel,ರದ್ದುಗೊಳಿಸಿದ ನಂತರ DocType: Auto Repeat,Get Contacts,ಸಂಪರ್ಕಗಳನ್ನು ಪಡೆಯಿರಿ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ಅಡಿಯಲ್ಲಿ ದಾಖಲಿಸಿದ ಪೋಸ್ಟ್ಗಳು {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ಶೀರ್ಷಿಕೆರಹಿತ ಕಾಲಮ್ ಅನ್ನು ಬಿಡಲಾಗುತ್ತಿದೆ @@ -1667,6 +1731,7 @@ DocType: User,Login After,ನಂತರ ಲಾಗಿನ್ DocType: Print Format,Monospace,ಮೊನೋಸ್ಪೇಸ್ DocType: Letter Head,Printing,ಮುದ್ರಣ DocType: Workflow State,thumbs-up,ಥಂಬ್ಸ್ ಅಪ್ +DocType: Notification Log,Mention,ಉಲ್ಲೇಖಿಸಿ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ಫಾಂಟ್ಗಳು apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,ನಿಖರವಾದ 1 ಮತ್ತು 6 ನಡುವೆ ಇರಬೇಕು @@ -1674,7 +1739,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},ಎಫ್ apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ಮತ್ತು apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},ಈ ವರದಿಯನ್ನು {0} DocType: Error Snapshot,Frames,ಚೌಕಟ್ಟುಗಳು -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ನಿಯೋಜನೆ +DocType: Notification Log,Assignment,ನಿಯೋಜನೆ DocType: Notification,Slack Channel,ಸ್ಲ್ಯಾಕ್ ಚಾನೆಲ್ DocType: About Us Team Member,Image Link,ಚಿತ್ರ ಲಿಂಕ್ DocType: Auto Email Report,Report Filters,ವರದಿ ಶೋಧಕಗಳು @@ -1691,6 +1756,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ಕ್ರಿಯೆಯನ್ನು ನವೀಕರಿಸಲಾಗುತ್ತಿಲ್ಲ apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,ನಿಮ್ಮ ನೋಂದಾಯಿತ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ ಪರಿಶೀಲನೆ ಕೋಡ್ ಅನ್ನು ಕಳುಹಿಸಲಾಗಿದೆ. apps/frappe/frappe/core/doctype/user/user.py,Throttled,ಥ್ರೊಟಲ್ಡ್ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,ನಿಮ್ಮ ಗುರಿ apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ಫಿಲ್ಟರ್ 4 ಮೌಲ್ಯಗಳು (DOCTYPE, FIELDNAME, ಆಯೋಜಕರು, ಮೌಲ್ಯ) ಹೊಂದಿರಬೇಕು: {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,ನಿಯೋಜನೆ ನಿಯಮವನ್ನು ಅನ್ವಯಿಸಿ apps/frappe/frappe/utils/bot.py,show,ಪ್ರದರ್ಶನ @@ -1744,7 +1810,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,ಲಿಂಕ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,ನಿನ್ನ ಭಾಷೆ DocType: Dashboard Chart,Average,ಸರಾಸರಿ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,ರೋ ಸೇರಿಸಿ -DocType: Tag Category,Doctypes,DOCTYPES apps/frappe/frappe/public/js/frappe/form/print.js,Printer,ಮುದ್ರಕ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,ಪ್ರಶ್ನೆಯು ಆಯ್ಕೆ ಮಾಡಬೇಕು DocType: Auto Repeat,Completed,ಪೂರ್ಣಗೊಂಡಿದೆ @@ -1802,6 +1867,7 @@ DocType: GCalendar Account,Next Sync Token,ಮುಂದಿನ ಸಿಂಕ್ DocType: Energy Point Settings,Energy Point Settings,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳು DocType: Async Task,Succeeded,ಉತ್ತರಾಧಿಕಾರಿ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ಅಗತ್ಯವಿದೆ ಕಡ್ಡಾಯ ಜಾಗ {0} +DocType: Onboarding Slide Field,Align,ಜೋಡಿಸಿ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} ಅನುಮತಿಗಳನ್ನು ಮರುಹೊಂದಿಸಿ ? apps/frappe/frappe/config/desktop.py,Users and Permissions,ಬಳಕೆದಾರರು ಮತ್ತು ಅನುಮತಿಗಳು DocType: S3 Backup Settings,S3 Backup Settings,S3 ಬ್ಯಾಕಪ್ ಸೆಟ್ಟಿಂಗ್ಗಳು @@ -1818,7 +1884,9 @@ DocType: DocType,ASC,ಎಎಸ್ಸಿ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ಹೊಸ ಮುದ್ರಣ ಸ್ವರೂಪ ಹೆಸರು apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ವಿನಂತಿಯನ್ನು ಅನುಮೋದಿಸಲು ಕೆಳಗಿನ ಲಿಂಕ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ DocType: Workflow State,align-left,ಎಡಕ್ಕೆ +DocType: Onboarding Slide,Action Settings,ಕ್ರಿಯೆಯ ಸೆಟ್ಟಿಂಗ್‌ಗಳು DocType: User,Defaults,ಡಿಫಾಲ್ಟ್ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ಹೋಲಿಕೆಗಾಗಿ,> 5, <10 ಅಥವಾ = 324 ಬಳಸಿ. ಶ್ರೇಣಿಗಳಿಗಾಗಿ, 5:10 ಬಳಸಿ (5 ಮತ್ತು 10 ರ ನಡುವಿನ ಮೌಲ್ಯಗಳಿಗೆ)." DocType: Energy Point Log,Revert Of,ಹಿಂತಿರುಗಿಸಿ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ವಿಲೀನಗೊಳ್ಳಲು DocType: User,Birth Date,ಜನನ ದಿನಾಂಕ @@ -1874,6 +1942,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ರಲ್ಲಿ DocType: Notification,Value Change,ಮೌಲ್ಯ ಬದಲಾಯಿಸು DocType: Google Contacts,Authorize Google Contacts Access,Google ಸಂಪರ್ಕಗಳ ಪ್ರವೇಶವನ್ನು ಅಧಿಕೃತಗೊಳಿಸಿ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ವರದಿಗಳಿಂದ ಸಂಖ್ಯಾ ಕ್ಷೇತ್ರಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತಿದೆ +apps/frappe/frappe/utils/data.py,1 week ago,1 ವಾರ ಹಿಂದೆ DocType: Data Import Beta,Import Type,ಆಮದು ಪ್ರಕಾರ DocType: Access Log,HTML Page,HTML ಪುಟ DocType: Address,Subsidiary,ಸಹಕಾರಿ @@ -1883,7 +1952,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,ತಲೆಬರಹ ಜೊತೆ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ಅಮಾನ್ಯವಾದ ಹೊರಹೋಗುವ ಮೇಲ್ ಸರ್ವರ್ ಅಥವಾ ಪೋರ್ಟ್ DocType: Custom DocPerm,Write,ಬರೆ -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ಕೇವಲ ನಿರ್ವಾಹಕರು ಪ್ರಶ್ನೆ / ಸ್ಕ್ರಿಪ್ಟ್ ವರದಿಗಳು ರಚಿಸಲು ಅವಕಾಶ apps/frappe/frappe/public/js/frappe/form/save.js,Updating,ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ DocType: Data Import Beta,Preview,ಮುನ್ನೋಟ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ಫೀಲ್ಡ್ "ಮೌಲ್ಯ" ಕಡ್ಡಾಯ. ನವೀಕರಿಸಲಾಗುತ್ತದೆ ಮೌಲ್ಯವನ್ನು ಸೂಚಿಸಲು @@ -1893,6 +1961,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,ಬಳಕ DocType: Data Migration Run,Started,ಪ್ರಾರಂಭಿಸಿದೆ apps/frappe/frappe/permissions.py,User {0} does not have access to this document,ಬಳಕೆದಾರ {0} ಈ ಡಾಕ್ಯುಮೆಂಟ್‌ಗೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿಲ್ಲ DocType: Data Migration Run,End Time,ಎಂಡ್ ಟೈಮ್ +DocType: Dashboard Chart,Group By Based On,ಆಧಾರಿತ ಗುಂಪು apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆ apps/frappe/frappe/model/naming.py, for {0},ಫಾರ್ {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ನೀವು ಈ ದಸ್ತಾವೇಜನ್ನು ಮುದ್ರಿಸು ಅನುಮತಿ ಇಲ್ಲ @@ -1934,6 +2003,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ಪರಿಶೀಲ DocType: Workflow Document State,Update Field,ಅಪ್ಡೇಟ್ ಫೀಲ್ಡ್ DocType: Chat Profile,Enable Chat,ಚಾಟ್ ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: LDAP Settings,Base Distinguished Name (DN),ಬೇಸ್ ಪ್ರತ್ಯೇಕ ಹೆಸರನ್ನು (ಡಿ) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ಈ ಸಂಭಾಷಣೆ ಬಿಡಿ apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ಆಯ್ಕೆಗಳು ಲಿಂಕ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೆಟ್ ಅಲ್ಲ {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,ಕ್ಯೂ / ವರ್ಕರ್ @@ -2001,12 +2071,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,ಲಾಗಿನ್ ಈ ಸಮಯದಲ್ಲಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: Data Migration Run,Current Mapping Action,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ ಕ್ರಿಯೆ DocType: Dashboard Chart Source,Source Name,ಮೂಲ ಹೆಸರು -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ಬಳಕೆದಾರರೊಂದಿಗೆ ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆ ಸಂಯೋಜಿತವಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಬಳಕೆದಾರ> ಇಮೇಲ್ ಇನ್‌ಬಾಕ್ಸ್ ಅಡಿಯಲ್ಲಿ ಖಾತೆಯನ್ನು ಸೇರಿಸಿ. DocType: Email Account,Email Sync Option,ಇಮೇಲ್ ಸಿಂಕ್ ಆಯ್ಕೆ apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,ಸಾಲು ಇಲ್ಲ DocType: Async Task,Runtime,ಚಾಲನಾಸಮಯ DocType: Post,Is Pinned,ಪಿನ್ ಮಾಡಲಾಗಿದೆ DocType: Contact Us Settings,Introduction,ಪರಿಚಯ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,ಸಹಾಯ ಬೇಕೇ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ಜಾಗತಿಕವಾಗಿ ಪಿನ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ನಂತರ DocType: LDAP Settings,LDAP Email Field,LDAP ಅನ್ನು ಇಮೇಲ್ ಫೀಲ್ಡ್ @@ -2016,7 +2086,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ಈಗಾ DocType: User Email,Enable Outgoing,ಹೊರಹೋಗುವ ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: Address,Fax,ಫ್ಯಾಕ್ಸ್ apps/frappe/frappe/config/customization.py,Custom Tags,ಕಸ್ಟಮ್ ಟ್ಯಾಗ್ಗಳು -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ DocType: Comment,Submitted,ಒಪ್ಪಿಸಿದ DocType: Contact,Pulled from Google Contacts,Google ಸಂಪರ್ಕಗಳಿಂದ ಎಳೆಯಲಾಗಿದೆ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,ಅಮಾನ್ಯ ವಿನಂತಿ @@ -2037,9 +2106,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ಮುಖ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,ನನಗೆ ನಿಗದಿಪಡಿಸಿ DocType: DocField,Dynamic Link,ಡೈನಾಮಿಕ್ ಲಿಂಕ್ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ಮೆನು ಮತ್ತು ಸೈಡ್‌ಬಾರ್‌ನಲ್ಲಿ ಹೆಚ್ಚುವರಿ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳನ್ನು ಪ್ರಚೋದಿಸಲು ಆಲ್ಟ್ ಕೀ ಒತ್ತಿರಿ +DocType: Dashboard Chart,To Date,ದಿನಾಂಕ DocType: List View Setting,List View Setting,ಪಟ್ಟಿ ವೀಕ್ಷಣೆ ಸೆಟ್ಟಿಂಗ್ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,ಉದ್ಯೋಗಗಳು ವಿಫಲವಾಗಿದೆ ಶೋ -DocType: Event,Details,ವಿವರಗಳು +DocType: Scheduled Job Log,Details,ವಿವರಗಳು DocType: Property Setter,DocType or Field,Doctype ಅಥವಾ ಫೀಲ್ಡ್ apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,ನೀವು ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಅನುಸರಿಸಲಿಲ್ಲ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,ಪ್ರಾಥಮಿಕ ಬಣ್ಣ @@ -2048,7 +2118,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ಸೀಮ್ಸ್ .ಪ್ರಕಟಿಸುವ ಕೀ ಅಥವಾ ಸೀಕ್ರೆಟ್ ಕೀ ತಪ್ಪು !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ಸೀಮ್ಸ್ .ಪ್ರಕಟಿಸುವ ಕೀ ಅಥವಾ ಸೀಕ್ರೆಟ್ ಕೀ ತಪ್ಪು !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,ಅನುಮತಿಗಳು ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ ತಕ್ಷಣದ ಸಹಾಯ -DocType: Tag Doc Category,Doctype to Assign Tags,ಟ್ಯಾಗ್ಗಳು ನಿಗದಿಪಡಿಸಿ doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,ಶೋ ರಿಲ್ಯಾಪ್ಸಸ್ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ಇಮೇಲ್ ಟ್ರ್ಯಾಶ್ಗೆ ಸರಿಸಲಾಗಿದೆ DocType: Report,Report Builder,ವರದಿ ಬಿಲ್ಡರ್ @@ -2064,6 +2133,7 @@ DocType: Workflow State,Upload,ಅಪ್ಲೋಡ್ DocType: User Permission,Advanced Control,ಸುಧಾರಿತ ನಿಯಂತ್ರಣ DocType: System Settings,Date Format,ದಿನಾಂಕ ಸ್ವರೂಪ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ಪ್ರಕಟಿಸಲಾಗಿಲ್ಲ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಪ್ರಿಂಟಿಂಗ್ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್‌ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","ಕೆಲಸದೊತ್ತಡದ ಕ್ರಿಯೆಗಳು ( ಇ ಜಿ ಅನುಮೋದಿಸಿ , ರದ್ದು ) ." DocType: Data Import,Skip rows with errors,ದೋಷಗಳನ್ನು ಹೊಂದಿರುವ ಸಾಲುಗಳನ್ನು ಬಿಟ್ಟುಬಿಡಿ DocType: Workflow State,flag,ಧ್ವಜ @@ -2080,7 +2150,7 @@ DocType: Post Comment,Post Comment,ಕಾಮೆಂಟ್ ಪೋಸ್ಟ್ ಮ apps/frappe/frappe/config/core.py,Documents,ಡಾಕ್ಯುಮೆಂಟ್ಸ್ apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,ಚಟುವಟಿಕೆ ಲಾಗ್ ಇವರಿಂದ DocType: Social Login Key,Custom Base URL,ಕಸ್ಟಮ್ ಮೂಲ URL -DocType: Email Flag Queue,Is Completed,ಮುಗಿದ +DocType: Onboarding Slide,Is Completed,ಮುಗಿದ apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ಫೀಲ್ಡ್ಸ್ ಪಡೆಯಿರಿ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,ಪ್ರೊಫೈಲ್ಸಂಪಾದಿಸು DocType: Kanban Board Column,Archived,ಆರ್ಕೈವ್ @@ -2091,12 +2161,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",ಇಲ್ಲಿ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗಿದೆ FIELDNAME ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ ಮಾತ್ರ ಅಥವಾ ನಿಯಮಗಳನ್ನು ನೈಜ (ಉದಾಹರಣೆಗಳು) ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಕಾಣಿಸುತ್ತದೆ: myfield eval: doc.myfield == 'ನನ್ನ ಮೌಲ್ಯ' eval: doc.age> 18 DocType: Social Login Key,Office 365,ಕಚೇರಿ 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ಇಂದು -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ಇಂದು +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ಇಂದು +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ಇಂದು apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ನೀವು ಈ ಹೊಂದಿರಬೇಕು, ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಾಧ್ಯವಾಗುತ್ತದೆ ಪ್ರವೇಶ ದಾಖಲೆಗಳನ್ನು ಲಿಂಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಅಲ್ಲಿ ( ಉದಾ. ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ ) ( ಉದಾ. ಬ್ಲಾಗರ್ ) ಇರುತ್ತದೆ ." DocType: Data Import Beta,Submit After Import,ಆಮದು ನಂತರ ಸಲ್ಲಿಸಿ DocType: Error Log,Log of Scheduler Errors,ಶೆಡ್ಯೂಲರ ತಪ್ಪುಗಳಿಗೆ ಲಾಗ್ DocType: User,Bio,ಬಯೋ +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ಆನ್‌ಬೋರ್ಡಿಂಗ್ ಸ್ಲೈಡ್ ಸಹಾಯ ಲಿಂಕ್ DocType: OAuth Client,App Client Secret,ಅಪ್ಲಿಕೇಶನ್ ಕ್ಲೈಂಟ್ ಸೀಕ್ರೆಟ್ apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ಸಲ್ಲಿಸಲಾಗುತ್ತಿದೆ apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,ಡೇಟಾವನ್ನು ಸೇರಿಸಿಕೊಳ್ಳುವ ಡಾಕ್ಯುಮೆಂಟ್ನ ಹೆಸರು ಪೋಷಕ. @@ -2104,7 +2175,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ಅಪ್ಪರ್ ಕೇಸ್ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,ಕಸ್ಟಮ್ HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ನಿರ್ದೇಶಿಕೆಯಹೆಸರನ್ನುನಮೂದಿಸಿ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಪ್ರಿಂಟಿಂಗ್ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್‌ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ. apps/frappe/frappe/auth.py,Unknown User,ಅಜ್ಞಾತ ಬಳಕೆದಾರ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,ಆಯ್ಕೆ ಪಾತ್ರ DocType: Comment,Deleted,ಅಳಿಸಲಾಗಿದೆ @@ -2120,7 +2190,7 @@ DocType: Chat Token,Chat Token,ಟೋಕನ್ ಚಾಟ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ಚಾರ್ಟ್ ರಚಿಸಿ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ಆಮದು ಮಾಡಬೇಡಿ -DocType: Web Page,Center,ಕೇಂದ್ರ +DocType: Onboarding Slide Field,Center,ಕೇಂದ್ರ DocType: Notification,Value To Be Set,ಮೌಲ್ಯ ಹೊಂದಿಸಿ ಬಿ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} ಸಂಪಾದಿಸಿ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ಮೊದಲ ಮಟ್ಟ @@ -2128,7 +2198,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ಡೇಟಾಬೇಸ್ ಹೆಸರು apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ರಿಫ್ರೆಶ್ ಫಾರ್ಮ್ DocType: DocField,Select,ಆರಿಸು -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,ಪೂರ್ಣ ಲಾಗ್ ವೀಕ್ಷಿಸಿ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ಪೂರ್ಣ ಲಾಗ್ ವೀಕ್ಷಿಸಿ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ಸರಳ ಪೈಥಾನ್ ಅಭಿವ್ಯಕ್ತಿ, ಉದಾಹರಣೆ: ಸ್ಥಿತಿ == 'ತೆರೆಯಿರಿ' ಮತ್ತು == 'ದೋಷ' ಎಂದು ಟೈಪ್ ಮಾಡಿ" apps/frappe/frappe/utils/csvutils.py,File not attached,ಫೈಲ್ ಲಗತ್ತಿಸಲಾದ apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ಸಂಪರ್ಕ ಕಳೆದುಹೋಗಿದೆ. ಕೆಲವು ವೈಶಿಷ್ಟ್ಯಗಳು ಕಾರ್ಯನಿರ್ವಹಿಸದೇ ಇರಬಹುದು. @@ -2160,6 +2230,7 @@ DocType: Web Page,HTML for header section. Optional,ಹೆಡರ್ ಭಾಗವ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,ಈ ವೈಶಿಷ್ಟ್ಯವು ಹೊಚ್ಚ ಹೊಸ ಮತ್ತು ಇನ್ನೂ ಪ್ರಾಯೋಗಿಕ apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,{0} ಸಾಲುಗಳ ಗರಿಷ್ಠ ಅವಕಾಶ DocType: Dashboard Chart Link,Chart,ಚಾರ್ಟ್ +DocType: Scheduled Job Type,Cron,ಕ್ರಾನ್ DocType: Email Unsubscribe,Global Unsubscribe,ಜಾಗತಿಕ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ಇದು ಬಹಳ ಸಾಮಾನ್ಯ ಗುಪ್ತಪದವನ್ನು. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,ವೀಕ್ಷಿಸಿ @@ -2176,6 +2247,7 @@ DocType: Data Migration Connector,Hostname,ಹೋಸ್ಟ್ಹೆಸರು DocType: Data Migration Mapping,Condition Detail,ಷರತ್ತು ವಿವರ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","ಕರೆನ್ಸಿಗೆ {0}, ಕನಿಷ್ಠ ವಹಿವಾಟು ಮೊತ್ತವು {1} ಆಗಿರಬೇಕು" DocType: DocField,Print Hide,ಪ್ರಿಂಟ್ ಅಡಗಿಸು +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ಬಳಕೆದಾರರಿಗೆ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,ಮೌಲ್ಯ ಯನ್ನು DocType: Workflow State,tint,ಛಾಯೆ @@ -2240,6 +2312,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ಲಾಗಿ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ಮಾಡಲು ಸೇರಿಸಿ DocType: Footer Item,Company,ಕಂಪನಿ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ಸರಾಸರಿ {0} +DocType: Scheduled Job Log,Scheduled,ಪರಿಶಿಷ್ಟ DocType: User,Logout from all devices while changing Password,ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸುವಾಗ ಎಲ್ಲಾ ಸಾಧನಗಳಿಂದ ನಿರ್ಗಮಿಸಿ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ಪಾಸ್ವರ್ಡ್ ಪರಿಶೀಲಿಸಿ apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,ದೋಷಗಳು ಇದ್ದವು @@ -2264,7 +2337,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ಬಳಕೆದಾರರ ಅನುಮತಿ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} ವೀಕ್ಷಿಸಿ -DocType: User,Hourly,ಗಂಟೆಯ +DocType: Scheduled Job Type,Hourly,ಗಂಟೆಯ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ನೋಂದಣಿ OAuth ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ DocType: DocField,Fetch If Empty,ಖಾಲಿಯಾಗಿದ್ದರೆ ಪಡೆಯಿರಿ DocType: Data Migration Connector,Authentication Credentials,ದೃಢೀಕರಣ ರುಜುವಾತುಗಳು @@ -2274,10 +2347,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,ಪಾಯಿಂಟ DocType: SMS Settings,SMS Gateway URL,SMS ಗೇಟ್ವೇ URL ಅನ್ನು apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ಸಾಧ್ಯವಿಲ್ಲ ""{2}"". ಇದು ""{3}"" ಒಂದು ಆಗಿರಬೇಕು" apps/frappe/frappe/utils/data.py,{0} or {1},{0} ಅಥವಾ {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,ನೀವೆಲ್ಲರೂ ಸಿದ್ಧರಾಗಿದ್ದೀರಿ! DocType: Workflow State,trash,ಕಸ DocType: System Settings,Older backups will be automatically deleted,ಹಳೆಯ ಬ್ಯಾಕ್ಅಪ್ ಅಳಿಸಲ್ಪಡುತ್ತದೆ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ಅಮಾನ್ಯವಾದ ಪ್ರವೇಶ ಕೀ ID ಅಥವಾ ರಹಸ್ಯ ಪ್ರವೇಶ ಕೀ. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,ನೀವು ಕೆಲವು ಶಕ್ತಿ ಬಿಂದುಗಳನ್ನು ಕಳೆದುಕೊಂಡಿದ್ದೀರಿ DocType: Post,Is Globally Pinned,ಜಾಗತಿಕವಾಗಿ ಪಿನ್ ಮಾಡಲಾಗಿದೆ apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,ಇತ್ತೀಚಿನ ಚಟುವಟಿಕೆ DocType: Workflow Transition,Conditions,ನಿಯಮಗಳು @@ -2286,6 +2359,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,ದೃಢಪ DocType: Event,Ends on,ಮೇಲೆ ಎಂಡ್ಸ್ DocType: Payment Gateway,Gateway,ಗೇಟ್ವೇ DocType: LDAP Settings,Path to Server Certificate,ಸರ್ವರ್ ಪ್ರಮಾಣಪತ್ರದ ಹಾದಿ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,ನಿಮ್ಮ ಬ್ರೌಸರ್‌ನಲ್ಲಿ ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ಕೊಂಡಿಗಳು ನೋಡಲು ಸಾಕಷ್ಟು ಅನುಮತಿಯನ್ನು apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ಕೊಂಡಿಗಳು ನೋಡಲು ಸಾಕಷ್ಟು ಅನುಮತಿಯನ್ನು apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,ವಿಳಾಸ ಶೀರ್ಷಿಕೆ ಕಡ್ಡಾಯ. @@ -2304,7 +2378,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ಇದನ್ನು ಪರಿಶೀಲಿಸಿದಲ್ಲಿ, ಮಾನ್ಯವಾದ ಡೇಟಾದೊಂದಿಗೆ ಸಾಲುಗಳನ್ನು ಆಮದು ಮಾಡಲಾಗುವುದು ಮತ್ತು ನಂತರ ನೀವು ಆಮದು ಮಾಡಲು ಅಮಾನ್ಯವಾದ ಸಾಲುಗಳನ್ನು ಹೊಸ ಫೈಲ್ಗೆ ಎಸೆಯಲಾಗುತ್ತದೆ." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ಡಾಕ್ಯುಮೆಂಟ್ ಪಾತ್ರವನ್ನು ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಂಪಾದಿಸಬಹುದು -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","ನೀವು {1}, ಮೂಲಕ {2} ಮುಚ್ಚಲಾಗಿದೆ ನಿಗದಿಪಡಿಸಲಾಗಿದೆ ಎಂದು ಕೆಲಸವನ್ನು {0},." DocType: Print Format,Show Line Breaks after Sections,ಶೋ ಲೈನ್ ಪರಿಚ್ಛೇದ ನಂತರ ಬ್ರೇಕ್ಸ್ DocType: Communication,Read by Recipient On,ಸ್ವೀಕರಿಸುವವರ ಮೂಲಕ ಓದಿ DocType: Blogger,Short Name,ಚಿಕ್ಕ ಹೆಸರು @@ -2337,6 +2410,7 @@ DocType: Translation,PR sent,ಪಿಆರ್ ಕಳುಹಿಸಲಾಗಿದ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ಮಾತ್ರ ರೆಕಾರ್ಡ್ಸ್ ಕೊನೆಯ ಎಕ್ಸ್ ಗಂಟೆಗಳ ನವೀಕರಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ಮಾತ್ರ ರೆಕಾರ್ಡ್ಸ್ ಕೊನೆಯ ಎಕ್ಸ್ ಗಂಟೆಗಳ ನವೀಕರಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ DocType: Communication,Feedback,ಪ್ರತ್ಯಾದಾನ +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ಹೊಸ ಆವೃತ್ತಿಗೆ ನವೀಕರಿಸಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ಅನುವಾದವನ್ನು ತೆರೆಯಿರಿ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,ಈ ಇಮೇಲ್ ಸ್ವಯಂಜನಕವಾಗಿದೆ DocType: Workflow State,Icon will appear on the button,ಐಕಾನ್ ಬಟನ್ ಮೇಲೆ ಕಾಣಿಸುತ್ತದೆ @@ -2374,6 +2448,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,ಪುಟ DocType: DocField,Precision,ನಿಖರವಾದ DocType: Website Slideshow,Slideshow Items,ಸ್ಲೈಡ್ಶೋ ಐಟಂಗಳು apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,ಪುನರಾವರ್ತಿತ ಪದಗಳು ಮತ್ತು ಪಾತ್ರಗಳು ತಪ್ಪಿಸಲು ಪ್ರಯತ್ನಿಸಿ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,ಎಲ್ಲಾ ಸಾಲುಗಳನ್ನು ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? DocType: Workflow Action,Workflow State,ವರ್ಕ್ಫ್ಲೋ ರಾಜ್ಯ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ಸಾಲುಗಳು ಸೇರಿಸಲಾಗಿದೆ apps/frappe/frappe/www/list.py,My Account,ನನ್ನ ಖಾತೆ @@ -2382,6 +2458,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,ದಿನಗಳ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ ಟ್ರೇ ಸಂಪರ್ಕ ಸಕ್ರಿಯವಾಗಿದೆ! DocType: Contact Us Settings,Settings for Contact Us Page,ನಮ್ಮನ್ನು ಪುಟ ಸಂಪರ್ಕಿಸಿ ಸೆಟ್ಟಿಂಗ್ಗಳು +DocType: Server Script,Script Type,ಸ್ಕ್ರಿಪ್ಟ್ ಕೌಟುಂಬಿಕತೆ DocType: Print Settings,Enable Print Server,ಮುದ್ರಣ ಸರ್ವರ್ ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} ವಾರಗಳ ಹಿಂದೆ DocType: Email Account,Footer,ಅಡಿಟಿಪ್ಪಣಿ @@ -2406,8 +2483,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,ಎಚ್ಚರಿಕೆ apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,ಇದನ್ನು ಬಹು ಪುಟಗಳಲ್ಲಿ ಮುದ್ರಿಸಬಹುದು DocType: Data Migration Run,Percent Complete,ಪೂರ್ಣಗೊಂಡ ಶೇಕಡಾ -DocType: Tag Category,Tag Category,ಟ್ಯಾಗ್ ವರ್ಗ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ಹೋಲಿಕೆಗಾಗಿ,> 5, <10 ಅಥವಾ = 324 ಬಳಸಿ. ಶ್ರೇಣಿಗಳಿಗಾಗಿ, 5:10 ಬಳಸಿ (5 ಮತ್ತು 10 ರ ನಡುವಿನ ಮೌಲ್ಯಗಳಿಗೆ)." DocType: Google Calendar,Pull from Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್‌ನಿಂದ ಎಳೆಯಿರಿ apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,ಸಹಾಯ DocType: User,Login Before,ಮೊದಲು ಲಾಗಿನ್ ಆಗಿ @@ -2417,17 +2492,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,ವಾರಾಂತ್ಯಗಳನ್ನು ಮರೆಮಾಡಿ apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ಮರುಕಳಿಸುವ ದಾಖಲೆಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಉತ್ಪಾದಿಸುತ್ತದೆ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ಈಸ್ +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,ಮಾಹಿತಿಯನ್ನು - ಚಿಹ್ನೆ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ಫಾರ್ {0} ಪಟ್ಟಿಯನ್ನು ಸಾಧ್ಯವಿಲ್ಲ ಮೌಲ್ಯ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ಹೇಗೆ ಈ ಕರೆನ್ಸಿ ಫಾರ್ಮಾಟ್ ಮಾಡಬೇಕು ? ಸೆಟ್ ಅಲ್ಲ, ವ್ಯವಸ್ಥೆಯನ್ನು ಪೂರ್ವನಿಯೋಜಿತಗಳನ್ನು ಬಳಸುತ್ತದೆ" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} ದಾಖಲೆಗಳನ್ನು ಸಲ್ಲಿಸಿ? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ನೀವು ಲಾಗ್ ಇನ್ ಮತ್ತು ಬ್ಯಾಕ್ಅಪ್ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ ವ್ಯವಸ್ಥೆ ಮ್ಯಾನೇಜರ್ ಪಾತ್ರ ಅಗತ್ಯವಿದೆ . +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ...

ಕಚ್ಚಾ ಮುದ್ರಣ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸ್ಥಾಪಿಸಿ ಚಾಲನೆಯಲ್ಲಿರಬೇಕು.

QZ ಟ್ರೇ ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಸ್ಥಾಪಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ .
ಕಚ್ಚಾ ಮುದ್ರಣದ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿದುಕೊಳ್ಳಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ಪ್ರಿಂಟರ್ ಮ್ಯಾಪಿಂಗ್ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ಲಗತ್ತಿಸುತ್ತಿದ್ದೇನೆ ಮೊದಲು ಉಳಿಸಲು ದಯವಿಟ್ಟು. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ಎಲ್ಲಾ ಲಿಂಕ್ ಮಾಡಿದ ದಾಖಲೆಗಳನ್ನು ರದ್ದುಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ಸೇರಿಸಲಾಗಿದೆ {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ಗೆ {0} ನಿಂದ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ {1} ಸತತವಾಗಿ {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,ಅನುಮತಿಗಳನ್ನು DocType: Help Article,Intermediate,ಮಧ್ಯಂತರ +apps/frappe/frappe/config/settings.py,Email / Notifications,ಇಮೇಲ್ / ಅಧಿಸೂಚನೆಗಳು apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} ಅನ್ನು {2} ಗೆ ಬದಲಾಯಿಸಲಾಗಿದೆ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,ರದ್ದುಗೊಂಡ ಡಾಕ್ಯುಮೆಂಟ್ ಡ್ರಾಫ್ಟ್ ಆಗಿ ಮರುಸ್ಥಾಪಿಸಲಾಗಿದೆ DocType: Data Migration Run,Start Time,ಟೈಮ್ @@ -2443,6 +2522,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,ಅಮಾನ್ಯ ಸ್ವೀಕರಿಸುವವರು ವಿಳಾಸಕ್ಕೆ DocType: Workflow State,step-forward,ಹಂತ ಮುಂದೆ DocType: System Settings,Allow Login After Fail,ವಿಫಲವಾದ ನಂತರ ಲಾಗಿನ್ ಅನ್ನು ಅನುಮತಿಸಿ +DocType: DocType Link,DocType Link,ಡಾಕ್ಟೈಪ್ ಲಿಂಕ್ DocType: Role Permission for Page and Report,Set Role For,ಫಾರ್ ಹೊಂದಿಸಿ ಪಾತ್ರ DocType: GCalendar Account,The name that will appear in Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್ನಲ್ಲಿ ಗೋಚರಿಸುವ ಹೆಸರು apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ಜೊತೆ ನೇರ ಕೊಠಡಿ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. @@ -2460,6 +2540,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ಹೊ DocType: Contact,Google Contacts,Google ಸಂಪರ್ಕಗಳು DocType: GCalendar Account,GCalendar Account,ಜಿಕಾಲೆಂಡರ್ ಖಾತೆ DocType: Email Rule,Is Spam,ಸ್ಪಾಮ್ ಈಸ್ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,ಕೊನೆಯದು apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ವರದಿ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ಓಪನ್ {0} DocType: Data Import Beta,Import Warnings,ಆಮದು ಎಚ್ಚರಿಕೆಗಳು @@ -2471,6 +2552,7 @@ DocType: Workflow State,ok-sign,ಸರಿ ಚಿಹ್ನೆ apps/frappe/frappe/config/settings.py,Deleted Documents,ಅಳಿಸಲಾಗಿದೆ ಡಾಕ್ಯುಮೆಂಟ್ಸ್ apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ಸ್ವರೂಪವು ಕೇಸ್ ಸೆನ್ಸಿಟಿವ್ ಆಗಿದೆ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ಡೆಸ್ಕ್ಟಾಪ್ ಐಕಾನ್ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ಎಲ್ಲಾ ಡೊಮೇನ್‌ಗಳಲ್ಲಿ ಸ್ಲೈಡ್‌ಗಳು ಏನನ್ನು ತೋರಿಸಬೇಕು ಎಂಬುದನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಿ. ಯಾವುದನ್ನೂ ನಿರ್ದಿಷ್ಟಪಡಿಸದಿದ್ದರೆ ಸ್ಲೈಡ್ ಅನ್ನು ಎಲ್ಲಾ ಡೊಮೇನ್‌ಗಳಲ್ಲಿ ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ನಕಲು DocType: Newsletter,Create and Send Newsletters,ರಚಿಸಿ ಮತ್ತು ಕಳುಹಿಸಿ ಸುದ್ದಿಪತ್ರಗಳು apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,ನಿಮ್ಮ ಅಭಿಪ್ರಾಯಕ್ಕೆ ಧನ್ಯವಾದಗಳು. ಅನುಮೋದನೆಯ ನಂತರ ಅದನ್ನು ಪ್ರಕಟಿಸಲಾಗುವುದು @@ -2480,6 +2562,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google ಕ್ಯಾಲೆಂಡರ್ ಈವೆಂಟ್ ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""ಪೋಷಕ"" ಈ ಸಾಲಿನಲ್ಲಿ ಇದರಲ್ಲಿ ಪೋಷಕ ಟೇಬಲ್ ಸೂಚಿಸುತ್ತದೆ" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,ವಿಮರ್ಶೆ ಅಂಕಗಳು: +DocType: Scheduled Job Log,Scheduled Job Log,ಪರಿಶಿಷ್ಟ ಜಾಬ್ ಲಾಗ್ +DocType: Server Script,Before Delete,ಅಳಿಸುವ ಮೊದಲು apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ಫೈಲ್ಗಳು / url ಗಳನ್ನು ಲಗತ್ತಿಸಿ ಮತ್ತು ಟೇಬಲ್ನಲ್ಲಿ ಸೇರಿಸಿ. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,ಸಂದೇಶ ಸೆಟಪ್ ಆಗಿಲ್ಲ @@ -2503,19 +2587,20 @@ DocType: About Us Settings,Settings for the About Us Page,ನಮ್ಮ ಬಗ್ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ಪಟ್ಟಿ ಪಾವತಿ ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ಪಟ್ಟಿ ಪಾವತಿ ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ಮುದ್ರಣವನ್ನು ಮುದ್ರಕಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,ಶಕ್ತಿ ಅಂಕಗಳು +DocType: Notification Settings,Energy Points,ಶಕ್ತಿ ಅಂಕಗಳು DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ಉದಾ pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,ಕೀಗಳನ್ನು ರಚಿಸಿ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ಇದು ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಶಾಶ್ವತವಾಗಿ ತೆಗೆದುಹಾಕುತ್ತದೆ. DocType: DocType,View Settings,ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ವೀಕ್ಷಿಸಿ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,ಹೊಸ ಅಧಿಸೂಚನೆ DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,ರಚನೆ ವಿನಂತಿಸಿ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,ನಿಯಂತ್ರಕ ವಿಧಾನ get_razorpay_order ಕಾಣೆಯಾಗಿದೆ DocType: Personal Data Deletion Request,Pending Verification,ಪರಿಶೀಲನೆ ಬಾಕಿ ಉಳಿದಿದೆ DocType: Website Meta Tag,Website Meta Tag,ವೆಬ್‌ಸೈಟ್ ಮೆಟಾ ಟ್ಯಾಗ್ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","ಪ್ರಮಾಣಿತ ಬಂದರು (ಉದಾ. 587). Google ಮೇಘದಲ್ಲಿದ್ದರೆ, ಪೋರ್ಟ್ 2525 ಅನ್ನು ಪ್ರಯತ್ನಿಸಿ." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",ಪ್ರಕಟವಾದ ಪುಟಗಳಿಗಾಗಿ ಹಿಂದೆ ಇರುವಂತಿಲ್ಲವಾದ್ದರಿಂದ ಅಂತಿಮ ದಿನಾಂಕವನ್ನು ತೆರವುಗೊಳಿಸುತ್ತದೆ. DocType: User,Send Me A Copy of Outgoing Emails,ಹೊರಹೋಗುವ ಇಮೇಲ್ಗಳ ನಕಲನ್ನು ನನಗೆ ಕಳುಹಿಸಿ -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.,ಗೂಗಲ್ ಅನಾಲಿಟಿಕ್ಸ್ ID ಸೇರಿಸಿ : ಯುಎ ಉದಾ 89XXX57 - 1 . . ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಗೂಗಲ್ ಅನಾಲಿಟಿಕ್ಸ್ ಸಹಾಯ ಹುಡುಕಲು ದಯವಿಟ್ಟು . apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,ಪಾಸ್ವರ್ಡ್ ಹೆಚ್ಚು 100 ಪಾತ್ರಗಳು ಬಹಳ ಸಾಧ್ಯವಿಲ್ಲ DocType: OAuth Client,App Client ID,ಅಪ್ಲಿಕೇಶನ್ ಕ್ಲೈಂಟ್ ID @@ -2544,6 +2629,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,ಹೊಸ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಹಂಚಿಕೆಯ {1} DocType: Website Settings,Brand Image,ಬ್ರಾಂಡ್ ಇಮೇಜ್ DocType: Print Settings,A4,A4 ಕಾರು +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,ಆಮದು ಟೆಂಪ್ಲೆಟ್ ಹೆಡರ್ ಮತ್ತು ಕನಿಷ್ಠ ಒಂದು ಸಾಲನ್ನು ಹೊಂದಿರಬೇಕು. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google ಕ್ಯಾಲೆಂಡರ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿದೆ. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","ಉನ್ನತ ಸಂಚರಣೆ ಬಾರ್ , ಅಡಿಟಿಪ್ಪಣಿ ಮತ್ತು ಲಾಂಛನವನ್ನು ಸೆಟಪ್ ." DocType: Web Form Field,Max Value,ಮ್ಯಾಕ್ಸ್ ಮೌಲ್ಯ @@ -2552,6 +2638,7 @@ DocType: Auto Repeat,Preview Message,ಸಂದೇಶವನ್ನು ಪೂರ್ DocType: User Social Login,User Social Login,ಬಳಕೆದಾರ ಸಮಾಜ ಲಾಗಿನ್ DocType: Contact,All,ಎಲ್ಲಾ DocType: Email Queue,Recipient,ಗ್ರಾಹಿ +DocType: Webhook,Webhook Security,ವೆಬ್‌ಹುಕ್ ಭದ್ರತೆ DocType: Communication,Has Attachment,ಲಗತ್ತು ಹೊಂದಿದೆ DocType: Address,Sales User,ಮಾರಾಟ ಬಳಕೆದಾರ apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ಎಳೆದು ಉಪಕರಣ ನಿರ್ಮಿಸಲು ಮತ್ತು ಮುದ್ರಣ ಸ್ವರೂಪಗಳು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು. @@ -2642,14 +2729,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,ವೆಬ್ಸೈಟ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,ಸ್ವಯಂ ಅನುಮೋದನೆಯನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: GSuite Templates,Template ID,ಟೆಂಪ್ಲೇಟು ಐಡಿ apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type ({0}) and Response Type ({1}) not allowed,ಗ್ರಾಂಟ್ ಕೌಟುಂಬಿಕತೆ ( {0} ) ಮತ್ತು ರೆಸ್ಪಾನ್ಸ್ ಟೈಪ್ ( {1} ) ನ ಸಂಯೋಜನೆಯು ಅನುಮತಿಸುವುದಿಲ್ಲ -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} ನಿಂದ ಹೊಸ ಸಂದೇಶ DocType: Portal Settings,Default Role at Time of Signup,ಸೈನ್ ಅಪ್ ಸಮಯದಲ್ಲಿ ಡೀಫಾಲ್ಟ್ ಪಾತ್ರ DocType: DocType,Title Case,TitleCase apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಕೆಳಗಿನ ಲಿಂಕ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},ಬಳಕೆದಾರರಿಗೆ ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ {0} DocType: Data Migration Run,Data Migration Run,ಡೇಟಾ ವಲಸೆ ರನ್ DocType: Blog Post,Email Sent,ಕಳುಹಿಸಲಾದ ಇಮೇಲ್ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,ಹಳೆಯದು DocType: DocField,Ignore XSS Filter,XSS ಸಂಪರ್ಕ ಫಿಲ್ಟರ್ ನಿರ್ಲಕ್ಷಿಸು apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ತೆಗೆದು apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಬ್ಯಾಕಪ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು @@ -2703,6 +2788,7 @@ DocType: Async Task,Queued,ಸರತಿಯಲ್ಲಿ DocType: Braintree Settings,Use Sandbox,ಸ್ಯಾಂಡ್ಬಾಕ್ಸ್ ಬಳಸಿ apps/frappe/frappe/utils/goal.py,This month,ಈ ತಿಂಗಳು apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ಹೊಸ ಕಸ್ಟಮ್ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ +DocType: Server Script,Before Save (Submitted Document),ಉಳಿಸುವ ಮೊದಲು (ಸಲ್ಲಿಸಿದ ಡಾಕ್ಯುಮೆಂಟ್) DocType: Custom DocPerm,Create,ರಚಿಸಿ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,ಪ್ರದರ್ಶಿಸಲು ಹೆಚ್ಚಿನ ಐಟಂಗಳಿಲ್ಲ apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,ಹಿಂದಿನ ದಾಖಲೆಗೆ ಹೋಗಿ @@ -2759,6 +2845,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ಕಸಬುಟ್ಟಿಗೆ DocType: Web Form,Web Form Fields,ವೆಬ್ ಫಾರ್ಮ್ ಫೀಲ್ಡ್ಸ್ DocType: Data Import,Amended From,ಗೆ ತಿದ್ದುಪಡಿ +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,ಸ್ಲೈಡ್‌ನಲ್ಲಿ ಏನು ಭರ್ತಿ ಮಾಡಬೇಕೆಂಬುದರ ಬಗ್ಗೆ ಬಳಕೆದಾರರಿಗೆ ತಿಳಿದಿಲ್ಲದಿದ್ದಲ್ಲಿ ಸಹಾಯ ವೀಡಿಯೊ ಲಿಂಕ್ ಅನ್ನು ಸೇರಿಸಿ. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},ಎಚ್ಚರಿಕೆ: ಸಾಧ್ಯವಾಗಲಿಲ್ಲ ಹುಡುಕಲು {0} ಸಂಬಂಧಿಸಿದ ಯಾವುದೇ ಕೋಷ್ಟಕದಲ್ಲಿ {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಸ್ತುತ ಮರಣದಂಡನೆ ಸರತಿಯಲ್ಲಿ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ @@ -2780,6 +2867,7 @@ DocType: Blog Post,Blog Post,ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ DocType: Access Log,Export From,ನಿಂದ ರಫ್ತು ಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ವಿಸ್ತೃತ ಹುಡುಕಾಟ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ಸುದ್ದಿಪತ್ರವನ್ನು ವೀಕ್ಷಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ. +DocType: Dashboard Chart,Group By,ಗುಂಪಿನ DocType: User,Interests,ಆಸಕ್ತಿಗಳು apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ DocType: Energy Point Rule,Allot Points To Assigned Users,ನಿಯೋಜಿಸಲಾದ ಬಳಕೆದಾರರಿಗೆ ಅಂಕಗಳನ್ನು ನೀಡಿ @@ -2795,6 +2883,7 @@ DocType: Assignment Rule,Assignment Rule,ನಿಯೋಜನೆ ನಿಯಮ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},ಸಲಹೆ ಬಳಕೆದಾರ ಹೆಸರು: {0} DocType: Assignment Rule Day,Day,ದಿನ apps/frappe/frappe/public/js/frappe/desk.js,Modules,ಮಾಡ್ಯೂಲ್ಗಳು +DocType: DocField,Mandatory Depends On,ಕಡ್ಡಾಯ ಅವಲಂಬಿಸಿರುತ್ತದೆ apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ಪಾವತಿ ಯಶಸ್ಸು apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,ಯಾವುದೇ {0} ಮೇಲ್ DocType: OAuth Bearer Token,Revoked,ಹಿಂಪಡೆಯಲಾಗಿದೆ @@ -2802,6 +2891,7 @@ DocType: Web Page,Sidebar and Comments,ಪಾರ್ಶ್ವಪಟ್ಟಿ ಮ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ನೀವು ನಂತರ ರದ್ದು ಮತ್ತು ಅದನ್ನು ಉಳಿಸಲು ಡಾಕ್ಯುಮೆಂಟ್ ಮಾಡಿರಿ , ಇದು ಹೊಸ ಸಂಖ್ಯೆ ಸಿಗುತ್ತದೆ ಮಾಡಿದರು ಹಳೆಯ ಸಂಖ್ಯೆ ಒಂದು ಆವೃತ್ತಿಯಾಗಿದೆ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಲಗತ್ತಿಸಲು ಅನುಮತಿಸಲಾಗಿಲ್ಲ, ಪ್ರಿಂಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ {0} ಮುದ್ರಣವನ್ನು ಅನುಮತಿಸಿ" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ಡಾಕ್ಯುಮೆಂಟ್ ನೋಡಿ {0} DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ @@ -2816,6 +2906,7 @@ DocType: Currency,Fraction,ಭಿನ್ನರಾಶಿ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ಈವೆಂಟ್ Google ಕ್ಯಾಲೆಂಡರ್ನೊಂದಿಗೆ ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆ. DocType: LDAP Settings,LDAP First Name Field,LDAP ಅನ್ನು ಮೊದಲ ಹೆಸರು ಫೀಲ್ಡ್ DocType: Contact,Middle Name,ಮಧ್ಯದ ಹೆಸರು +DocType: DocField,Property Depends On,ಆಸ್ತಿ ಅವಲಂಬಿಸಿರುತ್ತದೆ DocType: Custom Field,Field Description,ಫೀಲ್ಡ್ ವಿವರಣೆ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ಪ್ರಾಂಪ್ಟಿನಲ್ಲಿ ಮೂಲಕ ಸೆಟ್ ಹೆಸರು apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ @@ -2861,11 +2952,11 @@ DocType: Workflow State,folder-close,ಫೋಲ್ಡರ್ ಹತ್ತಿ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,ವರದಿ: DocType: Print Settings,Print taxes with zero amount,ಶೂನ್ಯ ಮೊತ್ತದೊಂದಿಗೆ ಪ್ರಿಂಟ್ ತೆರಿಗೆಗಳು apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ಮರುನಾಮಕರಣ ಮಾಡಲು ಅನುಮತಿ ಇಲ್ಲ +DocType: Server Script,Before Insert,ಸೇರಿಸುವ ಮೊದಲು DocType: Custom Script,Custom Script,ಕಸ್ಟಮ್ ಲಿಪಿ DocType: Address,Address Line 2,ಲೈನ್ 2 ವಿಳಾಸ DocType: Address,Reference,ರೆಫರೆನ್ಸ್ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,ನಿಯೋಜಿಸಲಾಗಿದೆ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ಡೇಟಾ ವಲಸೆ ಮ್ಯಾಪಿಂಗ್ ವಿವರ DocType: Data Import,Action,ಕ್ರಿಯೆ DocType: GSuite Settings,Script URL,ಸ್ಕ್ರಿಪ್ಟ್ URL @@ -2891,11 +2982,13 @@ DocType: User,Api Access,API ಪ್ರವೇಶ DocType: DocField,In List View,ListView ರಲ್ಲಿ DocType: Email Account,Use TLS,TLS ಅನ್ನು ಬಳಸಿ apps/frappe/frappe/email/smtp.py,Invalid login or password,ಅಮಾನ್ಯ ಲಾಗಿನ್ ಪ್ರವೇಶಪದವನ್ನು +DocType: Scheduled Job Type,Weekly Long,ಸಾಪ್ತಾಹಿಕ ಉದ್ದ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ಡೌನ್ಲೋಡ್ ಟೆಂಪ್ಲೇಟು apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ಸ್ವರೂಪಗಳಿಗೆ ಕಸ್ಟಮ್ ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಸೇರಿಸಿ . ,Role Permissions Manager,ಪಾತ್ರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ಹೊಸ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ ಹೆಸರು apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,ಟಾಗಲ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ +DocType: Server Script,After Save (Submitted Document),ಉಳಿಸಿದ ನಂತರ (ಸಲ್ಲಿಸಿದ ಡಾಕ್ಯುಮೆಂಟ್) DocType: Data Migration Run,Pull Insert,ಸೇರಿಸಿ ಪುಲ್ ಮಾಡಿ DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ಗುಣಕ ಮೌಲ್ಯದೊಂದಿಗೆ ಬಿಂದುಗಳನ್ನು ಗುಣಿಸಿದ ನಂತರ ಗರಿಷ್ಠ ಅಂಕಗಳನ್ನು ಅನುಮತಿಸಲಾಗಿದೆ (ಗಮನಿಸಿ: ಯಾವುದೇ ಮಿತಿಯಿಲ್ಲದೆ ಈ ಕ್ಷೇತ್ರವನ್ನು ಖಾಲಿ ಬಿಡಿ ಅಥವಾ 0 ಅನ್ನು ಹೊಂದಿಸಿ) @@ -2913,6 +3006,7 @@ DocType: User Permission,User Permission,ಬಳಕೆದಾರರು ಅನು apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ಬ್ಲಾಗ್ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ಅನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ಮಾಹಿತಿಯನ್ನು ಡೌನ್ಲೋಡ್ +DocType: Server Script,Before Cancel,ರದ್ದುಮಾಡುವ ಮೊದಲು DocType: Workflow State,hand-right,ಕೈ ಬಲ DocType: Website Settings,Subdomain,ಸಬ್ಡೊಮೈನ್ DocType: S3 Backup Settings,Region,ಪ್ರದೇಶ @@ -2958,12 +3052,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,ಹಳೆಯ ಪಾಸ DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ಪೋಸ್ಟ್ಗಳು {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",", ಕಾಲಮ್ಗಳನ್ನು ಫಾರ್ಮಾಟ್ ಪ್ರಶ್ನೆಯಲ್ಲಿ ಕಾಲಮ್ ಲೇಬಲ್ಗಳನ್ನು ನೀಡಿ." +DocType: Onboarding Slide,Slide Fields,ಕ್ಷೇತ್ರಗಳನ್ನು ಸ್ಲೈಡ್ ಮಾಡಿ DocType: Has Domain,Has Domain,ಡೊಮೈನ್ ಹ್ಯಾಸ್ DocType: User,Allowed In Mentions,ಉಲ್ಲೇಖಗಳಲ್ಲಿ ಅನುಮತಿಸಲಾಗಿದೆ apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ಒಂದು ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲ? ಸೈನ್ ಅಪ್ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID ಕ್ಷೇತ್ರವನ್ನು ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : ನಿಯೋಜನೆ ಮಾಡಿರಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ Submittable ಅಲ್ಲ DocType: Address,Bihar,ಬಿಹಾರ +DocType: Notification Settings,Subscribed Documents,ಚಂದಾದಾರರಾದ ದಾಖಲೆಗಳು apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,ಬಳಕೆದಾರರ ಸೆಟ್ಟಿಂಗ್‌ಗಳು DocType: Report,Reference Report,ಉಲ್ಲೇಖ ವರದಿ DocType: Activity Log,Link DocType,ಲಿಂಕ್ DOCTYPE @@ -2981,6 +3077,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google ಕ್ಯಾಲ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ನೀವು ಹುಡುಕುತ್ತಿರುವ ಪುಟ ಕಾಣೆಯಾಗಿದೆ. ಸ್ಥಳಾಂತರ ಅಥವಾ ಲಿಂಕ್ ಒಂದು ಮುದ್ರಣದೋಷ ಇಲ್ಲ ಏಕೆಂದರೆ ಆಗಿರಬಹುದು. apps/frappe/frappe/www/404.html,Error Code: {0},ದೋಷ ಕೋಡ್: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ಸರಳ ಪಠ್ಯ ಪಟ್ಟಿಗಳನ್ನು ಪುಟ ವಿವರಣೆ , ಸಾಲುಗಳನ್ನು ಕೇವಲ ಒಂದೆರಡು . ( ಮ್ಯಾಕ್ಸ್ 140 ಅಕ್ಷರಗಳು)" +DocType: Server Script,DocType Event,ಡಾಕ್ಟೈಪ್ ಈವೆಂಟ್ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರಗಳಾಗಿವೆ DocType: Workflow,Allow Self Approval,ಸ್ವಯಂ ಅನುಮೋದನೆಯನ್ನು ಅನುಮತಿಸಿ DocType: Event,Event Category,ಈವೆಂಟ್ ವರ್ಗ @@ -2997,6 +3094,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ನಿಮ್ಮ ಹೆಸರು apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,ಸಂಪರ್ಕದ ಯಶಸ್ಸು DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ಸ್ಲೈಡ್ ಪ್ರಕಾರದ ಆನ್‌ಬೋರ್ಡಿಂಗ್ ಸ್ಲೈಡ್ ಮುಂದುವರೆಯುವುದು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. DocType: DocType,Default Sort Field,ಡೀಫಾಲ್ಟ್ ವಿಂಗಡಣೆ ಕ್ಷೇತ್ರ DocType: File,Is Folder,ಫೋಲ್ಡರ್ DocType: Document Follow,DocType,doctype @@ -3035,7 +3133,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ಮೌ DocType: Workflow State,arrow-up,ಬಾಣದ ಅಪ್ DocType: Dynamic Link,Link Document Type,ಲಿಂಕ್ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} ಕೋಷ್ಟಕಕ್ಕೆ ಕನಿಷ್ಠ ಒಂದು ಸಾಲು ಇರಬೇಕು +DocType: Server Script,Server Script,ಸರ್ವರ್ ಸ್ಕ್ರಿಪ್ಟ್ DocType: OAuth Bearer Token,Expires In,ರಲ್ಲಿ ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","ನೀವು ಕ್ಷೇತ್ರಗಳ ಗುಂಪನ್ನು ಪುನರಾವರ್ತಿಸಲು ಬಯಸುವ ಸಮಯ (ಉದಾ: ನೀವು ಸ್ಲೈಡ್‌ನಲ್ಲಿ 3 ಗ್ರಾಹಕರನ್ನು ಬಯಸಿದರೆ, ಈ ಕ್ಷೇತ್ರವನ್ನು 3 ಕ್ಕೆ ಹೊಂದಿಸಿ. ಮೊದಲ ಕ್ಷೇತ್ರಗಳನ್ನು ಮಾತ್ರ ಸ್ಲೈಡ್‌ನಲ್ಲಿ ಕಡ್ಡಾಯವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ)" DocType: DocField,Allow on Submit,ಸಲ್ಲಿಸಿ ಮೇಲೆ ಅನುಮತಿಸಿ DocType: DocField,HTML,ಎಚ್ಟಿಎಮ್ಎಲ್ DocType: Error Snapshot,Exception Type,ಎಕ್ಸೆಪ್ಶನ್ @@ -3045,6 +3145,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,ಶೀರ್ಷಿಕೆಗಳು apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,ಮುಂಬರುವ ಕಾರ್ಯಕ್ರಮಗಳು apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,ದಯವಿಟ್ಟು ಅಪ್ಲಿಕೇಶನ್ ಪ್ರವೇಶ ಕೀ ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್ ಸೀಕ್ರೆಟ್ ಕೀ ಮೌಲ್ಯಗಳನ್ನು ನಮೂದಿಸಿ +DocType: Email Account,Append Emails to Sent Folder,ಕಳುಹಿಸಿದ ಫೋಲ್ಡರ್‌ಗೆ ಇಮೇಲ್‌ಗಳನ್ನು ಸೇರಿಸಿ DocType: Web Form,Accept Payment,ಪಾವತಿ ಸ್ವೀಕರಿಸಿ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ಪಟ್ಟಿ ಐಟಂ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/config/core.py,A log of request errors,ವಿನಂತಿಯನ್ನು ದೋಷಗಳಿಂದ ಲಾಗ್ @@ -3063,7 +3164,7 @@ DocType: Translation,Contributed,ಕೊಡುಗೆ apps/frappe/frappe/config/customization.py,Form Customization,ಫಾರ್ಮ್ ಗ್ರಾಹಕೀಕರಣ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ಯಾವುದೇ ಸಕ್ರಿಯ ಸೆಷನ್ಸ್ ಇಲ್ಲ DocType: Web Form,Route to Success Link,ಯಶಸ್ಸಿನ ಲಿಂಕ್ಗೆ ಮಾರ್ಗ -DocType: Top Bar Item,Right,ರೈಟ್ +DocType: Onboarding Slide Field,Right,ರೈಟ್ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,ಮುಂಬರುವ ಈವೆಂಟ್‌ಗಳಿಲ್ಲ DocType: User,User Type,ಬಳಕೆದಾರನ ಪ್ರಕಾರ DocType: Prepared Report,Ref Report DocType,ಡಾಕ್ಟೈಪ್ ವರದಿ ಮಾಡಿ @@ -3080,6 +3181,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,ದಯವಿಟ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' ಅಥವಾ 'https: //' ನೊಂದಿಗೆ ಪ್ರಾರಂಭವಾಗಬೇಕು apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ಆಯ್ಕೆ 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,ಇದನ್ನು ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Workflow State,Edit,ಸಂಪಾದಿಸು DocType: Website Settings,Chat Operators,ಚಾಟ್ ಆಪರೇಟರ್ಸ್ DocType: S3 Backup Settings,ca-central-1,ca- ಕೇಂದ್ರ -1 @@ -3091,7 +3193,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ನೀವು ಈ ರೂಪದಲ್ಲಿ ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಿಲ್ಲ. DocType: Address,Telangana,ತೆಲಂಗಾಣ apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} ಒಂದು ಆಯ್ಕೆಯನ್ನು ಇರಬೇಕು ಡೀಫಾಲ್ಟ್ -DocType: Tag Doc Category,Tag Doc Category,ಟ್ಯಾಗ್ ಡಾಕ್ ವರ್ಗ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,ಲ್ಯಾಂಡ್‌ಸ್ಕೇಪ್ ಮೋಡ್‌ನಲ್ಲಿ 10 ಕ್ಕೂ ಹೆಚ್ಚು ಕಾಲಮ್‌ಗಳೊಂದಿಗೆ ವರದಿ ಉತ್ತಮವಾಗಿ ಕಾಣುತ್ತದೆ. apps/frappe/frappe/database/database.py,Invalid field name: {0},ಅಮಾನ್ಯ ಕ್ಷೇತ್ರದ ಹೆಸರು: {0} DocType: Milestone,Milestone,ಮೈಲಿಗಲ್ಲು @@ -3100,7 +3201,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} ಗೆ ಹೋ apps/frappe/frappe/email/queue.py,Emails are muted,ಇಮೇಲ್ಗಳನ್ನು ಮ್ಯೂಟ್ apps/frappe/frappe/config/integrations.py,Google Services,Google ಸೇವೆಗಳು apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + ಅಪ್ -apps/frappe/frappe/utils/data.py,1 weeks ago,1 ವಾರಗಳ ಹಿಂದೆ +DocType: Onboarding Slide,Slide Description,ಸ್ಲೈಡ್ ವಿವರಣೆ DocType: Communication,Error,ದೋಷ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,ದಯವಿಟ್ಟು ಮೊದಲು ಸಂದೇಶವನ್ನು ಸೆಟಪ್ ಮಾಡಿ DocType: Auto Repeat,End Date,ಅಂತಿಮ ದಿನಾಂಕ @@ -3121,10 +3222,12 @@ DocType: Footer Item,Group Label,ಗ್ರೂಪ್ ಲೇಬಲ್ DocType: Kanban Board,Kanban Board,ಕನ್ಬನ್ ಬೋರ್ಡ್ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google ಸಂಪರ್ಕಗಳನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿದೆ. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ದಾಖಲೆಯನ್ನು ರಫ್ತು ಮಾಡಲಾಗುತ್ತದೆ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ಬಳಕೆದಾರರೊಂದಿಗೆ ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆ ಸಂಯೋಜಿತವಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಬಳಕೆದಾರ> ಇಮೇಲ್ ಇನ್‌ಬಾಕ್ಸ್ ಅಡಿಯಲ್ಲಿ ಖಾತೆಯನ್ನು ಸೇರಿಸಿ. DocType: DocField,Report Hide,ವರದಿ ಅಡಗಿಸು apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ಟ್ರೀ ವೀಕ್ಷಿಸಿ ಲಭ್ಯವಿಲ್ಲ {0} DocType: DocType,Restrict To Domain,DOMAIN ನಿರ್ಬಂಧಿಸು DocType: Domain,Domain,ಡೊಮೈನ್ +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,ಅಮಾನ್ಯ ಫೈಲ್ URL. ದಯವಿಟ್ಟು ಸಿಸ್ಟಮ್ ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ. DocType: Custom Field,Label Help,ಲೇಬಲ್ ಸಹಾಯ DocType: Workflow State,star-empty,ನಕ್ಷತ್ರ ಖಾಲಿ apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ಕಾಲಾವಧಿಯನ್ನು ಊಹಿಸಲು ಸುಲಭ. @@ -3148,6 +3251,7 @@ DocType: Workflow State,hand-left,ಕೈ ಎಡ DocType: Data Import,If you are updating/overwriting already created records.,ನೀವು ಈಗಾಗಲೇ ರಚಿಸಿದ ದಾಖಲೆಗಳನ್ನು ನವೀಕರಿಸುತ್ತಿದ್ದರೆ / ಪುನಃ ಬರೆಯುತ್ತಿದ್ದರೆ. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ಜಾಗತಿಕ DocType: Email Account,Use SSL,SSL ಬಳಸಲು +DocType: Webhook,HOOK-.####,ಹುಕ್ -. #### DocType: Workflow State,play-circle,ಆಡಲು ವೃತ್ತ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಸರಿಯಾಗಿ ನಿಗದಿಪಡಿಸಲಾಗಲಿಲ್ಲ apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",ಅಮಾನ್ಯ "depends_on" ಅಭಿವ್ಯಕ್ತಿ @@ -3164,6 +3268,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,ಕೊನೆಯ ರಿಫ್ರೆಶ್ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಕ್ಕಾಗಿ DocType: Workflow State,arrow-right,ಬಾಣದ ಬಲ +DocType: Server Script,API Method,API ವಿಧಾನ DocType: Workflow State,Workflow state represents the current state of a document.,ವರ್ಕ್ಫ್ಲೋ ರಾಜ್ಯದ ಒಂದು ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಸ್ತುತ ಸ್ಥಿತಿಯನ್ನು ಬಿಂಬಿಸುತ್ತದೆ. DocType: Letter Head,Letter Head Based On,ಲೆಟರ್ ಹೆಡ್ ಆಧರಿಸಿದೆ apps/frappe/frappe/utils/oauth.py,Token is missing,ಟೋಕನ್ ಕಾಣೆಯಾಗಿದೆ @@ -3202,6 +3307,7 @@ DocType: Comment,Relinked,ಮರುಲಿಂಕ್ DocType: Print Settings,Compact Item Print,ಕಾಂಪ್ಯಾಕ್ಟ್ ಐಟಂ ಪ್ರಿಂಟ್ DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL ಅನ್ನು ಮರುನಿರ್ದೇಶಿಸಿ +DocType: Onboarding Slide Field,Placeholder,ಪ್ಲೇಸ್‌ಹೋಲ್ಡರ್ DocType: SMS Settings,Enter url parameter for receiver nos,ರಿಸೀವರ್ ಸೂಲ URL ಅನ್ನು ನಿಯತಾಂಕ ಯನ್ನು DocType: Chat Profile,Online,ಆನ್ಲೈನ್ DocType: Email Account,Always use Account's Name as Sender's Name,ಖಾತೆಯ ಹೆಸರನ್ನು ಯಾವಾಗಲೂ ಕಳುಹಿಸುವವರ ಹೆಸರಾಗಿ ಬಳಸಿ @@ -3235,6 +3341,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ಮಾಲೀಕ DocType: Data Migration Mapping,Push,ಪುಶ್ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ಫೈಲ್‌ಗಳನ್ನು ಇಲ್ಲಿ ಬಿಡಿ DocType: OAuth Authorization Code,Expiration time,ಮುಕ್ತಾಯ ಸಮಯ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,ದಾಖಲೆಗಳನ್ನು ತೆರೆಯಿರಿ DocType: Web Page,Website Sidebar,ವೆಬ್ಸೈಟ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ DocType: Web Form,Show Sidebar,ಪಾರ್ಶ್ವಪಟ್ಟಿ ತೋರಿಸು apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,ಈ ಪ್ರವೇಶಿಸಲು ಲಾಗ್ ಇನ್ ಅಗತ್ಯವಿದೆ {0}. @@ -3285,6 +3392,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ಟಾಗಲ್ ಗ್ರಿಡ್ ವೀಕ್ಷಣೆ apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ಮುಂದಿನ ದಾಖಲೆಗೆ ಹೋಗಿ +DocType: System Settings,Time Format,ಸಮಯ ಸ್ವರೂಪ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ಅಮಾನ್ಯ ಪಾವತಿ ಗೇಟ್ವೇ ರುಜುವಾತುಗಳನ್ನು DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ಕೆಲವು ದೋಷಗಳನ್ನು ಹೊಂದಿರುವ ಸಾಲುಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರುವ ಟೆಂಪ್ಲೇಟ್ ಫೈಲ್ ಇದು. ನೀವು ತಿದ್ದುಪಡಿ ಮತ್ತು ಆಮದುಗಾಗಿ ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬೇಕು. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು ಮತ್ತು ಪಾತ್ರಗಳು ಅನುಮತಿಗಳು @@ -3328,12 +3436,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,ಉತ್ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ಡೆಸ್ಕ್ ಪುಟಗಳು (ಸ್ಥಾನ ಗ್ರಾಹಕಗಳನ್ನು) DocType: DocField,Collapsible Depends On,ಬಾಗಿಕೊಳ್ಳಬಹುದಾದ ಅವಲಂಬಿಸಿರುತ್ತದೆ DocType: Print Style,Print Style Name,ಶೈಲಿ ಹೆಸರು ಮುದ್ರಿಸು +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ಡ್ಯಾಶ್‌ಬೋರ್ಡ್ ಚಾರ್ಟ್ ರಚಿಸಲು ಗ್ರೂಪ್ ಬೈ ಫೀಲ್ಡ್ ಅಗತ್ಯವಿದೆ DocType: Print Settings,Allow page break inside tables,ಕೋಷ್ಟಕಗಳು ಒಳಗೆ ಪುಟ ನಿರ್ಬಂಧ ಅನುಮತಿಸಿ DocType: Email Account,SMTP Server,SMTP ಸರ್ವರ್ DocType: Print Format,Print Format Help,ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ ಸಹಾಯ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ಕೋಣೆಗೆ ಕನಿಷ್ಠ ಒಂದು ಬಳಕೆದಾರ ಇರಬೇಕು. DocType: DocType,Beta,ಬೀಟಾ DocType: Dashboard Chart,Count,ಎಣಿಕೆ +DocType: Dashboard Chart,Group By Type,ಪ್ರಕಾರ ಪ್ರಕಾರ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ಪುನಃಸ್ಥಾಪಿಸಲು {0} ಎಂದು {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ನೀವು ಅಪ್ಡೇಟ್ ಮಾಡುತ್ತಿದ್ದರೆ, ""ಅಳಿಸಿ"" ಆಯ್ಕೆ ಮಾಡಿ ಬೇರೆ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಸಾಲುಗಳನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ." DocType: DocField,Translatable,ಅನುವಾದಿಸಬಹುದಾದ @@ -3342,8 +3452,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ಬಳಕ DocType: Web Form,Web Form,ವೆಬ್ ಫಾರ್ಮ್ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},ದಿನಾಂಕ {0} ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು: {1} DocType: About Us Settings,Org History Heading,ಆರ್ಗ್ ಇತಿಹಾಸ ಶಿರೋನಾಮೆ +DocType: Scheduled Job Type,Scheduled Job Type,ಪರಿಶಿಷ್ಟ ಉದ್ಯೋಗ ಪ್ರಕಾರ DocType: Print Settings,Allow Print for Cancelled,ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ ಮುದ್ರಿಸಿ ಅನುಮತಿಸಿ DocType: Communication,Integrations can use this field to set email delivery status,ಸಂಯೋಜನೆಗಳಿಗಾಗಿ ಇಮೇಲ್ ವಿತರಣಾ ಸ್ಥಿತಿ ಸೆಟ್ ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಬಳಸಬಹುದು +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,ಎಲ್ಲಾ ಲಿಂಕ್ ಮಾಡಿದ ಡಾಕ್ಯುಮೆಂಟ್‌ಗಳನ್ನು ರದ್ದುಗೊಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿಗಳಿಲ್ಲ. DocType: Web Form,Web Page Link Text,ವೆಬ್ ಪುಟ ಲಿಂಕ್ ಪಠ್ಯ DocType: Page,System Page,ಸಿಸ್ಟಮ್ ಪುಟ DocType: Page,System Page,ಸಿಸ್ಟಮ್ ಪುಟ @@ -3351,6 +3463,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ನಿರ್ಗಮಿಸು apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} ಗೆ ರಫ್ತು ಮಾಡಲಾದ ಗ್ರಾಹಕೀಕರಣಗಳು:
{1} DocType: Website Settings,Include Search in Top Bar,ಟಾಪ್ ಬಾರ್ ನಲ್ಲಿ ಹುಡುಕು ಸೇರಿವೆ +DocType: Scheduled Job Type,Daily Long,ಡೈಲಿ ಲಾಂಗ್ DocType: GSuite Settings,Allow GSuite access,GSuite ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಿ DocType: DocType,DESC,DESC DocType: DocType,Naming,ಹೆಸರಿಸುವ @@ -3452,6 +3565,7 @@ DocType: Notification,Send days before or after the reference date,ಮೊದ DocType: User,Allow user to login only after this hour (0-24),ಬಳಕೆದಾರ ಮಾತ್ರ ಈ ಗಂಟೆ ನಂತರ ( 0-24 ) ಲಾಗಿನ್ ಅನುಮತಿಸಿ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",ಅನುಕ್ರಮವಾಗಿ ಒಂದೊಂದಾಗಿ ನಿಯೋಜಿಸಿ DocType: Integration Request,Subscription Notification,ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆ +DocType: Customize Form Field, Allow in Quick Entry ,ತ್ವರಿತ ಪ್ರವೇಶದಲ್ಲಿ ಅನುಮತಿಸಿ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ಅಥವಾ ಲಗತ್ತಿಸಿ DocType: Auto Repeat,Start Date,ಪ್ರಾರಂಭ ದಿನಾಂಕ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,ಮೌಲ್ಯ @@ -3466,6 +3580,7 @@ DocType: Google Drive,Backup Folder ID,ಬ್ಯಾಕಪ್ ಫೋಲ್ಡರ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ಅಲ್ಲ ಡೆವಲಪರ್ ಮೋಡ್ನಲ್ಲಿ! Site_config.json ಸೆಟ್ ಅಥವಾ 'ಕಸ್ಟಮ್' DOCTYPE ಮಾಡಲು. DocType: Workflow State,globe,ಗೋಳ DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ವೀಡಿಯೊ DocType: Assignment Rule,Priority,ಆದ್ಯತೆ DocType: Email Queue,Unsubscribe Param,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಪರಮ DocType: DocType,Hide Sidebar and Menu,ಸೈಡ್ಬಾರ್ ಮತ್ತು ಮೆನುವನ್ನು ಮರೆಮಾಡಿ @@ -3477,6 +3592,7 @@ DocType: DocType,Allow Import (via Data Import Tool),ಆಮದು ಅನುಮ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,ತೇಲುವುದು DocType: Print Settings,Page Settings,ಪುಟ ಸೆಟ್ಟಿಂಗ್ಗಳು +DocType: Notification Settings,Notification Settings,ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್‌ಗಳು apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,ಉಳಿಸಲಾಗುತ್ತಿದೆ ... apps/frappe/frappe/www/update-password.html,Invalid Password,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್ DocType: Contact,Purchase Master Manager,ಖರೀದಿ ಮಾಸ್ಟರ್ ಮ್ಯಾನೇಜರ್ @@ -3489,6 +3605,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,ಜಿಮೈಲ್ DocType: Letter Head,Letter Head Image,ಲೆಟರ್ ಹೆಡ್ ಇಮೇಜ್ DocType: Address,Party GSTIN,ಪಕ್ಷದ GSTIN +DocType: Scheduled Job Type,Cron Format,ಕ್ರಾನ್ ಸ್ವರೂಪ apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} ವರದಿ DocType: SMS Settings,Use POST,POST ಬಳಸಿ DocType: Communication,SMS,ಎಸ್ಎಂಎಸ್ @@ -3534,18 +3651,20 @@ DocType: Workflow,Allow approval for creator of the document,ಡಾಕ್ಯು apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ವರದಿಯನ್ನು ಉಳಿಸಿ DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,ಎಪಿಐ ಎಂಡ್ಪೋಯಿಂಟ್ ಆರ್ಜಸ್ +DocType: DocType Action,Server Action,ಸರ್ವರ್ ಕ್ರಿಯೆ apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,ನಿರ್ವಾಹಕ ಪಡೆದದ್ದು {0} ನಲ್ಲಿ {1} IP ವಿಳಾಸ ಮೂಲಕ {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,ಪೋಷಕ ಕ್ಷೇತ್ರವು ಮಾನ್ಯ ಕ್ಷೇತ್ರದ ಹೆಸರಾಗಿರಬೇಕು apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,ಚಂದಾದಾರಿಕೆಯನ್ನು ತಿದ್ದುಪಡಿ ಮಾಡುತ್ತಿರುವಾಗ ವಿಫಲವಾಗಿದೆ DocType: LDAP Settings,LDAP Group Field,ಎಲ್ಡಿಎಪಿ ಗುಂಪು ಕ್ಷೇತ್ರ +DocType: Notification Subscribed Document,Notification Subscribed Document,ಅಧಿಸೂಚನೆ ಚಂದಾದಾರಿಕೆ ದಾಖಲೆ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,ಸಮ apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,ಅಮಾನ್ಯ CSV ಫಾರ್ಮ್ಯಾಟ್ನಲ್ಲಿ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ...

ಕಚ್ಚಾ ಮುದ್ರಣ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸ್ಥಾಪಿಸಿ ಚಾಲನೆಯಲ್ಲಿರಬೇಕು.

QZ ಟ್ರೇ ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಸ್ಥಾಪಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ .
ಕಚ್ಚಾ ಮುದ್ರಣದ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿದುಕೊಳ್ಳಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,ಸಂಖ್ಯೆ ಬ್ಯಾಕ್ಅಪ್ಗಳು ಹೊಂದಿಸಿ DocType: DocField,Do not allow user to change after set the first time,ಬಳಕೆದಾರ ಮೊದಲ ಸೆಟ್ ಸಮಯದ ನಂತರ ಬದಲಾಯಿಸಲು ಅವಕಾಶ ಇಲ್ಲ apps/frappe/frappe/utils/data.py,1 year ago,1 ವರ್ಷದ ಹಿಂದೆ +DocType: DocType,Links Section,ಲಿಂಕ್ಸ್ ವಿಭಾಗ apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","ಎಲ್ಲಾ ಮುದ್ರಣ, ಡೌನ್‌ಲೋಡ್ ಮತ್ತು ರಫ್ತು ಈವೆಂಟ್‌ಗಳ ಲಾಗ್ ವೀಕ್ಷಿಸಿ" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ತಿಂಗಳು DocType: Contact,Contact,ಸಂಪರ್ಕಿಸಿ @@ -3571,16 +3690,19 @@ DocType: Auto Email Report,Dynamic Report Filters,ಡೈನಾಮಿಕ್ ವ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,ಹೊಸ ಇಮೇಲ್ DocType: Custom DocPerm,Export,ರಫ್ತು +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},ಸ್ಥಿತಿ ಅವಲಂಬನೆ ಕ್ಷೇತ್ರವನ್ನು ಸೇರಿಸುವುದು {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ ಟ್ರೇ ವಿಫಲವಾಗಿದೆ: DocType: Dropbox Settings,Dropbox Settings,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: About Us Settings,More content for the bottom of the page.,ಪುಟ ಕೆಳಭಾಗದಲ್ಲಿ ಹೆಚ್ಚು ವಿಷಯ . apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಹಿಂತಿರುಗಿಸಲಾಗಿದೆ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google ಡ್ರೈವ್ ಬ್ಯಾಕಪ್ ಯಶಸ್ವಿಯಾಗಿದೆ. +DocType: Webhook,Naming Series,ಸರಣಿ ಹೆಸರಿಸುವ DocType: Workflow,DocType on which this Workflow is applicable.,ಈ ಕೆಲಸದೊತ್ತಡದ doctype ಅನ್ವಯವಾಗುತ್ತದೆ. DocType: User,Enabled,ಶಕ್ತಗೊಂಡಿದೆ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,ಸೆಟಪ್ ಪೂರ್ಣಗೊಳಿಸಲು ವಿಫಲವಾಗಿದೆ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},ಹೊಸ {0}: {1} -DocType: Tag Category,Category Name,ವರ್ಗ ಹೆಸರು +DocType: Blog Category,Category Name,ವರ್ಗ ಹೆಸರು apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,ಮಕ್ಕಳ ಟೇಬಲ್ ಡೇಟಾವನ್ನು ಪಡೆಯಲು ಪೋಷಕರು ಅಗತ್ಯವಿದೆ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ಆಮದು ಚಂದಾದಾರರು DocType: Print Settings,PDF Settings,ಪಿಡಿಎಫ್ ಸೆಟ್ಟಿಂಗ್ಗಳು @@ -3616,6 +3738,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ಕ್ಯಾಲೆಂಡರ್ apps/frappe/frappe/client.py,No document found for given filters,ಡಾಕ್ಯುಮೆಂಟ್ ನೀಡಲಾಗಿದೆ ಶೋಧಕಗಳ ಕಂಡು apps/frappe/frappe/config/website.py,A user who posts blogs.,ಬ್ಲಾಗ್‌ಗಳನ್ನು ಪೋಸ್ಟ್ ಮಾಡುವ ಬಳಕೆದಾರ. +DocType: DocType Action,DocType Action,ಡಾಕ್ಟೈಪ್ ಕ್ರಿಯೆ apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","ಮತ್ತೊಂದು {0} ಹೆಸರಿನ {1} ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ, ಮತ್ತೊಂದು ಹೆಸರನ್ನು ಆಯ್ಕೆ" DocType: DocType,Custom?,ಕಸ್ಟಮ್ ? DocType: Website Settings,Website Theme Image,ವೆಬ್ಸೈಟ್ ಥೀಮ್ ಚಿತ್ರ @@ -3625,6 +3748,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},ಲೊ apps/frappe/frappe/config/integrations.py,Backup,ಬ್ಯಾಕಪ್ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ಡ್ಯಾಶ್‌ಬೋರ್ಡ್ ಚಾರ್ಟ್ ರಚಿಸಲು ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರದ ಅಗತ್ಯವಿದೆ DocType: DocField,Read Only,readonly +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,ರೇಜರ್ಪೇ ಆದೇಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,ಹೊಸ ಸುದ್ದಿಪತ್ರ DocType: Energy Point Log,Energy Point Log,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ಲಾಗ್ DocType: Print Settings,Send Print as PDF,ಮುದ್ರಿಸು Send ಪಿಡಿಎಫ್ @@ -3649,15 +3773,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ನ apps/frappe/frappe/www/login.html,Or login with,ಅಥವಾ ಲಾಗಿನ್ DocType: Error Snapshot,Locals,ಸ್ಥಳೀಯರು apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ಮೂಲಕ ಸಂವಹನ {0} ನಲ್ಲಿ {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ಒಂದು ಕಾಮೆಂಟ್ನಲ್ಲಿ ಪ್ರಸ್ತಾಪಿಸಿದ್ದಾರೆ {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ಗುಂಪನ್ನು ಆಯ್ಕೆ ಮಾಡಿ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ಉದಾ (55 + 434) / 4 ಅಥವಾ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ಅಗತ್ಯವಿದೆ DocType: Integration Request,Integration Type,ಇಂಟಿಗ್ರೇಷನ್ ಕೌಟುಂಬಿಕತೆ DocType: Newsletter,Send Attachements,attachements ಕಳುಹಿಸಿ +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,ಯಾವುದೇ ಫಿಲ್ಟರ್‌ಗಳು ಕಂಡುಬಂದಿಲ್ಲ apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google ಸಂಪರ್ಕಗಳ ಏಕೀಕರಣ. DocType: Transaction Log,Transaction Log,ವ್ಯವಹಾರ ಲಾಗ್ DocType: Contact Us Settings,City,ನಗರ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗಾಗಿ ಕಾರ್ಡ್‌ಗಳನ್ನು ಮರೆಮಾಡಿ DocType: DocField,Perm Level,ಪೆರ್ಮ್ ಮಟ್ಟ apps/frappe/frappe/www/confirm_workflow_action.html,View document,ಡಾಕ್ಯುಮೆಂಟ್ ವೀಕ್ಷಿಸಿ apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,ಇಂದಿನ ಕ್ಯಾಲೆಂಡರ್ ಕ್ರಿಯೆಗಳು @@ -3668,6 +3793,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ಗ್ಲೋಬಲ್ ಸರ್ಚ್' ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ಗ್ಲೋಬಲ್ ಸರ್ಚ್' ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1} DocType: Energy Point Log,Appreciation,ಮೆಚ್ಚುಗೆ +DocType: Dashboard Chart,Number of Groups,ಗುಂಪುಗಳ ಸಂಖ್ಯೆ apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,ಪಟ್ಟಿ ವೀಕ್ಷಣೆ DocType: Workflow,Don't Override Status,ಸ್ಥಿತಿ ಬದಲಾಯಿಸಬೇಡಿ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,ಹುಡುಕಾಟದ ಪದ @@ -3706,7 +3832,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,ನ DocType: S3 Backup Settings,cn-northwest-1,cn- ವಾಯುವ್ಯ -1 DocType: Dropbox Settings,Limit Number of DB Backups,ಡಿಬಿ ಬ್ಯಾಕಪ್ಗಳ ಸಂಖ್ಯೆ ಮಿತಿಗೊಳಿಸಿ DocType: Custom DocPerm,Level,ಮಟ್ಟ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,ಕೊನೆಯ 30 ದಿನಗಳು DocType: Custom DocPerm,Report,ವರದಿ apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,ಪ್ರಮಾಣ 0 ಹೆಚ್ಚು ಇರಬೇಕು. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ ಟ್ರೇಗೆ ಸಂಪರ್ಕಿಸಲಾಗಿದೆ! @@ -3723,6 +3848,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,ಮಕ್ಕಳ ಟೇಬಲ್ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ಪ್ರಾಥಮಿಕ ಕ್ರಿಯೆಯನ್ನು ಪ್ರಚೋದಿಸಿ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,ಬದಲಾವಣೆ +DocType: Social Login Key,User ID Property,ಬಳಕೆದಾರ ID ಆಸ್ತಿ DocType: Email Domain,domain name,ಕಾರ್ಯಕ್ಷೇತ್ರದ ಹೆಸರು DocType: Contact Email,Contact Email,ಇಮೇಲ್ ಮೂಲಕ ಸಂಪರ್ಕಿಸಿ DocType: Kanban Board Column,Order,ಆರ್ಡರ್ @@ -3744,7 +3870,7 @@ DocType: Contact,Last Name,ಕೊನೆಯ ಹೆಸರು DocType: Event,Private,ಖಾಸಗಿ apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,ಇಂದು ಯಾವುದೇ ಎಚ್ಚರಿಕೆಗಳನ್ನು DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ಪಿಡಿಎಫ್ ಇಮೇಲ್ ಮುದ್ರಿಸು ಲಗತ್ತುಗಳು ಕಳುಹಿಸಿ (ಶಿಫಾರಸು) -DocType: Web Page,Left,ಎಡ +DocType: Onboarding Slide Field,Left,ಎಡ DocType: Event,All Day,ಎಲ್ಲಾ ದಿನ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ಏನೋ ತೋರುತ್ತಿದೆ ಈ ಸೈಟ್ ತಂದೆಯ ಪಾವತಿ ಗೇಟ್ವೇ ಸಂಯೋಜನವನ್ನು ತಪ್ಪು. ಯಾವುದೇ ಪಾವತಿ ಮಾಡಲಾಗಿದೆ. DocType: GCalendar Settings,State,ರಾಜ್ಯ @@ -3775,7 +3901,6 @@ DocType: Workflow State,User,ಬಳಕೆದಾರ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ಬ್ರೌಸರ್ ವಿಂಡೋದಲ್ಲಿ ಶೊ ಪ್ರಶಸ್ತಿಯನ್ನು "ಪೂರ್ವಪ್ರತ್ಯಯ - ಶೀರ್ಷಿಕೆ" DocType: Payment Gateway,Gateway Settings,ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ದಾಖಲೆ ಪ್ರಕಾರ ಪಠ್ಯ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,ರನ್ ಟೆಸ್ಟ್ apps/frappe/frappe/handler.py,Logged Out,ಲಾಗ್ ಔಟ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ಇನ್ನಷ್ಟು ... DocType: System Settings,User can login using Email id or Mobile number,ಬಳಕೆದಾರ ಇಮೇಲ್ ಐಡಿ ಅಥವಾ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್ ಮಾಡಬಹುದು @@ -3792,6 +3917,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,ಸಾರಾಂಶ DocType: Event,Event Participants,ಈವೆಂಟ್ ಭಾಗವಹಿಸುವವರು DocType: Auto Repeat,Frequency,ಆವರ್ತನ +DocType: Onboarding Slide,Slide Order,ಸ್ಲೈಡ್ ಆದೇಶ DocType: Custom Field,Insert After,InsertAfter DocType: Event,Sync with Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್‌ನೊಂದಿಗೆ ಸಿಂಕ್ ಮಾಡಿ DocType: Access Log,Report Name,ವರದಿ ಹೆಸರು @@ -3819,6 +3945,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},ಮಾದರಿ ಕರೆನ್ಸಿ ಮ್ಯಾಕ್ಸ್ ಅಗಲ ಸತತವಾಗಿ 100px {0} apps/frappe/frappe/config/website.py,Content web page.,ವಿಷಯ ವೆಬ್ ಪುಟ . apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ಹೊಸ ಪಾತ್ರ ಸೇರಿಸಿ +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ವೆಬ್ ಪುಟಕ್ಕೆ ಭೇಟಿ ನೀಡಿ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ಹೊಸ ನಿಯೋಜನೆ DocType: Google Contacts,Last Sync On,ಕೊನೆಯ ಸಿಂಕ್ ಆನ್ DocType: Deleted Document,Deleted Document,ಅಳಿಸಲಾಗಿದೆ ಡಾಕ್ಯುಮೆಂಟ್ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ಅಯ್ಯೋ! ಏನೋ ತಪ್ಪಾಗಿದೆ @@ -3828,7 +3956,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ಭೂದೃಶ್ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಕ್ಲೈಂಟ್ ಸೈಡ್ ಸ್ಕ್ರಿಪ್ಟ್ ವಿಸ್ತರಣೆಗಳನ್ನು DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,ಕೆಳಗಿನ doctypes ಗಾಗಿ ದಾಖಲೆಗಳನ್ನು ಫಿಲ್ಟರ್ ಮಾಡಲಾಗುತ್ತದೆ -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,ವೇಳಾಪಟ್ಟಿ ನಿಷ್ಕ್ರಿಯ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,ವೇಳಾಪಟ್ಟಿ ನಿಷ್ಕ್ರಿಯ DocType: Blog Settings,Blog Introduction,ಬ್ಲಾಗ್ ಪರಿಚಯ DocType: Global Search Settings,Search Priorities,ಆದ್ಯತೆಗಳನ್ನು ಹುಡುಕಿ DocType: Address,Office,ಕಚೇರಿ @@ -3838,13 +3966,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ಡ್ಯಾಶ್‌ಬೋ DocType: User,Email Settings,ಇಮೇಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ಇಲ್ಲಿ ಬಿಡಿ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ಎರಡು ಫ್ಯಾಕ್ಟರ್ ದೃ uth ೀಕರಣವನ್ನು ಬಳಸಿಕೊಂಡು ಬಳಕೆದಾರರು ಯಾವುದೇ ಐಪಿ ವಿಳಾಸದಿಂದ ಲಾಗಿನ್ ಆಗಬಹುದು, ಇದನ್ನು ಸಿಸ್ಟಮ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿನ ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗೂ ಹೊಂದಿಸಬಹುದು" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,ಮುದ್ರಕ ಸೆಟ್ಟಿಂಗ್‌ಗಳು ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,ದಯವಿಟ್ಟು ಮುಂದುವರಿಸಲು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,ದಯವಿಟ್ಟು ಮುಂದುವರಿಸಲು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ನಾನು apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ಒಂದು ಮಾನ್ಯವಾದ ರಾಜ್ಯ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,ಎಲ್ಲಾ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಗಳಿಗೆ ಅನ್ವಯಿಸಿ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ನವೀಕರಣ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ನವೀಕರಣ +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),ನಿಷ್ಕ್ರಿಯವಾಗಿದ್ದರೆ (ದಿನಗಳು) ಪ್ರತಿದಿನ ಮಾತ್ರ ಕೆಲಸಗಳನ್ನು ಚಲಾಯಿಸಿ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ಮತ್ತೊಂದು ಪಾವತಿ ವಿಧಾನವನ್ನು ಅನುಸರಿಸಿ. ಪೇಪಾಲ್ ಕರೆನ್ಸಿ ವ್ಯವಹಾರಗಳ ಬೆಂಬಲಿಸದಿರುವುದರಿಂದ '{0}' DocType: Chat Message,Room Type,ಕೋಣೆ ಪ್ರಕಾರ DocType: Data Import Beta,Import Log Preview,ಲಾಗ್ ಪೂರ್ವವೀಕ್ಷಣೆಯನ್ನು ಆಮದು ಮಾಡಿ @@ -3853,6 +3981,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ಸರಿ ವೃತ್ತ DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP ಬಳಕೆದಾರರ ರಚನೆ ಮತ್ತು ಮ್ಯಾಪಿಂಗ್ apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',ನೀವು ಗ್ರಾಹಕರು ಕಿತ್ತಳೆ ಹೇಗೆ 'ಕೇಳುವ ಮೂಲಕ ವಸ್ತುಗಳನ್ನು ಕಾಣಬಹುದು +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,ಇಂದಿನ ಘಟನೆಗಳು apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,ಕ್ಷಮಿಸಿ! ಬಳಕೆದಾರರು ತಮ್ಮ ದಾಖಲೆ ಸಂಪೂರ್ಣ ಪ್ರವೇಶವನ್ನು ಇರಬೇಕು. ,Usage Info,ಬಳಕೆ ಮಾಹಿತಿ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,ಕೀಬೋರ್ಡ್ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳನ್ನು ತೋರಿಸಿ @@ -3868,6 +3997,7 @@ DocType: Communication,Communication Type,ಸಂವಹನ ಕೌಟುಂಬಿ DocType: DocField,Unique,ಅನನ್ಯ apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ಭಾಗಶಃ ಯಶಸ್ಸು DocType: Email Account,Service,ಸೇವೆ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ DocType: File,File Name,ಫೈಲ್ ಹೆಸರು apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ಫಾರ್ {0} ಕಾಣಲಿಲ್ಲ {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ರೆಸ್: {0} @@ -3881,6 +4011,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ಸಂ DocType: GCalendar Settings,Enable,ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: Google Maps Settings,Home Address,ಮನೆ ವಿಳಾಸ apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),ನೀವು ಕೇವಲ ಒಂದೇ 5000 ದಾಖಲೆಗಳನ್ನು ವರೆಗೆ ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು. (ಕೆಲವು ಸಂದರ್ಭಗಳಲ್ಲಿ ಕಡಿಮೆ ಇರಬಹುದು) +DocType: Report,"output in the form of `data = [columns, result]`","`ಡೇಟಾ = [ಕಾಲಮ್‌ಗಳು, ಫಲಿತಾಂಶ]` ರೂಪದಲ್ಲಿ output ಟ್‌ಪುಟ್" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ಅನ್ವಯವಾಗುವ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಗಳು apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ಬಳಕೆದಾರರ ನಿಯೋಜನೆಗಳಿಗಾಗಿ ನಿಯಮಗಳನ್ನು ಹೊಂದಿಸಿ. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ಕೊರತೆ ಅನುಮತಿ {0} @@ -3898,7 +4029,6 @@ DocType: Communication,To and CC,ಮತ್ತು ಸಿಸಿ DocType: SMS Settings,Static Parameters,ಸ್ಥಾಯೀ ನಿಯತಾಂಕಗಳನ್ನು DocType: Chat Message,Room,ಕೊಠಡಿ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ಅಪ್ಡೇಟ್ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,ಹಿನ್ನೆಲೆ ಉದ್ಯೋಗಗಳು ಚಾಲನೆಯಲ್ಲಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ DocType: Portal Settings,Custom Menu Items,ಕಸ್ಟಮ್ ಮೆನು ಐಟಂಗಳು apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ವೆಬ್ಸೈಟ್ ಸ್ಲೈಡ್ಶೋಗೆ ಜೋಡಿಸಲಾದ ಎಲ್ಲಾ ಚಿತ್ರಗಳು ಸಾರ್ವಜನಿಕವಾಗಿರಬೇಕು DocType: Workflow State,chevron-right,CHEVRON ಬಲ @@ -3912,10 +4042,12 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ಮೌಲ್ಯಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ DocType: DocType,Allow Auto Repeat,ಸ್ವಯಂ ಪುನರಾವರ್ತಿಸಲು ಅನುಮತಿಸಿ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ತೋರಿಸಲು ಮೌಲ್ಯಗಳಿಲ್ಲ +DocType: DocType,URL for documentation or help,ದಸ್ತಾವೇಜನ್ನು ಅಥವಾ ಸಹಾಯಕ್ಕಾಗಿ URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ಇಮೇಲ್ ಟೆಂಪ್ಲೇಟು apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} ದಾಖಲೆಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ಅಗತ್ಯವಿದೆ ಲಾಗಿನ್ ಮತ್ತು ಪಾಸ್ವರ್ಡ್ ಎರಡೂ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Let apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ಇತ್ತೀಚಿನ ಡಾಕ್ಯುಮೆಂಟ್ ಪಡೆಯಲು ರಿಫ್ರೆಶ್ ಮಾಡಿ. DocType: User,Security Settings,ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,ಅಂಕಣ ಸೇರಿಸಿ @@ -3925,6 +4057,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,ಫಿಲ್ಟರ್ ಮೆಟಾ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},ಲಗತ್ತಿಸಲಾದ {0} ಅನ್ನು ಹುಡುಕಿ: {1} DocType: Web Page,Set Meta Tags,ಮೆಟಾ ಟ್ಯಾಗ್‌ಗಳನ್ನು ಹೊಂದಿಸಿ +DocType: Email Account,Use SSL for Outgoing,ಹೊರಹೋಗಲು ಎಸ್‌ಎಸ್‌ಎಲ್ ಬಳಸಿ 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: S3 Backup Settings,Backup Limit,ಬ್ಯಾಕಪ್ ಮಿತಿ DocType: Dashboard Chart,Line,ಸಾಲು @@ -3956,4 +4089,3 @@ DocType: DocField,Ignore User Permissions,ಬಳಕೆದಾರ ಅನುಮತ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,ನಿಮ್ಮ ಸೈನ್ ಅಪ್ ಪರಿಶೀಲಿಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ನಿರ್ವಾಹಕರಿಗೆ ತಿಳಿಸಿ DocType: Domain Settings,Active Domains,ಸಕ್ರಿಯ ಡೊಮೇನ್ಗಳ -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,ಲಾಗ್ ಶೋ diff --git a/frappe/translations/ko.csv b/frappe/translations/ko.csv index 71db88d16e..61c7dd96d8 100644 --- a/frappe/translations/ko.csv +++ b/frappe/translations/ko.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,금액 필드를 선택하십시오. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,가져 오기 파일로드 중 ... DocType: Assignment Rule,Last User,최종 사용자 -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","새 작업은, {0}, {1}가 할당되었습니다. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,세션 기본값 저장 됨 apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,파일 새로 고침 DocType: Email Queue,Email Queue records.,이메일 큐 기록합니다. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} 트리 DocType: User,User Emails,사용자 이메일 DocType: User,Username,사용자 이름 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,우편 번호 가져 오기 +DocType: Scheduled Job Type,Create Log,로그 생성 apps/frappe/frappe/model/base_document.py,Value too big,너무 큰 값 DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,스크립트 테스트 실행 @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,월 DocType: Address,Uttarakhand,우타 라칸 드 DocType: Email Account,Enable Incoming,수신 사용 apps/frappe/frappe/core/doctype/version/version_view.html,Danger,위험 -DocType: Address,Email Address,이메일 주소 +apps/frappe/frappe/www/login.py,Email Address,이메일 주소 DocType: Workflow State,th-large,일 대형 DocType: Communication,Unread Notification Sent,보낸 읽지 않은 알림 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,수출은 허용되지 않습니다.당신은 수출 {0} 역할을해야합니다. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,이 필드를 게시 DocType: GCalendar Settings,GCalendar Settings,GCalendar 설정 DocType: Email Group,Email Group,이메일 그룹 +apps/frappe/frappe/__init__.py,Only for {},{} 만 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google 캘린더-Google 캘린더에서 이벤트 {0}을 (를) 삭제할 수 없습니다. 오류 코드 {1}. DocType: Event,Pulled from Google Calendar,Google 캘린더에서 가져옴 DocType: Note,Seen By,볼 apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,여러 항목 추가 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,에너지 포인트를 얻었습니다. apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,유효한 사용자 이미지가 아닙니다. DocType: Energy Point Log,Reverted,되 돌린 DocType: Success Action,First Success Message,첫 번째 성공 메시지 @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,좋아하지 apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},잘못된 값 : {0}이어야합니다 {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","변경 필드 속성 (숨김, 읽기 전용, 권한 등)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,고맙다 +DocType: Notification Settings,Document Share,문서 공유 DocType: Workflow State,lock,"자물쇠를 채우다, ~을 잠그다" apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,문의 페이지에 대한 설정. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,관리자 기록 된에 @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",사용하도록 설정하면 사용자가 처음 열 때 문서가 표시된 것으로 표시됩니다. DocType: Auto Repeat,Repeat on Day,하루에 반복하기 DocType: DocField,Color,색상 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,모두 읽은 상태로 표시 DocType: Data Migration Run,Log,기록 DocType: Workflow State,indent-right,들여 쓰기 오른쪽 DocType: Has Role,Has Role,역할을 @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,역 추적 표시 DocType: DocType,Default Print Format,기본 인쇄 형식 DocType: Workflow State,Tags,태그 +DocType: Onboarding Slide,Slide Type,슬라이드 타입 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,없음 : 워크 플로우의 끝 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",고유하지 않은 기존의 값이 있기 때문에 {0} 필드는 {1}에 독특한 설정할 수 없습니다 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,문서 유형 @@ -136,7 +139,6 @@ DocType: Language,Guest,손님 DocType: DocType,Title Field,제목 필드 DocType: Error Log,Error Log,오류 로그 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,잘못된 URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,지난 7 일 apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","abcabcabc"약간 어렵게은 "ABC"보다 생각하는 것처럼 반복 DocType: Notification,Channel,채널 apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","이 권한이없는 생각한다면, 관리자 암호를 변경하십시오." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,클라이언트 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,열 선택 apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,당신이 그것을로드 한 후이 양식은 수정되었습니다 DocType: Address,Himachal Pradesh,히 마찰 프라데시 +DocType: Notification Log,Notification Log,알림 로그 DocType: System Settings,"If not set, the currency precision will depend on number format",설정되지 않은 경우 통화 정밀도는 숫자 형식에 따라 달라집니다. DocType: System Settings,"If not set, the currency precision will depend on number format",설정되지 않은 경우 통화 정밀도는 숫자 형식에 따라 달라집니다. apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,신난다 열기 @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,보내기 DocType: Workflow Action Master,Workflow Action Name,워크 플로 작업 이름 apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,문서 종류는 병합 할 수 없습니다 -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,아니 zip 파일 DocType: Global Search DocType,Global Search DocType,글로벌 검색 DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,이메일 전송? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,차트 전환 apps/frappe/frappe/desk/form/save.py,Did not cancel,취소하지 않았다 DocType: Social Login Key,Client Information,고객 정보 +DocType: Energy Point Rule,Apply this rule only once per document,이 규칙은 문서 당 한 번만 적용하십시오 DocType: Workflow State,plus,플러스 +DocType: DocField,Read Only Depends On,읽기 전용 apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,고객 또는 관리자로 로그인 DocType: Email Account,UNSEEN,보이지 않는 것 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,파일 관리자 @@ -202,9 +207,11 @@ DocType: Communication,BCC,숨은 참조 DocType: Unhandled Email,Reason,이유 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,활동 없음 +DocType: Server Script,Script Manager,스크립트 관리자 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,활동 없음 apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,제 3 자 앱 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,시스템 관리자가 될 것이다 첫 번째 사용자 (이 나중에 변경할 수 있습니다). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,오늘은 이벤트가 없습니다 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,자신에게 리뷰 포인트를 줄 수는 없습니다. apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType은 선택한 Doc 이벤트에 대해 제출 가능해야합니다. DocType: Workflow State,circle-arrow-up,원형 화살표 업 @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}에는 허용되지 않습니다 : {1}. 제한된 필드 : {2} 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,You are not allowed to delete a standard Website Theme,당신은 표준 웹 사이트 테마를 삭제할 수 없습니다 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},첫 번째 {0}을 (를) 작성하십시오 DocType: Data Import,Log Details,로그 세부 정보 DocType: Workflow Transition,Example,예 DocType: Webhook Header,Webhook Header,Webhook 헤더 @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,채팅 배경 apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,읽은 상태로 표시 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0}을 (를) 업데이트 중입니다. +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,슬라이드 순서가 동일한 온 보딩 슬라이드 {0} 이 (가) 이미 존재합니다 apps/frappe/frappe/core/doctype/report/report.js,Disable Report,사용 안 함 보고서 DocType: Translation,Contributed Translation Doctype Name,제공된 번역 Doctype 이름 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의 DocType: PayPal Settings,Redirect To,리디렉션 DocType: Data Migration Mapping,Pull,손잡이 DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},자바 스크립트 형식 : frappe.query_reports [ 'REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,문서 공유의 내부 기 DocType: Energy Point Settings,Review Levels,레벨 검토 DocType: Workflow State,Comment,코멘트 DocType: Data Migration Plan,Postprocess Method,후 처리 방법 +DocType: DocType Action,Action Type,액션 타입 apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,사진을 찍다 DocType: Assignment Rule,Round Robin,라운드 로빈 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","당신이 그들을 개정, 다음이를 취소에 의해 제출 된 문서를 변경할 수 있습니다." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,다른 이름으로 저장 DocType: Comment,Seen,신 apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,자세한 내용보기 +DocType: Server Script,Before Submit,제출하기 전에 DocType: System Settings,Run scheduled jobs only if checked,선택하는 경우에만 예약 된 작업을 실행 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,섹션 제목이 활성화 된 경우에만 표시됩니다 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,아카이브 @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,보관 용 액세스 키 apps/frappe/frappe/desk/form/utils.py,Wrong fieldname {0} in add_fetch configuration of custom script,사용자 정의 스크립트의 add_fetch 구성에서 잘못된 필드 이름 {0} apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,연락처를 동기화 할 Google 주소록을 선택하십시오. DocType: Web Page,Main Section (HTML),메인 섹션 (HTML) +DocType: Scheduled Job Type,Annual,연간 DocType: Workflow State,headphones,헤드폰 apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,암호가 필요하거나 대기 비밀번호를 선택한다 DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,예) replies@yourcomany.com.모든 응답이받은 편지함으로 올 것이다. DocType: Slack Webhook URL,Slack Webhook URL,슬랙 웹 훅 URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",마법사에서 슬라이드 순서를 결정합니다. 슬라이드가 표시되지 않으면 우선 순위를 0으로 설정해야합니다. DocType: Data Migration Run,Current Mapping,현재 매핑 apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,필요한 유효한 이메일 주소와 이름 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,모든 첨부 파일을 비공개로 설정 @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,전환 규칙 apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,미리보기에서 첫 번째 {0} 행만 표시 apps/frappe/frappe/core/doctype/report/report.js,Example:,예 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,제한 사항 DocType: Workflow,Defines workflow states and rules for a document.,문서 워크 플로우 상태와 규칙을 정의합니다. DocType: Workflow State,Filter,필터 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},자세한 내용은 오류 로그를 확인하십시오 : {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,일 apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} 로그 아웃 : {1} DocType: Address,West Bengal,서 벵골 +DocType: Onboarding Slide,Information,정보 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : 지정 제출을 설정할 수 없습니다 Submittable없는 경우 DocType: Transaction Log,Row Index,행 색인 DocType: Social Login Key,Facebook,페이스북 @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,버튼 도움말 DocType: Kanban Board Column,purple,자 DocType: About Us Settings,Team Members,팀 회원 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,비활성 사이트에 대해 하루에 한 번만 예약 된 작업을 실행합니다. 0으로 설정하면 기본값은 4 일입니다. DocType: Assignment Rule,System Manager,시스템 관리자 +DocType: Scheduled Job Log,Scheduled Job,예정된 직업 DocType: Custom DocPerm,Permissions,허가 (또는 접근 권한) apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,내부 통합을위한 Webhooks 여유 DocType: Dropbox Settings,Allow Dropbox Access,보관 용 접근이 허용 @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,바 DocType: Email Flag Queue,Email Flag Queue,이메일 플래그 큐 DocType: Access Log,Columns / Fields,열 / 필드 apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,인쇄 형식 스타일 시트 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,대시 보드 차트를 작성하려면 집계 함수 필드가 필요합니다 apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,오픈 식별 할 수없는 {0}. 다른 것을 시도하십시오. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,귀하의 정보가 제출되었습니다 apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} 사용자가 삭제할 수 없습니다 @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,필드 이름 DocType: Assignment Rule,Assign To Users,사용자에게 할당 apps/frappe/frappe/public/js/frappe/utils/utils.js,or,또는 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,모듈 이름 ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,계속 +DocType: Onboarding Slide,Continue,계속 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google 통합이 사용 중지되었습니다. DocType: Custom Field,Fieldname,필드 이름 DocType: Workflow State,certificate,증명서 apps/frappe/frappe/templates/includes/login/login.js,Verifying...,확인 중 ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1}에 대한 과제가 제거되었습니다. apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,첫 번째 데이터 열은 비어 있어야합니다. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,모든 버전보기 apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,댓글보기 @@ -432,12 +452,14 @@ DocType: User,Restrict IP,IP에게 제한 apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,계기반 apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,이 시간에 이메일을 보낼 수 없습니다 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google 캘린더-Google 캘린더에서 이벤트 {0}을 (를) 업데이트 할 수 없습니다. 오류 코드 {1}. +DocType: Notification Log,Email Content,이메일 내용 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,명령을 검색하거나 입력 DocType: Activity Log,Timeline Name,타임 라인 이름 apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,하나의 {0} 만 기본으로 설정할 수 있습니다. DocType: Email Account,e.g. smtp.gmail.com,예) smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,새 규칙 추가 DocType: Contact,Sales Master Manager,판매 마스터 관리자 +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,앱이 작동하려면 JavaScript를 활성화해야합니다. DocType: User Permission,For Value,가치를 위해 DocType: Event,Google Calendar ID,Google 캘린더 ID apps/frappe/frappe/www/complete_signup.html,One Last Step,마지막 단계 @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP 중간 이름 필드 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} 중 {0} 가져 오는 중 DocType: GCalendar Account,Allow GCalendar Access,GCalendar 액세스 허용 apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0}은 (는) 필수 입력란입니다. +DocType: DocType,Documentation Link,문서 링크 apps/frappe/frappe/templates/includes/login/login.js,Login token required,로그인 토큰 필요 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,월간 순위 : apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,여러 목록 항목 선택 @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,파일의 URL DocType: Version,Table HTML,표 HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,가입자 추가 +DocType: Notification Log,Energy Point,에너지 포인트 apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,오늘을 위해 예정 이벤트 DocType: Google Calendar,Push to Google Calendar,Google 캘린더로 푸시 DocType: Notification Recipient,Email By Document Field,문서 필드에 이메일 @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,떨어져 DocType: Currency,Fraction Units,분수 단위 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0}에서 {1}에 {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,완료로 표시 DocType: Chat Message,Type,종류 DocType: Google Settings,OAuth Client ID,OAuth 클라이언트 ID DocType: Auto Repeat,Subject,주제 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,데스크로 돌아 가기 DocType: Web Form,Amount Based On Field,금액 필드를 기준으로 +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0}에 추적 된 버전이 없습니다. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,사용자는 공유를위한 필수입니다 DocType: DocField,Hidden,숨겨진 DocType: Web Form,Allow Incomplete Forms,불완전한 양식 허용 @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,확인을 위해 이메일을 확인하시기 바랍니다 apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,배량 형태의 끝에있을 수 없다 DocType: Communication,Bounced,부도 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,의 DocType: Deleted Document,Deleted Name,삭제 된 이름 apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,시스템 및 웹 사이트 사용자 DocType: Workflow Document State,Doc Status,문서의 상태 @@ -527,6 +552,7 @@ DocType: Language,Language Code,언어 코드 DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,참고 : 기본적으로 실패한 백업에 대한 전자 메일이 전송됩니다. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,필터 추가 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS는 다음 번호로 전송 : {0} +DocType: Notification Settings,Assignments,과제 apps/frappe/frappe/utils/data.py,{0} and {1},{0}과 {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,대화를 시작하십시오. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",항상 인쇄 초안 문서 제목 "초안"을 추가 @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,현재 매핑 시작 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,이메일이 스팸으로 표시되었습니다. DocType: Comment,Website Manager,웹 사이트 관리자 apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,파일 업로드 연결이 끊어졌습니다. 다시 시도하십시오. +DocType: Data Import Beta,Show Failed Logs,실패한 로그 표시 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,번역 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,초안 또는 취소 된 문서를 선택했습니다. apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},문서 {0}이 {2} (으)로 {1} (으)로 설정되었습니다. @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,문서 대기 DocType: GSuite Templates,Destination ID,목적지 ID DocType: Desktop Icon,List,명부 DocType: Activity Log,Link Name,링크 이름 +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,당신은 \ DocType: System Settings,mm/dd/yyyy,yyyy/mm/dd +DocType: Onboarding Slide,Onboarding Slide,온 보딩 슬라이드 apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,유효하지 않은 비밀번호: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,유효하지 않은 비밀번호: DocType: Print Settings,Send document web view link in email,이메일에 문서 웹보기 링크 보내기 @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,어두운 회색 apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},성공 : {0}에 {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,데모에서는 사용자 세부 정보를 변경할 수 없습니다. https://erpnext.com에서 새 계정을 만드십시오. apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,하락 +DocType: Dashboard Chart,Aggregate Function Based On,에 기반한 집계 함수 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,변경하려면이 중복하십시오 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,저장하려면 Enter 키를 누릅니다. apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF 생성으로 인해 깨진 이미지 링크 실패 @@ -617,7 +647,9 @@ DocType: Notification,Days Before,일전 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,일일 행사는 당일에 끝나야합니다. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,편집하다... DocType: Workflow State,volume-down,볼륨 다운 +DocType: Onboarding Slide,Help Links,도움말 링크 apps/frappe/frappe/auth.py,Access not allowed from this IP Address,이 IP 주소에서 액세스 할 수 없습니다 +DocType: Notification Settings,Enable Email Notifications,이메일 알림 활성화 apps/frappe/frappe/desk/reportview.py,No Tags,태그가 없습니다 DocType: Email Account,Send Notification to,에 통지를 보내 DocType: DocField,Collapsible,접을 수있는 @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,마지막 백업 DocType: Customize Form Field,Customize Form Field,양식 필드에게 사용자 지정 DocType: Energy Point Rule,For Document Event,문서 이벤트 DocType: Website Settings,Chat Room Name,대화방 이름 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,변하지 않은 DocType: OAuth Client,Grant Type,그랜트 유형 apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,문서는 사용자가 읽을 수있는 확인 DocType: Deleted Document,Hub Sync ID,허브 동기화 ID @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,와 DocType: Auto Repeat,Quarterly,분기 별 apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",이메일 도메인을 만들고이 계정에 대해 구성되지? DocType: User,Reset Password Key,암호 재설정 키 +DocType: Dashboard Chart,All Time,모든 시간 apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}의 잘못된 문서 상태 DocType: Email Account,Enable Auto Reply,자동 응답 사용 apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,보지 @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,메 DocType: Email Account,Notify if unreplied,UNREPLIED 경우 알림 apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR 코드를 스캔하고 표시된 결과 코드를 입력하십시오. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,그라디언트 사용 +DocType: Scheduled Job Type,Hourly Long,시간별 길게 DocType: System Settings,Minimum Password Score,최소 암호 점수 DocType: System Settings,Minimum Password Score,최소 암호 점수 DocType: DocType,Fields,필드 @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,부모 테 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 백업이 완료되었습니다! apps/frappe/frappe/config/desktop.py,Developer,개발자 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,생성 +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},이를 사용하려면 다음 링크의 지시 사항을 따르십시오. {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} 행 {1}의 URL 및 하위 항목을 모두 가질 수 없습니다 apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},다음 테이블에 대해 최소한 하나의 행이 있어야합니다. {0} DocType: Print Format,Default Print Language,기본 인쇄 언어 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,조상 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,루트 {0} 삭제할 수 없습니다 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,실패한 로그가 없습니다. apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,아직 코멘트가 없습니다 apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",SMS 설정을 통해 인증 방법으로 설정하기 전에 SMS를 설정하십시오. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,필요한 모두에서 DocType과 이름 @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,바닥 글 항목 apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,메뉴 DocType: DefaultValue,DefaultValue,DEFAULTVALUE DocType: Auto Repeat,Daily,매일 +DocType: Onboarding Slide,Max Count,최대 수 apps/frappe/frappe/config/users_and_permissions.py,User Roles,사용자 역할 DocType: Property Setter,Property Setter overrides a standard DocType or Field property,부동산 세터는 표준에서 DocType 또는 필드 속성을 재정의 apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,업데이트 할 수 없습니다 만료 / 잘못된 링크. @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""","대상 = ""_blank""" DocType: Workflow State,hdd,하드 디스크 DocType: Integration Request,Host,주인 DocType: Data Import Beta,Import File,파일 가져 오기 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,템플릿 오류 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,열 {0}이 (가) 이미 존재합니다. DocType: ToDo,High,높음 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,새로운 이벤트 @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,필터에 표시 DocType: Address,Daman and Diu,Daman과 Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,프로젝트 DocType: Address,Personal,개인의 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,원시 인쇄 설정 ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,자세한 내용은 https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region을 참조하십시오. apps/frappe/frappe/config/settings.py,Bulk Rename,대량 이름 바꾸기 DocType: Email Queue,Show as cc,CC로보기 @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,비디오 촬영 DocType: Contact Us Settings,Introductory information for the Contact Us Page,문의 페이지에 대한 소개 정보 DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,엄지 손가락 아래로 +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,문서 취소 DocType: User,Send Notifications for Email threads,전자 메일 스레드에 대한 알림 보내기 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,교수 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,아니 개발자 모드에서 @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,파일 백 DocType: DocField,In Global Search,글로벌 검색 DocType: System Settings,Brute Force Security,무차별 공격 보안 DocType: Workflow State,indent-left,들여 쓰기 왼쪽 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전 apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,그것은이 파일을 삭제하는 위험 : {0}. 시스템 관리자에게 문의하시기 바랍니다. DocType: Currency,Currency Name,통화 명 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,어떤 이메일 없습니다 @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,사용자 입력란 DocType: DocType,MyISAM,의 MyISAM DocType: Data Migration Run,Push Delete,푸시 삭제 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0}에 대해 이미 탈퇴 {1} {2} +DocType: Scheduled Job Type,Stopped,중지 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,제거하지 않은 apps/frappe/frappe/desk/like.py,Liked,좋아요 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,지금 보내기 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",표준 DocType은 기본 인쇄 형식을 가질 수 없습니다. 양식 사용자 정의를 사용하십시오. apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",표준 DocType은 기본 인쇄 형식을 가질 수 없습니다. 양식 사용자 정의를 사용하십시오. +DocType: Server Script,Allow Guest,손님 허용 DocType: Report,Query,질문 DocType: Customize Form,Sort Order,정렬 순서 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'목록보기'허용되지 않는 유형에 대한 {0} 행에서 {1} @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,2 요소 인증 방법 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,먼저 이름을 설정하고 레코드를 저장하십시오. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 기록 +DocType: DocType Link,Link Fieldname,링크 필드 이름 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},함께 공유 {0} apps/frappe/frappe/email/queue.py,Unsubscribe,가입 취소 DocType: View Log,Reference Name,참조명(Reference Name) apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,사용자 변경 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,먼저 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,번역 업데이트 DocType: Error Snapshot,Exception,예외 DocType: Email Account,Use IMAP,사용 IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,워크 플로의 상태 전환을 정의하는 규칙. DocType: File,Folder,폴더 DocType: Website Route Meta,Website Route Meta,웹 사이트 경로 메타 +DocType: Onboarding Slide Field,Onboarding Slide Field,온 보딩 슬라이드 필드 DocType: DocField,Index,목차 DocType: Email Group,Newsletter Manager,뉴스 관리자 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,옵션 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,트 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,차트 구성 DocType: User,Last IP,마지막 IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,이메일에 제목을 추가하십시오. -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,새 문서 {0}이 (가) {1}과 (과) 공유되었습니다. DocType: Data Migration Connector,Data Migration Connector,데이터 마이그레이션 커넥터 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}이 (가) {1} (으)로 되돌아갔습니다. DocType: Email Account,Track Email Status,이메일 상태 추적 @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,기본 발신 DocType: Workflow State,play,재생 apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,아래에 등록을 완료하려면 링크를 클릭하고 새 암호를 설정 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,추가하지 않은 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0}이 {2} {3}에 대해 {1} 점을 얻었습니다. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,어떤 이메일 계정이 할당되지 DocType: S3 Backup Settings,eu-west-2,유럽 서부 -2 DocType: Contact Us Settings,Contact Us Settings,연락처 설정 @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,검색 DocType: Workflow State,text-width,텍스트 폭 apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,이 레코드의 최대 첨부 파일 제한에 도달했습니다. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,파일 이름 또는 확장자로 검색 +DocType: Onboarding Slide,Slide Title,슬라이드 제목 DocType: Notification,View Properties (via Customize Form),(지정 양식)보기 속성 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,파일을 클릭하여 선택하십시오. DocType: Note Seen By,Note Seen By,볼 참고 @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,공유 URL DocType: System Settings,Allow Consecutive Login Attempts ,연속 로그인 시도 허용 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,결제 과정에서 오류가 발생했습니다. 문의하시기 바랍니다. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,슬라이드 유형이 작성 또는 설정 인 경우 슬라이드가 완료된 후 {ref_doctype} .py 파일에 'create_onboarding_docs'메소드가 바인딩되어 있어야합니다. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} 일 전 DocType: Email Account,Awaiting Password,대기 비밀번호 DocType: Address,Address Line 1,1 호선 주소 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,후손이 아닌 DocType: Contact,Company Name,회사 명 DocType: Custom DocPerm,Role,역할 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,설정 ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,브라우저로 apps/frappe/frappe/utils/data.py,Cent,센트 ,Recorder,리코더 @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","받는 사람이 전자 메일을 열 었는지 추적합니다.
참고 : 여러 명의 수신자에게 보내는 경우, 수신자 1 명이 이메일을 읽더라도 "열림"으로 간주됩니다." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,필요없는 값 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google 주소록 액세스 허용 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,한정된 DocType: Data Migration Connector,Frappe,프라페 apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,읽지 않은 상태로 표시 DocType: Activity Log,Operation,작업 @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,인쇄 허용 DocType: Communication,Clicked,클릭 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,팔로우 해제 apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},에 대한 권한이 없습니다 '{0}'{1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,보낼 예정 DocType: DocType,Track Seen,트랙 신 DocType: Dropbox Settings,File Backup,파일 백업 @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,없음 {0} apps/frappe/frappe/config/customization.py,Add custom forms.,사용자 지정 양식을 추가합니다. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0} : {1}에서 {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,이 문서를 제출 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,이 시스템은 많은 사전 정의 된 역할을 제공합니다.당신은 미세한 권한을 설정하는 새로운 역할을 추가 할 수 있습니다. DocType: Communication,CC,CC DocType: Country,Geo,지오 DocType: Data Migration Run,Trigger Name,트리거 이름 -apps/frappe/frappe/public/js/frappe/desk.js,Domains,도메인 +DocType: Onboarding Slide,Domains,도메인 DocType: Blog Category,Blog Category,블로그 카테고리 apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: , DocType: Role Permission for Page and Report,Roles HTML,역할 HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,토요일 DocType: User,Represents a User in the system.,시스템의 사용자를 나타냅니다. DocType: List View Setting,Disable Auto Refresh,자동 새로 고침 사용 안 함 DocType: Comment,Label,라벨 -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","작업 {0}, 당신이 {1}, 닫힌에 할당있다." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,이 창을 닫으십시오 DocType: Print Format,Print Format Type,인쇄 형식 유형 DocType: Newsletter,A Lead with this Email Address should exist,이 이메일 주소와 리드가 존재한다 @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,보내는 이메일에 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,선택 DocType: Data Export,Filter List,필터 목록 DocType: Data Export,Excel,뛰어나다 +DocType: System Settings,HH:mm,HH : mm DocType: Email Account,Auto Reply Message,자동 응답 메시지 DocType: Data Migration Mapping,Condition,조건 apps/frappe/frappe/utils/data.py,{0} hours ago,{0} 시간 전 @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,기술 자료 기여자 DocType: Communication,Sent Read Receipt,보낸 읽음 DocType: Email Queue,Unsubscribe Method,수신 거부 방법 +DocType: Onboarding Slide,Add More Button,추가 버튼 DocType: GSuite Templates,Related DocType,관련 DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,편집(내용 추가) apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,선택 언어 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,카드 정보 apps/frappe/frappe/__init__.py,No permission for {0},에 대한 권한이 없습니다 {0} DocType: DocType,Advanced,고급 +DocType: Onboarding Slide,Slide Image Source,슬라이드 이미지 소스 apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API 키를 보인다 또는 API 비밀은 잘못된 것입니다! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},참조 : {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,부인 @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,지도자 DocType: DocType,User Cannot Create,사용자가 만들 수 없습니다 apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,성공적으로 완료되었습니다. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,보관 용 액세스가 승인! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,{0}을 (를) {1}과 병합 하시겠습니까? DocType: Customize Form,Enter Form Type,양식 유형을 입력 DocType: Google Drive,Authorize Google Drive Access,Google 드라이브 액세스 권한 부여 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,누락 된 매개 변수 Kanban 보드 이름 @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","허용 문서 종류, 문서 종류.주의!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","인쇄, 이메일, 사용자 정의 형식" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}의 합 -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,새로운 버전으로 업데이트 DocType: Custom Field,Depends On,에 따라 달라집니다 DocType: Kanban Board Column,Green,녹색 DocType: Custom DocPerm,Additional Permissions,추가 권한 @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,사회적인 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google 캘린더-{0}, 오류 코드 {1}에 대한 캘린더를 만들 수 없습니다." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,행 편집 DocType: Workflow Action Master,Workflow Action Master,워크 플로 작업 마스터 +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,모두 삭제 DocType: Custom Field,Field Type,필드 유형 apps/frappe/frappe/utils/data.py,only.,만. DocType: Route History,Route History,경로 기록 @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,비밀번호를 잊으 셨나 DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,신분증 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,서버 오류 +DocType: Server Script,After Delete,삭제 후 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,모든 과거 보고서를보십시오. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,로그인 아이디가 필요합니다 DocType: Website Slideshow,Website Slideshow,웹 사이트 슬라이드 쇼 apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,데이터가 없습니다 DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","즉, 웹 사이트의 홈 페이지입니다 연결합니다.표준 링크 (인덱스, 로그인, 제품, 블로그, 대한, 접촉)" +DocType: Server Script,After Submit,제출 후 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},이메일 계정 {0}에서 이메일을 수신하는 동안 인증에 실패했습니다. 서버에서 메시지 : {1} DocType: User,Banner Image,배너 이미지 DocType: Custom Field,Custom Field,사용자 정의 필드 @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","사용자가 확인하는 역할을한다면, 사용자는 "시스템 사용자"가된다. "시스템 사용자는"데스크톱에 액세스 할 수 있습니다" DocType: System Settings,Date and Number Format,날짜 및 숫자 형식 apps/frappe/frappe/model/document.py,one of,하나의 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의 apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,한 순간 확인 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,보기 태그 DocType: DocField,HTML Editor,HTML 편집기 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,수행 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자 +DocType: DocType,Actions,수행 DocType: Workflow State,align-justify,정렬 정당화 DocType: User,Middle Name (Optional),중간 이름 (선택 사항) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,허용하지 않음 @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,검색 결 DocType: System Settings,Security,보안 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0}받는 사람에게 보낼 예정 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,절단 +DocType: Server Script,After Save,저장 후 apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},에서 이름이 {0}에 {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} 중 {0} (어린이가있는 {2} 개의 행) DocType: Currency,**Currency** Master,** 통화 ** 마스터 @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,필터 값 DocType: Communication,User Tags,사용자 태그 DocType: Data Migration Run,Fail,실패 DocType: Workflow State,download-alt,다운로드 - 고도 +DocType: Scheduled Job Type,Last Execution,마지막 실행 DocType: Data Migration Run,Pull Failed,당겨 실패 apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,카드 보이기 / 숨기기 DocType: Communication,Feedback Request,의견 요청 apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel 파일에서 데이터 가져 오기. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,다음 필드가 누락되었습니다 : +DocType: Notification Log,From User,사용자로부터 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} 취소 중 DocType: Web Page,Main Section,메인 섹션 DocType: Page,Icon,아이콘 apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","힌트 : 암호에 기호, 숫자 및 대문자를 포함하십시오." apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","힌트 : 암호에 기호, 숫자 및 대문자를 포함하십시오." +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","멘션, 과제, 에너지 포인트 등에 대한 알림을 구성합니다." DocType: DocField,Allow in Quick Entry,빠른 입력 허용 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,체크인 yyyy / MM / dd @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,주제 URL DocType: Customize Form,Sort Field,정렬 필드 DocType: Razorpay Settings,Razorpay Settings,Razorpay 설정 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,필터 편집 -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,더 추가 DocType: System Settings,Session Expiry Mobile,세션 만료 모바일 apps/frappe/frappe/utils/password.py,Incorrect User or Password,잘못된 사용자 또는 암호 apps/frappe/frappe/templates/includes/search_box.html,Search results for,에 대한 검색 결과 @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,에너지 포인트 규칙 DocType: Communication,Delayed,지연 apps/frappe/frappe/config/settings.py,List of backups available for download,다운로드 할 수있는 백업의 목록 +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,새로운 데이터 가져 오기 시도 apps/frappe/frappe/www/login.html,Sign up,가입 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,행 {0} : 사용 불가능 표준 필드에 필수 +DocType: Webhook,Enable Security,보안 활성화 apps/frappe/frappe/config/customization.py,Dashboards,대시 보드 DocType: Test Runner,Output,산출 DocType: Milestone,Track Field,트랙 경기장 @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,경고 후 속성 설정 apps/frappe/frappe/config/customization.py,Add fields to forms.,양식에 필드를 추가합니다. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,이 사이트의 Paypal 구성에 문제가있는 것 같습니다. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,검토 추가 +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0}이 (가) 새 작업 {1} {2}을 (를) 할당했습니다 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),글꼴 크기 (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,표준 DocTypes 만 사용자 정의 양식에서 사용자 정의 할 수 있습니다. DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,포털 메뉴 항목 apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,필터 설정 DocType: Contact Us Settings,Email ID,이메일 ID DocType: Energy Point Rule,Multiplier Field,배율기 필드 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay 주문을 만들 수 없습니다. 관리자에게 문의하십시오 DocType: Dashboard Chart,Time Interval,시간 간격 DocType: Activity Log,Keep track of all update feeds,모든 업데이트 피드를 추적합니다. +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0}이 (가) {1} {2} 문서를 공유했습니다 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,쿼리 옵션 @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,키 DocType: Address,Contacts,주소록 DocType: System Settings,Setup Complete,설치 완료 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,모든 문서 공유의 보고서 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","가져 오기 템플릿은 .csv, .xlsx 또는 .xls 유형이어야합니다." apps/frappe/frappe/www/update-password.html,New Password,새로운 비밀번호 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,필터 {0} 누락 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,죄송합니다! 당신은 자동 생성 주석을 삭제할 수 없습니다 @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,파비콘 apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,운영 DocType: Blog Post,Content (HTML),콘텐츠 (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,설정 DocType: Personal Data Download Request,User Name,사용자 이름 DocType: Workflow State,minus-sign,마이너스 기호 apps/frappe/frappe/public/js/frappe/request.js,Not Found,찾을 수 없음 @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,어떤 {0} 권한이 없 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,수출 사용자 지정 권한 apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,제품을 찾지 못했습니다. DocType: Data Export,Fields Multicheck,필드 멀티 체크 +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} 완료 DocType: Activity Log,Login,로그인 DocType: Web Form,Payments,지불 apps/frappe/frappe/www/qrcode.html,Hi {0},안녕하세요. {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google 드라이브 통합. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0}이 (가) {1} {2}에서 포인트를 되돌 렸습니다. DocType: System Settings,Enable Scheduled Jobs,예약 된 작업 사용 apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,주석: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,비활성 @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,공통 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,권한 오류 apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0}의 이름이 될 수 없습니다 {1} DocType: User Permission,Applicable For,에 적용 +DocType: Dashboard Chart,From Date,날짜 apps/frappe/frappe/core/doctype/version/version_view.html,Success,성공 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,세션 만료 됨 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,세션 만료 됨 @@ -1480,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,성 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; 조건에 허용되지 않음 DocType: Async Task,Async Task,비동기 작업 DocType: Workflow State,picture,사진 -apps/frappe/frappe/www/complete_signup.html,Complete,완전한 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,완전한 DocType: DocType,Image Field,이미지 필드 DocType: Print Format,Custom HTML Help,사용자 정의 HTML 도움말 DocType: LDAP Settings,Default Role on Creation,창조의 기본 역할 @@ -1488,6 +1549,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,다음 주 DocType: User,Block Modules,블록 모듈 DocType: Print Format,Custom CSS,사용자 정의 CSS +DocType: Energy Point Rule,Apply Only Once,한 번만 적용 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,코멘트 추가 DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},무시 : {0}에 {1} @@ -1499,6 +1561,7 @@ DocType: Email Account,Default Incoming,기본 수신 DocType: Workflow State,repeat,반복 DocType: Website Settings,Banner,기치 apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},값은 {0} 중 하나 여야합니다 +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,모든 서류 취소 DocType: Role,"If disabled, this role will be removed from all users.","사용할 경우,이 역할은 모든 사용자에서 제거됩니다." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} 목록으로 이동하십시오. apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,검색에 대한 도움말 @@ -1507,6 +1570,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,등록하 apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,이 문서의 자동 반복 기능이 비활성화되었습니다. DocType: DocType,Hide Copy,복사에게 숨기기 apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,모든 역할을 취소합니다 +DocType: Server Script,Before Save,저장하기 전에 apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} 고유해야합니다 apps/frappe/frappe/model/base_document.py,Row,Row apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","참조, 숨은 참조 및 이메일 템플릿" @@ -1517,7 +1581,6 @@ DocType: Chat Profile,Offline,오프라인 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0}을 (를) 성공적으로 가져 왔습니다 DocType: User,API Key,API 키 DocType: Email Account,Send unsubscribe message in email,이메일 수신 거부 메시지 보내기 -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,편집 제목 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,이 링크 필드에 대한 문서 종류가 될 것입니다 필드 이름. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,당신과 당신에 의해 할당 된 문서. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,이 파일을 복사하여 붙여 넣기 할 수도 있습니다. @@ -1549,8 +1612,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,이미지 첨부 DocType: Workflow State,list-alt,목록 - 고도 apps/frappe/frappe/www/update-password.html,Password Updated,암호 업데이트 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한 apps/frappe/frappe/www/qrcode.html,Steps to verify your login,로그인 확인 단계 apps/frappe/frappe/utils/password.py,Password not found,비밀 번호를 찾을 수 없습니다 +DocType: Webhook,Webhook Secret,웹 후크 비밀 DocType: Data Migration Mapping,Page Length,페이지 길이 DocType: Email Queue,Expose Recipients,받는 사람 노출 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,로 들어오는 메일에 대한 필수 추가 @@ -1578,6 +1643,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,시스템 DocType: Web Form,Max Attachment Size (in MB),(MB)에서 최대 첨부 파일 크기 apps/frappe/frappe/www/login.html,Have an account? Login,계정이있으세요? 로그인 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,인쇄 설정 ... DocType: Workflow State,arrow-down,화살표 아래로 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},행 {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},사용자가 삭제할 수 없습니다 {0} {1} @@ -1599,6 +1665,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,암호를 DocType: Dropbox Settings,Dropbox Access Secret,보관 용 액세스 비밀 DocType: Tag Link,Document Title,문서 제목 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(필수) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전 DocType: Social Login Key,Social Login Provider,소셜 로그인 공급자 apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,또 다른 코멘트를 추가 apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,파일에서 데이터를 찾을 수 없습니다. 새 파일을 데이터로 다시 첨부하십시오. @@ -1613,11 +1680,12 @@ DocType: Workflow State,hand-down,손 다운 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Kanban 열로 사용할 수있는 필드가 없습니다. 사용자 정의 양식을 사용하여 "선택"유형의 사용자 정의 필드를 추가하십시오. DocType: Address,GST State,GST 주 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : 설정할 수 없습니다 제출하지 않고 취소 +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),사용자 ({0}) DocType: Website Theme,Theme,테마 DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI는 인증 코드에 바인딩 리디렉션 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,도움말 열기 DocType: DocType,Is Submittable,Submittable입니다 -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,새로운 언급 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,새로운 언급 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,새로운 Google 주소록이 동기화되지 않았습니다. DocType: File,Uploaded To Google Drive,Google 드라이브에 업로드 apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,체크 필드의 값은 0 또는 1이 될 수 있습니다 @@ -1629,7 +1697,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,받은 편지함 DocType: Kanban Board Column,Red,빨간 DocType: Workflow State,Tag,(소) 태그 -DocType: Custom Script,Script,스크립트 +DocType: Report,Script,스크립트 apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,문서를 저장할 수 없습니다. DocType: Energy Point Rule,Maximum Points,최대 포인트 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,내 설정 @@ -1659,9 +1727,12 @@ DocType: Address,Haryana,하리야나 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{1} {2}에 대한 감사 점수 {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,역할은 사용자 페이지에서 사용자가 설정할 수 있습니다. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,코멘트를 추가 +DocType: Dashboard Chart,Select Date Range,기간 선택 DocType: DocField,Mandatory,필수 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,모듈 내보내는 +DocType: Scheduled Job Type,Monthly Long,월간 긴 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : 없음 기본 사용 권한을 설정하지 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,여기에 링크하려면 {0}에게 이메일을 보내십시오. apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","의 제출을 취소, 개정의 의미" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,할일 @@ -1670,7 +1741,6 @@ DocType: Milestone Tracker,Track milestones for any document,모든 문서의 DocType: Social Login Key,Identity Details,신원 정보 apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},{0}에서 {1} (으) 로의 워크 플로 상태 전환 허용 안 됨 apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,대시 보드 표시 -apps/frappe/frappe/desk/form/assign_to.py,New Message,새로운 메시지 DocType: File,Preview HTML,미리보기 HTML DocType: Desktop Icon,query-report,쿼리 보고서 DocType: Data Import Beta,Template Warnings,템플릿 경고 @@ -1681,18 +1751,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,와 연결 apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,자동 전자 메일 보고서 설정 편집 DocType: Chat Room,Message Count,메시지 수 DocType: Workflow State,book,"~을 기입하다, ~을 예약하다" +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1}은 (는) 제출 된 다음 문서와 연결되어 있습니다 : {2} DocType: Communication,Read by Recipient,수신자가 읽음 DocType: Website Settings,Landing Page,방문 페이지 apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,사용자 정의 스크립트 오류 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} 이름 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,사용 권한이 기준이 설정되어 있지. DocType: Auto Email Report,Auto Email Report,자동 이메일 보고서 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,새로운 문서 공유 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,댓글을 삭제 하시겠습니까? DocType: Address Template,This format is used if country specific format is not found,국가 별 형식을 찾을 수없는 경우이 형식이 사용됩니다 DocType: System Settings,Allow Login using Mobile Number,휴대 전화 번호로 로그인 허용 apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,이 리소스에 액세스 할 수있는 충분한 권한이 없습니다. 액세스 권한을 얻으려면 관리자에게 문의하시기 바랍니다. DocType: Custom Field,Custom,사용자 지정 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",이 옵션을 사용하면 제한된 IP 주소에서 로그인 한 사용자는 Two Factor Auth +DocType: Server Script,After Cancel,취소 후 DocType: Auto Repeat,Get Contacts,연락처 가져 오기 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},아래에 제출 한 게시물 {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,제목없는 열 건너 뛰기 @@ -1703,6 +1776,7 @@ DocType: User,Login After,후 로그인 DocType: Print Format,Monospace,모노 스페이스 DocType: Letter Head,Printing,인쇄 DocType: Workflow State,thumbs-up,엄지 손가락 최대 +DocType: Notification Log,Mention,언급하다 DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,글꼴 apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,정밀는 1과 6 사이 여야합니다 @@ -1710,7 +1784,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW : {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,손목 apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},이 보고서는 {0}에 생성되었습니다. DocType: Error Snapshot,Frames,프레임 -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,할당 +DocType: Notification Log,Assignment,할당 DocType: Notification,Slack Channel,슬랙 채널 DocType: About Us Team Member,Image Link,이미지 링크 DocType: Auto Email Report,Report Filters,보고서 필터 @@ -1727,7 +1801,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,이벤트를 업데이트 할 수 없습니다 apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,인증 코드가 등록 된 이메일 주소로 발송되었습니다. apps/frappe/frappe/core/doctype/user/user.py,Throttled,스로틀 됨 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,당신의 목표 apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","필터에는 4 가지 값 (doctype, fieldname, operator, value)이 있어야합니다 : {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},{0}에 지정된 이름이 없습니다. apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,할당 규칙 적용 apps/frappe/frappe/utils/bot.py,show,보여 주다 apps/frappe/frappe/utils/data.py,Invalid field name {0},잘못된 필드 이름 {0} @@ -1737,7 +1813,6 @@ DocType: Workflow State,text-height,텍스트 높이 DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,데이터 마이그레이션 계획 매핑 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé 시작 ... DocType: Web Form Field,Max Length,최대 길이 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1}의 경우 DocType: Print Format,Jinja,진자 DocType: Workflow State,map-marker,지도 마커 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,문제 제출 @@ -1773,6 +1848,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,누락 또는 이동 페 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,리뷰 DocType: DocType,Route,노선 apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay 지불 게이트웨이 설정 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0}이 {2} {3}에서 {1} 점을 얻었습니다. apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,문서에서 첨부 된 이미지 가져 오기 DocType: Chat Room,Name,이름 DocType: Contact Us Settings,Skype,Skype @@ -1783,7 +1859,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,링크 열 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,당신의 언어 DocType: Dashboard Chart,Average,평균 apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,행 추가 -DocType: Tag Category,Doctypes,doctype에 apps/frappe/frappe/public/js/frappe/form/print.js,Printer,인쇄기 apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,쿼리는 SELECT해야합니다 DocType: Auto Repeat,Completed,완료 @@ -1843,6 +1918,7 @@ DocType: GCalendar Account,Next Sync Token,다음 동기화 토큰 DocType: Energy Point Settings,Energy Point Settings,에너지 포인트 설정 DocType: Async Task,Succeeded,성공 apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},에 필요한 필수 필드 {0} +DocType: Onboarding Slide Field,Align,정렬 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0}에 대한 사용 권한을 다시 설정? apps/frappe/frappe/config/desktop.py,Users and Permissions,사용자 및 권한 DocType: S3 Backup Settings,S3 Backup Settings,S3 백업 설정 @@ -1859,7 +1935,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,새 인쇄 형식 이름 apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,요청을 승인하려면 아래 링크를 클릭하십시오. DocType: Workflow State,align-left,정렬에서 왼쪽으로 +DocType: Onboarding Slide,Action Settings,동작 설정 DocType: User,Defaults,기본값 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","비교하려면> 5, <10 또는 = 324를 사용하십시오. 범위의 경우 5:10을 사용하십시오 (5와 10 사이의 값)." DocType: Energy Point Log,Revert Of,되돌리기 apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,기존에 병합 DocType: User,Birth Date,생년월일 @@ -1915,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,"결과적으로, DocType: Notification,Value Change,값 변경 DocType: Google Contacts,Authorize Google Contacts Access,Google 주소록 액세스 권한 부여 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,보고서의 숫자 필드 만 표시 +apps/frappe/frappe/utils/data.py,1 week ago,1 주 전 DocType: Data Import Beta,Import Type,수입품 DocType: Access Log,HTML Page,HTML 페이지 DocType: Address,Subsidiary,자회사 @@ -1924,7 +2003,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,레터 apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,잘못된 보내는 메일 서버 또는 포트 DocType: Custom DocPerm,Write,쓰기 -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,관리자 만 조회 / 스크립트 보고서를 작성할 수 apps/frappe/frappe/public/js/frappe/form/save.js,Updating,업데이트 DocType: Data Import Beta,Preview,미리보기 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",이 필드를 "값은"필수입니다. 업데이트 할 값을 지정하십시오 @@ -1934,6 +2012,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,사용자 DocType: Data Migration Run,Started,시작됨 apps/frappe/frappe/permissions.py,User {0} does not have access to this document,사용자 {0}이 (가)이 문서에 액세스 할 수 없습니다. DocType: Data Migration Run,End Time,종료 시간 +DocType: Dashboard Chart,Group By Based On,기준으로 그룹화 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,첨부 파일을 선택합니다 apps/frappe/frappe/model/naming.py, for {0},{0}에 대한 apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,당신은이 문서를 인쇄 할 수 없습니다 @@ -1975,6 +2054,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,확인 DocType: Workflow Document State,Update Field,필드 업데이트 DocType: Chat Profile,Enable Chat,채팅 사용 DocType: LDAP Settings,Base Distinguished Name (DN),기본 식별 이름 (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,이 대화를 남겨주세요 apps/frappe/frappe/model/base_document.py,Options not set for link field {0},옵션 링크 필드에 대해 설정되지 {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,대기열 / 작업자 @@ -2043,12 +2123,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,로그인이 시간에 허용되지 DocType: Data Migration Run,Current Mapping Action,현재 매핑 작업 DocType: Dashboard Chart Source,Source Name,원본 이름 -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,사용자와 연결된 이메일 계정이 없습니다. 사용자> 이메일받은 편지함에 계정을 추가하십시오. DocType: Email Account,Email Sync Option,이메일 동기화 옵션 apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,행 번호 DocType: Async Task,Runtime,런타임 DocType: Post,Is Pinned,고정되어있다. DocType: Contact Us Settings,Introduction,소개 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,도움이 필요하다? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,글로벌 핀 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,뒤따라 DocType: LDAP Settings,LDAP Email Field,LDAP 이메일 필드 @@ -2058,7 +2138,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,사용자 DocType: User Email,Enable Outgoing,보내는 사용 DocType: Address,Fax,팩스 apps/frappe/frappe/config/customization.py,Custom Tags,사용자 정의 태그 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오 DocType: Comment,Submitted,제출 DocType: Contact,Pulled from Google Contacts,Google 주소록에서 가져옴 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,잘못된 요청 @@ -2079,9 +2158,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,홈 / 테 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,나에게 할당 DocType: DocField,Dynamic Link,동적 링크 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,메뉴 및 사이드 바에서 추가 단축키를 실행하려면 Alt 키를 누릅니다. +DocType: Dashboard Chart,To Date,현재까지 DocType: List View Setting,List View Setting,목록보기 설정 apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,쇼 실패한 작업 -DocType: Event,Details,세부 정보 +DocType: Scheduled Job Log,Details,세부 정보 DocType: Property Setter,DocType or Field,문서 종류 또는 필드 apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,이 문서를 팔로우 해제했습니다. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,원색 @@ -2090,7 +2170,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,게시 가능한 키 또는 비밀 키가 잘못되었습니다 !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,게시 가능한 키 또는 비밀 키가 잘못되었습니다 !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,권한 설정에 대한 빠른 도움말 -DocType: Tag Doc Category,Doctype to Assign Tags,태그를 지정하는 문서 타입 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,쇼 재발 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,이메일이 휴지통으로 이동되었습니다. DocType: Report,Report Builder,보고서 작성기 @@ -2106,6 +2185,7 @@ DocType: Workflow State,Upload,업로드 DocType: User Permission,Advanced Control,고급 제어 DocType: System Settings,Date Format,날짜 형식 apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,게시되지 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새로 만드십시오. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","워크 플로 작업 (예를 들어, 취소, 양해 해주십시오)." DocType: Data Import,Skip rows with errors,오류가있는 행 건너 뛰기 DocType: Workflow State,flag,플래그 @@ -2115,7 +2195,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,문 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,필드로 이동 DocType: Contact Us Settings,Forward To Email Address,앞으로 이메일 주소 DocType: Contact Phone,Is Primary Phone,기본 전화입니까 -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,{0}에 이메일을 보내 여기에 연결하십시오. DocType: Auto Email Report,Weekdays,평일 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} 레코드가 내보내집니다 apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,제목 필드는 유효한 필드 이름이어야합니다 @@ -2123,7 +2202,7 @@ DocType: Post Comment,Post Comment,댓글 달기 apps/frappe/frappe/config/core.py,Documents,서류 apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,활동 기록 DocType: Social Login Key,Custom Base URL,맞춤 기본 URL -DocType: Email Flag Queue,Is Completed,완료 +DocType: Onboarding Slide,Is Completed,완료 apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,필드 가져 오기 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,프로필 수정 DocType: Kanban Board Column,Archived,보관 @@ -2134,12 +2213,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",여기에 정의 된 필드 이름 값을 가지고 또는 규칙이 참 (예) 경우에만이 필드가 나타납니다 myfield 평가 : doc.myfield == '나의 가치'평가 : doc.age> (18) DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,오늘 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,오늘 +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,오늘 +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,오늘 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","이 설정되면, 사용자는 수 액세스 문서 (예 될 것입니다링크가 존재하는 블로그의 포스트) (예 :블로거)." DocType: Data Import Beta,Submit After Import,수입 후 제출 DocType: Error Log,Log of Scheduler Errors,스케줄러 오류의 로그 DocType: User,Bio,바이오 +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,온 보딩 슬라이드 도움말 링크 DocType: OAuth Client,App Client Secret,응용 프로그램 클라이언트 비밀 apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,제출 apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parent는 데이터가 추가 될 문서의 이름입니다. @@ -2147,7 +2227,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,대문자 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,사용자 정의 HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,폴더 이름을 입력합니다 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새로 만드십시오. apps/frappe/frappe/auth.py,Unknown User,알 수없는 사용자 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,역할 선택 DocType: Comment,Deleted,삭제 @@ -2163,7 +2242,7 @@ DocType: Chat Token,Chat Token,채팅 토큰 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,차트 만들기 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,가져 오지마 -DocType: Web Page,Center,가운데 +DocType: Onboarding Slide Field,Center,가운데 DocType: Notification,Value To Be Set,설정 될 값 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} 수정 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,첫 번째 수준 @@ -2171,7 +2250,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,데이터베이스 이름 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,새로 고침 양식 DocType: DocField,Select,고르기 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,전체 로그보기 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,전체 로그보기 DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","간단한 파이썬 표현식, 예 : 상태 == '열기'와 타입 == '버그'" apps/frappe/frappe/utils/csvutils.py,File not attached,파일이 첨부되지 않았습니다 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,연결이 끊어졌습니다. 일부 기능이 작동하지 않을 수 있습니다. @@ -2203,6 +2282,7 @@ DocType: Web Page,HTML for header section. Optional,머리글 구역에 대한 H apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,이 기능은 여전히 새로운 실험이다 apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,최대 {0} 행이 허용 DocType: Dashboard Chart Link,Chart,차트 +DocType: Scheduled Job Type,Cron,크론 DocType: Email Unsubscribe,Global Unsubscribe,글로벌 탈퇴 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,이것은 매우 일반적인 암호입니다. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,전망 @@ -2219,6 +2299,7 @@ DocType: Data Migration Connector,Hostname,호스트 이름 DocType: Data Migration Mapping,Condition Detail,조건 세부 정보 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",통화 {0}의 경우 최소 거래 금액은 {1}이어야합니다. DocType: DocField,Print Hide,인쇄 숨기기 +DocType: System Settings,HH:mm:ss,HH : mm : ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,사용자에게 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,반환 값 입력 DocType: Workflow State,tint,색조 @@ -2286,6 +2367,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,로그인 확 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,할일 추가 DocType: Footer Item,Company,회사 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},평균 {0} +DocType: Scheduled Job Log,Scheduled,예약된 DocType: User,Logout from all devices while changing Password,암호를 변경하는 동안 모든 장치에서 로그 아웃 apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,비밀번호 확인 apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,오류가 발생했습니다 @@ -2311,7 +2393,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,사용자 권한이 이미 있습니다. apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} 열을 {1} 필드에 맵핑 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},보기 {0} -DocType: User,Hourly,매시간 +DocType: Scheduled Job Type,Hourly,매시간 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth를 클라이언트 응용 프로그램을 등록 DocType: DocField,Fetch If Empty,빈 경우 가져 오기 DocType: Data Migration Connector,Authentication Credentials,인증 자격 증명 @@ -2322,10 +2404,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS 게이트웨이 URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ""{2}""가 될 수 없습니다. ""{3}""중 하나입니다." apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},자동 규칙 {1}을 (를) 통해 {0}에 의해 획득되었습니다. apps/frappe/frappe/utils/data.py,{0} or {1},{0} 또는 {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,당신은 모두 설정되었습니다! DocType: Workflow State,trash,쓰레기 DocType: System Settings,Older backups will be automatically deleted,이전 백업은 자동으로 삭제됩니다 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,잘못된 액세스 키 ID 또는 비밀 액세스 키. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,에너지 점수를 잃었 어. DocType: Post,Is Globally Pinned,전역으로 고정되어 있습니까? apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,최근 활동 DocType: Workflow Transition,Conditions,정황 @@ -2334,6 +2416,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,확인 된 DocType: Event,Ends on,에 종료 DocType: Payment Gateway,Gateway,게이트웨이 DocType: LDAP Settings,Path to Server Certificate,서버 인증서 경로 +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,브라우저에서 자바 스크립트를 사용할 수 없습니다 apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,링크를 볼 권한이 없습니다. apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,링크를 볼 권한이 없습니다. apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,주소 제목은 필수입니다. @@ -2353,7 +2436,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,서해 -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",이 옵션을 선택하면 유효한 데이터가있는 행을 가져오고 나중에 가져올 수 있도록 잘못된 행이 새 파일로 덤프됩니다. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,문서 역할의 사용자 만 편집 할 수 있습니다 -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","당신이 {1}, {2}에 의해 닫힌에 할당 한 작업 {0}." DocType: Print Format,Show Line Breaks after Sections,쇼 라인 섹션 후 휴식 DocType: Communication,Read by Recipient On,수신자가 읽음 DocType: Blogger,Short Name,짧은 이름 @@ -2386,6 +2468,7 @@ DocType: Translation,PR sent,홍보 전달 DocType: Auto Email Report,Only Send Records Updated in Last X Hours,지난 X 시간 동안 업데이트 된 레코드 만 보내기 DocType: Auto Email Report,Only Send Records Updated in Last X Hours,지난 X 시간 동안 업데이트 된 레코드 만 보내기 DocType: Communication,Feedback,피드백 +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,새 버전으로 업데이트 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,열린 번역 apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,이 이메일은 자동 생성되었습니다. DocType: Workflow State,Icon will appear on the button,아이콘이 버튼에 나타납니다 @@ -2424,6 +2507,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,페이지 DocType: DocField,Precision,정확 DocType: Website Slideshow,Slideshow Items,슬라이드 쇼 항목 apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,반복되는 단어 또는 문자를 피하십시오 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,알림 비활성화 +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,모든 행을 삭제 하시겠습니까? DocType: Workflow Action,Workflow State,워크 플로 상태 apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,행 추가 apps/frappe/frappe/www/list.py,My Account,내 계정 @@ -2432,6 +2517,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,일 후 apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ 트레이 연결 활성! DocType: Contact Us Settings,Settings for Contact Us Page,문의 페이지에 대한 설정 +DocType: Server Script,Script Type,스크립트 유형 DocType: Print Settings,Enable Print Server,인쇄 서버 활성화 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} 주 전 DocType: Email Account,Footer,바닥 글 @@ -2457,8 +2543,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,경고 apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,여러 페이지에 인쇄 될 수 있습니다. DocType: Data Migration Run,Percent Complete,완료율 -DocType: Tag Category,Tag Category,태그 카테고리 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","비교하려면> 5, <10 또는 = 324를 사용하십시오. 범위의 경우 5:10을 사용하십시오 (5와 10 사이의 값)." DocType: Google Calendar,Pull from Google Calendar,Google 캘린더에서 가져 오기 apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,도움말 DocType: User,Login Before,전에 로그인 @@ -2468,17 +2552,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,주말 숨기기 apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,반복되는 문서를 자동으로 생성합니다. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,가 +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,정보 기호 apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} 목록이 될 수 없습니다 용 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","어떻게 통화를 포맷해야 하는가?설정하지 않은 경우, 시스템 기본값을 사용합니다" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} 문서를 제출 하시겠습니까? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,당신은 로그인 및 백업 액세스 할 수 있도록 시스템 관리자 역할을해야합니다. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ 트레이 응용 프로그램 연결 오류 ... <br><br> Raw Print 기능을 사용하려면 QZ Tray 응용 프로그램이 설치되어 실행 중이어야합니다. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ 트레이를 다운로드하여 설치하려면 여기를 클릭하십시오</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Raw Printing에 대한 자세한 내용을 보려면 여기를 클릭하십시오</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,프린터 매핑 apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,첨부하기 전에 저장하십시오. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,링크 된 모든 문서를 취소 하시겠습니까? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),추가 {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype의 정보는 다음의 제품에 {0}을 변경할 수 없습니다 {1} 행의 {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,역할 권한 DocType: Help Article,Intermediate,중간의 +apps/frappe/frappe/config/settings.py,Email / Notifications,이메일 알림 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0}이 (가) {1}을 (를) {2} (으)로 변경했습니다. apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,초안으로 복원 된 취소 된 문서 DocType: Data Migration Run,Start Time,시작 시간 @@ -2495,6 +2583,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,잘못된받는 사람 주소 DocType: Workflow State,step-forward,단계 앞으로 DocType: System Settings,Allow Login After Fail,실패 후 로그인 허용 +DocType: DocType Link,DocType Link,독 타입 링크 DocType: Role Permission for Page and Report,Set Role For,에 대한 설정 역할 DocType: GCalendar Account,The name that will appear in Google Calendar,Google 캘린더에 표시 될 이름입니다. apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0}이 (가)있는 방이 이미 있습니다. @@ -2512,6 +2601,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},새 {0} DocType: Contact,Google Contacts,Google 주소록 DocType: GCalendar Account,GCalendar Account,GCalendar 계정 DocType: Email Rule,Is Spam,스팸인가 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,마지막 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},보고서 {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},열기 {0} DocType: Data Import Beta,Import Warnings,수입 경고 @@ -2523,6 +2613,7 @@ DocType: Workflow State,ok-sign,확인 서명 apps/frappe/frappe/config/settings.py,Deleted Documents,삭제 된 문서 apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV 형식은 대소 문자를 구분합니다. apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,바탕 화면 아이콘이 이미 있습니다. +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,슬라이드를 표시 할 모든 도메인을 지정하십시오. 아무것도 지정하지 않으면 기본적으로 슬라이드가 모든 도메인에 표시됩니다. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,복제 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0} : {2} 행의 {1} 필드를 숨길 수 없으며 기본값없이 필수입니다. DocType: Newsletter,Create and Send Newsletters,작성 및 보내기 뉴스 레터 @@ -2533,6 +2624,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google 캘린더 이벤트 ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""상위항목"" 테이블에서 열이 추가되어야 합니다." apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,검토 포인트 : +DocType: Scheduled Job Log,Scheduled Job Log,예약 된 작업 로그 +DocType: Server Script,Before Delete,삭제하기 전에 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,함께 공유 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,파일 / URL을 첨부하고 표에 추가하십시오. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,메시지가 설정되지 않았습니다. @@ -2556,19 +2649,21 @@ DocType: About Us Settings,Settings for the About Us Page,회사 소개 페이 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,스트라이프 결제 게이트웨이 설정 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,스트라이프 결제 게이트웨이 설정 apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,인쇄가 프린터로 전송되었습니다! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,에너지 포인트 +DocType: Notification Settings,Energy Points,에너지 포인트 +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},{0} 시간은 {1} 형식이어야합니다. DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,예) pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,키 생성 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,이렇게하면 데이터가 영구적으로 삭제됩니다. DocType: DocType,View Settings,보기 설정 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,새로운 알림 DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,요청 구조 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,컨트롤러 메소드 get_razorpay_order가 누락되었습니다. DocType: Personal Data Deletion Request,Pending Verification,대기중인 인증 DocType: Website Meta Tag,Website Meta Tag,웹 사이트 메타 태그 DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",비표준 포트 (예 : 587). Google 클라우드에있는 경우 포트 2525를 사용해보세요. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",게시 된 페이지의 과거 날짜 일 수 없으므로 종료 날짜를 지 웁니다. DocType: User,Send Me A Copy of Outgoing Emails,나가는 이메일 사본 보내기 -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.,Google 웹 로그 분석 ID를 추가 : 예.UA-89XXX57-1.자세한 내용은 Google 웹 로그 분석에 대한 도움말을 검색하십시오. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,암호는 100 자까지 입력 할 수 없습니다 DocType: OAuth Client,App Client ID,응용 프로그램 클라이언트 ID @@ -2597,6 +2692,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,새 암호가 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}이 문서를 공유 {1} DocType: Website Settings,Brand Image,브랜드 이미지 DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,가져 오기 템플릿은 머리글을 포함하고 하나 이상의 행을 포함해야합니다. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google 캘린더가 구성되었습니다. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","위쪽 탐색 모음, 바닥 글 및 로고의 설치." DocType: Web Form Field,Max Value,최대 값 @@ -2606,6 +2702,7 @@ DocType: User Social Login,User Social Login,사용자 소셜 로그인 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0}이 (가) {1}에 대한 귀하의 작업을 {2} 점으로 비판했습니다 DocType: Contact,All,모든 DocType: Email Queue,Recipient,받는 사람 +DocType: Webhook,Webhook Security,웹 후크 보안 DocType: Communication,Has Attachment,첨부 파일이 DocType: Address,Sales User,판매 사용자 apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,드래그 앤 드롭 도구를 구축하고 인쇄 형식을 사용자 정의합니다. @@ -2672,7 +2769,6 @@ DocType: Data Migration Mapping,Migration ID Field,마이그레이션 ID 필드 DocType: Dashboard Chart,Last Synced On,마지막으로 동기화 됨 DocType: Comment,Comment Type,코멘트 유형 DocType: OAuth Client,OAuth Client,OAuth 클라이언트 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0}이 (가) {1} {2}에 대한 귀하의 작업을 비난했습니다. DocType: Assignment Rule,Users,사용자 DocType: Address,Odisha,오디 샤 DocType: Report,Report Type,보고서 유형 @@ -2698,14 +2794,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,웹 사이트 슬라이 apps/frappe/frappe/model/workflow.py,Self approval is not allowed,자기 승인은 허용되지 않습니다. DocType: GSuite Templates,Template ID,템플릿 ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,허용 유형 ( <code>{0}</code> )과 응답 유형 ( <code>{1}</code> )의 조합이 허용되지 않습니다. -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0}의 새 메시지 DocType: Portal Settings,Default Role at Time of Signup,회원 가입시 기본 역할 DocType: DocType,Title Case,제목 케이스 apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,아래 링크를 클릭하여 데이터를 다운로드하십시오. apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},{0} 사용자의 이메일받은 편지함을 사용했습니다. DocType: Data Migration Run,Data Migration Run,데이터 마이그레이션 실행 DocType: Blog Post,Email Sent,이메일 전송 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,더 오래된 DocType: DocField,Ignore XSS Filter,XSS 필터를 무시 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,제거 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,보관 용 백업 설정 @@ -2760,6 +2854,7 @@ DocType: Async Task,Queued,대기 중 DocType: Braintree Settings,Use Sandbox,사용 샌드 박스 apps/frappe/frappe/utils/goal.py,This month,이번 달 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,새 사용자 정의 인쇄 형식 +DocType: Server Script,Before Save (Submitted Document),저장하기 전에 (제출 된 문서) DocType: Custom DocPerm,Create,생성 apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,표시 할 항목이 더 이상 없음 apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,이전 기록으로 이동 @@ -2817,6 +2912,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,휴지통으로 이동 DocType: Web Form,Web Form Fields,웹 폼 필드 DocType: Data Import,Amended From,개정 +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,사용자가 슬라이드를 채울 내용을 모르는 경우를 대비하여 도움말 비디오 링크를 추가하십시오. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},경고 : 없음은 찾을 수 {0} 관련된 테이블 {1} DocType: S3 Backup Settings,eu-north-1,서북 1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,이 문서는 현재 실행을 위해 대기한다. 다시 시도하십시오 @@ -2839,6 +2935,7 @@ DocType: Blog Post,Blog Post,블로그 포스트 DocType: Access Log,Export From,에서 내보내기 apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,고급 검색 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,뉴스 레터를 볼 수 없습니다. +DocType: Dashboard Chart,Group By,그룹으로 DocType: User,Interests,이해 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,암호 재설정 지침은 전자 메일로 전송 한 DocType: Energy Point Rule,Allot Points To Assigned Users,할당 된 사용자에게 할당 포인트 @@ -2854,6 +2951,7 @@ DocType: Assignment Rule,Assignment Rule,배정 규칙 apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},추천 아이디 : {0} DocType: Assignment Rule Day,Day,일 apps/frappe/frappe/public/js/frappe/desk.js,Modules,모듈 +DocType: DocField,Mandatory Depends On,필수에 따라 다름 apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,결제 성공 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,없음 {0} 메일 없다 DocType: OAuth Bearer Token,Revoked,해지 @@ -2861,6 +2959,7 @@ DocType: Web Page,Sidebar and Comments,사이드 바 및 댓글 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","당신이 후 취소 및 저장 문서를 개정 할 때, 이전 번호의 버전입니다 새 번호를 얻을 것이다." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",문서 {0}을 (를) 첨부 할 수 없으므로 인쇄 설정에서 인쇄 허용 {0}을 (를) 사용하십시오 +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오 apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0}에있는 문서를 참조하십시오. DocType: Stripe Settings,Publishable Key,게시 가능 키 DocType: Stripe Settings,Publishable Key,게시 가능 키 @@ -2876,13 +2975,13 @@ DocType: Currency,Fraction,분수 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Google 캘린더와 이벤트가 동기화되었습니다. DocType: LDAP Settings,LDAP First Name Field,LDAP 이름 필드 DocType: Contact,Middle Name,중간 이름 +DocType: DocField,Property Depends On,부동산에 따라 다름 DocType: Custom Field,Field Description,필드 설명 apps/frappe/frappe/model/naming.py,Name not set via Prompt,프롬프트를 통해 설정되지 않은 이름 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,이메일받은 편지함 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2}의 {0} 업데이트" DocType: Auto Email Report,Filters Display,필터 표시 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",수정하려면 "amended_from"필드가 있어야합니다. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} 님의 {1} {2} 작업에 감사드립니다. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,필터 저장 DocType: Address,Plant,심기 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,모든 응답 @@ -2923,11 +3022,11 @@ DocType: Workflow State,folder-close,폴더 닫기 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,보고서: DocType: Print Settings,Print taxes with zero amount,금액이없는 세금 인쇄 apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} 이름을 바꿀 수 없습니다 +DocType: Server Script,Before Insert,삽입하기 전에 DocType: Custom Script,Custom Script,사용자 정의 스크립트 DocType: Address,Address Line 2,2 호선 주소 DocType: Address,Reference,참고 apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,담당자 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,데이터 마이그레이션 매핑 세부 정보 DocType: Data Import,Action,수행 DocType: GSuite Settings,Script URL,스크립트 URL @@ -2953,11 +3052,13 @@ DocType: User,Api Access,API 액세스 DocType: DocField,In List View,목록보기 DocType: Email Account,Use TLS,TLS에게 사용 apps/frappe/frappe/email/smtp.py,Invalid login or password,잘못된 로그인 또는 암호 +DocType: Scheduled Job Type,Weekly Long,주간 긴 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,다운로드 템플릿 apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,형태의 사용자 정의 자바 스크립트를 추가합니다. ,Role Permissions Manager,역할 권한 관리자 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,새로운 인쇄 형식의 이름 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,사이드 바 전환 +DocType: Server Script,After Save (Submitted Document),저장 후 (제출 된 문서) DocType: Data Migration Run,Pull Insert,끌어 오기 삽입 DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",점에 승수 값을 곱한 후 허용되는 최대 점 (참고 : 제한이 없으면이 필드를 비워 두거나 0으로 설정) @@ -2977,6 +3078,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,블로그 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP가 설치되지 않음 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,데이터 다운로드 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1}에 대한 변경된 값 +DocType: Server Script,Before Cancel,취소하기 전에 DocType: Workflow State,hand-right,손 오른쪽 DocType: Website Settings,Subdomain,하위 도메인 DocType: S3 Backup Settings,Region,지방 @@ -3023,12 +3125,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,이전 암호 DocType: S3 Backup Settings,us-east-1,우리 - 동쪽 - 1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},게시물 {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",열 형식을 쿼리에 열 레이블을 제공합니다. +DocType: Onboarding Slide,Slide Fields,슬라이드 필드 DocType: Has Domain,Has Domain,도메인 있음 DocType: User,Allowed In Mentions,멘션에서 허용됨 apps/frappe/frappe/www/login.html,Don't have an account? Sign up,계정이 없으십니까? 가입 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID 입력란을 삭제할 수 없습니다. apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : 지정을 개정 설정할 수 Submittable 아니라면 DocType: Address,Bihar,비하르 +DocType: Notification Settings,Subscribed Documents,가입 서류 apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,사용자 설정 DocType: Report,Reference Report,참조 보고서 DocType: Activity Log,Link DocType,링크 DOCTYPE입니다 @@ -3046,6 +3150,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google 캘린더 액 apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,당신이 찾고있는 페이지가 없습니다. 이 이동하거나 링크에 오타가 있기 때문에이 될 수 있습니다. apps/frappe/frappe/www/404.html,Error Code: {0},오류 코드 : {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","일반 텍스트로 목록 페이지에 대한 설명, 라인의 단 몇. (최대 140 자)" +DocType: Server Script,DocType Event,독 타입 이벤트 apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0}은 필수 필드입니다 DocType: Workflow,Allow Self Approval,자체 승인 허용 DocType: Event,Event Category,이벤트 카테고리 @@ -3062,6 +3167,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,당신의 이름 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,연결 성공 DocType: DocType,InnoDB,InnoDB의 +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,슬라이드 유형 계속의 온 보딩 슬라이드가 이미 존재합니다. DocType: DocType,Default Sort Field,기본 정렬 필드 DocType: File,Is Folder,폴더입니다 DocType: Document Follow,DocType,문서 종류 @@ -3100,8 +3206,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,값 변 DocType: Workflow State,arrow-up,화살표까지 DocType: Dynamic Link,Link Document Type,링크 문서 유형 apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} 테이블에 대해 최소한 하나의 행이 있어야합니다 +DocType: Server Script,Server Script,서버 스크립트 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",자동 반복을 구성하려면 {0}에서 "자동 반복 허용"을 활성화하십시오. DocType: OAuth Bearer Token,Expires In,에 만료 +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",필드 세트를 반복하려는 횟수 (예 : 슬라이드에 고객 3 명을 원하는 경우이 필드를 3으로 설정하십시오. 첫 번째 필드 세트 만 슬라이드에 필수로 표시됨) DocType: DocField,Allow on Submit,제출에 허용 DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,예외 유형 @@ -3111,6 +3219,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,헤더 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,다가오는 이벤트 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,앱 액세스 키 및 응용 프로그램 비밀 키 값을 입력하세요 +DocType: Email Account,Append Emails to Sent Folder,보낸 폴더에 이메일 추가 DocType: Web Form,Accept Payment,지불을 수락 apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,목록 항목 선택 apps/frappe/frappe/config/core.py,A log of request errors,요청 오류 로그 @@ -3129,7 +3238,7 @@ DocType: Translation,Contributed,기여한 apps/frappe/frappe/config/customization.py,Form Customization,양식 사용자 정의 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,활성 세션 없음 DocType: Web Form,Route to Success Link,성공 링크로 연결 -DocType: Top Bar Item,Right,오른쪽 +DocType: Onboarding Slide Field,Right,오른쪽 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,예정된 행사가 없습니다 DocType: User,User Type,사용자 유형 DocType: Prepared Report,Ref Report DocType,참조 보고서 DocType @@ -3147,6 +3256,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,다시 시도하 apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL은 'http : //'또는 'https : //'로 시작해야합니다. apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,옵션 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,이 취소 할 수 없습니다 DocType: Workflow State,Edit,편집 DocType: Website Settings,Chat Operators,채팅 연산자 DocType: S3 Backup Settings,ca-central-1,중부 표준시 - 1 @@ -3158,7 +3268,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,이 형태로 저장되지 않은 변경 사항이 있습니다.계속하기 전에 저장하십시오. DocType: Address,Telangana,텔란가나 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} 옵션이 있어야합니다의 기본 -DocType: Tag Doc Category,Tag Doc Category,태그 문서 카테고리 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 열 이상인 보고서는 가로 모드에서 더 잘 나타납니다. apps/frappe/frappe/database/database.py,Invalid field name: {0},잘못된 필드 이름 : {0} DocType: Milestone,Milestone,마일스톤 @@ -3167,7 +3276,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} (으)로 이동 apps/frappe/frappe/email/queue.py,Emails are muted,이메일은 음소거 apps/frappe/frappe/config/integrations.py,Google Services,Google 서비스 apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl 키 + 위쪽 -apps/frappe/frappe/utils/data.py,1 weeks ago,일주 전 +DocType: Onboarding Slide,Slide Description,슬라이드 설명 DocType: Communication,Error,오류 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,먼저 메시지를 설정하십시오. DocType: Auto Repeat,End Date,끝 날짜 @@ -3188,10 +3297,12 @@ DocType: Footer Item,Group Label,그룹 레이블 DocType: Kanban Board,Kanban Board,칸반 보드 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google 연락처가 구성되었습니다. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 레코드가 내보내집니다 +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,사용자와 연결된 이메일 계정이 없습니다. 사용자> 이메일받은 편지함에 계정을 추가하십시오. DocType: DocField,Report Hide,보고서 숨기기 apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},사용할 수 없습니다 트리보기 {0} DocType: DocType,Restrict To Domain,도메인으로 제한 DocType: Domain,Domain,도메인 +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,잘못된 파일 URL입니다. 시스템 관리자에게 문의하십시오. DocType: Custom Field,Label Help,라벨 도움말 DocType: Workflow State,star-empty,스타 빈 apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,날짜는 종종 추측하기 쉽다. @@ -3216,6 +3327,7 @@ DocType: Workflow State,hand-left,손으로 왼쪽 DocType: Data Import,If you are updating/overwriting already created records.,이미 생성 된 레코드를 업데이트하거나 덮어 쓰는 경우. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,글로벌인가? DocType: Email Account,Use SSL,SSL을 사용하여 +DocType: Webhook,HOOK-.####,훅-.#### DocType: Workflow State,play-circle,재생 원 apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,문서를 올바르게 할당 할 수 없습니다. apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",잘못된 "depends_on"표현식 @@ -3232,6 +3344,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,마지막 새로 고침 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,문서 유형 DocType: Workflow State,arrow-right,화살표 오른쪽 +DocType: Server Script,API Method,API 방법 DocType: Workflow State,Workflow state represents the current state of a document.,플로 상태는 문서의 현재 상태를 나타낸다. DocType: Letter Head,Letter Head Based On,편지 머리 기준 apps/frappe/frappe/utils/oauth.py,Token is missing,토큰이 없습니다 @@ -3271,6 +3384,7 @@ DocType: Comment,Relinked,다시 연결 DocType: Print Settings,Compact Item Print,컴팩트 항목 인쇄 DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL 리디렉션 +DocType: Onboarding Slide Field,Placeholder,자리 표시 자 DocType: SMS Settings,Enter url parameter for receiver nos,수신기 NOS에 대한 URL 매개 변수를 입력 DocType: Chat Profile,Online,온라인으로 DocType: Email Account,Always use Account's Name as Sender's Name,계정 이름을 항상 발신자 이름으로 사용하십시오. @@ -3280,7 +3394,6 @@ DocType: Workflow State,Home,홈 DocType: OAuth Provider Settings,Auto,자동 DocType: System Settings,User can login using Email id or User Name,사용자는 이메일 ID 또는 사용자 이름을 사용하여 로그인 할 수 있습니다. DocType: Workflow State,question-sign,질문 서명 -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0}이 비활성화되었습니다 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",웹 조회에는 '경로'입력란이 필수 항목입니다. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} 앞에 열 삽입 DocType: Energy Point Rule,The user from this field will be rewarded points,이 필드의 사용자는 보상 포인트가됩니다. @@ -3305,6 +3418,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,사용하는 경우 DocType: Data Migration Mapping,Push,푸시 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,여기에 파일을 놓으십시오 DocType: OAuth Authorization Code,Expiration time,만료 시간 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,열린 문서 DocType: Web Page,Website Sidebar,웹 사이트 사이드 바 DocType: Web Form,Show Sidebar,보기 사이드 바 apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,이 액세스하려면 로그인 할 필요가 {0}. @@ -3320,6 +3434,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,글로벌 DocType: Desktop Icon,Page,페이지 apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},찾을 수 없습니다 {0}에서 {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,스스로 이름 및 성씨는 추측하기 쉽습니다. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},{0}에서 {1} (으)로 이름이 변경된 문서 apps/frappe/frappe/config/website.py,Knowledge Base,기술 자료 DocType: Workflow State,briefcase,서류 가방 apps/frappe/frappe/model/document.py,Value cannot be changed for {0},값은 변경할 수 없습니다 {0} @@ -3356,6 +3471,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,인쇄 형식 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,그리드보기 토글 apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,다음 레코드로 이동 +DocType: System Settings,Time Format,시간 형식 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,잘못된 지불 게이트웨이 인증 DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,이것은 일부 오류가있는 행으로 생성 된 템플리트 파일입니다. 수정 및 가져 오기에는이 파일을 사용해야합니다. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,문서의 종류와 역할에 대한 권한 설정 @@ -3399,12 +3515,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,대답 apps/frappe/frappe/config/core.py,Pages in Desk (place holders),데스크 페이지 (장소 소지자) DocType: DocField,Collapsible Depends On,접이식에 따라 달라집니다 DocType: Print Style,Print Style Name,인쇄 스타일 이름 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,대시 보드 차트를 작성하려면 그룹화 기준 필드가 필요합니다 DocType: Print Settings,Allow page break inside tables,테이블 내부 페이지 나누기 허용 DocType: Email Account,SMTP Server,SMTP 서버 DocType: Print Format,Print Format Help,인쇄 형식 도움말 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} 회의실에는 최대 1 명의 사용자가 있어야합니다. DocType: DocType,Beta,베타 DocType: Dashboard Chart,Count,카운트 +DocType: Dashboard Chart,Group By Type,유형별 그룹 apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},{0}에 대한 새로운 댓글 : {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},복원 {0}로 {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","당신이 업데이트하는 경우, ""덮어 쓰기""를 선택하십시오 다른 기존 행은 삭제되지 않습니다." @@ -3415,8 +3533,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,유저 DocType: Web Form,Web Form,웹 폼 apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},{0} 날짜는 {1} 형식이어야합니다. DocType: About Us Settings,Org History Heading,조직의 역사 제목 +DocType: Scheduled Job Type,Scheduled Job Type,예약 된 작업 유형 DocType: Print Settings,Allow Print for Cancelled,취소에 대한 인쇄 허용 DocType: Communication,Integrations can use this field to set email delivery status,통합 전자 메일 배달 상태를 설정하려면이 필드를 사용 할 수 있습니다 +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,링크 된 모든 문서를 취소 할 권한이 없습니다. DocType: Web Form,Web Page Link Text,웹 페이지의 링크 텍스트 DocType: Page,System Page,시스템 페이지 DocType: Page,System Page,시스템 페이지 @@ -3424,6 +3544,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}의</b> 사용자 정의를 내 보낸 사용자 : <br> {1} DocType: Website Settings,Include Search in Top Bar,상단 바의 검색 포함 +DocType: Scheduled Job Type,Daily Long,매일 긴 DocType: GSuite Settings,Allow GSuite access,GSuite 액세스 허용 DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming @@ -3527,6 +3648,7 @@ DocType: Notification,Send days before or after the reference date,전이나 기 DocType: User,Allow user to login only after this hour (0-24),사용자는이 시간 이후 (0-24)에 로그인 할 수 있도록 허용 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",순서대로 하나씩 지정하십시오. DocType: Integration Request,Subscription Notification,구독 알림 +DocType: Customize Form Field, Allow in Quick Entry ,빠른 입장 허용 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,또는 첨부 DocType: Auto Repeat,Start Date,시작 날짜 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,가치 @@ -3541,6 +3663,7 @@ DocType: Google Drive,Backup Folder ID,백업 폴더 ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,아니 개발자 모드에서!site_config.json에 설정하거나 '사용자 정의'에 doctype합니다. DocType: Workflow State,globe,지구 DocType: System Settings,dd.mm.yyyy,DD.MM.YYYY +DocType: Onboarding Slide Help Link,Video,비디오 DocType: Assignment Rule,Priority,우선순위 DocType: Email Queue,Unsubscribe Param,탈퇴 파람 DocType: DocType,Hide Sidebar and Menu,사이드 바 및 메뉴 숨기기 @@ -3552,6 +3675,7 @@ DocType: DocType,Allow Import (via Data Import Tool),가져 오기를 허용 ( apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,시니어 DocType: DocField,Float,Float DocType: Print Settings,Page Settings,페이지 설정 +DocType: Notification Settings,Notification Settings,알림 설정 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,절약... apps/frappe/frappe/www/update-password.html,Invalid Password,유효하지 않은 비밀번호 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1}에서 {0} 레코드를 가져 왔습니다. @@ -3567,6 +3691,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail DocType: Letter Head,Letter Head Image,레터 헤드 이미지 DocType: Address,Party GSTIN,파티 GSTIN +DocType: Scheduled Job Type,Cron Format,크론 형식 apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} 보고서 DocType: SMS Settings,Use POST,POST 사용 DocType: Communication,SMS,SMS @@ -3612,18 +3737,20 @@ DocType: Workflow,Allow approval for creator of the document,문서 작성자에 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,보고서 저장 DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API 끝점 인수 +DocType: DocType Action,Server Action,서버 액션 apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,관리자 액세스 {0}에 {1} IP 주소를 통해 {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,부모 필드는 유효한 필드 이름이어야합니다 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,구독 수정 중 오류가 발생했습니다. DocType: LDAP Settings,LDAP Group Field,LDAP 그룹 필드 +DocType: Notification Subscribed Document,Notification Subscribed Document,알림 가입 문서 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,같음 apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,잘못된 CSV 형식 -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ 트레이 응용 프로그램에 연결하는 중 오류가 발생했습니다 ... <br><br> Raw Print 기능을 사용하려면 QZ Tray 응용 프로그램이 설치되어 실행 중이어야합니다. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ 트레이를 다운로드하여 설치하려면 여기를 클릭하십시오</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Raw Printing에 대한 자세한 내용을 보려면 여기를 클릭하십시오</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,백업의 설정 번호 DocType: DocField,Do not allow user to change after set the first time,사용자가 변경할 수 없음 후 처음으로 설정 apps/frappe/frappe/utils/data.py,1 year ago,1 년 전 +DocType: DocType,Links Section,링크 섹션 apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","모든 인쇄, 다운로드 및 내보내기 이벤트 로그보기" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 개월 DocType: Contact,Contact,연락처 @@ -3650,16 +3777,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,새 이메일 DocType: Custom DocPerm,Export,내보내기 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Google 캘린더를 사용하려면 {0}을 사용하십시오. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},상태 종속성 필드 {0} 추가 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0}을 (를) 성공적으로 업데이트했습니다 apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ 트레이 실패 : DocType: Dropbox Settings,Dropbox Settings,드롭 박스 설정 DocType: About Us Settings,More content for the bottom of the page.,페이지 하단에 대한 더 많은 내용. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,이 문서가 되돌려졌습니다. apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google 드라이브 백업에 성공했습니다. +DocType: Webhook,Naming Series,시리즈 이름 지정 DocType: Workflow,DocType on which this Workflow is applicable.,문서 종류가있는이 워크 플로는 적용 할 수 있습니다. DocType: User,Enabled,사용 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,설치를 완료하지 못했습니다. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},새 {0} : {1} -DocType: Tag Category,Category Name,카테고리 이름 +DocType: Blog Category,Category Name,카테고리 이름 apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,부모는 자식 테이블 데이터를 가져와야합니다. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,가져 오기 구독자 DocType: Print Settings,PDF Settings,PDF 설정 @@ -3695,6 +3825,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,캘린더 apps/frappe/frappe/client.py,No document found for given filters,주어진 필터에 대한 문서를 찾을 수 없습니다 apps/frappe/frappe/config/website.py,A user who posts blogs.,블로그를 게시하는 사용자. +DocType: DocType Action,DocType Action,독 타입 액션 apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","또 다른 {0} 이름이 {1} 존재, 다른 이름을 선택" DocType: DocType,Custom?,사용자 지정? DocType: Website Settings,Website Theme Image,웹 사이트 테마 이미지 @@ -3704,6 +3835,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},로드 apps/frappe/frappe/config/integrations.py,Backup,지원 apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,대시 보드 차트를 만들려면 문서 유형이 필요합니다. DocType: DocField,Read Only,읽기 전용 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,면도기 주문을 만들 수 없습니다 apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,새로운 뉴스 DocType: Energy Point Log,Energy Point Log,에너지 포인트 로그 DocType: Print Settings,Send Print as PDF,로 보내기 프린트 PDF @@ -3729,16 +3861,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,이 apps/frappe/frappe/www/login.html,Or login with,또는 로그인 DocType: Error Snapshot,Locals,지역 주민 apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},를 통해 통신 {0}에 {1} {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0}에 대한 댓글에서 언급 한 {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Group By ...를 선택하십시오. apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,예를 들어 (55 + 434) / 4 = Math.sin (Math.PI로 / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}이 필요합니다 DocType: Integration Request,Integration Type,일체형 DocType: Newsletter,Send Attachements,Attachements 보내기 +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,필터를 찾을 수 없습니다 apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google 주소록 통합. DocType: Transaction Log,Transaction Log,트랜잭션 로그 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),지난 달의 실적을 기반으로 한 통계 ({0}에서 {1}까지) DocType: Contact Us Settings,City,시 +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,모든 사용자를위한 카드 숨기기 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,사용자 정의 양식에서 doctype {0}에 대해 자동 반복 허용 DocType: DocField,Perm Level,파마 수준 apps/frappe/frappe/www/confirm_workflow_action.html,View document,문서보기 @@ -3750,6 +3883,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},{1} 행의 {0} 유형에는 '전체 검색에서'가 허용되지 않습니다. apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},{1} 행의 {0} 유형에는 '전체 검색에서'가 허용되지 않습니다. DocType: Energy Point Log,Appreciation,감사 +DocType: Dashboard Chart,Number of Groups,그룹 수 apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,목록보기 DocType: Workflow,Don't Override Status,상태를 무시하지 마십시오 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,검색어 @@ -3791,7 +3925,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN- 노스 웨스트 -1 DocType: Dropbox Settings,Limit Number of DB Backups,DB 백업 수 제한 DocType: Custom DocPerm,Level,레벨 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,지난 30 일 DocType: Custom DocPerm,Report,보고서 apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,금액은 0보다 커야합니다. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ 트레이에 연결되었습니다! @@ -3808,6 +3941,7 @@ DocType: S3 Backup Settings,us-west-2,우리 - 서쪽 -2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,하위 테이블 선택 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,트리거 기본 동작 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,변경 +DocType: Social Login Key,User ID Property,사용자 ID 속성 DocType: Email Domain,domain name,도메인 이름 DocType: Contact Email,Contact Email,담당자 이메일 DocType: Kanban Board Column,Order,주문 @@ -3830,7 +3964,7 @@ DocType: Contact,Last Name,성 DocType: Event,Private,개인 apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,오늘에 대한 경고 없음 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF로 이메일 프린트 첨부 파일 보내기 (권장) -DocType: Web Page,Left,왼쪽 +DocType: Onboarding Slide Field,Left,왼쪽 DocType: Event,All Day,하루 종일 apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,뭔가처럼 보이는 것은이 사이트의 지불 게이트웨이 구성에 문제가 있습니다. 어떤 지불을하지 않은. DocType: GCalendar Settings,State,도 @@ -3862,7 +3996,6 @@ DocType: Workflow State,User,사용자 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",같은 브라우저 창에 표시 제목 "접두어 - 제목" DocType: Payment Gateway,Gateway Settings,게이트웨이 설정 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,문서 형식의 텍스트 -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,테스트 실행 apps/frappe/frappe/handler.py,Logged Out,로그 아웃 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,더... DocType: System Settings,User can login using Email id or Mobile number,사용자는 이메일 ID 또는 휴대 전화 번호를 사용하여 로그인 할 수 있습니다. @@ -3879,6 +4012,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,개요 DocType: Event,Event Participants,이벤트 참가자 DocType: Auto Repeat,Frequency,회수 +DocType: Onboarding Slide,Slide Order,슬라이드 주문 DocType: Custom Field,Insert After,후 삽입 DocType: Event,Sync with Google Calendar,Google 캘린더와 동기화 DocType: Access Log,Report Name,보고서 이름 @@ -3906,6 +4040,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},유형의 통화에 대한 최대 폭은 행에있는 100 픽셀 {0} apps/frappe/frappe/config/website.py,Content web page.,콘텐츠 웹 페이지. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,새 역할 추가 +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,웹 페이지 방문 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,새로운 과제 DocType: Google Contacts,Last Sync On,마지막 동기화 DocType: Deleted Document,Deleted Document,삭제 된 문서 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,죄송합니다. 문제가 발생했습니다 @@ -3916,7 +4052,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,경치 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,자바 스크립트에서 클라이언트 측 스크립트 확장 DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,다음 doctypes에 대한 레코드가 필터링됩니다. -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,스케줄러 비활성 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,스케줄러 비활성 DocType: Blog Settings,Blog Introduction,블로그 소개 DocType: Global Search Settings,Search Priorities,검색 우선 순위 DocType: Address,Office,사무실 @@ -3926,13 +4062,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,대시 보드 차트 링크 DocType: User,Email Settings,이메일 설정 apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,여기에 드롭 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",활성화 된 경우 Two Factor Auth를 사용하여 모든 IP 주소에서 로그인 할 수 있으며 시스템 설정의 모든 사용자에 대해 설정할 수도 있습니다 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,프린터 설정 ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,계속하려면 비밀번호를 입력하십시오. apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,계속하려면 비밀번호를 입력하십시오. apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,나를 apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0}은 유효한 상태 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,모든 문서 유형에 적용 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,에너지 포인트 업데이트 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,에너지 포인트 업데이트 +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),비활성 상태 인 경우에만 매일 작업 실행 (일) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',다른 지불 방법을 선택하세요. 페이팔은 '{0}'통화 트랜잭션을 지원하지 않습니다 DocType: Chat Message,Room Type,객실 유형 DocType: Data Import Beta,Import Log Preview,가져 오기 로그 미리보기 @@ -3941,6 +4077,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-원 DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP 사용자 생성 및 매핑 apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',당신은 '고객에 오렌지를 찾아'요구에 의해 물건을 찾을 수 있습니다 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,오늘의 이벤트 apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,죄송합니다!사용자는 자신의 기록에 대한 완전한 액세스 권한이 있어야합니다. ,Usage Info,사용 정보 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,키보드 단축키 표시 @@ -3957,6 +4094,7 @@ DocType: DocField,Unique,유일한 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0}은 (는) {1}에 감사했습니다. apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,부분적인 성공 DocType: Email Account,Service,서비스 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자 DocType: File,File Name,파일 이름 apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),에 대한 {0}를 찾을 수 없습니다 {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},해상도 : {0} @@ -3970,6 +4108,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,등록 DocType: GCalendar Settings,Enable,사용 DocType: Google Maps Settings,Home Address,집 주소 apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),당신은 한 번에 5000 개까지 기록을 업로드 할 수 있습니다. (경우에 따라 적을 수 있습니다) +DocType: Report,"output in the form of `data = [columns, result]`","`data = [columns, result]`형식으로 출력" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,적용 가능한 문서 유형 apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,사용자 할당에 대한 규칙을 설정합니다. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}에 대한 권한이 충분하지 않습니다. @@ -3987,7 +4126,6 @@ DocType: Communication,To and CC,및 CC DocType: SMS Settings,Static Parameters,정적 매개 변수 DocType: Chat Message,Room,방 apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},업데이트 {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,백그라운드 작업이 실행되고 있지 않습니다. 관리자에게 문의하십시오 DocType: Portal Settings,Custom Menu Items,사용자 정의 메뉴 항목 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,웹 사이트 슬라이드 쇼에 첨부 된 모든 이미지는 공개되어야합니다. DocType: Workflow State,chevron-right,갈매기 오른쪽 @@ -4002,11 +4140,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} 값이 선택되었습니다. DocType: DocType,Allow Auto Repeat,자동 반복 허용 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,표시 할 값이 없습니다. +DocType: DocType,URL for documentation or help,설명서 또는 도움말의 URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,이메일 템플릿 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} 레코드를 성공적으로 업데이트했습니다. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},사용자 {0}에게는 {1} 문서에 대한 역할 사용 권한을 통한 Doctype 액세스 권한이 없습니다. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,필요한 로그인과 암호가 모두 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,허락하다\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,최신 문서를 가져 오려면 새로 고침하십시오. DocType: User,Security Settings,보안 설정 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,열 추가 @@ -4016,6 +4156,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,메타 필터 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},첨부 된 {0}을 찾으십시오 : {1} DocType: Web Page,Set Meta Tags,메타 태그 설정 +DocType: Email Account,Use SSL for Outgoing,발신에 SSL 사용 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: S3 Backup Settings,Backup Limit,백업 한도 DocType: Dashboard Chart,Line,선 @@ -4048,4 +4189,3 @@ DocType: DocField,Ignore User Permissions,사용자 권한을 무시 apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,성공적으로 저장되었다 apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,당신의 가입을 확인하기 위해 관리자에게 문의하시기 바랍니다 DocType: Domain Settings,Active Domains,활성 도메인 -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,로그보기 diff --git a/frappe/translations/ku.csv b/frappe/translations/ku.csv index 0dd7e76f91..df6c98a4e9 100644 --- a/frappe/translations/ku.csv +++ b/frappe/translations/ku.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Ji kerema xwe ve Mîqdar a Field hilbijêre. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Dosya importê tê barkirin ... DocType: Assignment Rule,Last User,Bikarhênera paşîn -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","A erka nû, {0}, ji we re hatiye by {1} rêdan. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Session Defaults Saved apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Pelê nûve bikin DocType: Email Queue,Email Queue records.,records Email Dorê. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,Emails Bikarhêner DocType: User,Username,Username apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Têketin biafirînin apps/frappe/frappe/model/base_document.py,Value too big,Nirx pir mezin DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Test Script Run @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Mehane DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,çalak Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Talûke -DocType: Address,Email Address,Navnîşana emailê +apps/frappe/frappe/www/login.py,Email Address,Navnîşana emailê DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Hişyariya Unread Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export qedexe ne. Ji we re lazim {0} roleke ji bo îxracata. @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Belg DocType: DocType,Is Published Field,Ma Published Field DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings DocType: Email Group,Email Group,Email Group +apps/frappe/frappe/__init__.py,Only for {},Tenê ji bo { DocType: Event,Pulled from Google Calendar,Ji Salnameya Google-ê vekişand DocType: Note,Seen By,dît By apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,lê zêde bike Multiple -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,We hin xalên enerjiyê qezenc kir apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Naveroka bikarhênerê ne derbasdar e. DocType: Energy Point Log,Reverted,Vegerandin DocType: Success Action,First Success Message,Pêşkeftina Peyama Pêşîn @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Like ne apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},nirxa rast nenivîsandiye: {0} divê {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","milkên Change qadê (hide, readonly, destûr û hwd.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Rûmetdan +DocType: Notification Settings,Document Share,Belge parve kir DocType: Workflow State,lock,qesr apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Mîhengên ji bo Contact Us Page. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator têketî @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Heke ku were gengaz kirin, belge wekî tê dîtin, cara yekem e ku bikarhênerek wê vedibe" DocType: Auto Repeat,Repeat on Day,Dibe Dike DocType: DocField,Color,Reng +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Hemî wekî Read bixwînin DocType: Data Migration Run,Log,Rojname DocType: Workflow State,indent-right,indent-mafê DocType: Has Role,Has Role,has Role @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback nîşan bikin DocType: DocType,Default Print Format,Default Format bo çapkirinê DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Tîpa Slide apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,None: End of Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} qadê ne dikarin bên mîhenkirin wek ku di {1} yekane, çawa ku nirxên ne-yekane heyî li wir" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Types belge @@ -135,7 +138,6 @@ DocType: Language,Guest,Mêvan DocType: DocType,Title Field,title Field DocType: Error Log,Error Log,Têkeve Error apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URLê çewt e -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 rojên dawî apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Dubareyên wek "abcabcabc" bi tenê hinekî bi zehmetî dibêm qey ji bilî "abc" DocType: Notification,Channel,Qenal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Eger tu difikirî ku ev destûr de ye, ji kerema xwe şîfreya xwe Administrator biguherin." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Kirrîxwaz apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Column hilbijêre apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Ev form hatiye guherandin, piştî ku we bar kirin" DocType: Address,Himachal Pradesh,Bihar +DocType: Notification Log,Notification Log,Têketina Notification 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î" 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î" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebar vekin @@ -164,7 +167,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Sl apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Şandin DocType: Workflow Action Master,Workflow Action Name,Navê Workflow Action apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType bi yek bên -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ne pel zip DocType: Global Search DocType,Global Search DocType,DocType Lêgerîna Gloverî DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -177,7 +180,9 @@ DocType: Newsletter,Email Sent?,Email şandin? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Charta Toggle apps/frappe/frappe/desk/form/save.py,Did not cancel,Ma betal ne DocType: Social Login Key,Client Information,Agahiya Client +DocType: Energy Point Rule,Apply this rule only once per document,Vê rêziknameyê tenê carekê li belgeyê bicîh bînin DocType: Workflow State,plus,biserve +DocType: DocField,Read Only Depends On,Bixwînin Bi tenê Zêde Bibin apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,in wek Mêvan an Administrator têketî DocType: Email Account,UNSEEN,nayên dîtin apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,file Manager @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Semed 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Activityalakî tune +DocType: Server Script,Script Manager,Gerînendeyê Script +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Activityalakî tune apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps Apps apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Eventsro No Bûyer apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Hûn nikarin xalên review ji xwe re bidin alî apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,Divê DocType divê ji bo Doktorê bijartî ya Hilbijartinê be DocType: Workflow State,circle-arrow-up,circle-tîra-up @@ -247,8 +254,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Background apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Mark wek Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Guherandin {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Slide Onboarding <b>{0}</b> bi heman fermana slide jixwe heye apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Report DocType: Translation,Contributed Translation Doctype Name,Navê Doctype Wergerê Beşdar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Sêwiranê DocType: PayPal Settings,Redirect To,Beralîkirina To DocType: Data Migration Mapping,Pull,Kişandin DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {} @@ -262,6 +271,7 @@ DocType: DocShare,Internal record of document shares,record navxweyî yên wek b DocType: Energy Point Settings,Review Levels,Astên Review DocType: Workflow State,Comment,Agahkişî DocType: Data Migration Plan,Postprocess Method,Methodprojeya Postprocess +DocType: DocType Action,Action Type,Cureya Actionalakiyê apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Bixwînin DocType: Assignment Rule,Round Robin,Robin Round apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Tu belgeyên Submitted by hilweşîna wan û piştre, guhortina wan biguhere." @@ -275,6 +285,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,dît apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Nîşan hûragahiyan li Mercên +DocType: Server Script,Before Submit,Berî Nivisandinê 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,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,Archive,Archive @@ -287,10 +298,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Têketinê Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Wrong fieldname <b>{0}</b> di navnîşana add_fetch a scriptê ya kaxiz de apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Têkiliyên Google-ê hilbijêrin ku têkilî divê hevdeng bibin. DocType: Web Page,Main Section (HTML),Beşa sereke (HTML) +DocType: Scheduled Job Type,Annual,Yeksalî DocType: Workflow State,headphones,headphones apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Şîfre pêwîst e an Awaiting şîfreya xwe hilbijêre DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,eg replies@yourcomany.com. Hemû bersîv dê ji bo vê inbox were. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Fermana slide di sêrbazê de vedigire. Ger diruşmek neyê xuyang kirin, divê pêşîn li 0 were destnîşan kirin." DocType: Data Migration Run,Current Mapping,Mapping Current apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Derbasdar email û navê pêwîst apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Hemî pêvekên taybet bikin @@ -313,6 +326,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,destûr apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Reset ji vebijêrkên wê yên DocType: Workflow,Transition Rules,Rules Transition apps/frappe/frappe/core/doctype/report/report.js,Example:,Mînak: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Qedexe DocType: Workflow,Defines workflow states and rules for a document.,Dinasîne dewletên workflow û qaîdeyên ji bo Belgeya. DocType: Workflow State,Filter,Parzûn apps/frappe/frappe/database/schema.py,Fieldname {0} cannot have special characters like {1},Fieldname {0} dikarin tîpên taybet wek tune ne {1} @@ -322,6 +336,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Kar apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} logged out: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Agahî apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Can not set value Submit eger Submittable ne DocType: Transaction Log,Row Index,Index Index DocType: Social Login Key,Facebook,facebook @@ -339,7 +354,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"Can sub-q DocType: Web Form,Button Help,Button Alîkarî DocType: Kanban Board Column,purple,mor DocType: About Us Settings,Team Members,Endam Team +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Dê ji bo malperên neçalak rojek tenê yek carî bicivin. 4 rojên bênavber heke 0 were destnîşan kirin. DocType: Assignment Rule,System Manager,sîstema Manager +DocType: Scheduled Job Log,Scheduled Job,Karê nexşandî DocType: Custom DocPerm,Permissions,Permissions apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Ji bo întegrasyona navxweyî ya Slack Webhooks DocType: Dropbox Settings,Allow Dropbox Access,Destûrê bide Têketinê Dropbox @@ -392,6 +409,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Barco DocType: Email Flag Queue,Email Flag Queue,Email Dorê Flag DocType: Access Log,Columns / Fields,Kolan / Zevî apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets for Print Formats +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Fona Fonksiyonê Agregate hewce ye ku hûn nexşeyek dashboard-ê biafirînin apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ne dikarin vekirî {0}. Try tiştekî din. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,agahî te hatin şandin apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Bikarhêner {0} nikare were jêbirin @@ -408,11 +426,12 @@ DocType: Property Setter,Field Name,Navê Field DocType: Assignment Rule,Assign To Users,Ji bikarhêneran re bisekinin apps/frappe/frappe/public/js/frappe/utils/utils.js,or,an apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Navê modulê ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Berdewamkirin +DocType: Onboarding Slide,Continue,Berdewamkirin apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Entegrasyona Google nexşandî ye. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,şehade apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verifying ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Wezîfeya we ya li ser {0} {1} hatiye rakirin apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,First column welat divê vala be. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Nîşan bide hemû Versions apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,View şîrove bike @@ -421,11 +440,13 @@ DocType: Energy Point Log,Review,Axaftin DocType: User,Restrict IP,teng bike IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Rojhan apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nikare bi bişîne emails di vê demê de +DocType: Notification Log,Email Content,Naveroka e-nameyê apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Search an Corî fermana DocType: Activity Log,Timeline Name,Navê Timeline DocType: Email Account,e.g. smtp.gmail.com,eg smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lê zêde bike A Rule New DocType: Contact,Sales Master Manager,Manager firotina Master +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Hûn hewce ne ku JavaScript-ê ji bo karanîna pêveka xwe çalak bikin. DocType: User Permission,For Value,Ji bo Nirxê DocType: Event,Google Calendar ID,Nasnameya Google Calendar apps/frappe/frappe/www/complete_signup.html,One Last Step,One Step Last @@ -440,6 +461,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Navê Navîn LDAP DocType: GCalendar Account,Allow GCalendar Access,G Accessa GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} zeviyek eynî ye +DocType: DocType,Documentation Link,Girêdana belgekirinê apps/frappe/frappe/templates/includes/login/login.js,Login token required,Têketinê têketin apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rêzeya mehane: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Tiştên navnîşa pirjimar hilbijêrin @@ -461,6 +483,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL Wêne DocType: Version,Table HTML,Table HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,lê zêde bike Subscribers +DocType: Notification Log,Energy Point,Pêla Enerjiyê apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Upcoming Events bo Today DocType: Google Calendar,Push to Google Calendar,Binêre Google Calendar DocType: Notification Recipient,Email By Document Field,Email By dokumênt Field @@ -475,12 +498,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Serve DocType: Currency,Fraction Units,Yekîneyên fraction apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} ji {1} ji bo {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Mark Done DocType: Chat Message,Type,Awa DocType: Google Settings,OAuth Client ID,Nasnameya Client OAuth DocType: Auto Repeat,Subject,Mijar apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Vegere Desk DocType: Web Form,Amount Based On Field,Şêwaz li ser Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nehatiye şopandin. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -503,6 +526,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,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,Fold can not be at the end of the form,Hevşiyê de ne dikarin li dawiya formê de be DocType: Communication,Bounced,tayekî +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ji DocType: Deleted Document,Deleted Name,Navê deleted apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,System û Website Bikarhêner li DocType: Workflow Document State,Doc Status,Rewş Doc @@ -513,6 +537,7 @@ DocType: Language,Language Code,Code Ziman DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Têbigere: Ji hêla şîfreyên nayê veşartin veguhastin emails bişîne. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,lê zêde bike Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},"SMS şandin, da ku hejmarên jêr e: {0}" +DocType: Notification Settings,Assignments,Cîhan apps/frappe/frappe/utils/data.py,{0} and {1},{0} û {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Destpêk biaxivin. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Her tim "Pêşnûmeya" lê zêde bike Berev ji bo çapkirinê pêşnûma belge @@ -521,6 +546,7 @@ DocType: Data Migration Run,Current Mapping Start,Mapping Current Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email hatiye dîtin wek zibil nîşankirin DocType: Comment,Website Manager,Manager Website apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Daxuyaniya pelê Disconnected. Ji kerema xwe dîsa biceribîne. +DocType: Data Import Beta,Show Failed Logs,Nexşeyên têkçûn nîşan bidin apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Werger apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Tu bi Pêşnûmeya hilbijartin yan belgeyên Canceled apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Belgeya {0} hate sazkirin ku {1} bi destê {2} @@ -528,7 +554,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Dokumentê dorê de DocType: GSuite Templates,Destination ID,ID destination DocType: Desktop Icon,List,Rêzok DocType: Activity Log,Link Name,Navê Link +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Tu xwedî tune DocType: System Settings,mm/dd/yyyy,mm / dd / YYYY +DocType: Onboarding Slide,Onboarding Slide,Slide serêkaniyê apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Şîfre Invalid: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Şîfre Invalid: DocType: Print Settings,Send document web view link in email,Send belge link view web li email @@ -589,6 +617,7 @@ DocType: Kanban Board Column,darkgrey,color apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Serkeftî: {0} ji bo {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Dilopkirin +DocType: Dashboard Chart,Aggregate Function Based On,Fonksiyona yekane ya li ser bingehê apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Ji kerema xwe vê vedîtina re bide guhertin apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Çapemeniyê binivîse ji bo tomarkirin apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,nifşê PDF ji ber girêdan xuyanga bi ser neket @@ -602,7 +631,9 @@ DocType: Notification,Days Before,roj berî apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Divê Bûyerên Rojane di Heman Rojê de bi dawî bibin. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Weşandin... DocType: Workflow State,volume-down,volume-down +DocType: Onboarding Slide,Help Links,Alîkariyên Rêzan apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ji vê Navnîşana IP-yê destûr nayê dayîn +DocType: Notification Settings,Enable Email Notifications,Nîşeyên E-nameyê çalak bikin apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Send agahdar bike ji bo DocType: DocField,Collapsible,Navbar @@ -631,6 +662,7 @@ DocType: Google Drive,Last Backup On,Piştgiriya paşîn DocType: Customize Form Field,Customize Form Field,Kesanekirina Form Field DocType: Energy Point Rule,For Document Event,Ji bo Bûyera Belgeyê DocType: Website Settings,Chat Room Name,Navenda Chat Room +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Bêavber DocType: OAuth Client,Grant Type,Type Grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Check ku Belge ji aliyê User xwendin in DocType: Deleted Document,Hub Sync ID,Nasnameya Hub Sync @@ -638,6 +670,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,bi k DocType: Auto Repeat,Quarterly,Bultena apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Her dem apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Rewşa Belgeyê ji bo {0} DocType: Email Account,Enable Auto Reply,Çalak binivîse Auto apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,nedîtiye @@ -650,6 +683,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Peyam DocType: Email Account,Notify if unreplied,"Agahdar bike, eger unreplied" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Koda Qanûna Scan binivîse û navnîşa encamên encam nîşan bide. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Gradyîfan çalak bikin +DocType: Scheduled Job Type,Hourly Long,Demjimêr dirêj DocType: System Settings,Minimum Password Score,Siparîşa hindiktirîn Password Score DocType: System Settings,Minimum Password Score,Siparîşa hindiktirîn Password Score DocType: DocType,Fields,Fields @@ -662,6 +696,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in r DocType: Print Format,Default Print Language,Default Language çapkirinê apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Kalên bavêjin apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nikare were jêbirin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Ne têketinên têkçûn apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,No comments yet apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Ji kerema xwe re şîfreyek SMS-ê ji ber veguherîna rêbazek rastîn, ji hêla SMS-ê ve saz bike" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Herdu DocType û Name pêwîst @@ -685,6 +720,7 @@ DocType: Website Settings,Footer Items,Nawy footer apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Qerta xûrekê DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Rojane +DocType: Onboarding Slide,Max Count,Max Count apps/frappe/frappe/config/users_and_permissions.py,User Roles,ristên Bikarhêner DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Taybetmendiyên Setter şûna a DocType standard yan xanîyê Field apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ne dikarin baştir bike: şaş / Link di kapê. @@ -703,6 +739,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Mazûban DocType: Data Import Beta,Import File,Pelê Import +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Error şablonê apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Stûna <b>{0}</b> niha hene. DocType: ToDo,High,Bilind apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Çalakiya nû @@ -718,6 +755,7 @@ DocType: Web Form Field,Show in filter,Li filterê nîşan bide DocType: Address,Daman and Diu,Çek û çol apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Rêvename DocType: Address,Personal,Şexsî +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Mîhengên çapkirinê yên Raw ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Ji bo agahdariya binêrin https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,rename Gir DocType: Email Queue,Show as cc,Show wek cc @@ -727,6 +765,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Video Take DocType: Contact Us Settings,Introductory information for the Contact Us Page,Agahiyên destpêkê de ji bo Contact Us Page DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Belgeyan betal kirin DocType: User,Send Notifications for Email threads,Ji bo mijarên e-nameyê agahdariyan bişînin apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne li Mode Developer @@ -734,7 +773,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Barkirinê DocType: DocField,In Global Search,Di Global Search DocType: System Settings,Brute Force Security,Ewlekariya Hêza Brute DocType: Workflow State,indent-left,indent-çepê -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (sal) berê apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Ev metirsiyek e li vê pelê jê bibî: {0}. Ji kerema xwe ve Manager Pergala xwe re bikeve têkiliyê. DocType: Currency,Currency Name,Navê Exchange apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No Emails @@ -749,11 +787,13 @@ DocType: Energy Point Rule,User Field,Qada user DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Vebijêrin Paqij apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} niha unsubscribed ji bo {1} {2} +DocType: Scheduled Job Type,Stopped,rawestandin apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Ma jê ne apps/frappe/frappe/desk/like.py,Liked,ecibandî apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Send Now apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE ne dikarin format print standard heye, bi kar tînin Form Customize" apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Hemû Mêvan DocType: Report,Query,Pirs DocType: Customize Form,Sort Order,Sort Order apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},ji bo cureyê {0} li row 'Li List View' destûr ne {1} @@ -775,10 +815,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Method Mîhengkirina Du Factor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Yekem navê xwe danîne û tomar bike. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 records +DocType: DocType Link,Link Fieldname,Link Fieldname apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Shared bi {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Unsubscribe DocType: View Log,Reference Name,Navê Reference apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Bikarhêner veguherînin +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Yekem apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update Translations DocType: Error Snapshot,Exception,Îstîsna DocType: Email Account,Use IMAP,bikaranîna oerienkommende @@ -793,6 +835,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Rules pênasekirina derbasbûna ji dewletê di workflow. DocType: File,Folder,Pêçek DocType: Website Route Meta,Website Route Meta,Rêwîtiya Malperê Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Qada Qada Slide DocType: DocField,Index,Naverok DocType: Email Group,Newsletter Manager,Manager Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Vebijarka 1 @@ -819,7 +862,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Guhertin DocType: User,Last IP,Last IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Ji kerema xwe re mijarek bi e-nameya xwe re zêde bike -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Belgeya nû ya nû {0} ji we re {1} hate parvekirin. DocType: Data Migration Connector,Data Migration Connector,Têkiliya Koçberiyê apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vegerandin {1} DocType: Email Account,Track Email Status,Track Status Email @@ -878,6 +920,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Searching DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximum Sînora pêvek ji bo vê qeyda gihîştin. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Navê pelê an dirêjkirinê bigerin +DocType: Onboarding Slide,Slide Title,Sernavê Slide DocType: Notification,View Properties (via Customize Form),View Properties (via Form Customize) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Li ser pelê bikirtînin ku hilbijêrin. DocType: Note Seen By,Note Seen By,Têbînî Seen By @@ -904,13 +947,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL DocType: System Settings,Allow Consecutive Login Attempts ,Destnîşanên Têkilî Bi Têkilî Bikin apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Çewtiyek di dema pêvajoyê de derbas kir. Ji kerema xwe re peywendî bikin. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Ger Slide Type were Afirandin an Mîheng hebe divê di pelê create ref_doctype} .py de rêbaza 'create_onboarding_docs' hebe ku piştî xilaskirinê qediya. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} days ago DocType: Email Account,Awaiting Password,li benda Password DocType: Address,Address Line 1,Xeta Navnîşanê 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ne Niştecîhên Ne DocType: Contact,Company Name,Navê Company DocType: Custom DocPerm,Role,Role -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Settings ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,li geroka we apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Recorder @@ -969,6 +1012,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Heke ku te ji e-peyda vekirî e-nameyê vekirî ye. <br> Têbînî: Heke ku hûn ji bo wergirtina gelek kesan bişînin, heger 1 qebûlker e-nameyê bixwîne, ew dê "Opened"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Nirxên Missing pêwîst apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Destûr bide Têkiliyên Google-ê +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Tixûb kirin DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Mark wek Unread DocType: Activity Log,Operation,Emelî @@ -1022,6 +1066,7 @@ DocType: Web Form,Allow Print,Destûrê bide bo çapkirinê DocType: Communication,Clicked,bi opsîyona apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Ragihîn apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},No destûr ji bo '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ji kerema xwe ji Sîstema> E-name> Hesabê E-nameya Ragihandinê şîfreya E-nameyê ya xwerû saz bike apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Scheduled bişînin DocType: DocType,Track Seen,Track Ruiz DocType: Dropbox Settings,File Backup,Backup @@ -1030,12 +1075,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,No {0} dîtin apps/frappe/frappe/config/customization.py,Add custom forms.,Lê zêde bike formên adeta. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} li {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,şandin ku ev belge -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Destûrên bikarhêner apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sîstema gelek ristên pre-danasîn pêşkêş dike. Tu fonksiyoneke nû ji bo danîna destûrên bihéné lê zêde bike. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Navê Trigger -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domain ji +DocType: Onboarding Slide,Domains,Domain ji DocType: Blog Category,Blog Category,Blog Kategorî apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,ne dikarin Nexşa ji ber ku rewşa li jêr: Bijara me: DocType: Role Permission for Page and Report,Roles HTML,rolên HTML @@ -1076,7 +1120,6 @@ DocType: Assignment Rule Day,Saturday,Şemî DocType: User,Represents a User in the system.,Temsîl dike User di sîstema. DocType: List View Setting,Disable Auto Refresh,Ji nûvekirina Auto-ya Nekêş bike DocType: Comment,Label,Awanasî -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Erka {0}, ku hûn ji bo {1} hatiye, girtî rêdan." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Ji kerema xwe vê paceyê bigire DocType: Print Format,Print Format Type,Print Format DocType: Newsletter,A Lead with this Email Address should exist,A Lead bi vê Email Address divê hene @@ -1092,6 +1135,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Settings SMTP bo emails apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,an hilbijêrin DocType: Data Export,Filter List,Lîsteya Filîteyê DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto binivîse Message DocType: Data Migration Mapping,Condition,Rewş apps/frappe/frappe/utils/data.py,{0} hours ago,{0} hours ago @@ -1110,12 +1154,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Contributor DocType: Communication,Sent Read Receipt,Şandin Meqbûz Read DocType: Email Queue,Unsubscribe Method,Method Unsubscribe +DocType: Onboarding Slide,Add More Button,Button zêde bike DocType: GSuite Templates,Related DocType,DOCTYPE Related apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Biguherînî ji bo lê zêde bike Naveroka apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Hilbijêre Languages apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Agahiya Karta apps/frappe/frappe/__init__.py,No permission for {0},No destûr ji bo {0} DocType: DocType,Advanced,Pêşveçû +DocType: Onboarding Slide,Slide Image Source,Ideavkaniya Wêne Slide apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Xuya Key API an API Secret çewt e !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},World: Kurdî: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Banû @@ -1132,6 +1178,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mamoste DocType: DocType,User Cannot Create,User ne Can Create apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Serkeftin bi ser ketin apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,access Dropbox pejirandin heye! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Ma hûn dixwazin bi {0} bi {1} re hevrû bibin? DocType: Customize Form,Enter Form Type,Enter Type Form DocType: Google Drive,Authorize Google Drive Access,Destûrdayîna Google Drive-ê destûr bide apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Navê navê Parbanê ya Paramenterê winda bû @@ -1141,7 +1188,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Rêvekirin li DocType, DocType. Xwe şîyar be!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formats Customized bo Printing, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Sum of {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Demê To New Version DocType: Custom Field,Depends On,Dimîne li ser DocType: Kanban Board Column,Green,Kesk DocType: Custom DocPerm,Additional Permissions,Permissions Additional @@ -1167,6 +1213,7 @@ DocType: Address,Is Your Company Address,E Company te Address DocType: Energy Point Log,Social,Civatî apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Editing Row DocType: Workflow Action Master,Workflow Action Master,Workflow Master Action +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Hemî jêbirin DocType: Custom Field,Field Type,Type Field apps/frappe/frappe/utils/data.py,only.,bes. DocType: Route History,Route History,Dîroka Rûwayê @@ -1202,11 +1249,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Şifre bîrkir? DocType: System Settings,yyyy-mm-dd,YYYY-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error Server +DocType: Server Script,After Delete,Piştî Paqijkirinê apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Hemî raporên paşîn bibînin. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Id Têketin pêwîst e DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link e ku home page website. Links Standard (index, login, products, blog, li ser, contact)" +DocType: Server Script,After Submit,Piştî şandin apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Têketin serneket dema sitendina emailên ji Account Email {0}. Message from server: {1} DocType: User,Banner Image,Banner Wêne DocType: Custom Field,Custom Field,Custom Field @@ -1246,15 +1295,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ger user ti rola kontrol heye, piştre bikarhêner "System User" dibe. "Pergala User" access to the desktop heye" DocType: System Settings,Date and Number Format,Dîrok û Number Format apps/frappe/frappe/model/document.py,one of,yek ji -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Sêwiranê apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Dinêre yek gavê apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Show Tags DocType: DocField,HTML Editor,Edîtora HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner +DocType: DocType,Actions,Actions DocType: Workflow State,align-justify,align-mafdar DocType: User,Middle Name (Optional),Navê Navîn (Li gorî daxwazê) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,destûrdayî ne @@ -1269,6 +1316,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,No Results DocType: System Settings,Security,Ewlekarî apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Scheduled dxwazîn bo {0} wergirên apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Birrîn +DocType: Server Script,After Save,Piştî Save apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},"guherandin, ji {0} ji bo {1}" apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} of {1} ({2} rêzikên bi zarokan re) DocType: Currency,**Currency** Master,** Exchange ** Master @@ -1294,16 +1342,19 @@ DocType: Prepared Report,Filter Values,Nirxên nirxandin DocType: Communication,User Tags,Bikarhêner Tags DocType: Data Migration Run,Fail,Biserîneçûn DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Rêgirtina Dawîn DocType: Data Migration Run,Pull Failed,Pull failed apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Nîşaneyên / Nîşaneyan veşêrin DocType: Communication,Feedback Request,Daxwaza Deng apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Daneyên Importê ji pelên CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,qadên li jêr bi missing: +DocType: Notification Log,From User,Ji Bikarhêner apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Canceling {0} DocType: Web Page,Main Section,Beþ main DocType: Page,Icon,Icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Include sembol, hejmar û tîpên ku di şîfreya" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Include sembol, hejmar û tîpên ku di şîfreya" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Ji bo bîranînan, peywiran, xalên enerjiyê û hêj bêtir notifications bicîh bikin." DocType: DocField,Allow in Quick Entry,Destûra Zûtirîn Bilez apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / YYYY @@ -1335,7 +1386,6 @@ DocType: Website Theme,Theme URL,URL URL DocType: Customize Form,Sort Field,Sort Field DocType: Razorpay Settings,Razorpay Settings,Settings Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,biguherîne Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,lê zêde bike More DocType: System Settings,Session Expiry Mobile,Session Expiry Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Bikarhêner û Nasnameya çewt apps/frappe/frappe/templates/includes/search_box.html,Search results for,Search results for @@ -1351,8 +1401,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Rêza Panêla Enerjiyê DocType: Communication,Delayed,bi derengî apps/frappe/frappe/config/settings.py,List of backups available for download,List of unterstützt bo daxistinê amade ye +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Import Daneyên Nû biceribînin apps/frappe/frappe/www/login.html,Sign up,Tomar kirin apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Row {0}: Destûr nabe ku ji bo zeviyên standardî nerastkirin +DocType: Webhook,Enable Security,Ewlekariyê çalak bikin apps/frappe/frappe/config/customization.py,Dashboards,Dashboards DocType: Test Runner,Output,Karûabr DocType: Milestone,Track Field,Track Field @@ -1360,6 +1412,7 @@ DocType: Notification,Set Property After Alert,Set babet Piştî Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Lê zêde bike zevî ji bo formên. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Dişibe tiştek xelet bi veavakirina Paypal vê malperê ye. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Review zêde bikin +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} peywirek nû {1} {2} ji we re peyda kir apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Mezinahiya Font (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Tenê DocTypes standard têne destûr kirin ku ji Forma Hilbijarkî were veqetandin. DocType: Email Account,Sendgrid,Sendgrid @@ -1371,6 +1424,7 @@ DocType: Portal Menu Item,Portal Menu Item,Babetê Menu Portal apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Filters Set DocType: Contact Us Settings,Email ID,ID Email DocType: Energy Point Rule,Multiplier Field,Zeviya pirjimar +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nekarî ku fermana Razorpay çêbike. Ji kerema xwe rêvebirê têkiliyê DocType: Dashboard Chart,Time Interval,Interval dem DocType: Activity Log,Keep track of all update feeds,Li ser hemû feedsên nûjen bikeve binêrin DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"A list of çavkaniyên ku App Client dê bikaribin piştî ku bikarhênerek bikim, ew destûrê heye. <br> wek nimûne projeya" @@ -1390,6 +1444,7 @@ DocType: DefaultValue,Key,Qûfle DocType: Address,Contacts,Têkilî DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapora ji hemû pişkan belge +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Divê şablonê importê ji celebê be .csv, .xlsx an .xls" apps/frappe/frappe/www/update-password.html,New Password,Şîfre New apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} wenda apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Bibore! Tu dikarî comments-auto generated jêbirin ne @@ -1406,6 +1461,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Rev DocType: Blog Post,Content (HTML),Naverok (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Ji bo sazkirinê DocType: Personal Data Download Request,User Name,Navê bikarhêner DocType: Workflow State,minus-sign,minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Peyda nebû @@ -1413,6 +1469,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,No {0} destûr apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export Permissions Custom apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ti tişt nehat dîtin. DocType: Data Export,Fields Multicheck,Zeviyên Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Temam bikin DocType: Activity Log,Login,Login DocType: Web Form,Payments,Payments apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} @@ -1440,6 +1497,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Templa apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Destnîşankirina çewtiyê apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Name ji {0} nikare were {1} DocType: User Permission,Applicable For,"wergirtinê, çimkî" +DocType: Dashboard Chart,From Date,ji Date apps/frappe/frappe/core/doctype/version/version_view.html,Success,Serketinî apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Session di kapê apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Session di kapê @@ -1452,7 +1510,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ser apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Di rewşa destûr ne DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,sûret -apps/frappe/frappe/www/complete_signup.html,Complete,Tevî +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Tevî DocType: DocType,Image Field,Wêne Field DocType: Print Format,Custom HTML Help,Custom HTML Alîkarî DocType: LDAP Settings,Default Role on Creation,Rola Default li ser Afirandinê @@ -1460,6 +1518,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Dewletê Next DocType: User,Block Modules,Bloka Modûlan DocType: Print Format,Custom CSS,CSS Custom +DocType: Energy Point Rule,Apply Only Once,Tenê carekê bicîh bikin apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Add a comment DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignored: {0} ji bo {1} @@ -1471,6 +1530,7 @@ DocType: Email Account,Default Incoming,Default Incoming DocType: Workflow State,repeat,dûbare DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Nirx divê yek ji {0} be. +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Hemû Dokumentan Qut bikin 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Here cem {0} Navnîş apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Tevkarî li ser Search @@ -1479,6 +1539,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Xweqeydkiri apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ji bo vê belgeyê dubareya Auto hatî veqetandin. DocType: DocType,Hide Copy,Naverokan veşêre Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Paqijkirina hemû rolên +DocType: Server Script,Before Save,Berî Xilasbûnê apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} divê yekta be apps/frappe/frappe/model/base_document.py,Row,Dor apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Şablon" @@ -1488,7 +1549,6 @@ DocType: Workflow State,Check,Berçavkirinî DocType: Chat Profile,Offline,Ne girêdayî DocType: User,API Key,Key API DocType: Email Account,Send unsubscribe message in email,Mesajên derketin li email -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,biguherîne Title apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname ku dê bibe DocType ji bo vê qadê link. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Belgeyên rêdan ji bo we û ji aliyê we. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Hûn dikarin vê jî kopî-paste bikin @@ -1518,8 +1578,10 @@ DocType: Data Migration Run,Total Pages,Total Pages DocType: DocField,Attach Image,attach Wêne DocType: Workflow State,list-alt,lîsteya-alt apps/frappe/frappe/www/update-password.html,Password Updated,Şîfre Demê +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Destûrên bikarhêner apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Dema ku têketina we re şahidiyê bikin apps/frappe/frappe/utils/password.py,Password not found,Şîfre dîtin ne +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Rûpelê DocType: Email Queue,Expose Recipients,puxteyî Recipients apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To bo mailên höndör wêneke e @@ -1545,6 +1607,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sîstem DocType: Web Form,Max Attachment Size (in MB),Max Attachment Size (di MB) apps/frappe/frappe/www/login.html,Have an account? Login,Hesabê te heye? Login +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Mîhengên çapkirinê ... DocType: Workflow State,arrow-down,tîra-down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Row {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Bikarhêner destûr ne bibî {0}: {1} @@ -1565,6 +1628,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,nasnavê DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Têketinê Secret DocType: Tag Link,Document Title,Sernavê Belgeyê apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Bicî) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (sal) berê DocType: Social Login Key,Social Login Provider,Têkiliya Civakî ya Civakî apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lê zêde bike Comment din apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Daneyên pelan di pelê de nehat dîtin. Ji kerema xwe re pelê nû ya nû ve nûve bike. @@ -1579,11 +1643,12 @@ DocType: Workflow State,hand-down,hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Fieldsu zevî nehat dîtin ku dikare wekî Kolonek Kanban were bikar anîn. Vebijêrin Vebijêrin Ji Bo Zencîreyek Qebûlkirina "Type" Hilbijêrin. DocType: Address,GST State,gst Dewletê apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Can not set Cancel bê Submit +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Bikarhêner ({0}) DocType: Website Theme,Theme,Mijad DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Beralîkirina URI Bound To Code Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Alîkarî veke DocType: DocType,Is Submittable,Submittable e -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Mesajek nû +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Mesajek nû apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Têkiliyên Google yên nû nehat hevdeng kirin. DocType: File,Uploaded To Google Drive,Li Google Drive hilkişand apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Nirx ji bo zeviyek check dikare bibe yan 0 an 1 @@ -1594,7 +1659,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,Bidin Series wêneke DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Sor DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Nivîs +DocType: Report,Script,Nivîs apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument nikare rizgar kirin. DocType: Energy Point Rule,Maximum Points,Pîvanên Zêde apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Settings min @@ -1623,8 +1688,10 @@ DocType: Email Queue,Email Queue,Raweste Email DocType: Address,Haryana,Haryana apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolên ji bo bikarhênerên ji page Bikarhêner xwe danîn. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,lê zêde bike Comment +DocType: Dashboard Chart,Select Date Range,Rêjeya Dîrokê hilbijêrin DocType: DocField,Mandatory,Bicî apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module ji bo îxracata +DocType: Scheduled Job Type,Monthly Long,Mehane dirêj apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: No set destûrên bingehîn apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Meaning of Submit, Cancel, Qanûnên" @@ -1634,7 +1701,6 @@ DocType: Milestone Tracker,Track milestones for any document,Pêlên ji bo her b DocType: Social Login Key,Identity Details,Agahiya Navnîşan apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Veguheztina Dewleta Qedexeyê ji {0} ber {1} ne destûr nayê dayîn. apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Dashboard nîşan bide -apps/frappe/frappe/desk/form/assign_to.py,New Message,Peyama Nû DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-rapora DocType: Data Import Beta,Template Warnings,Hişyariyên şablonê @@ -1651,12 +1717,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No Permissions ji bo ev pîvan danîn. DocType: Auto Email Report,Auto Email Report,Auto Report Email +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Belgeya Nû hate parve kirin apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Vemirandina Rayi? DocType: Address Template,This format is used if country specific format is not found,"Ev format tê bikaranîn, eger format taybet welat de tê dîtin bi" DocType: System Settings,Allow Login using Mobile Number,Destûrê bide Login bikaranîna Hejmara Mobile apps/frappe/frappe/public/js/frappe/request.js,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î DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Heke çalak kirin, bikarhênerên ku ji navnîşana IP-IP-Nîsanê vekirî, dê ji bo Faktorê Du Faktorê neyê pejirandin" +DocType: Server Script,After Cancel,Piştî betalkirinê DocType: Auto Repeat,Get Contacts,Têkilî bibin apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posts doz di bin {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kolona Untitled hilandin @@ -1667,6 +1735,7 @@ 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 +DocType: Notification Log,Mention,Qalkirin DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision divê di navbera 1 û 6 be @@ -1674,7 +1743,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,û apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ev rapor li ser {0} DocType: Error Snapshot,Frames,frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Danî +DocType: Notification Log,Assignment,Danî DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Link Wêne DocType: Auto Email Report,Report Filters,Report Parzûn @@ -1691,6 +1760,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nikare Rojane bûyer apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Navnîşa kodê şîfreya xwe ji navnîşana e-nameyê qeydkirî şandin. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Tişt +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Armanca we apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter divê 4 nirxên (DOCTYPE, fieldname, operator, nirxê) heye: {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Rêzika Destûrnameyê bicîh bînin apps/frappe/frappe/utils/bot.py,show,rêdan @@ -1701,7 +1771,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapping Plan Mapping apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Destpêk Frappé ... DocType: Web Form Field,Max Length,Max Length -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Ji bo {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Submit an Dozî Kurd @@ -1734,6 +1803,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page kêm an jî koçî apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Nirxandin DocType: DocType,Route,Rêk apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay settings derîyek Payment +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} qezenc kir {1} point for {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Ji pelgeyên wêneyan re girêdan DocType: Chat Room,Name,Nav DocType: Contact Us Settings,Skype,Skype @@ -1744,7 +1814,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Link vekirî apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ziman te DocType: Dashboard Chart,Average,Navoser apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,lê zêde bike Row -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Çapkar apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Query divê SELECT be DocType: Auto Repeat,Completed,Qediya @@ -1802,6 +1871,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Mîhengên Nîşana Enerjiyê DocType: Async Task,Succeeded,serkeftî apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},zeviyên wêneke pêwîst di {0} +DocType: Onboarding Slide Field,Align,Berpêvekirin apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Permissions Reset ji bo {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Bikarhêner û Permissions DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1818,7 +1888,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Navê Forma Nû ya çapkirinê apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Ji bo pejirandina daxwazê li ser lînka jêrîn bitikînin DocType: Workflow State,align-left,align-hiştin +DocType: Onboarding Slide,Action Settings,Mîhengên çalakiyê DocType: User,Defaults,Têrbûn +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ji bo berhevdanê,>> 5, <10 an = 324 bikar bînin. Ji bo rêzan, 5:10 bikar bînin (ji bo nirxên di navbera 5 & 10)." DocType: Energy Point Log,Revert Of,Vegere Of apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merge bi heyî DocType: User,Birth Date,Date jidayikbûnê @@ -1873,6 +1945,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Li DocType: Notification,Value Change,Change Nirx DocType: Google Contacts,Authorize Google Contacts Access,Destûrdayîna Têkiliyên Google Destûr bide apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Tenê zeviyên Numerîk ji raportê têne nîşandan +apps/frappe/frappe/utils/data.py,1 week ago,1 hefte berê DocType: Data Import Beta,Import Type,Type Type DocType: Access Log,HTML Page,Rûpela HTML DocType: Address,Subsidiary,Şîrketa girêdayî @@ -1881,7 +1954,6 @@ DocType: System Settings,In Hours,li Hours apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,bi letterhead apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invalid Server Mail Afganî an Port DocType: Custom DocPerm,Write,Nivîsîn -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tenê Administrator destûr ji bo afirandina Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Rastvekirina DocType: Data Import Beta,Preview,Pêşnerîn apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "nirxê" bivênevê ye. Ji kerema xwe nirxê xwe diyar bike ji bo ve were @@ -1891,6 +1963,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Gazî yên DocType: Data Migration Run,Started,Destpêk apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Bikarhêner {0} ji vê belgeyê re nabe DocType: Data Migration Run,End Time,Time End +DocType: Dashboard Chart,Group By Based On,Koma Li Ser Damezrandinê apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Attachments Hilbijêre apps/frappe/frappe/model/naming.py, for {0},ji bo {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Tu bi destûr ne ji bo print ev belge @@ -1932,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Lidûsekirin DocType: Workflow Document State,Update Field,update Field DocType: Chat Profile,Enable Chat,Chat Chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Name Hêja (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Dev ji vê axaftinê apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Vebijêrkên ji bo qada link set ne {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Queue / Karker @@ -2000,12 +2074,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Têketinê di vê demê de destûr ne DocType: Data Migration Run,Current Mapping Action,Çalakiya Mapping Current DocType: Dashboard Chart Source,Source Name,Navê Source -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ne hesabek e-nameyê bi bikarhênerê re têkildar e. Ji kerema xwe hesabek di bin Bikarhêner> E-nameya Emailê de zêde bikin. DocType: Email Account,Email Sync Option,Email Syncê Vebijarka apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Row No DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Pinned DocType: Contact Us Settings,Introduction,Pêşkêş +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Alîkarî hewce dike? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin gerdûnî apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Li pey DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2014,7 +2088,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jixwe di DocType: User Email,Enable Outgoing,çalak Afganî DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Custom Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Hesabê e-nameyê nehatiye saz kirin. Ji kerema xwe ji Sîstema> E-name> Hesaba E-nameyê hesabek e-nameyek nû biafirînin DocType: Comment,Submitted,şandin DocType: Contact,Pulled from Google Contacts,Ji Têkiliyên Google vekişand apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Di daxwaza rast de @@ -2035,9 +2108,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home / Test apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Assign bo min DocType: DocField,Dynamic Link,Link dînamîk apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Bişkojka Bişkojka Bişkojk bikin da ku di menu û Sidebar de kurteneyên din lê bikire +DocType: Dashboard Chart,To Date,to Date DocType: List View Setting,List View Setting,Mîhengên View View apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show têk jobs -DocType: Event,Details,Details +DocType: Scheduled Job Log,Details,Details DocType: Property Setter,DocType or Field,DocType an Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,We ev belge ji nedît apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Rengê seretayî @@ -2046,7 +2120,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Xuya Key Publishable an Secret Key çewt e !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Xuya Key Publishable an Secret Key çewt e !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Alîkarî Quick ji bo Bikin Permissions -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype ji bo Assign Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Show terapî apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Email hatiye birin to trash DocType: Report,Report Builder,Report Builder @@ -2062,6 +2135,7 @@ DocType: Workflow State,Upload,Upload DocType: User Permission,Advanced Control,Control Control DocType: System Settings,Date Format,Date Format apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Published ne +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nexşeya navnîşê ya xwerû nehat dîtin. Ji kerema xwe ji Setup> çapkirin û Berfirehkirina> Temablonê Navnîşan a nû çêbikin. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Çalakiyên ji bo workflow (wek nimûne erê, Cancel)." DocType: Data Import,Skip rows with errors,Rengên bi çewtiyê vekin DocType: Workflow State,flag,al @@ -2071,14 +2145,13 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Doku apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Herin zeviyê DocType: Contact Us Settings,Forward To Email Address,Pêş To Email Address DocType: Contact Phone,Is Primary Phone,Telefonê seretayî ye -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,E-nameyek ji {0} re bişînin da ku li vir werin girêdan. DocType: Auto Email Report,Weekdays,Rojan apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,warê Title divê fieldname derbasdar be DocType: Post Comment,Post Comment,Post Comment apps/frappe/frappe/config/core.py,Documents,belgeyên apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Logalakî Ji hêla DocType: Social Login Key,Custom Base URL,URL -DocType: Email Flag Queue,Is Completed,Ma Qediya +DocType: Onboarding Slide,Is Completed,Ma Qediya apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Dabeşin apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,biguherîne Profile DocType: Kanban Board Column,Archived,arşîvkirin @@ -2089,19 +2162,19 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Îro -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Îro +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Îro +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Îro apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Piştî Importê bişînin DocType: Error Log,Log of Scheduler Errors,Têkeve ji Errors Tevlîhevker DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Pirtûka Piştgiriya Bişkojka Onboarding DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Radestkirina apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parent navê wî belge ye ku agahiyên wê zêde bibin. DocType: DocType,UPPER CASE,Upper Case apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML Custom apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Navê peldankê binivîse -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Temablonê navnîşa xwerû nehat dîtin. Ji kerema xwe ji Modela Sêwiranê> çapkirin û Berfirehkirina> Navnîşek nû çêbikin. apps/frappe/frappe/auth.py,Unknown User,Bikarhêner apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Hilbijêre Role DocType: Comment,Deleted,deleted @@ -2117,7 +2190,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Chart damezrînin apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Import nakin -DocType: Web Page,Center,Navîne +DocType: Onboarding Slide Field,Center,Navîne DocType: Notification,Value To Be Set,Nirx ji bo danîna apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Asta yekem @@ -2125,7 +2198,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Navê Navnîşê apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Form Refresh DocType: DocField,Select,Neqandin -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Log Full +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Log Full DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Xuyangkirina Python hêsan, Mînak: statû == 'Vebijêrk' û celeb == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,File girêdayî ne apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Têkilî winda kir. Hin taybetmendiyên ku ne kar dikin. @@ -2156,6 +2229,7 @@ DocType: Web Page,HTML for header section. Optional,HTML ji bo beşa header. Bix apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ev taybetî ji brand nû û hê jî cerebe ye apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maximum {0} rêzikan destûr DocType: Dashboard Chart Link,Chart,Qebale +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ev a şîfreya pir hevbeş e. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Dîtinî @@ -2171,6 +2245,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Search for anything,Sea DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Rewşê Determ DocType: DocField,Print Hide,Print veşêre +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Bikarhêner apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Enter Nirx DocType: Workflow State,tint,tint @@ -2236,6 +2311,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code Ji bo apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add to To Do DocType: Footer Item,Company,Şîrket apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Navînî {0} +DocType: Scheduled Job Log,Scheduled,scheduled DocType: User,Logout from all devices while changing Password,Logout ji hemî cîhazên di dema guhertina şîfreyê de apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Şîfre apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,bûn çewtî hene @@ -2260,7 +2336,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Destûra bikarhêner heye apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},View {0} -DocType: User,Hourly,Seetî +DocType: Scheduled Job Type,Hourly,Seetî apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth Client App DocType: DocField,Fetch If Empty,Fetch If Empty DocType: Data Migration Connector,Authentication Credentials,Credential @@ -2270,10 +2346,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,Periodsîbûna Alloc DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway apps/frappe/frappe/model/base_document.py,"{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,{0} or {1},{0} an {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Hûn hemî hatine saz kirin! DocType: Workflow State,trash,zibil DocType: System Settings,Older backups will be automatically deleted,unterstützt kevintir wê were jêbirin apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nasnameya Key Key an Key Key Access. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Te hin xalên enerjiyê winda kir DocType: Post,Is Globally Pinned,Globally Pinned apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Actalakiya Dawîn DocType: Workflow Transition,Conditions,Şertên @@ -2282,6 +2358,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confirmed DocType: Event,Ends on,Ends li ser DocType: Payment Gateway,Gateway,Derî DocType: LDAP Settings,Path to Server Certificate,Riya Serîlêderê ya Sertîfîkayê +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript li ser geroka we hatî asteng kirin apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Bi destûr bes ji bo dîtina girêdan apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Bi destûr bes ji bo dîtina girêdan apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Address Title bivênevê ye. @@ -2300,7 +2377,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Heke ku ev tête kontrolkirin, daneyên ku bi daneyên derbasdar ên derbasdar dê bêne veguhastin û rêzikên çewt dê dê ji bo ku hûn veguhestin pelê nû nabe." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentê tenê ji aliyê bikarhênerên rola editable e -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Erka {0}, ku hûn ji bo {1}, ji aliyê {2} girtin rêdan." DocType: Print Format,Show Line Breaks after Sections,Show Line Breaks piştî Sections DocType: Communication,Read by Recipient On,Ji hêla Recipient Onê bixwîne DocType: Blogger,Short Name,Navê Short @@ -2333,6 +2409,7 @@ DocType: Translation,PR sent,PR şand DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tenê Send Records Nawy li Last X Hours DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tenê Send Records Nawy li Last X Hours DocType: Communication,Feedback,Feedback +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Nûvekir Ji Bo Guhertoyek Nû apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Open Translation apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ev e-nameya otogenerkirî ye DocType: Workflow State,Icon will appear on the button,Icon di ser bişkojka dê çawa xuya @@ -2370,6 +2447,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Page dîti DocType: DocField,Precision,Tamî DocType: Website Slideshow,Slideshow Items,Nawy Slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Hewl da ku gotinên xwe dubare û characters +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Danûstandin neçalak kirin +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Ma hûn guman dikin ku hûn dixwazin hemî rêzan jêbirin? DocType: Workflow Action,Workflow State,Dewletê Workflow apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rows Ev babete ji layê apps/frappe/frappe/www/list.py,My Account,My Account @@ -2378,6 +2457,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,rojan Piştî apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ Tray Connection Active! DocType: Contact Us Settings,Settings for Contact Us Page,Mîhengên ji bo Contact Us Page +DocType: Server Script,Script Type,script Type DocType: Print Settings,Enable Print Server,Pêşkêşkara çapkirinê apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} weeks ago DocType: Email Account,Footer,footer @@ -2402,8 +2482,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Gazî apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Dibe ku ev li gelek rûpelan were çap kirin DocType: Data Migration Run,Percent Complete,Perî Têr -DocType: Tag Category,Tag Category,Tag Kategorî -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ji bo berhevdanê,> 5, <10 an = 324 bikar bînin. Ji bo rêzan, 5:10 bikar bînin (ji bo nirxên di navbera 5 & 10)." DocType: Google Calendar,Pull from Google Calendar,Ji Salnameya Google-ê dakêşin apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Alîkarî DocType: User,Login Before,Login Berî @@ -2413,17 +2491,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Week Week Hide apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Bixweber belgeyên dubare diafirîne. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,E +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Nirx ji bo {0} dikarin di be ku lîsteya ne DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Divê çawa vê currency were formatkirin? Heke ne, wê nirxên standard pergalê bi kar bîne" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Belgeyên {0} bişînin? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Connewtiya di girêdana serîlêdana QZ Tray QZ de ... <br><br> Hûn hewce ne ku serîlêdana QZ Tray-ê saz bikin û bisekinin, da ku taybetmendiya Raw çapkirinê bikar bînin. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Vira bikirtînin û QZ Tray bikirtînin</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Vira bikirtînin da ku di derbarê çapkirina Raw de bêtir fêr bibin</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Nexşeya çapkirinê apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ji kerema xwe ve Berî xilas bike. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ma hûn dixwazin hemî belgeyên têkildar betal bikin? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Ev babete ji layê {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype dikarin ji ne bê guhertin {0} ji bo {1} li row {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Permissions rola DocType: Help Article,Intermediate,Di nav +apps/frappe/frappe/config/settings.py,Email / Notifications,E-name / Notifications apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} guherîn {1} ber {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Dokumenta betalkirî ya wekî Draftê veguherîn DocType: Data Migration Run,Start Time,Time Start @@ -2439,6 +2521,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,ca apps/frappe/frappe/email/smtp.py,Invalid recipient address,Adresa emaila Invalid DocType: Workflow State,step-forward,gav-bi pêş DocType: System Settings,Allow Login After Fail,Piştre Têketinê Piştî Pevçûnê +DocType: DocType Link,DocType Link,Girêdana DocType DocType: Role Permission for Page and Report,Set Role For,Set Role Ji bo DocType: GCalendar Account,The name that will appear in Google Calendar,Navê ku dê li Calendar Google be apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Odeya rasterast bi {0} berê heye. @@ -2455,6 +2538,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Create a DocType: Contact,Google Contacts,Têkiliyên Google DocType: GCalendar Account,GCalendar Account,Account GCalendar DocType: Email Rule,Is Spam,e Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Dawîn apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} DocType: Data Import Beta,Import Warnings,Hişyariyên Import @@ -2466,6 +2550,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Belgeyên deleted apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Pirtûka CSV-kêşeya mestir e apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Icon Desktop jixwe heye +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Li kîjan deverê divê ku dirûşm destnîşan bikin destnîşan bikin. Heke tiştek neyê diyar kirin slaydek di hemî deveran de bixweber tê destnîşan kirin. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Cote apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Zeviyê {1} di rêza {2} de nexşandin û bê mecbûrkirin nayê veşartin DocType: Newsletter,Create and Send Newsletters,Create û Send Şandin @@ -2476,6 +2561,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID Event Event Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",""Parent", temsîla sifrê û bav in ku ev row, divê bê zêdekirin" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Points Review +DocType: Scheduled Job Log,Scheduled Job Log,Têketina Karê Barkirî +DocType: Server Script,Before Delete,Berî Dabeşandinê apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Shared With apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Pelên / urls têkevin û di sifrê de zêde bikin. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Peyam nayê sazkirin @@ -2499,19 +2586,20 @@ DocType: About Us Settings,Settings for the About Us Page,Mîhengên ji bo About apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe settings peredana derîyek apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe settings peredana derîyek apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Ji çapkirinê re bişînin! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Xalên Enerjiyê +DocType: Notification Settings,Energy Points,Xalên Enerjiyê DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,eg pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Keys Generate apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ev ê bi rengek mayî ji daneyên xwe bavêje. DocType: DocType,View Settings,View Settings +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Agahdariya nû DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktura daxwaz bikin +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Rêbaza kontrola get_razorpay_order winda dike DocType: Personal Data Deletion Request,Pending Verification,Li benda Verêkirinê DocType: Website Meta Tag,Website Meta Tag,Malpera Meta Tag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Heke porta standard ne (mînak 587). Ger li Google Cloud, li portê 2525 hewl bike." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Dîrokkirina dawiya dawiyê, wekî ku berê berê ji bo rûpelên çapkirî ne." DocType: User,Send Me A Copy of Outgoing Emails,Ji min re kopiyek derketin e-mail bişîne -DocType: System Settings,Scheduler Last Event,Tevlîhevker Last Event DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Lê zêde bike Google Analytics ID: eg. UA-89XXX57-1. Tkaye yarmetîyi lêgerîn li ser Google Analytics bike bo zaniyarîy zortir. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Şîfre ne dikarin zêdetir ji 100 characters dirêj DocType: OAuth Client,App Client ID,App Client ID @@ -2540,6 +2628,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,New Password apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},"{0} parvekirin, ev belge bi {1}" DocType: Website Settings,Brand Image,Brand Wêne DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Divê şablonê import divê serê Sernav û yek rêzek hebe. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Salnameya Google hatiye mîheng kirin. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Setup ji navîgasyon top bar, footer û logo." DocType: Web Form Field,Max Value,Max Nirx @@ -2549,6 +2638,7 @@ DocType: User Social Login,User Social Login,Têketina Civakî ya Civakî apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} karê we li ser {1} bi {2} point rexne kir DocType: Contact,All,Gişt DocType: Email Queue,Recipient,Girtevan +DocType: Webhook,Webhook Security,Ewlekariya Webhook DocType: Communication,Has Attachment,has Attachment DocType: Address,Sales User,Sales Bikarhêner apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag û tool Drop bo avakirina û customize Formats Print. @@ -2613,7 +2703,6 @@ DocType: Data Migration Mapping,Migration ID Field,Nasnameya ID ya Koçberiyê DocType: Dashboard Chart,Last Synced On,Last Synced On DocType: Comment,Comment Type,Raya Type DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} xebata xwe li ser {1} {2} rexne kir. DocType: Assignment Rule,Users,Bikarhêner li DocType: Address,Odisha,Odisha DocType: Report,Report Type,Report Type @@ -2638,14 +2727,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow babetî apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Piştre xweser nayê destûr kirin DocType: GSuite Templates,Template ID,ID Şablon apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Têkiliya Peymana Grant ( <code>{0}</code> ) û Şerta Response ( <code>{1}</code> ) ne -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Peyama nû ji {0} DocType: Portal Settings,Default Role at Time of Signup,Role Default li Time of Signup DocType: DocType,Title Case,title Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Ji bo dakêşana daneyên xwe dakêşin ser zencîreya jêrîn apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Ji bo bikarhênerên bikarhênerên email-ê vekirî {0} DocType: Data Migration Run,Data Migration Run,Daîreya Koçber Run DocType: Blog Post,Email Sent,Email Sent -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Kevin DocType: DocField,Ignore XSS Filter,Guh XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,rakirin apps/frappe/frappe/config/integrations.py,Dropbox backup settings,"settings Dropbox hilanînê," @@ -2698,6 +2785,7 @@ DocType: Async Task,Queued,li hêvîya DocType: Braintree Settings,Use Sandbox,bikaranîna Ceriban apps/frappe/frappe/utils/goal.py,This month,Vê mehê apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Format Custom bo çapkirinê +DocType: Server Script,Before Save (Submitted Document),Berî Xilaskirinê (Belgeya Belandî) DocType: Custom DocPerm,Create,Xûliqandin apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,No zêdetir babet ji bo nîşandanê apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Herin tomarê berê @@ -2754,6 +2842,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Bavêje gilêşê DocType: Web Form,Web Form Fields,Fields Form Web DocType: Data Import,Amended From,de guherîn From +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Alîkariyek vîdyoyê ya arîkariyê lê zêde bike tenê di vê mijarê de dema ku bikarhêner haya wî jê tune be ku çi qulpandina tijî bike. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Hişyarî: Nikare bibînin {0} di tu sifrê related to {1} DocType: S3 Backup Settings,eu-north-1,eu-bakur-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ev belge niha ji bo darvekirinê weşandinê. Ji kerema xwe re dîsa biceribîne @@ -2775,6 +2864,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Export From apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Search pêşketî apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Hûn nikarin ku nûçegihanê bibînin. +DocType: Dashboard Chart,Group By,Pol By DocType: User,Interests,berjewendiyên apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,talîmatên şîfreyeke nû ji bo email xwe şandin DocType: Energy Point Rule,Allot Points To Assigned Users,Hemî Pûanan Bikaribin Bikarhênerên Nirxandî @@ -2790,11 +2880,13 @@ DocType: Assignment Rule,Assignment Rule,Rêzika erkdariyê apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Username pêşniyar: {0} DocType: Assignment Rule Day,Day,Roj apps/frappe/frappe/public/js/frappe/desk.js,Modules,modules +DocType: DocField,Mandatory Depends On,Zencîre girêdayî ye apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Serkeftina Payment apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} mail DocType: OAuth Bearer Token,Revoked,bêparkirin DocType: Web Page,Sidebar and Comments,Darikê Kêlekê û Comments apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Hesabê e-nameyê nehatiye saz kirin. Ji kerema xwe ji Sîstema> E-name> Hesaba E-nameyê hesabek Emailek nû çêbikin apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Belgeya li {0} DocType: Stripe Settings,Publishable Key,Key Publishable DocType: Stripe Settings,Publishable Key,Key Publishable @@ -2809,12 +2901,12 @@ DocType: Currency,Fraction,fraction apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Bûyera bi Salnameya Google re hevrêz kirin. DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field DocType: Contact,Middle Name,Navê navbendî +DocType: DocField,Property Depends On,Xanî bi Dikeve DocType: Custom Field,Field Description,Field Description apps/frappe/frappe/model/naming.py,Name not set via Prompt,Navê via Prompt set ne apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox Email DocType: Auto Email Report,Filters Display,Parzûn Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Di qada "amaded_from" de pêdivî ye ku guhastin were kirin. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} xebatên we yên li ser {1} {2} nirxand. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Parzûnan hilînin DocType: Address,Plant,Karxane apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Bersiva hemiyan bide @@ -2855,11 +2947,11 @@ DocType: Workflow State,folder-close,Peldanka-nêzîkî apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Nûçe: DocType: Print Settings,Print taxes with zero amount,Bacê bi mûzek zûtirîn çap bikin apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} destûr ne divyabû navên wan bên +DocType: Server Script,Before Insert,Berî Insert DocType: Custom Script,Custom Script,Script Custom DocType: Address,Address Line 2,Line Address 2 DocType: Address,Reference,Balkêşî apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,rêdan û To -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ji kerema xwe ji Sîstema> E-name> Hesabê E-nameya Rast Ji Bila Hesabê E-nameyê saz bike DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Migration Detailed Data Data DocType: Data Import,Action,Çalakî DocType: GSuite Settings,Script URL,URL script @@ -2885,11 +2977,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,Li List View DocType: Email Account,Use TLS,bikaranîna TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,login an jî şîfre çewt +DocType: Scheduled Job Type,Weekly Long,Heftiya dirêj apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,download Şablon apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Lê zêde bike adeta ji bo formên javascript. ,Role Permissions Manager,Permissions rola Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Name ji Format Print nû apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar +DocType: Server Script,After Save (Submitted Document),After Save (Belgeya radestkirî) DocType: Data Migration Run,Pull Insert,Bixweşîne DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Zêde xalên destûrkirî piştî xalên pirjimariyê bi nirxa pirjimar (Nîşe: Ji bo ti sînorê vê qadê vala nehêle an 0 veqetîne) @@ -2907,6 +3001,7 @@ DocType: User Permission,User Permission,Destûra User apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ne sazkirî ne apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Download bi daneya +DocType: Server Script,Before Cancel,Berî ku betalkirin DocType: Workflow State,hand-right,hand-mafê DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Herêm @@ -2952,12 +3047,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Şîfre Old DocType: S3 Backup Settings,us-east-1,me-rojhilat-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posts by {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","To stûnên format, bide labels column di query." +DocType: Onboarding Slide,Slide Fields,Qadên Slide DocType: Has Domain,Has Domain,has Domain DocType: User,Allowed In Mentions,Di entêweyan de Destûrdan apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hesabê te nîne? Tomar kirin apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Zeviya nasnameyê hilbijêre apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Can not set value Qanûnên eger Submittable ne DocType: Address,Bihar,bihar +DocType: Notification Settings,Subscribed Documents,Belgeyên abonandî apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Vebijarkên bikarhêner DocType: Report,Reference Report,Rapora Reference DocType: Activity Log,Link DocType,DocType Link @@ -2975,6 +3072,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Destûrdayîna Salname apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Ew rûpel ku tu lê digerî bo winda ye. Ev dibe ku ji ber ku ev koçî an e şaşnivîsek di link hene. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Description ji bo lîsta rûpel, di nivîsa sade, bi tenê çend xetên. (Max 140 characters)" +DocType: Server Script,DocType Event,Bûyera DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} zeviyên mecbûrî ne DocType: Workflow,Allow Self Approval,Destûrê Xweser bike DocType: Event,Event Category,Category Category @@ -2991,6 +3089,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Navê te apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Girêdana Serkeftinê DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Pirtûka Pirtûka Pirtûka Pêdivî ya Berfirehkirî ya Berê jî heye. DocType: DocType,Default Sort Field,Default Sort Field DocType: File,Is Folder,e Folder DocType: Document Follow,DocType,DocType @@ -3026,7 +3125,9 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,nirxên Guherî DocType: Workflow State,arrow-up,tîra-up DocType: Dynamic Link,Link Document Type,Type Document Link +DocType: Server Script,Server Script,Server Script DocType: OAuth Bearer Token,Expires In,bidawîbûnê In +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Hejmara ku hûn dixwazin qada darokê dubare bikin (mînak: heke hûn dixwazin 3 xerîdar di diruşmeyê de bin, vê zeviyê bicîh bikin 3. Tenê yekem qadên zevî di dirûşmeyê de wekî mecbûrî têne destnîşan kirin)" DocType: DocField,Allow on Submit,Destûrê bide li ser Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Type îstîsna @@ -3036,6 +3137,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Upcoming Events apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Ji kerema xwe ve nirxên bo App Têketinê Key û App Secret Key binivîse +DocType: Email Account,Append Emails to Sent Folder,Emails bişînin Peldanka entandî DocType: Web Form,Accept Payment,peredayînê apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Navnîşa navnîşê hilbijêrin apps/frappe/frappe/config/core.py,A log of request errors,A log ji şaşiyên request @@ -3054,7 +3156,7 @@ DocType: Translation,Contributed,Beşdar kirin apps/frappe/frappe/config/customization.py,Form Customization,Forma Xerîdarbûnê apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sessions Çalak DocType: Web Form,Route to Success Link,Roja Serketina Serkeftinê -DocType: Top Bar Item,Right,Rast +DocType: Onboarding Slide Field,Right,Rast apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Bûyerên Pêşerojê tune DocType: User,User Type,Type Bikarhêner DocType: Prepared Report,Ref Report DocType,Raportkirina Refokola DocType @@ -3071,6 +3173,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Ji kerema xwe re apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Divê URL bi 'http: //' an 'https: //' dest pê bike. apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Vebijarka 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ev nayê piştguh kirin DocType: Workflow State,Edit,Weşandin DocType: Website Settings,Chat Operators,Chat Operators DocType: S3 Backup Settings,ca-central-1,ca-navendî-1 @@ -3082,14 +3185,13 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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î apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Rapor bi bêtirî 10 kolonan di moda Landscape de çêtir xuya dike. DocType: Milestone,Milestone,Milestone DocType: User,User Image,Wêne Bikarhêner apps/frappe/frappe/email/queue.py,Emails are muted,Emails devgirtî ye apps/frappe/frappe/config/integrations.py,Google Services,Xizmetên Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 هەفتە لەمەوبەر +DocType: Onboarding Slide,Slide Description,Danasîna Slide DocType: Communication,Error,Şaşî apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Ji kerema xwe peyamek yekem saz bike DocType: Auto Repeat,End Date,Date End @@ -3110,10 +3212,12 @@ DocType: Footer Item,Group Label,Label Group DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Têkiliyên Google-ê hatiye mîheng kirin. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 tomar dê were hinardekirin +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ne hesabek e-nameyê bi bikarhênerê re têkildar e. Ji kerema xwe hesabek di bin Bikarhêner> E-nameya Emailê de zêde bikin. DocType: DocField,Report Hide,Report veşêre apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},View Tree ji bo amade ne {0} DocType: DocType,Restrict To Domain,Teng bike To Domain DocType: Domain,Domain,Domain +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL-a pelê nederbasdar e. Ji kerema xwe bi rêveberê pergalê re têkiliyê daynin. DocType: Custom Field,Label Help,Label Alîkarî DocType: Workflow State,star-empty,star-vala apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Rêkewt û gelek caran bi hêsanî bi texmîn in. @@ -3137,6 +3241,7 @@ DocType: Workflow State,hand-left,hand-hiştin DocType: Data Import,If you are updating/overwriting already created records.,Heke ku tu nûvekirin / serdestî ji nû ve hatî tomarkirin çêbûye. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Globale ye DocType: Email Account,Use SSL,Use SSL +DocType: Webhook,HOOK-.####,ÇENGEL-.#### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Daxuyan nehatiye destnîşankirin apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Şiklekî "depend_on" @@ -3153,6 +3258,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Dawîn nû kirin apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Ji bo Tîpa Document DocType: Workflow State,arrow-right,tîra-mafê +DocType: Server Script,API Method,Rêbaza API DocType: Workflow State,Workflow state represents the current state of a document.,dewletê Workflow de nûnertiya dewletê ya niha a document. DocType: Letter Head,Letter Head Based On,Tête serê Serrast apps/frappe/frappe/utils/oauth.py,Token is missing,Token winda ye @@ -3165,6 +3271,7 @@ DocType: Company History,Highlight,highlight DocType: Dashboard Chart,Sum,Giş apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,bi Navgîniya Daneyê ve DocType: OAuth Provider Settings,Force,Cebir +apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Last synced {0} DocType: DocField,Fold,Pêçan apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,Standard Format Print ne kare bê rojanekirin apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Qada {1} ya celeb {2} ne mecbûrî ye @@ -3190,6 +3297,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Babetê Compact bo çapkirinê DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Beralîkirina URL +DocType: Onboarding Slide Field,Placeholder,Cihê rûniştinê DocType: SMS Settings,Enter url parameter for receiver nos,parametre url Enter ji bo destikê nos DocType: Chat Profile,Online,bike DocType: Email Account,Always use Account's Name as Sender's Name,Her gav Navê Hesabê wekî Navê Sender bikar bînin @@ -3199,7 +3307,6 @@ DocType: Workflow State,Home,Xane DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Bikarhêner bikar anîn bikar anîn bikar anîn e-nameya email an an jî bikarhêner DocType: Workflow State,question-sign,pirs-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} nexşe ye apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Mijarek "rêw" ye ku ji bo Web-nîqaşên pêwîst e apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Ji ber ku {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Bikarhêner ji vê qadê dê xalên xelat werin dayîn @@ -3224,6 +3331,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ger Xwedîyê DocType: Data Migration Mapping,Push,Lêqellibînî apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Pelên li vir bavêjin DocType: OAuth Authorization Code,Expiration time,dem boriye +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Belgeyên Vekirî DocType: Web Page,Website Sidebar,Darikê Kêlekê yê Website DocType: Web Form,Show Sidebar,Show Kêlekê apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Ji we re lazim têketî bê gihîştina vê {0}. @@ -3275,6 +3383,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Goggle Toggle View apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Herin tomarê din +DocType: System Settings,Time Format,Format Time apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,muesseseyên peredana deryek Invalid DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ev pelê pelê tenê bi rêzên ku di hin çewtiyê de têne afirandin. Divê hûn pelê rastkirinê û importê bikar bînin. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Permissions Set li ser Types dokumênt û rolên @@ -3318,12 +3427,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Bersiv apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Gotarên di Desk (xwedîyên cihekî) DocType: DocField,Collapsible Depends On,Navbar Dimîne li ser DocType: Print Style,Print Style Name,Navê Navekî Çap Bike +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Koma Ji hêla zevê ve tête çêkirin ku pêdivî ye ku nexşeyek dakêşbar ava bikin DocType: Print Settings,Allow page break inside tables,Destûrê bide break rûpel hundir maseyên DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print Format Alîkarî apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Odeya {0} hema hema yek bikarhêner e. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Jimartin +DocType: Dashboard Chart,Group By Type,Koma Bi Tîpa apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Commentîroveya nû ya li ser {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restore {0} wek {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Eger tu bi rojanekirina, ji kerema xwe hilbijêre "hate îţaretkirin" rêzikan din heyî ne wê were jêbirin." @@ -3333,8 +3444,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profîla DocType: Web Form,Web Form,Form Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dîroka {0} divê di formatê de: {1} DocType: About Us Settings,Org History Heading,Dîroka Org Berev +DocType: Scheduled Job Type,Scheduled Job Type,Tîpa Kar a Zayendî DocType: Print Settings,Allow Print for Cancelled,Destûrê bide bo çapkirinê bo Hilandin DocType: Communication,Integrations can use this field to set email delivery status,Integrations dikarin li vê qadê ji bo rewşa delivery email bi kar tînin +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Hûn destûr nadin ku hûn hemî belgeyên girêdayî vekişînin. DocType: Web Form,Web Page Link Text,Web Page Link Nivîsar di DocType: Page,System Page,System Page DocType: Page,System Page,System Page @@ -3342,6 +3455,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Pêşniyar ji bo <b>{0}</b> veguhestin: <br> {1} DocType: Website Settings,Include Search in Top Bar,INCLUDE Search in Top Bar +DocType: Scheduled Job Type,Daily Long,Daily Long DocType: GSuite Settings,Allow GSuite access,Destûrê bide access GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Bidin @@ -3432,6 +3546,7 @@ DocType: Notification,Send days before or after the reference date,Send rojan be DocType: User,Allow user to login only after this hour (0-24),Destûrê bide bikarhêneran ku login tenê piştî vê saetê (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Li yek bi yek, bi rengek peywendîdar" DocType: Integration Request,Subscription Notification,Agahdariya Mirovan +DocType: Customize Form Field, Allow in Quick Entry ,Di Destpêka Destpêkê de Allow apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,an pêvekê vebikin DocType: Auto Repeat,Start Date,Destpêk Date apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Giranî @@ -3446,6 +3561,7 @@ DocType: Google Drive,Backup Folder ID,IDya Peldanka Bişkêş apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne li Mode Developer! Set li site_config.json an bide DocType 'Custom'. DocType: Workflow State,globe,dinyagog DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,Vîdeo DocType: Assignment Rule,Priority,Pêşeyî DocType: Email Queue,Unsubscribe Param,Unsubscribe Param DocType: DocType,Hide Sidebar and Menu,Sidebar û menu veşêrin @@ -3457,6 +3573,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Destûrê bide Import (bi r apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Avbazîn DocType: Print Settings,Page Settings,Mîhengên Rûpelê +DocType: Notification Settings,Notification Settings,Mîhengên Danûstendinê apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saving ... apps/frappe/frappe/www/update-password.html,Invalid Password,Şîfreya çewt DocType: Contact,Purchase Master Manager,Buy Master Manager @@ -3469,6 +3586,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail DocType: Letter Head,Letter Head Image,Wêneyê Serê Nîgarê DocType: Address,Party GSTIN,Partiya GSTIN +DocType: Scheduled Job Type,Cron Format,Forma Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Report DocType: SMS Settings,Use POST,POST bikar bînin DocType: Communication,SMS,SMS @@ -3513,18 +3631,20 @@ DocType: Workflow,Allow approval for creator of the document,Destûrê ji bo cre apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Raportê hilînin DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Actionalakiya Server apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator xwestin {0} li {1} via IP Address {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Pêdivî ye ku Qada Dêûbikê navnivîsek rastîn be apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Dema ku endamê şandina rûniştinê tê kirin DocType: LDAP Settings,LDAP Group Field,Qada Group LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Belavkirina Belgeya Pêşkeftinê apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,li beramberî apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Format CSV Invalid -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Connewtiya di girêdana serîlêdanê ya QZ Tray de têkildar e ... <br><br> Hûn hewce ne ku serîlêdana QZ Tray-ê saz bikin û bisekinin, da ku taybetmendiya Raw çapkirinê bikar bînin. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Vira bikirtînin û QZ Tray bikirtînin</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Vira bikirtînin da ku di derbarê çapkirina Raw de bêtir fêr bibin</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Set Hejmara Backups DocType: DocField,Do not allow user to change after set the first time,Destûrê nadin user bo guherandina piştî set cara yekem apps/frappe/frappe/utils/data.py,1 year ago,1 ساڵ لەمەوبەر +DocType: DocType,Links Section,Beşê Girêdanan apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Log-ê ya hemî bûyerên çapkirinê, dakêşin û veguhêrin" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 Meh DocType: Contact,Contact,Têkelî @@ -3555,11 +3675,12 @@ DocType: Dropbox Settings,Dropbox Settings,Settings Dropbox DocType: About Us Settings,More content for the bottom of the page.,naveroka More bo binê rûpel. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ev belge hat vegerandin apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive Backup Serkeftin. +DocType: Webhook,Naming Series,Series Bidin DocType: Workflow,DocType on which this Workflow is applicable.,DocType ku li ser vê Workflow di rewacê de ye. DocType: User,Enabled,çalake apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Failed to setup apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nû {0}: {1} -DocType: Tag Category,Category Name,Category Name +DocType: Blog Category,Category Name,Category Name apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Dêûbav hewce ye ku daneyên tabloya zarokan bistînin apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Subscribers Import DocType: Print Settings,PDF Settings,Settings PDF @@ -3595,6 +3716,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Salname apps/frappe/frappe/client.py,No document found for given filters,No belge hat ji bo filter dayîn apps/frappe/frappe/config/website.py,A user who posts blogs.,Bikarhênerek ku blogan bişîne. +DocType: DocType Action,DocType Action,Talakiya DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Din {0} bi navê {1} de heye, bi navê din hilbijêre" DocType: DocType,Custom?,Hûnbunî? DocType: Website Settings,Website Theme Image,Website Theme Wêne @@ -3604,6 +3726,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nehat bar apps/frappe/frappe/config/integrations.py,Backup,Backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,"Ji bo afirandina grafikek dashboard, celebê belgeyê pêdivî ye" DocType: DocField,Read Only,Read Tenê +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nekarî ku fermana razorpay çêbike apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New Newsletter DocType: Energy Point Log,Energy Point Log,Log Têkoşîna Enerjiyê DocType: Print Settings,Send Print as PDF,Send Ji bo çapkirinê PDF @@ -3628,16 +3751,18 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Ema apps/frappe/frappe/www/login.html,Or login with,An jî têketinê bi DocType: Error Snapshot,Locals,Locals apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Danûstandinê de bi rêya {0} li {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} tu li Rayi di behsa {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Koma Bi Hilbijêrin ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 an = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} pêwîst e DocType: Integration Request,Integration Type,Type Integration DocType: Newsletter,Send Attachements,Send Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Ti fîlter nehat dîtin apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Yekbûna Têkiliyên Google. DocType: Transaction Log,Transaction Log,Têkiliya Logê apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Stranên li ser bingeha performansa meha borî (ji {0} heta {1}) DocType: Contact Us Settings,City,Bajar +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ji bo hemî bikarhêneran kartên xwe veşêrin +apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Destûrê bide Xwerû Destpêkirina Xweseriya Dagirtinê {0} Bi Têleke Xwerû bike DocType: DocField,Perm Level,Level Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Belgeyê bibînin apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,Events Li Calendar îro @@ -3648,6 +3773,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},'Li Global Search' ji bo cureyê destûr ne {0} li row {1} DocType: Energy Point Log,Appreciation,Rûmetdanî +DocType: Dashboard Chart,Number of Groups,Hejmara komên apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,View List DocType: Workflow,Don't Override Status,Ma Status Override ne apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Bêjeya @@ -3686,7 +3812,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,Sel DocType: S3 Backup Settings,cn-northwest-1,cn-bakur-1 DocType: Dropbox Settings,Limit Number of DB Backups,Hejmarên DB-ê yên DB-ê DocType: Custom DocPerm,Level,Serrast -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 rojên dawî DocType: Custom DocPerm,Report,Nûçe apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,"Şêwaz, divê mezintir 0 be." apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Bi QZ Tray ve girêdayî bû! @@ -3703,6 +3828,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Tabela Zarokan Hilbijêrin apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Igalakiya Pêşîn a Tevger apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Gûherrandinî +DocType: Social Login Key,User ID Property,Taybetmendiya ID ya bikarhêner DocType: Email Domain,domain name,domain name DocType: Contact Email,Contact Email,Contact Email DocType: Kanban Board Column,Order,Emir @@ -3725,7 +3851,7 @@ DocType: Contact,Last Name,Paşnav DocType: Event,Private,Taybet apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Çep DocType: Event,All Day,All Day apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Dişibe tiştek xelet bi veavakirina peredana derîyek vê malperê ye. No tezmînat hatiye çêkirin. DocType: GCalendar Settings,State,Rewş @@ -3756,7 +3882,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Gateway Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text li cureyê pelgeyê -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Îmtîhan de bixebitîne apps/frappe/frappe/handler.py,Logged Out,(logged out) apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Zêde... DocType: System Settings,User can login using Email id or Mobile number,Bikarhêner nikarim têkevim bikaranîna id Email an hejmara Mobile @@ -3772,6 +3897,7 @@ DocType: System Settings,Number Format,Format Number apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Berhevkirinî DocType: Event,Event Participants,Beşdarvanên Çalakiyê DocType: Auto Repeat,Frequency,Pircarînî +DocType: Onboarding Slide,Slide Order,Fermana Slide DocType: Custom Field,Insert After,Insert Piştî DocType: Event,Sync with Google Calendar,Bi Salnameya Google re hevrêz bibin DocType: Access Log,Report Name,Report Name @@ -3799,6 +3925,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},width Max ji bo cureyê Exchange 100px li row e {0} apps/frappe/frappe/config/website.py,Content web page.,web page Content. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lê zêde bike roleke nû +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Serdana Malperê bikin +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Destûrnameya nû DocType: Google Contacts,Last Sync On,Sync Dîroka Dawîn DocType: Deleted Document,Deleted Document,Dokumentê deleted apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Tiştek xelet çû @@ -3809,7 +3937,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Dorhalî apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,niçikan bi script aliyê Client li Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Belge ji bo doktîfên jêrîn dê bêne şandin -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Scheduler Inactive +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Scheduler Inactive DocType: Blog Settings,Blog Introduction,Blog Introduction DocType: Global Search Settings,Search Priorities,Pêşiyên Lêgerînê DocType: Address,Office,Dayre @@ -3819,13 +3947,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Lînka Dashboard DocType: User,Email Settings,Settings Email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Li vir venekin DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ger çalak be, bikarhêner dikare ji Navnîşana IP-yê têkeve nav Autor du Faktor têkevî, ev jî dikare ji bo hemî bikarhêneran di Sîstemên Sîstemê de were danîn." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Mîhengên çapkirinê ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Ji kerema xwe re ji bo Continue binivîse apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Ji kerema xwe re ji bo Continue binivîse apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Min apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ne Dewletê derbasdar apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Li ser Hemî Tîpên Belgeyê bicîh bikin -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Rojanebûna enerjiyê +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Rojanebûna enerjiyê +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Ger Neçalak Ji Bo (Rojan) Bikaribin Karê Tenê Rojane Bikin apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tenduristiyê DocType: Data Import Beta,Import Log Preview,Pêşniyara têketinê ya Log @@ -3834,6 +3962,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,Afirandina û Nexşeya Bikarhênerê LDAP apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Bûyerên îro apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,"Bibore! User, divê bi temamî ji bo qeyda xwe bi xwe heye." ,Usage Info,Info Bikaranîna apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Kurtikên Pêl bişkoka nîşan bikin @@ -3849,6 +3978,7 @@ DocType: DocField,Unique,Yekane apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} li ser {1} tête nirxandin apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Serkeftina Partî DocType: Email Account,Service,Xizmetkar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner DocType: File,File Name,file Name apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nedît {0} ji bo {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3862,6 +3992,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registra DocType: GCalendar Settings,Enable,Bikêrkirin DocType: Google Maps Settings,Home Address,Navnîşana malê apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Tu tenê dikarî upto 5000 records li yek go bar. (Dibe ku kêmtir be di hinek rewşan de) +DocType: Report,"output in the form of `data = [columns, result]`","derketî di forma `dan = de," apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Cureyên Belgeya Bêdeng apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Ji bo erkên bikarhêner rêzikan bicîh bînin. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Destûr Têrê nake ji bo {0} @@ -3879,7 +4010,6 @@ DocType: Communication,To and CC,To û CC DocType: SMS Settings,Static Parameters,Parameters Static DocType: Chat Message,Room,Jûre apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ve ji bo {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Karên paşîn çêdibe. Ji kerema xwe rêvebirê têkiliyê DocType: Portal Settings,Custom Menu Items,Nawy Menu Custom apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Hemû wêneyên girêdayî Bi Navnîşa Malpera Malperê be DocType: Workflow State,chevron-right,chevron-mafê @@ -3892,9 +4022,11 @@ DocType: Website Settings,Brand HTML,Brand HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,Backup bavêjin DocType: DocType,Allow Auto Repeat,Destûrê bide xwerû apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ne nirxên ku nîşan bide +DocType: DocType,URL for documentation or help,URL ji bo belgekirin an arîkariyê DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Şablon apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Herdu login û nasnav nehate xwestin +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Berdan\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ji kerema xwe ve rihet to get the latest belge. DocType: User,Security Settings,Mîhengên ewlekariyê apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,lê zêde bike Stûna @@ -3903,6 +4035,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},Report Export: {0} DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Page,Set Meta Tags,Tagên Meta Set +DocType: Email Account,Use SSL for Outgoing,SSL ji bo derveyî bikar bînin 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: S3 Backup Settings,Backup Limit,Sermaseya Bermalê DocType: Dashboard Chart,Line,Xet @@ -3935,4 +4068,3 @@ DocType: DocField,Ignore User Permissions,Guh Permissions Bikarhêner apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Bi serfirazî rizgar bû apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Kerema xwe bi rêvebirê xwe bipirsin Ji bo rastkirina te nîşana-up DocType: Domain Settings,Active Domains,Domain ji Active -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,nîşan bike Têkeve Têkeve diff --git a/frappe/translations/lo.csv b/frappe/translations/lo.csv index 899c8b2ecd..acc6100da1 100644 --- a/frappe/translations/lo.csv +++ b/frappe/translations/lo.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ກະລຸນາເລືອກພາກສະຫນາມຈໍານວນ. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ກຳ ລັງໂຫລດໄຟລ໌ ນຳ ເຂົ້າ ... DocType: Assignment Rule,Last User,ຜູ້ໃຊ້ສຸດທ້າຍ -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","A ວຽກງານໃຫມ່, {0}, ໄດ້ຮັບການມອບຫມາຍໃຫ້ທ່ານໂດຍ {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,ຄ່າເລີ່ມຕົ້ນຂອງເຊດຊັນ apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ໂຫລດໄຟລ໌ຄືນ DocType: Email Queue,Email Queue records.,ແຖວ Email ການບັນທຶກການ. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ເປັນ DocType: User,User Emails,ອີເມວຜູ້ໃຊ້ DocType: User,Username,ຊື່ຜູ້ໃຊ້ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ນໍາເຂົ້າ Zip +DocType: Scheduled Job Type,Create Log,ສ້າງ Log apps/frappe/frappe/model/base_document.py,Value too big,ມູນຄ່າຂະຫນາດໃຫຍ່ເກີນໄປ DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ການທົດສອບ Script Run @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,ປະຈໍາເດືອນ DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,ເຮັດໃຫ້ສາມາດເຂົ້າມາ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ອັນຕະລາຍ -DocType: Address,Email Address,ທີ່ຢູ່ອີເມວ +apps/frappe/frappe/www/login.py,Email Address,ທີ່ຢູ່ອີເມວ DocType: Workflow State,th-large,th-ຂະຫນາດໃຫຍ່ DocType: Communication,Unread Notification Sent,ແຈ້ງຍັງບໍ່ໄດ້ສົ່ງ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ການສົ່ງອອກບໍ່ໄດ້ອະນຸຍາດໃຫ້. ທ່ານຈໍາເປັນຕ້ອງ {0} ບົດບາດໃນການສົ່ງອອກ. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ຍ DocType: DocType,Is Published Field,ແມ່ນຈັດພີມມາຢູ່ພາກສະຫນາມ DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings DocType: Email Group,Email Group,Group Email +apps/frappe/frappe/__init__.py,Only for {},ສຳ ລັບ {} ເທົ່ານັ້ນ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - ບໍ່ສາມາດລຶບເຫດການ {0} ຈາກ Google Calendar, ລະຫັດຜິດພາດ {1}." DocType: Event,Pulled from Google Calendar,ດຶງຈາກ Google Calendar DocType: Note,Seen By,ເຫັນໂດຍ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ຕື່ມຫຼາຍ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,ທ່ານໄດ້ຮັບຈຸດພະລັງງານບາງຢ່າງ apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ບໍ່ແມ່ນຮູບພາບຜູ້ໃຊ້ທີ່ຖືກຕ້ອງ. DocType: Energy Point Log,Reverted,ກັບມາແລ້ວ DocType: Success Action,First Success Message,ຂໍ້ຄວາມຄວາມສໍາເລັດຄັ້ງທໍາອິດ @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ບໍ່ຄ apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ຄ່າບໍ່ຖືກຕ້ອງ: {0} ຕ້ອງ {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ຄຸນສົມບັດການປ່ຽນແປງພາກສະຫນາມ (hide, ອ່ານຢ່າງດຽວ, ອະນຸຍາດແລະອື່ນໆ)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ຮູ້ບຸນຄຸນ +DocType: Notification Settings,Document Share,ການແບ່ງປັນເອກະສານ DocType: Workflow State,lock,ລັອກ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ການຕັ້ງຄ່າສໍາລັບການຕິດຕໍ່ພວກເຮົາຫນ້າ. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator Logged In @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","ຖ້າເປີດໃຊ້, ເອກະສານຈະຖືກ ໝາຍ ເປັນທີ່ເຫັນ, ຄັ້ງ ທຳ ອິດທີ່ຜູ້ໃຊ້ເປີດມັນ" DocType: Auto Repeat,Repeat on Day,Repeat on Day DocType: DocField,Color,ສີ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,ໝາຍ ທຸກສິ່ງທີ່ອ່ານ DocType: Data Migration Run,Log,ເຂົ້າສູ່ລະບົບ DocType: Workflow State,indent-right,indent ສິດທິ DocType: Has Role,Has Role,ມີພາລະບົດບາດ @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ສະແດງ Traceback DocType: DocType,Default Print Format,ຮູບແບບພິມມາດຕະຖານ DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,ປະເພດເລື່ອນ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ບໍ່ມີ: ໃນຕອນທ້າຍຂອງ Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ພາກສະຫນາມບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນເອກະລັກໃນ {1}, ເນື່ອງຈາກວ່າມີຄຸນຄ່າທີ່ມີຢູ່ແລ້ວບໍ່ແມ່ນເປັນເອກະລັກ" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ປະເພດເອກະສານ @@ -136,7 +139,6 @@ DocType: Language,Guest,ບຸກຄົນທົ່ວໄປ DocType: DocType,Title Field,ຫົວຂໍ້ພາກສະຫນາມ DocType: Error Log,Error Log,Error ເຂົ້າສູ່ລະບົບ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL ບໍ່ຖືກຕ້ອງ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 ວັນທີ່ຜ່ານມາ apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",ຊ້ໍາເຊັ່ນ: "abcabcabc" ແມ່ນມີພຽງແຕ່ເລັກນ້ອຍ harder ກັບຮີດກ່ວາ "abc" DocType: Notification,Channel,Channel apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ຖ້າຫາກວ່າທ່ານຄິດວ່ານີ້ແມ່ນຮັບອະນຸຍາດ, ກະລຸນາມີການປ່ຽນແປງລະຫັດຜ່ານບໍລິຫານ." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,ລູກຄ້າ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,ເລືອກຄໍລໍາ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ຮູບແບບນີ້ໄດ້ຮັບການແກ້ໄຂພາຍຫຼັງທີ່ທ່ານໄດ້ໂຫລດມັນ DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,ໃບແຈ້ງການ DocType: System Settings,"If not set, the currency precision will depend on number format",ຖ້າຫາກວ່າບໍ່ໄດ້ຕັ້ງຄວາມແມ່ນຍໍາສະກຸນເງິນຈະຂຶ້ນກັບຮູບແບບຈໍານວນ DocType: System Settings,"If not set, the currency precision will depend on number format",ຖ້າຫາກວ່າບໍ່ໄດ້ຕັ້ງຄວາມແມ່ນຍໍາສະກຸນເງິນຈະຂຶ້ນກັບຮູບແບບຈໍານວນ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ເປີດ Aw Awbar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ສົ່ງ DocType: Workflow Action Master,Workflow Action Name,ຊື່ Workflow ປະຕິບັດ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ບໍ່ສາມາດລວມ -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ບໍ່ໄດ້ເປັນເອກະສານໄປສະນີ DocType: Global Search DocType,Global Search DocType,ເອກະສານຄົ້ນຫາທົ່ວໂລກ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,ສົ່ງອີເມວ? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart apps/frappe/frappe/desk/form/save.py,Did not cancel,ບໍ່ໄດ້ຍົກເລີກການ DocType: Social Login Key,Client Information,ຂໍ້ມູນລູກຄ້າ +DocType: Energy Point Rule,Apply this rule only once per document,ນຳ ໃຊ້ກົດລະບຽບນີ້ພຽງແຕ່ຄັ້ງດຽວຕໍ່ເອກະສານ DocType: Workflow State,plus,ບວກ +DocType: DocField,Read Only Depends On,ອ່ານເທົ່ານັ້ນຂື້ນກັບ apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,ເຂົ້າສູ່ລະບົບໃນຖານະບຸກຄົນທົ່ວໄປຫຼືການບໍລິ DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ຈັດການໄຟລ໌ @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,ເຫດຜົນ 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,ບໍ່ມີກິດຈະ ກຳ +DocType: Server Script,Script Manager,ຜູ້ຈັດການສະຄິບ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ບໍ່ມີກິດຈະ ກຳ apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps ພາກສ່ວນທີສາມ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ຜູ້ໃຊ້ທໍາອິດທີ່ຈະກາຍເປັນລະບົບຈັດການ (ທ່ານສາມາດມີການປ່ຽນແປງນີ້ຕໍ່ມາ). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ບໍ່ມີເຫດການໃນມື້ນີ້ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,ທ່ານບໍ່ສາມາດໃຫ້ຈຸດທົບທວນຄືນແກ່ທ່ານເອງ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ຕ້ອງສົ່ງຕໍ່ກັບເຫດການ Doc ທີ່ເລືອກ DocType: Workflow State,circle-arrow-up,"ແຜ່ນປ້າຍວົງກົມ, ລູກສອນຂຶ້ນ" @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},ບໍ່ອະນຸຍາດ ສຳ ລັບ {0}: {1}. ເຂດຂໍ້ ຈຳ ກັດ: {2} 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,You are not allowed to delete a standard Website Theme,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ລົບ Theme ເວັບໄຊທ໌ມາດຕະຖານ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},ສ້າງ {0} ທຳ ອິດຂອງທ່ານ DocType: Data Import,Log Details,ລາຍະລະອຽດບັນທຶກ DocType: Workflow Transition,Example,ຍົກຕົວຢ່າງ DocType: Webhook Header,Webhook Header,Webhook Header @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,ພື້ນຫລັງສົນທະນາ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Mark ເປັນອ່ານ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},ການປັບປຸງ {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,ສະໄລ້ Onboarding <b>{0}</b> ທີ່ມີ ຄຳ ສັ່ງສະໄລ້ດຽວກັນມີຢູ່ແລ້ວ apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ປິດການໃຊ້ງານ Report DocType: Translation,Contributed Translation Doctype Name,ປະກອບສ່ວນຊື່ການແປພາສາ Doctype +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ຕັ້ງຄ່າ> ປັບແຕ່ງແບບຟອມ DocType: PayPal Settings,Redirect To,ປ່ຽນເສັ້ນທາງໄປ DocType: Data Migration Mapping,Pull,ດຶງ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,ການບັນທຶກ DocType: Energy Point Settings,Review Levels,ລະດັບການທົບທວນຄືນ DocType: Workflow State,Comment,ຄໍາຄິດຄໍາເຫັນ DocType: Data Migration Plan,Postprocess Method,Postprocess Method +DocType: DocType Action,Action Type,ປະເພດການປະຕິບັດງານ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ຖ່າຍຮູບ DocType: Assignment Rule,Round Robin,ຮອບໂຣນິນ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","ທ່ານສາມາດມີການປ່ຽນແປງເອກະສານໂດຍການຍົກເລີກການໃຫ້ເຂົາເຈົ້າແລະຫຼັງຈາກນັ້ນ, ການແກ້ໄຂໃຫ້ເຂົາເຈົ້າ." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,ເຫັນ apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,ສະແດງໃຫ້ເຫັນລາຍລະອຽດເພີ່ມເຕີມ +DocType: Server Script,Before Submit,ກ່ອນທີ່ຈະສົ່ງ DocType: System Settings,Run scheduled jobs only if checked,ດໍາເນີນການວຽກເຮັດງານທໍາໄດ້ກໍານົດພຽງແຕ່ຖ້າຫາກວ່າການກວດກາ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,ຈະໄດ້ຮັບການສະແດງໃຫ້ເຫັນວ່າຖ້າຫາກຫົວລະພາກມີການເປີດໃຫ້ໃຊ້ງານ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Archive @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,ຊື່ພາກສະຫນາມ <b>{0} ທີ່</b> ບໍ່ຖືກຕ້ອງໃນການຕັ້ງຄ່າ add_fetch ຂອງ script custom apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ເລືອກ Google Contacts ເຊິ່ງລາຍຊື່ຜູ້ຕິດຕໍ່ຄວນຖືກຊິ້ງຂໍ້ມູນ. DocType: Web Page,Main Section (HTML),ພາກສ່ວນຕົ້ນຕໍ (HTML) +DocType: Scheduled Job Type,Annual,ປະຈໍາປີ DocType: Workflow State,headphones,ຫູຟັງ apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,ລະຫັດຜ່ານທີ່ຕ້ອງການຫຼືເລືອກຄິດລະຫັດຜ່ານ DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ຕົວຢ່າງ replies@yourcomany.com. ຕອບກັບທັງຫມົດຈະມາກັບ inbox ນີ້. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","ກຳ ນົດ ຄຳ ສັ່ງຂອງເລື່ອນໃນຕົວຊ່ວຍສ້າງ. ຖ້າແຜ່ນສະໄລ້ບໍ່ຖືກສະແດງ, ຄວນຕັ້ງຄ່າໃຫ້ເປັນ 0." DocType: Data Migration Run,Current Mapping,Current Mapping apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,ອີເມວທີ່ຖືກຕ້ອງແລະຊື່ຕ້ອງການ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,ເຮັດໃຫ້ເອກະສານຄັດຕິດທັງ ໝົດ ເປັນສ່ວນຕົວ @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,ກົດລະບຽບການປ່ຽນແປງ apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,ສະແດງພຽງແຕ່ແຖວ {0} ເທົ່ານັ້ນໃນການເບິ່ງກ່ອນ apps/frappe/frappe/core/doctype/report/report.js,Example:,ຍົກຕົວຢ່າງ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ຂໍ້ ຈຳ ກັດ DocType: Workflow,Defines workflow states and rules for a document.,ໄດ້ກໍານົດປະເທດ workflow ແລະລະບຽບການສໍາລັບເອກະສານ. DocType: Workflow State,Filter,ການກັ່ນຕອງ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},ກວດເບິ່ງຂໍ້ມູນບັນທຶກຂໍ້ຜິດພາດ ສຳ ລັບຂໍ້ມູນເພີ່ມເຕີມ: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ວຽກ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ອອກຈາກລະບົບ: {1} DocType: Address,West Bengal,Bengal ຕາເວັນຕົກ +DocType: Onboarding Slide,Information,ຂໍ້ມູນ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງຄ່າກໍາຫນົດຍື່ນສະເຫນີການຖ້າຫາກວ່າບໍ່ສົ່ງ DocType: Transaction Log,Row Index,Index Row DocType: Social Login Key,Facebook,ເຟສບຸກ @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,ປຸ່ມ Help DocType: Kanban Board Column,purple,ສີມ່ວງ DocType: About Us Settings,Team Members,ທີມງານສະມາຊິກ +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,ຈະ ດຳ ເນີນວຽກຕາມ ກຳ ນົດເວລາພຽງແຕ່ມື້ດຽວ ສຳ ລັບສະຖານທີ່ທີ່ບໍ່ມີປະໂຫຍດ. ຄ່າເລີ່ມຕົ້ນ 4 ວັນຖ້າຕັ້ງເປັນ 0. DocType: Assignment Rule,System Manager,ຈັດການລະບົບ +DocType: Scheduled Job Log,Scheduled Job,ວຽກທີ່ຖືກ ກຳ ນົດ DocType: Custom DocPerm,Permissions,ການອະນຸຍາດ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks ສໍາລັບການເຊື່ອມໂຍງພາຍໃນ DocType: Dropbox Settings,Allow Dropbox Access,ອະນຸຍາດໃຫ້ເຂົ້າເຖິງ Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ສ DocType: Email Flag Queue,Email Flag Queue,ແຖວທົງປະຈໍາຊາດ Email DocType: Access Log,Columns / Fields,ຖັນ / ທົ່ງນາ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ໄຕຊີດສໍາລັບຮູບແບບພິມ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Aggregate Function ພາກສະຫນາມແມ່ນຕ້ອງການສ້າງຕາຕະລາງ dashboard apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ບໍ່ສາມາດກໍານົດເປີດ {0}. ພະຍາຍາມບາງສິ່ງບາງຢ່າງອື່ນ. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ຂໍ້ມູນຂອງທ່ານໄດ້ຖືກສົ່ງ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ຜູ້ໃຊ້ {0} ບໍ່ສາມາດໄດ້ຮັບການລຶບ @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,ຊື່ພາກສະຫນາມ DocType: Assignment Rule,Assign To Users,ມອບ ໝາຍ ໃຫ້ຜູ້ໃຊ້ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ຫຼື apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ຊື່ໂມດູນ ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ສືບຕໍ່ການ +DocType: Onboarding Slide,Continue,ສືບຕໍ່ການ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration ຖືກປິດໃຊ້ງານ. DocType: Custom Field,Fieldname,fieldname DocType: Workflow State,certificate,ໃບຢັ້ງຢືນການ apps/frappe/frappe/templates/includes/login/login.js,Verifying...,ການກວດສອບ ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,ການແຕ່ງຕັ້ງຂອງທ່ານໃນ {0} {1} ໄດ້ຖືກລຶບອອກແລ້ວ apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,ຄໍລໍາຂໍ້ມູນຄັ້ງທໍາອິດຕ້ອງມີຊ່ອງຫວ່າງ. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,ສະແດງໃຫ້ເຫັນສະບັບທັງຫມົດ apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,ເບິ່ງ ຄຳ ເຫັນ @@ -432,12 +452,14 @@ DocType: User,Restrict IP,ຈໍາກັດ IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,dashboard apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ບໍ່ສາມາດສົ່ງອີເມວໃນເວລານີ້ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - ບໍ່ສາມາດອັບເດດເຫດການ {0} ໃນ Google Calendar, ລະຫັດຜິດພາດ {1}." +DocType: Notification Log,Email Content,ເນື້ອຫາຂອງອີເມວ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ຄົ້ນຫາຫລືພິມຄໍາສັ່ງ DocType: Activity Log,Timeline Name,ຊື່ກໍານົດເວລາ apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,ມີພຽງແຕ່ {0} ເທົ່ານັ້ນທີ່ສາມາດຕັ້ງຄ່າເປັນຫລັກ. DocType: Email Account,e.g. smtp.gmail.com,ຕົວຢ່າງ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ເພີ່ມກົດລະບຽບໃຫມ່ DocType: Contact,Sales Master Manager,Manager Sales ລິນຍາໂທ +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,ທ່ານຕ້ອງເປີດໃຊ້ JavaScript ເພື່ອໃຫ້ແອັບ your ຂອງທ່ານເຮັດວຽກ. DocType: User Permission,For Value,ສໍາລັບມູນຄ່າ DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,ຂັ້ນຕອນທີຫນຶ່ງຫຼ້າສຸດ @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,ທົ່ງນາຊື່ກາ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},ການ ນຳ ເຂົ້າ {0} ຂອງ {1} DocType: GCalendar Account,Allow GCalendar Access,ອະນຸຍາດໃຫ້ເຂົ້າ GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ເປັນຂົງເຂດບັງຄັບ +DocType: DocType,Documentation Link,ການເຊື່ອມຕໍ່ເອກະສານ apps/frappe/frappe/templates/includes/login/login.js,Login token required,ເຂົ້າສູ່ລະບົບ token ຕ້ອງ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ອັນດັບປະ ຈຳ ເດືອນ: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ເລືອກລາຍການຫລາຍລາຍການ @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL file DocType: Version,Table HTML,ຕາຕະລາງ HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,ເພີ່ມສະຫມາຊິກ +DocType: Notification Log,Energy Point,ຈຸດພະລັງງານ apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,ເຫດການທີ່ຈະເກີດຂຶ້ນສໍາລັບການໃນມື້ນີ້ DocType: Google Calendar,Push to Google Calendar,ຍູ້ໄປຫາ Google Calendar DocType: Notification Recipient,Email By Document Field,Email ໂດຍພາກສະຫນາມ Document @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ຫ່າງໄກ DocType: Currency,Fraction Units,ຫນ່ວຍເສດ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} ຈາກ {1} ກັບ {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Mark ເປັນແລ້ວ DocType: Chat Message,Type,ປະເພດ DocType: Google Settings,OAuth Client ID,ID ຂອງລູກຄ້າ OAuth DocType: Auto Repeat,Subject,Subject apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ກັບໄປທີ່ໂຕ໊ະ DocType: Web Form,Amount Based On Field,ຈໍານວນທີ່ກ່ຽວກັບພາກສະຫນາມ +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} ບໍ່ມີສະບັບຕິດຕາມ. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ຜູ້ໃຊ້ເປັນການບັງຄັບສໍາລັບການແບ່ງປັນ DocType: DocField,Hidden,ເຊື່ອງໄວ້ DocType: Web Form,Allow Incomplete Forms,ອະນຸຍາດໃຫ້ຮູບແບບບໍ່ສົມບູນ @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,ກະລຸນາກວດສອບອີເມວຂອງທ່ານສໍາລັບການຢັ້ງຢືນ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ເທົ່າບໍ່ສາມາດຈະຢູ່ໃນຕອນທ້າຍຂອງແບບຟອມໄດ້ DocType: Communication,Bounced,bounced +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ຂອງ DocType: Deleted Document,Deleted Name,ຊື່ລຶບ apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,ລະບົບແລະເວັບໄຊທ໌ຜູ້ຊົມໃຊ້ DocType: Workflow Document State,Doc Status,ສະຖານະ Doc @@ -527,6 +552,7 @@ DocType: Language,Language Code,ລະຫັດພາສາ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ຫມາຍເຫດ: ໂດຍອີເມວສໍາລັບການສໍາຮອງຂໍ້ມູນທີ່ລົ້ມເຫລວຖືກສົ່ງໄປ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,ເພີ່ມການກັ່ນຕອງ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS ສົ່ງໄປຈໍານວນດັ່ງຕໍ່ໄປນີ້: {0} +DocType: Notification Settings,Assignments,ວຽກມອບ ໝາຍ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ແລະ {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ເລີ່ມຕົ້ນການສົນທະນາ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ສະເຫມີເພີ່ມ "ຮ່າງ" ຫົວຂໍ້ສໍາລັບເອກະສານຮ່າງການພິມ @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Current Mapping Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email ໄດ້ຖືກຫມາຍວ່າເປັນສະແປມ DocType: Comment,Website Manager,ຜູ້ຈັດການເວັບໄຊທ໌ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ການອັບໂຫຼດໄຟລ໌ທີ່ຖືກປິດການເຊື່ອມຕໍ່. ກະລຸນາລອງອີກຄັ້ງ. +DocType: Data Import Beta,Show Failed Logs,ສະແດງບັນທຶກທີ່ລົ້ມເຫລວ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ການແປພາສາ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,ທ່ານ Draft ເລືອກຫຼືເອກະສານຍົກເລີກ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ເອກະສານ {0} ໄດ້ຖືກກໍານົດໃຫ້ລັດ {1} ໂດຍ {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,ເອກສານການ DocType: GSuite Templates,Destination ID,ID ຈຸດຫມາຍປາຍທາງ DocType: Desktop Icon,List,ບັນຊີລາຍຊື່ DocType: Activity Log,Link Name,ຊື່ການເຊື່ອມຕໍ່ +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,ທ່ານບໍ່ມີ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,ເລື່ອນລົງເທິງເຮືອ apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ: DocType: Print Settings,Send document web view link in email,ສົ່ງເອກະສານການເຊື່ອມຕໍ່ເບິ່ງເວັບໄຊຕໃນອີເມລ໌ @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,ເທົາເຂັ້ມ apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},ສົບຜົນສໍາເລັດ: {0} ກັບ {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ບໍ່ສາມາດມີການປ່ຽນແປງລາຍລະອຽດຂອງຜູ້ໃຊ້ໃນການສາທິດ. ກະລຸນາລົງທະບຽນສໍາລັບການບັນຊີໃຫມ່ທີ່ https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ການລຸດລົງ +DocType: Dashboard Chart,Aggregate Function Based On,ລວມ ໜ້າ ທີ່ອີງໃສ່ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,ກະລຸນາຊ້ໍານີ້ຈະເຮັດໃຫ້ການປ່ຽນແປງ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,ກົດ Enter ເພື່ອບັນທຶກ apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,ການຜະລິດ PDF ສົບຜົນສໍາເລັດເນື່ອງຈາກວ່າການເຊື່ອມໂຍງຮູບພາບທີ່ແຕກຫັກ @@ -617,7 +647,9 @@ DocType: Notification,Days Before,ວັນກ່ອນ apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ເຫດການປະ ຈຳ ວັນຄວນ ສຳ ເລັດໃນວັນດຽວກັນ. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ແກ້ໄຂ ... DocType: Workflow State,volume-down,ປະລິມານລົງ +DocType: Onboarding Slide,Help Links,ລິ້ງຊ່ວຍເຫຼືອ apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ການເຂົ້າເຖິງບໍ່ໄດ້ຮັບອະນຸຍາດຈາກທີ່ຢູ່ IP ນີ້ +DocType: Notification Settings,Enable Email Notifications,ເປີດໃຊ້ການແຈ້ງເຕືອນອີເມວ apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,ສົ່ງແຈ້ງການ DocType: DocField,Collapsible,Collapsible @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,ສຳ ຮອງສຸດທ້າຍ DocType: Customize Form Field,Customize Form Field,ປັບພາກສະຫນາມໃນແບບຟອມການ DocType: Energy Point Rule,For Document Event,ສຳ ລັບເອກະສານເຫດການ DocType: Website Settings,Chat Room Name,Chat Room Name +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,ບໍ່ປ່ຽນແປງ DocType: OAuth Client,Grant Type,ປະເພດການຊ່ວຍເຫຼືອລ້າ apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ກວດສອບເອກະສານແມ່ນສາມາດອ່ານໄດ້ໂດຍຜູ້ໃຊ້ DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ໃ DocType: Auto Repeat,Quarterly,ໄຕມາດ apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Domain Email ບໍ່ໄດ້ກໍາຫນົດສໍາລັບບັນຊີນີ້, ການສ້າງຫນຶ່ງ?" DocType: User,Reset Password Key,Key ລະຫັດຜ່ານ +DocType: Dashboard Chart,All Time,ຕະຫລອດເວລາ apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},ສະຖານະພາບເອກະສານຜິດກົດຫມາຍສໍາລັບ {0} DocType: Email Account,Enable Auto Reply,ເຮັດໃຫ້ອັດຕະໂນມັດ Reply apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ບໍ່ໄດ້ເຫັນ @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ຂ DocType: Email Account,Notify if unreplied,ແຈ້ງຖ້າຫາກວ່າ unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,ສະແກນລະຫັດ QR ແລະໃສ່ລະຫັດທີ່ໄດ້ຮັບການສະແດງ. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ເປີດໃຊ້ Gradients +DocType: Scheduled Job Type,Hourly Long,ຊົ່ວໂມງຍາວ DocType: System Settings,Minimum Password Score,ຄະແນນລະຫັດຜ່ານຂັ້ນຕ່ໍາ DocType: System Settings,Minimum Password Score,ຄະແນນລະຫັດຜ່ານຂັ້ນຕ່ໍາ DocType: DocType,Fields,ທົ່ງນາ @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ຕາຕ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,ການສໍາຮອງ S3 ສໍາເລັດ! apps/frappe/frappe/config/desktop.py,Developer,ການພັດທະນາ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,ສ້າງ +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},ເພື່ອໃຫ້ມັນສາມາດເຮັດຕາມ ຄຳ ແນະ ນຳ ໃນລິງຕໍ່ໄປນີ້: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} ຕິດຕໍ່ກັນ {1} ບໍ່ສາມາດມີທັງສອງລາຍການ URL ແລະເດັກ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},ມັນຄວນຈະເປັນອັນດັບ ໜຶ່ງ ສຳ ລັບຕາຕະລາງຕໍ່ໄປນີ້: {0} DocType: Print Format,Default Print Language,ພາສາການພິມແບບເລີ່ມຕົ້ນ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestors Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ຮາກ {0} ບໍ່ສາມາດໄດ້ຮັບການລຶບ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,ບໍ່ມີບັນທຶກລົ້ມເຫລວ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,ຍັງບໍ່ມີຄໍາເຫັນ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","ກະລຸນາ SMS ການຕັ້ງຄ່າກ່ອນການສ້າງຕັ້ງມັນເປັນວິທີການກວດສອບການ, ໂດຍຜ່ານການ SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,ທັງສອງ DocType ແລະຊື່ຕ້ອງການ @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,ລາຍະການ footer apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,ເມນູ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,ປະຈໍາວັນ +DocType: Onboarding Slide,Max Count,ນັບສູງສຸດ apps/frappe/frappe/config/users_and_permissions.py,User Roles,ພາລະບົດບາດຂອງຜູ້ໃຊ້ DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ຄຸນສົມບັດ Setter ແທນເປັນ DocType ມາດຕະຖານຫລືຄຸນສົມບັດພາກສະຫນາມ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ບໍ່ສາມາດປັບປຸງ: ບໍ່ຖືກຕ້ອງ / ວັນຫມົດອາຍຸການເຊື່ອມຕໍ່. @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",ເປົ້າຫມາຍ = "_ DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,ການເປັນເຈົ້າພາບ DocType: Data Import Beta,Import File,ເອກະສານ ນຳ ເຂົ້າ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,ຂໍ້ຜິດພາດຂອງແມ່ແບບ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,ຄໍລໍາ <b>{0}</b> ມີຢູ່ແລ້ວ. DocType: ToDo,High,ສູງ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,ເຫດການໃຫມ່ @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,ສະແດງໃນຕົວກອງ DocType: Address,Daman and Diu,Daman ແລະ Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,ໂຄງການ DocType: Address,Personal,ສ່ວນບຸກຄົນ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,ການຕັ້ງຄ່າການພິມດິບ ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,ເບິ່ງ https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region ສຳ ລັບລາຍລະອຽດ. apps/frappe/frappe/config/settings.py,Bulk Rename,ປ່ຽນຊື່ຫຼາຍ DocType: Email Queue,Show as cc,ສະແດງໃຫ້ເຫັນເປັນ cc @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ເອົາວິ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ຂໍ້ມູນເບື້ອງຕົ້ນສໍາລັບການຕິດຕໍ່ພວກເຮົາຫນ້າ DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs ລົງ +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,ການຍົກເລີກເອກະສານ DocType: User,Send Notifications for Email threads,ສົ່ງແຈ້ງການ ສຳ ລັບກະທູ້ Email apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ບໍ່ໄດ້ຢູ່ໃນຮູບແບບການພັດທະນາ @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,າຮອ DocType: DocField,In Global Search,ໃນການຊອກຫາ Global DocType: System Settings,Brute Force Security,Brute Force Force ຄວາມປອດໄພ DocType: Workflow State,indent-left,indent ຊ້າຍ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,ມັນເປັນຄວາມສ່ຽງສູງທີ່ຈະລຶບເອກະສານນີ້:. {0} ກະລຸນາຕິດຕໍ່ຈັດການລະບົບຂອງທ່ານ. DocType: Currency,Currency Name,ຊື່ສະກຸນເງິນ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No ອີເມວ @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,ສະ ໜາມ ຜູ້ໃຊ້ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ແລ້ວຍົກເລີກສໍາລັບ {1} {2} +DocType: Scheduled Job Type,Stopped,ຢຸດເຊົາການ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ບໍ່ໄດ້ເອົາ apps/frappe/frappe/desk/like.py,Liked,ຖືກໃຈ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,ສົ່ງໃນປັດຈຸບັນ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ມາດຕະຖານ DocType ບໍ່ສາມາດມີຮູບແບບການພິມໃນຕອນຕົ້ນ, ການນໍາໃຊ້ແບບຟອມທີ່ກໍາຫນົດເອງ" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ມາດຕະຖານ DocType ບໍ່ສາມາດມີຮູບແບບການພິມໃນຕອນຕົ້ນ, ການນໍາໃຊ້ແບບຟອມທີ່ກໍາຫນົດເອງ" +DocType: Server Script,Allow Guest,ອະນຸຍາດໃຫ້ແຂກ DocType: Report,Query,ການສອບຖາມ DocType: Customize Form,Sort Order,ຮຽງ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'ໃນຊີ View' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,ວິທີການສອງກວດສອບປັດໄຈ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ທໍາອິດກໍານົດຊື່ແລະບັນທຶກຂໍ້ມູນ. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ບັນທຶກ +DocType: DocType Link,Link Fieldname,Link Fieldname apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ແບ່ງປັນກັບ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ຍົກເລີກ DocType: View Log,Reference Name,ຊື່ກະສານອ້າງອີງ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ປ່ຽນຜູ້ໃຊ້ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ກ່ອນອື່ນ ໝົດ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ປັບປຸງການແປພາສາ DocType: Error Snapshot,Exception,ຂໍ້ຍົກເວັ້ນ DocType: Email Account,Use IMAP,ການນໍາໃຊ້ IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,ກົດລະບຽບກໍານົດການປ່ຽນແປງຂອງລັດໃນຂະບວນການ. DocType: File,Folder,ໂຟນເດີ DocType: Website Route Meta,Website Route Meta,ເສັ້ນທາງເວບໄຊທ໌ Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,ພາກສະຫນາມບໍລິການເລື່ອນ DocType: DocField,Index,ດັດຊະນີ DocType: Email Group,Newsletter Manager,ຜູ້ຈັດການຫນັງສືພິມ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,ທາງເລືອກ 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ກ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configure Charts DocType: User,Last IP,IP ຫຼ້າສຸດ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,ໂປດເພີ່ມຫົວເລື່ອງໃຫ້ກັບອີເມວຂອງທ່ານ -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,ເອກະສານໃຫມ່ {0} ໄດ້ຖືກແບ່ງປັນກັບທ່ານ {1}. DocType: Data Migration Connector,Data Migration Connector,ຕົວເຊື່ອມໂຍງການປ່ຽນແປງຂໍ້ມູນ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ກັບຄືນໄປບ່ອນ {1} DocType: Email Account,Track Email Status,ຕິດຕາມສະຖານະອີເມວ @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,ມາດຕະຖານລາຍຈ່ DocType: Workflow State,play,ຫຼິ້ນ apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,ໃຫ້ຄລິກໃສ່ການເຊື່ອມຕໍ່ຂ້າງລຸ່ມນີ້ເພື່ອໃຫ້ສໍາເລັດການລົງທະບຽນຂອງທ່ານແລະຕັ້ງລະຫັດຜ່ານໃຫມ່ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,ບໍ່ໄດ້ເພີ່ມ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ໄດ້ຮັບ {1} ຄະແນນ ສຳ ລັບ {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,No ບັນຊີອີເມວການມອບຫມາຍ DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,ຕິດຕໍ່ພວກເຮົາການຕັ້ງຄ່າ @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,ຊອກ DocType: Workflow State,text-width,ຂໍ້ຄວາມ width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ແນບສູງສຸດສໍາລັບບັນທຶກນີ້ບັນລຸໄດ້. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ຄົ້ນຫາໂດຍ filename ຫຼືນາມສະກຸນ +DocType: Onboarding Slide,Slide Title,ຫົວຂໍ້ເລື່ອນ DocType: Notification,View Properties (via Customize Form),ເບິ່ງຄຸນສົມບັດ (ໂດຍຜ່ານການປັບ Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ກົດທີ່ເອກະສານເພື່ອເລືອກມັນ. DocType: Note Seen By,Note Seen By,ຫມາຍເຫດເຫັນ @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Share URL DocType: System Settings,Allow Consecutive Login Attempts ,ອະນຸຍາດໃຫ້ເຂົ້າຮ່ວມຕິດຕໍ່ພົວພັນ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,ເກີດຄວາມຜິດພາດໃນລະຫວ່າງການຊໍາລະເງິນ. ກະລຸນາຕິດຕໍ່ພວກເຮົາ. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,ຖ້າຫາກວ່າ Slide Type ແມ່ນການສ້າງຫລືການຕັ້ງຄ່າມັນຄວນຈະມີວິທີການ 'create_onboarding_docs' ໃນ {ref_doctype} .py file ທີ່ຈະປະຕິບັດໄດ້ຫຼັງຈາກທີ່ເລື່ອນລົງແລ້ວ. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} days ago DocType: Email Account,Awaiting Password,ລັງລໍຖ້າການລະຫັດຜ່ານ DocType: Address,Address Line 1,ທີ່ຢູ່ Line 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,ບໍ່ Descendants ຂອງ DocType: Contact,Company Name,ຊື່ບໍລິສັດ DocType: Custom DocPerm,Role,ພາລະບົດບາດ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ການຕັ້ງຄ່າ ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ໄປທີ່ໂປແກຼມທ່ອງເວັບຂອງທ່ານ apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,ບັນທຶກ @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","ຕິດຕາມຖ້າອີເມວຂອງທ່ານຖືກເປີດໂດຍຜູ້ຮັບ. <br> ຫມາຍເຫດ: ຖ້າທ່ານສົ່ງໄປຫາຜູ້ຮັບຫລາຍໆ, ເຖິງແມ່ນວ່າຜູ້ຮັບ 1 ອ່ານອີເມວ, ມັນຈະຖືກພິຈາລະນາວ່າ "ເປີດ"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ຄ່າທີ່ຂາດຫາຍທີ່ກໍານົດໄວ້ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,ອະນຸຍາດໃຫ້ເຂົ້າໃຊ້ Google Contacts +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,ຈຳ ກັດ DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Mark ເປັນຍັງບໍ່ໄດ້ອ່ານ DocType: Activity Log,Operation,ການດໍາເນີນງານ @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,ອະນຸຍາດໃຫ້ພິມ DocType: Communication,Clicked,ຄິກ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ບໍ່ຕິດ apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ບໍ່ອະນຸຍາດໃຫ້ '{0} {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີອີເມວເລີ່ມຕົ້ນຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ກໍານົດທີ່ຈະສົ່ງ DocType: DocType,Track Seen,ຕິດຕາມຄັ້ງ DocType: Dropbox Settings,File Backup,File Backup @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,ບໍ່ມ apps/frappe/frappe/config/customization.py,Add custom forms.,ເພີ່ມຮູບແບບ custom. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ໃນ {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ສົ່ງເອກະສານນີ້ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ຕັ້ງຄ່າ> ການອະນຸຍາດຂອງຜູ້ໃຊ້ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ລະບົບການສະຫນອງພາລະບົດບາດທາງສ່ວນຫນ້າຂອງທີ່ກໍານົດຈໍານວນຫຼາຍ. ທ່ານສາມາດເພີ່ມພາລະບົດບາດໃຫມ່ໃນການກໍານົດການອະນຸຍາດ finer. DocType: Communication,CC,CC DocType: Country,Geo,ພູມິສາດ DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domains +DocType: Onboarding Slide,Domains,Domains DocType: Blog Category,Blog Category,Blog Category apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,ບໍ່ສາມາດອອກໃນແຜນທີ່ເນື່ອງຈາກວ່າສະພາບດັ່ງຕໍ່ໄປນີ້ສາມາດ: DocType: Role Permission for Page and Report,Roles HTML,ພາລະບົດບາດ HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,ວັນເສົາ DocType: User,Represents a User in the system.,ເປັນຕົວແທນຜູ້ໃຊ້ໃນລະບົບໄດ້. DocType: List View Setting,Disable Auto Refresh,ປິດໃຊ້ງານ Refresh ໂດຍອັດຕະໂນມັດ DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","ວຽກງານທີ່ໄດ້ {0}, ທີ່ທ່ານມອບຫມາຍໃຫ້ {1}, ໄດ້ຮັບການປິດ." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ກະລຸນາປິດຫນ້າຕ່າງນີ້ DocType: Print Format,Print Format Type,ພິມປະເພດຮູບແບບ DocType: Newsletter,A Lead with this Email Address should exist,ເປັນຜູ້ນໍາພາທີ່ມີທີ່ຢູ່ອີເມວນີ້ຄວນຈະມີ @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,ການຕັ້ງ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ເລືອກເອົາ DocType: Data Export,Filter List,Filter list DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: ມມ DocType: Email Account,Auto Reply Message,ອັດຕະໂນມັດ Reply ຂໍ້ຄວາມ DocType: Data Migration Mapping,Condition,ສະພາບ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ຊົ່ວໂມງກ່ອນຫນ້ານີ້ @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ຖານຄວາມຮູ້ການປະກອບສ່ວນ DocType: Communication,Sent Read Receipt,ສົ່ງອ່ານ Receipt DocType: Email Queue,Unsubscribe Method,ວິທີການຍົກເລີກ +DocType: Onboarding Slide,Add More Button,ໃສ່ປຸ່ມເພີ່ມເຕີມ DocType: GSuite Templates,Related DocType,DocType ທີ່ກ່ຽວຂ້ອງ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,ແກ້ໄຂທີ່ຈະເພີ່ມເນື້ອໃນ apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ເລືອກພາສາ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,ລາຍະລະອຽດຂອງບັດ apps/frappe/frappe/__init__.py,No permission for {0},ບໍ່ມີການອະນຸຍາດສໍາລັບການ {0} DocType: DocType,Advanced,ກ້າວຫນ້າທາງດ້ານ +DocType: Onboarding Slide,Slide Image Source,ແຫລ່ງຮູບພາບພາບສະໄລ້ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,ເບິ່ງຄືວ່າ Key API ຫຼື API ລັບແມ່ນຜິດພາດ !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},ກະສານອ້າງອີງ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,ນາງ @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ໂທ DocType: DocType,User Cannot Create,ຜູ້ໃຊ້ບໍ່ສາມາດສ້າງ apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ສຳ ເລັດແລ້ວ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ການເຂົ້າເຖິງ Dropbox ອະນຸມັດ! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການຮວມຕົວ {0} ກັບ {1}? DocType: Customize Form,Enter Form Type,ກະລຸນາໃສ່ປະເພດແບບຟອມການ DocType: Google Drive,Authorize Google Drive Access,ອະນຸຍາດການເຂົ້າເຖິງ Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Missing parameter Kanban Board Name @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ໃຫ້ DocType, DocType. ລະມັດລະວັງ!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ຮູບແບບການລູກຄ້າສໍາລັບການພິມ, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},ຜົນລວມຂອງ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,ການປັບປຸງເພື່ອສະບັບໃຫມ່ DocType: Custom Field,Depends On,ຂຶ້ນກັບ DocType: Kanban Board Column,Green,ສີຂຽວ DocType: Custom DocPerm,Additional Permissions,ການອະນຸຍາດເພີ່ມເຕີມ @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,ສັງຄົມ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar - ບໍ່ສາມາດສ້າງປະຕິທິນ ສຳ ລັບ {0}, ລະຫັດຜິດພາດ {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,ການແກ້ໄຂແຖວ DocType: Workflow Action Master,Workflow Action Master,Workflow ປະຕິບັດປະລິນຍາໂທ +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,ລົບທັງຫມົດ DocType: Custom Field,Field Type,ປະເພດພາກສະຫນາມ apps/frappe/frappe/utils/data.py,only.,ພຽງແຕ່. DocType: Route History,Route History,Route History @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,ລືມລະຫັດຜ DocType: System Settings,yyyy-mm-dd,"yyyy ມມ, dd" apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error Server +DocType: Server Script,After Delete,ຫຼັງຈາກ Delete ແລ້ວ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,ເບິ່ງການລາຍງານທັງ ໝົດ ທີ່ຜ່ານມາ. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Id ເຂົ້າສູ່ລະບົບທີ່ຕ້ອງການ DocType: Website Slideshow,Website Slideshow,Slideshow ເວັບໄຊທ໌ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ບໍ່ມີຂໍ້ມູນ DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","ການເຊື່ອມຕໍ່ທີ່ເປັນຫນ້າທໍາອິດເວັບໄຊທ໌. Links ມາດຕະຖານ (ດັດຊະນີ, ເຂົ້າສູ່ລະບົບ, ຜະລິດຕະພັນ, blog, ປະມານ, ການຕິດຕໍ່)" +DocType: Server Script,After Submit,ຫລັງຈາກສົ່ງ apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ການກວດສອບສົບຜົນສໍາເລັດໃນຂະນະທີ່ໄດ້ຮັບອີເມວຈາກບັນຊີອີເມວ {0}. ຂໍ້ຄວາມຈາກເຄື່ອງແມ່ຂ່າຍ: {1} DocType: User,Banner Image,ປ້າຍໂຄສະນາຮູບພາບ DocType: Custom Field,Custom Field,ພາກສະຫນາມທີ່ກໍາຫນົດເອງ @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","ຖ້າຫາກວ່າຜູ້ໃຊ້ທີ່ມີພາລະບົດບາດການກວດກາ, ຫຼັງຈາກນັ້ນຜູ້ໃຊ້ຈະກາຍເປັນ "ລະບົບຜູ້ໃຊ້". "ລະບົບຜູ້ໃຊ້" ມີການເຂົ້າເຖິງ desktop ໄດ້" DocType: System Settings,Date and Number Format,ວັນແລະຈໍານວນຮູບແບບ apps/frappe/frappe/model/document.py,one of,ຫນຶ່ງໃນ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ຕັ້ງຄ່າ> ປັບແຕ່ງແບບຟອມ apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ການກວດສອບແຕ່ປັດຈຸບັນ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,ສະແດງໃຫ້ເຫັນ Tags DocType: DocField,HTML Editor,HTML Editor 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,ການກະທໍາ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ຕັ້ງຄ່າ> ຜູ້ໃຊ້ +DocType: DocType,Actions,ການກະທໍາ DocType: Workflow State,align-justify,"ວາງ, ປັບ" DocType: User,Middle Name (Optional),ຊື່ກາງ (ຖ້າຕ້ອງການ) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,ບໍ່ອະນຸຍາດ @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ບໍ່ DocType: System Settings,Security,ຄວາມປອດໄພ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,ກໍານົດທີ່ຈະສົ່ງໄປ {0} ຜູ້ຮັບ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ຕັດ +DocType: Server Script,After Save,ຫລັງຈາກ Save apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},ປ່ຽນຊື່ຈາກ {0} ກັບ {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} ຂອງ {1} ({2} ແຖວກັບເດັກນ້ອຍ) DocType: Currency,**Currency** Master,** ສະກຸນເງິນ ** ລິນຍາໂທ @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,Value Values DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,ລົ້ມເຫລວ DocType: Workflow State,download-alt,"ດາວໂຫລດ, alt" +DocType: Scheduled Job Type,Last Execution,ການປະຕິບັດຄັ້ງສຸດທ້າຍ DocType: Data Migration Run,Pull Failed,ດຶງລົ້ມເຫລວ apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,ສະແດງ / ເຊື່ອງບັດ DocType: Communication,Feedback Request,ຜົນຕອບຮັບຄໍາຮ້ອງຂໍ apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,ນໍາເຂົ້າຂໍ້ມູນຈາກໄຟລ໌ CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ທົ່ງນາດັ່ງຕໍ່ໄປນີ້ຍັງບໍ່ໄດ້ຫາຍ: +DocType: Notification Log,From User,ຈາກຜູ້ໃຊ້ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},ຍົກເລີກ {0} DocType: Web Page,Main Section,ພາກສ່ວນຕົ້ນຕໍ DocType: Page,Icon,icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: ລວມສັນຍາລັກ, ຕົວເລກແລະຕົວອັກສອນນະຄອນຫຼວງໃນລະຫັດຜ່ານ" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: ລວມສັນຍາລັກ, ຕົວເລກແລະຕົວອັກສອນນະຄອນຫຼວງໃນລະຫັດຜ່ານ" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","ຕັ້ງຄ່າແຈ້ງການ ສຳ ລັບການກ່າວເຖິງ, ການມອບ ໝາຍ, ຈຸດພະລັງງານແລະອື່ນໆ." DocType: DocField,Allow in Quick Entry,ອະນຸຍາດໃຫ້ເຂົ້າດ່ວນ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,URL ຫົວຂໍ້ DocType: Customize Form,Sort Field,ການຈັດລຽງພາກສະຫນາມ DocType: Razorpay Settings,Razorpay Settings,ການຕັ້ງຄ່າ Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ດັດແກ້ Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,ເພີ່ມເຕີມ DocType: System Settings,Session Expiry Mobile,ກອງປະຊຸມສຸດການຈໍາຫນ່າຍໂທລະສັບມືຖື apps/frappe/frappe/utils/password.py,Incorrect User or Password,ຜູ້ໃຊ້ທີ່ບໍ່ຖືກຕ້ອງຫຼືລະຫັດຜ່ານ apps/frappe/frappe/templates/includes/search_box.html,Search results for,ຜົນການຄົ້ນຫາສໍາລັບ @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,ກົດລະບຽບຈຸດພະລັງງານ DocType: Communication,Delayed,ຊັກຊ້າ apps/frappe/frappe/config/settings.py,List of backups available for download,ບັນຊີລາຍຊື່ຂອງສໍາຮອງຂໍ້ມູນທີ່ມີຢູ່ສໍາລັບດາວໂຫລດ +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,ລອງ ນຳ ເຂົ້າຂໍ້ມູນ ໃໝ່ apps/frappe/frappe/www/login.html,Sign up,ລົງທະບຽນ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,ແຖວ {0}: ບໍ່ອະນຸຍາດໃຫ້ປິດການບັງຄັບໃຊ້ສໍາລັບທົ່ງນາມາດຕະຖານ +DocType: Webhook,Enable Security,ເປີດໃຊ້ຄວາມປອດໄພ apps/frappe/frappe/config/customization.py,Dashboards,ແຜງຄວບຄຸມ DocType: Test Runner,Output,ຜົນຜະລິດ DocType: Milestone,Track Field,ຕິດຕາມສະ ໜາມ @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,ຕັ້ງຄ່າ Property apps/frappe/frappe/config/customization.py,Add fields to forms.,ຕື່ມການຂົງເຂດທີ່ຮູບແບບ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ເບິ່ງຄືວ່າບາງສິ່ງບາງຢ່າງຜິດພາດກັບການຕັ້ງຄ່າ Paypal ຂອງເວັບໄຊນີ້. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,ຕື່ມການທົບທວນຄືນ +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} ໄດ້ມອບ ໝາຍ ວຽກ ໃໝ່ {1} {2} ໃຫ້ທ່ານ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ຂະ ໜາດ ຕົວອັກສອນ (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ພຽງແຕ່ DocTypes ມາດຕະຖານເທົ່ານັ້ນທີ່ຖືກອະນຸຍາດໃຫ້ຖືກປັບແຕ່ງຈາກແບບຟອມປັບແຕ່ງ. DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,Menu Item Portal apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ຕັ້ງຄ່າຕົວກອງ DocType: Contact Us Settings,Email ID,ID Email DocType: Energy Point Rule,Multiplier Field,ພາກສະ ໜາມ ຄູນ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,ບໍ່ສາມາດສ້າງ ຄຳ ສັ່ງ Razorpay. ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບ DocType: Dashboard Chart,Time Interval,ຊ່ວງເວລາ DocType: Activity Log,Keep track of all update feeds,ຮັກສາຕິດຕາມການອັບເດດທັງຫມົດ +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ໄດ້ແບ່ງປັນເອກະສານ {1} {2} ກັບທ່ານ DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,ບັນຊີລາຍຊື່ຂອງຊັບພະຍາກອນ A ທີ່ App Client ຈະມີການເຂົ້າເຖິງພາຍຫຼັງທີ່ຜູ້ໃຊ້ອະນຸຍາດໃຫ້ມັນ. <br> ຕົວຢ່າງໂຄງການ DocType: Translation,Translated Text,ແປຂໍ້ຄວາມ DocType: Contact Us Settings,Query Options,ຕົວເລືອກການສອບຖາມ @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,ທີ່ສໍາຄັນ DocType: Address,Contacts,ຕິດຕໍ່ພົວພັນ DocType: System Settings,Setup Complete,ການຕິດຕັ້ງສໍາເລັດ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ບົດລາຍງານຂອງຮຸ້ນເອກະສານທັງຫມົດ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ແມ່ແບບການ ນຳ ເຂົ້າຄວນມີປະເພດ .csv, .xlsx ຫຼື .xls" apps/frappe/frappe/www/update-password.html,New Password,ລະຫັດຜ່ານໃຫມ່ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ການກັ່ນຕອງ {0} ທີ່ຂາດຫາຍໄປ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ຂໍໂທດ! ທ່ານບໍ່ສາມາດລົບຄວາມຄິດເຫັນອັດຕະໂນມັດສ້າງ @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,ແລ່ນ DocType: Blog Post,Content (HTML),ເນື້ອຫາ (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,ການຕິດຕັ້ງສໍາລັບ DocType: Personal Data Download Request,User Name,ຊື່ຜູ້ໃຊ້ DocType: Workflow State,minus-sign,"ເຄື່ອງຫມາຍລົບ, ອາການ" apps/frappe/frappe/public/js/frappe/request.js,Not Found,ບໍ່ພົບ @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,ບໍ່ມີ {0} ກາ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ສົ່ງອອກການອະນຸຍາດ Custom apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ບໍ່ພົບລາຍການ. DocType: Data Export,Fields Multicheck,Fields Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} ສຳ ເລັດ DocType: Activity Log,Login,ເຂົ້າສູ່ລະບົບ DocType: Web Form,Payments,ການຊໍາລະເງິນ apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,ການເຊື່ອມໂຍງ Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} ໄດ້ກັບຄືນຈຸດຂອງທ່ານໃນ {1} {2} DocType: System Settings,Enable Scheduled Jobs,ເຮັດໃຫ້ວຽກຕາມຕາຕະລາງ apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,ຫມາຍເຫດ: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inactive @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ແບ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Error Permission apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},ຊື່ຂອງ {0} ບໍ່ສາມາດຈະ {1} DocType: User Permission,Applicable For,ສາມາດນໍາໃຊ້ສໍາລັບ +DocType: Dashboard Chart,From Date,ຈາກວັນທີ່ apps/frappe/frappe/core/doctype/version/version_view.html,Success,ຄວາມສໍາເລັດ apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ກອງປະຊຸມຫມົດອາຍຸ apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ກອງປະຊຸມຫມົດອາຍຸ @@ -1480,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ຄ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ບໍລິການສະພາບ DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,ຮູບພາບ -apps/frappe/frappe/www/complete_signup.html,Complete,ສົມບູນ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ສົມບູນ DocType: DocType,Image Field,ມືພາກສະຫນາມຮູບພາບ DocType: Print Format,Custom HTML Help,ຊ່ວຍເຫຼືອ HTML Custom DocType: LDAP Settings,Default Role on Creation,ພາລະບົດບາດໃນຕອນຕົ້ນກ່ຽວກັບການສ້າງ @@ -1488,6 +1549,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,State ຕໍ່ໄປ DocType: User,Block Modules,Modules Block DocType: Print Format,Custom CSS,CSS Custom +DocType: Energy Point Rule,Apply Only Once,ສະ ໝັກ ດຽວເທົ່ານັ້ນ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ເພີ່ມຄວາມຄິດເຫັນ DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},ບໍ່ສົນໃຈ: {0} ກັບ {1} @@ -1499,6 +1561,7 @@ DocType: Email Account,Default Incoming,ມາດຕະຖານເຂົ້າ DocType: Workflow State,repeat,ຊ້ໍາ DocType: Website Settings,Banner,ປ້າຍໂຄສະນາ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},ຄຸນຄ່າຕ້ອງແມ່ນ ໜຶ່ງ ໃນ {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,ຍົກເລີກເອກະສານທັງ ໝົດ DocType: Role,"If disabled, this role will be removed from all users.","ຖ້າຫາກວ່າເປັນຄົນພິການ, ພາລະບົດບາດນີ້ຈະໄດ້ຮັບການໂຍກຍ້າຍອອກຈາກຜູ້ໃຊ້ທັງຫມົດ." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,ໄປທີ່ {0} ລາຍຊື່ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ຊ່ວຍເຫຼືອໃນການຄົ້ນຫາ @@ -1507,6 +1570,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ທະບ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Auto Repeat ສຳ ລັບເອກະສານນີ້ໄດ້ຖືກປິດໃຊ້ງານແລ້ວ. DocType: DocType,Hide Copy,ຊ່ອນ Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ອະນາໄມພາລະບົດບາດທັງຫມົດ +DocType: Server Script,Before Save,ກ່ອນທີ່ຈະປະຢັດ apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ຕ້ອງເປັນເອກະລັກ apps/frappe/frappe/model/base_document.py,Row,ຕິດຕໍ່ກັນ apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1517,7 +1581,6 @@ DocType: Chat Profile,Offline,ອອຟໄລ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},ການ ນຳ ເຂົ້າຢ່າງ ສຳ ເລັດແລ້ວ {0} DocType: User,API Key,Key API DocType: Email Account,Send unsubscribe message in email,ສົ່ງຂໍ້ຄວາມຍົກເລີກໃນອີເມລ໌ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ດັດແກ້ຫົວຂໍ້ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,fieldname ທີ່ຈະ DocType ສໍາລັບພາກສະຫນາມການເຊື່ອມຕໍ່ນີ້. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,ເອກະສານມອບຫມາຍໃຫ້ທ່ານແລະໂດຍທ່ານ. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,ທ່ານຍັງສາມາດຄັດລອກສິ່ງນີ້ໄດ້ @@ -1549,8 +1612,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,ຄັດຕິດຮູບພາບ DocType: Workflow State,list-alt,"ບັນຊີລາຍຊື່, alt" apps/frappe/frappe/www/update-password.html,Password Updated,ລະຫັດຜ່ານ Updated +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ຕັ້ງຄ່າ> ການອະນຸຍາດຂອງຜູ້ໃຊ້ apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ຂັ້ນຕອນໃນການກວດສອບລະບົບຂອງທ່ານ apps/frappe/frappe/utils/password.py,Password not found,ບໍ່ພົບລະຫັດຜ່ານ +DocType: Webhook,Webhook Secret,Webhook ລັບ DocType: Data Migration Mapping,Page Length,Page Length DocType: Email Queue,Expose Recipients,expose ຜູ້ຮັບ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ເພີ່ມເຕີມເພື່ອເປັນການບັງຄັບສໍາລັບການຈົດຫມາຍຂາເຂົ້າ @@ -1578,6 +1643,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,ລະບົບ DocType: Web Form,Max Attachment Size (in MB),ນ້ໍາຂະຫນາດ Attachment (ໃນ MB) apps/frappe/frappe/www/login.html,Have an account? Login,ມີບັນຊີ? ເຂົ້າສູ່ລະບົບ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,ຕັ້ງຄ່າການພິມ ... DocType: Workflow State,arrow-down,ລູກສອນລົງ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ແຖວ {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ຜູ້ໃຊ້ບໍ່ອະນຸຍາດໃຫ້ລົບ {0}: {1} @@ -1599,6 +1665,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ກະລ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ເຂົ້າ Secret DocType: Tag Link,Document Title,ຫົວຂໍ້ເອກະສານ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ບັງຄັບ) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ DocType: Social Login Key,Social Login Provider,ຜູ້ໃຫ້ບໍລິການສັງຄົມ apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ຕື່ມການຄໍາເຫັນອີກປະການຫນຶ່ງ apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ບໍ່ພົບຂໍ້ມູນໃນໄຟລ໌. ກະລຸນາແນບໄຟລ໌ໃຫມ່ດ້ວຍຂໍ້ມູນ. @@ -1613,11 +1680,12 @@ DocType: Workflow State,hand-down,ມືລົງ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",ບໍ່ພົບເຂດຂໍ້ມູນໃດໆທີ່ສາມາດໃຊ້ເປັນຖັນ Kanban. ໃຊ້ແບບຟອມການປັບແຕ່ງເພື່ອເພີ່ມ Custom Field of type "ເລືອກ". DocType: Address,GST State,State GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: ບໍ່ສາມາດກໍານົດໄວ້ຍົກເລີກໂດຍບໍ່ມີການຍື່ນສະເຫນີການ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ຜູ້ໃຊ້ ({0}) DocType: Website Theme,Theme,Theme DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,ຕົວຊີ້ທິດທາງ URI ຜູກພັນກັບ Auth ລະຫັດ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,ເປີດການຊ່ວຍເຫຼືອ DocType: DocType,Is Submittable,ແມ່ນສົ່ງ -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Mention ໃຫມ່ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Mention ໃຫມ່ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ບໍ່ມີລາຍຊື່ຜູ້ຕິດຕໍ່ Google ໃໝ່. DocType: File,Uploaded To Google Drive,ອັບໂຫລດໄປ Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ມູນຄ່າສໍາລັບການພາກສະຫນາມການກວດກາສາມາດຈະບໍ່ວ່າຈະ 0 ຫລື 1 @@ -1629,7 +1697,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,inbox DocType: Kanban Board Column,Red,ສີແດງ DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,script +DocType: Report,Script,script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ເອກະສານບໍ່ສາມາດບັນທືກໄດ້. DocType: Energy Point Rule,Maximum Points,ຈຸດສູງສຸດ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,ການຕັ້ງຄ່າຂອງຂ້າພະເຈົ້າ @@ -1659,9 +1727,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} ຈຸດຊື່ນຊົມ ສຳ ລັບ {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ພາລະບົດບາດສາມາດໄດ້ຮັບການກໍານົດໄວ້ສໍາລັບຜູ້ຊົມໃຊ້ຈາກຫນ້າຜູ້ໃຊ້ຂອງເຂົາເຈົ້າ. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,ຕື່ມການຄໍາເຫັນ +DocType: Dashboard Chart,Select Date Range,ເລືອກຊ່ວງວັນທີ DocType: DocField,Mandatory,ການບັງຄັບ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ໂມດູນການສົ່ງອອກ +DocType: Scheduled Job Type,Monthly Long,ຍາວປະ ຈຳ ເດືອນ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: ບໍ່ມີກໍານົດໄວ້ສິດທິຂັ້ນພື້ນຖານ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,ສົ່ງອີເມວຫາ {0} ເພື່ອເຊື່ອມຕໍ່ກັບມັນຢູ່ບ່ອນນີ້ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","ຊຶ່ງຫມາຍຄວາມວ່າຂອງຍື່ນສະເຫນີການ, ຍົກເລີກການ, ແກ້ໄຂ" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ຈະເຮັດແນວໃດ @@ -1670,7 +1741,6 @@ DocType: Milestone Tracker,Track milestones for any document,ຕິດຕາມ DocType: Social Login Key,Identity Details,ລາຍລະອຽດຂອງຕົວຕົນ apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},ການຫັນປ່ຽນການເຮັດວຽກຂອງລັດບໍ່ໄດ້ຮັບອະນຸຍາດຈາກ {0} ເຖິງ {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ສະແດງກະດານຄວບຄຸມ -apps/frappe/frappe/desk/form/assign_to.py,New Message,ຂໍ້ຄວາມໃຫມ່ DocType: File,Preview HTML,ສະແດງ HTML DocType: Desktop Icon,query-report,"ແບບສອບຖາມ, ລາຍງານ" DocType: Data Import Beta,Template Warnings,ຄຳ ເຕືອນກ່ຽວກັບແມ່ແບບ @@ -1681,18 +1751,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,ການເ apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,ຕັ້ງຄ່າລາຍ Email ແກ້ໄຂອັດຕະໂນມັດ DocType: Chat Room,Message Count,Message Count DocType: Workflow State,book,ຫນັງສື +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ຕິດພັນກັບເອກະສານທີ່ສົ່ງຕໍ່ໄປນີ້: {2} DocType: Communication,Read by Recipient,ອ່ານໂດຍຜູ້ຮັບ DocType: Website Settings,Landing Page,ຫນ້າທີ່ດິນ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Error ໃນ Script Custom apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} ຊື່ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ບໍ່ມີການອະນຸຍາດທີ່ກໍານົດໄວ້ສໍາລັບເງື່ອນໄຂນີ້. DocType: Auto Email Report,Auto Email Report,Report Email Auto +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,ແບ່ງປັນເອກະສານ ໃໝ່ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,ລົບຄວາມຄິດເຫັນ? DocType: Address Template,This format is used if country specific format is not found,ຮູບແບບນີ້ຖືກນໍາໃຊ້ຖ້າຫາກວ່າປະເທດຮູບແບບສະເພາະໃດຫນຶ່ງບໍ່ໄດ້ພົບເຫັນ DocType: System Settings,Allow Login using Mobile Number,ອະນຸຍາດໃຫ້ເຂົ້າສູ່ລະບົບໂດຍໃຊ້ຈໍານວນໂທລະສັບມືຖື apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,ທ່ານບໍ່ມີການອະນຸຍາດພຽງພໍທີ່ຈະເຂົ້າເຖິງຊັບພະຍາກອນນີ້. ກະລຸນາຕິດຕໍ່ຜູ້ຈັດການຂອງທ່ານເພື່ອໃຫ້ໄດ້ຮັບການເຂົ້າເຖິງ. DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ຖ້າເປີດໃຊ້, ຜູ້ທີ່ເຂົ້າສູ່ລະບົບຈາກທີ່ຢູ່ IP ທີ່ຈໍາກັດ, ຈະບໍ່ໄດ້ຮັບການແຈ້ງເຕືອນສໍາລັບ Two Factor Auth" +DocType: Server Script,After Cancel,ຫລັງຈາກຍົກເລີກ DocType: Auto Repeat,Get Contacts,Get Contacts apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ກະທູ້ຍື່ນພາຍໃຕ້ການ {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ຂ້າມຄໍ ລຳ ທີ່ບໍ່ມີຊື່ @@ -1703,6 +1776,7 @@ DocType: User,Login After,ເຂົ້າສູ່ລະບົບຫລັງຈ DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,ການພິມ DocType: Workflow State,thumbs-up,ຍົກໂປ້ +DocType: Notification Log,Mention,ກ່າວເຖິງ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ອັກສອນ apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision ຄວນຈະມີລະຫວ່າງ 1 ແລະ 6 @@ -1710,7 +1784,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ແລະ apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},ບົດລາຍງານນີ້ຖືກສ້າງຂຶ້ນໃນ {0} DocType: Error Snapshot,Frames,ກອບ -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ການມອບຫມາຍ +DocType: Notification Log,Assignment,ການມອບຫມາຍ DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Link Image DocType: Auto Email Report,Report Filters,ການກັ່ນຕອງບົດລາຍງານ @@ -1727,7 +1801,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ບໍ່ສາມາດທີ່ຈະປັບປຸງກິດຈະກໍາ apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,ລະຫັດຢືນຢັນໄດ້ຖືກສົ່ງໄປຫາທີ່ຢູ່ອີເມລ໌ທີ່ຈົດທະບຽນຂອງທ່ານ. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,ເປົ້າ ໝາຍ ຂອງທ່ານ apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ການກັ່ນຕອງຕ້ອງມີ 4 ຄ່າ (DOCTYPE, fieldName, ປະຕິບັດການ, ມູນຄ່າ): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},ບໍ່ມີຊື່ສະເພາະ ສຳ ລັບ {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,ນຳ ໃຊ້ກົດລະບຽບການມອບ ໝາຍ apps/frappe/frappe/utils/bot.py,show,ສະແດງໃຫ້ເຫັນ apps/frappe/frappe/utils/data.py,Invalid field name {0},ຊື່ພາກສະຫນາມບໍ່ຖືກຕ້ອງ {0} @@ -1737,7 +1813,6 @@ DocType: Workflow State,text-height,ຂໍ້ຄວາມລະດັບຄວ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ການວາງແຜນແຜນການຍ້າຍຖິ່ນຖານຂໍ້ມູນ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,ເລີ່ມຕົ້ນ Frapp ... DocType: Web Form Field,Max Length,Length Max -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},ສຳ ລັບ {0} {1} DocType: Print Format,Jinja,ຈິນ DocType: Workflow State,map-marker,"ແຜນທີ່, ເຄື່ອງຫມາຍ" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ຍື່ນສະເຫນີບັນຫາ @@ -1773,6 +1848,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,ຫນ້າທີ່ຂ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,ການທົບທວນຄືນ DocType: DocType,Route,ເສັ້ນທາງ apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay ຕັ້ງຄ່າເກດເວຊໍາລະເງິນ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ໄດ້ຮັບ {1} ຈຸດ ສຳ ລັບ {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,ດຶງຮູບພາບທີ່ຕິດຄັດມາຈາກເອກະສານ DocType: Chat Room,Name,ຊື່ DocType: Contact Us Settings,Skype,Skype @@ -1783,7 +1859,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,ເປີດ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,ພາສາຂອງທ່ານ DocType: Dashboard Chart,Average,ສະເລ່ຍ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,ເພີ່ມແຖວ -DocType: Tag Category,Doctypes,DOCTYPE apps/frappe/frappe/public/js/frappe/form/print.js,Printer,ເຄື່ອງພິມ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,ສອບຖາມຕ້ອງເປັນການຄັດເລືອກ DocType: Auto Repeat,Completed,ສໍາເລັດ @@ -1843,6 +1918,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,ການຕັ້ງຄ່າຈຸດພະລັງງານ DocType: Async Task,Succeeded,ສົບຄວາມສໍາເລັດ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ໃສ່ຂໍ້ມູນທີ່ຕ້ອງການໃນ {0} +DocType: Onboarding Slide Field,Align,ຈັດລຽນ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,ການອະນຸຍາດປັບ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ຜູ້ຊົມໃຊ້ແລະການອະນຸຍາດ DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1859,7 +1935,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ຊື່ຮູບແບບການພິມ ໃໝ່ apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ກົດເຂົ້າໄປທີ່ລິງຂ້າງລຸ່ມນີ້ເພື່ອອະນຸມັດ ຄຳ ຮ້ອງຂໍ DocType: Workflow State,align-left,ວາງຊ້າຍ +DocType: Onboarding Slide,Action Settings,ການຕັ້ງຄ່າການປະຕິບັດງານ DocType: User,Defaults,ຄ່າເລີ່ມຕົ້ນ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ສຳ ລັບການປຽບທຽບ, ໃຊ້> 5, <10 ຫລື = 324. ສຳ ລັບຂອບເຂດ, ໃຫ້ໃຊ້ 5:10 (ສຳ ລັບຄ່າລະຫວ່າງ 5 ແລະ 10)." DocType: Energy Point Log,Revert Of,ການກັບຄືນຂອງ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,merge ກັບທີ່ມີຢູ່ແລ້ວ DocType: User,Birth Date,ວັນເດືອນປີເກີດ @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ໃນ DocType: Notification,Value Change,ການປ່ຽນແປງມູນຄ່າ DocType: Google Contacts,Authorize Google Contacts Access,ອະນຸຍາດການເຂົ້າເຖິງລາຍຊື່ຜູ້ຕິດຕໍ່ Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ສະແດງໃຫ້ເຫັນພຽງແຕ່ທົ່ງພຽງ Numeric ຈາກລາຍງານ +apps/frappe/frappe/utils/data.py,1 week ago,1 ອາທິດຜ່ານມາ DocType: Data Import Beta,Import Type,ປະເພດການ ນຳ ເຂົ້າ DocType: Access Log,HTML Page,ໜ້າ HTML DocType: Address,Subsidiary,ບໍລິສັດຍ່ອຍ @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,ມີຈົດຫມາຍ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ບໍ່ຖືກຕ້ອງ Mail Server ລາຍຈ່າຍຫຼື Port DocType: Custom DocPerm,Write,ຂຽນ -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ພຽງແຕ່ຜູ້ບໍລິຫານອະນຸຍາດໃຫ້ສ້າງ Query Reports / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,ການປັບປຸງ DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ພາກສະຫນາມ "value" ເປັນການບັງຄັບ. ກະລຸນາລະບຸຄ່າທີ່ຈະໄດ້ຮັບການປັບປຸງ @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,ເຊີ DocType: Data Migration Run,Started,ເລີ່ມຕົ້ນ apps/frappe/frappe/permissions.py,User {0} does not have access to this document,ຜູ້ໃຊ້ {0} ບໍ່ສາມາດເຂົ້າເຖິງເອກະສານນີ້ DocType: Data Migration Run,End Time,ທີ່ໃຊ້ເວລາສຸດທ້າຍ +DocType: Dashboard Chart,Group By Based On,ກຸ່ມໂດຍອີງໃສ່ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ເລືອກ Attachments apps/frappe/frappe/model/naming.py, for {0},{0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ພິມເອກະສານນີ້ @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ກວດສອບ DocType: Workflow Document State,Update Field,ການປັບປຸງສະຫນາມ DocType: Chat Profile,Enable Chat,ເປີດການສົນທະນາ DocType: LDAP Settings,Base Distinguished Name (DN),ຖານຊື່ເພາະ (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ອອກຈາກການສົນທະນານີ້ apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ທາງເລືອກໃນການໄດ້ກໍານົດສໍາລັບການພາກສະຫນາມການເຊື່ອມຕໍ່ {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,ແຖວ / ກຳ ມະກອນ @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,ເຂົ້າສູ່ລະບົບບໍ່ອະນຸຍາດໃຫ້ຢູ່ໃນເວລານີ້ DocType: Data Migration Run,Current Mapping Action,Action Mapping ປັດຈຸບັນ DocType: Dashboard Chart Source,Source Name,ແຫຼ່ງຊື່ -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ບໍ່ມີບັນຊີອີເມວທີ່ກ່ຽວຂ້ອງກັບຜູ້ໃຊ້. ກະລຸນາເພີ່ມບັນຊີພາຍໃຕ້ຜູ້ໃຊ້> Inbox Email. DocType: Email Account,Email Sync Option,Email Option Sync apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Row No DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,ຖືກຕິດຂັດ DocType: Contact Us Settings,Introduction,ການນໍາສະເຫນີ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,ຕ້ອງການຄວາມຊ່ວຍເຫຼືອ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin ທົ່ວໂລກ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ຕິດຕາມດ້ວຍ DocType: LDAP Settings,LDAP Email Field,ມືພາກສະຫນາມ Email LDAP @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ແລ້ DocType: User Email,Enable Outgoing,ເຮັດໃຫ້ລາຍຈ່າຍ DocType: Address,Fax,ແຟໍກ apps/frappe/frappe/config/customization.py,Custom Tags,Tags Custom -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕິດຕັ້ງ. ກະລຸນາສ້າງບັນຊີອີເມວ ໃໝ່ ຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ DocType: Comment,Submitted,ສົ່ງ DocType: Contact,Pulled from Google Contacts,ດຶງຈາກ Google Contacts apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,ໃນການຮ້ອງຂໍທີ່ຖືກຕ້ອງ @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ຫນ້ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,ໄດ້ມອບຫມາຍໃຫ້ຂ້າພະເຈົ້າ DocType: DocField,Dynamic Link,ການເຊື່ອມຕໍ່ການເຄື່ອນໄຫວ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ກົດ Alt Key ເພື່ອກະຕຸ້ນທາງລັດເພີ່ມເຕີມໃນ Menu ແລະ Sidebar +DocType: Dashboard Chart,To Date,ຈົນເຖິງວັນທີ່ DocType: List View Setting,List View Setting,ຕັ້ງຄ່າການເບິ່ງລາຍການ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,ສະແດງໃຫ້ເຫັນສົບຜົນສໍາເລັດວຽກເຮັດງານທໍາ -DocType: Event,Details,ລາຍລະອຽດ +DocType: Scheduled Job Log,Details,ລາຍລະອຽດ DocType: Property Setter,DocType or Field,DocType ຫຼືພາກສະຫນາມ apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,ທ່ານບໍ່ໄດ້ເອກະສານນີ້ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,ສີປະຖົມ @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ເບິ່ງຄືວ່າທີ່ສໍາຄັນເຜີຍແຜ່ຫລື Secret Key ບໍ່ຖືກຕ້ອງ !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ເບິ່ງຄືວ່າທີ່ສໍາຄັນເຜີຍແຜ່ຫລື Secret Key ບໍ່ຖືກຕ້ອງ !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,ຄວາມຊ່ວຍເຫລືອດ່ວນສໍາລັບການສ້າງຕັ້ງການອະນຸຍາດ -DocType: Tag Doc Category,Doctype to Assign Tags,doctype ການກໍາຫນົດ Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,ສະແດງໃຫ້ເຫັນການກໍາເລີບ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Email ໄດ້ຖືກຍ້າຍໄປກະຕ່າຂີ້ເຫຍື້ອ DocType: Report,Report Builder,Builder ບົດລາຍງານ @@ -2105,6 +2184,7 @@ DocType: Workflow State,Upload,Upload DocType: User Permission,Advanced Control,Advanced Control DocType: System Settings,Date Format,ຮູບແບບວັນທີ່ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ບໍ່ໄດ້ຈັດພີມ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ບໍ່ພົບແມ່ແບບທີ່ຢູ່ເລີ່ມຕົ້ນ. ກະລຸນາສ້າງແບບ ໃໝ່ ຈາກການຕິດຕັ້ງ> ການພິມແລະການສ້າງຍີ່ຫໍ້> ແມ່ແບບທີ່ຢູ່. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","ການກະທໍາສໍາລັບການສະແດງວຽກ (ຕົວຢ່າງ: ການອະນຸມັດ, ຍົກເລີກ)." DocType: Data Import,Skip rows with errors,ລາກແຖວທີ່ມີຂໍ້ຜິດພາດ DocType: Workflow State,flag,ທຸງ @@ -2114,7 +2194,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Prin apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ໄປຫາສະ ໜາມ DocType: Contact Us Settings,Forward To Email Address,ຕໍ່ໄປທີ່ຢູ່ອີເມວ DocType: Contact Phone,Is Primary Phone,ແມ່ນໂທລະສັບຫລັກ -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ສົ່ງອີເມວຫາ {0} ເພື່ອເຊື່ອມຕໍ່ກັບມັນຢູ່ບ່ອນນີ້. DocType: Auto Email Report,Weekdays,ວັນອາທິດ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ບັນທຶກຈະຖືກສົ່ງອອກ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ພາກສະຫນາມຫົວຂໍ້ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ @@ -2122,7 +2201,7 @@ DocType: Post Comment,Post Comment,Post Comment apps/frappe/frappe/config/core.py,Documents,ເອກະສານ apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,ເຂົ້າສູ່ລະບົບໂດຍ DocType: Social Login Key,Custom Base URL,Custom Base URL -DocType: Email Flag Queue,Is Completed,ແມ່ນສໍາເລັດ +DocType: Onboarding Slide,Is Completed,ແມ່ນສໍາເລັດ apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Get Fields apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,ດັດແກ້ຂໍ້ມູນ DocType: Kanban Board Column,Archived,ທີ່ຜ່ານມາ @@ -2133,12 +2212,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",ພາກສະຫນາມນີ້ຈະໄປປາກົດພຽງແຕ່ຖ້າວ່າ fieldname ທີ່ກໍາຫນົດໄວ້ທີ່ນີ້ມີມູນຄ່າ OR ກົດລະບຽບແມ່ນຄວາມຈິງ (ຕົວຢ່າງ): myfield eval: doc.myfield == 'ຄ່າຂອງຂ້າພະເຈົ້າ' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ໃນມື້ນີ້ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ໃນມື້ນີ້ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ໃນມື້ນີ້ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ໃນມື້ນີ້ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,ສົ່ງຫຼັງຈາກ ນຳ ເຂົ້າ DocType: Error Log,Log of Scheduler Errors,ເຂົ້າສູ່ລະບົບຂອງຄວາມຜິດພາດທີ່ Scheduler DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ການເຊື່ອມຕໍ່ຊ່ວຍເຫຼືອໃນກະດານເລື່ອນ DocType: OAuth Client,App Client Secret,ລັບລູກຄ້າ App apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ສົ່ງ apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,ພໍ່ແມ່ແມ່ນຊື່ຂອງເອກະສານທີ່ຂໍ້ມູນຈະໄດ້ຮັບການເພີ່ມ. @@ -2146,7 +2226,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ເທິງກໍລະນີ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML Custom apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ກະລຸນາໃສ່ຊື່ໂຟເດີ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ບໍ່ພົບແມ່ແບບທີ່ຢູ່ເລີ່ມຕົ້ນ. ກະລຸນາສ້າງແບບ ໃໝ່ ຈາກການຕິດຕັ້ງ> ການພິມແລະການສ້າງຍີ່ຫໍ້> ແມ່ແບບທີ່ຢູ່. apps/frappe/frappe/auth.py,Unknown User,ຮູ້ຈັກ User apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,ເລືອກພາລະບົດບາດ DocType: Comment,Deleted,ລຶບ @@ -2162,7 +2241,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ສ້າງຕາຕະລາງ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john @ doecom apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ຢ່າ ນຳ ເຂົ້າ -DocType: Web Page,Center,Center +DocType: Onboarding Slide Field,Center,Center DocType: Notification,Value To Be Set,ມູນຄ່າທີ່ຕ້ອງການກໍານົດ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},ແກ້ໄຂ {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ລະດັບທໍາອິດ @@ -2170,7 +2249,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ຊື່ຖານຂໍ້ມູນ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ໃນແບບຟອມການໂຫຼດຫນ້າຈໍຄືນ DocType: DocField,Select,ເລືອກ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,ເບິ່ງບັນທຶກເຕັມ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ເບິ່ງບັນທຶກເຕັມ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ການສະແດງອອກ Python ແບບງ່າຍດາຍ, ຕົວຢ່າງ: ສະຖານະພາບ == 'ເປີດ' ແລະພິມ == 'ບັກ'" apps/frappe/frappe/utils/csvutils.py,File not attached,ເອກະສານບໍ່ໄດ້ຕິດ apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ການເຊື່ອມຕໍ່ສູນເສຍ. ບາງຄຸນສົມບັດອາດຈະບໍ່ເຮັດວຽກ. @@ -2202,6 +2281,7 @@ DocType: Web Page,HTML for header section. Optional,HTML ສໍາລັບພ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,ຄຸນນະສົມບັດນີ້ເປັນຖ່ານກ້ອນໃຫມ່ແລະຍັງເປັນການທົດລອງ apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,ສູງສຸດ {0} ແຖວເກັດທີ່ຢູ່ອະນຸຍາດໃຫ້ DocType: Dashboard Chart Link,Chart,ຕາຕະລາງ +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,ຍົກເລີກ Global apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ນີ້ເປັນລະຫັດຜ່ານທົ່ວໄປຫຼາຍ. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,View @@ -2218,6 +2298,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,ເງື່ອນໄຂຄໍາສັ່ງ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","ສໍາລັບສະກຸນເງິນ {0}, ຈໍານວນການໂອນເງິນຂັ້ນຕ່ໍາຄວນຈະເປັນ {1}" DocType: DocField,Print Hide,Print ເຊື່ອງ +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ເພື່ອຜູ້ໃຊ້ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,ກະລຸນາໃສ່ມູນຄ່າ DocType: Workflow State,tint,tint @@ -2285,6 +2366,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ລະຫັ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ຕື່ມການທີ່ຈະເຮັດແນວໃດ DocType: Footer Item,Company,ບໍລິສັດ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ສະເລ່ຍຂອງ {0} +DocType: Scheduled Job Log,Scheduled,ກໍານົດ DocType: User,Logout from all devices while changing Password,ອອກຈາກອຸປະກອນທັງຫມົດໃນຂະນະທີ່ປ່ຽນລະຫັດຜ່ານ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ກວດສອບລະຫັດຜ່ານ apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,ມີຄວາມຜິດພາດໄດ້ @@ -2310,7 +2392,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ມີຢູ່ແລ້ວ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},ການສ້າງແຜນທີ່ຖັນ {0} ໄປຫາພາກສະ ໜາມ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ເບິ່ງ {0} -DocType: User,Hourly,ທຸກໆຊົ່ວໂມງ +DocType: Scheduled Job Type,Hourly,ທຸກໆຊົ່ວໂມງ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ລົງທະບຽນ OAuth App Client DocType: DocField,Fetch If Empty,ດຶງຂໍ້ມູນຖ້າວ່າງ DocType: Data Migration Connector,Authentication Credentials,ໃບຢັ້ງຢືນການກວດສອບຄວາມຖືກຕ້ອງ @@ -2321,10 +2403,10 @@ DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ບໍ່ສາມາດຈະ "{2}". ມັນຄວນຈະເປັນຫນຶ່ງຂອງການ "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ໄດ້ຮັບຈາກ {0} ຜ່ານກົດລະບຽບອັດຕະໂນມັດ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ຫຼື {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,ທ່ານໄດ້ຖືກສ້າງຕັ້ງຂຶ້ນທັງຫມົດ! DocType: Workflow State,trash,ກະຕ່າຂີ້ເຫຍື້ອ DocType: System Settings,Older backups will be automatically deleted,ສໍາຮອງຂໍ້ມູນຂຶ້ນໄປຈະໄດ້ຮັບການລຶບອັດຕະໂນມັດ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID ການເຂົ້າເຖິງບໍ່ຖືກຕ້ອງຫລື Key Access Key. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,ທ່ານໄດ້ສູນເສຍຈຸດພະລັງງານບາງຢ່າງ DocType: Post,Is Globally Pinned,ຖືກຈັດປະເພດທົ່ວໂລກ apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,ກິດຈະກໍາທີ່ຜ່ານມາ DocType: Workflow Transition,Conditions,ເງື່ອນໄຂ @@ -2333,6 +2415,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,ການຢ DocType: Event,Ends on,ສິ້ນສຸດລົງໃນ DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,ເສັ້ນທາງສູ່ໃບຢັ້ງຢືນ Server +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript ຖືກປິດໃຊ້ງານໃນ browser ຂອງທ່ານ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ບໍ່ອະນຸຍາດພຽງພໍທີ່ຈະເຫັນການເຊື່ອມຕໍ່ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ບໍ່ອະນຸຍາດພຽງພໍທີ່ຈະເຫັນການເຊື່ອມຕໍ່ apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,ທີ່ຢູ່ Title ແມ່ນບັງຄັບ. @@ -2352,7 +2435,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ຖ້າສິ່ງນີ້ຖືກກວດເບິ່ງ, ແຖວທີ່ມີຂໍ້ມູນທີ່ຖືກຕ້ອງຈະຖືກນໍາເຂົ້າແລະແຖວທີ່ບໍ່ຖືກຕ້ອງຈະຖືກຖິ້ມລົງໃນໄຟລ໌ໃຫມ່ສໍາລັບທ່ານທີ່ຈະນໍາເຂົ້າຕໍ່ມາ." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ເອກະສານແມ່ນສາມາດແກ້ໄຂໂດຍຜູ້ໃຊ້ຂອງພາລະບົດບາດພຽງແຕ່ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","ວຽກງານ {0}, ທີ່ທ່ານມອບຫມາຍໃຫ້ {1}, ໄດ້ຮັບການປິດໂດຍ {2}." DocType: Print Format,Show Line Breaks after Sections,ສະແດງໃຫ້ເຫັນ Line ພັກຜ່ອນຫຼັງຈາກພາກສ່ວນ DocType: Communication,Read by Recipient On,ອ່ານໂດຍຜູ້ຮັບ DocType: Blogger,Short Name,ຊື່ສັ້ນ @@ -2385,6 +2467,7 @@ DocType: Translation,PR sent,PR ສົ່ງແລ້ວ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ພຽງແຕ່ສົ່ງບັນທຶກອັບ X ຫຼ້າຊົ່ວໂມງ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ພຽງແຕ່ສົ່ງບັນທຶກອັບ X ຫຼ້າຊົ່ວໂມງ DocType: Communication,Feedback,ຜົນຕອບຮັບ +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ປັບປຸງເປັນລຸ້ນ ໃໝ່ 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ເປີດແປພາສາ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,ອີເມວນີ້ຈະຖືກສ້າງຂຶ້ນໂດຍອັດຕະໂນມັດ DocType: Workflow State,Icon will appear on the button,Icon ຈະໄປປາກົດທີ່ປຸ່ມ @@ -2423,6 +2506,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,ບໍ່ DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,ລາຍະການ slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,ພະຍາຍາມເພື່ອຫຼີກເວັ້ນການຄໍາຊ້ໍາແລະລັກສະນະ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,ການແຈ້ງເຕືອນຖືກປິດໃຊ້ງານ +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບແຖວທັງ ໝົດ ບໍ? DocType: Workflow Action,Workflow State,State workflow apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ແຖວເກັດທີ່ຢູ່ເພີ່ມ apps/frappe/frappe/www/list.py,My Account,ບັນຊີຂອງຂ້ອຍ @@ -2431,6 +2516,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,ມື້ຫຼັງຈາກ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ Tray Connection Active! DocType: Contact Us Settings,Settings for Contact Us Page,ການຕັ້ງຄ່າສໍາລັບການຕິດຕໍ່ພວກເຮົາຫນ້າ +DocType: Server Script,Script Type,ປະເພດ script DocType: Print Settings,Enable Print Server,Enable Print Server apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} ອາທິດກ່ອນຫນ້ານີ້ DocType: Email Account,Footer,footer @@ -2456,8 +2542,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,ການເຕືອນໄພ apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,ສິ່ງນີ້ອາດຈະຖືກພິມລົງໃນຫລາຍໆ ໜ້າ DocType: Data Migration Run,Percent Complete,ອັດຕາສ່ວນສໍາເລັດ -DocType: Tag Category,Tag Category,Tag Category -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ສຳ ລັບການປຽບທຽບ, ໃຊ້> 5, <10 ຫລື = 324. ສຳ ລັບຂອບເຂດ, ໃຫ້ໃຊ້ 5:10 (ສຳ ລັບຄ່າລະຫວ່າງ 5 ແລະ 10)." DocType: Google Calendar,Pull from Google Calendar,ດຶງຈາກ Google Calendar apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,ຊ່ວຍເຫຼືອ DocType: User,Login Before,ເຂົ້າສູ່ລະບົບກ່ອນ @@ -2467,17 +2551,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Hide Weekends apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ສ້າງເອກະສານທີ່ເກີດຂື້ນໂດຍອັດຕະໂນມັດ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ແມ່ນ +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,"ຂໍ້ມູນ, ອາການ" apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ລາຄາ {0} ບໍ່ສາມາດຈະບັນຊີລາຍການ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ວິທີການຄວນສະກຸນເງິນນີ້ມີຮູບແບບ? ຖ້າຫາກວ່າບໍ່ກໍານົດ, ຈະໃຊ້ຄ່າເລີ່ມຕົ້ນລະບົບ" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ສົ່ງ {0} ເອກະສານ? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ທ່ານຈໍາເປັນຕ້ອງເຂົ້າສູ່ລະບົບແລະມີການຄຸ້ມຄອງລະບົບພາລະບົດບາດເພື່ອໃຫ້ສາມາດເຂົ້າເຖິງສໍາຮອງຂໍ້ມູນ. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","ມີຂໍ້ຜິດພາດໃນການເຊື່ອມຕໍ່ QZ Tray Application ... <br><br> ທ່ານ ຈຳ ເປັນຕ້ອງມີການຕິດຕັ້ງແລະແລ່ນ QZ Tray, ເພື່ອໃຊ້ຄຸນລັກສະນະ Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">ກົດບ່ອນນີ້ເພື່ອດາວໂຫລດແລະຕິດຕັ້ງ QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">ກົດບ່ອນນີ້ເພື່ອຮຽນຮູ້ເພີ່ມເຕີມກ່ຽວກັບການພິມດິບ</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ແຜນທີ່ຂອງເຄື່ອງພິມ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ຈະຕິດຄັດ. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ທ່ານຕ້ອງການຍົກເລີກເອກະສານທີ່ເຊື່ອມໂຍງທັງ ໝົດ ບໍ? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ເພີ່ມ {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ບໍ່ສາມາດໄດ້ຮັບການປ່ຽນແປງຈາກ {0} ກັບ {1} ຕິດຕໍ່ກັນ {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,ການອະນຸຍາດພາລະບົດບາດ DocType: Help Article,Intermediate,ລະດັບປານກາງ +apps/frappe/frappe/config/settings.py,Email / Notifications,ອີເມວ / ແຈ້ງການ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} ປ່ຽນ {1} ເປັນ {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,ຍົກເລີກການຟື້ນຟູເອກະສານເປັນຮ່າງ DocType: Data Migration Run,Start Time,ທີ່ໃຊ້ເວລາເລີ່ມຕົ້ນ @@ -2494,6 +2582,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,ທີ່ຢູ່ຜູ້ຮັບທີ່ບໍ່ຖືກຕ້ອງ DocType: Workflow State,step-forward,ຂັ້ນຕອນທີຕໍ່ DocType: System Settings,Allow Login After Fail,ອະນຸຍາດໃຫ້ເຂົ້າສູ່ລະບົບຫຼັງຈາກທີ່ບໍ່ຖືກຕ້ອງ +DocType: DocType Link,DocType Link,ການເຊື່ອມຕໍ່ DocType DocType: Role Permission for Page and Report,Set Role For,ກໍານົດພາລະບົດບາດສໍາລັບ DocType: GCalendar Account,The name that will appear in Google Calendar,ຊື່ທີ່ຈະປາກົດໃນ Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,ຫ້ອງທີ່ມີ {0} ມີຢູ່ແລ້ວ. @@ -2511,6 +2600,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ສ້າ DocType: Contact,Google Contacts,Google Contacts DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Email Rule,Is Spam,ແມ່ນ Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,ສຸດທ້າຍ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ບົດລາຍງານ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ເປີດ {0} DocType: Data Import Beta,Import Warnings,ຄຳ ເຕືອນກ່ຽວກັບການ ນຳ ເຂົ້າ @@ -2522,6 +2612,7 @@ DocType: Workflow State,ok-sign,"ok, ອາການ" apps/frappe/frappe/config/settings.py,Deleted Documents,ເອກະສານລຶບ apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,ຮູບແບບ CSV ແມ່ນມີຄວາມລະອຽດອ່ອນ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon ຢູ່ແລ້ວ +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ລະບຸໃນສິ່ງທີ່ໂດເມນທັງ ໝົດ ຄວນສະແດງໃຫ້ເຫັນ. ຖ້າບໍ່ມີຫຍັງ ກຳ ນົດຄ່າເລື່ອນພາບຈະຖືກສະແດງຢູ່ໃນທຸກໂດເມນໂດຍຄ່າເລີ່ມຕົ້ນ. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ຊ້ໍາ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ສະ ໜາມ {1} ຕິດຕໍ່ກັນ {2} ບໍ່ສາມາດຖືກປິດບັງແລະບັງຄັບໂດຍບໍ່ມີຄ່າເລີ່ມຕົ້ນ DocType: Newsletter,Create and Send Newsletters,ສ້າງແລະສົ່ງຈົດຫມາຍຂ່າວ @@ -2532,6 +2623,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ປະຕິທິນເຫດການຂອງ Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","ພໍ່ແມ່" ຫມາຍເຖິງຕາຕະລາງພໍ່ແມ່ໃນການທີ່ຕິດຕໍ່ກັນນີ້ຕ້ອງໄດ້ຮັບການເພີ່ມ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,ຈຸດທົບທວນຄືນ: +DocType: Scheduled Job Log,Scheduled Job Log,ບັນທຶກວຽກທີ່ມີ ກຳ ນົດ +DocType: Server Script,Before Delete,ກ່ອນລຶບ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,ແບ່ງປັນກັບ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ແນບໄຟລ໌ / url ແລະເພີ່ມໃນຕາຕະລາງ. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Message not setup @@ -2555,19 +2648,21 @@ DocType: About Us Settings,Settings for the About Us Page,ການຕັ້ງ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ເສັ້ນດ່າງຕັ້ງຄ່າຕູການຈ່າຍເງິນ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ເສັ້ນດ່າງຕັ້ງຄ່າຕູການຈ່າຍເງິນ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ພິມສົ່ງເຖິງເຄື່ອງພິມ! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,ຈຸດພະລັງງານ +DocType: Notification Settings,Energy Points,ຈຸດພະລັງງານ +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},ເວລາ {0} ຕ້ອງເປັນຮູບແບບ: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ຕົວຢ່າງ pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,ສ້າງຄີ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ສິ່ງນີ້ຈະເອົາຂໍ້ມູນຂອງທ່ານອອກໄປຢ່າງຖາວອນ. DocType: DocType,View Settings,ເບິ່ງການຕັ້ງຄ່າ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,ແຈ້ງການ ໃໝ່ DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,ຂໍໂຄງສ້າງ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,ວິທີການຄວບຄຸມ get_razorpay_order ຫາຍໄປ DocType: Personal Data Deletion Request,Pending Verification,ການກວດສອບທີ່ຍັງຄ້າງຢູ່ DocType: Website Meta Tag,Website Meta Tag,ເວບໄຊທ໌ Meta Tag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","ຖ້າບໍ່ແມ່ນພອດມາດຕະຖານ (eg 587). ຖ້າຢູ່ໃນ Google Cloud, ລອງພອດ 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","ວັນທີສິ້ນສຸດການຍົກເລີກ, ຍ້ອນວ່າມັນບໍ່ສາມາດເປັນໃນໄລຍະຜ່ານມາສໍາລັບຫນ້າທີ່ຈັດພິມ." DocType: User,Send Me A Copy of Outgoing Emails,ສົ່ງສໍາເນົາອີເມວ Outgoing -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.,"ຕື່ມການກູໂກ ID ວິເຄາະ: ຕົວຢ່າງ:. UA, 89XXX57-1. ກະລຸນາຄົ້ນຫາຄວາມຊ່ວຍເຫລືອໃນກູໂກວິເຄາະສໍາລັບຂໍ້ມູນເພີ່ມເຕີມ." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,ລະຫັດຜ່ານບໍ່ສາມາດຈະຍາວຫຼາຍກ່ວາ 100 ລັກສະນະ DocType: OAuth Client,App Client ID,App ID Client @@ -2596,6 +2691,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,ລະຫັ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ແບ່ງປັນເອກະສານນີ້ກັບ {1} DocType: Website Settings,Brand Image,ຍີ່ຫໍ້ Image DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,ແມ່ແບບການ ນຳ ເຂົ້າຄວນມີ Header ແລະ atleast ແຖວ ໜຶ່ງ. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Calendar ຖືກ ກຳ ນົດແລ້ວ. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","ການຕິດຕັ້ງຂອງແຖບນໍາທິດທາງເທີງ, footer ແລະ logo." DocType: Web Form Field,Max Value,ມູນຄ່າສູງສຸດທີ່ເຄຍ @@ -2605,6 +2701,7 @@ DocType: User Social Login,User Social Login,User Login Social apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} ວິຈານວຽກຂອງທ່ານໃສ່ {1} ດ້ວຍ {2} ຈຸດ DocType: Contact,All,ທັງຫມົດ DocType: Email Queue,Recipient,ຜູ້ຮັບ +DocType: Webhook,Webhook Security,ຄວາມປອດໄພ Webhook DocType: Communication,Has Attachment,ມີ Attachment DocType: Address,Sales User,User ຂາຍ apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag ແລະເຄື່ອງມື Drop ການກໍ່ສ້າງແລະປັບແຕ່ງຮູບແບບພິມ. @@ -2671,7 +2768,6 @@ DocType: Data Migration Mapping,Migration ID Field,ການຍ້າຍຖິ DocType: Dashboard Chart,Last Synced On,ສະບັບສຸດທ້າຍໃນ DocType: Comment,Comment Type,ປະເພດຄໍາຄິດຄໍາເຫັນ DocType: OAuth Client,OAuth Client,Client OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} ວິຈານວຽກຂອງທ່ານໃນ {1} {2} DocType: Assignment Rule,Users,ຜູ້ຊົມໃຊ້ DocType: Address,Odisha,Odisha DocType: Report,Report Type,ປະເພດບົດລາຍງານ @@ -2697,14 +2793,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,ເວັບໄຊທ໌ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,ບໍ່ອະນຸຍາດໃຫ້ອະນຸມັດຕົນເອງ DocType: GSuite Templates,Template ID,ລະຫັດແມ່ແບບ apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,ປະເພດຂອງການຊ່ວຍເຫຼືອ ( <code>{0}</code> ) ແລະປະເພດການຕອບໂຕ້ ( <code>{1}</code> ) ບໍ່ຖືກອະນຸຍາດ -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},ຂໍ້ຄວາມໃຫມ່ຈາກ {0} DocType: Portal Settings,Default Role at Time of Signup,ມາດຕະຖານພາລະບົດບາດທີ່ໃຊ້ເວລາການຫມັກ DocType: DocType,Title Case,ກໍລະນີຫົວຂໍ້ apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,ກົດທີ່ລິ້ງດ້ານລຸ່ມເພື່ອດາວໂຫລດຂໍ້ມູນຂອງທ່ານ apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},ເປີດໂຕ inbox ອີເມວສໍາລັບຜູ້ໃຊ້ {0} DocType: Data Migration Run,Data Migration Run,ການຍ້າຍຖິ່ນຖານຂໍ້ມູນ DocType: Blog Post,Email Sent,ສົ່ງອີເມວ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,ເກົ່າກວ່າເກົ່າ DocType: DocField,Ignore XSS Filter,ບໍ່ສົນໃຈ XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ການໂຍກຍ້າຍອອກ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ການຕັ້ງຄ່າສໍາຮອງຂໍ້ມູນ Dropbox @@ -2759,6 +2853,7 @@ DocType: Async Task,Queued,ຄິວ DocType: Braintree Settings,Use Sandbox,ການນໍາໃຊ້ Sandbox apps/frappe/frappe/utils/goal.py,This month,ເດືອນນີ້ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ຮູບແບບການລູກຄ້າພິມໃຫມ່ +DocType: Server Script,Before Save (Submitted Document),ກ່ອນທີ່ຈະປະຢັດ (ເອກະສານທີ່ຖືກສົ່ງ) DocType: Custom DocPerm,Create,ສ້າງ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,ບໍ່ມີລາຍການຫຍັງອີກທີ່ຈະສະແດງ apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,ໄປທີ່ບັນທຶກກ່ອນ ໜ້າ ນີ້ @@ -2816,6 +2911,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ຍ້າຍໄປຖັງຂີ້ເຫຍື້ອ DocType: Web Form,Web Form Fields,ແບບຟອມ Web DocType: Data Import,Amended From,ສະບັບປັບປຸງຈາກ +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,ຕື່ມການເຊື່ອມຕໍ່ວິດີໂອການຊ່ວຍເຫຼືອພຽງແຕ່ໃນກໍລະນີທີ່ຜູ້ໃຊ້ບໍ່ມີຄວາມຄິດຫຍັງກ່ຽວກັບສິ່ງທີ່ຕ້ອງຕື່ມໃສ່ແຜ່ນສະໄລ້. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},ການເຕືອນໄພ: ບໍ່ສາມາດຊອກຫາ {0} ໃນຕາຕະລາງທີ່ກ່ຽວຂ້ອງກັບ {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ເອກະສານນີ້ແມ່ນຄິວສໍາລັບການປະຕິບັດໃນປັດຈຸບັນ. ກະລຸນາພະຍາຍາມອີກເທື່ອຫນຶ່ງ @@ -2838,6 +2934,7 @@ DocType: Blog Post,Blog Post,Post Blog DocType: Access Log,Export From,ສົ່ງອອກຈາກ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ການຄົ້ນຫາຂັ້ນສູງ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງຫນັງສືພິມ. +DocType: Dashboard Chart,Group By,ກຸ່ມໂດຍ DocType: User,Interests,ຜົນປະໂຫຍດ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,ຄໍາແນະນໍາການປ່ຽນລະຫັດຜ່ານໄດ້ຖືກສົ່ງໄປຫາອີເມວຂອງທ່ານ DocType: Energy Point Rule,Allot Points To Assigned Users,ຈຸດແຈກຈ່າຍໃຫ້ຜູ້ໃຊ້ທີ່ຖືກມອບ ໝາຍ @@ -2853,6 +2950,7 @@ DocType: Assignment Rule,Assignment Rule,ກົດລະບຽບການມອ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},ຊື່ຜູ້ໃຊ້ແນະນໍາ: {0} DocType: Assignment Rule Day,Day,ວັນ apps/frappe/frappe/public/js/frappe/desk.js,Modules,ໂມດູນ +DocType: DocField,Mandatory Depends On,ການບັງຄັບແມ່ນຂື້ນກັບ apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ສົບຜົນສໍາເລັດການຊໍາລະເງິນ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} mail DocType: OAuth Bearer Token,Revoked,ຍົກເລີກ @@ -2860,6 +2958,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar ແລະຄວາມຄິດເ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ໃນເວລາທີ່ທ່ານແກ້ໄຂເອກະສານຫລັງຈາກທີ່ຍົກເລີກການແລະຊ່ວຍປະຢັດມັນ, ມັນຈະໄດ້ຮັບເປັນຈໍານວນໃຫມ່ວ່າແມ່ນສະບັບຂອງຈໍານວນອາຍຸໄດ້." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","ບໍ່ອະນຸຍາດໃຫ້ຄັດຕິດເອກະສານ {0}, ກະລຸນາໃຫ້ອະນຸຍາດໃຫ້ພິມສໍາລັບ {0} ໃນການຕັ້ງຄ່າພິມ" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕິດຕັ້ງ. ກະລຸນາສ້າງບັນຊີອີເມວ ໃໝ່ ຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ເບິ່ງເອກະສານທີ່ {0} DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້ DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້ @@ -2875,13 +2974,13 @@ DocType: Currency,Fraction,ແຕ່ສ່ວນຫນຶ່ງ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ເຫດການຖືກຊິ້ງກັບ Google Calendar. DocType: LDAP Settings,LDAP First Name Field,LDAP ພາກສະຫນາມຊື່ DocType: Contact,Middle Name,ຊື່ກາງ +DocType: DocField,Property Depends On,ຊັບສິນແມ່ນຂື້ນກັບ DocType: Custom Field,Field Description,ພາກສະຫນາມລາຍລະອຽດ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ຊື່ບໍ່ກໍານົດໂດຍຜ່ານການກະຕຸ້ນເຕືອນ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox Email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","ການປັບປຸງ {0} ຂອງ {1}, {2}" DocType: Auto Email Report,Filters Display,ການກັ່ນຕອງສະແດງ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","ສະບັບປັບປຸງ _ ຂ້າງເທິງ" ພາກສະຫນາມຕ້ອງມີຢູ່ເພື່ອ ດຳ ເນີນການດັດແກ້. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ຕີລາຄາສູງຕໍ່ຜົນງານຂອງທ່ານໃນ {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ບັນທຶກຕົວກອງ DocType: Address,Plant,ພືດ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ຕອບກັບທັງຫມົດ @@ -2922,11 +3021,11 @@ DocType: Workflow State,folder-close,ໂຟນເດີທີ່ໃກ້ຊິ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,ລາຍງານ: DocType: Print Settings,Print taxes with zero amount,Print taxes with zero amount apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ບໍ່ອະນຸຍາດໃຫ້ໄດ້ຮັບການປ່ຽນຊື່ +DocType: Server Script,Before Insert,ກ່ອນທີ່ຈະໃສ່ DocType: Custom Script,Custom Script,Script Custom DocType: Address,Address Line 2,ທີ່ຢູ່ Line 2 DocType: Address,Reference,ກະສານອ້າງອີງ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,ການມອບຫມາຍໃຫ້ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີອີເມວເລີ່ມຕົ້ນຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ລາຍະລະອຽດແຜນທີ່ການຍ້າຍຖິ່ນຖານຂໍ້ມູນ DocType: Data Import,Action,ການປະຕິບັດ DocType: GSuite Settings,Script URL,URL script @@ -2952,11 +3051,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,ໃນຊີ View DocType: Email Account,Use TLS,ການນໍາໃຊ້ TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,ເຂົ້າສູ່ລະບົບຫລືລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ +DocType: Scheduled Job Type,Weekly Long,ຍາວປະ ຈຳ ອາທິດ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ດາວໂຫລດ Template apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ເພີ່ມ custom Javascript ຫາກຕ້ອງການຮູບແບບ. ,Role Permissions Manager,ຜູ້ຈັດການພາລະບົດບາດການອະນຸຍາດ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ຊື່ຂອງຮູບແບບພິມໃຫມ່ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar +DocType: Server Script,After Save (Submitted Document),ຫຼັງຈາກບັນທຶກ (ເອກະສານສົ່ງແລ້ວ) DocType: Data Migration Run,Pull Insert,Pull Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ຈຸດສູງສຸດທີ່ອະນຸຍາດໃຫ້ຫຼັງຈາກຄູນຫຼາຍຈຸດດ້ວຍມູນຄ່າຕົວຄູນ (ໝາຍ ເຫດ: ສຳ ລັບຂອບເຂດທີ່ບໍ່ມີຂໍ້ ຈຳ ກັດຈະປ່ອຍໃຫ້ພາກສະ ໜາມ ນີ້ຫວ່າງຫລືຕັ້ງຄ່າ 0) @@ -2976,6 +3077,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ບໍ່ໄດ້ຕິດຕັ້ງ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ດາວນ໌ໂຫລດທີ່ມີຂໍ້ມູນ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ປ່ຽນຄຸນຄ່າ ສຳ ລັບ {0} {1} +DocType: Server Script,Before Cancel,ກ່ອນທີ່ຈະຍົກເລີກ DocType: Workflow State,hand-right,ມືຂວາ DocType: Website Settings,Subdomain,subdomain DocType: S3 Backup Settings,Region,ພູມິພາກ @@ -3022,12 +3124,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,ລະຫັດຜ່ DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ກະທູ້ {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","ກັບຄໍລໍາຮູບແບບ, ໃຫ້ປ້າຍຊື່ຄໍລໍາໃນການສອບຖາມ." +DocType: Onboarding Slide,Slide Fields,ທົ່ງນາເລື່ອນ DocType: Has Domain,Has Domain,ມີ Domain DocType: User,Allowed In Mentions,ອະນຸຍາດໃນ Mentions apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ບໍ່ມີບັນຊີຢູ່ແລ້ວ? ລົງທະບຽນ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ບໍ່ສາມາດເອົາພາກ ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງຄ່າກໍາຫນົດແກ້ໄຂຖ້າຫາກວ່າບໍ່ສົ່ງ DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,ເອກະສານສະ ໝັກ apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,ການຕັ້ງຄ່າຜູ້ໃຊ້ DocType: Report,Reference Report,ບົດລາຍງານການອ້າງອີງ DocType: Activity Log,Link DocType,ການເຊື່ອມຕໍ່ DocType @@ -3045,6 +3149,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ອະນຸຍາດ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ຫນ້າທີ່ທ່ານກໍາລັງຊອກຫາສໍາລັບທີ່ຂາດຫາຍໄປ. ນີ້ອາດຈະເປັນເພາະວ່າມັນໄດ້ຖືກຍ້າຍຫຼືມີການ typo ໃນການເຊື່ອມຕໍ່. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ລາຍລະອຽດສໍາລັບ listing ຫນ້າ, ໃນຄວາມທົ່ງພຽງ, ມີພຽງແຕ່ຄູ່ນ່ຶຂອງສາຍ. (ສູງສຸດ 140 ລັກສະນະ)" +DocType: Server Script,DocType Event,ເຫດການ DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ແມ່ນທົ່ງນາທີ່ ຈຳ ເປັນ DocType: Workflow,Allow Self Approval,ອະນຸຍາດໃຫ້ອະນຸມັດຕົນເອງ DocType: Event,Event Category,ປະເພດເຫດການ @@ -3061,6 +3166,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ຊື່ຂອງເຈົ້າ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connection Success DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ມີການເລື່ອນລົງປະເພດເລື່ອນລົງຂອງປະເພດເລື່ອນຢູ່ແລ້ວ. DocType: DocType,Default Sort Field,ພາກສະຫນາມຄັດເລືອກໃນຕອນຕົ້ນ DocType: File,Is Folder,ແມ່ນ Folder DocType: Document Follow,DocType,DocType @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ຄຸ DocType: Workflow State,arrow-up,ລູກສອນຂຶ້ນ DocType: Dynamic Link,Link Document Type,ປະເພດເອກະສານການເຊື່ອມໂຍງ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,ຄວນຈະມີແຖວຢ່າງ ໜ້ອຍ ໜຶ່ງ ແຖວ ສຳ ລັບຕາຕະລາງ {0} +DocType: Server Script,Server Script,Server Script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","ເພື່ອ ກຳ ຫນົດຄ່າການເຮັດຊ້ ຳ ຄືນແບບອັດຕະໂນມັດ, ເປີດໃຊ້ "ອະນຸຍາດໃຫ້ເຮັດຊ້ ຳ ຄືນໂດຍອັດຕະໂນມັດ" ຈາກ {0}." DocType: OAuth Bearer Token,Expires In,ຫມົດອາຍຸໃນ +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","ຈຳ ນວນຄັ້ງທີ່ທ່ານຕ້ອງການເຮັດຊ້ ຳ ໃນຂອບເຂດຂໍ້ມູນ (ຕົວຢ່າງ: ຖ້າທ່ານຕ້ອງການໃຫ້ລູກຄ້າ 3 ຄົນຢູ່ໃນແຜ່ນສະໄລ້, ກຳ ນົດພາກສະ ໜາມ ນີ້ໃຫ້ເປັນ 3. ພຽງແຕ່ ກຳ ນົດເຂດ ທຳ ອິດທີ່ສະແດງໃຫ້ເຫັນເປັນຂໍ້ບັງຄັບໃນແຜ່ນສະໄລ້)" DocType: DocField,Allow on Submit,ອະນຸຍາດໃຫ້ຢູ່ໃນຍື່ນສະເຫນີການ DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,ປະເພດຍົກເວັ້ນ @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,ເຫດການ upcoming apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,ກະລຸນາໃສ່ຄຸນຄ່າສໍາລັບ App Access Key ແລະ App Secret Key +DocType: Email Account,Append Emails to Sent Folder,ເອກະສານຊ້ອນທ້າຍອີເມວໃສ່ແຟ້ມທີ່ຖືກສົ່ງ DocType: Web Form,Accept Payment,ຍອມຮັບການຊໍາລະເງິນ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ເລືອກລາຍການລາຍການ apps/frappe/frappe/config/core.py,A log of request errors,A ບັນທຶກຂອງຄວາມຜິດພາດການຮ້ອງຂໍ @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,ປະກອບສ່ວນ apps/frappe/frappe/config/customization.py,Form Customization,ການປັບແຕ່ງແບບຟອມ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,No Sessions Active DocType: Web Form,Route to Success Link,Route to Success Link -DocType: Top Bar Item,Right,ສິດ +DocType: Onboarding Slide Field,Right,ສິດ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,ບໍ່ມີເຫດການ ກຳ ລັງຈະມາເຖິງ DocType: User,User Type,ປະເພດຜູ້ໃຊ້ DocType: Prepared Report,Ref Report DocType,Report Ref DocType @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,ກະລຸນ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL ຕ້ອງເລີ່ມຕົ້ນດ້ວຍ 'http: //' ຫລື 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ທາງເລືອກ 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,ນີ້ບໍ່ສາມາດຍົກເລີກໄດ້ DocType: Workflow State,Edit,ດັດແກ້ DocType: Website Settings,Chat Operators,Chat Operators DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ເຊື່ອໃນຮູບແບບນີ້. ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ທ່ານຈະດໍາເນີນການຕໍ່. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,ມາດຕະຖານສໍາລັບການ {0} ຕ້ອງຈະມີທາງເລືອກ -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,ລາຍງານທີ່ມີຫຼາຍກ່ວາ 10 ຄໍ ລຳ ເບິ່ງດີກວ່າໃນຮູບແບບພູມສັນຖານ. apps/frappe/frappe/database/database.py,Invalid field name: {0},ຊື່ພາກສະຫນາມບໍ່ຖືກຕ້ອງ: {0} DocType: Milestone,Milestone,Milestone @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},ໄປທີ່ {0} apps/frappe/frappe/email/queue.py,Emails are muted,ອີເມວແມ່ນ muted apps/frappe/frappe/config/integrations.py,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 ອາທິດກ່ອນຫນ້ານີ້ +DocType: Onboarding Slide,Slide Description,ລາຍລະອຽດຂອງພາບສະໄລ້ DocType: Communication,Error,Error apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,ກະລຸນາຕັ້ງຂໍ້ຄວາມກ່ອນ DocType: Auto Repeat,End Date,ວັນທີ່ສິ້ນສຸດ @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,Label Group DocType: Kanban Board,Kanban Board,ຄະນະກໍາມະ Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts ໄດ້ຖືກຕັ້ງຄ່າແລ້ວ. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ບັນທຶກຈະຖືກສົ່ງອອກ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ບໍ່ມີບັນຊີອີເມວທີ່ກ່ຽວຂ້ອງກັບຜູ້ໃຊ້. ກະລຸນາເພີ່ມບັນຊີພາຍໃຕ້ຜູ້ໃຊ້> Inbox Email. DocType: DocField,Report Hide,ບົດລາຍງານເຊື່ອງ apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ເບິ່ງຕົ້ນໄມ້ທີ່ບໍ່ມີສໍາລັບການ {0} DocType: DocType,Restrict To Domain,ຈໍາກັດການ Domain DocType: Domain,Domain,ໂດເມນ +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL ເອກະສານບໍ່ຖືກຕ້ອງ. ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບ. DocType: Custom Field,Label Help,Label Help DocType: Workflow State,star-empty,ດາວເປົ່າຫວ່າງ apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ວັນເດືອນປີມັກງ່າຍທີ່ຈະເດົາ. @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left,ມືຊ້າຍ DocType: Data Import,If you are updating/overwriting already created records.,ຖ້າທ່ານກໍາລັງອັບເດດ / ຂຽນລົງບັນທຶກການສ້າງແລ້ວ. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ແມ່ນໂລກ DocType: Email Account,Use SSL,ການນໍາໃຊ້ SSL +DocType: Webhook,HOOK-.####,ເບິ່ງ -. #### DocType: Workflow State,play-circle,ສໍາລັບການຫຼິ້ນແຜ່ນປ້າຍວົງກົມ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ເອກະສານບໍ່ສາມາດຖືກມອບຫມາຍໃຫ້ຖືກຕ້ອງ apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",ບໍ່ຖືກຕ້ອງ "depend_on" ການສະແດງອອກ @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,ສົດຊື່ນສຸດທ້າຍ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ສຳ ລັບປະເພດເອກະສານ DocType: Workflow State,arrow-right,ລູກສອນທີ່ຖືກຕ້ອງ +DocType: Server Script,API Method,ວິທີການ API DocType: Workflow State,Workflow state represents the current state of a document.,ລັດ Workflow ເປັນຕົວແທນຂອງລັດໃນປະຈຸບັນຂອງເອກະສານ. DocType: Letter Head,Letter Head Based On,ຈົດ ໝາຍ ອີງໃສ່ apps/frappe/frappe/utils/oauth.py,Token is missing,Token ທີ່ຂາດຫາຍໄປ @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compact Item Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,ປ່ຽນເສັ້ນທາງ URL +DocType: Onboarding Slide Field,Placeholder,ສະຖານທີ່ DocType: SMS Settings,Enter url parameter for receiver nos,ກະລຸນາໃສ່ພາລາມິເຕີ url ສໍາລັບຮັບພວກເຮົາ DocType: Chat Profile,Online,ອອນໄລນ໌ DocType: Email Account,Always use Account's Name as Sender's Name,ສະເຫມີໃຊ້ຊື່ບັນຊີເປັນຊື່ຜູ້ສົ່ງ @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,ຫນ້າທໍາອິດ DocType: OAuth Provider Settings,Auto,ອັດຕະໂນມັດ DocType: System Settings,User can login using Email id or User Name,ຜູ້ໃຊ້ສາມາດເຂົ້າສູ່ລະບົບໂດຍໃຊ້ຊື່ອີເມວຫຼືຊື່ຜູ້ໃຊ້ DocType: Workflow State,question-sign,ຄໍາຖາມອາການ -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ຖືກປິດໃຊ້ງານ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ເສັ້ນທາງ "ເສັ້ນທາງ" ແມ່ນບັງຄັບໃຊ້ສໍາລັບການເບິ່ງເວັບ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},ໃສ່ຄໍລໍາກ່ອນ {0} DocType: Energy Point Rule,The user from this field will be rewarded points,ຜູ້ໃຊ້ຈາກພາກສະຫນາມນີ້ຈະໄດ້ຮັບລາງວັນ @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ຖ້າຫາກ DocType: Data Migration Mapping,Push,Push apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ວາງແຟ້ມຢູ່ບ່ອນນີ້ DocType: OAuth Authorization Code,Expiration time,ທີ່ໃຊ້ເວລາຫມົດອາຍຸ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,ເປີດເອກະສານ DocType: Web Page,Website Sidebar,Sidebar ເວັບໄຊທ໌ DocType: Web Form,Show Sidebar,ສະແດງໃຫ້ເຫັນ Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,ທ່ານຈໍາເປັນຕ້ອງເຂົ້າສູ່ລະບົບໃນການເຂົ້າເຖິງນີ້ {0}. @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ທາງລ DocType: Desktop Icon,Page,ຫນ້າ apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},ບໍ່ສາມາດຊອກຫາ {0} ໃນ {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ຊື່ແລະນາມສະກຸນດ້ວຍຕົນເອງມີຄວາມສະດວກໃນການຮີດ. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},ເອກະສານໄດ້ປ່ຽນຊື່ມາຈາກ {0} ເຖິງ {1} apps/frappe/frappe/config/website.py,Knowledge Base,ຄວາມຮູ້ພື້ນຖານ DocType: Workflow State,briefcase,ກະເປົາມືຖື apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ມູນຄ່າບໍ່ສາມາດໄດ້ຮັບການປ່ຽນແປງສໍາລັບ {0} @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,ຮູບແບບການພິມ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Grid View apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ໄປທີ່ບັນທຶກຕໍ່ໄປ +DocType: System Settings,Time Format,ຮູບແບບເວລາ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ຂໍ້ມູນປະຈໍາປະຕູການຈ່າຍເງິນທີ່ບໍ່ຖືກຕ້ອງ DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ນີ້ແມ່ນໄຟລ໌ແມ່ແບບທີ່ຜະລິດດ້ວຍແຖວພຽງແຕ່ມີຂໍ້ຜິດພາດບາງຢ່າງ. ທ່ານຄວນໃຊ້ໄຟລ໌ນີ້ເພື່ອແກ້ໄຂແລະນໍາເຂົ້າ. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ການອະນຸຍາດທີ່ກໍານົດໄວ້ໃນປະເພດເອກະສານແລະພາລະບົດບາດ @@ -3397,12 +3513,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,reply apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ຫນ້າໃນ Desk (ຜູ້ຖືສະຖານທີ່) DocType: DocField,Collapsible Depends On,Collapsible ຂຶ້ນກ່ຽວກັບ DocType: Print Style,Print Style Name,ຊື່ Style ພິມ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ກຸ່ມໂດຍພາກສະຫນາມແມ່ນຕ້ອງການເພື່ອສ້າງຕາຕະລາງ dashboard DocType: Print Settings,Allow page break inside tables,ອະນຸຍາດໃຫ້ພັກຜ່ອນຫນ້າພາຍໃນຕາຕະລາງ DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,ຮູບແບບການພິມ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ຫ້ອງຕ້ອງມີຜູ້ໃຊ້ຫນຶ່ງຄົນສຸດທ້າຍ. DocType: DocType,Beta,ການທົດລອງ DocType: Dashboard Chart,Count,ນັບ +DocType: Dashboard Chart,Group By Type,ກຸ່ມຕາມປະເພດ apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},ຄຳ ເຫັນ ໃໝ່ ກ່ຽວກັບ {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ການຟື້ນຟູ {0} ເປັນ {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ຖ້າຫາກວ່າທ່ານກໍາລັງປັບປຸງ, ກະລຸນາເລືອກ "ແທນທີ່" ແຖວເກັດທີ່ຢູ່ອື່ນທີ່ມີຢູ່ແລ້ວຈະບໍ່ໄດ້ຮັບການລຶບ." @@ -3413,8 +3531,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ຂໍ້ DocType: Web Form,Web Form,ແບບຟອມ Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},ວັນ {0} ຕ້ອງຢູ່ໃນຮູບແບບ: {1} DocType: About Us Settings,Org History Heading,ປະຫວັດ Org ຫົວ +DocType: Scheduled Job Type,Scheduled Job Type,ປະເພດວຽກທີ່ ກຳ ນົດ DocType: Print Settings,Allow Print for Cancelled,ອະນຸຍາດໃຫ້ພິມສໍາລັບການຍົກເລີກ DocType: Communication,Integrations can use this field to set email delivery status,Integrations ສາມາດນໍາໃຊ້ພາກສະຫນາມນີ້ເພື່ອກໍານົດສະຖານະພາບການສົ່ງອີເມວ +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,ທ່ານບໍ່ມີສິດທີ່ຈະຍົກເລີກເອກະສານທີ່ເຊື່ອມໂຍງທັງ ໝົດ. DocType: Web Form,Web Page Link Text,Web Page Link ຂໍ້ຄວາມ DocType: Page,System Page,Page System DocType: Page,System Page,Page System @@ -3422,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},ການປັບແຕ່ງສໍາລັບ <b>{0}</b> ສົ່ງອອກໄປຫາ: <br> {1} DocType: Website Settings,Include Search in Top Bar,ປະກອບມີການຄົ້ນຫາໃນ Top Bar +DocType: Scheduled Job Type,Daily Long,ປະຈໍາວັນຍາວ DocType: GSuite Settings,Allow GSuite access,ອະນຸຍາດໃຫ້ເຂົ້າເຖິງ GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,ການຕັ້ງຊື່ @@ -3514,6 +3635,7 @@ DocType: Notification,Send days before or after the reference date,ສົ່ງ DocType: User,Allow user to login only after this hour (0-24),ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ເພື່ອເຂົ້າສູ່ລະບົບພຽງແຕ່ຫຼັງຈາກຊົ່ວໂມງນີ້ (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",ມອບ ໝາຍ ໃຫ້ແຕ່ລະອັນຕາມ ລຳ ດັບ DocType: Integration Request,Subscription Notification,Notification Subscription +DocType: Customize Form Field, Allow in Quick Entry ,ອະນຸຍາດໃຫ້ເຂົ້າປະຕູດ່ວນ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ຫຼືຄັດຕິດ DocType: Auto Repeat,Start Date,ວັນທີ່ເລີ່ມ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,ມູນຄ່າ @@ -3528,6 +3650,7 @@ DocType: Google Drive,Backup Folder ID,ID Folder ສຳ ຮອງຂໍ້ມູ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ບໍ່ໄດ້ຢູ່ໃນຮູບແບບການພັດທະນາ! ທີ່ກໍານົດໄວ້ໃນ site_config.json ຫຼືເຮັດໃຫ້ 'Custom' DocType. DocType: Workflow State,globe,ໂລກ DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ວິດີໂອ DocType: Assignment Rule,Priority,ບູລິມະສິດ DocType: Email Queue,Unsubscribe Param,ຍົກເລີກ Param DocType: DocType,Hide Sidebar and Menu,ເຊື່ອງແຖບຂ້າງແລະເມນູ @@ -3539,6 +3662,7 @@ DocType: DocType,Allow Import (via Data Import Tool),ອະນຸຍາດໃຫ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,ເລື່ອນ DocType: Print Settings,Page Settings,ຕັ້ງຄ່າຫນ້າ +DocType: Notification Settings,Notification Settings,ການຕັ້ງຄ່າແຈ້ງເຕືອນ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,ການປະຢັດ ... apps/frappe/frappe/www/update-password.html,Invalid Password,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,ສຳ ເລັດການ ນຳ ເຂົ້າ {0} ບັນທຶກອອກຈາກ {1}. @@ -3554,6 +3678,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,ຮູບພາບຫົວຂໍ້ຈົດ ໝາຍ DocType: Address,Party GSTIN,ພັກ GSTIN +DocType: Scheduled Job Type,Cron Format,ຮູບແບບ Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Report DocType: SMS Settings,Use POST,ໃຊ້ POST DocType: Communication,SMS,ຂໍ້ຄວາມ @@ -3599,18 +3724,20 @@ DocType: Workflow,Allow approval for creator of the document,ອະນຸຍາ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ບັນທຶກລາຍງານ DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Action Server apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator ເຂົ້າ {0} {1} ຜ່ານ IP ທີ່ຢູ່ {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,ພາກສະ ໜາມ ຂອງຜູ້ປົກຄອງຕ້ອງເປັນຊື່ຂໍ້ມູນທີ່ຖືກຕ້ອງ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,ລົ້ມເຫຼວໃນຂະນະທີ່ແກ້ໄຂການຈອງ DocType: LDAP Settings,LDAP Group Field,ສະ ໜາມ LDAP ກຸ່ມ +DocType: Notification Subscribed Document,Notification Subscribed Document,ເອກະສານສະ ໝັກ ແຈ້ງການ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,ເທົ່າກັບ apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,ຮູບແບບ CSV ບໍ່ຖືກຕ້ອງ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","ມີຂໍ້ຜິດພາດໃນການເຊື່ອມຕໍ່ QZ Tray Application ... <br><br> ທ່ານ ຈຳ ເປັນຕ້ອງມີການຕິດຕັ້ງແລະແລ່ນ QZ Tray, ເພື່ອໃຊ້ຄຸນລັກສະນະ Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">ກົດບ່ອນນີ້ເພື່ອດາວໂຫລດແລະຕິດຕັ້ງ QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">ກົດບ່ອນນີ້ເພື່ອຮຽນຮູ້ເພີ່ມເຕີມກ່ຽວກັບການພິມດິບ</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,ກໍານົດຈໍານວນຂອງາຮອງ DocType: DocField,Do not allow user to change after set the first time,ບໍ່ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ສາມາດມີການປ່ຽນແປງຫຼັງຈາກສ້າງຕັ້ງຂອງທີ່ໃຊ້ເວລາທໍາອິດ apps/frappe/frappe/utils/data.py,1 year ago,1 ປີກ່ອນຫນ້ານີ້ +DocType: DocType,Links Section,ພາກສ່ວນເຊື່ອມຕໍ່ apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","ເບິ່ງບັນທຶກຂອງທຸກໆເຫດການການພິມ, ການດາວໂຫລດແລະການສົ່ງອອກ" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ເດືອນ DocType: Contact,Contact,ການຕິດຕໍ່ @@ -3637,16 +3764,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Email ໃຫມ່ DocType: Custom DocPerm,Export,ການສົ່ງອອກ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","ເພື່ອໃຊ້ Google Calendar, ເປີດໃຊ້ {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},ພ້ອມທັງເພີ່ມເຂດຂໍ້ມູນເພິ່ງພາສະຖານະພາບ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},ອັບເດດ ສຳ ເລັດແລ້ວ {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Tray ລົ້ມເຫລວ: DocType: Dropbox Settings,Dropbox Settings,ການຕັ້ງຄ່າ Dropbox DocType: About Us Settings,More content for the bottom of the page.,ເນື້ອຫາເພີ່ມເຕີມສໍາລັບການດ້ານລຸ່ມຂອງຫນ້າ. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ເອກະສານນີ້ໄດ້ຖືກປ່ຽນ ໃໝ່ ແລ້ວ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,ການ ສຳ ຮອງຂໍ້ມູນ Google Drive ສຳ ເລັດແລ້ວ. +DocType: Webhook,Naming Series,ການຕັ້ງຊື່ Series DocType: Workflow,DocType on which this Workflow is applicable.,DocType ທີ່ Workflow ນີ້ແມ່ນສາມາດນໍາໃຊ້. DocType: User,Enabled,ເປີດການໃຊ້ງານ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,ບໍ່ສາມາດສໍາເລັດການຕິດຕັ້ງ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},{0} ໃໝ່: {1} -DocType: Tag Category,Category Name,ປະເພດຂອງຊື່ +DocType: Blog Category,Category Name,ປະເພດຂອງຊື່ apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,ພໍ່ແມ່ຕ້ອງມີຂໍ້ມູນໃນຕາຕະລາງເດັກ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ການນໍາເຂົ້າສະຫມາຊິກ DocType: Print Settings,PDF Settings,ການຕັ້ງຄ່າ PDF @@ -3682,6 +3812,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ປະຕິທິນ apps/frappe/frappe/client.py,No document found for given filters,No ພົບການກັ່ນຕອງໃຫ້ເອກະສານ apps/frappe/frappe/config/website.py,A user who posts blogs.,ຜູ້ໃຊ້ທີ່ຂຽນບລັອກ. +DocType: DocType Action,DocType Action,ປະຕິບັດງານ DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","ອີກປະການຫນຶ່ງ {0} ກັບຊື່ {1} ມີຢູ່, ເລືອກເອົາຊື່ອື່ນ" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,ເວັບໄຊທ໌ Theme Image @@ -3691,6 +3822,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},ບໍ່ apps/frappe/frappe/config/integrations.py,Backup,Backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ປະເພດເອກະສານແມ່ນ ຈຳ ເປັນເພື່ອສ້າງຕາຕະລາງ dashboard DocType: DocField,Read Only,ອ່ານຢ່າງດຽວ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,ບໍ່ສາມາດສ້າງ ຄຳ ສັ່ງ razorpay ໄດ້ apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,ຈົດຫມາຍຂ່າວໃຫມ່ DocType: Energy Point Log,Energy Point Log,ບັນທຶກຈຸດພະລັງງານ DocType: Print Settings,Send Print as PDF,ສົ່ງ Print ເປັນ PDF @@ -3716,16 +3848,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ຢ apps/frappe/frappe/www/login.html,Or login with,ຫລືເຂົ້າສູ່ລະບົບທີ່ມີ DocType: Error Snapshot,Locals,ທ້ອງຖິ່ນ apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ສື່ສານໂດຍຜ່ານ {0} {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ກ່າວມານັ້ນທ່ານໃນຄວາມຄິດເຫັນໃນ {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ເລືອກກຸ່ມໂດຍ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ຕົວຢ່າງ: (55 + 434) / 4 = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ຈໍາເປັນຕ້ອງມີ DocType: Integration Request,Integration Type,ປະເພດການເຊື່ອມໂຍງ DocType: Newsletter,Send Attachements,ສົ່ງໄຟລ໌ແນບ +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,ບໍ່ພົບຕົວກອງໃດໆ apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ການເຊື່ອມໂຍງ Google Contacts. DocType: Transaction Log,Transaction Log,Transaction Log apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),ສະຖິຕິໂດຍອີງໃສ່ຜົນງານຂອງເດືອນທີ່ຜ່ານມາ (ຈາກ {0} ເຖິງ {1}) DocType: Contact Us Settings,City,ເມືອງ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,ເຊື່ອງບັດ ສຳ ລັບຜູ້ໃຊ້ທັງ ໝົດ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,ເປີດໃຊ້ອະນຸຍາດໃຫ້ເຮັດຊ້ ຳ ຄືນແບບອັດຕະໂນມັດ ສຳ ລັບ doctype {0} ໃນແບບຟອມການປັບແຕ່ງ DocType: DocField,Perm Level,Level Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,ເບິ່ງເອກະສານ @@ -3737,6 +3870,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ໃນການຊອກຫາ Global' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ໃນການຊອກຫາ Global' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} DocType: Energy Point Log,Appreciation,ການຍົກຍ້ອງ +DocType: Dashboard Chart,Number of Groups,ຈຳ ນວນຂອງກຸ່ມ apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,ບັນຊີ View DocType: Workflow,Don't Override Status,ບໍ່ແທນສະຖານະ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,ໄລຍະການຊອກຫາ @@ -3778,7 +3912,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn- ທິດຕາເວັນຕົກສຽງ ເໜືອ -1 DocType: Dropbox Settings,Limit Number of DB Backups,ຈໍາກັດຈໍານວນ DB Backups DocType: Custom DocPerm,Level,ລະດັບ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 ວັນທີ່ຜ່ານມາ DocType: Custom DocPerm,Report,ບົດລາຍງານ apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,ຈໍານວນເງິນທີ່ຕ້ອງໄດ້ຫຼາຍກ່ວາ 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,ເຊື່ອມຕໍ່ກັບ QZ Tray! @@ -3795,6 +3928,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,ເລືອກຕາຕະລາງເດັກ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ປະຕິບັດການປະຖົມພະຍາບານ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,ການປ່ຽນແປງ +DocType: Social Login Key,User ID Property,ຄຸນສົມບັດປະ ຈຳ ຕົວຜູ້ໃຊ້ DocType: Email Domain,domain name,ຊື່ໂດເມນ DocType: Contact Email,Contact Email,ການຕິດຕໍ່ DocType: Kanban Board Column,Order,ຄໍາສັ່ງ @@ -3817,7 +3951,7 @@ DocType: Contact,Last Name,ນາມສະກຸນ DocType: Event,Private,ສ່ວນຕົວ apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,ບໍ່ມີຂໍ້ມູນສໍາລັບມື້ນີ້ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ສົ່ງ Attachments Email Print ເປັນ PDF (ແນະນໍາໃຫ້) -DocType: Web Page,Left,ໄວ້ +DocType: Onboarding Slide Field,Left,ໄວ້ DocType: Event,All Day,ຫມົດມື້ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ເບິ່ງຄືວ່າບາງສິ່ງບາງຢ່າງຜິດພາດກັບການຕັ້ງຄ່າຕູການຈ່າຍເງິນຂອງເວັບໄຊນີ້. ບໍ່ຕ້ອງຈ່າຍເງິນໄດ້ຮັບການເຮັດ. DocType: GCalendar Settings,State,State @@ -3849,7 +3983,6 @@ DocType: Workflow State,User,ຜູ້ໃຊ້ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ສະແດງໃຫ້ເຫັນຫົວຂໍ້ຢູ່ໃນປ່ອງຢ້ຽມຂອງຕົວທ່ອງເວັບເປັນ "ຄໍານໍາຫນ້າ - ຫົວຂໍ້" DocType: Payment Gateway,Gateway Settings,ການຕັ້ງຄ່າ Gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ຂໍ້ຄວາມໃນປະເພດເອກະສານ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,ດໍາເນີນການທົດສອບ apps/frappe/frappe/handler.py,Logged Out,ອອກຈາກລະບົບ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ເພີ່ມເຕີມ ... DocType: System Settings,User can login using Email id or Mobile number,User ສາມາດເຂົ້າສູ່ລະບົບໂດຍໃຊ້ id ອີເມວຫຼືເບີໂທລະສັບມືຖື @@ -3866,6 +3999,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Summary DocType: Event,Event Participants,ຜູ້ເຂົ້າຮ່ວມເຫດການ DocType: Auto Repeat,Frequency,ຄວາມຖີ່ຂອງການ +DocType: Onboarding Slide,Slide Order,ບໍລິການເລື່ອນພາບ DocType: Custom Field,Insert After,ສະແດງກິ່ງງ່າຫຼັງຈາກ DocType: Event,Sync with Google Calendar,ຊິ້ງກັບ Google Calendar DocType: Access Log,Report Name,ຊື່ລາຍວຽກ @@ -3893,6 +4027,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},width ສູງສຸດສໍາລັບປະເພດສະກຸນເງິນຄື 100px ຕິດຕໍ່ກັນ {0} apps/frappe/frappe/config/website.py,Content web page.,ເວັບໄຊທ໌ເນື້ອໃນ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ຕື່ມການພາລະບົດບາດໃຫມ່ +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ເຂົ້າເບິ່ງເວບໄຊທ໌ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ການມອບ ໝາຍ ໃໝ່ DocType: Google Contacts,Last Sync On,Last Sync On DocType: Deleted Document,Deleted Document,ເອກະສານລຶບ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! ບາງສິ່ງບາງຢ່າງໄດ້ຜິດພາດ @@ -3903,7 +4039,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ພູມສັນ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ການຂະຫຍາຍ script ຂ້າງລູກຄ້າໃນ Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,ບັນທຶກສໍາລັບ doctypes ດັ່ງຕໍ່ໄປນີ້ຈະຖືກກັ່ນຕອງ -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Scheduler Inactive +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Scheduler Inactive DocType: Blog Settings,Blog Introduction,ການນໍາສະເຫນີ Blog DocType: Global Search Settings,Search Priorities,ບູລິມະສິດຄົ້ນຫາ DocType: Address,Office,ຫ້ອງການ @@ -3913,13 +4049,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ການເຊື່ອມ DocType: User,Email Settings,ການຕັ້ງຄ່າ Email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ລົງທີ່ນີ້ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","ຖ້າເປີດໃຊ້, ຜູ້ໃຊ້ສາມາດເຂົ້າສູ່ລະບົບຈາກທີ່ຢູ່ IP ໃດໆໂດຍໃຊ້ສອງ Factor Auth, ນີ້ຍັງສາມາດຕັ້ງຄ່າ ສຳ ລັບຜູ້ໃຊ້ທັງ ໝົດ ໃນ System Settings" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,ການຕັ້ງຄ່າເຄື່ອງພິມ ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,ກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານທີ່ຈະສືບຕໍ່ການ apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,ກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານທີ່ຈະສືບຕໍ່ການ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ຂ້ອຍ apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ບໍ່ State ຖືກຕ້ອງ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,ນຳ ໃຊ້ກັບທຸກປະເພດເອກະສານ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ການປັບປຸງຈຸດພະລັງງານ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,ການປັບປຸງຈຸດພະລັງງານ +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),ດຳ ເນີນວຽກງານປະ ຈຳ ວັນເທົ່ານັ້ນຖ້າບໍ່ມີວຽກ ສຳ ລັບ (ວັນ) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ກະລຸນາເລືອກວິທີການຊໍາລະເງິນອື່ນ. PayPal ບໍ່ສະຫນັບສະຫນູນທຸລະກໍາໃນສະກຸນເງິນ '{0}' DocType: Chat Message,Room Type,ປະເພດຫ້ອງພັກ DocType: Data Import Beta,Import Log Preview,ການ ນຳ ເຂົ້າບັນທຶກການ ນຳ ເຂົ້າ @@ -3928,6 +4064,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,"ok, ແຜ່ນປ້າຍວົງກົມ" DocType: LDAP Settings,LDAP User Creation and Mapping,ການສ້າງແລະສ້າງແຜນທີ່ຜູ້ໃຊ້ LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',ທ່ານສາມາດຊອກຫາສິ່ງທີ່ໂດຍສະເຫນີຂໍ 'ຊອກຫາສີສົ້ມໃນຂອງລູກຄ້າ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,ເຫດການໃນມື້ນີ້ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,ຂໍໂທດ! ຜູ້ໃຊ້ຄວນຈະມີການເຂົ້າເຖິງສໍາເລັດໃນການບັນທຶກຂອງຕົນເອງຂອງເຂົາເຈົ້າ. ,Usage Info,ຂໍ້ມູນການນໍາໃຊ້ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,ສະແດງທາງລັດແປ້ນພິມ @@ -3944,6 +4081,7 @@ DocType: DocField,Unique,ເປັນເອກະລັກ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ຍົກຍ້ອງໃນ {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Partial Success DocType: Email Account,Service,ການບໍລິການ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ຕັ້ງຄ່າ> ຜູ້ໃຊ້ DocType: File,File Name,ຊື່ເອກະສານ apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ບໍ່ໄດ້ຊອກຫາ {0} {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3957,6 +4095,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ກາ DocType: GCalendar Settings,Enable,ເປີດນໍາໃຊ້ DocType: Google Maps Settings,Home Address,ທີ່ຢູ່ເຮືອນ apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),ທ່ານພຽງແຕ່ສາມາດອັບໂຫລດໄດ້ບໍ່ເກີນ 5000 ການບັນທຶກການໃນຫນຶ່ງ Go. (ອາດຈະມີຫນ້ອຍໃນບາງກໍລະນີ) +DocType: Report,"output in the form of `data = [columns, result]`","ຜົນຜະລິດໃນຮູບແບບຂອງ `ຂໍ້ມູນ = [ຄໍລໍາ, ຜົນໄດ້ຮັບ]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ປະເພດເອກະສານທີ່ໃຊ້ໄດ້ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ຕັ້ງກົດລະບຽບ ສຳ ລັບການມອບ ໝາຍ ຂອງຜູ້ໃຊ້. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ການອະນຸຍາດບໍ່ພຽງພໍສໍາລັບການ {0} @@ -3974,7 +4113,6 @@ DocType: Communication,To and CC,ແລະ CC DocType: SMS Settings,Static Parameters,ພາລາມິເຕີຄົງ DocType: Chat Message,Room,ຫ້ອງ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ການປັບປຸງເພື່ອ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,ວຽກພື້ນຖານບໍ່ໄດ້ເຮັດວຽກ. ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບ DocType: Portal Settings,Custom Menu Items,ລາຍການເມນູທີ່ກໍາຫນົດເອງ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ຮູບພາບຕ່າງໆທັງຫມົດທີ່ຕິດກັບເວັບໄຊຕ໌ Slideshow ຄວນຈະເປັນສາທາລະນະ DocType: Workflow State,chevron-right,ວົງຢືມຊ້ອນຂວາ @@ -3989,11 +4127,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ຄຸນຄ່າທີ່ເລືອກ DocType: DocType,Allow Auto Repeat,ອະນຸຍາດໃຫ້ເຮັດເລື້ມຄືນອັດຕະໂນມັດ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ບໍ່ມີຄ່າຫຍັງທີ່ຈະສະແດງ +DocType: DocType,URL for documentation or help,URL ສຳ ລັບເອກະສານຫລືຄວາມຊ່ວຍເຫຼືອ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ແບບອີເມວ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,ການອັບເດດບັນທຶກ {0} ສຳ ເລັດແລ້ວ. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ຜູ້ໃຊ້ {0} ບໍ່ມີສິດເຂົ້າເຖິງ doctype ໂດຍຜ່ານການອະນຸຍາດບົດບາດ ສຳ ລັບເອກະສານ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ທັງສອງເຂົ້າສູ່ລະບົບແລະລະຫັດຜ່ານທີ່ກໍານົດໄວ້ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,ຂໍໃຫ້ \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ກະລຸນາໂຫຼດຫນ້າຈໍຄືນເພື່ອໃຫ້ໄດ້ຮັບເອກະສານຫລ້າສຸດ. DocType: User,Security Settings,ການຕັ້ງຄ່າຄວາມປອດໄພ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,ເພີ່ມຄໍລໍາ @@ -4003,6 +4143,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,ການກັ່ນຕອງ Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},ກະລຸນາຊອກຫາທີ່ຕິດຄັດມາ {0}: {1} DocType: Web Page,Set Meta Tags,ຕັ້ງແທັກ Meta +DocType: Email Account,Use SSL for Outgoing,ໃຊ້ SSL ສຳ ລັບລາຍຈ່າຍ 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: S3 Backup Settings,Backup Limit,Backup Limit DocType: Dashboard Chart,Line,ສາຍ @@ -4035,4 +4176,3 @@ DocType: DocField,Ignore User Permissions,ບໍ່ສົນໃຈການອ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,ບັນທຶກຢ່າງ ສຳ ເລັດຜົນ apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,ກະລຸນາຂໍໃຫ້ຜູ້ບໍລິຫານຂອງທ່ານເພື່ອກວດສອບການເຂົ້າລະບົບຂຶ້ນ DocType: Domain Settings,Active Domains,Domains Active -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,ສະແດງໃຫ້ເຫັນເຂົ້າສູ່ລະບົບ diff --git a/frappe/translations/lt.csv b/frappe/translations/lt.csv index 53b64b4097..b0c171a404 100644 --- a/frappe/translations/lt.csv +++ b/frappe/translations/lt.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Prašome pasirinkti laukelyje Kiekis. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Įkeliamas importo failas ... DocType: Assignment Rule,Last User,Paskutinis vartotojas -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nauja užduotis, {0}, buvo priskirtas jums {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sesijos numatytosios vertės išsaugotos apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Iš naujo įkelti failą DocType: Email Queue,Email Queue records.,Paštas Queue įrašus. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} medis DocType: User,User Emails,Vartotojo Parašyta DocType: User,Username,Vartotojo vardas apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importuoti Zip +DocType: Scheduled Job Type,Create Log,Kurti žurnalą apps/frappe/frappe/model/base_document.py,Value too big,Vertė per didelis DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Vykdyti scenarijų testas @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,kas mėnesį DocType: Address,Uttarakhand,Utarakhandas DocType: Email Account,Enable Incoming,Įjungti Sąlygos straipsnį apps/frappe/frappe/core/doctype/version/version_view.html,Danger,pavojus -DocType: Address,Email Address,Elektroninio pašto adresas +apps/frappe/frappe/www/login.py,Email Address,Elektroninio pašto adresas DocType: Workflow State,th-large,TH-didelis DocType: Communication,Unread Notification Sent,Neperskaityta išsiųstą pranešimą apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksportas neleidžiama. Jums reikia {0} vaidmenį eksportui. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Atš DocType: DocType,Is Published Field,Skelbiama laukas DocType: GCalendar Settings,GCalendar Settings,"GCalendar" nustatymai DocType: Email Group,Email Group,paštas grupė +apps/frappe/frappe/__init__.py,Only for {},Tik {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","„Google“ kalendorius - Nepavyko ištrinti įvykio {0} iš „Google“ kalendoriaus, klaidos kodas {1}." DocType: Event,Pulled from Google Calendar,Ištrauktas iš „Google“ kalendoriaus DocType: Note,Seen By,matyti apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Pridėti kelis -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Jūs įgijote tam tikrų energijos taškų apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Netinkamas vartotojo paveikslėlis. DocType: Energy Point Log,Reverted,Grįžo DocType: Success Action,First Success Message,Pirmasis sėkmės pranešimas @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Not Like apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Neteisingas vertė: {0} turi būti {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Pakeisti lauko savybės (slėpti, tik skaitymui, leidimas ir tt)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Įvertink +DocType: Notification Settings,Document Share,Dokumentų bendrinimas DocType: Workflow State,lock,spyna apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nustatymai Susisiekime puslapį. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administratorius Prisijungęs Be @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Jei įjungta, dokumentas pažymimas kaip matomas, pirmą kartą vartotojas jį atidaro" DocType: Auto Repeat,Repeat on Day,Pakartokite dieną DocType: DocField,Color,spalva +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Pažymėti visus kaip skaitytus DocType: Data Migration Run,Log,Prisijungti DocType: Workflow State,indent-right,įtrauka dešiniajame DocType: Has Role,Has Role,turi vaidmuo @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Rodyti „Traceback“ DocType: DocType,Default Print Format,Numatytoji spausdinimo formatas DocType: Workflow State,Tags,Žymos +DocType: Onboarding Slide,Slide Type,Skaidrės tipas apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nėra: pabaiga Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} laukelis negali būti nustatyti kaip unikalus {1}, nes yra ne unikalus esamos gamtos vertybės" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentų tipai @@ -136,7 +139,6 @@ DocType: Language,Guest,Svečias DocType: DocType,Title Field,Pavadinimas laukas DocType: Error Log,Error Log,klaida Prisijungti apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,neteisingas URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Paskutinės 7 dienos apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Pakartoja, pavyzdžiui, "abcabcabc" yra tik šiek tiek sunkiau atspėti nei "ABC"" DocType: Notification,Channel,Kanalas apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jei manote, kad tai yra neleistinas, prašome pakeisti administratoriaus slaptažodį." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,klientas apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Pasirinkite stulpelį apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Ši forma buvo pakeistas po to, kai ją pakrauti" DocType: Address,Himachal Pradesh,Himačal Pradešas +DocType: Notification Log,Notification Log,Pranešimų žurnalas DocType: System Settings,"If not set, the currency precision will depend on number format","Jei nenustatytas, valiutų tikslumas priklausys nuo skaičių formatu" DocType: System Settings,"If not set, the currency precision will depend on number format","Jei nenustatytas, valiutų tikslumas priklausys nuo skaičių formatu" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Atidarykite „Awesomebar“ @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Į apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,siųsti DocType: Workflow Action Master,Workflow Action Name,Darbo eigos Veiksmo pavadinimas apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE negali būti sujungtos -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ne zip failą DocType: Global Search DocType,Global Search DocType,Visuotinės paieškos „DocType“ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Laiškas išsiųstas? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Perjungti diagramą apps/frappe/frappe/desk/form/save.py,Did not cancel,Nebuvo atšaukti DocType: Social Login Key,Client Information,Kliento informacija +DocType: Energy Point Rule,Apply this rule only once per document,Taikykite šią taisyklę tik vieną kartą vienam dokumentui DocType: Workflow State,plus,plius +DocType: DocField,Read Only Depends On,Tik skaitymas priklauso nuo apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Prisijungęs kaip svečias ar administratorius DocType: Email Account,UNSEEN,unseen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,failų tvarkyklė @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,priežastis 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Jokios veiklos +DocType: Server Script,Script Manager,Scenarijų tvarkyklė +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Jokios veiklos apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Trečiųjų šalių programos apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Šiandien nėra įvykių apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Jūs negalite skirti apžvalgos taškų sau apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,"DocType" turi būti Pateiktas pasirinktam "Doc Event" DocType: Workflow State,circle-arrow-up,apskritimo rodyklė viršų @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Neleidžiama {0}: {1}. Ribotas laukas: {2} 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,You are not allowed to delete a standard Website Theme,Jūs negalite trinti standartinę svetainės temą +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Sukurkite savo pirmąjį {0} DocType: Data Import,Log Details,Prisijungti DocType: Workflow Transition,Example,Pavyzdys DocType: Webhook Header,Webhook Header,"Webhook" antraštė @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Pokalbių fonas apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Žymėti kaip skaitytas apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Atnaujinama {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,„Onboarding Slide“ <b>{0}</b> su ta pačia skaidrių tvarka jau yra apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Išjungti ataskaita DocType: Translation,Contributed Translation Doctype Name,Pridėtas vertimo „Doctype“ vardas +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą DocType: PayPal Settings,Redirect To,nukreipti į DocType: Data Migration Mapping,Pull,Traukti DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formatas: frappe.query_reports [ 'REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Vidaus įrašas dokumentų DocType: Energy Point Settings,Review Levels,Apžvalgos lygiai DocType: Workflow State,Comment,komentaras DocType: Data Migration Plan,Postprocess Method,Postprocess metodas +DocType: DocType Action,Action Type,Veiksmo tipas apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Nufotografuoti DocType: Assignment Rule,Round Robin,Apvalus Robinas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",Galite keisti pateiktus dokumentus juos panaikinti ir tada juos pakeitimų. @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Išsaugoti kaip DocType: Comment,Seen,Žiūrint apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Rodyti daugiau informacijos +DocType: Server Script,Before Submit,Prieš pateikdami 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,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,Archive,archyvas @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ZMI prieigos raktas apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Neteisingas lauko pavadinimas <b>{0}</b> į custom_ script konfigūravimo add_fetch apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Pasirinkite „Google“ kontaktus, į kuriuos adresatas turėtų būti sinchronizuojamas." DocType: Web Page,Main Section (HTML),Pagrindinė dalis (HTML) +DocType: Scheduled Job Type,Annual,metinis DocType: Workflow State,headphones,ausinės apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Slaptažodis reikalingas arba pasirinkite Laukiama Slaptažodis DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,pvz replies@yourcomany.com. Visi atsakymai ateis į šią pašto dėžutę. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Nustatoma skaidrės tvarka vedlyje. Jei skaidrės nereikia rodyti, prioritetas turėtų būti nustatytas į 0." DocType: Data Migration Run,Current Mapping,Dabartinis kartografavimas apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Galioja siųsti ir pavadinimas reikalingas apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Padarykite visus priedus privačius @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Pereinamojo laikotarpio taisyklės apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Rodomos tik pirmosios peržiūros {0} eilutės apps/frappe/frappe/core/doctype/report/report.js,Example:,Pavyzdys: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Apribojimai DocType: Workflow,Defines workflow states and rules for a document.,Apibrėžia darbo eigos būsenas ir taisykles dokumentu. DocType: Workflow State,Filter,Filtras apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},"Patikrinkite klaidų žurnalą, kad gautumėte daugiau informacijos: {0}" @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Darbas apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} atsijungus: {1} DocType: Address,West Bengal,Vakarų Bengalija +DocType: Onboarding Slide,Information,Informacija apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Negalima nustatyti Susieti Pateikti jei ne Submittable DocType: Transaction Log,Row Index,Eilučių indeksas DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,mygtukas Pagalba DocType: Kanban Board Column,purple,violetinė DocType: About Us Settings,Team Members,Komandos nariai +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Neveikiančioms svetainėms vykdys suplanuotus darbus tik kartą per dieną. Numatyta 4 dienos, jei nustatyta 0." DocType: Assignment Rule,System Manager,sistemos direktorius +DocType: Scheduled Job Log,Scheduled Job,Suplanuotas darbas DocType: Custom DocPerm,Permissions,Leidimai apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Vidinės integracijos internetinės sąsajos DocType: Dropbox Settings,Allow Dropbox Access,Leiskite Dropbox Prisijunkite @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skenu DocType: Email Flag Queue,Email Flag Queue,Paštas Žymėti eilės DocType: Access Log,Columns / Fields,Stulpeliai / laukai apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Spausdinimo formatų stilių lentelės +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,„Aggregate Function“ laukas reikalingas prietaisų skydelio diagramai sukurti apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Negali nustatyti atidaryti {0}. Išbandykite ką nors kita. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Jūsų informacija buvo pateikta apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Vartotojas {0} ištrinti negalima @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,lauko pavadinimas DocType: Assignment Rule,Assign To Users,Priskirti vartotojams apps/frappe/frappe/public/js/frappe/utils/utils.js,or,arba apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modulis vardas ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Tęsti +DocType: Onboarding Slide,Continue,Tęsti apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,„Google“ integracija neleidžiama. DocType: Custom Field,Fieldname,nazwapola DocType: Workflow State,certificate,pažymėjimas apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Tikrinti ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Jūsų užduotis {0} {1} buvo pašalinta apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Pirmasis duomenų stulpelis turi būti tuščias. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Rodyti visas versijas apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Peržiūrėti komentarą @@ -432,12 +452,14 @@ DocType: User,Restrict IP,apriboti IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,prietaisų skydas apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nepavyko išsiųsti laiškus šiuo metu apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","„Google“ kalendorius - Nepavyko atnaujinti {0} įvykio „Google“ kalendoriuje, klaidos kodas {1}." +DocType: Notification Log,Email Content,El. Pašto turinys apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Paieška arba įveskite komandą DocType: Activity Log,Timeline Name,Chronologija Vardas apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Tik vienas {0} gali būti nustatytas kaip pagrindinis. DocType: Email Account,e.g. smtp.gmail.com,pvz smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Įdėti naują taisyklę DocType: Contact,Sales Master Manager,Pardavimų magistras direktorius +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Jei norite, kad programa veiktų, turite įgalinti „JavaScript“." DocType: User Permission,For Value,Dėl vertės DocType: Event,Google Calendar ID,"Google" kalendoriaus ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Vienas Paskutinis žingsnis @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP vidurinio vardo laukas apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importuojama {0} iš {1} DocType: GCalendar Account,Allow GCalendar Access,Leisti "GCalendar" prieigą apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} yra privalomas laukas +DocType: DocType,Documentation Link,Dokumentacijos nuoroda apps/frappe/frappe/templates/includes/login/login.js,Login token required,Reikalingas prisijungimo raktas apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mėnesio reitingas: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pasirinkite kelis sąrašo elementus @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL failui DocType: Version,Table HTML,stalo HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Pridėti abonentų +DocType: Notification Log,Energy Point,Energijos taškas apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Artimiausi Renginiai Šiandien DocType: Google Calendar,Push to Google Calendar,Pereikite prie „Google“ kalendoriaus DocType: Notification Recipient,Email By Document Field,Paštas Dokumentu Field @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Toli DocType: Currency,Fraction Units,frakcija vienetai apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} iš {1} ir {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Pažymėti kaip atliktą DocType: Chat Message,Type,tipas DocType: Google Settings,OAuth Client ID,„OAuth“ kliento ID DocType: Auto Repeat,Subject,tema apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Atgal į stalą DocType: Web Form,Amount Based On Field,Suma pagal lauko +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nėra stebimų versijų. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Vartotojas yra privalomas Share DocType: DocField,Hidden,Paslėptas DocType: Web Form,Allow Incomplete Forms,Leiskite neišsami Forms @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Prašome pasitikrinti savo elektroninį paštą patikrinti apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Kartus gali būti ne tuo formos gale DocType: Communication,Bounced,sugrįžta +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,apie DocType: Deleted Document,Deleted Name,ištrintas Vardas apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistemos ir svetainės lankytojai DocType: Workflow Document State,Doc Status,doc būsena @@ -527,6 +552,7 @@ DocType: Language,Language Code,Kalbos kodas DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Pastaba: pagal nutylėjimą el. Laiškai siunčiami dėl nepavykusių atsarginių kopijų. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Pridėti filtrą apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS siunčiami šiais numeriais: {0} +DocType: Notification Settings,Assignments,Užduotys apps/frappe/frappe/utils/data.py,{0} and {1},{0} ir {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Pradėkite pokalbį. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Visada pridėti "Juodraštis" kategorija spausdinimo dokumentų projektų @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Dabartinė žemėlapių pradž apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Laiškas buvo pažymėtas kaip šlamštas DocType: Comment,Website Manager,Interneto svetainė direktorius apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Failo įkėlimas atjungtas. Prašau, pabandykite dar kartą." +DocType: Data Import Beta,Show Failed Logs,Rodyti nepavykusius žurnalus apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Vertimai apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Pasirinkote projektas ar panaikintas dokumentai apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentas {0} buvo nustatytas kaip {1} iki {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Dokumento Laukia eilės DocType: GSuite Templates,Destination ID,Paskirtis ID DocType: Desktop Icon,List,sąrašas DocType: Activity Log,Link Name,Nuoroda Vardas +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Tu prieglobstis \ DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY +DocType: Onboarding Slide,Onboarding Slide,Borto čiuožykla apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neteisingas slaptažodis: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neteisingas slaptažodis: DocType: Print Settings,Send document web view link in email,Siųsti dokumento interneto vaizdo nuorodą elektroniniu paštu @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,tamsiai pilka apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Sėkmingas: {0} ir {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Lašas +DocType: Dashboard Chart,Aggregate Function Based On,Bendra funkcija pagrįsta apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Prašome dubliuoti tai padaryti pakeitimus apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Paspauskite "Enter", kad išsaugotumėte" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"PDF karta nepavyko, nes neveikiančių paveikslėlių nuorodos" @@ -617,7 +647,9 @@ DocType: Notification,Days Before,dienų iki apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dienos įvykiai turėtų būti baigti tą pačią dieną. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redaguoti... DocType: Workflow State,volume-down,Kiekis apačią +DocType: Onboarding Slide,Help Links,Pagalbos nuorodos apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Prieiga neleidžiama iš šio IP adreso +DocType: Notification Settings,Enable Email Notifications,Įgalinti el. Pašto pranešimus apps/frappe/frappe/desk/reportview.py,No Tags,Žymų nėra DocType: Email Account,Send Notification to,Siųsti pranešimą į DocType: DocField,Collapsible,išardomas @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Paskutinė atsarginė kopija įjungta DocType: Customize Form Field,Customize Form Field,Tinkinti formos laukas DocType: Energy Point Rule,For Document Event,Dokumentų renginiui DocType: Website Settings,Chat Room Name,Pokalbių kambario vardas +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Nekeista DocType: OAuth Client,Grant Type,Dotacijos tipas apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Patikrinkite, kokius dokumentus perskaitomas Vartotojo" DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,naud DocType: Auto Repeat,Quarterly,kas ketvirtį apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Visą laiką apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Neteisėtas dokumento statusas {0} DocType: Email Account,Enable Auto Reply,Įgalinti automatinį Atsakyti apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nematytas @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Prane DocType: Email Account,Notify if unreplied,"Praneškite, jei neatsakytas" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Nuskaitykite QR kodą ir įveskite gautą kodą. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Įgalinti gradientus +DocType: Scheduled Job Type,Hourly Long,Kas valandą ilgai DocType: System Settings,Minimum Password Score,Minimalus Slaptažodžių balas DocType: System Settings,Minimum Password Score,Minimalus Slaptažodžių balas DocType: DocType,Fields,Laukai @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,tėvų lent apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 atsarginė kopija baigta! apps/frappe/frappe/config/desktop.py,Developer,Programuotojas apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Sukurta +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Norėdami ją įjungti, vykdykite šioje nuorodoje pateiktas instrukcijas: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} iš eilės {1} negali turėti abiejų URL ir vaiko daiktus apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Šiose lentelėse turėtų būti bent viena eilutė: {0} DocType: Print Format,Default Print Language,Numatytoji spausdinimo kalba apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Protėviai apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Šaknis {0} ištrinti negalima +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nėra nepavykusių žurnalų apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Komentarų nėra apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Prieš nustatydami jį kaip autentifikavimo metodą, nustatykite SMS žinutę per SMS nustatymus" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,"Tiek dokumentų tipas ir pavadinimas, reikalingas" @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,Apatinė daiktai apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meniu DocType: DefaultValue,DefaultValue,Numatytoji reikšmė DocType: Auto Repeat,Daily,kasdien +DocType: Onboarding Slide,Max Count,Maksimalus skaičius apps/frappe/frappe/config/users_and_permissions.py,User Roles,Vartotojų vaidmenys DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Nekilnojamas seteris viršesnis standartinį DOCTYPE ar lauko turtą apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Negalima pakeitimai: Neteisingas / Negaliojanti nuorodą. @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_ blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,kariuomenė DocType: Data Import Beta,Import File,Importuoti failą +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Šablono klaida apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Skiltis <b>{0}</b> jau egzistuoja. DocType: ToDo,High,aukštas apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Naujas įvykis @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,Rodyti filtru DocType: Address,Daman and Diu,Damanas ir Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,projektas DocType: Address,Personal,Asmeninis +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Neapdoroti spausdinimo nustatymai ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,"Norėdami gauti išsamesnės informacijos, žiūrėkite https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region." apps/frappe/frappe/config/settings.py,Bulk Rename,Tūrinės Pervadinti DocType: Email Queue,Show as cc,Rodyti kaip cc @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Imtis video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Įvadinė informacija apie Susisiekime puslapį DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,nepatinka +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Dokumentų atšaukimas DocType: User,Send Notifications for Email threads,Siųsti pranešimus apie el. Pašto gijas apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne kūrėjo režimu @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Failo atsar DocType: DocField,In Global Search,Global paieška DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,įtrauka kairiajame -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Prieš {0} metus (-ių) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Tai rizikinga ištrinti šį failą: {0}. Prašome susisiekti su savo sistemos valdytojas. DocType: Currency,Currency Name,valiutos pavadinimas apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nieko Parašyta @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,Vartotojo laukas DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Paspauskite "Ištrinti" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} jau atsisakėte už {1} {2} +DocType: Scheduled Job Type,Stopped,sustabdyta apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nebuvo pašalinti apps/frappe/frappe/desk/like.py,Liked,patiko apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Išsiusti dabar apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standartinė DOCTYPE negali turėti numatytąjį spausdinimo formatą, naudokite Konfigūruoti formą" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standartinė DOCTYPE negali turėti numatytąjį spausdinimo formatą, naudokite Konfigūruoti formą" +DocType: Server Script,Allow Guest,Leisti svečiui DocType: Report,Query,užklausa DocType: Customize Form,Sort Order,Rikiuoti apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""Sąrašo rodinys"" neleidžiamas {0} tipui {1} eilutėje" @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Du faktoriaus autentifikavimo metodai apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Pirmiausia nustatykite vardą ir įrašykite įrašą. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 įrašai +DocType: DocType Link,Link Fieldname,Nuorodos lauko pavadinimas apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Dalijamasi su {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Atsisakyti DocType: View Log,Reference Name,Nuorodoje apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Keisti vartotoją +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pirmas apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Atnaujinti vertimus DocType: Error Snapshot,Exception,išimtis DocType: Email Account,Use IMAP,naudojate IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Taisykles, apibrėžiančias perėjimą valstybės, eigos." DocType: File,Folder,aplankas DocType: Website Route Meta,Website Route Meta,Svetainės maršruto meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Borto skaidrių laukas DocType: DocField,Index,Indeksas DocType: Email Group,Newsletter Manager,Naujienų direktorius apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,1 variantas @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nus apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigūruoti diagramas DocType: User,Last IP,Paskutinis IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Prašome pridėti temą el. Paštu -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Su jumis pasidalijamas naujas dokumentas {0} {1}. DocType: Data Migration Connector,Data Migration Connector,Duomenų perkėlimo jungtis apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} grąžino {1} DocType: Email Account,Track Email Status,Stebėti el. Pašto būseną @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,numatytasis Siunčiami DocType: Workflow State,play,Groti apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Spauskite nuorodą žemiau, norėdami baigti savo registraciją ir nustatyti naują slaptažodį" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nebuvo pridėti +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} surinko {1} taškų už {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nėra Siųsti sąskaitų Asignuotosios DocType: S3 Backup Settings,eu-west-2,eu-vakarai-2 DocType: Contact Us Settings,Contact Us Settings,Susisiekite su mumis Nustatymai @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Ieškoma DocType: Workflow State,text-width,teksto plotis apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimalus Priedas riba šiam pasiektas rekordas. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Ieškokite pagal failo vardą arba plėtinį +DocType: Onboarding Slide,Slide Title,Skaidrės pavadinimas DocType: Notification,View Properties (via Customize Form),Peržiūrėti objektus (per Tinkinti forma) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Spustelėkite failą, kad jį pasirinktumėte." DocType: Note Seen By,Note Seen By,Pastaba matyti @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Bendrinti URL DocType: System Settings,Allow Consecutive Login Attempts ,Leisti nuoseklius prisijungimo bandymus apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Mokėjimo metu įvyko klaida. Prašome susisiekti su mumis. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Jei Skaidrės tipas yra „Sukurti“ arba „Nustatymai“, {ref_doctype} .py faile turėtų būti metodas „sukurti_onboarding_docs“, kuris privalo būti įvykdytas užbaigus skaidrę." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,prieš {0} dienas DocType: Email Account,Awaiting Password,Laukiama Slaptažodžių DocType: Address,Address Line 1,Adreso eilutė 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ne palikuonys iš DocType: Contact,Company Name,Įmonės pavadinimas DocType: Custom DocPerm,Role,vaidmuo -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Parametrai ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,į savo naršyklę apps/frappe/frappe/utils/data.py,Cent,centas ,Recorder,Diktofonas @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Stebėkite, ar gavėjas atidarė jūsų el. Laišką. <br> Pastaba: jei siunčiate keliems gavėjams, net jei 1 gavėjas skaito el. Laišką, jis bus laikomas atidarytu" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Trūkstamas reikšmes Reikalinga apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Leisti „Google“ kontaktų prieigą +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ribotas DocType: Data Migration Connector,Frappe,atšaldytas apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Žymėti kaip neskaitytą DocType: Activity Log,Operation,Operacija @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,Leiskite Spausdinti DocType: Communication,Clicked,paspaudėte apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Neatlikti apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nėra leidimo {0} "{1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nustatykite numatytąją el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto abonementas apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planuojama siųsti DocType: DocType,Track Seen,Įrašo matytas DocType: Dropbox Settings,File Backup,Failo atsarginė kopija @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Nėra {0} ner apps/frappe/frappe/config/customization.py,Add custom forms.,Pridėti užsakymą formas. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} iš {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,pateikė šį dokumentą -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistema suteikia daug iš anksto apibrėžtų vaidmenis. Jūs galite pridėti naujus vaidmenis nustatyti subtilius leidimus. DocType: Communication,CC,CK DocType: Country,Geo,geo DocType: Data Migration Run,Trigger Name,Paleidimo pavadinimas -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domenai +DocType: Onboarding Slide,Domains,Domenai DocType: Blog Category,Blog Category,Dienoraštis Kategorija apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Negalima map nes tokia sąlyga nepavyksta: DocType: Role Permission for Page and Report,Roles HTML,vaidmenys HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,šeštadienis DocType: User,Represents a User in the system.,Atstovauja vartotoją sistemoje. DocType: List View Setting,Disable Auto Refresh,Išjungti automatinį atnaujinimą DocType: Comment,Label,etiketė -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Užduotis {0}, kad jums skiriamas {1}, buvo uždaryta." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Prašome uždaryti šį langą DocType: Print Format,Print Format Type,Spausdinti Formatas tipas DocType: Newsletter,A Lead with this Email Address should exist,Kreipiančiųjų su Šis el.pašto adresas turėtų egzistuoti @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP parametrai išeina apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pasirinkti DocType: Data Export,Filter List,Filtrų sąrašas DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Automatinis Atsakyti pranešimas DocType: Data Migration Mapping,Condition,būklė apps/frappe/frappe/utils/data.py,{0} hours ago,prieš {0} valandos @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Žinių bazės Pagalbininkas DocType: Communication,Sent Read Receipt,Siunčiami Skaityti gavimas DocType: Email Queue,Unsubscribe Method,Atsisakyti būdas +DocType: Onboarding Slide,Add More Button,Pridėti daugiau mygtuko DocType: GSuite Templates,Related DocType,susiję DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Redaguoti pridėti turinį apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,pasirinkite Kalbos apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kortelės detalės apps/frappe/frappe/__init__.py,No permission for {0},Neturite leidimo {0} DocType: DocType,Advanced,pažangus +DocType: Onboarding Slide,Slide Image Source,Skaidraus vaizdo šaltinis apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Atrodo API raktas arba "API paslaptis yra negerai !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Nuoroda: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Ponia @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,meistras DocType: DocType,User Cannot Create,Vartotojas negali Sukurti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Sėkmingai padaryta apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ZMI prieiga yra patvirtintas! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Ar tikrai norite sujungti {0} su {1}? DocType: Customize Form,Enter Form Type,Įveskite formos tipas DocType: Google Drive,Authorize Google Drive Access,Įgalioti „Google“ disko prieigą apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Trūksta parametro "Kanban Board Name" @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Leidimas dokumentų tipas, tipas. Būk atsargus!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Individualus formatai Spausdinimas, elektroninio pašto" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} suma -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Atnaujintas Versija DocType: Custom Field,Depends On,Priklauso nuo DocType: Kanban Board Column,Green,Žalias DocType: Custom DocPerm,Additional Permissions,Papildomi leidimai @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,Socialinis apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","„Google“ kalendorius - nepavyko sukurti {0} kalendoriaus, klaidos kodas {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Taisomas eilutė DocType: Workflow Action Master,Workflow Action Master,Darbo eigos veiksmas magistras +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Ištrinti viską DocType: Custom Field,Field Type,laukas tipas apps/frappe/frappe/utils/data.py,only.,tik. DocType: Route History,Route History,Maršruto istorija @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Pamiršote slaptažodį? DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,serverio klaida +DocType: Server Script,After Delete,Po Trinti apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Žiūrėti visas ankstesnes ataskaitas. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Registravimosi ID reikalingas DocType: Website Slideshow,Website Slideshow,Interneto svetainė Skaidrės apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nėra duomenų DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Nuoroda, kad yra svetainė puslapis. Standartinės nuorodos (indeksas, prisijunkite, produktai, dienoraštis, apie, kontaktas)" +DocType: Server Script,After Submit,Pateikę apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Autorizacija nepavyko, o gauti elektroninius laiškus iš pašto sąskaitą {0}. Pranešimas iš serverio: {1}" DocType: User,Banner Image,Reklaminis Vaizdo DocType: Custom Field,Custom Field,Pasirinktinis laukas @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Jei vartotojas turi visi tikrinti vaidmenį, tada vartotojas tampa "sistemos naudotojas". "Sistemos vartotojas" turi prieigą prie darbastalio" DocType: System Settings,Date and Number Format,Data ir numeris Formatas apps/frappe/frappe/model/document.py,one of,vienas iš -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Tikrinti vieną momentą apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Rodyti Žymos DocType: DocField,HTML Editor,HTML redaktorius 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> vartotojas +DocType: DocType,Actions,Veiksmai DocType: Workflow State,align-justify,lygiavimas-išlyginti DocType: User,Middle Name (Optional),Vidurio pavadinimas (neprivalomas) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Neleistina @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Jokių rezu DocType: System Settings,Security,saugumas apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planuojama siųsti į {0} gavėjams apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Supjaustyti +DocType: Server Script,After Save,Po Išsaugoti apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},pervadintas {0} ir {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} iš {1} ({2} eilučių su vaikais) DocType: Currency,**Currency** Master,** Valiuta ** magistras @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,Filtro vertės DocType: Communication,User Tags,Vartotojo Žymos DocType: Data Migration Run,Fail,Nepavyko DocType: Workflow State,download-alt,Parsisiųsti-Alt +DocType: Scheduled Job Type,Last Execution,Paskutinis vykdymas DocType: Data Migration Run,Pull Failed,Traukti nepavyko apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Rodyti / slėpti korteles DocType: Communication,Feedback Request,Atsiliepimai Prašymas apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importuoti duomenis iš CSV / Excel failų. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Šie laukai nėra: +DocType: Notification Log,From User,Iš vartotojo apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Atšaukiamas {0} DocType: Web Page,Main Section,Pagrindinė dalis DocType: Page,Icon,piktograma apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Užuomina: Įtraukti simbolius, skaičius ir didžiųjų raidžių slaptažodį" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Užuomina: Įtraukti simbolius, skaičius ir didžiųjų raidžių slaptažodį" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigūruokite pranešimus apie paminėjimus, užduotis, energijos taškus ir dar daugiau." DocType: DocField,Allow in Quick Entry,Leisti greituose įrašuose apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / mmmm @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,Temos URL DocType: Customize Form,Sort Field,Rūšiuoti laukas DocType: Razorpay Settings,Razorpay Settings,Razorpay Nustatymai apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Redaguoti filtras -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Pridėti daugiau DocType: System Settings,Session Expiry Mobile,Sesijos pabaiga Mobilus apps/frappe/frappe/utils/password.py,Incorrect User or Password,Neteisingas naudotojas arba slaptažodis apps/frappe/frappe/templates/includes/search_box.html,Search results for,Pieškos rezultatai @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energijos taško taisyklė DocType: Communication,Delayed,atidėtas apps/frappe/frappe/config/settings.py,List of backups available for download,Sąrašas atsargines kopijas galima atsisiųsti +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Išbandykite naują duomenų importavimą apps/frappe/frappe/www/login.html,Sign up,Užsiregistruoti apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Eilutė {0}: draudžiama išjungti privalomą standartinių laukų sąrašą +DocType: Webhook,Enable Security,Įgalinti apsaugą apps/frappe/frappe/config/customization.py,Dashboards,Prietaisų skydeliai DocType: Test Runner,Output,produkcija DocType: Milestone,Track Field,Bėgių laukas @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,Nustatyti Turto Po Uždaryti apps/frappe/frappe/config/customization.py,Add fields to forms.,Pridėti laukus formas. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Atrodo, kad kažkas yra negerai su šiuo svetainės Paypal konfigūracijos." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Pridėti apžvalgą +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} paskyrė jums naują užduotį {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Šrifto dydis (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Iš tinkinimo formos leidžiama tinkinti tik standartinius „DocTypes“. DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portalo Meniu punktas apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Nustatykite filtrus DocType: Contact Us Settings,Email ID,E-mail ID DocType: Energy Point Rule,Multiplier Field,Daugiklio laukas +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nepavyko sukurti „Razorpay“ užsakymo. Kreipkitės į administratorių DocType: Dashboard Chart,Time Interval,Laiko intervalas DocType: Activity Log,Keep track of all update feeds,Stebėkite visus atnaujinimų sklaidos kanalus +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} pasidalijo su jumis dokumentu {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Šaltinių sąrašas, kuris Klientas ""App turės prieigą prie kai vartotojas leidžia. <br> pvz projektas" DocType: Translation,Translated Text,Išvertus tekstas DocType: Contact Us Settings,Query Options,užklausa Nustatymai @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,raktas DocType: Address,Contacts,kontaktai DocType: System Settings,Setup Complete,Sąranka Užbaigti apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Pranešti apie visų dokumentų akcijas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importavimo šablonas turėtų būti .csv, .xlsx arba .xls tipo" apps/frappe/frappe/www/update-password.html,New Password,Naujas Slaptažodis apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtras {0} trūksta apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Atsiprašau! Jūs negalite trinti automatiškai sugeneruotus komentarų @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Paleisti DocType: Blog Post,Content (HTML),Turinys (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Sąranka skirta DocType: Personal Data Download Request,User Name,Vartotojo vardas DocType: Workflow State,minus-sign,minus ženklas apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nerastas @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Nėra {0} leidimas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksporto Custom leidimai apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nerasta daiktų. DocType: Data Export,Fields Multicheck,Laukai Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Baigta DocType: Activity Log,Login,Prisijungti DocType: Web Form,Payments,Mokėjimai apps/frappe/frappe/www/qrcode.html,Hi {0},Sveiki {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,„Google“ disko integracija. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} grąžino jūsų taškus {1} {2} DocType: System Settings,Enable Scheduled Jobs,Įjungti Reguliarieji Darbas apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Pastabos: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Neaktyvus @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Bendr apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Leidimo klaida apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Pavadinimas {0} negali būti {1} DocType: User Permission,Applicable For,taikytina +DocType: Dashboard Chart,From Date,nuo data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Sėkmė apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,sesija Negaliojantis apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,sesija Negaliojantis @@ -1480,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Sė apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; neleistina sąlygoje DocType: Async Task,Async Task,asinchroninis darbo DocType: Workflow State,picture,nuotrauka -apps/frappe/frappe/www/complete_signup.html,Complete,pilnas +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,pilnas DocType: DocType,Image Field,Vaizdo laukas DocType: Print Format,Custom HTML Help,Ypatingas HTML Pagalba DocType: LDAP Settings,Default Role on Creation,Numatytasis vaidmuo kuriant @@ -1488,6 +1549,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Kitas valstybė DocType: User,Block Modules,Blokuoti modulius DocType: Print Format,Custom CSS,Pasirinktinis CSS +DocType: Energy Point Rule,Apply Only Once,Taikyti tik vieną kartą apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Pridėti komentarą DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignoruojami: {0} ir {1} @@ -1499,6 +1561,7 @@ DocType: Email Account,Default Incoming,numatytasis Priimamojo DocType: Workflow State,repeat,pakartoti DocType: Website Settings,Banner,vėliava apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vertė turi būti viena iš {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Atšaukti visus dokumentus 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Eikite į {0} sąrašą apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pagalba dėl Ieškoti @@ -1507,6 +1570,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Užsiregis apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatinis šio dokumento pakartojimas buvo išjungtas. DocType: DocType,Hide Copy,Slėpti Kopijuoti apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Išvalyti visus vaidmenis +DocType: Server Script,Before Save,Prieš išsaugodami apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} turi būti unikalus apps/frappe/frappe/model/base_document.py,Row,eilė apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC ir elektroninio pašto šablonas" @@ -1517,7 +1581,6 @@ DocType: Chat Profile,Offline,Atsijungęs apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Sėkmingai importuota {0} DocType: User,API Key,"API raktas DocType: Email Account,Send unsubscribe message in email,Siųsti Atsisakyti pranešimą elektroniniu paštu -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Redaguoti Pavadinimas apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Nazwapola kuris bus šią nuorodą srityje tipas. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,paskirti į jus ir jūsų dokumentai. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Tai taip pat galite nukopijuoti ir įklijuoti @@ -1549,8 +1612,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,prisegti Image DocType: Workflow State,list-alt,sąrašas Alt apps/frappe/frappe/www/update-password.html,Password Updated,Slaptažodis Atnaujinta +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Žingsniai siekiant patvirtinti prisijungimą apps/frappe/frappe/utils/password.py,Password not found,Slaptažodis nerastas +DocType: Webhook,Webhook Secret,„Webhook Secret“ DocType: Data Migration Mapping,Page Length,Puslapio ilgis DocType: Email Queue,Expose Recipients,expose gavėjai apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pridėti prie privalomas atvykstantiems laiškus @@ -1578,6 +1643,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,sistema DocType: Web Form,Max Attachment Size (in MB),Maksimalus priedo dydis (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Turite sąskaitą? Prisijungti +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Spausdinimo nustatymai ... DocType: Workflow State,arrow-down,rodyklė žemyn apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} eilutė apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Vartotojas neleidžiama ištrinti {0}: {1} @@ -1599,6 +1665,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Įveskite DocType: Dropbox Settings,Dropbox Access Secret,ZMI Prieiga paslaptis DocType: Tag Link,Document Title,Dokumento pavadinimas apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Privaloma) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Prieš {0} metus (-ių) DocType: Social Login Key,Social Login Provider,Socialinės paskyros teikėjas apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Pridėti kitą komentarą apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Failo nerasta. Prašome dar kartą pridėti naują failą su duomenimis. @@ -1613,11 +1680,12 @@ DocType: Workflow State,hand-down,ranka į apačią apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Nerasta laukų, kuriuos būtų galima naudoti kaip „Kanban“ stulpelį. Norėdami pridėti pasirinktinį lauką, kurio tipas yra „Pasirinkti“, naudokite tinkinimo formą." DocType: Address,GST State,"Paaiškėjo, kad GST valstybė" apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Negalima nustatyti Atšaukti be Pateikti +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Vartotojas ({0}) DocType: Website Theme,Theme,tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Nukreipimo URI jungiasi su auth kodekso apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Atidarykite žinyną DocType: DocType,Is Submittable,Ar Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Naujas paminėjimas +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Naujas paminėjimas apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nauji „Google“ kontaktai nebuvo sinchronizuoti. DocType: File,Uploaded To Google Drive,Įkelta į „Google“ diską apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,"Vertė, už patikrinimą srityje gali būti 0 arba 1" @@ -1629,7 +1697,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Pašto dėžutę DocType: Kanban Board Column,Red,raudonas DocType: Workflow State,Tag,etiketė -DocType: Custom Script,Script,Scenarijus +DocType: Report,Script,Scenarijus apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumentas negali būti išsaugotas. DocType: Energy Point Rule,Maximum Points,Didžiausias taškų skaičius apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mano nustatymai @@ -1659,9 +1727,12 @@ DocType: Address,Haryana,Harjana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} įvertinimo taškai už {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Vaidmenys gali būti nustatyti vartotojų iš jų naudotojo puslapį. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Pridėti komentarą +DocType: Dashboard Chart,Select Date Range,Pasirinkite dienų seką DocType: DocField,Mandatory,privalomas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modulis eksportuoti +DocType: Scheduled Job Type,Monthly Long,Mėnesio ilgio apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Baziniai leidimai nenustatyti +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Siųskite el. Laišką adresu {0}, kad susietumėte jį čia" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Sąvoka "Pateikti" Atšaukti ", pakeisti" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Daryti @@ -1670,7 +1741,6 @@ DocType: Milestone Tracker,Track milestones for any document,Stebėkite bet kuri DocType: Social Login Key,Identity Details,Tapatybės duomenys apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Neleidžiama perkelti darbo eigos būsenos iš {0} į {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Rodyti informacijos suvestinę -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nauja žinutė DocType: File,Preview HTML,Peržiūrėti HTML DocType: Desktop Icon,query-report,Užklausa-ataskaita DocType: Data Import Beta,Template Warnings,Šablono įspėjimai @@ -1681,18 +1751,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,susijusi su apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Redaguoti automatinio el. Pašto ataskaitų nustatymus DocType: Chat Room,Message Count,Pranešimų skaičius DocType: Workflow State,book,knyga +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} yra susietas su šiais pateiktais dokumentais: {2} DocType: Communication,Read by Recipient,Skaityti gavėjui DocType: Website Settings,Landing Page,Nukreipimo puslapis apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Klaida Custom scenarijus apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Vardas apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nieko Permissions nustatyti šio kriterijus. DocType: Auto Email Report,Auto Email Report,Auto pranešimą elektroniniu paštu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Naujas dokumentas bendrinamas apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Ištrinti komentarą? DocType: Address Template,This format is used if country specific format is not found,"Šis formatas yra naudojamas, jei konkrečios šalies formatas nerastas" DocType: System Settings,Allow Login using Mobile Number,Leiskite Prisijungti naudojant mobiliojo telefono numerį apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jei įjungta, vartotojai, kurie prisijungs iš riboto IP adreso, nebus paraginti "Two Factor Auth"" +DocType: Server Script,After Cancel,Po atšaukimo DocType: Auto Repeat,Get Contacts,Gaukite kontaktus apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},"Postus, filed under {0}" apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Praleidžiant stulpelį be pavadinimo @@ -1703,6 +1776,7 @@ 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 +DocType: Notification Log,Mention,Minimas DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Šriftai apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Tikslumas turėtų būti tarp 1 ir 6 @@ -1710,7 +1784,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ir apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ši ataskaita buvo sukurta {0} DocType: Error Snapshot,Frames,rėmeliai -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,paskyrimas +DocType: Notification Log,Assignment,paskyrimas DocType: Notification,Slack Channel,"Slack Channel" DocType: About Us Team Member,Image Link,nuoroda į paveikslėlį DocType: Auto Email Report,Report Filters,Pranešimas filtrai @@ -1727,7 +1801,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nepavyko atnaujinti renginį apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Patvirtinimo kodas buvo išsiųstas į jūsų registruotą el. Pašto adresą. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Tavo taikinys apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtras turi būti 4 vertes (DOCTYPE, nazwapola, operatorius, reikšmė): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nenurodytas {0} vardas apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Taikyti priskyrimo taisyklę apps/frappe/frappe/utils/bot.py,show,Rodyti apps/frappe/frappe/utils/data.py,Invalid field name {0},Netinkamas lauko pavadinimas {0} @@ -1737,7 +1813,6 @@ DocType: Workflow State,text-height,teksto aukštis DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Duomenų migracijos plano atvaizdavimas apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Pradedant Frappé ... DocType: Web Form Field,Max Length,Maksimalus ilgis -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,žemėlapis gabaritinis apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Pateikti numeris @@ -1773,6 +1848,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Puslapis trūkstama arba p apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Atsiliepimai DocType: DocType,Route,maršrutas apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay mokėjimo šliuzai nustatymai +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} pelnė {1} tašką už {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Pridėkite atvaizdus iš dokumento DocType: Chat Room,Name,vardas DocType: Contact Us Settings,Skype,"Skype" @@ -1783,7 +1859,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Atidaryti nu apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tavo kalba DocType: Dashboard Chart,Average,Vidutinis apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Pridėti Row -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Spausdintuvas apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Užklausa turi būti SELECT DocType: Auto Repeat,Completed,užbaigtas @@ -1843,6 +1918,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Energijos taško nustatymai DocType: Async Task,Succeeded,pavyko apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Privalomi laukeliai reikalingi {0} +DocType: Onboarding Slide Field,Align,Lygiuoti apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Atstatyti Leidimai {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Vartotojai ir leidimai DocType: S3 Backup Settings,S3 Backup Settings,S3 atsarginių kopijų nustatymai @@ -1859,7 +1935,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Naujas spausdinimo formato pavadinimas apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Spustelėkite žemiau esančią nuorodą, kad patvirtintumėte prašymą" DocType: Workflow State,align-left,lygiavimas-kairė +DocType: Onboarding Slide,Action Settings,Veiksmo nustatymai DocType: User,Defaults,Numatytasis +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Palyginimui naudokite> 5, <10 arba = 324. Jei norite diapazonų, naudokite 5:10 (reikšmėms nuo 5 iki 10)." DocType: Energy Point Log,Revert Of,Grįžti apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sujungti su esama DocType: User,Birth Date,Gimimo data @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,į DocType: Notification,Value Change,Reikšmė pokytis DocType: Google Contacts,Authorize Google Contacts Access,Įgalioti „Google“ kontaktų prieigą apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rodomi tik skaitiniai laukai iš ataskaitos +apps/frappe/frappe/utils/data.py,1 week ago,prieš 1 savaitę DocType: Data Import Beta,Import Type,Importo tipas DocType: Access Log,HTML Page,HTML puslapis DocType: Address,Subsidiary,filialas @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,su Firminiai apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neteisingas Siunčiamo pašto serveris arba uosto DocType: Custom DocPerm,Write,rašyti -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tik administratorius gali sukurti užklausa / script ataskaitos apps/frappe/frappe/public/js/frappe/form/save.js,Updating,atnaujinimas DocType: Data Import Beta,Preview,Peržiūrėti apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Laukas "vertė" yra privalomas. Prašome nurodyti vertę turi būti atnaujintas @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Kviesti ka DocType: Data Migration Run,Started,Prasidėjo apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Vartotojas {0} neturi prieigos prie šio dokumento DocType: Data Migration Run,End Time,pabaigos laikas +DocType: Dashboard Chart,Group By Based On,Grupuoti pagal apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,pasirinkite Įrangos apps/frappe/frappe/model/naming.py, for {0},už {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Jums neleidžiama spausdinti šį dokumentą @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,patikrinti DocType: Workflow Document State,Update Field,Atnaujinti laukas DocType: Chat Profile,Enable Chat,Įgalinti pokalbį DocType: LDAP Settings,Base Distinguished Name (DN),Bazinė Nusipelnęs Vardas (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Palikite šį pokalbį apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Nustatymai nenustatyti nuorodą srityje {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Eilė / darbuotojas @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Prisijungti neleidžiama šiuo metu DocType: Data Migration Run,Current Mapping Action,Dabartinis kartografavimo veiksmas DocType: Dashboard Chart Source,Source Name,šaltinis Vardas -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Su vartotoju nesusieta jokia el. Pašto paskyra. Pridėkite abonementą skiltyje Vartotojas> El. Pašto dėžutė. DocType: Email Account,Email Sync Option,Paštas Sync "variantas apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Eilutė Nr DocType: Async Task,Runtime,Trukmė DocType: Post,Is Pinned,Yra prisegtas DocType: Contact Us Settings,Introduction,Įvadas +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Reikia pagalbos? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Prisekite visame pasaulyje apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Paskui DocType: LDAP Settings,LDAP Email Field,LDAP paštas laukas @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jau varto DocType: User Email,Enable Outgoing,Įjungti išeinantis DocType: Address,Fax,faksas apps/frappe/frappe/config/customization.py,Custom Tags,Individualizuotos Žymos -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El. Pašto sąskaita nėra nustatyta. Sukurkite naują el. Pašto paskyrą apsilankę Sąranka> El. Paštas> El. Pašto abonementas DocType: Comment,Submitted,pateikė DocType: Contact,Pulled from Google Contacts,Ištraukta iš „Google“ kontaktų apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Neteisingas Prašymas @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Pagrindinis apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Susieti man DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Paspauskite „Alt“ klavišą, kad suaktyvintumėte papildomus sparčiuosius klavišus meniu ir šoninėje juostoje" +DocType: Dashboard Chart,To Date,data DocType: List View Setting,List View Setting,Sąrašo rodinio nustatymas apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Rodyti nepavyko darbai -DocType: Event,Details,detalės +DocType: Scheduled Job Log,Details,detalės DocType: Property Setter,DocType or Field,DOCTYPE arba lauko apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Jūs atidarėte šio dokumento stebėjimą apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Pagrindinė spalva @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Atrodo publikuoti rakto arba slaptąraktą yra negerai !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Atrodo publikuoti rakto arba slaptąraktą yra negerai !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Greita Pagalba nustatymas Permissions -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE priskirti žymę apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Rodyti atkryčiai apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Laiškas buvo perkeltas į šiukšliadėžę DocType: Report,Report Builder,Report Builder " @@ -2105,6 +2184,7 @@ DocType: Workflow State,Upload,Įkelti DocType: User Permission,Advanced Control,Išplėstinė kontrolė DocType: System Settings,Date Format,Datos formatas apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ne Paskelbta +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nerastas numatytasis adreso šablonas. Sukurkite naują iš sąrankos> Spausdinimas ir prekės ženklo kūrimas> Adreso šablonas. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Ieškinys dėl eigos (pvz patvirtinti Atšaukti). DocType: Data Import,Skip rows with errors,Praleisti eilutes su klaidomis DocType: Workflow State,flag,vėliava @@ -2114,7 +2194,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Spau apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Peršok į lauką DocType: Contact Us Settings,Forward To Email Address,Perduoti pašto adresas DocType: Contact Phone,Is Primary Phone,Yra pagrindinis telefonas -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Siųskite el. Laišką adresu {0}, kad susietumėte jį čia." DocType: Auto Email Report,Weekdays,Darbo dienomis apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} įrašai bus eksportuoti apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Pavadinimas laukas turi būti galiojantis nazwapola @@ -2122,7 +2201,7 @@ DocType: Post Comment,Post Comment,Paskelbti komentarą apps/frappe/frappe/config/core.py,Documents,Dokumentai apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Veiklos žurnalas DocType: Social Login Key,Custom Base URL,Tinkintas pagrindinis URL -DocType: Email Flag Queue,Is Completed,yra užbaigtas +DocType: Onboarding Slide,Is Completed,yra užbaigtas apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Gauti laukus apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Redaguoti profilį DocType: Kanban Board Column,Archived,archyvuojami @@ -2133,12 +2212,13 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šiandien -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šiandien +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,šiandien +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,šiandien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Pateikti po importavimo DocType: Error Log,Log of Scheduler Errors,Prisijungti nuo Scheduler klaidos DocType: User,Bio,Biografija +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,„Onboarding Slide“ pagalbos nuoroda DocType: OAuth Client,App Client Secret,Programos Klientas paslaptis apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Siunčiamas apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Tėvas yra dokumento, prie kurio duomenys bus įtraukti, pavadinimas." @@ -2146,7 +2226,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,RAIDÉMIS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Ypatingas HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Įveskite aplanko vardą -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nerastas numatytasis adreso šablonas. Sukurkite naują iš sąrankos> Spausdinimas ir prekės ženklo kūrimas> Adreso šablonas. apps/frappe/frappe/auth.py,Unknown User,Nežinomas naudotojas apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Pasirinkite vaidmuo DocType: Comment,Deleted,ištrinta @@ -2162,7 +2241,7 @@ DocType: Chat Token,Chat Token,Pokalbio ženklas apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Kurti diagramą apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportuoti -DocType: Web Page,Center,centras +DocType: Onboarding Slide Field,Center,centras DocType: Notification,Value To Be Set,Vertė turi būti nustatyta apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Redaguoti {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Pirmojo lygio @@ -2170,7 +2249,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Duomenų bazės pavadinimas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Atnaujinti forma DocType: DocField,Select,pasirinkti -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Žiūrėti visą žurnalą +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Žiūrėti visą žurnalą DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Paprastas Python išraiška, pavyzdys: status == 'Open' ir įveskite == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Failo neuždėtas apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Nutrūko ryšys. Kai kurios funkcijos gali neveikti. @@ -2202,6 +2281,7 @@ DocType: Web Page,HTML for header section. Optional,HTML antraštės skyriui. Ne apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ši funkcija yra visiškai naujas ir dar eksperimentinis apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Didžiausios {0} eilutės leidžiama DocType: Dashboard Chart Link,Chart,Diagrama +DocType: Scheduled Job Type,Cron,Kronas DocType: Email Unsubscribe,Global Unsubscribe,Pasaulinis Atsisakyti apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Tai labai dažna slaptažodį. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,vaizdas @@ -2218,6 +2298,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Išsami būklė apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Dėl valiutos {0} minimali sandorio suma turėtų būti {1} DocType: DocField,Print Hide,Spausdinti Slėpti +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Vartotojui apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Įveskite reikšmę DocType: Workflow State,tint,atspalvis @@ -2285,6 +2366,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR patvirtinim apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pridėti To Do DocType: Footer Item,Company,Bendrovė apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Vidutiniškai {0} +DocType: Scheduled Job Log,Scheduled,planuojama DocType: User,Logout from all devices while changing Password,"Išjunkite iš visų įrenginių, pakeisdami slaptažodį" apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Patvirtinkite slaptažodį apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Įvyko klaidų @@ -2310,7 +2392,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Vartotojo leidimas jau egzistuoja apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} stulpelio atvaizdavimas į {1} lauką apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Peržiūrėti {0} -DocType: User,Hourly,Kas valandą +DocType: Scheduled Job Type,Hourly,Kas valandą apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registruotis OAuth klientų App DocType: DocField,Fetch If Empty,"Pateikti, jei tuščia" DocType: Data Migration Connector,Authentication Credentials,Autentifikavimo įgaliojimai @@ -2321,10 +2403,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Vartai adresas apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},įgyta {0} naudojant automatinę taisyklę {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} arba {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Jūs visi pasiruošę! DocType: Workflow State,trash,šiukšlės DocType: System Settings,Older backups will be automatically deleted,Senesni kopijavimas bus automatiškai ištrintas apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Neteisingas prieigos raktas ar slapta prieigos raktas. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Jūs praradote keletą energijos taškų DocType: Post,Is Globally Pinned,Yra visame pasaulyje prikabintas apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Paskutiniai veiksmai DocType: Workflow Transition,Conditions,Sąlygos @@ -2333,6 +2415,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,patvirtinta DocType: Event,Ends on,baigiasi DocType: Payment Gateway,Gateway,vartai DocType: LDAP Settings,Path to Server Certificate,Kelias į serverio sertifikatą +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,„Java“ scenarijus jūsų naršyklėje išjungtas apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nepakanka leidimo matyti nuorodas apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nepakanka leidimo matyti nuorodas apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adresas Pavadinimas yra privalomas. @@ -2352,7 +2435,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-vakarai-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jei tai bus pažymėta, bus importuotos eilutės su galiojančiais duomenimis, o netinkamos eilutės bus nukreiptos į naują failą, kurį vėliau galėsite importuoti." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentas yra redaguojamas tik vartotojų vaidmenį -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Užduotis {0}, kad jums skiriamas {1}, buvo uždarytas {2}." DocType: Print Format,Show Line Breaks after Sections,Rodyti eilučių po skirsniuose DocType: Communication,Read by Recipient On,Skaityti gavėjui DocType: Blogger,Short Name,Trumpas vardas @@ -2385,6 +2467,7 @@ DocType: Translation,PR sent,PR išsiųstas DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tik Siųsti Įrašai Atnaujinta praėjusių X valandų DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tik Siųsti Įrašai Atnaujinta praėjusių X valandų DocType: Communication,Feedback,grįžtamasis ryšys +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Atnaujinta į naują versiją 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Atidaryti Vertimą apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Šis el. Laiškas yra automatiškai sukurtas DocType: Workflow State,Icon will appear on the button,Bus rodoma piktograma mygtuką @@ -2423,6 +2506,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Puslapis n DocType: DocField,Precision,tikslumas DocType: Website Slideshow,Slideshow Items,Slideshow daiktai apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Stenkitės vengti pasikartojančių žodžių ir simbolių +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Pranešimai išjungti +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Ar tikrai norite ištrinti visas eilutes? DocType: Workflow Action,Workflow State,eigos būseną apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,eilutės Pridėta apps/frappe/frappe/www/list.py,My Account,Mano sąskaita @@ -2431,6 +2516,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,dienų po apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ dėklo jungtis aktyvi! DocType: Contact Us Settings,Settings for Contact Us Page,Nustatymai Susisiekime puslapį +DocType: Server Script,Script Type,scenarijaus tipas DocType: Print Settings,Enable Print Server,Įgalinti spausdinimo serverį apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,prieš {0} savaites DocType: Email Account,Footer,Apatinė @@ -2456,8 +2542,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,įspėjimas apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Tai gali būti atspausdinta keliuose puslapiuose DocType: Data Migration Run,Percent Complete,Procentas baigtas -DocType: Tag Category,Tag Category,Gairė Kategorija -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Palyginimui naudokite> 5, <10 arba = 324. Jei norite diapazonų, naudokite 5:10 (reikšmėms nuo 5 iki 10)." DocType: Google Calendar,Pull from Google Calendar,Ištraukti iš „Google“ kalendoriaus apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Pagalba DocType: User,Login Before,Vartotojas Prieš @@ -2467,17 +2551,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Paslėpti savaitgalius apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatiškai generuoja pasikartojančius dokumentus. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ar +DocType: Onboarding Slide,ERPNext,„ERPNext“ DocType: Workflow State,info-sign,informacijos-ženklas apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vertė {0} negali būti sąrašas DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kaip tai valiuta, turi būti suformatuotas? Jei nenustatytas, naudosis sistema pagal nutylėjimą" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pateikti {0} dokumentus? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Klaida jungiantis prie „QZ Tray Application“ ... <br><br> Jei norite naudoti neapdoroto spausdinimo funkciją, turite būti įdiegta ir paleista „QZ Tray“ programa. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Spustelėkite čia, jei norite atsisiųsti ir įdiegti „QZ Tray“</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Spustelėkite čia, jei norite sužinoti daugiau apie neapdorotą spausdinimą</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Spausdintuvo žemėlapių sudarymas apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Prašome išsaugoti Prieš tvirtindami. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ar norite atšaukti visus susietus dokumentus? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Pridėta {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype negali būti pakeistas iš {0} ir {1} iš eilės {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Vaidmenų leidimai DocType: Help Article,Intermediate,Tarpinis +apps/frappe/frappe/config/settings.py,Email / Notifications,El. Paštas / pranešimai apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} pakeitė {1} į {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Atšauktas dokumentas atkurtas kaip juodraštis DocType: Data Migration Run,Start Time,Pradžios laikas @@ -2494,6 +2582,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,ga apps/frappe/frappe/email/smtp.py,Invalid recipient address,Neteisingas gavėjo adresas DocType: Workflow State,step-forward,išeiti į priekį DocType: System Settings,Allow Login After Fail,Leisti prisijungti po failo +DocType: DocType Link,DocType Link,„DocType“ nuoroda DocType: Role Permission for Page and Report,Set Role For,Nustatyti vaidmuo DocType: GCalendar Account,The name that will appear in Google Calendar,"Pavadinimas, kuris bus rodomas "Google" kalendoriuje" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Tiesioginis kambarys su {0} jau egzistuoja. @@ -2511,6 +2600,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Sukurti n DocType: Contact,Google Contacts,„Google“ kontaktai DocType: GCalendar Account,GCalendar Account,"GCalendar" sąskaita DocType: Email Rule,Is Spam,Ar Šlamštas +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Paskutinis apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ataskaita {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Atidaryti {0} DocType: Data Import Beta,Import Warnings,Įspėjimai importuoti @@ -2522,6 +2612,7 @@ DocType: Workflow State,ok-sign,OK-ženklas apps/frappe/frappe/config/settings.py,Deleted Documents,Ištrintos dokumentai apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formatas yra didžiosios ir mažosios raidės apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop ikona jau egzistuoja +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Nurodykite, kuriuose visuose domenuose skaidrės turėtų būti rodomos. Jei nieko nenurodyta, skaidrė pagal numatytuosius nustatymus rodoma visuose domenuose." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,dublikatas apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: {2} eilutės {1} laukas negali būti paslėptas ir privalomas be numatytųjų DocType: Newsletter,Create and Send Newsletters,Kurti ir siųsti biuleteniai @@ -2532,6 +2623,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,„Google“ kalendoriaus įvykio ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Tėvinis"" rodo tėvinę lentelę, kurioje turi būti pridėta ši eilutė." apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Apžvalgos taškai: +DocType: Scheduled Job Log,Scheduled Job Log,Suplanuotas darbo žurnalas +DocType: Server Script,Before Delete,Prieš ištrindami apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,dalijamasi su apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Pridėkite failus / URL ir pridėkite lentelėje. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Pranešimas nėra nustatytas @@ -2555,19 +2648,21 @@ DocType: About Us Settings,Settings for the About Us Page,Nustatymai Apie mus Pu apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Juostele Mokėjimo šliuzai nustatymai apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Juostele Mokėjimo šliuzai nustatymai apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Spausdinti išsiųstas į spausdintuvą! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energijos taškai +DocType: Notification Settings,Energy Points,Energijos taškai +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Laikas {0} turi būti tokio formato: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,pvz pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Sukurti raktus apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tai visam laikui pašalins jūsų duomenis. DocType: DocType,View Settings,Peržiūrėti Nustatymai +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Naujas pranešimas DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Prašyti struktūros +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Trūksta valdiklio metodo get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Laukiama patikrinimo DocType: Website Meta Tag,Website Meta Tag,Svetainės Meta Tag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Jei ne standartinis uostas (pvz., 587). Jei naudojate "Google Cloud", išbandykite 2525 prievadą." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Išvalyti pabaigos datą, nes ji negali būti praeityje paskelbtiems puslapiams." DocType: User,Send Me A Copy of Outgoing Emails,Siųsti man siunčiamų el. Laiškų kopiją -DocType: System Settings,Scheduler Last Event,Tvarkaraštis Paskutinis Renginių DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Įdėti Google Analytics ID: pvz. UA-89XXX57-1. Prašome Paieška Pagalba Google Analytics daugiau informacijos. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Slaptažodis negali būti daugiau nei 100 simbolių ilgio DocType: OAuth Client,App Client ID,Programos Kliento ID @@ -2596,6 +2691,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Reikalinga na apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} pasidalino dokumentu su {1} DocType: Website Settings,Brand Image,Gamintojas vaizdas DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importavimo šablone turėtų būti antraštė ir bent viena eilutė. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,„Google“ kalendorius sukonfigūruotas. apps/frappe/frappe/config/website.py,"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 @@ -2605,6 +2701,7 @@ DocType: User Social Login,User Social Login,Naudotojo socialinis prisijungimas apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritikavo jūsų darbą dėl {1} su {2} punktu DocType: Contact,All,Visi DocType: Email Queue,Recipient,Gavėjas +DocType: Webhook,Webhook Security,„Webhook“ sauga DocType: Communication,Has Attachment,turi priedą DocType: Address,Sales User,pardavimų Vartotojas apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Vilkite ir upuść įrankis kurti ir pritaikyti Spausdinti formatai. @@ -2671,7 +2768,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migracijos ID laukas DocType: Dashboard Chart,Last Synced On,Paskutinį kartą sinchronizuotas DocType: Comment,Comment Type,Komentuoti tipas DocType: OAuth Client,OAuth Client,OAuth klientas -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} sukritikavo jūsų darbą {1} {2} DocType: Assignment Rule,Users,vartotojai DocType: Address,Odisha,orisa DocType: Report,Report Type,Ataskaitos tipas @@ -2697,14 +2793,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Interneto svetainė Skaid apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Patvirtinimas neleidžiamas DocType: GSuite Templates,Template ID,Šablono ID numeris apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Dotacijos tipo ( <code>{0}</code> ) ir atsako tipo ( <code>{1}</code> ) derinimas yra draudžiamas -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nauja žinutė iš {0} DocType: Portal Settings,Default Role at Time of Signup,Numatytasis vaidmuo metu registracija DocType: DocType,Title Case,Pavadinimas Byla apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Norėdami atsisiųsti duomenis, spustelėkite žemiau esančią nuorodą" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Įgalinta el. Pašto dėžutė naudotojui {0} DocType: Data Migration Run,Data Migration Run,Duomenų perkėlimas paleisti DocType: Blog Post,Email Sent,Laiškas išsiųstas -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Vyresni DocType: DocField,Ignore XSS Filter,Ignoruoti XSS Filtruoti apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,pašalintas apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ZMI atsarginės nustatymai @@ -2759,6 +2853,7 @@ DocType: Async Task,Queued,eilėje DocType: Braintree Settings,Use Sandbox,Naudokite Smėlio apps/frappe/frappe/utils/goal.py,This month,Šį mėnesį apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nauja Individualizuotos Spausdinti Formatas +DocType: Server Script,Before Save (Submitted Document),Prieš išsaugojant (pateiktas dokumentas) DocType: Custom DocPerm,Create,kurti apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Daugiau nerodomų elementų apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Pereiti prie ankstesnio įrašo @@ -2816,6 +2911,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Išmesti DocType: Web Form,Web Form Fields,Interneto formos laukus DocType: Data Import,Amended From,Iš dalies pakeistas Nuo +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Pridėkite nuorodą apie vaizdo įrašą, jei vartotojas net neįsivaizduoja, ką užpildyti skaidrėje." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},"Įspėjimas: nepavyko rasti {0} bet lentelę, susijusią su {1}" DocType: S3 Backup Settings,eu-north-1,eu-šiaurė-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Šis dokumentas yra šiuo metu eilėje vykdymą. Prašau, pabandykite dar kartą" @@ -2838,6 +2934,7 @@ DocType: Blog Post,Blog Post,Dienoraštis Pradėti DocType: Access Log,Export From,Eksportuoti iš apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Išplėstinė paieška apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Jums neleidžiama peržiūrėti naujienų. +DocType: Dashboard Chart,Group By,Grupuoti pagal DocType: User,Interests,Pomėgiai apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,buvo slaptažodžio instrukcijos išsiųstas į jūsų elektroninio pašto DocType: Energy Point Rule,Allot Points To Assigned Users,Skiria taškus paskirtiems vartotojams @@ -2853,6 +2950,7 @@ DocType: Assignment Rule,Assignment Rule,Priskyrimo taisyklė apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Siūlomas Nick: {0} DocType: Assignment Rule Day,Day,diena apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduliai +DocType: DocField,Mandatory Depends On,Privaloma priklauso nuo apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Mokėjimo Sėkmės apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ne {0} pašto DocType: OAuth Bearer Token,Revoked,atšaukti @@ -2860,6 +2958,7 @@ DocType: Web Page,Sidebar and Comments,Šoninė juosta ir komentarai apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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ą." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Negalima pridėti {0} dokumento, įjunkite "Leisti spausdinti" {0} spausdinimo nustatymuose" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El. Pašto sąskaita nėra nustatyta. Sukurkite naują el. Pašto paskyrą apsilankę Sąranka> El. Paštas> El. Pašto abonementas apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Žr. Dokumentą {0} DocType: Stripe Settings,Publishable Key,skelbtinas raktas DocType: Stripe Settings,Publishable Key,skelbtinas raktas @@ -2875,13 +2974,13 @@ DocType: Currency,Fraction,frakcija apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Įvykis sinchronizuotas su „Google“ kalendoriumi. DocType: LDAP Settings,LDAP First Name Field,LDAP Vardas laukas DocType: Contact,Middle Name,Antras vardas +DocType: DocField,Property Depends On,Turtas priklauso nuo to DocType: Custom Field,Field Description,Laukelio aprašymas apps/frappe/frappe/model/naming.py,Name not set via Prompt,Vardas nenustatytas per Klausti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,pašto dėžutę apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Atnaujinamas {0} iš {1}, {2}" DocType: Auto Email Report,Filters Display,Filtrai Rodyti apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Norint atlikti pakeitimą, turi būti laukas „Grozīta iš fronto“." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} įvertino jūsų darbą {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Išsaugoti filtrus DocType: Address,Plant,augalas apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Atsakyti visiems @@ -2922,11 +3021,11 @@ DocType: Workflow State,folder-close,aplanko arti apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Ataskaita: DocType: Print Settings,Print taxes with zero amount,Spausdinti mokesčius su nuline suma apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} neleidžiama pervadinti +DocType: Server Script,Before Insert,Prieš įterpiant DocType: Custom Script,Custom Script,Pasirinktinis scenarijus DocType: Address,Address Line 2,Adreso eilutė 2 DocType: Address,Reference,Nuoroda apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Priskirtas -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nustatykite numatytąją el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto abonementas DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Duomenų migracijos žemėlapių detalės DocType: Data Import,Action,veiksmas DocType: GSuite Settings,Script URL,scenarijaus URL @@ -2952,11 +3051,13 @@ DocType: User,Api Access,Api Prieiga 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,Invalid login or password,Neteisingas loginas ar slaptažodis +DocType: Scheduled Job Type,Weekly Long,Savaitės ilgas apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,parsisiųsti Šablonas apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Pridėti užsakymą JavaScript formas. ,Role Permissions Manager,Vaidmenų Leidimai direktorius apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Pavadinimas naują spausdinimo formatą apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Įjunkite šoninę juostą +DocType: Server Script,After Save (Submitted Document),Po išsaugojimo (pateiktas dokumentas) DocType: Data Migration Run,Pull Insert,Ištraukite įdėklą DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Maksimalus leistinas taškų skaičius padauginus taškus iš daugiklio vertės (pastaba: neribokite šio lauko, palikite jį tuščią arba nustatykite 0)" @@ -2976,6 +3077,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Dienoraštis apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Ne Instaliuota apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Parsisiųsti duomenis apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},pakeistos {0} {1} vertės +DocType: Server Script,Before Cancel,Prieš atšaukiant DocType: Workflow State,hand-right,rankų darbo teisė DocType: Website Settings,Subdomain,subdomenas DocType: S3 Backup Settings,Region,regionas @@ -3022,12 +3124,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,senas slaptažodis DocType: S3 Backup Settings,us-east-1,mus-rytus-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Žinutės {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Norėdami formatuoti stulpelių, suteikti stulpelių etiketes užklausoje." +DocType: Onboarding Slide,Slide Fields,Skaidrių laukai DocType: Has Domain,Has Domain,turi domeną DocType: User,Allowed In Mentions,Leidžiama paminėti apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Neturite paskyros? Užsiregistruoti apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Negalima pašalinti ID lauko apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Negalima nustatyti Susieti pakeisti jei ne Submittable DocType: Address,Bihar,biharų +DocType: Notification Settings,Subscribed Documents,Užsakomi dokumentai apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Vartotojo nustatymai DocType: Report,Reference Report,Informacinė ataskaita DocType: Activity Log,Link DocType,Nuoroda dokumentų tipas @@ -3045,6 +3149,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Įgalioti „Google“ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Puslapis ieškote trūksta. Tai gali būti, kad jį perkelti ar ten yra nuorodą klaidos." apps/frappe/frappe/www/404.html,Error Code: {0},Klaidos kodas: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Aprašymas išvardijami puslapį, paprastu tekstu, tik kelias eilutes. (max 140 simbolių)" +DocType: Server Script,DocType Event,„DocType“ įvykis apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} yra privalomi laukai DocType: Workflow,Allow Self Approval,Leisti savęs patvirtinimą DocType: Event,Event Category,Įvykio kategorija @@ -3061,6 +3166,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tavo vardas apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Prisijungimo sėkmė DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,„Onboarding“ skaidrių tipo skaidrė jau egzistuoja. DocType: DocType,Default Sort Field,Numatytasis rūšiavimo laukas DocType: File,Is Folder,Ar Byla DocType: Document Follow,DocType,DOCTYPE @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vertyb DocType: Workflow State,arrow-up,rodyklė viršų DocType: Dynamic Link,Link Document Type,Nuorodos dokumento tipas apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} lentelės eilutėje turėtų būti bent viena eilutė +DocType: Server Script,Server Script,Serverio scenarijus apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Norėdami sukonfigūruoti automatinį kartojimą, įjunkite „Leisti automatinį pakartojimą“ iš {0}." DocType: OAuth Bearer Token,Expires In,galiojimas baigiasi +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Kiek kartų norite pakartoti laukų rinkinį (pvz .: jei skaidrėje norite 3 klientų, nustatykite šį lauką į 3. Skaidrėje rodomas kaip privalomas tik pirmasis laukų rinkinys)" DocType: DocField,Allow on Submit,Leisti Pateikti DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,išimtis tipas @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Antraštės apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Artimiausi renginiai apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Prašome įvesti vertes App prieigos raktas ir App slaptą raktą +DocType: Email Account,Append Emails to Sent Folder,Pridėti el. Laiškus prie išsiųstų aplankų DocType: Web Form,Accept Payment,priimame mokėjimus apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Pasirinkite sąrašo elementą apps/frappe/frappe/config/core.py,A log of request errors,Užklausų klaidų žurnalas @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,Prisidėjo apps/frappe/frappe/config/customization.py,Form Customization,Formos pritaikymas apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nėra aktyvių seansų DocType: Web Form,Route to Success Link,Maršrutas į sėkmės nuorodą -DocType: Top Bar Item,Right,teisė +DocType: Onboarding Slide Field,Right,teisė apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nėra būsimų įvykių DocType: User,User Type,vartotojo tipas DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Prašau, paband apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL turi prasidėti „http: //“ arba „https: //“ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3 variantas DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Tai negali būti anuliuota DocType: Workflow State,Edit,Redaguoti DocType: Website Settings,Chat Operators,Pokalbių operatoriai DocType: S3 Backup Settings,ca-central-1,ca-centrinis-1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Numatytasis {0} turi būti galimybė -DocType: Tag Doc Category,Tag Doc Category,Gairė Dok Kategorija apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Ataskaita su daugiau nei 10 stulpelių geriau atrodo kraštovaizdžio režime. apps/frappe/frappe/database/database.py,Invalid field name: {0},Netinkamas lauko pavadinimas: {0} DocType: Milestone,Milestone,Etapas @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Eiti į {0} apps/frappe/frappe/email/queue.py,Emails are muted,Parašyta yra išjungtas apps/frappe/frappe/config/integrations.py,Google Services,"Google" paslaugos apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,"Ctrl" + Aukštyn -apps/frappe/frappe/utils/data.py,1 weeks ago,prieš 1 savaitę +DocType: Onboarding Slide,Slide Description,Skaidrės aprašymas DocType: Communication,Error,klaida apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Pirmiausia nustatykite pranešimą DocType: Auto Repeat,End Date,pabaigos data @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,Grupės etikėtė DocType: Kanban Board,Kanban Board,Kanban lenta apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,„Google“ kontaktai sukonfigūruoti. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Bus eksportuotas 1 įrašas +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Su vartotoju nesusieta jokia el. Pašto paskyra. Pridėkite abonementą skiltyje Vartotojas> El. Pašto dėžutė. DocType: DocField,Report Hide,Pranešti Slėpti apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Medis nėra už {0} DocType: DocType,Restrict To Domain,Apriboti domenų DocType: Domain,Domain,Domenas +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Neteisingas failo URL. Kreipkitės į sistemos administratorių. DocType: Custom Field,Label Help,etiketė Pagalba DocType: Workflow State,star-empty,žvaigždės tuščias apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datos yra dažnai sunku atspėti. @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left,rankų liko DocType: Data Import,If you are updating/overwriting already created records.,Jei atnaujinate / perrašėte jau sukurtus įrašus. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Yra pasaulis DocType: Email Account,Use SSL,Naudoti SSL +DocType: Webhook,HOOK-.####,KABLYS -. #### DocType: Workflow State,play-circle,PLAY-ratas apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentas negalėjo būti teisingai priskirtas apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Neteisinga "depends_on" išraiška @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Paskutinį kartą atnaujinta apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Skirta dokumento tipui DocType: Workflow State,arrow-right,rodyklė dešiniajame +DocType: Server Script,API Method,API metodas DocType: Workflow State,Workflow state represents the current state of a document.,Darbo eigos būsena atstovauja dabartinę dokumentu. DocType: Letter Head,Letter Head Based On,Laiško galva paremta apps/frappe/frappe/utils/oauth.py,Token is missing,Ženklas nėra @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,peradresuota DocType: Print Settings,Compact Item Print,Kompaktiškas punktas Spausdinti DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL peradresavimo +DocType: Onboarding Slide Field,Placeholder,Vietos rezervacija DocType: SMS Settings,Enter url parameter for receiver nos,Įveskite URL parametrą imtuvo Nr DocType: Chat Profile,Online,Prisijunges DocType: Email Account,Always use Account's Name as Sender's Name,Visada naudokite sąskaitos vardą kaip siuntėjo vardą @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,Namai DocType: OAuth Provider Settings,Auto,Automatinis DocType: System Settings,User can login using Email id or User Name,Vartotojas gali prisijungti naudojant el. Pašto adresą arba vartotojo vardą DocType: Workflow State,question-sign,klausimas-ženklas -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} neleidžiamas apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Lauko "maršrutas" yra privalomas "Web Views" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Įterpti stulpelį prieš {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Šio lauko vartotojui bus suteikiami taškai @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jei savininkas DocType: Data Migration Mapping,Push,Stumti apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Išmeskite failus čia DocType: OAuth Authorization Code,Expiration time,galiojimo laikas +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Atidarykite dokumentus DocType: Web Page,Website Sidebar,Interneto svetainė šoninė DocType: Web Form,Show Sidebar,Rodyti šoninė apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Jūs turite būti prisijungęs, kad pasiektumėte {0}." @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Visuotiniai DocType: Desktop Icon,Page,puslapis apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Nepavyko rasti {0} iš {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Vardai ir pavardės pagal save yra lengva atspėti. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokumentas pervadintas iš {0} į {1} apps/frappe/frappe/config/website.py,Knowledge Base,žinių bazės DocType: Workflow State,briefcase,portfelis apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vertė negali būti pakeisti {0} @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Spausdinti Formatas apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Perjungti tinklelio rodinį apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pereiti prie kito įrašo +DocType: System Settings,Time Format,Laiko formatas apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Negaliojantys Mokėjimo šliuzai įgaliojimai DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Tai yra šablonų failas, sugeneruotas tik su eilėmis, turinčiomis tam tikrą klaidą. Turėtumėte naudoti šį failą pataisymui ir importui." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nustatyti teises į Dokumentų tipai ir vaidmenys @@ -3397,12 +3513,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,atsakymas apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Puslapiai Desk (vieta turėtojai) DocType: DocField,Collapsible Depends On,Išardomas Priklauso nuo DocType: Print Style,Print Style Name,Spausdinti stiliaus vardą +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,"Jei norite sukurti informacijos suvestinės diagramą, reikia grupuoti lauką" DocType: Print Settings,Allow page break inside tables,Leiskite puslapio lūžį viduje stalai DocType: Email Account,SMTP Server,SMTP serveris DocType: Print Format,Print Format Help,Spausdinti Formatas Pagalba apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} kambaryje turi būti bent vienas vartotojas. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Grafas +DocType: Dashboard Chart,Group By Type,Grupuoti pagal tipą apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Naujas {0} komentaras: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},atkurta {0} kaip {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Jei atnaujinant, pasirinkite "Pakeisti" dar esamos eilutės nebus ištrintas." @@ -3413,8 +3531,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Vartotojo DocType: Web Form,Web Form,interneto forma apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} turi būti formatu: {1} DocType: About Us Settings,Org History Heading,Org Istorija kategoriją +DocType: Scheduled Job Type,Scheduled Job Type,Suplanuotas darbo tipas DocType: Print Settings,Allow Print for Cancelled,Leiskite Spausdinti už Atšauktas DocType: Communication,Integrations can use this field to set email delivery status,Integracija gali naudoti šį lauką nustatyti siųsti būsenos +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Neturite leidimų atšaukti visų susietų dokumentų. DocType: Web Form,Web Page Link Text,Interneto puslapio nuorodą tekstas DocType: Page,System Page,sistema puslapis DocType: Page,System Page,sistema puslapis @@ -3422,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESRK apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Pritaikymai <b>{0}</b> eksportuoti į: <br> {1} DocType: Website Settings,Include Search in Top Bar,Įtraukti Paieška viršutinėje juostoje +DocType: Scheduled Job Type,Daily Long,Kasdien ilgas DocType: GSuite Settings,Allow GSuite access,Leiskite GSuite priėjimą DocType: DocType,DESC,mažėjimo DocType: DocType,Naming,Pavadinimų @@ -3514,6 +3635,7 @@ DocType: Notification,Send days before or after the reference date,Siųsti diena DocType: User,Allow user to login only after this hour (0-24),Leidžia vartotojui prisijungti tik po šios valandos (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Skirkite po vieną, iš eilės" DocType: Integration Request,Subscription Notification,Prenumeratos pranešimas +DocType: Customize Form Field, Allow in Quick Entry ,Leisti greitai įvesti apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,arba pritvirtinkite a DocType: Auto Repeat,Start Date,Pradžios data apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,vertė @@ -3528,6 +3650,7 @@ DocType: Google Drive,Backup Folder ID,Atsarginio aplanko ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne kūrėjo režimu! Nustatyti site_config.json ar padaryti "pagal užsakymą" tipas. DocType: Workflow State,globe,gaublys DocType: System Settings,dd.mm.yyyy,Dd.mm.gggg +DocType: Onboarding Slide Help Link,Video,Vaizdo įrašas DocType: Assignment Rule,Priority,Prioritetas DocType: Email Queue,Unsubscribe Param,Atsisakyti Parametras DocType: DocType,Hide Sidebar and Menu,Slėpti šoninę juostą ir meniu @@ -3539,6 +3662,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Leisti importuoti (naudojan apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,plūdė DocType: Print Settings,Page Settings,Puslapio nustatymai +DocType: Notification Settings,Notification Settings,Pranešimų nustatymai apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Išsaugoma ... apps/frappe/frappe/www/update-password.html,Invalid Password,Neteisingas slaptažodis apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Sėkmingai importuotas {0} įrašas iš {1}. @@ -3554,6 +3678,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Laiško galvos vaizdas DocType: Address,Party GSTIN,šalis GSTIN +DocType: Scheduled Job Type,Cron Format,„Cron“ formatas apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} ataskaita DocType: SMS Settings,Use POST,Naudokite POST DocType: Communication,SMS,trumpoji žinutė @@ -3599,18 +3724,20 @@ DocType: Workflow,Allow approval for creator of the document,Leisti patvirtinti apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Išsaugoti ataskaitą DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API pabaigos taškai +DocType: DocType Action,Server Action,Serverio veiksmas apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administratorius atvertas {0} ant {1} per IP adresas {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Tėvų laukas turi būti galiojantis lauko pavadinimas apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Nepavyko iš dalies keisti prenumeratą DocType: LDAP Settings,LDAP Group Field,LDAP grupės laukas +DocType: Notification Subscribed Document,Notification Subscribed Document,Pranešimo prenumeruotas dokumentas apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,lygu apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Neteisingas CSV formatu -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Klaida jungiantis prie „QZ Tray Application“ ... <br><br> Jei norite naudoti neapdoroto spausdinimo funkciją, turite būti įdiegta ir paleista „QZ Tray“ programa. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Spustelėkite čia, jei norite atsisiųsti ir įdiegti „QZ Tray“</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Spustelėkite čia, jei norite sužinoti daugiau apie neapdorotą spausdinimą</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Nustatykite skaičius atsarginiai DocType: DocField,Do not allow user to change after set the first time,Neleiskite vartotojui keisti po nustatyti pirmą kartą apps/frappe/frappe/utils/data.py,1 year ago,Prieš 1 metus +DocType: DocType,Links Section,Nuorodų skyrius apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Peržiūrėti visų spausdinimo, atsisiuntimo ir eksporto įvykių žurnalą" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mėnuo DocType: Contact,Contact,Kontaktinis asmuo @@ -3637,16 +3764,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Naujas elektroninis paštas DocType: Custom DocPerm,Export,eksportas apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Jei norite naudoti „Google“ kalendorių, įgalinkite {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Taip pat pridedamas būsenos priklausomybės laukas {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Sėkmingai atnaujinta {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Nepavyko QZ dėklo: DocType: Dropbox Settings,Dropbox Settings,Dropbox Nustatymai DocType: About Us Settings,More content for the bottom of the page.,Daugiau turinį puslapio apačioje. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Šis dokumentas buvo grąžintas apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,„Google“ disko atsarginė kopija sėkmingai. +DocType: Webhook,Naming Series,Pavadinimų serija DocType: Workflow,DocType on which this Workflow is applicable.,"DOCTYPE, dėl kurių ši darbo eiga yra taikomas." DocType: User,Enabled,Įjungtas apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Nepavyko užbaigti nustatymo apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Naujas {0}: {1} -DocType: Tag Category,Category Name,Kategorijos pavadinimas +DocType: Blog Category,Category Name,Kategorijos pavadinimas apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Tėvas privalo gauti vaiko lentelės duomenis apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,importo žiūrovai DocType: Print Settings,PDF Settings,PDF Nustatymai @@ -3682,6 +3812,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendorius apps/frappe/frappe/client.py,No document found for given filters,Nėra dokumentas pateiktas filtrų nerasta apps/frappe/frappe/config/website.py,A user who posts blogs.,"Vartotojas, skelbiantis dienoraščius." +DocType: DocType Action,DocType Action,„DocType“ veiksmas apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Kitas {0} pavadinimu {1} egzistuoja, pasirinkti kitą vardą" DocType: DocType,Custom?,Pasirinktinis? DocType: Website Settings,Website Theme Image,Interneto svetainė tema vaizdas @@ -3691,6 +3822,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nepavyko apps/frappe/frappe/config/integrations.py,Backup,Atsarginė apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,"Norint sukurti informacijos suvestinės diagramą, reikia dokumento tipo" DocType: DocField,Read Only,Tik skaitymui +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nepavyko sukurti užsakymo už skustuvą apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,nauja Naujienlaiškis DocType: Energy Point Log,Energy Point Log,Energijos taškų žurnalas DocType: Print Settings,Send Print as PDF,Siųsti Spausdinti PDF formatu @@ -3716,16 +3848,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pat apps/frappe/frappe/www/login.html,Or login with,Arba prisijunkite su DocType: Error Snapshot,Locals,vietiniai apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Perduota per {0} ant {1} {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} paminėjo jus komentaro {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Pasirinkite grupę pagal ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pvz (55 + 434) / 4 arba = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} reikalingas DocType: Integration Request,Integration Type,integracija tipas DocType: Newsletter,Send Attachements,siųsti priedais +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nerasta filtrų apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,„Google“ kontaktų integracija. DocType: Transaction Log,Transaction Log,Operacijų žurnalas apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistika pagrįsta praėjusio mėnesio našumu (nuo {0} iki {1}) DocType: Contact Us Settings,City,miestas +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Slėpti visų vartotojų korteles apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Įgalinkite leidimą automatiškai pakartoti {0} tipą pritaikant formą DocType: DocField,Perm Level,Permė lygis apps/frappe/frappe/www/confirm_workflow_action.html,View document,Peržiūrėti dokumentą @@ -3737,6 +3870,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""Globali paieška"" neleidžiama {0} tipui {1} eilutėje" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""Globali paieška"" neleidžiama {0} tipui {1} eilutėje" DocType: Energy Point Log,Appreciation,Vertinimas +DocType: Dashboard Chart,Number of Groups,Grupių skaičius apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Žiūrėti sąrašą DocType: Workflow,Don't Override Status,Negalima nepaisyti Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Paieškos terminas @@ -3778,7 +3912,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-šiaurės vakarų-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB atsarginių kopijų ribinis skaičius DocType: Custom DocPerm,Level,lygis -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Paskutinės 30 dienų DocType: Custom DocPerm,Report,ataskaita apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Suma turi būti didesnė už 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Prijungta prie QZ dėklo! @@ -3795,6 +3928,7 @@ DocType: S3 Backup Settings,us-west-2,mus-vakarus-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Pasirinkite Vaikų lentelė apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Suaktyvinkite pirminį veiksmą apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,pokytis +DocType: Social Login Key,User ID Property,Naudotojo ID nuosavybė DocType: Email Domain,domain name,domeno vardas DocType: Contact Email,Contact Email,kontaktinis elektroninio pašto adresas DocType: Kanban Board Column,Order,Įsakymas @@ -3817,7 +3951,7 @@ DocType: Contact,Last Name,Pavardė DocType: Event,Private,privatus apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,į kairę DocType: Event,All Day,Visą dieną apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Atrodo, kad kažkas yra negerai su šiuo svetainės mokėjimo šliuzai konfigūracijos. Ne buvo atliktas mokėjimas." DocType: GCalendar Settings,State,valstybės @@ -3849,7 +3983,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Vartai nustatymai apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Teksto dokumento tipui -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,paleisti Testai apps/frappe/frappe/handler.py,Logged Out,Atsijungęs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Daugiau ... DocType: System Settings,User can login using Email id or Mobile number,Vartotojas gali prisijungti naudojant elektroninio pašto ID arba Mobilaus telefono numeris @@ -3866,6 +3999,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Santrauka DocType: Event,Event Participants,Renginio dalyviai DocType: Auto Repeat,Frequency,dažnis +DocType: Onboarding Slide,Slide Order,Skaidrių tvarka DocType: Custom Field,Insert After,Įdėkite Po DocType: Event,Sync with Google Calendar,Sinchronizuoti su „Google“ kalendoriumi DocType: Access Log,Report Name,Ataskaitos pavadinimas @@ -3893,6 +4027,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksimalus plotis tipo valiuta yra 100px iš eilės {0} apps/frappe/frappe/config/website.py,Content web page.,Turinio interneto puslapis. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Įdėti naują vaidmenį +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Apsilankykite tinklalapyje +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nauja užduotis DocType: Google Contacts,Last Sync On,Paskutinė sinchronizacija įjungta DocType: Deleted Document,Deleted Document,ištrintas Dokumento apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oi! Kažkas negerai @@ -3903,7 +4039,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Peizažas apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Kliento pusėje scenarijus plėtiniai JavaScript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Šių doctypų įrašai bus filtruojami -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Tvarkaraštis neaktyvus +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Tvarkaraštis neaktyvus DocType: Blog Settings,Blog Introduction,Dienoraštis Įvadas DocType: Global Search Settings,Search Priorities,Paieškos prioritetai DocType: Address,Office,biuras @@ -3913,13 +4049,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Informacijos suvestinės diag DocType: User,Email Settings,Siųsti Nustatymai apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Nuleisk čia DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Jei įjungta, vartotojas gali prisijungti naudodamas bet kurį IP adresą naudodamas „Dviejų faktorių autentifikavimą“. Tai taip pat galima nustatyti visiems vartotojams sistemos parametruose" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Spausdintuvo nustatymai ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Prašome įvesti slaptažodį Tęsti apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Prašome įvesti slaptažodį Tęsti apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Aš apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} neleistina Būsena apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Taikyti visiems dokumentų tipams -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energijos taško atnaujinimas +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energijos taško atnaujinimas +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Vykdyti darbus tik kasdien, jei neaktyvus (dienos)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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} ' DocType: Chat Message,Room Type,Kambario tipas DocType: Data Import Beta,Import Log Preview,Importuoti žurnalo peržiūrą @@ -3928,6 +4064,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-ratas DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP vartotojo kūrimas ir žemėlapių sudarymas apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Jūs galite rasti dalykų klausia "rasite oranžinę klientus" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Šiandienos įvykiai apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Atsiprašau! Vartotojas turėtų turėti pilną priėjimą prie savo įrašo. ,Usage Info,naudojimas Informacija apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Rodyti sparčiuosius klavišus @@ -3944,6 +4081,7 @@ DocType: DocField,Unique,Unikalus apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} įvertintas {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Dalinis sėkmė DocType: Email Account,Service,tarnyba +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> vartotojas DocType: File,File Name,Failo pavadinimas apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Neradote {0} už {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3957,6 +4095,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,pilnas R DocType: GCalendar Settings,Enable,įgalinti DocType: Google Maps Settings,Home Address,Namų adresas apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Galite įkelti tik iki 5000 įrašų vienu ypu. (Gali būti mažiau kai kuriais atvejais) +DocType: Report,"output in the form of `data = [columns, result]`","išvesties forma „duomenys = [stulpeliai, rezultatas]“" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Taikomi dokumentų tipai apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nustatykite vartotojo priskyrimo taisykles. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nepakanka Leidimas {0} @@ -3974,7 +4113,6 @@ DocType: Communication,To and CC,To ir CK DocType: SMS Settings,Static Parameters,statiniai parametrai DocType: Chat Message,Room,Kambarys apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},atnaujintas {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Fono darbai nevykdomi. Kreipkitės į administratorių DocType: Portal Settings,Custom Menu Items,Asmeninis meniu daiktai apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Visos nuotraukos, pridėtos prie svetainės demonstracijos, turi būti viešos" DocType: Workflow State,chevron-right,"Chevron" dešiniajame @@ -3989,11 +4127,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Pasirinktos {0} vertės DocType: DocType,Allow Auto Repeat,Leisti automatinį pakartojimą apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Jokių vertybių parodyti +DocType: DocType,URL for documentation or help,Dokumentacijos ar pagalbos URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Elektroninio pašto šablonas apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Sėkmingai atnaujintas {0} įrašas. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Naudotojas {0} neturi prieigos prie doktipo tipo per {1} dokumento vaidmens leidimą apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Tiek prisijungimo vardą ir slaptažodį reikia +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Leisti\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Prašome atnaujinti gauti naujausią dokumentą. DocType: User,Security Settings,apsaugos Nustatymai apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,pridėti stulpelį @@ -4003,6 +4143,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtruoti Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Pridėkite {0}: {1} DocType: Web Page,Set Meta Tags,Nustatykite metažymas +DocType: Email Account,Use SSL for Outgoing,Naudokite SSL išeinančiam 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: S3 Backup Settings,Backup Limit,Atsarginio kopijavimo riba DocType: Dashboard Chart,Line,Linija @@ -4035,4 +4176,3 @@ DocType: DocField,Ignore User Permissions,Ignoruoti vartotojų teises apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Išsaugota sėkmingai apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Kreipkitės į administratorių patikrinti savo prisiregistravimo DocType: Domain Settings,Active Domains,aktyvios Domenai -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Rodyti Prisijungti diff --git a/frappe/translations/lv.csv b/frappe/translations/lv.csv index f79f0b5313..af5641bcf4 100644 --- a/frappe/translations/lv.csv +++ b/frappe/translations/lv.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Lūdzu, izvēlieties laukam." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Notiek importa faila ielāde ... DocType: Assignment Rule,Last User,Pēdējais lietotājs -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Jaunais uzdevums, {0}, ir piešķirts jums ar {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sesijas noklusējumi ir saglabāti apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Atkārtoti ielādēt failu DocType: Email Queue,Email Queue records.,Email Rindas ieraksti. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,Lietotāja e-pasta DocType: User,Username,Lietotājvārds apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importēt Zip +DocType: Scheduled Job Type,Create Log,Izveidot žurnālu apps/frappe/frappe/model/base_document.py,Value too big,Vērtība ir pārāk liels DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script tests @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Ikmēneša DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Ieslēgt Ienākošie apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Briesmas -DocType: Address,Email Address,E-pasta adrese +apps/frappe/frappe/www/login.py,Email Address,E-pasta adrese DocType: Workflow State,th-large,th-liela DocType: Communication,Unread Notification Sent,Nelasītu adresējis apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,"Eksporta nav atļauta. Jums ir nepieciešams, {0} lomu eksportu." @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Atce DocType: DocType,Is Published Field,Vai Publicēts lauks DocType: GCalendar Settings,GCalendar Settings,GCalendar iestatījumi DocType: Email Group,Email Group,Email Group +apps/frappe/frappe/__init__.py,Only for {},Tikai priekš {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google kalendārs - nevarēja izdzēst notikumu {0} no Google kalendāra, kļūdas kods {1}." DocType: Event,Pulled from Google Calendar,Tiek noņemts no Google kalendāra DocType: Note,Seen By,redzams apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Vairāku pievienošana -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Jūs ieguvāt dažus enerģijas punktus apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nav derīgs lietotāja attēls. DocType: Energy Point Log,Reverted,Atgriezts DocType: Success Action,First Success Message,Pirmā veiksmes ziņa @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nepatīk apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nepareiza vērtība: {0} ir {1}{2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Mainīt lauka īpašības (slēpt, tikai lasāms, atļauja uc)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Novērtē +DocType: Notification Settings,Document Share,Dokumentu kopīgošana DocType: Workflow State,lock,atslēga apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Iestatījumi kontaktu lapu. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrators Pieteicies @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ja tā ir iespējota, dokuments tiek atzīmēts kā redzams, kad lietotājs to pirmo reizi atver" DocType: Auto Repeat,Repeat on Day,Atkārtojiet dienu DocType: DocField,Color,Krāsa +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Atzīmēt visu kā izlasītu DocType: Data Migration Run,Log,log DocType: Workflow State,indent-right,ievilkums labajā DocType: Has Role,Has Role,ir lomas @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Rādīt izsekošanu DocType: DocType,Default Print Format,Default Print Format DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Slaida tips apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Neviens: End of Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} lauks nevar iestatīt kā unikāla {1}, jo ir neunikālu esošās vērtības" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentu veidi @@ -136,7 +139,6 @@ DocType: Language,Guest,Viesis DocType: DocType,Title Field,Nosaukums Field DocType: Error Log,Error Log,kļūda Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Nederīgs URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Pēdējās 7 dienas apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Atkārtojas, piemēram, "abcabcabc" ir tikai nedaudz grūtāk uzminēt kā "ABC"" DocType: Notification,Channel,Kanāls apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ja jūs domājat, ka tas ir nesankcionēta, lūdzu mainītu administratora paroli." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Klients apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Atlasiet kolonnu apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Šī forma ir mainīta, kad esat iekrauj to" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Paziņojumu žurnāls 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Atveriet lielisko joslu @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Ie apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Sūtīt DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE nevar tikt apvienots -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nav zip fails DocType: Global Search DocType,Global Search DocType,Globālā meklēšana DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Nosūtīts e-pasts? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Pārslēgt diagrammu apps/frappe/frappe/desk/form/save.py,Did not cancel,Nebija atcelt DocType: Social Login Key,Client Information,Klienta informācija +DocType: Energy Point Rule,Apply this rule only once per document,Pielietojiet šo noteikumu tikai vienu reizi dokumentā DocType: Workflow State,plus,pluss +DocType: DocField,Read Only Depends On,Tikai lasīšana ir atkarīga apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Pieteicies kā viesim vai administrators DocType: Email Account,UNSEEN,neredzēts apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Failu pārvaldnieks @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Iemesls 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Nav aktivitātes +DocType: Server Script,Script Manager,Skriptu pārvaldnieks +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nav aktivitātes apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Trešo pušu lietotnes apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Šodien nav notikumu apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Jūs nevarat dot pārskatīšanas punktus sev apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType jābūt iesniedzamajam atlasītajam Doc notikumam DocType: Workflow State,circle-arrow-up,aplis-arrow-up @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nav atļauts {0}: {1}. Ierobežots lauks: {2} 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,You are not allowed to delete a standard Website Theme,Jums nav atļauts dzēst standarta mājas lapas tēmu +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Izveidojiet savu pirmo {0} DocType: Data Import,Log Details,Žurnāla detaļas DocType: Workflow Transition,Example,Piemērs DocType: Webhook Header,Webhook Header,Webhook virsraksts @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Tērzēšanas fons apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Atzīmēt kā lasītu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} atjaunināšana +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Iekšpusē esošs slaids <b>{0}</b> ar tādu pašu slaidu secību jau pastāv apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Atslēgt pārskats DocType: Translation,Contributed Translation Doctype Name,Iegādātais tulkojums Doctype Name +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu DocType: PayPal Settings,Redirect To,novirzīt Lai DocType: Data Migration Mapping,Pull,Izvelciet DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formāts: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Iekšējā ieraksts dokumen DocType: Energy Point Settings,Review Levels,Pārskata līmeņi DocType: Workflow State,Comment,Komentēt DocType: Data Migration Plan,Postprocess Method,Pēcapstrādes metode +DocType: DocType Action,Action Type,Darbības veids apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Uzņemt bildi DocType: Assignment Rule,Round Robin,Apaļais Robins apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Jūs varat mainīt iesniegtie dokumenti, ko tās anulējot, un pēc tam, tos groza." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Saglabāt kā DocType: Comment,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Parādiet sīkāku informāciju +DocType: Server Script,Before Submit,Pirms iesniegšanas 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,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,Archive,Arhīvs @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Nepareizs lauka nosaukums <b>{0}</b> pielāgotā skripta konfigurācijā add_fetch apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Atlasiet Google kontaktpersonas, ar kurām sinhronizēt kontaktpersonu." DocType: Web Page,Main Section (HTML),Galvenā sadaļa (HTML) +DocType: Scheduled Job Type,Annual,Gada DocType: Workflow State,headphones,austiņas apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Parole ir nepieciešama vai izvēlēties Gaida paroli DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,piemēram replies@yourcomany.com. Visas atbildes nāks uz šo inbox. DocType: Slack Webhook URL,Slack Webhook URL,Viegla Webhokas URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Nosaka slaida secību vednī. Ja slaids nav redzams, prioritāte jāiestata uz 0." DocType: Data Migration Run,Current Mapping,Pašreizējā kartēšana apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Derīga e-pasta un nosaukums nepieciešams apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Padariet visus pielikumus privātus @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Pārejas noteikumi apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Priekšskatījumā tiek rādītas tikai pirmās {0} rindas apps/frappe/frappe/core/doctype/report/report.js,Example:,Piemērs: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ierobežojumi DocType: Workflow,Defines workflow states and rules for a document.,Definē darbplūsmas valstis un noteikumus attiecībā uz dokumentu. DocType: Workflow State,Filter,Filtrs apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},"Pārbaudiet kļūdu žurnālu, lai iegūtu papildinformāciju: {0}" @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Ījabs apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} pieteicies out: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Informācija apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nevar iestatīt Piešķirt Pieteikt ja ne Submittable DocType: Transaction Log,Row Index,Rindas indekss DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,poga Palīdzība DocType: Kanban Board Column,purple,violets DocType: About Us Settings,Team Members,Komandas locekļi +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Aktīvās vietnes darbosies plānotos darbus tikai vienu reizi dienā. Noklusējums 4 dienas, ja iestatīts uz 0." DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Plānotais darbs DocType: Custom DocPerm,Permissions,Atļaujas apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Vāja iekšējās integrācijas Webhooks DocType: Dropbox Settings,Allow Dropbox Access,Atļaut Dropbox Access @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Sken DocType: Email Flag Queue,Email Flag Queue,Email Flag rinda DocType: Access Log,Columns / Fields,Kolonnas / lauki apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Izdrukas formātu stilu tabulas +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,"Lauks Aggregate Function ir nepieciešams, lai izveidotu paneļa diagrammu" apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Nevar noteikt atvērta {0}. Mēģināt kaut ko citu. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ir iesniegta Jūsu informācija apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Lietotāja {0} nevar izdzēst @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Lauka nosaukums DocType: Assignment Rule,Assign To Users,Piešķirt lietotājiem apps/frappe/frappe/public/js/frappe/utils/utils.js,or,vai apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modulis nosaukums ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Turpināt +DocType: Onboarding Slide,Continue,Turpināt apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google integrācija ir atspējota. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,apliecība apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Pārbaude ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Jūsu uzdevums {0} {1} ir noņemts apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Pirmais datu sleja jābūt tukšam. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Rādīt visas versijas apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Skatīt komentāru @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Ierobežot IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,mērinstrumentu panelis apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nevar nosūtīt e-pastus šajā laikā apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google kalendārs - nevarēja atjaunināt notikumu {0} Google kalendārā, kļūdas kods {1}." +DocType: Notification Log,Email Content,E-pasta saturs apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Meklēt vai ierakstiet komandu DocType: Activity Log,Timeline Name,Timeline Name apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Tikai vienu {0} var iestatīt kā galveno. DocType: Email Account,e.g. smtp.gmail.com,piemēram smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Pievienot jaunu noteikumu DocType: Contact,Sales Master Manager,Sales Master vadītājs +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Lai jūsu lietotne darbotos, jums jāatspējo JavaScript." DocType: User Permission,For Value,Par vērtību DocType: Event,Google Calendar ID,Google kalendāra ID apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP vidējā nosaukuma lauks apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Tiek importēts {0} no {1} DocType: GCalendar Account,Allow GCalendar Access,Atļaut GCalendar piekļuvi apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ir obligāts lauks +DocType: DocType,Documentation Link,Dokumentācijas saite apps/frappe/frappe/templates/includes/login/login.js,Login token required,Nepieciešams ieejas atgādinājums apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mēneša rangs: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Atlasiet vairākus saraksta vienumus @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Failu URL DocType: Version,Table HTML,galda HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Pievienot abonenti +DocType: Notification Log,Energy Point,Enerģijas punkts apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Gaidāmie Notikumi Šodien DocType: Google Calendar,Push to Google Calendar,Piespiediet Google kalendāram DocType: Notification Recipient,Email By Document Field,E-pasts pēc dokumenta Field @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Prom DocType: Currency,Fraction Units,Frakcija vienības apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} no {1} līdz {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Atzīmēt kā pabeigtu DocType: Chat Message,Type,Tips DocType: Google Settings,OAuth Client ID,OAuth klienta ID DocType: Auto Repeat,Subject,Pakļauts apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Atpakaļ pie galda DocType: Web Form,Amount Based On Field,"Summa, pamatojoties uz lauka" +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nav izsekotu versiju. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,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,Fold can not be at the end of the form,Fold nevar būt beigās formu DocType: Communication,Bounced,Atlekšanai +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,no DocType: Deleted Document,Deleted Name,svītrots vārds apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistēmas un tīmekļa vietnes lietotājiem DocType: Workflow Document State,Doc Status,Doc statuss @@ -527,6 +552,7 @@ DocType: Language,Language Code,Language Code DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Piezīme. Pēc noklusējuma tiek sūtīti e-pasta ziņojumi par neveiksmīgām kopijām. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Noņemt filtru apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS nosūtīts šādiem numuriem: {0} +DocType: Notification Settings,Assignments,Uzdevumi apps/frappe/frappe/utils/data.py,{0} and {1},{0} un {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Sāciet sarunu. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vienmēr pievienot "projektu" Pozīcija drukāšanas dokumentu projektiem @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Pašreizējais kartēšanas s apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pasts ir atzīmēts kā nevēlams DocType: Comment,Website Manager,Mājas lapa vadītājs apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Failu augšupielāde ir atvienota. Lūdzu mēģiniet vēlreiz. +DocType: Data Import Beta,Show Failed Logs,Rādīt neveiksmīgos žurnālus apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Tulkojumi apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Jūs izvēlējāties projekts vai Atceltie dokumenti apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokuments {0} ir iestatīts kā stāvoklis {1} līdz {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumentu Rindā DocType: GSuite Templates,Destination ID,Destination ID DocType: Desktop Icon,List,Saraksts DocType: Activity Log,Link Name,link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Tu esi patvērums \ DocType: System Settings,mm/dd/yyyy,mm / dd / gggg +DocType: Onboarding Slide,Onboarding Slide,Borta slidkalniņš apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nepareiza parole: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nepareiza parole: DocType: Print Settings,Send document web view link in email,Nosūtīt dokumentu web skata saiti e-pastā @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,tumši pelēks apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Veiksmīga: {0} uz {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Piliens +DocType: Dashboard Chart,Aggregate Function Based On,Kopējā funkcija balstīta uz apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Lūdzu atkārtot to veikt izmaiņas apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Nospiediet Enter, lai saglabātu" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"PDF paaudzes neizdevās, jo šķelto attēlu saites" @@ -617,7 +647,9 @@ DocType: Notification,Days Before,Dienas Pirms apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dienas notikumiem vajadzētu būt pabeigtiem tajā pašā dienā. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Rediģēt ... DocType: Workflow State,volume-down,tilpums uz leju +DocType: Onboarding Slide,Help Links,Palīdzības saites apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Piekļuve nav atļauta no šīs IP adreses +DocType: Notification Settings,Enable Email Notifications,Iespējot e-pasta paziņojumus apps/frappe/frappe/desk/reportview.py,No Tags,Nav Birkas DocType: Email Account,Send Notification to,Nosūtīt Paziņošana DocType: DocField,Collapsible,Saliekams @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Pēdējā dublēšana ieslēgta DocType: Customize Form Field,Customize Form Field,Pielāgot Form Field DocType: Energy Point Rule,For Document Event,Dokumentu pasākumam DocType: Website Settings,Chat Room Name,Tērzēšanas telpas nosaukums +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Bez izmaiņām DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Pārbaudīt, kuri dokumenti ir lasāma, vai lietotāju" DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,"izm DocType: Auto Repeat,Quarterly,Ceturkšņa apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Visu laiku apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Nelegāla dokumenta statuss {0} DocType: Email Account,Enable Auto Reply,Ieslēgt Auto Atbildēt apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Neesmu redzējis @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Ziņo DocType: Email Account,Notify if unreplied,"Paziņot, ja neatbildēti" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skenējiet QR kodu un ievadiet parādīto rezultātu. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Iespējot slīpumus +DocType: Scheduled Job Type,Hourly Long,Stundu ilgi DocType: System Settings,Minimum Password Score,Minimālā Paroles vērtējums DocType: System Settings,Minimum Password Score,Minimālā Paroles vērtējums DocType: DocType,Fields,Fields @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent tabu apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 dublēšana pabeigta! apps/frappe/frappe/config/desktop.py,Developer,Attīstītājs apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Izveidots +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Lai to iespējotu, izpildiet instrukcijas, kas norādītas šajā saitē: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} rindā {1} nevar būt gan URL un bērnu preces apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Šīm tabulām vajadzētu būt vismaz vienai rindai: {0} DocType: Print Format,Default Print Language,Noklusējuma drukas valoda apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Priekšņi no apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nevar izdzēst +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nav neveiksmīgu žurnālu apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Vēl nav neviena komentāra apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Lūdzu, uzstādiet SMS, pirms tā tiek iestatīta kā autentifikācijas metode, izmantojot SMS iestatījumus" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Gan DOCTYPE un Vārds nepieciešams @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,Footer Items apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Izvēlēties DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Katru dienu +DocType: Onboarding Slide,Max Count,Maksimālais skaits apps/frappe/frappe/config/users_and_permissions.py,User Roles,Lietotāja Lomas DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Īpašums seters ignorēšanas standarta dokumenta tips vai īpašuma jomā apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nevar Atjaunināt: Nepareiza / Beidzās Link. @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,saimnieks DocType: Data Import Beta,Import File,Importēt failu +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Veidnes kļūda apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Kolonna <b>{0}</b> jau eksistē. DocType: ToDo,High,Augsts apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Jauns notikums @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,Rādīt filtrā DocType: Address,Daman and Diu,Daman un Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekts DocType: Address,Personal,Personisks +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Neapstrādāti drukāšanas iestatījumi ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,"Lai iegūtu sīkāku informāciju, skatiet vietni https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region." apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Rādīt kā CC @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Veikt videoklipu DocType: Contact Us Settings,Introductory information for the Contact Us Page,Ievada informācija par kontaktu lapu DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs leju +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Dokumentu atcelšana DocType: User,Send Notifications for Email threads,Sūtīt paziņojumus par e-pasta pavedieniem apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne izstrādātāja Mode @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Failu dubl DocType: DocField,In Global Search,In Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,ievilkums kreisajā -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pirms {0} gada (-iem) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Tas ir riskanti, lai izdzēstu šo failu: {0}. Lūdzu, sazinieties ar sistēmas pārzini." DocType: Currency,Currency Name,Valūtu Name apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nav e-pasta @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,Lietotāja lauks DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Nospiediet Dzēst apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} jau atrakstījies par {1} {2} +DocType: Scheduled Job Type,Stopped,Apturēts apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Neatceļ apps/frappe/frappe/desk/like.py,Liked,Patika apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Nosūtīt tagad apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standarta DOCTYPE nevar noklusējuma drukas formātā, izmantojiet Pielāgot Form" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standarta DOCTYPE nevar noklusējuma drukas formātā, izmantojiet Pielāgot Form" +DocType: Server Script,Allow Guest,Atļaut viesim DocType: Report,Query,Jautājums DocType: Customize Form,Sort Order,Kārtošanas secība apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""List View"" nav atļauts veidam {0} rindā {1}" @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Divu faktoru autentifikācijas metode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Vispirms iestatiet nosaukumu un saglabājiet ierakstu. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ieraksti +DocType: DocType Link,Link Fieldname,Saites lauka nosaukums apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Kopīgi ar {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Atteikties DocType: View Log,Reference Name,Atsauce Name apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Mainīt lietotāju +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pirmkārt apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Atjaunināt tulkojumus DocType: Error Snapshot,Exception,Izņēmums DocType: Email Account,Use IMAP,Izmantot IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Noteikumus, kas nosaka pāreju no valsts darbplūsmā." DocType: File,Folder,Mape DocType: Website Route Meta,Website Route Meta,Vietnes maršruta Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Borta slīdēšanas lauks DocType: DocField,Index,Indekss DocType: Email Group,Newsletter Manager,Biļetens vadītājs apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,1. variants @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Uzs apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurēt diagrammas DocType: User,Last IP,Pēdējais IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Lūdzu, pievienojiet tēmu savam e-pastam" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Jauns dokuments {0} ir kopīgots ar jums {1}. DocType: Data Migration Connector,Data Migration Connector,Datu migrācijas savienotājs apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} atsaukts {1} DocType: Email Account,Track Email Status,Izsekot e-pasta statusu @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,Default Izejošais DocType: Workflow State,play,spēlēt apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Noklikšķiniet uz saites zemāk, lai pabeigtu savu reģistrāciju un noteikt jaunu paroli" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nav pievienot +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ieguva {1} punktus par {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nav e-pasta konti Piešķirtie DocType: S3 Backup Settings,eu-west-2,eu-rietumi-2 DocType: Contact Us Settings,Contact Us Settings,Sazinieties ar mums Settings @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Meklēša DocType: Workflow State,text-width,teksta platums apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimālā Pielikums Limit šā ieraksta sasniegts. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Meklēšana pēc faila nosaukuma vai paplašinājuma +DocType: Onboarding Slide,Slide Title,Slaida nosaukums DocType: Notification,View Properties (via Customize Form),View Properties (caur Pielāgot forma) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Noklikšķiniet uz faila, lai to atlasītu." DocType: Note Seen By,Note Seen By,Piezīme redzams @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Koplietot URL DocType: System Settings,Allow Consecutive Login Attempts ,Ļaujiet secīgus pieteikšanās mēģinājumus apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,"Maksājumu procesa laikā radās kļūda. Lūdzu, sazinieties ar mums." +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ja Slaida tips ir Izveidot vai Iestatījumi, {ref_doctype} .py failā ir jābūt metodei 'create_onboarding_docs', kas obligāti jāizpilda pēc slaida pabeigšanas." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Pirms {0} dienas DocType: Email Account,Awaiting Password,Gaida Paroles DocType: Address,Address Line 1,Adrese Line 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ne pēcnācēji no DocType: Contact,Company Name,Uzņēmuma nosaukums DocType: Custom DocPerm,Role,Loma -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Iestatījumi... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,uz jūsu pārlūkprogrammu apps/frappe/frappe/utils/data.py,Cent,Cents ,Recorder,Ierakstītājs @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Izsekojiet, vai saņēmējs ir atvēris e-pasta ziņojumu. <br> Piezīme. Ja jūs sūtāt vairākiem adresātiem, pat ja viens saņēmējs nolasa e-pastu, tas tiks uzskatīts par "atvērtu"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Trūkstošie Vērtības Nepieciešamais apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Atļaut piekļuvi Google kontaktpersonām +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ierobežots DocType: Data Migration Connector,Frappe,frapē apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Atzīmēt kā nelasītu DocType: Activity Log,Operation,Operācija @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,atļaut drukāt DocType: Communication,Clicked,Uzklikšķināt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Neizsekot apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nav atļaujas '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Lūdzu, iestatiet noklusējuma e-pasta kontu no Iestatīšana> E-pasts> E-pasta konts" apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Plānotais sūtīt DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,Failu dublējums @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} nav atras apps/frappe/frappe/config/customization.py,Add custom forms.,Pievienot pielāgotus formas. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ir {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,iesniedza šo dokumentu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Sistēma piedāvā daudz iepriekš noteiktas funkcijas. Jūs varat pievienot jaunas lomas, lai uzstādītu smalkākās atļaujas." DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Paātrinātāja vārds -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domains +DocType: Onboarding Slide,Domains,Domains DocType: Blog Category,Blog Category,Blog Kategorija apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Nevar karti, jo šāds nosacījums nav:" DocType: Role Permission for Page and Report,Roles HTML,Lomas HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,Sestdiena DocType: User,Represents a User in the system.,Pārstāv lietotājs sistēmā. DocType: List View Setting,Disable Auto Refresh,Atspējot automātisko atsvaidzināšanu DocType: Comment,Label,Etiķete -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Uzdevums {0}, kas jums piešķirts {1}, ir slēgta." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Lūdzu, aizveriet šo logu" DocType: Print Format,Print Format Type,Print Format Type DocType: Newsletter,A Lead with this Email Address should exist,Svins ar šo e-pasta adrese ir pastāvēt @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP uzstādījumi izej apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izvēlēties DocType: Data Export,Filter List,Filtra saraksts DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Atbildēt Message DocType: Data Migration Mapping,Condition,Nosacījums apps/frappe/frappe/utils/data.py,{0} hours ago,Pirms {0} stundas @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Atbalstītājs DocType: Communication,Sent Read Receipt,Nosūtīts Read saņemšana DocType: Email Queue,Unsubscribe Method,Atteikties metode +DocType: Onboarding Slide,Add More Button,Pievienot vēl pogu DocType: GSuite Templates,Related DocType,Saistītās DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,"Labot, lai pievienotu saturu" apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,izvēlieties valodas apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kartes detaļas apps/frappe/frappe/__init__.py,No permission for {0},Nav atļaujas par {0} DocType: DocType,Advanced,Uzlabots +DocType: Onboarding Slide,Slide Image Source,Slaida attēla avots apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Atsauce: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,kundze @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Meistars DocType: DocType,User Cannot Create,Lietotājs nevar izveidot apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Veiksmīgi pabeigts apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox piekļuve ir apstiprināts! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Vai tiešām vēlaties apvienot {0} ar {1}? DocType: Customize Form,Enter Form Type,Ievadiet veidlapu veids DocType: Google Drive,Authorize Google Drive Access,Autorizējiet piekļuvi Google diskam apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Trūkst parametra Kanban valdes nosaukuma @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Ļaujot DOCTYPE, DOCTYPE. Esiet uzmanīgi!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Nestandarta formāti drukāšanai, E-pasts" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} summa -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Atjaunots uz jauno versiju DocType: Custom Field,Depends On,Atkarīgs On DocType: Kanban Board Column,Green,Zaļš DocType: Custom DocPerm,Additional Permissions,Papildu atļaujas @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,Sociālais apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google kalendārs - nevarēja izveidot kalendāru {0}, kļūdas kods {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Labot ierakstu DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Dzēst visus DocType: Custom Field,Field Type,Lauks Type apps/frappe/frappe/utils/data.py,only.,tikai. DocType: Route History,Route History,Maršruta vēsture @@ -1224,11 +1274,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Aizmirsi paroli? DocType: System Settings,yyyy-mm-dd,gggg-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,servera kļūda +DocType: Server Script,After Delete,Pēc Dzēst apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Skatīt visus iepriekšējos pārskatus. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Login ID ir nepieciešama DocType: Website Slideshow,Website Slideshow,Mājas lapa Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nav datu DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Saite, kas ir mājas lapā mājas lapā. Standarta Links (indekss, login, produkti, blog, apmēram, kontaktu)" +DocType: Server Script,After Submit,Pēc iesniegšanas apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentifikācija neizdevās saņemot e-pastus no e-pasta konta {0}. Ziņojums no servera: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Custom Field @@ -1269,15 +1321,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ja lietotājs ir kāda loma pārbauda, tad lietotājs kļūst par "sistēmas lietotājs". "Sistēmas lietotājs" ir piekļuve darbvirsmas" DocType: System Settings,Date and Number Format,Datums un numurs Format apps/frappe/frappe/model/document.py,one of,viens no -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,vienu brīdi Pārbaude apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Rādīt birkas DocType: DocField,HTML Editor,HTML redaktors 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs +DocType: DocType,Actions,Darbības DocType: Workflow State,align-justify,saskaņot-pamatot DocType: User,Middle Name (Optional),Middle Name (pēc izvēles) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nav atļauts @@ -1292,6 +1342,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Rezultāti DocType: System Settings,Security,Drošība apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Plānots nosūtīt uz {0} saņēmējiem apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Griezt +DocType: Server Script,After Save,Pēc Saglabāt apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},pārdēvēta no {0} līdz {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} no {1} ({2} rindas ar bērniem) DocType: Currency,**Currency** Master,** Valūtas ** Master @@ -1318,16 +1369,19 @@ DocType: Prepared Report,Filter Values,Filtra vērtības DocType: Communication,User Tags,Lietotāja birkas DocType: Data Migration Run,Fail,Neveiksme DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Pēdējā izpilde DocType: Data Migration Run,Pull Failed,Izvilkt neizdevās apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Rādīt / paslēpt kartes DocType: Communication,Feedback Request,Atsauksmes pieprasījums apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Datu importēšana no CSV / Excel failiem. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Šādi lauki trūkst: +DocType: Notification Log,From User,No lietotāja apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Atceļot {0} DocType: Web Page,Main Section,Galvenā sadaļa DocType: Page,Icon,Ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Padoms: Iekļaut simbolus, ciparus un ar lielajiem burtiem paroli" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Padoms: Iekļaut simbolus, ciparus un ar lielajiem burtiem paroli" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurējiet paziņojumus pieminēšanai, uzdevumiem, enerģijas punktiem un citam." DocType: DocField,Allow in Quick Entry,Atļaut ātrā ierakstā apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / gggg @@ -1359,7 +1413,6 @@ DocType: Website Theme,Theme URL,Tēmas URL DocType: Customize Form,Sort Field,Kārtot Field DocType: Razorpay Settings,Razorpay Settings,Razorpay iestatījumi apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Pievienot vēl DocType: System Settings,Session Expiry Mobile,Session Derīguma Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nepareizs lietotājs vai parole apps/frappe/frappe/templates/includes/search_box.html,Search results for,Meklēšanas rezultāti @@ -1375,8 +1428,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Enerģijas punkta noteikums DocType: Communication,Delayed,Kavējas apps/frappe/frappe/config/settings.py,List of backups available for download,Saraksts backups pieejams lejupielādei +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Izmēģiniet jauno datu importēšanu apps/frappe/frappe/www/login.html,Sign up,Pierakstīties apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rinda {0}: nav atļauts atspējot Obligāti standarta laukiem +DocType: Webhook,Enable Security,Iespējot drošību apps/frappe/frappe/config/customization.py,Dashboards,Informācijas paneļi DocType: Test Runner,Output,izvade DocType: Milestone,Track Field,Trases lauks @@ -1384,6 +1439,7 @@ DocType: Notification,Set Property After Alert,Uzstādīt īpašuma Pēc Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Pievienot laukus uz veidlapām. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Pievienot pārskatu +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} jums piešķīra jaunu uzdevumu {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Fonta lielums (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,No Customize Form ir atļauts pielāgot tikai standarta DocTypes. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,8 +1451,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portāls Izvēlnes pozīcija apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Iestatiet filtrus DocType: Contact Us Settings,Email ID,E-pasta ID DocType: Energy Point Rule,Multiplier Field,Reizinātāja lauks +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,"Nevarēju izveidot pasūtījumu Razorpay. Lūdzu, sazinieties ar administratoru" DocType: Dashboard Chart,Time Interval,Laika intervāls DocType: Activity Log,Keep track of all update feeds,Sekojiet līdzi visām atjaunināšanas plūsmām +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} kopīgoja ar jums dokumentu {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Saraksts no resursiem, kas Klientam App būs pieejama pēc tam, kad lietotājs to atļauj. <br> piemēram, projekts" DocType: Translation,Translated Text,tulkots Teksta DocType: Contact Us Settings,Query Options,Vaicājuma opcijas @@ -1415,6 +1473,7 @@ DocType: DefaultValue,Key,Taustiņš DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ziņojums Visu dokumentu akcijas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importēšanas veidnei jābūt .csv, .xlsx vai .xls veidam" apps/frappe/frappe/www/update-password.html,New Password,New Password apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} trūkst apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Atvaino! Jūs nevarat izdzēst auto radīto komentārus @@ -1430,6 +1489,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Palaist DocType: Blog Post,Content (HTML),Saturs (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Iestatīšana par DocType: Personal Data Download Request,User Name,Lietotājvārds DocType: Workflow State,minus-sign,mīnus-zīme apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found @@ -1437,11 +1497,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0} nav atļaujas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksporta Custom atļaujas apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nav atrasts neviens vienums. DocType: Data Export,Fields Multicheck,Lauki Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Pabeigts DocType: Activity Log,Login,Lietotāja vārds DocType: Web Form,Payments,Maksājumi apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google diska integrācija. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} atcēla jūsu punktus šādā datumā: {1} {2} DocType: System Settings,Enable Scheduled Jobs,Ieslēgt Plānotais Darbs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Piezīmes: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Neaktīvs @@ -1466,6 +1526,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-past apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Atļauja kļūda apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nosaukums {0} nevar būt {1} DocType: User Permission,Applicable For,Piemērojami +DocType: Dashboard Chart,From Date,No Datums apps/frappe/frappe/core/doctype/version/version_view.html,Success,Veiksme apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesija ir beigusies apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesija ir beigusies @@ -1478,7 +1539,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Pan apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nav atļauts stāvoklī DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,bilde -apps/frappe/frappe/www/complete_signup.html,Complete,Pilnīgs +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Pilnīgs DocType: DocType,Image Field,Image Field DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: LDAP Settings,Default Role on Creation,Noklusētā loma radīšanā @@ -1486,6 +1547,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Nākamais Valsts DocType: User,Block Modules,Bloķēt moduļi DocType: Print Format,Custom CSS,Custom CSS +DocType: Energy Point Rule,Apply Only Once,Piesakies tikai vienu reizi apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Pievienot komentāru DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorēja: {0} uz {1} @@ -1497,6 +1559,7 @@ DocType: Email Account,Default Incoming,Default Ienākošais DocType: Workflow State,repeat,atkārtot DocType: Website Settings,Banner,Karogs apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vērtībai jābūt vienai no {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Atcelt visus dokumentus 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Dodieties uz {0} sarakstu apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Palīdzība uz Meklēt @@ -1505,6 +1568,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Reģistrēt apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Šī dokumenta automātiskā atkārtošana ir atspējota. DocType: DocType,Hide Copy,Slēpt Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Skaidrs visiem lomas +DocType: Server Script,Before Save,Pirms saglabāšanas apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ir unikāls apps/frappe/frappe/model/base_document.py,Row,Rinda apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC un e-pasta veidne" @@ -1515,7 +1579,6 @@ DocType: Chat Profile,Offline,Bezsaistē apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} ir veiksmīgi importēts DocType: User,API Key,API atslēga DocType: Email Account,Send unsubscribe message in email,Nosūtīt atrakstīties ziņu e-pastā -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Nosaukums apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname kas būs DOCTYPE šo saiti jomā. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,"Piešķirts, lai jūs un jums dokumentus." apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,To var arī nokopēt-ielīmēt @@ -1547,8 +1610,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Pievienojiet attēlu DocType: Workflow State,list-alt,saraksta alt apps/frappe/frappe/www/update-password.html,Password Updated,Paroles Atjaunots +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas apps/frappe/frappe/www/qrcode.html,Steps to verify your login,"Pasākumi, lai pārbaudītu jūsu pieteikšanos" apps/frappe/frappe/utils/password.py,Password not found,Parole nav atrasts +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Lapas garums DocType: Email Queue,Expose Recipients,Expose adresātus apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pievienot Lai ir obligāta ienākošo pastu @@ -1576,6 +1641,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistēma DocType: Web Form,Max Attachment Size (in MB),Max Pielikums Izmērs (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ir konts? Pieslēgties +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Drukāšanas iestatījumi ... DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0}. Rinda apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Lietotājs nav atļauts dzēst {0}: {1} @@ -1597,6 +1663,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ievadiet DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Dokumenta nosaukums apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligāts) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pirms {0} gada (-iem) DocType: Social Login Key,Social Login Provider,Sociālās pieslēgšanās nodrošinātājs apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Pievienot citu komentāru apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"Failā nav atrasta neviena datu. Lūdzu, vēlreiz pievienojiet jauno failu ar datiem." @@ -1611,11 +1678,12 @@ DocType: Workflow State,hand-down,roka uz leju apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Nav atrasts neviens lauks, ko varētu izmantot kā Kanban kolonnu. Izmantojiet Pielāgot veidlapu, lai pievienotu pielāgotā lauka veidu "Atlasīt"." DocType: Address,GST State,GST valsts apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Nevar iestatīt Atcelt bez Pieteikt +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Lietotājs ({0}) DocType: Website Theme,Theme,Tēma DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Novirzīšanu URI pienākums Auth kodeksa apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Atveriet Palīdzība DocType: DocType,Is Submittable,Vai Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Jauns pieminējums +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Jauns pieminējums apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Netika sinhronizēta jauna Google kontaktpersona. DocType: File,Uploaded To Google Drive,Augšupielādēts Google diskā apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,"Vērtība, lai veiktu pārbaudi jomā var būt vai nu 0, vai 1" @@ -1627,7 +1695,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Sarkans DocType: Workflow State,Tag,Birka -DocType: Custom Script,Script,Scenārijs +DocType: Report,Script,Scenārijs apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumentu nevar saglabāt. DocType: Energy Point Rule,Maximum Points,Maksimālais punktu skaits apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mani iestatījumi @@ -1657,9 +1725,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} novērtējuma punkti par {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Lomas var iestatīt lietotājiem no savas lietotāja lapā. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Pievienot komentāru +DocType: Dashboard Chart,Select Date Range,Atlasiet datumu diapazonu DocType: DocField,Mandatory,Saistošs apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modulis eksportēt +DocType: Scheduled Job Type,Monthly Long,Mēneša garumā apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Nav pamata atļaujas komplekts +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Nosūtiet e-pastu uz adresi {0}, lai to saistītu šeit" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Jēdziens Iesniegt, Atcelt, Grozīt" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Do @@ -1668,7 +1739,6 @@ DocType: Milestone Tracker,Track milestones for any document,Izsekojiet jebkura DocType: Social Login Key,Identity Details,Personas dati apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Darbplūsmas stāvokļa pāreja nav atļauta no {0} uz {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Rādīt informācijas paneli -apps/frappe/frappe/desk/form/assign_to.py,New Message,Jauns ziņojums DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,vaicājumu-pārskats DocType: Data Import Beta,Template Warnings,Brīdinājumi par veidni @@ -1679,18 +1749,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Saistīts ar apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Rediģēt automātiskās e-pasta ziņojumu iestatījumus DocType: Chat Room,Message Count,Ziņu skaits DocType: Workflow State,book,grāmata +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ir saistīts ar šādiem iesniegtajiem dokumentiem: {2} DocType: Communication,Read by Recipient,Lasītājs saņem saņēmēju DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Kļūda Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nav Atļaujas noteikti šo kritēriju. DocType: Auto Email Report,Auto Email Report,Auto Email pārskats +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Jauns dokuments koplietots apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Izdzēst komentāru? DocType: Address Template,This format is used if country specific format is not found,"Šis formāts tiek izmantots, ja valstij īpašs formāts nav atrasts" DocType: System Settings,Allow Login using Mobile Number,Atļaut Login izmantojot mobilā tālruņa numuru apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ja tas ir iespējots, lietotāji, kuri piesakās no ierobežotas IP adreses, netiks uzaicināti uz divu faktors autoritāti" +DocType: Server Script,After Cancel,Pēc atcelšanas DocType: Auto Repeat,Get Contacts,Saņemiet kontaktpersonas apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Amatiem iesniegts saskaņā ar {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Izlaižot kolonnu bez nosaukuma @@ -1701,6 +1774,7 @@ 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 +DocType: Notification Log,Mention,Piemini DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonti apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision jābūt no 1 līdz 6 @@ -1708,7 +1782,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,un apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Šis pārskats tika izveidots {0} DocType: Error Snapshot,Frames,Rāmji -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,uzdevums +DocType: Notification Log,Assignment,uzdevums DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Image Link DocType: Auto Email Report,Report Filters,ziņojums filtri @@ -1725,7 +1799,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nevar atjaunināt notikumu apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Pārbaudes kods ir nosūtīts uz jūsu reģistrēto e-pasta adresi. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Jūsu mērķis apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtrs ir jābūt 4 vērtības (DOCTYPE, fieldname, operators, vērtība): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nav norādīts vārdam {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Piemērot piešķiršanas noteikumu apps/frappe/frappe/utils/bot.py,show,parādīt apps/frappe/frappe/utils/data.py,Invalid field name {0},Nederīgs lauka nosaukums {0} @@ -1735,7 +1811,6 @@ DocType: Workflow State,text-height,teksta augstums DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Datu migrācijas plāna kartēšana apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Sākot Frappé ... DocType: Web Form Field,Max Length,Max garums -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,karte-marķieris apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Iesniegt Problēma @@ -1771,6 +1846,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,"Page trūkst, vai pārvie apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Atsauksmes DocType: DocType,Route,maršruts apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Maksājumu vārti iestatījumi +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ieguva {1} punktu par {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Ielādēt pievienotus attēlus no dokumenta DocType: Chat Room,Name,Nosaukums DocType: Contact Us Settings,Skype,Skype @@ -1781,7 +1857,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Atvērt sait apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tava valoda DocType: Dashboard Chart,Average,Vidēji apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Pievienot rindu -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printeris apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Vaicājums jābūt SELECT DocType: Auto Repeat,Completed,Pabeigts @@ -1841,6 +1916,7 @@ DocType: GCalendar Account,Next Sync Token,Nākamais sinhronizācijas lodziņš DocType: Energy Point Settings,Energy Point Settings,Enerģijas punkta iestatījumi DocType: Async Task,Succeeded,Izdevās apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligāti lauki vajadzīgas {0} +DocType: Onboarding Slide Field,Align,Izlīdzināt apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset atļaujas {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Lietotāji un atļaujas DocType: S3 Backup Settings,S3 Backup Settings,S3 dublēšanas iestatījumi @@ -1857,7 +1933,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Jauns drukas formāta nosaukums apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Noklikšķiniet uz saites zemāk, lai apstiprinātu pieprasījumu" DocType: Workflow State,align-left,saskaņot kreiso +DocType: Onboarding Slide,Action Settings,Darbības iestatījumi DocType: User,Defaults,Noklusējumi +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Salīdzinājumam izmantojiet> 5, <10 vai = 324. Diapazoniem izmantojiet 5:10 (vērtībām no 5 līdz 10)." DocType: Energy Point Log,Revert Of,Atgriezties apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Saplūst ar esošo DocType: User,Birth Date,Dzimšanas datums @@ -1912,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Uz DocType: Notification,Value Change,Vērtību maiņa DocType: Google Contacts,Authorize Google Contacts Access,Autorizēt piekļuvi Google kontaktpersonām apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rāda tikai ziņojuma ciparu laukus +apps/frappe/frappe/utils/data.py,1 week ago,Pirms 1 nedēļas DocType: Data Import Beta,Import Type,Importēšanas veids DocType: Access Log,HTML Page,HTML lapa DocType: Address,Subsidiary,Filiāle @@ -1921,7 +2000,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Ar iespiedveidlapām apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nederīga Outgoing Mail Server vai Port DocType: Custom DocPerm,Write,Rakstīt -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tikai administrators atļauts izveidot vaicājumu / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Atjaunināšana DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Lauks "vērtība" ir obligāts. Lūdzu, norādiet vērtību jāatjaunina" @@ -1931,6 +2009,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Uzaicināt DocType: Data Migration Run,Started,Sākusies apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Lietotājam {0} nav piekļuves šim dokumentam DocType: Data Migration Run,End Time,Beigu laiks +DocType: Dashboard Chart,Group By Based On,"Grupēt pēc, pamatojoties uz" apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Izvēlieties Pielikumus apps/frappe/frappe/model/naming.py, for {0},par {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Jums nav atļauts drukāt šo dokumentu @@ -1972,6 +2051,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Pārbaudīt DocType: Workflow Document State,Update Field,Atjaunināt ierakstu DocType: Chat Profile,Enable Chat,Iespējot tērzēšanu DocType: LDAP Settings,Base Distinguished Name (DN),Base Atšķirt vārds (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Atstājiet šo sarunu apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opcijas nav noteikts saite jomā {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Rinda / strādnieks @@ -2040,12 +2120,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Ienākt nav atļauts šajā laikā DocType: Data Migration Run,Current Mapping Action,Pašreizējā kartēšanas darbība DocType: Dashboard Chart Source,Source Name,Source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Ar Lietotāju nav saistīts neviens e-pasta konts. Lūdzu, pievienojiet kontu sadaļā Lietotājs> E-pasta iesūtne." DocType: Email Account,Email Sync Option,E-Sync variants apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rinda Nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Tiek piespiests DocType: Contact Us Settings,Introduction,Ievads +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Vajadzīga palīdzība? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Piespraust globāli apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Sekoja DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2055,7 +2135,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jau lieto DocType: User Email,Enable Outgoing,Ieslēgt Izejošie DocType: Address,Fax,Fakss apps/frappe/frappe/config/customization.py,Custom Tags,Custom birkas -apps/frappe/frappe/email/smtp.py,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 sadaļā Iestatīšana> E-pasts> E-pasta konts" DocType: Comment,Submitted,Iesniegtie DocType: Contact,Pulled from Google Contacts,Iegūts no Google kontaktpersonām apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Nederīgs pieprasījums @@ -2076,9 +2155,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Mājas / Te apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Piešķirt man DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Nospiediet taustiņu Alt, lai aktivizētu papildu saīsnes izvēlnē un sānjoslā" +DocType: Dashboard Chart,To Date,Līdz šim DocType: List View Setting,List View Setting,Saraksta skata iestatīšana apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Rādīt neizdevās darbavietas -DocType: Event,Details,Sīkāka informācija +DocType: Scheduled Job Log,Details,Sīkāka informācija DocType: Property Setter,DocType or Field,DOCTYPE vai Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Jūs atteicāt šo dokumentu apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primārā krāsa @@ -2087,7 +2167,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Šķiet publicējamā Key vai slepenā atslēga ir nepareizi !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Šķiet publicējamā Key vai slepenā atslēga ir nepareizi !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Ātrā Palīdzība nosakot atļaujas -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE piešķirt birkas apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Rādīt recidīvi apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-pasts ir pārvietota uz miskasti DocType: Report,Report Builder,Report Builder @@ -2103,6 +2182,7 @@ DocType: Workflow State,Upload,Augšupielāde DocType: User Permission,Advanced Control,Uzlabota kontrole DocType: System Settings,Date Format,Date Format apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nav Izdots +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Netika atrasta noklusējuma adreses veidne. Lūdzu, izveidojiet jaunu no Iestatīšana> Drukāšana un zīmolu veidošana> Adreses veidne." apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Pasākumi darbplūsmas (piemēram apstiprināt, Atcelt)." DocType: Data Import,Skip rows with errors,Izlaist rindas ar kļūdām DocType: Workflow State,flag,karogs @@ -2112,7 +2192,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Druk apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Pāriet uz lauku DocType: Contact Us Settings,Forward To Email Address,Pāriet uz e-pasta adresi DocType: Contact Phone,Is Primary Phone,Ir primārais tālrunis -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Nosūtiet e-pastu uz adresi {0}, lai to saistītu šeit." DocType: Auto Email Report,Weekdays,Nedēļas dienas apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ieraksti tiks eksportēti apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Nosaukums zonai jābūt derīgs fieldname @@ -2120,7 +2199,7 @@ DocType: Post Comment,Post Comment,publicēt komentāru apps/frappe/frappe/config/core.py,Documents,Dokumenti apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Darbības žurnāls DocType: Social Login Key,Custom Base URL,Pielāgots pamata URL -DocType: Email Flag Queue,Is Completed,ir pabeigta +DocType: Onboarding Slide,Is Completed,ir pabeigta apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Iegūstiet laukus apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Rediģēt profilu DocType: Kanban Board Column,Archived,Arhivētas @@ -2131,12 +2210,13 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šodien -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šodien +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,šodien +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,šodien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Iesniegt pēc importēšanas DocType: Error Log,Log of Scheduler Errors,Log plānotājs kļūdas DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Borta slaida palīdzības saite DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Iesniedzot apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Mātes vārds ir dokumenta nosaukums, uz kuru dati tiks pievienoti." @@ -2144,7 +2224,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,LIELAIS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Ievadiet mapes nosaukumu -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Netika atrasta noklusējuma adreses veidne. Lūdzu, izveidojiet jaunu no Iestatīšana> Drukāšana un zīmolu veidošana> Adreses veidne." apps/frappe/frappe/auth.py,Unknown User,Nezināmais lietotājs apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Izvēlieties loma DocType: Comment,Deleted,Svītrots @@ -2160,7 +2239,7 @@ DocType: Chat Token,Chat Token,Tērzēšanas zīme apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Izveidot diagrammu apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportēt -DocType: Web Page,Center,Centrs +DocType: Onboarding Slide Field,Center,Centrs DocType: Notification,Value To Be Set,"Vērtība, kas jānosaka" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Rediģēt {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Pirmā līmeņa @@ -2168,7 +2247,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Datubāzes nosaukums apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Atsvaidzināt Form DocType: DocField,Select,Atlasīt -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Skatīt pilnu žurnālu +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Skatīt pilnu žurnālu DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",Vienkāršs Python izteiksmes piemērs: status == 'Open' un ierakstiet == 'Bug' apps/frappe/frappe/utils/csvutils.py,File not attached,Fails nav pievienots apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Savienojums zaudēts. Dažas funkcijas var nedarboties. @@ -2200,6 +2279,7 @@ DocType: Web Page,HTML for header section. Optional,HTML virsraksta daļā. Faku apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,"Šī funkcija ir pavisam jauna, un joprojām eksperimentāls" apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimālās {0} rindas atļauts DocType: Dashboard Chart Link,Chart,Diagramma +DocType: Scheduled Job Type,Cron,Krons DocType: Email Unsubscribe,Global Unsubscribe,Global Atteikties apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Tas ir ļoti bieži parole. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Skats @@ -2216,6 +2296,7 @@ DocType: Data Migration Connector,Hostname,Resursdatora nosaukums DocType: Data Migration Mapping,Condition Detail,Nosacījuma detaļas apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Valūtā {0} minimālā darījuma summa ir {1} DocType: DocField,Print Hide,Print Paslēpt +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Lietotājam apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Ievadiet vērtība DocType: Workflow State,tint,tonis @@ -2283,6 +2364,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kods ieejas apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pievienot darīt DocType: Footer Item,Company,Kompānija apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Vidēji {0} +DocType: Scheduled Job Log,Scheduled,Plānotais DocType: User,Logout from all devices while changing Password,"Atteikties no visām ierīcēm, mainot paroli" apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Apstiprini Paroli apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Bija kļūdas @@ -2308,7 +2390,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Lietotāja atļauja jau pastāv apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartes {0} kartēšana laukā {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Skatīt {0} -DocType: User,Hourly,Stundu +DocType: Scheduled Job Type,Hourly,Stundu apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Reģistrēties OAuth Client App DocType: DocField,Fetch If Empty,"Ielādēt, ja tukšs" DocType: Data Migration Connector,Authentication Credentials,Authentication Credentials @@ -2319,10 +2401,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},"ieguvis {0}, izmantojot automātisko noteikumu {1}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} vai {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Jūs visi esat iestatīti! DocType: Workflow State,trash,atkritumi DocType: System Settings,Older backups will be automatically deleted,Vecāki backups tiks automātiski dzēsts apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nederīgs piekļuves atslēgas ID vai slepenās piekļuves atslēga. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Jūs zaudējāt dažus enerģijas punktus DocType: Post,Is Globally Pinned,Ir globāli piestiprināts apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Pēdējās aktivitātes DocType: Workflow Transition,Conditions,Nosacījumi @@ -2331,6 +2413,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Apstiprināt DocType: Event,Ends on,Beidzas DocType: Payment Gateway,Gateway,Vārti DocType: LDAP Settings,Path to Server Certificate,Ceļš uz servera sertifikātu +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript jūsu pārlūkprogrammā ir atspējots apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,"Nepietiek atļauju, lai redzētu saites" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,"Nepietiek atļauju, lai redzētu saites" apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adrese sadaļa ir obligāta. @@ -2350,7 +2433,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-rietumi-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ja tas ir atzīmēts, tiks importētas rindas ar derīgiem datiem, un nederīgās rindas tiks izmesti jaunā failā, lai jūs varētu importēt vēlāk." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentu var rediģēt tikai lietotājiem lomu -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Uzdevums {0}, kas jums piešķirts {1}, ir slēgta līdz {2}." DocType: Print Format,Show Line Breaks after Sections,Rādīt Line Breaks pēc sadaļas DocType: Communication,Read by Recipient On,Lasītājs saņem saņēmēju DocType: Blogger,Short Name,Saīsinātais nosaukums @@ -2383,6 +2465,7 @@ DocType: Translation,PR sent,PR nosūtīts DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tikai Sūtīt Ieraksti Atjaunots pēdējo X stundas DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tikai Sūtīt Ieraksti Atjaunots pēdējo X stundas DocType: Communication,Feedback,Atsauksmes +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Atjaunināts uz jaunu versiju 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Atveriet tulkojumu apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Šis e-pasts ir automātiski ģenerēts DocType: Workflow State,Icon will appear on the button,Ikona parādīsies uz pogas @@ -2421,6 +2504,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Lapa nav a DocType: DocField,Precision,Precizitāte DocType: Website Slideshow,Slideshow Items,Slideshow Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,"Centieties, lai izvairītos no atkārtotas vārdus un simbolus" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Paziņojumi ir atspējoti +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Vai tiešām vēlaties dzēst visas rindas? DocType: Workflow Action,Workflow State,Workflow Valsts apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rindas Pievienots apps/frappe/frappe/www/list.py,My Account,Mans konts @@ -2429,6 +2514,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dienas pēc apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ paplātes savienojums ir aktīvs! DocType: Contact Us Settings,Settings for Contact Us Page,Iestatījumi kontaktu lapu +DocType: Server Script,Script Type,Skripts Type DocType: Print Settings,Enable Print Server,Iespējot drukas serveri apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Pirms {0} nedēļas DocType: Email Account,Footer,Futbols @@ -2454,8 +2540,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Brīdinājums apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Tas var tikt izdrukāts uz vairākām lappusēm DocType: Data Migration Run,Percent Complete,Procenti pabeigts -DocType: Tag Category,Tag Category,Tag Kategorija -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Salīdzinājumam izmantojiet> 5, <10 vai = 324. Diapazoniem izmantojiet 5:10 (vērtībām no 5 līdz 10)." DocType: Google Calendar,Pull from Google Calendar,Izvilkt no Google kalendāra apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Palīdzēt DocType: User,Login Before,Login Pirms @@ -2465,17 +2549,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Slēpt nedēļas nogalēs apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automātiski ģenerē atkārtotus dokumentus. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Vai +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-zīme apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vērtība par {0} nevar būt saraksts DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kā tas valūtu var formatēt? Ja nav noteikts, izmantos sistēmas noklusējumus" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Iesniegt {0} dokumentus? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Kļūda, savienojot ar QZ teknes lietojumprogrammu ... <br><br> Lai izmantotu neapstrādātas drukāšanas funkciju, ir jābūt instalētai un palaistai lietojumprogrammai QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Noklikšķiniet šeit, lai lejupielādētu un instalētu QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Noklikšķiniet šeit, lai uzzinātu vairāk par neapstrādātu drukāšanu</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printera kartēšana apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Lūdzu, saglabājiet pirms pievienošanas." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vai vēlaties atcelt visus saistītos dokumentus? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Pievienots {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype nevar mainīt no {0} uz {1} rindā {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Lomu Atļaujas DocType: Help Article,Intermediate,Intermediate +apps/frappe/frappe/config/settings.py,Email / Notifications,E-pasts / paziņojumi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} nomainīja {1} uz {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,"Atcelt dokumentu, kas atjaunots kā melnraksts" DocType: Data Migration Run,Start Time,Sākuma laiks @@ -2492,6 +2580,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Va apps/frappe/frappe/email/smtp.py,Invalid recipient address,Nederīga saņēmējs adrese DocType: Workflow State,step-forward,soli uz priekšu DocType: System Settings,Allow Login After Fail,Atļaut ieeju pēc faila +DocType: DocType Link,DocType Link,DocType saite DocType: Role Permission for Page and Report,Set Role For,Uzstādīt loma DocType: GCalendar Account,The name that will appear in Google Calendar,"Nosaukums, kas tiks parādīts Google kalendārā" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Tieša telpa ar {0} jau pastāv. @@ -2509,6 +2598,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Izveidot DocType: Contact,Google Contacts,Google kontaktpersonas DocType: GCalendar Account,GCalendar Account,GCalendar konts DocType: Email Rule,Is Spam,Vai Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Pēdējais apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ziņojums {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Atvērt {0} DocType: Data Import Beta,Import Warnings,Importa brīdinājumi @@ -2520,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-zīme apps/frappe/frappe/config/settings.py,Deleted Documents,Dzēstas dokumenti apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formāts ir reģistrjutīgs apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop ikona jau eksistē +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Norādiet, kādos visos domēnos vajadzētu parādīties slaidiem. Ja nekas nav norādīts, slaids pēc noklusējuma tiek parādīts visos domēnos." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dublēt apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: {2}. Rindas {1} lauks nevar būt paslēpts un obligāts bez noklusējuma DocType: Newsletter,Create and Send Newsletters,Izveidot un nosūtīt jaunumus @@ -2530,6 +2621,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google kalendāra notikuma ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Parent"" apzīmē mātes tabulu, kurā šis rindu jāpievieno" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Pārskata punkti: +DocType: Scheduled Job Log,Scheduled Job Log,Plānotais darba žurnāls +DocType: Server Script,Before Delete,Pirms Dzēst apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Dalīta ar apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Pievienojiet failus / url un pievienojiet tabulā. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Ziņojums nav iestatīts @@ -2553,19 +2646,21 @@ DocType: About Us Settings,Settings for the About Us Page,Iestatījumi Par mums apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Svītru maksājumu vārteja iestatījumi apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Svītru maksājumu vārteja iestatījumi apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Drukāt nosūtīts printerim! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Enerģijas punkti +DocType: Notification Settings,Energy Points,Enerģijas punkti +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Laikam {0} jābūt formātā: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,piemēram pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Izveidot taustiņus apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tas jūsu datus neatgriezeniski noņems. DocType: DocType,View Settings,Skatīt iestatījumi +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Jauns paziņojums DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Pieprasījuma struktūra +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Trūkst kontroliera metodes get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Gaida pārbaudi DocType: Website Meta Tag,Website Meta Tag,Vietnes metatags DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ja nestandarta osta (piemēram, 587). Ja izmantojat Google Cloud, izmēģiniet 2525. portālu." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Noslēguma datuma noformēšana, jo tā nevar būt pagātne par publicētajām lapām." DocType: User,Send Me A Copy of Outgoing Emails,Nosūtīt man izejošo e-pasta ziņojumu kopiju -DocType: System Settings,Scheduler Last Event,Plānotājs Pēdējais notikums DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Pievienot Google Analytics ID: piem. UA-89XXX57-1. Lūdzu meklējiet palīdzību par Google Analytics, lai iegūtu vairāk informācijas." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Paroles nedrīkst būt lielāks par 100 rakstzīmēm DocType: OAuth Client,App Client ID,App Klienta ID @@ -2594,6 +2689,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nepieciešama apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} dalītu šo dokumentu ar {1} DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importa veidnē jābūt galvenei un vismaz vienai rindai. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google kalendārs ir konfigurēts. apps/frappe/frappe/config/website.py,"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 @@ -2603,6 +2699,7 @@ DocType: User Social Login,User Social Login,Lietotāja sociālais pieslēgums apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritizēja jūsu darbu {1} ar {2} punktu DocType: Contact,All,Viss DocType: Email Queue,Recipient,Saņēmējs +DocType: Webhook,Webhook Security,Webhook drošība DocType: Communication,Has Attachment,ir pielikums DocType: Address,Sales User,Sales User apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,"Velciet un Drop instruments, lai veidotu un pielāgot drukas formātus." @@ -2669,7 +2766,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrācijas ID lauks DocType: Dashboard Chart,Last Synced On,Pēdējoreiz sinhronizēts DocType: Comment,Comment Type,Komentārs Type DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritizēja jūsu darbu {1} {2} DocType: Assignment Rule,Users,Lietotāji DocType: Address,Odisha,Orisa DocType: Report,Report Type,Ziņojums Type @@ -2695,14 +2791,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Mājas lapa Slideshow pos apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Pašpārliecināšana nav atļauta DocType: GSuite Templates,Template ID,Veidnes ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Granta veida ( <code>{0}</code> ) un atbildes veida ( <code>{1}</code> ) kombinācija nav atļauta -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Jauna vēstule no {0} DocType: Portal Settings,Default Role at Time of Signup,Default loma laikā Signup DocType: DocType,Title Case,Case virsraksts apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Noklikšķiniet uz saites zemāk, lai lejupielādētu savus datus" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Iespējota e-pasta iesūtne lietotājam {0} DocType: Data Migration Run,Data Migration Run,Datu migrācijas palaišana DocType: Blog Post,Email Sent,Nosūtīts e-pasts -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Vecāki DocType: DocField,Ignore XSS Filter,Ignorēt XSS filtrs apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,noņemt apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox rezerves iestatījumi @@ -2757,6 +2851,7 @@ DocType: Async Task,Queued,Rindā DocType: Braintree Settings,Use Sandbox,Izmantot Sandbox apps/frappe/frappe/utils/goal.py,This month,Šis mēnesis apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Pirms saglabāšanas (iesniegtais dokuments) DocType: Custom DocPerm,Create,Izveidot apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Vairs nav neviena parādāmā vienuma apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Pāriet uz iepriekšējo ierakstu @@ -2814,6 +2909,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Pārvietot uz miskasti DocType: Web Form,Web Form Fields,Web Form Fields DocType: Data Import,Amended From,Grozīts No +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Pievienojiet palīdzības video saiti tikai gadījumā, ja lietotājam nav ne jausmas, ko aizpildīt slaidā." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},"Brīdinājums: Nevar atrast {0} jebkurā tabulas, kas saistīts ar {1}" DocType: S3 Backup Settings,eu-north-1,eu-ziemeļi-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Šis dokuments pašlaik rindā izpildei. Lūdzu mēģiniet vēlreiz @@ -2836,6 +2932,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Eksportēt no apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Izvērstā meklēšana apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Jums nav atļauts apskatīt biļetenu. +DocType: Dashboard Chart,Group By,Group By DocType: User,Interests,intereses apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Password Reset instrukcijas nosūtītas uz jūsu e-pastu DocType: Energy Point Rule,Allot Points To Assigned Users,Piešķirtie punkti piešķirtajiem lietotājiem @@ -2851,6 +2948,7 @@ DocType: Assignment Rule,Assignment Rule,Piešķiršanas noteikums apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Ieteicamais Lietotājvārds: {0} DocType: Assignment Rule Day,Day,diena apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduļi +DocType: DocField,Mandatory Depends On,Obligāti atkarīgs apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,maksājumu Success apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Nr {0} pasts DocType: OAuth Bearer Token,Revoked,atsaukta @@ -2858,6 +2956,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar un komentāri apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nav atļauts pievienot dokumentu {0}, lūdzu, ieslēdziet opciju Atļaut drukāšanu {0} drukāšanas iestatījumos" +apps/frappe/frappe/email/smtp.py,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 sadaļā Iestatīšana> E-pasts> E-pasta konts" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Skatiet dokumentu vietnē {0} DocType: Stripe Settings,Publishable Key,publicējamā Key DocType: Stripe Settings,Publishable Key,publicējamā Key @@ -2873,13 +2972,13 @@ DocType: Currency,Fraction,Daļa apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Pasākums sinhronizēts ar Google kalendāru. DocType: LDAP Settings,LDAP First Name Field,LDAP Vārds Field DocType: Contact,Middle Name,Otrais vārds +DocType: DocField,Property Depends On,Īpašums ir atkarīgs no tā DocType: Custom Field,Field Description,Lauka apraksts apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nosaukums nav uzdots ar Prasīt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-pastā apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Notiek {0} no {1}, {2} atjaunināšana" DocType: Auto Email Report,Filters Display,Filtri Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Lai izdarītu labojumu, jābūt klāt laukam “Grozīts_no”." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} novērtēja jūsu darbu {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Saglabājiet filtrus DocType: Address,Plant,Augs apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Atbildēt visiem @@ -2920,11 +3019,11 @@ DocType: Workflow State,folder-close,mapes-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Ziņojums: DocType: Print Settings,Print taxes with zero amount,Drukāt nodokļus ar nulles summu apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} nedrīkst pārdēvēt +DocType: Server Script,Before Insert,Pirms ievietošanas DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Adrese Line 2 DocType: Address,Reference,Atsauces apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Norīkoti -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Lūdzu, iestatiet noklusējuma e-pasta kontu no Iestatīšana> E-pasts> E-pasta konts" DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Datu migrācijas kartēšanas detaļas DocType: Data Import,Action,Darbība DocType: GSuite Settings,Script URL,Script URL @@ -2950,11 +3049,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,List View DocType: Email Account,Use TLS,Izmantot TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Invalid login vai parole +DocType: Scheduled Job Type,Weekly Long,Nedēļas garumā apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Download Template apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Pievienot pielāgotu javascript to formām. ,Role Permissions Manager,Lomu atļaujas vadītājs apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nosaukums par jauno drukas formātu apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Pārslēgt sānu joslu +DocType: Server Script,After Save (Submitted Document),Pēc saglabāšanas (iesniegtais dokuments) DocType: Data Migration Run,Pull Insert,Izvelciet Ievieto DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maksimālais pieļaujamais punktu skaits pēc punktu reizināšanas ar reizinātāja vērtību (piezīme: bez ierobežojuma atstājiet šo lauku tukšu vai iestatiet 0) @@ -2974,6 +3075,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nav instalēta apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Lejupielādēt ar datiem apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},mainītas vērtības {0} {1} +DocType: Server Script,Before Cancel,Pirms Atcelt DocType: Workflow State,hand-right,rokas pa labi DocType: Website Settings,Subdomain,Apakšdomēns DocType: S3 Backup Settings,Region,Apgabals @@ -3020,12 +3122,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Parole ir novecojusi DocType: S3 Backup Settings,us-east-1,mums-austrumiem-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posts ar {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Lai formāta kolonnām, dod kolonnu etiķetes vaicājuma." +DocType: Onboarding Slide,Slide Fields,Slaidu lauki DocType: Has Domain,Has Domain,ir domēnu DocType: User,Allowed In Mentions,Atļauts pieminēt apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Vai jums nav konta? Pierakstīties apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nevar noņemt ID lauku apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Nevar iestatīt Piešķirt Grozīt ja ne Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Abonētie dokumenti apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Lietotāja iestatījumi DocType: Report,Reference Report,Atsauces ziņojums DocType: Activity Log,Link DocType,link DOCTYPE @@ -3043,6 +3147,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizēt piekļuvi G apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Lapā jūs meklējat ir pazudis. Tas varētu būt tāpēc, ka tas ir pārvietots vai ir typo saitē." apps/frappe/frappe/www/404.html,Error Code: {0},Kļūdas kods: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Apraksts sarakstā lapu, vienkāršā tekstā, tikai pāris līnijas. (max 140 zīmes)" +DocType: Server Script,DocType Event,DocType pasākums apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ir obligāti aizpildāmie lauki DocType: Workflow,Allow Self Approval,Ļaut pašpārliecinātību DocType: Event,Event Category,Pasākumu kategorija @@ -3059,6 +3164,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tavs vārds apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Savienojuma veiksme DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Iekšējais slaidā tipa slaids jau pastāv. DocType: DocType,Default Sort Field,Noklusējuma kārtošanas lauks DocType: File,Is Folder,Vai Folder DocType: Document Follow,DocType,DOCTYPE @@ -3096,8 +3202,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vērtī DocType: Workflow State,arrow-up,arrow-up DocType: Dynamic Link,Link Document Type,Saites dokumenta tips apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Tabulā {0} jābūt vismaz vienai rindai +DocType: Server Script,Server Script,Servera skripts apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Lai konfigurētu automātisko atkārtošanu, no {0} iespējojiet “Atļaut automātisko atkārtošanu”." DocType: OAuth Bearer Token,Expires In,beidzas pēc +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Cik reizes jūs vēlaties atkārtot lauku kopu (piemēram: ja vēlaties, lai slaidā būtu 3 klienti, iestatiet šo lauku uz 3. Slaidā kā obligāts tiek parādīts tikai pirmais lauku komplekts)" DocType: DocField,Allow on Submit,Atļaut apstiprināšanas DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Izņēmums Type @@ -3107,6 +3215,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Galvenes apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Gaidāmie notikumi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Ievadiet vērtības App Access Key un App Secret Key +DocType: Email Account,Append Emails to Sent Folder,Pievienojiet e-pastus nosūtītajai mapei DocType: Web Form,Accept Payment,pieņemt Apmaksa apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Atlasiet saraksta vienumu apps/frappe/frappe/config/core.py,A log of request errors,Guļbaļķu Lūguma kļūdu @@ -3125,7 +3234,7 @@ DocType: Translation,Contributed,Ieguldīts apps/frappe/frappe/config/customization.py,Form Customization,Veidlapas pielāgošana apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nav aktīvo sesiju DocType: Web Form,Route to Success Link,Ceļš uz veiksmes saiti -DocType: Top Bar Item,Right,Tiesības +DocType: Onboarding Slide Field,Right,Tiesības apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nav gaidāmo notikumu DocType: User,User Type,Lietotājs Type DocType: Prepared Report,Ref Report DocType,Atsauces atskaite DocType @@ -3143,6 +3252,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Lūdzu mēģinie apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL jāsākas ar “http: //” vai “https: //” apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3. variants DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,To nevar atsaukt DocType: Workflow State,Edit,Rediģēt DocType: Website Settings,Chat Operators,Tērzēšanas operatori DocType: S3 Backup Settings,ca-central-1,ca-centrālā-1 @@ -3154,7 +3264,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Default par {0} ir iespēja -DocType: Tag Doc Category,Tag Doc Category,Tag Doc kategorija apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Pārskats ar vairāk nekā 10 slejām izskatās labāks ainavas režīmā. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nederīgs lauka nosaukums: {0} DocType: Milestone,Milestone,Milestone @@ -3163,7 +3272,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Doties uz {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-pasta vēstules ir izslēgts apps/frappe/frappe/config/integrations.py,Google Services,Google pakalpojumi apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,Pirms 1 nedēļas +DocType: Onboarding Slide,Slide Description,Slaida apraksts DocType: Communication,Error,Kļūda apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Vispirms iestatiet ziņu DocType: Auto Repeat,End Date,Beigu datums @@ -3184,10 +3293,12 @@ DocType: Footer Item,Group Label,marķējums DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti ir konfigurēti. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Tiks eksportēts 1 ieraksts +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Ar Lietotāju nav saistīts neviens e-pasta konts. Lūdzu, pievienojiet kontu sadaļā Lietotājs> E-pasta iesūtne." DocType: DocField,Report Hide,Ziņojums Paslēpt apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Koka skats nav pieejams {0} DocType: DocType,Restrict To Domain,Ierobežot Lai Domain DocType: Domain,Domain,Domēns +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,"Nederīgs faila URL. Lūdzu, sazinieties ar sistēmas administratoru." DocType: Custom Field,Label Help,Label Palīdzība DocType: Workflow State,star-empty,star-tukšs apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datumi bieži ir viegli uzminēt. @@ -3212,6 +3323,7 @@ DocType: Workflow State,hand-left,rokas pa kreisi DocType: Data Import,If you are updating/overwriting already created records.,Ja jūs atjaunojat / pārrakstāt jau izveidotos ierakstus. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Ir globāls DocType: Email Account,Use SSL,Izmantot SSL +DocType: Webhook,HOOK-.####,ĀĶIS -. #### DocType: Workflow State,play-circle,play-aplis apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentu nevarēja pareizi piešķirt apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Nederīga izteiksme "depends_on" @@ -3228,6 +3340,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Pēdējo reizi atsvaidzināts apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dokumenta tipam DocType: Workflow State,arrow-right,bultas pa labi +DocType: Server Script,API Method,API metode DocType: Workflow State,Workflow state represents the current state of a document.,Workflow stāvoklis atspoguļo pašreizējo stāvokli dokumenta. DocType: Letter Head,Letter Head Based On,"Vēstules galva, pamatojoties uz" apps/frappe/frappe/utils/oauth.py,Token is missing,Token trūkst @@ -3267,6 +3380,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compact Prece Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,novirzīt URL +DocType: Onboarding Slide Field,Placeholder,Vietne DocType: SMS Settings,Enter url parameter for receiver nos,Ievadiet url parametrs uztvērēja nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Vienmēr izmantojiet konta vārdu kā sūtītāja vārdu @@ -3276,7 +3390,6 @@ DocType: Workflow State,Home,Mājas DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,"Lietotājs var pieteikties, izmantojot e-pasta id vai lietotāja vārdu" DocType: Workflow State,question-sign,Jautājums-zīme -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ir atspējots apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Lauku "maršruts" ir obligāts Web skatījumiem apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Ievietot kolonnu pirms {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Lietotājam no šī lauka tiks piešķirti punkti @@ -3301,6 +3414,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ja īpašnieks DocType: Data Migration Mapping,Push,Spiediet apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Nometiet failus šeit DocType: OAuth Authorization Code,Expiration time,derīguma laiks +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Atveriet dokumentus DocType: Web Page,Website Sidebar,Mājas lapas Sidebar DocType: Web Form,Show Sidebar,Rādīt Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Jums ir jābūt pieteicies, lai piekļūtu šo {0}." @@ -3316,6 +3430,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globālie sa DocType: Desktop Icon,Page,Lappuse apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Neizdevās atrast {0} ir {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,"Vārdi un uzvārdi, ko paši ir viegli uzminēt." +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokuments pārdēvēts no {0} uz {1} apps/frappe/frappe/config/website.py,Knowledge Base,Zināšanu pamats DocType: Workflow State,briefcase,portfelis apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vērtību nevar mainīt {0} @@ -3352,6 +3467,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Pārslēgt režģa skatu apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pāriet uz nākamo ierakstu +DocType: System Settings,Time Format,Laika formāts apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nederīgi maksājumu vārteja pilnvaras DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Šis ir veidnes fails, kuru ģenerē tikai ar rindām, kurām ir kāda kļūda. Jums vajadzētu izmantot šo failu labošanai un importēšanai." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Uzstādīt tiesības dokumentu tipiem un lomām @@ -3395,12 +3511,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Atbildēt apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Raksti Desk (vietturus) DocType: DocField,Collapsible Depends On,Saliekams Atkarīgs On DocType: Print Style,Print Style Name,Drukas stila nosaukums +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,"Grupas lauks ir nepieciešams, lai izveidotu paneļa diagrammu" DocType: Print Settings,Allow page break inside tables,Atļaut lappuses pārtraukumu iekšpusē galdiem DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print Format Palīdzība apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} telpā jābūt vismaz vienam lietotājam. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Grāfs +DocType: Dashboard Chart,Group By Type,Grupēt pēc veida apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Jauns komentārs par {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},atjaunoja {0} kā {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ja atjaunināt, lūdzu, izvēlieties ""Pārrakstīt"" cits esošās rindas netiks dzēsti." @@ -3411,8 +3529,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Lietotāj DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datam {0} jābūt formātā: {1} DocType: About Us Settings,Org History Heading,Org Vēsture Pozīcija +DocType: Scheduled Job Type,Scheduled Job Type,Plānotais darba veids DocType: Print Settings,Allow Print for Cancelled,Ļauj Print Anulēts DocType: Communication,Integrations can use this field to set email delivery status,"Integrāciju var izmantot šo lauku, lai iestatītu e-pasta piegādes statusu" +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Jums nav atļauju atcelt visus saistītos dokumentus. DocType: Web Form,Web Page Link Text,Web lapa saites teksts DocType: Page,System Page,sistēmas lapa DocType: Page,System Page,sistēmas lapa @@ -3420,6 +3540,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Pielāgojumi <b>{0}</b> eksportam uz: <br> {1} DocType: Website Settings,Include Search in Top Bar,Iekļaut Meklēt Top Bar +DocType: Scheduled Job Type,Daily Long,Ikdienas garš DocType: GSuite Settings,Allow GSuite access,Atļaut GSuite piekļuve DocType: DocType,DESC,DESC DocType: DocType,Naming,Nosaucot @@ -3512,6 +3633,7 @@ DocType: Notification,Send days before or after the reference date,Nosūtīt die DocType: User,Allow user to login only after this hour (0-24),"Ļauj lietotājam, lai pieteiktos tikai pēc šīs stundas (0-24)" apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Piešķiriet pa vienam, pēc kārtas" DocType: Integration Request,Subscription Notification,Abonēšanas paziņojums +DocType: Customize Form Field, Allow in Quick Entry ,Atļaut ātrajā ierakstā apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,vai pievienojiet a DocType: Auto Repeat,Start Date,Sākuma datums apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Vērtība @@ -3526,6 +3648,7 @@ DocType: Google Drive,Backup Folder ID,Mapes dublējuma ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Ne izstrādātāja režīmu! Noteikts site_config.json vai veikt ""Custom"" DOCTYPE." DocType: Workflow State,globe,zemeslode DocType: System Settings,dd.mm.yyyy,dd.mm.gggg +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioritāte DocType: Email Queue,Unsubscribe Param,Atteikties Param DocType: DocType,Hide Sidebar and Menu,Slēpt sānjoslu un izvēlni @@ -3537,6 +3660,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Atļaut Import (izmantojot apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Peldēt DocType: Print Settings,Page Settings,Lapas iestatījumi +DocType: Notification Settings,Notification Settings,Paziņojumu iestatījumi apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saglabājot ... apps/frappe/frappe/www/update-password.html,Invalid Password,Nepareiza parole apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} ieraksts ir veiksmīgi importēts no {1}. @@ -3552,6 +3676,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Vēstules galvas attēls DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Krona formāts apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} pārskats DocType: SMS Settings,Use POST,Izmantojiet POST DocType: Communication,SMS,īsziņa @@ -3597,18 +3722,20 @@ DocType: Workflow,Allow approval for creator of the document,Atļaut apstiprinā apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Saglabāt ziņojumu DocType: Webhook,on_cancel,oncancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Servera darbība apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrators piekļūt {0} uz {1} izmantojot IP adrese {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Vecāka laukam jābūt derīgam lauka nosaukumam apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Neizdevās mainīt abonementu DocType: LDAP Settings,LDAP Group Field,LDAP grupas lauks +DocType: Notification Subscribed Document,Notification Subscribed Document,Paziņojumu abonētais dokuments apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Vienāds apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Nederīga CSV formāts -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Kļūda, savienojot ar QZ teknes lietojumprogrammu ... <br><br> Lai izmantotu neapstrādātas drukāšanas funkciju, ir jābūt instalētai un palaistai lietojumprogrammai QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Noklikšķiniet šeit, lai lejupielādētu un instalētu QZ tekni</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Noklikšķiniet šeit, lai uzzinātu vairāk par neapstrādātu drukāšanu</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Uzstādīt skaits Backups DocType: DocField,Do not allow user to change after set the first time,Neļauj lietotājam mainīt pēc noteikt pirmo reizi apps/frappe/frappe/utils/data.py,1 year ago,pirms 1 gads +DocType: DocType,Links Section,Saite apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Skatīt visu drukāšanas, lejupielādes un eksporta notikumu žurnālu" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mēnesis DocType: Contact,Contact,Kontakts @@ -3635,16 +3762,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,New Email DocType: Custom DocPerm,Export,Eksports apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Lai izmantotu Google kalendāru, iespējojiet {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Pievienojot arī statusa atkarības lauku {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Veiksmīgi atjaunināta {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ tekne neizdevās: DocType: Dropbox Settings,Dropbox Settings,Dropbox iestatījumi DocType: About Us Settings,More content for the bottom of the page.,Vairāk Satura lapas apakšā. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Šis dokuments ir atjaunots apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Veiksmīga Google diska dublēšana. +DocType: Webhook,Naming Series,Nosaucot Series DocType: Workflow,DocType on which this Workflow is applicable.,"DOCTYPE, kad šī Workflow ir piemērojams." DocType: User,Enabled,Enabled apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Neizdevās pabeigt iestatīšanu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Jauns {0}: {1} -DocType: Tag Category,Category Name,Kategorija Name +DocType: Blog Category,Category Name,Kategorija Name apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Vecākiem ir jāiegūst bērna tabulas dati apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importa Reģistrētiem DocType: Print Settings,PDF Settings,PDF iestatījumi @@ -3680,6 +3810,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendārs apps/frappe/frappe/client.py,No document found for given filters,Neviens dokuments atrasts dotajiem filtriem apps/frappe/frappe/config/website.py,A user who posts blogs.,"Lietotājs, kurš izliek emuārus." +DocType: DocType Action,DocType Action,Darbība DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Vēl {0} ar nosaukumu {1} eksistē, izvēlieties citu nosaukumu" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Mājas lapa Tēma Image @@ -3689,6 +3820,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nevar iel apps/frappe/frappe/config/integrations.py,Backup,rezerves apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,"Lai izveidotu informācijas paneļa diagrammu, ir nepieciešams dokumenta tips" DocType: DocField,Read Only,Tikai lasāms +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nevarēju izveidot pasūtījumu skuvekļa maksājumam apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Jauns izdevums DocType: Energy Point Log,Energy Point Log,Enerģijas punktu žurnāls DocType: Print Settings,Send Print as PDF,Nosūtīt Drukāt PDF formātā @@ -3714,16 +3846,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Aps apps/frappe/frappe/www/login.html,Or login with,Vai pieteikties ar DocType: Error Snapshot,Locals,Vietējie apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Paziņoti via {0} uz {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} pieminēja jūs komentāru {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Atlasīt grupu pēc ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} ir nepieciešams DocType: Integration Request,Integration Type,integrācija Type DocType: Newsletter,Send Attachements,Nosūtīt attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nav atrasts neviens filtrs apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google kontaktpersonu integrācija. DocType: Transaction Log,Transaction Log,Darījumu žurnāls apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistika balstās uz pagājušā mēneša veiktspēju (no {0} līdz {1}) DocType: Contact Us Settings,City,Pilsēta +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Slēpt kartītes visiem lietotājiem apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Pielāgošanas formā iespējojiet atļaut automātisku atkārtošanos doktipam {0} DocType: DocField,Perm Level,Ilgviļņi Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Skatīt dokumentu @@ -3735,6 +3868,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},"Global Search" nav atļauta tipa {0} rindā {1} DocType: Energy Point Log,Appreciation,Atzinība +DocType: Dashboard Chart,Number of Groups,Grupu skaits apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,View saraksts DocType: Workflow,Don't Override Status,Neignorē statuss apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Meklēt termiņš @@ -3776,7 +3910,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-ziemeļrietumi-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB datu dublējumu ierobežojums DocType: Custom DocPerm,Level,Līmenis -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Pēdējās 30 dienas DocType: Custom DocPerm,Report,Ziņojums apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Summa nedrīkst būt lielāka par 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Pievienots QZ paplātē! @@ -3793,6 +3926,7 @@ DocType: S3 Backup Settings,us-west-2,mums-rietumiem-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Atlasiet Bērnu tabula apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Aktivizēt primāro darbību apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Maiņa +DocType: Social Login Key,User ID Property,Lietotāja ID īpašums DocType: Email Domain,domain name,domēna vārds DocType: Contact Email,Contact Email,Kontaktpersonas e-pasta DocType: Kanban Board Column,Order,rīkojums @@ -3815,7 +3949,7 @@ DocType: Contact,Last Name,Uzvārds DocType: Event,Private,Privāts apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Kreisais DocType: Event,All Day,All Day apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Izskatās, ka kaut kas nav kārtībā ar šīs vietnes maksājumu vārteja konfigurāciju. Neviens maksājums ir veikts." DocType: GCalendar Settings,State,Valsts @@ -3847,7 +3981,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Vārtu iestatījumi apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Teksta dokumenta veida -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,palaist Testi apps/frappe/frappe/handler.py,Logged Out,Izlogojies apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,More ... DocType: System Settings,User can login using Email id or Mobile number,"Lietotājs var pieteikties, izmantojot e-pasta ID vai mobilā tālruņa numurs" @@ -3864,6 +3997,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Kopsavilkums DocType: Event,Event Participants,Pasākumu dalībnieki DocType: Auto Repeat,Frequency,frekvence +DocType: Onboarding Slide,Slide Order,Slaidu pasūtījums DocType: Custom Field,Insert After,Ievietot Pēc DocType: Event,Sync with Google Calendar,Sinhronizēt ar Google kalendāru DocType: Access Log,Report Name,Ziņojums Name @@ -3891,6 +4025,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max platums tipa Valūta ir 100px rindā {0} apps/frappe/frappe/config/website.py,Content web page.,Saturs mājas lapa. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Pievienot jauno lomu +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Apmeklējiet Web lapu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Jauns uzdevums DocType: Google Contacts,Last Sync On,Pēdējā sinhronizācija ir ieslēgta DocType: Deleted Document,Deleted Document,svītrots Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hmm! Kaut kas nogāja greizi @@ -3901,7 +4037,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Ainava apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klienta puses skriptu paplašinājumi Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Uzskaiti par šādiem doctypes tiks filtrēti -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Plānotājs nav aktīvs +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Plānotājs nav aktīvs DocType: Blog Settings,Blog Introduction,Blog Ievads DocType: Global Search Settings,Search Priorities,Meklēšanas prioritātes DocType: Address,Office,Birojs @@ -3911,13 +4047,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Informācijas paneļa diagram DocType: User,Email Settings,E-pasta iestatījumi apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Nomet šeit DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ja tā ir iespējota, lietotājs var pieteikties no jebkuras IP adreses, izmantojot divu faktoru autentifikāciju, to var iestatīt visiem lietotājiem arī sistēmas iestatījumos" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Printera iestatījumi ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Lūdzu, ievadiet paroli, lai turpinātu" apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Lūdzu, ievadiet paroli, lai turpinātu" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Es apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nav derīgs valsts apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Piemērot visiem dokumentu veidiem -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Enerģijas punkta atjaunināšana +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Enerģijas punkta atjaunināšana +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Veikt darbu tikai katru dienu, ja neaktīvs (dienas)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}'" DocType: Chat Message,Room Type,Istabas tips DocType: Data Import Beta,Import Log Preview,Importēt žurnāla priekšskatījumu @@ -3926,6 +4062,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-aplis DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP lietotāju izveidošana un kartēšana apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Jūs varat atrast lietas, jautājot "atrast apelsīnu klientiem"" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Šodienas notikumi apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Atvaino! Lietotājam ir jābūt pilnīga piekļuve savu ierakstu. ,Usage Info,Lietošana info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Rādīt īsinājumtaustiņus @@ -3942,6 +4079,7 @@ DocType: DocField,Unique,Unikāls apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} novērtēts {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Daļēja veiksme DocType: Email Account,Service,Pakalpojums +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs DocType: File,File Name,Faila nosaukums apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Neatrada {0} par {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3955,6 +4093,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Complete DocType: GCalendar Settings,Enable,Dot iespēju DocType: Google Maps Settings,Home Address,Mājas adrese apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Jūs varat augšupielādēt tikai līdz pat 5000 ierakstiem vienā piegājienā. (Var būt mazāk dažos gadījumos) +DocType: Report,"output in the form of `data = [columns, result]`","izvade formā “dati = [kolonnas, rezultāts]”" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Piemērojamie dokumentu veidi apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Iestatiet lietotāju piešķiršanas noteikumus. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nepietiekams Atļauja {0} @@ -3972,7 +4111,6 @@ DocType: Communication,To and CC,Kam un CC DocType: SMS Settings,Static Parameters,Statiskie Parametri DocType: Chat Message,Room,istaba apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},"jāatjaunina, lai {0}" -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,"Fona darbi nedarbojas. Lūdzu, sazinieties ar administratoru" DocType: Portal Settings,Custom Menu Items,Custom Menu Items apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Visiem Attēliem, kas pievienoti tīmekļa vietnes slaidrādi, jābūt publiski pieejamiem" DocType: Workflow State,chevron-right,Chevron labajā @@ -3987,11 +4125,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Atlasītas {0} vērtības DocType: DocType,Allow Auto Repeat,Atļaut automātisko atkārtošanos apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,"Nav vērtību, ko parādīt" +DocType: DocType,URL for documentation or help,Dokumentācijas vai palīdzības vietrādis URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-pasta veidne apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Veiksmīgi atjaunināts {0} ieraksts. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},"Lietotājam {0} nav piekļuves doctype, izmantojot dokumenta {1} lomu atļauju" apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Gan login un paroli, kas nepieciešama" +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Ļaujiet \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Lūdzu, atsvaidzināt, lai saņemtu jaunāko dokumentu." DocType: User,Security Settings,Drošības iestatījumi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Pievienot kolonu @@ -4001,6 +4141,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},"Lūdzu, pievienojiet {0}: {1}" DocType: Web Page,Set Meta Tags,Iestatīt meta tagus +DocType: Email Account,Use SSL for Outgoing,Izejošajam izmantojiet SSL 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: S3 Backup Settings,Backup Limit,Rezerves ierobežojums DocType: Dashboard Chart,Line,Līnija @@ -4033,4 +4174,3 @@ DocType: DocField,Ignore User Permissions,Ignorēt lietotāju atļauju apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Saglabāts veiksmīgi apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Lūdzu, jautājiet savam administratoram verificētu pierakstīšanās-up" DocType: Domain Settings,Active Domains,Aktīvie domēni -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Rādīt Log diff --git a/frappe/translations/mk.csv b/frappe/translations/mk.csv index 8debc7294f..194e42688c 100644 --- a/frappe/translations/mk.csv +++ b/frappe/translations/mk.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Ве молиме одберете Големина на поле. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Се вчитува датотека за увоз ... DocType: Assignment Rule,Last User,Последен корисник -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е назначен за вас од {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Зачувана е стандардната сесија apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Вчитај ја датотеката DocType: Email Queue,Email Queue records.,Е-Задача записи. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} дрвото DocType: User,User Emails,кориснички пораки DocType: User,Username,Корисничко име apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Увези поштенски код +DocType: Scheduled Job Type,Create Log,Креирај лог apps/frappe/frappe/model/base_document.py,Value too big,Вредноста е премногу голема DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Испратена Тест сценарио @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Месечен DocType: Address,Uttarakhand,Утаранчал DocType: Email Account,Enable Incoming,Овозможи Дојдовни apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасност -DocType: Address,Email Address,E-mail адреса +apps/frappe/frappe/www/login.py,Email Address,E-mail адреса DocType: Workflow State,th-large,та-големи DocType: Communication,Unread Notification Sent,Непрочитани известување испратено apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Извоз не се дозволени. Ви треба {0} функции за извоз. @@ -83,10 +83,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От DocType: DocType,Is Published Field,Објавено е поле DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings DocType: Email Group,Email Group,Е-група +apps/frappe/frappe/__init__.py,Only for {},Само за {} DocType: Event,Pulled from Google Calendar,Извлечено од Календарот на Гугл DocType: Note,Seen By,Видено од apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Додади Повеќе -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Добивте енергетски поени apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Не е валидна слика за корисникот. DocType: Energy Point Log,Reverted,Вратен DocType: Success Action,First Success Message,Прва порака за успех @@ -94,6 +94,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не како apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неточна вредност: {0} мора да биде {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Сменете го полето својства (Скриј, само за читање, дозвола и сл)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Цени +DocType: Notification Settings,Document Share,Споделување на документи DocType: Workflow State,lock,заклучување apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Прилагодувања за страница за контакт. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Администратор најавен @@ -107,6 +108,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Доколку е овозможено, документот е обележан како што се гледа, за прв пат некој корисник да го отвори" DocType: Auto Repeat,Repeat on Day,Повторете го денот DocType: DocField,Color,Боја +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Означи се како Прочитано DocType: Data Migration Run,Log,Пријавете се DocType: Workflow State,indent-right,алинеја-десничарската DocType: Has Role,Has Role,има улога @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Покажи пребарување DocType: DocType,Default Print Format,Стандардно печатење формат DocType: Workflow State,Tags,Тагови +DocType: Onboarding Slide,Slide Type,Тип на слајд apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Никој: Крај на Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поле не може да се постави како единствен во {1}, како што постојат не-уникатен постоечките вредности" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Видови документ @@ -134,7 +137,6 @@ DocType: Language,Guest,Гостин DocType: DocType,Title Field,Наслов на поле DocType: Error Log,Error Log,грешка Пријавете apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Невалидна URL-то -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Последните 7 дена apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Се повторува како "abcabcabc" се само малку потешко да се погоди од "ABC" DocType: Notification,Channel,Канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ако мислите дека ова е неовластено, ве молиме да ја смени лозинката Администратор." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,Клиентот apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Изберете колона apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Оваа форма е изменета откако ќе го вчита DocType: Address,Himachal Pradesh,Химачал Прадеш +DocType: Notification Log,Notification Log,Пријавување на известувања DocType: System Settings,"If not set, the currency precision will depend on number format","Ако не е поставено, на валута точност ќе зависи од бројот формат" DocType: System Settings,"If not set, the currency precision will depend on number format","Ако не е поставено, на валута точност ќе зависи од бројот формат" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Отворете Awesomebar @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,В apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Испрати DocType: Workflow Action Master,Workflow Action Name,Име акција работното apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE не можат да се спојат -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не е спакувана датотека DocType: Global Search DocType,Global Search DocType,Глобален документ за пребарување DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Е-мејл испратен? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Вклучи табела apps/frappe/frappe/desk/form/save.py,Did not cancel,Не се откажете DocType: Social Login Key,Client Information,Информации за клиентот +DocType: Energy Point Rule,Apply this rule only once per document,Применете го ова правило само еднаш на документ DocType: Workflow State,plus,плус +DocType: DocField,Read Only Depends On,Прочитајте само зависи од apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Најавени како гостин или администратор DocType: Email Account,UNSEEN,невидена apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Менаџер на датотеки @@ -199,9 +204,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Причината 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Нема активност +DocType: Server Script,Script Manager,Управувач со скрипти +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Нема активност apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Апликации од трети лица apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Првиот корисник ќе стане менаџер на систем (можете да го промените ова подоцна). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Нема настани денес apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Вие не можете да дадете поени за преглед на себе apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType мора да биде поднесено за избраниот Док-настан DocType: Workflow State,circle-arrow-up,круг стрелка нагоре @@ -246,8 +253,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Позадина за разговор apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Означи како прочитано apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ажурирање {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Лизгачки плоча за возење <b>{0}</b> со ист редослед за лизгање веќе постои apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Оневозможи Извештај DocType: Translation,Contributed Translation Doctype Name,Придонесено име на докторски превод +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Персонализирајте форма DocType: PayPal Settings,Redirect To,За пренасочување DocType: Data Migration Mapping,Pull,Повлечете DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Го вклучите Javascript-формат: frappe.query_reports ['REPORTNAME'] = {} @@ -261,6 +270,7 @@ DocType: DocShare,Internal record of document shares,Внатрешна евид DocType: Energy Point Settings,Review Levels,Нивоа за прегледување DocType: Workflow State,Comment,Коментар DocType: Data Migration Plan,Postprocess Method,Постпроцес метод +DocType: DocType Action,Action Type,Вид на акција apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сликај DocType: Assignment Rule,Round Robin,Тркалезна Робин apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Можете да ја смените поднесените документи од страна на нивното откажување, а потоа, за изменување и дополнување нив." @@ -273,6 +283,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Зачувај како DocType: Comment,Seen,Види apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Покажи повеќе детали +DocType: Server Script,Before Submit,Пред да се испрати DocType: System Settings,Run scheduled jobs only if checked,Стартувај закажани работни места само ако проверени apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,Ќе се прикаже само ако се овозможени насловите apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Архива @@ -285,10 +296,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox пристап Клучни apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Погрешно fieldname <b>{0}</b> во add_fetch конфигурација на сопствени скрипти apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Изберете контакти на Google на кои контакт треба да се синхронизираат. DocType: Web Page,Main Section (HTML),Главен дел (HTML) +DocType: Scheduled Job Type,Annual,Годишен DocType: Workflow State,headphones,слушалки apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Потребна е лозинка или изберете Чекам лозинка DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,"на пр replies@yourcomany.com. Сите одговори, ќе се дојде до овој сандаче." DocType: Slack Webhook URL,Slack Webhook URL,URL на слаба веб-страница +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Го одредува редоследот на слајдот во волшебникот. Ако слајдот не се прикажува, приоритетот треба да се постави на 0." DocType: Data Migration Run,Current Mapping,Тековно мапирање apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Валидна е-мејл и името потребни apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Направете ги сите прилози приватни @@ -311,6 +324,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Не е apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Вредност DocType: Workflow,Transition Rules,Правила транзиција apps/frappe/frappe/core/doctype/report/report.js,Example:,Пример: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ограничувања DocType: Workflow,Defines workflow states and rules for a document.,Дефинира работното држави и правила за документ. DocType: Workflow State,Filter,Филтер apps/frappe/frappe/database/schema.py,Fieldname {0} cannot have special characters like {1},Fieldname {0} не може да има специјални карактери како {1} @@ -320,6 +334,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Работа apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} одјавени: {1} DocType: Address,West Bengal,Западен Бенгал +DocType: Onboarding Slide,Information,Информации apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Не може да се постави Assign Прати ако не Submittable DocType: Transaction Log,Row Index,Индекс на редови DocType: Social Login Key,Facebook,Фејсбук @@ -337,7 +352,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"не мо DocType: Web Form,Button Help,копче за помош DocType: Kanban Board Column,purple,виолетова DocType: About Us Settings,Team Members,Членови на тимот +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Runе извршуваат закажани работни места само еднаш дневно за неактивни страници. Стандардно 4 дена ако е поставено на 0. DocType: Assignment Rule,System Manager,Систем за менаџер +DocType: Scheduled Job Log,Scheduled Job,Закажана работа DocType: Custom DocPerm,Permissions,Дозволи apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Слак Webhooks за внатрешна интеграција DocType: Dropbox Settings,Allow Dropbox Access,Им овозможи на Dropbox пристап @@ -391,6 +408,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Ск DocType: Email Flag Queue,Email Flag Queue,Е-пошта Знаме редицата DocType: Access Log,Columns / Fields,Колумни / полиња apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Стилови за формати за печатење +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Потребно е полето за агрегатна функција за да се создаде табела со табла apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,не може да се идентификува отворена {0}. Обиди се со нешто друго. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,е поднесена вашите информации apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Корисник {0} не може да се избришат @@ -407,11 +425,12 @@ DocType: Property Setter,Field Name,Име на поле DocType: Assignment Rule,Assign To Users,Доделете им на корисниците apps/frappe/frappe/public/js/frappe/utils/utils.js,or,или apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Име на модул ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Продолжи +DocType: Onboarding Slide,Continue,Продолжи apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Интеграција на Google е оневозможена. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,сертификат apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Се проверува ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Вашата задача на {0} {1} е отстранета apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Првата колона податоци мора да биде празна. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Прикажи ги сите верзии apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Преглед на коментар @@ -420,12 +439,14 @@ DocType: Energy Point Log,Review,Преглед DocType: User,Restrict IP,Ограничи IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,семафорот apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Не може да се испраќаат електронски пораки во овој момент +DocType: Notification Log,Email Content,Содржина на е-пошта apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Пребарај или да напишете командата DocType: Activity Log,Timeline Name,Хронологија Име apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Само еден {0} може да се постави како примарен. DocType: Email Account,e.g. smtp.gmail.com,на пр smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Додади ново правило DocType: Contact,Sales Master Manager,Продажбата мајстор менаџер +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Треба да овозможите JavaScript за вашата апликација да работи. DocType: User Permission,For Value,За вредност DocType: Event,Google Calendar ID,ИД на Google Calendar apps/frappe/frappe/www/complete_signup.html,One Last Step,Еден последниот чекор @@ -441,6 +462,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Полето за средно и apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Увезување {0} од {1} DocType: GCalendar Account,Allow GCalendar Access,Дозволи пристап за GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} е задолжително поле +DocType: DocType,Documentation Link,Врска за документација apps/frappe/frappe/templates/includes/login/login.js,Login token required,Потребен е токен за најавување apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Месечен ранг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изберете повеќе елементи со список @@ -462,6 +484,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL датотека DocType: Version,Table HTML,Табела HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Додади претплатници +DocType: Notification Log,Energy Point,Енергетска точка apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Престојни настани за денес DocType: Google Calendar,Push to Google Calendar,Притисни до Календарот на Google DocType: Notification Recipient,Email By Document Field,E-mail на документ поле @@ -476,12 +499,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Далеку DocType: Currency,Fraction Units,Дел единици apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} од {1} до {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Означи како направено DocType: Chat Message,Type,Тип DocType: Google Settings,OAuth Client ID,ИД на клиент на OAuth DocType: Auto Repeat,Subject,Предмет apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Назад кон Биро DocType: Web Form,Amount Based On Field,Износот Врз основа на полето +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} не е проследена со верзии. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Корисникот е задолжително за Сподели DocType: DocField,Hidden,Скриени DocType: Web Form,Allow Incomplete Forms,Дозволете Некомплетните форми @@ -504,6 +527,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Ве молиме проверете ја вашата е-мејл за верификација apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Пати не може да биде на крајот на форма DocType: Communication,Bounced,Bounced +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,од DocType: Deleted Document,Deleted Name,избришани Име apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Систем и Интернет корисници DocType: Workflow Document State,Doc Status,Doc Статус @@ -514,6 +538,7 @@ DocType: Language,Language Code,јазик законик DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Забелешка: Стандардно се испраќаат пораки за неуспешни копии. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Додади филтер apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},СМС испратен до следните броеви: {0} +DocType: Notification Settings,Assignments,Доделување apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Започни разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Секогаш додадете "Предлог" Заглавие за печатење нацрт документи @@ -522,6 +547,7 @@ DocType: Data Migration Run,Current Mapping Start,Тековно мапирањ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Е-пошта е означен како спам DocType: Comment,Website Manager,Веб-страница менаџер apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Откачувањето на датотеки е исклучено. Обидете се повторно. +DocType: Data Import Beta,Show Failed Logs,Покажете неуспешни логови apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Преводи apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Што го избравте Предлог или Откажано документи apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документот {0} е поставен да напише {1} за {2} @@ -529,7 +555,9 @@ apps/frappe/frappe/model/document.py,Document Queued,документ редиц DocType: GSuite Templates,Destination ID,код на проект DocType: Desktop Icon,List,Листа DocType: Activity Log,Link Name,линк Име +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Немаш \ DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY +DocType: Onboarding Slide,Onboarding Slide,Лизгачки плоча apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Невалидна лозинка: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Невалидна лозинка: DocType: Print Settings,Send document web view link in email,Испрати документи на веб-приказ линк во е-мејл @@ -591,6 +619,7 @@ DocType: Kanban Board Column,darkgrey,темно сива apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Успешна: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,не може да се промени детали корисникот во демо. Ве молиме регистрирате за нова сметка на https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Капка +DocType: Dashboard Chart,Aggregate Function Based On,Агрегатна функција заснована на apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Ве молиме да се дуплираат ова да се прават промени apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Притиснете Enter за да зачувате apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF генерација не успеа поради скршена слика линкови @@ -604,7 +633,9 @@ DocType: Notification,Days Before,Неколку дена пред apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Дневните настани треба да завршат во ист ден. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Уредување... DocType: Workflow State,volume-down,волумен надолу +DocType: Onboarding Slide,Help Links,Линкови за помош apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Не е дозволен пристап од оваа IP адреса +DocType: Notification Settings,Enable Email Notifications,Овозможете ги известувањата за е-пошта apps/frappe/frappe/desk/reportview.py,No Tags,Не Тагови DocType: Email Account,Send Notification to,Испрати известување до DocType: DocField,Collapsible,Склопувачки @@ -633,6 +664,7 @@ DocType: Google Drive,Last Backup On,Последната резервна ко DocType: Customize Form Field,Customize Form Field,Персонализација на образец Теренски DocType: Energy Point Rule,For Document Event,За настан на документи DocType: Website Settings,Chat Room Name,Име на разговор +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Непроменет DocType: OAuth Client,Grant Type,Тип на грант apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Проверете кои документи се чита од страна на корисникот DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -640,6 +672,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ко DocType: Auto Repeat,Quarterly,Квартален apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","E-mail на домен не е конфигурирана за оваа сметка, се создаде една?" DocType: User,Reset Password Key,Ресетирање на Лозинка Клучни +DocType: Dashboard Chart,All Time,Цело време apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Статус на нелегален документ за {0} DocType: Email Account,Enable Auto Reply,Овозможи Авто Одговор apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не се гледа @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Ис DocType: Email Account,Notify if unreplied,Извести ако unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Скенирајте го QR кодот и внесете го добиениот код. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Овозможи градиенти +DocType: Scheduled Job Type,Hourly Long,Часовно долго DocType: System Settings,Minimum Password Score,Минимална Лозинка рејтинг DocType: System Settings,Minimum Password Score,Минимална Лозинка рејтинг DocType: DocType,Fields,Полињата @@ -664,6 +698,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in r DocType: Print Format,Default Print Language,Стандарден јазик за печатење apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предци на apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корен {0} не може да биде избришан +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Нема неуспешни логови apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Сé уште нема коментари apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Те молам подесете СМС порака, пред да ја поставите како метод за автентикација, преку SMS Settings" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Двете DOCTYPE и Име бара @@ -687,6 +722,7 @@ DocType: Website Settings,Footer Items,Footer Теми apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Мени DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Секојдневно +DocType: Onboarding Slide,Max Count,Макс грофот apps/frappe/frappe/config/users_and_permissions.py,User Roles,Кориснички улоги DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Сопственост сетер надминува стандарден DOCTYPE или имот поле apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не може да се ажурира: Неправилна / истечен линк. @@ -705,6 +741,7 @@ DocType: Footer Item,"target = ""_blank""",целни = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,домаќинот DocType: Data Import Beta,Import File,Датотека за увоз +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Грешка во образецот apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Колона <b>{0}</b> веќе постои. DocType: ToDo,High,Високо apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Нов настан @@ -720,6 +757,7 @@ DocType: Web Form Field,Show in filter,Прикажи во филтер DocType: Address,Daman and Diu,Даман и Диу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Проект DocType: Address,Personal,Лични +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Поставки за сурово печатење ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Погледнете на https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region за детали. apps/frappe/frappe/config/settings.py,Bulk Rename,Преименам DocType: Email Queue,Show as cc,Прикажи како cc @@ -729,6 +767,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Земете вид DocType: Contact Us Settings,Introductory information for the Contact Us Page,Воведни информации за страница за контакт DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,палците надолу +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Откажување на документи DocType: User,Send Notifications for Email threads,Испратете известувања за теми за е-пошта apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,проф apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не во режим на програмери @@ -750,11 +789,13 @@ DocType: Energy Point Rule,User Field,Корисничко поле DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Притиснете Бришење apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} веќе отпишавте за {1} {2} +DocType: Scheduled Job Type,Stopped,Запрен apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Не се отстранат apps/frappe/frappe/desk/like.py,Liked,Допадна apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Испрати Сега apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандардна DOCTYPE не можат да имаат стандарден формат печатење, користете Персонализација Форма" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандардна DOCTYPE не можат да имаат стандарден формат печатење, користете Персонализација Форма" +DocType: Server Script,Allow Guest,Дозволи гостин DocType: Report,Query,Пребарување DocType: Customize Form,Sort Order,Подредување apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"Во List View" не се дозволени за видот {0} во ред {1} @@ -776,10 +817,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Два фактори за проверка на автентичност apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Прво поставете го името и зачувајте го рекордот. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 рекорди +DocType: DocType Link,Link Fieldname,Име на полето за врска apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Муабет со {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Одјава DocType: View Log,Reference Name,Референца apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Променете го корисникот +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Прво apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ажурирај преводи DocType: Error Snapshot,Exception,Исклучок DocType: Email Account,Use IMAP,Користење на IMAP @@ -794,6 +837,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Правила дефинирање на транзицијата на државата во тек на работа. DocType: File,Folder,Папка DocType: Website Route Meta,Website Route Meta,Интернет-страница за рута +DocType: Onboarding Slide Field,Onboarding Slide Field,Полето за слајд на картата DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Билтен менаџер apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Опција 1 @@ -819,7 +863,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Н apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Конфигурирај ги графиконите DocType: User,Last IP,Последните IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Ве молиме додадете тема на вашата е-пошта -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Нов документ {0} е споделен со вас {1}. DocType: Data Migration Connector,Data Migration Connector,Конектор за миграција на податоци apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} вратен {1} DocType: Email Account,Track Email Status,Следете статус на е-пошта @@ -871,6 +914,7 @@ DocType: Email Account,Default Outgoing,Стандардно заминувањ DocType: Workflow State,play,игра apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Кликнете на линкот подолу за да се заврши вашата регистрација и поставите нова лозинка apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Не додадете +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} се стекна со {1} поени за {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Нема е-мејл сметки Доделени DocType: S3 Backup Settings,eu-west-2,еу-запад-2 DocType: Contact Us Settings,Contact Us Settings,Контактирајте со нас Settings @@ -879,6 +923,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Преб DocType: Workflow State,text-width,текст ширина apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Максималната граница за овој запис Прилог постигне. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Пребарувајте по име или додаток +DocType: Onboarding Slide,Slide Title,Наслов на слајд DocType: Notification,View Properties (via Customize Form),За преглед на карактеристиките (преку Персонализација форма) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Кликнете на датотека за да ја изберете. DocType: Note Seen By,Note Seen By,Забелешка гледа од страна на @@ -905,13 +950,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Удели URL DocType: System Settings,Allow Consecutive Login Attempts ,Овозможи последователни обиди за најавување apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Се појави грешка за време на процесот на плаќање. Ве молиме контактирајте со нас. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ако Slide Type е Креирај или Поставки, треба да има метод 'create_onboarding_docs' во датотеката {ref_doctype} .py што ќе се изврши по завршувањето на слајдот." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Пред {0} денови DocType: Email Account,Awaiting Password,Чекам на Лозинка DocType: Address,Address Line 1,Адреса Линија 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Не потомци на DocType: Contact,Company Name,Име на компанијата DocType: Custom DocPerm,Role,Улога -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Поставувања ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,до вашиот прелистувач apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Рекордер @@ -970,6 +1015,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Следете дали вашата е-пошта е отворена од примачот. <br> Забелешка: Ако праќате повеќекратни примачи, дури и ако 1 примач ја чита е-поштата, ќе се смета за "Отворено"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Како исчезнати вредности Задолжителни apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Дозволи пристап до контакти со Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ограничено DocType: Data Migration Connector,Frappe,фрапе apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Означи како непрочитано DocType: Activity Log,Operation,Работа @@ -1023,6 +1069,7 @@ DocType: Web Form,Allow Print,Дозволи за печатење DocType: Communication,Clicked,Кликнато apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Неуспешно apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нема дозвола за '{0} {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ве молиме поставете ја стандардната сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Треба да се испрати DocType: DocType,Track Seen,песна Гледано DocType: Dropbox Settings,File Backup,Датотека резервна копија @@ -1031,12 +1078,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Нема {0} apps/frappe/frappe/config/customization.py,Add custom forms.,Додадете сопствени форми. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} на {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,поднесено овој документ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Системот обезбедува многу пред-дефинирани улоги. Можете да додавате нови улоги за да го поставите пофини дозволи. DocType: Communication,CC,CC DocType: Country,Geo,Гео DocType: Data Migration Run,Trigger Name,Име на активирање -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Домени +DocType: Onboarding Slide,Domains,Домени DocType: Blog Category,Blog Category,Категорија Блог apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Не може да карта, бидејќи следната состојба не:" DocType: Role Permission for Page and Report,Roles HTML,Улоги HTML @@ -1077,7 +1123,6 @@ DocType: Assignment Rule Day,Saturday,Сабота DocType: User,Represents a User in the system.,Претставува пристап во системот. DocType: List View Setting,Disable Auto Refresh,Оневозможи автоматско освежување DocType: Comment,Label,Етикета -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Задачата {0}, која сте ја одредиле {1}, е затворена." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Ве молиме затворете го овој прозорец DocType: Print Format,Print Format Type,Печати Тип формат DocType: Newsletter,A Lead with this Email Address should exist,Водечки со оваа адреса треба да постои @@ -1093,6 +1138,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Settings SMTP за по apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,изберете еден DocType: Data Export,Filter List,Листа на филтри DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,НВ: мм DocType: Email Account,Auto Reply Message,Авто Одговор порака DocType: Data Migration Mapping,Condition,Состојба apps/frappe/frappe/utils/data.py,{0} hours ago,Пред {0} часа @@ -1111,12 +1157,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,База на знаење Соработник DocType: Communication,Sent Read Receipt,Испрати признаница за прием DocType: Email Queue,Unsubscribe Method,Метод за отпишување +DocType: Onboarding Slide,Add More Button,Додадете повеќе копче DocType: GSuite Templates,Related DocType,поврзани DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Уреди за додавање на содржина apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,изберете јазици apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Детали за карти apps/frappe/frappe/__init__.py,No permission for {0},Нема дозвола за {0} DocType: DocType,Advanced,Напредно +DocType: Onboarding Slide,Slide Image Source,Извор на слајд слика apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Се чини API клуч или API Тајната не е во ред !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Суд: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Госпоѓица @@ -1133,6 +1181,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Госпо DocType: DocType,User Cannot Create,Корисникот не може да се создаде apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно е готово apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,пристап Dropbox е одобрено! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Дали сте сигурни дека сакате да споите {0} со {1}? DocType: Customize Form,Enter Form Type,Внесете Образец Тип DocType: Google Drive,Authorize Google Drive Access,Овластете пристап на Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Недостасува параметар Kanban Board Name @@ -1142,7 +1191,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозволувајќи им на DOCTYPE, DOCTYPE. Бидете внимателни!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Кориснички формати за печатење, и-мејл" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Збир од {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Освежено на новата верзија DocType: Custom Field,Depends On,Зависи DocType: Kanban Board Column,Green,Зелени DocType: Custom DocPerm,Additional Permissions,Дополнителни дозволи @@ -1167,6 +1215,7 @@ DocType: Address,Is Your Company Address,Дали вашата компаниј DocType: Energy Point Log,Social,Социјална apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Уредување ред DocType: Workflow Action Master,Workflow Action Master,Работното акција мајстор +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Избриши ги сите DocType: Custom Field,Field Type,Тип поле apps/frappe/frappe/utils/data.py,only.,само. DocType: Route History,Route History,Историја на маршрутата @@ -1201,11 +1250,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Ја заборави лоз DocType: System Settings,yyyy-mm-dd,гггг-мм-дд apps/frappe/frappe/desk/report/todo/todo.py,ID,проект apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,грешка во серверот +DocType: Server Script,After Delete,По избришете apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Погледнете ги сите изминати извештаи. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Се бара Логин ID DocType: Website Slideshow,Website Slideshow,Веб-страница слајдшоу apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Нема податоци DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Линк што е веб-сајт почетната страница. Стандардна Линкови (индекс, најава, производи, блог, за, контакт)" +DocType: Server Script,After Submit,По поднесување apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Проверката за автентичност не успеа додека прима пораки од е-мејл сметка {0}. Порака од серверот: {1} DocType: User,Banner Image,Банер сликата DocType: Custom Field,Custom Field,Сопствено поле @@ -1246,15 +1297,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ако корисникот има било провери улога, тогаш корисникот ќе стане "Систем за корисникот". "Систем за корисникот" има пристап на работната површина" DocType: System Settings,Date and Number Format,Датум и број формат apps/frappe/frappe/model/document.py,one of,еден од -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Персонализирајте форма apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Проверка еден момент apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Прикажи Тагови DocType: DocField,HTML Editor,HTML Editor 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,Активности -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Поставување> Корисник +DocType: DocType,Actions,Активности DocType: Workflow State,align-justify,усогласат-оправдаат DocType: User,Middle Name (Optional),Татково име (опционално) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Не е дозволено @@ -1268,6 +1317,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Не се DocType: System Settings,Security,Безбедност apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Треба да се испрати до {0} примачи apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Исечете +DocType: Server Script,After Save,По зачувување apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},преименуван од {0} до {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} од {1} ({2} редови со деца) DocType: Currency,**Currency** Master,** ** Валута мајстор @@ -1294,16 +1344,19 @@ DocType: Prepared Report,Filter Values,Вредности на филтри DocType: Communication,User Tags,Корисникот Тагови DocType: Data Migration Run,Fail,Не успеа DocType: Workflow State,download-alt,Download-алт +DocType: Scheduled Job Type,Last Execution,Последно извршување DocType: Data Migration Run,Pull Failed,Повлече не успеа apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Прикажи / Скриј картички DocType: Communication,Feedback Request,повратни Информации Барање apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Увези податоци од CSV / Excel датотеки. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Следните области се водат за исчезнати: +DocType: Notification Log,From User,Од корисник apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Откажување {0} DocType: Web Page,Main Section,Главниот дел DocType: Page,Icon,Icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Совет: Вклучи симболи, броеви и големи букви во лозинката" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Совет: Вклучи симболи, броеви и големи букви во лозинката" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Конфигурирајте ги известувањата за споменувања, задачи, точки на енергија и многу повеќе." DocType: DocField,Allow in Quick Entry,Дозволи во брз внес apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,дд / мм / гггг @@ -1335,7 +1388,6 @@ DocType: Website Theme,Theme URL,URL адреса на темата DocType: Customize Form,Sort Field,Вид поле DocType: Razorpay Settings,Razorpay Settings,Прилагодување Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Измени филтер -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Додади повеќе DocType: System Settings,Session Expiry Mobile,Сесија Важи Мобилни apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неточен корисник или лозинка apps/frappe/frappe/templates/includes/search_box.html,Search results for,Резултати од пребарувањето за @@ -1351,8 +1403,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Правило за енергетска точка DocType: Communication,Delayed,Одложен apps/frappe/frappe/config/settings.py,List of backups available for download,Листа на бекап е достапен за преземање +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Обидете се со новиот увоз на податоци apps/frappe/frappe/www/login.html,Sign up,Регистрирај се на Facebook apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Ред {0}: Не е дозволено да се оневозможува Задолжително за стандардни полиња +DocType: Webhook,Enable Security,Овозможи безбедност apps/frappe/frappe/config/customization.py,Dashboards,Табла DocType: Test Runner,Output,излез DocType: Milestone,Track Field,Поле поле @@ -1371,8 +1425,10 @@ DocType: Portal Menu Item,Portal Menu Item,Портал Ставка apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Поставете филтри DocType: Contact Us Settings,Email ID,E-mail проект DocType: Energy Point Rule,Multiplier Field,Полето за мултипликатор +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Не можам да создадам цел Razorpay. Ве молиме контактирајте го администраторот DocType: Dashboard Chart,Time Interval,Временски интервал DocType: Activity Log,Keep track of all update feeds,Следете ги сите ажурирани канали +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} сподели документ {1} {2} со вас DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Список на ресурсите кои клиентот стан ќе имаат пристап до по корисник го дозволува тоа. <br> на пр проект DocType: Translation,Translated Text,преведен текст DocType: Contact Us Settings,Query Options,Опции за пребарување @@ -1390,6 +1446,7 @@ DocType: DefaultValue,Key,Клучни DocType: Address,Contacts,Контакт DocType: System Settings,Setup Complete,Целосно подесување apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Извештај од сите акции со документ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Урнек за увоз треба да биде од типот .csv, .xlsx или .xls" apps/frappe/frappe/www/update-password.html,New Password,Нова лозинка apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Филтер {0} исчезнати apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Жал ми е! Не може да избришете авто-генерирани коментари @@ -1406,6 +1463,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Стартувај DocType: Blog Post,Content (HTML),Содржина (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Поставување за DocType: Personal Data Download Request,User Name,Корисничко име DocType: Workflow State,minus-sign,Знакот минус- apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не е пронајдено @@ -1413,6 +1471,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Нема {0} дозвол apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Извоз Прилагодено дозволи apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Нема пронајдени предмети. DocType: Data Export,Fields Multicheck,Полиња Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Заврши DocType: Activity Log,Login,Влези DocType: Web Form,Payments,Плаќања apps/frappe/frappe/www/qrcode.html,Hi {0},Здраво {0} @@ -1441,6 +1500,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаб apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Грешка во дозволата apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Име на {0} не може да биде {1} DocType: User Permission,Applicable For,Применливи за +DocType: Dashboard Chart,From Date,Од Датум apps/frappe/frappe/core/doctype/version/version_view.html,Success,Успех apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,сесијата истече apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,сесијата истече @@ -1453,7 +1513,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; не е дозволено во состојба DocType: Async Task,Async Task,Async Задача DocType: Workflow State,picture,слика -apps/frappe/frappe/www/complete_signup.html,Complete,Заврши +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Заврши DocType: DocType,Image Field,поле сликата DocType: Print Format,Custom HTML Help,Прилагодено HTML Помош DocType: LDAP Settings,Default Role on Creation,Стандардна улога за создавање @@ -1461,6 +1521,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Следна држава DocType: User,Block Modules,Блок модули DocType: Print Format,Custom CSS,Прилагодено CSS +DocType: Energy Point Rule,Apply Only Once,Аплицирајте само еднаш apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Додадете коментар DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Игнорира: {0} до {1} @@ -1471,6 +1532,7 @@ DocType: Address,Postal,Поштенските DocType: Email Account,Default Incoming,Стандардно Дојдовни DocType: Workflow State,repeat,повторување DocType: Website Settings,Banner,Банер +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Откажете ги сите документи DocType: Role,"If disabled, this role will be removed from all users.","Доколку е исклучено, оваа улога ќе биде отстранет од сите корисници." apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помош за пребарување DocType: Milestone,Milestone Tracker,Преглед на пресврт @@ -1478,6 +1540,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Се рег apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоматското повторување за овој документ е оневозможено. DocType: DocType,Hide Copy,Сокриј Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Исчистите сите улоги +DocType: Server Script,Before Save,Пред зачувување apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} мора да биде уникатна apps/frappe/frappe/model/base_document.py,Row,Ред apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1487,7 +1550,6 @@ DocType: Workflow State,Check,Проверете DocType: Chat Profile,Offline,Надвор од мрежа DocType: User,API Key,API клуч DocType: Email Account,Send unsubscribe message in email,Испрати отпишување порака во е-мејл -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Измени Наслов apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname која ќе биде DOCTYPE за оваа област линк. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Документи назначен за вас и со вас. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Можете исто така да копирате-залепите ова @@ -1517,8 +1579,10 @@ DocType: Data Migration Run,Total Pages,Вкупно страници DocType: DocField,Attach Image,Прикачи слика DocType: Workflow State,list-alt,Листата-алт apps/frappe/frappe/www/update-password.html,Password Updated,Лозинка освежено +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Чекори за да го потврдите вашето најавување apps/frappe/frappe/utils/password.py,Password not found,Лозинка не е пронајден +DocType: Webhook,Webhook Secret,Тајната на веб-страниците DocType: Data Migration Mapping,Page Length,Должина на страница DocType: Email Queue,Expose Recipients,Се изложуваат на примачи apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Припојување е задолжително за дојдовни пораки @@ -1545,6 +1609,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Систем DocType: Web Form,Max Attachment Size (in MB),Макс Прилог големина (во MB) apps/frappe/frappe/www/login.html,Have an account? Login,Имате профил? Логирај Се +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Печатете ги поставките ... DocType: Workflow State,arrow-down,стрелка надолу apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Корисникот не може да се отстрани {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} на {1} @@ -1578,11 +1643,12 @@ DocType: Workflow State,hand-down,рака надолу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Не се пронајдени полиња што можат да се користат како колона во Канбан. Користете ја формата за прилагодување за да додадете Поле на полето од типот "Избери". DocType: Address,GST State,GST држава apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Не може да се постави без Прати Откажи +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Корисник ({0}) DocType: Website Theme,Theme,Тема DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Пренасочување URI обврзани да Овласти законик apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Отворете Помош DocType: DocType,Is Submittable,Е Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Ново споменување +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Ново споменување apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Нема нови синхронизирани контакти на Google. DocType: File,Uploaded To Google Drive,Поставено на Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Вредност за полето за проверка може да биде 0 или 1 @@ -1594,7 +1660,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Сандаче DocType: Kanban Board Column,Red,Црвена DocType: Workflow State,Tag,Таг -DocType: Custom Script,Script,Скрипта +DocType: Report,Script,Скрипта apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Документот не може да се зачува. DocType: Energy Point Rule,Maximum Points,Максимални поени apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мои подесувања @@ -1623,9 +1689,12 @@ DocType: Email Queue,Email Queue,Е-редицата DocType: Address,Haryana,Харајана apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Улоги може да се постави за корисници од нивната корисничка страница. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Додај коментар +DocType: Dashboard Chart,Select Date Range,Изберете Опсег на датум DocType: DocField,Mandatory,Задолжително apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модул за извоз на +DocType: Scheduled Job Type,Monthly Long,Месечно долго apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Не основни собата дозволи +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Испратете е-пошта на {0} за да ја поврзете тука apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Значење на Поднесе, Откажи, измени" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Да се направи @@ -1633,7 +1702,6 @@ DocType: Test Runner,Module Path,Патека модул DocType: Milestone Tracker,Track milestones for any document,Следете ги пресвртниците за кој било документ DocType: Social Login Key,Identity Details,Детали за идентитет apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Покажи табла -apps/frappe/frappe/desk/form/assign_to.py,New Message,Нова порака DocType: File,Preview HTML,Преглед на HTML DocType: Desktop Icon,query-report,пребарување-извештај DocType: Data Import Beta,Template Warnings,Предупредувања за шаблони @@ -1650,12 +1718,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Име apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Не дозволи утврдени за овие критериуми. DocType: Auto Email Report,Auto Email Report,Авто Email извештај +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Споделен нов документ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Избриши коментар? DocType: Address Template,This format is used if country specific format is not found,Овој формат се користи ако не се најде специфичен формат земја DocType: System Settings,Allow Login using Mobile Number,Дозволете Најави користење на мобилен број apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,Вие немате доволно дозволи за да пристапите на овој ресурс. Ве молиме обратете се на вашиот да добиете пристап. DocType: Custom Field,Custom,Прилагодено DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ако е овозможено, корисниците кои се најавуваат од ограничена IP адреса, нема да бидат повикани за Two Factor Auth" +DocType: Server Script,After Cancel,По откажете DocType: Auto Repeat,Get Contacts,Добијте контакти apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Мислења поднесе под {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Прескокнувајќи ја насловната колона @@ -1666,6 +1736,7 @@ DocType: User,Login After,Најави по DocType: Print Format,Monospace,Профилите DocType: Letter Head,Printing,Печатење DocType: Workflow State,thumbs-up,палците нагоре +DocType: Notification Log,Mention,Споменете DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Фонтови apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Прецизност треба да биде помеѓу 1 и 6 @@ -1673,7 +1744,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Преп apps/frappe/frappe/public/js/frappe/utils/utils.js,and,и apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Овој извештај беше генериран на {0} DocType: Error Snapshot,Frames,Рамки -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,доделување +DocType: Notification Log,Assignment,доделување DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Слика линк DocType: Auto Email Report,Report Filters,Пријави Филтри @@ -1690,7 +1761,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Не можам да го обновите настан apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Код за потврда е испратен на вашата регистрирана е-адреса. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Пригушени +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Твојата цел apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Филтерот мора да има 4 вредности (DOCTYPE, fieldname, оператор, вредноста): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Нема специфицирано име за {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Применуваат правило за доделување задачи apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/utils/data.py,Invalid field name {0},Неважечко име на полето {0} @@ -1699,7 +1772,6 @@ DocType: Workflow State,text-height,текст висина DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Трасирање на план за миграција на податоци apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Отпочнување на Frappé ... DocType: Web Form Field,Max Length,Максимална должина -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},За {0} {1} DocType: Print Format,Jinja,Jaинџа DocType: Workflow State,map-marker,мапа маркер apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Поднесете ја претставува проблем @@ -1732,6 +1804,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Страница исче apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Прегледи DocType: DocType,Route,пат apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay поставки за плаќање портал +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} се стекна со {1} поен за {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Донеси прикачени слики од документ DocType: Chat Room,Name,Име DocType: Contact Us Settings,Skype,Skype @@ -1742,7 +1815,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Отвори apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Твојот јазик DocType: Dashboard Chart,Average,Просечна apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Додај ред -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Печатач apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Барањето мора да биде Избери DocType: Auto Repeat,Completed,Завршено @@ -1800,6 +1872,7 @@ DocType: GCalendar Account,Next Sync Token,Следен синхронизира DocType: Energy Point Settings,Energy Point Settings,Поставки за енергетска точка DocType: Async Task,Succeeded,Успеал apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Задолжителни полиња се бара во {0} +DocType: Onboarding Slide Field,Align,Усогласување apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Ресетирање на дозволи за {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Корисници и дозволи DocType: S3 Backup Settings,S3 Backup Settings,S3 Резервни копии @@ -1816,7 +1889,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Име на форматот на ново печатење apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Кликнете на врската подолу за да го одобрите барањето DocType: Workflow State,align-left,усогласат-левичарската +DocType: Onboarding Slide,Action Settings,Активни поставки DocType: User,Defaults,Стандардни +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За споредба, користете> 5, <10 или = 324. За опсег, користете 5:10 (за вредности помеѓу 5 и 10)." DocType: Energy Point Log,Revert Of,Врати се apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Се спои со постојната DocType: User,Birth Date,Дата на раѓање @@ -1871,6 +1946,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Во DocType: Notification,Value Change,Вредност промени DocType: Google Contacts,Authorize Google Contacts Access,Овластете пристап на контакти на Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Прикажани се само Нумерички полиња од Извештај +apps/frappe/frappe/utils/data.py,1 week ago,пред 1 недела DocType: Data Import Beta,Import Type,Тип на увоз DocType: Access Log,HTML Page,HTML страница DocType: Address,Subsidiary,Подружница @@ -1879,7 +1955,6 @@ DocType: System Settings,In Hours,Во часови apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Со меморандум apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невалиден сервер за испраќање пошта или пристаниште DocType: Custom DocPerm,Write,Напиши -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Само администратор е дозволено да креирате пребарување / Script извештаи apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ажурирање DocType: Data Import Beta,Preview,Преглед apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Поле "вредност" е задолжително. Ве молиме наведете вредност да се ажурира @@ -1889,6 +1964,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Покан DocType: Data Migration Run,Started,Почна apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Корисникот {0} нема пристап до овој документ DocType: Data Migration Run,End Time,Крајот на времето +DocType: Dashboard Chart,Group By Based On,Група заснована на apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Изберете Прилози apps/frappe/frappe/model/naming.py, for {0},за {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Не ви е дозволено да се печати овој документ @@ -1930,6 +2006,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Потврди DocType: Workflow Document State,Update Field,Ажурирање на поле DocType: Chat Profile,Enable Chat,Овозможи разговор DocType: LDAP Settings,Base Distinguished Name (DN),База Почитувани Име (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Оставете овој разговор apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Опции кои не се во собата за поле линк {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Ред / работник @@ -1998,12 +2075,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Пријавата не е дозволено во овој момент DocType: Data Migration Run,Current Mapping Action,Тековна акција за мапирање DocType: Dashboard Chart Source,Source Name,извор Име -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нема сметка за е-пошта поврзана со Корисникот. Ве молиме, додадете сметка под Корисникот> Е-пошта во пошта." DocType: Email Account,Email Sync Option,Е-Sync Опција apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Ред бр DocType: Async Task,Runtime,Траење DocType: Post,Is Pinned,Е закачен DocType: Contact Us Settings,Introduction,Вовед +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Треба помош? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Пин на глобално ниво apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Следен од DocType: LDAP Settings,LDAP Email Field,LDAP-пошта поле @@ -2012,7 +2089,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Веќе DocType: User Email,Enable Outgoing,Овозможи заминување DocType: Address,Fax,Факс apps/frappe/frappe/config/customization.py,Custom Tags,Прилагодено Тагови -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Не е поставена сметка за е-пошта. Ве молиме, креирајте нова сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта" DocType: Comment,Submitted,Поднесени DocType: Contact,Pulled from Google Contacts,Извлечено од Контактите на Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Во валидно барање @@ -2033,9 +2109,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Почет apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Доделите на мене DocType: DocField,Dynamic Link,Динамична линк apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Притиснете го копчето Alt за активирање дополнителни кратенки во Мени и странична лента +DocType: Dashboard Chart,To Date,Датум DocType: List View Setting,List View Setting,Поставување на преглед на список apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Прикажи успеа работни места -DocType: Event,Details,Детали за +DocType: Scheduled Job Log,Details,Детали за DocType: Property Setter,DocType or Field,DOCTYPE или поле apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Вие не го одбравте овој документ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Примарна боја @@ -2044,7 +2121,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Се чини дека издавачките Клучни или таен клуч не е во ред !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Се чини дека издавачките Клучни или таен клуч не е во ред !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Помош за типот привилегии -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE да му ја додели Тагови apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Шоуто Релапсите apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Е-пошта е преместена во ѓубрето DocType: Report,Report Builder,Креирај извештај @@ -2060,6 +2136,7 @@ DocType: Workflow State,Upload,Додавање DocType: User Permission,Advanced Control,Напредна контрола DocType: System Settings,Date Format,Формат на датум apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Не се објавени +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е пронајдена стандардна образец за адреса. Ве молиме, создадете нова од Поставување> Печатење и брендирање> Шаблон за адреса." apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Акции за работа (на пр одобри, Cancel)." DocType: Data Import,Skip rows with errors,Прескокнете ги редовите со грешки DocType: Workflow State,flag,знаме @@ -2069,14 +2146,13 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Пе apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Скокни на поле DocType: Contact Us Settings,Forward To Email Address,Напред е-мејл адреса DocType: Contact Phone,Is Primary Phone,Е примарен телефон -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Испратете е-пошта на {0} за да ја поврзете тука. DocType: Auto Email Report,Weekdays,Работни дена apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Наслов поле мора да биде валидна fieldname DocType: Post Comment,Post Comment,остави коментар apps/frappe/frappe/config/core.py,Documents,Документи apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Активност Пријавете се од DocType: Social Login Key,Custom Base URL,Приспособена база на URL -DocType: Email Flag Queue,Is Completed,е завршена +DocType: Onboarding Slide,Is Completed,е завршена apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Добијте полиња apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Уредување на профилот DocType: Kanban Board Column,Archived,Архивирани @@ -2087,19 +2163,19 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ова поле ќе се појави само ако fieldname дефинирани овде има вредност или правилата се точни (примери): eval myfield: doc.myfield == "Мојот вредност 'eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,денес -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,денес +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,денес +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,денес apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Откако ќе го поставите ова, корисниците ќе бидат во можност документи пристап (на пр. Блог пост) кога постои врска (на пр. Blogger)." DocType: Data Import Beta,Submit After Import,Поднесете по увозот DocType: Error Log,Log of Scheduler Errors,Дневник на грешки Распоред DocType: User,Bio,Био +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Врска за помош во слајд DocType: OAuth Client,App Client Secret,Стан клиентот тајна apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Поднесување apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Родител е името на документот на кој ќе се додадат податоците. DocType: DocType,UPPER CASE,ГОЛЕМИ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Прилагодено HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Внесете име на папка -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е пронајдена стандардна образец за адреса. Ве молиме, создадете нова од Поставување> Печатење и брендирање> Шаблон за адреса." apps/frappe/frappe/auth.py,Unknown User,Непознат корисник apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Изберете Улогата DocType: Comment,Deleted,Избришани @@ -2115,7 +2191,7 @@ DocType: Chat Token,Chat Token,Точка за разговор apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Креирај табела apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не увезувај -DocType: Web Page,Center,Центар +DocType: Onboarding Slide Field,Center,Центар DocType: Notification,Value To Be Set,Вредност да се постави apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Уредете {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Првото ниво @@ -2123,7 +2199,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Име на базата apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh Форма DocType: DocField,Select,Изберете -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Прикажи целосен дневник +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Прикажи целосен дневник DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Едноставно изразување на Питон, Пример: статус == 'Отвори' и тип == 'Бубачка'" apps/frappe/frappe/utils/csvutils.py,File not attached,Датотеката не е спроведен apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Изгубена конекција. Некои функции можеби нема да работат. @@ -2154,6 +2230,7 @@ DocType: Web Page,HTML for header section. Optional,HTML секција загл apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Оваа функција е сосема нов и уште експериментални apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Дозволениот максимум {0} редови DocType: Dashboard Chart Link,Chart,Табела +DocType: Scheduled Job Type,Cron,Крон DocType: Email Unsubscribe,Global Unsubscribe,Глобалната Одјава apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ова е многу честа лозинка. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Поглед @@ -2170,6 +2247,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Детална состојба apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","За валута {0}, минималната сума на трансакција треба да биде {1}" DocType: DocField,Print Hide,Печати Сокриј +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,До Корисник apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Внесете вредност DocType: Workflow State,tint,боја @@ -2234,6 +2312,7 @@ DocType: GSuite Settings,Google Credentials,Google Сертификати apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR код за верификација на најава apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Додади во да се направи DocType: Footer Item,Company,Компанијата +DocType: Scheduled Job Log,Scheduled,Закажана DocType: User,Logout from all devices while changing Password,Одјавување од сите уреди при промена на лозинката apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Потврди ја лозинката apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Имаше грешки @@ -2258,7 +2337,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Дозвола за корисник веќе постои apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Приказ {0} -DocType: User,Hourly,Часовник +DocType: Scheduled Job Type,Hourly,Часовник apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрирај OAuth потрошувач App DocType: DocField,Fetch If Empty,Земете ако празно DocType: Data Migration Connector,Authentication Credentials,Сертификати за проверка на автентичност @@ -2268,10 +2347,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,Периодично DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} не може да биде "{2}". Тоа треба да биде еден од "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} или {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Сите сте поставени! DocType: Workflow State,trash,ѓубре DocType: System Settings,Older backups will be automatically deleted,Постарите копии ќе бидат автоматски избришани apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Невалиден пристапен клуч за пристап или таен клуч за пристап. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Изгубивте енергетски поени DocType: Post,Is Globally Pinned,Дали е глобално закачено apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Скорешна активност DocType: Workflow Transition,Conditions,Услови @@ -2280,6 +2359,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Потврд DocType: Event,Ends on,Завршува на DocType: Payment Gateway,Gateway,Портал DocType: LDAP Settings,Path to Server Certificate,Пат до сертификат за сервер +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript-от е оневозможен на вашиот прелистувач apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Не е доволно дозволи за да ја видите линкови apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Не е доволно дозволи за да ја видите линкови apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Наслов адреса е задолжително. @@ -2298,7 +2378,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,еу-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ако ова е проверено, ќе бидат внесени редови со валидни податоци и неважечки редови ќе бидат фрлени во нова датотека за да ги внесете подоцна." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ е едитирање само од страна на корисниците на улога -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,Прочитајте од Примачот DocType: Blogger,Short Name,Кратко име @@ -2331,6 +2410,7 @@ DocType: Translation,PR sent,ПР испрати DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Испраќај рекорди во Последно освежено Х часа DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Испраќај рекорди во Последно освежено Х часа DocType: Communication,Feedback,Повратна информација +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Ажурирано до нова верзија apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Отворете превод apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Оваа е-пошта е автогенерирана DocType: Workflow State,Icon will appear on the button,Ќе се појави икона на копчето @@ -2368,6 +2448,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Стран DocType: DocField,Precision,Прецизност DocType: Website Slideshow,Slideshow Items,Слајдшоу Теми apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Обидете се да се избегне повторен зборови и знаци +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Известувања се оневозможени +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Дали сте сигурни дека сакате да ги избришете сите редови? DocType: Workflow Action,Workflow State,Работното држава apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Додадено редови apps/frappe/frappe/www/list.py,My Account,Моја сметка @@ -2376,6 +2458,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Дена од денот на apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Активно е поврзувањето на фиоката QZ! DocType: Contact Us Settings,Settings for Contact Us Page,Прилагодувања за страница за контакт +DocType: Server Script,Script Type,Скрипта Тип DocType: Print Settings,Enable Print Server,Овозможи серверот за печатење apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Пред {0} недели DocType: Email Account,Footer,Footer @@ -2400,8 +2483,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Предупредување apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Ова може да се печати на повеќе страници DocType: Data Migration Run,Percent Complete,Процент е комплетен -DocType: Tag Category,Tag Category,таг Категорија -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За споредба, користете> 5, <10 или = 324. За опсег, користете 5:10 (за вредности помеѓу 5 и 10)." DocType: Google Calendar,Pull from Google Calendar,Повлечете од Календарот на Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Помош DocType: User,Login Before,Влези Пред @@ -2411,17 +2492,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Сокриј ги викендите apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматски генерира периодични документи. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Е +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,инфо-знак apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Вредност за {0} не може да биде листа DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Како треба да се форматира оваа валута? Ако не е поставено, ќе ја користи систем стандардно" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Поднесете {0} документи? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Вие треба да бидете најавени на системот и имаат Систем за менаџер улога да биде во можност да пристапите бекап. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Грешка при поврзување со апликацијата за фиоки за QZ фиоки ... <br><br> Треба да имате инсталирано и работи апликацијата QZ Tray, за да ја користите функцијата Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Кликнете овде за да ја преземете и инсталирате QZ лентата</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Кликнете овде за да дознаете повеќе за Raw print</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Мапирање на печатачот apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ве молиме да се спаси пред приложување. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Дали сакате да ги откажете сите поврзани документи? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Додадено {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се менува од {0} до {1} во ред {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Улогата на пишување DocType: Help Article,Intermediate,средно +apps/frappe/frappe/config/settings.py,Email / Notifications,Е-пошта / Известувања apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} смени {1} на {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Откажан документ вратен како Нацрт DocType: Data Migration Run,Start Time,Почеток Време @@ -2438,6 +2523,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,М apps/frappe/frappe/email/smtp.py,Invalid recipient address,Валиден примач DocType: Workflow State,step-forward,чекор напред DocType: System Settings,Allow Login After Fail,Дозволи пријавување по неуспех +DocType: DocType Link,DocType Link,Врска до DocType DocType: Role Permission for Page and Report,Set Role For,Поставете улога DocType: GCalendar Account,The name that will appear in Google Calendar,Името што ќе се појави во Google Календар apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Директната соба со {0} веќе постои. @@ -2454,6 +2540,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Креи DocType: Contact,Google Contacts,Контакти на Google DocType: GCalendar Account,GCalendar Account,GCalendar сметка DocType: Email Rule,Is Spam,е спам +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Последно apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Извештај {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Отвори {0} DocType: Data Import Beta,Import Warnings,Предупредувања за увоз @@ -2465,6 +2552,7 @@ DocType: Workflow State,ok-sign,OK-знак apps/frappe/frappe/config/settings.py,Deleted Documents,избришани документи apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Форматот на CSV е осетлив на големи букви apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Десктоп икони веќе постои +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Наведете во кои домени треба да се појават слајдовите. Ако ништо не е одредено, слајдот се прикажува во сите домени по дифолт." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,СТРОГО apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Полето {1} по ред {2} не може да се скрие и задолжително без стандардно DocType: Newsletter,Create and Send Newsletters,Креирајте и испратете Билтени @@ -2475,6 +2563,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ИД на настан во календарот на Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Родител" означува табелата родител во која мора да се додаде на овој ред apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Поени за преглед: +DocType: Scheduled Job Log,Scheduled Job Log,Закажан дневник за работа +DocType: Server Script,Before Delete,Пред да избришете apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Дели со apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Прикачи датотеки / URL адреси и додајте во табелата. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Пораката не е подесена @@ -2498,19 +2588,20 @@ DocType: About Us Settings,Settings for the About Us Page,Подесувања apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Лента поставки за плаќање портал apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Лента поставки за плаќање портал apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Печати Испратено до печатачот! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Енергетски поени +DocType: Notification Settings,Energy Points,Енергетски поени DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,на пр pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Генерирање клучеви apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ова трајно ќе ги отстрани вашите податоци. DocType: DocType,View Settings,Погледнете Подесувања +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ново известување DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Побарајте структура +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Контролер методот get_razorpay_order недостасува DocType: Personal Data Deletion Request,Pending Verification,Во очекување на верификација DocType: Website Meta Tag,Website Meta Tag,Веб-страница Мета таг DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ако нестандардно пристаниште (пр. 587). Ако во Google Cloud, пробајте пристаниште 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Расчистување на крајниот датум, бидејќи не може да биде во минатото за објавени страници." DocType: User,Send Me A Copy of Outgoing Emails,Испрати ми копија од појдовни пораки -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.,Додади Google Analytics проект: на пр. UA-89XXX57-1. Ве молиме пребарување помош на Google Analytics за повеќе информации. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Стара лозинка не може да биде над 100 карактери DocType: OAuth Client,App Client ID,Стан на клиент @@ -2539,6 +2630,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Потреб apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} дели овој документ со {1} DocType: Website Settings,Brand Image,бренд слика DocType: Print Settings,A4,А4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Упатството за увоз треба да содржи Заглавие и барем еден ред. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Календарот на Google е конфигуриран. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Поставување на врвот лента за навигација, footer и лого." DocType: Web Form Field,Max Value,Макс вредност @@ -2547,6 +2639,7 @@ DocType: Auto Repeat,Preview Message,Преглед на пораката DocType: User Social Login,User Social Login,Кориснички социјален најава DocType: Contact,All,Сите DocType: Email Queue,Recipient,Примачот +DocType: Webhook,Webhook Security,Безбедност на веб-страници DocType: Communication,Has Attachment,има Прилог DocType: Address,Sales User,Продажбата пристап apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and drop алатка за да се изгради и да се прилагодите печатење формати. @@ -2636,14 +2729,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Веб-страница apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Самоодобрување не е дозволено DocType: GSuite Templates,Template ID,шаблон проект apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Не е дозволено комбинација на тип на грант ( <code>{0}</code> ) и тип на одговор ( <code>{1}</code> ) -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Нова порака од {0} DocType: Portal Settings,Default Role at Time of Signup,Аватарот на улогата во времето на Регистрирај се DocType: DocType,Title Case,Наслов на случај apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Кликнете на врската подолу за да ги преземете вашите податоци apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Овозможено е-пошта на дојдовен сандаче за корисник {0} DocType: Data Migration Run,Data Migration Run,Стартувај миграција на податоци DocType: Blog Post,Email Sent,Е-мејл испратен -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Постар DocType: DocField,Ignore XSS Filter,Игнорирај XSS филтер apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,отстранети apps/frappe/frappe/config/integrations.py,Dropbox backup settings,прилагодувања Dropbox резерви @@ -2696,6 +2787,7 @@ DocType: Async Task,Queued,Чекаат на ред DocType: Braintree Settings,Use Sandbox,Користете Sandbox apps/frappe/frappe/utils/goal.py,This month,Овој месец apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нов прилагодено Печатење формат +DocType: Server Script,Before Save (Submitted Document),Пред зачувување (доставен документ) DocType: Custom DocPerm,Create,Направете apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Нема повеќе елементи за прикажување apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Одете на претходниот рекорд @@ -2751,6 +2843,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Премести во корпата DocType: Web Form,Web Form Fields,Веб образец Полињата DocType: Data Import,Amended From,Изменет Од +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Додадете помош за видео врска само во случај корисникот да нема идеја за тоа што да го пополни слајдот. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Предупредување: Не можам да најдам {0} во секоја маса во врска со {1} DocType: S3 Backup Settings,eu-north-1,еу-север-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Овој документ е во чекаат на ред за извршување. Ве молиме обидете се повторно @@ -2772,6 +2865,7 @@ DocType: Blog Post,Blog Post,Блог пост DocType: Access Log,Export From,Извоз од apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Напредно пребарување apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Не Ви е дозволено да го гледате билтенот. +DocType: Dashboard Chart,Group By,Со група DocType: User,Interests,Интереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции за ресетирање на лозинката биле пратени на вашата e-mail DocType: Energy Point Rule,Allot Points To Assigned Users,Доделување на поени на доделени корисници @@ -2787,6 +2881,7 @@ DocType: Assignment Rule,Assignment Rule,Правило за доделувањ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Препорачан Корисничко име: {0} DocType: Assignment Rule Day,Day,ден apps/frappe/frappe/public/js/frappe/desk.js,Modules,модули +DocType: DocField,Mandatory Depends On,Задолжително зависи од apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,плаќање успех apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Не {0} mail DocType: OAuth Bearer Token,Revoked,Одземени @@ -2794,6 +2889,7 @@ DocType: Web Page,Sidebar and Comments,Лента и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 и спаси го, ќе добие нов број, кој е верзија на стариот број." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Не е дозволено да приложите {0} документ, ве молиме овозможете Дозволи печатење за {0} во Поставки за печатење" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не е поставена сметка за е-пошта. Создадете нова сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Погледнете го документот на {0} DocType: Stripe Settings,Publishable Key,Клучни publishable DocType: Stripe Settings,Publishable Key,Клучни publishable @@ -2808,6 +2904,7 @@ DocType: Currency,Fraction,Дел apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Синхронизиран настан со календарот на Google. DocType: LDAP Settings,LDAP First Name Field,LDAP-Име на поле DocType: Contact,Middle Name,Средно име +DocType: DocField,Property Depends On,Имотот зависи од DocType: Custom Field,Field Description,Поле Опис apps/frappe/frappe/model/naming.py,Name not set via Prompt,Името не е поставена преку Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mail сандаче @@ -2853,11 +2950,11 @@ DocType: Workflow State,folder-close,папка во близина apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Извештај: DocType: Print Settings,Print taxes with zero amount,Печати даноци со нула apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} не е дозволено да биде преименувана +DocType: Server Script,Before Insert,Пред вметнување DocType: Custom Script,Custom Script,Прилагодено сценарио DocType: Address,Address Line 2,Адреса Линија 2 DocType: Address,Reference,Референтен apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Доделени -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ве молиме поставете ја стандардната сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Детали за картирање на миграција на податоци DocType: Data Import,Action,Акција DocType: GSuite Settings,Script URL,Script URL @@ -2883,11 +2980,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,Во List View DocType: Email Account,Use TLS,Употреба TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Неправилен Влезот или лозинка +DocType: Scheduled Job Type,Weekly Long,Неделно долго apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Преземи Шаблон apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Додадете сопствени javascript за да се форми. ,Role Permissions Manager,Менаџер улога на пишување apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Името на новиот формат за печатење apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Вклучи ја лентата +DocType: Server Script,After Save (Submitted Document),По зачувување (доставен документ) DocType: Data Migration Run,Pull Insert,Повлечете Вметни DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Максимални дозволени бодови по размножување на точките со множечката вредност (Белешка: Без ограничување, оставете го ова поле празно или поставено 0)" @@ -2905,6 +3004,7 @@ DocType: User Permission,User Permission,Корисничка дозвола apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Не се инсталирани apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Преземете со податоци +DocType: Server Script,Before Cancel,Пред откажување DocType: Workflow State,hand-right,рака десен DocType: Website Settings,Subdomain,Поддомен DocType: S3 Backup Settings,Region,Регионот @@ -2950,12 +3050,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Стара лозинк DocType: S3 Backup Settings,us-east-1,нас-исток-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Постови на {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Да колони формат, им даде на етикети колона во Барањето." +DocType: Onboarding Slide,Slide Fields,Слајд полиња DocType: Has Domain,Has Domain,има домен DocType: User,Allowed In Mentions,Дозволено во спомени apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Немате профил? Пријавете се apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Не може да се отстрани полето за идентификација apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Не може да се постави Assign се измени ако не Submittable DocType: Address,Bihar,Бихар +DocType: Notification Settings,Subscribed Documents,Претплатени документи apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Кориснички поставки DocType: Report,Reference Report,Референтен извештај DocType: Activity Log,Link DocType,линк DOCTYPE @@ -2973,6 +3075,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Овластете п apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"На страницата што ја барате се водат за исчезнати. Ова би можело да биде, бидејќи тоа е преместена или постои грешка во врската." apps/frappe/frappe/www/404.html,Error Code: {0},Грешка на кодот: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис за котација страница, во обичен текст, само неколку линии. (Максимум 140 карактери)" +DocType: Server Script,DocType Event,Настан на DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} се задолжителни полиња DocType: Workflow,Allow Self Approval,Дозволи автоматско одобрување DocType: Event,Event Category,Категорија на настани @@ -2989,6 +3092,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Вашето име apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успех во поврзувањето DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Продолжува веќе постојниот слајд од типот на слајд. DocType: DocType,Default Sort Field,Стандардно поле за сортирање DocType: File,Is Folder,Е папка DocType: Document Follow,DocType,DOCTYPE @@ -3025,7 +3129,10 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,променети вредности DocType: Workflow State,arrow-up,стрелка нагоре DocType: Dynamic Link,Link Document Type,Тип на документ за врска +DocType: Server Script,Server Script,Скрипта за сервери +apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","За конфигурирање на автоматско повторување, овозможете „Дозволи автоматско повторување“ од {0}." DocType: OAuth Bearer Token,Expires In,истекува +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Колку пати сакате да го повторите множеството полиња (на пример: ако сакате 3 клиенти во слајд, поставете го ова поле на 3. Само првиот сет на полиња е прикажан како задолжителен во слајдот)" DocType: DocField,Allow on Submit,Им овозможи на Поднесете DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Исклучок Тип @@ -3035,6 +3142,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Заглавија apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Престојни настани apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Ве молиме внесете вредности за апликација за пристап клуч и App Таен клуч +DocType: Email Account,Append Emails to Sent Folder,Додадете е-пошта до испратената папка DocType: Web Form,Accept Payment,прифати плаќање apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Изберете ставка од списокот apps/frappe/frappe/config/core.py,A log of request errors,Лог за барање грешки @@ -3053,7 +3161,7 @@ DocType: Translation,Contributed,Придонеси apps/frappe/frappe/config/customization.py,Form Customization,Персонализација на формата apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нема активни сесии DocType: Web Form,Route to Success Link,Пат до успех линк -DocType: Top Bar Item,Right,Право +DocType: Onboarding Slide Field,Right,Право apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Нема претстојни настани DocType: User,User Type,Корисникот Тип DocType: Prepared Report,Ref Report DocType,Извештај за реф. DocType @@ -3070,6 +3178,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Ве молим apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL треба да започне со „http: //“ или со „https: //“ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Опција 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Тоа не може да се врати назад DocType: Workflow State,Edit,Уреди DocType: Website Settings,Chat Operators,Оператори на разговор DocType: S3 Backup Settings,ca-central-1,ка-централно-1 @@ -3081,14 +3190,13 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Сте имале незачувани промени во оваа форма. Ве молиме да се спаси пред да продолжите. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,Стандардно за {0} мора да биде опција -DocType: Tag Doc Category,Tag Doc Category,Таг Док Категорија apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Извештајот со повеќе од 10 колони изгледа подобро во режимот Пејзаж. DocType: Milestone,Milestone,Пресвртница DocType: User,User Image,Најави image apps/frappe/frappe/email/queue.py,Emails are muted,Пораките се пригушени apps/frappe/frappe/config/integrations.py,Google Services,Услуги на Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Нагоре -apps/frappe/frappe/utils/data.py,1 weeks ago,пред 1 недели +DocType: Onboarding Slide,Slide Description,Опис на слајдот DocType: Communication,Error,Грешка apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Прво наместете порака DocType: Auto Repeat,End Date,Крај Датум @@ -3109,10 +3217,12 @@ DocType: Footer Item,Group Label,Етикета група DocType: Kanban Board,Kanban Board,Kanban одбор apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контактите Google се конфигурирани. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 рекорд ќе биде извезен +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нема сметка за е-пошта поврзана со Корисникот. Ве молиме, додадете сметка под Корисникот> Е-пошта во пошта." DocType: DocField,Report Hide,Извештај Сокриј apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},преглед на дрвото не се достапни за {0} DocType: DocType,Restrict To Domain,Ограничување на домен DocType: Domain,Domain,Домен +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Невалидна URL-адреса за датотека Ве молиме контактирајте со администраторот на системот. DocType: Custom Field,Label Help,Помош етикета DocType: Workflow State,star-empty,ѕвезда-празни apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Термини често лесно да се погоди. @@ -3136,6 +3246,7 @@ DocType: Workflow State,hand-left,рака-левичарската DocType: Data Import,If you are updating/overwriting already created records.,Ако го ажурирате / пребришете веќе креираните записи. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Дали е глобално DocType: Email Account,Use SSL,Употреба SSL +DocType: Webhook,HOOK-.####,КУПКА -. #### DocType: Workflow State,play-circle,игра-круг apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документот не можеше да биде правилно доделен apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Невалиден израз "зависи од" @@ -3152,6 +3263,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Последно освежено apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,За типот на документот DocType: Workflow State,arrow-right,стрелка-десничарската +DocType: Server Script,API Method,АПИ метод DocType: Workflow State,Workflow state represents the current state of a document.,Државни работното претставува моменталната состојба на документот. DocType: Letter Head,Letter Head Based On,Глава на писмо врз основа на apps/frappe/frappe/utils/oauth.py,Token is missing,Токен недостасува @@ -3187,6 +3299,7 @@ DocType: Comment,Relinked,relinked DocType: Print Settings,Compact Item Print,Печатење компактни ставки DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Пренасочување на URL +DocType: Onboarding Slide Field,Placeholder,Местоположба DocType: SMS Settings,Enter url parameter for receiver nos,Внесете URL параметар за примачот бр DocType: Chat Profile,Online,онлајн DocType: Email Account,Always use Account's Name as Sender's Name,Секогаш користете го Името на сметката како Име на испраќачот @@ -3196,7 +3309,6 @@ DocType: Workflow State,Home,Почетна DocType: OAuth Provider Settings,Auto,Автоматски DocType: System Settings,User can login using Email id or User Name,Корисникот може да се најавите со користење на Email id или User Name DocType: Workflow State,question-sign,Прашањето-знак -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} е оневозможено apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Полето "рута" е задолжително за веб-прегледи apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вметни ја колоната пред {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Корисникот од ова поле ќе биде награден со поени @@ -3221,6 +3333,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ако сопств DocType: Data Migration Mapping,Push,Притисни apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Испуштете датотеки овде DocType: OAuth Authorization Code,Expiration time,време на траење +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Отворени документи DocType: Web Page,Website Sidebar,Веб-страница на лента DocType: Web Form,Show Sidebar,Прикажи лента apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Вие треба да бидете најавени за да пристапите на оваа {0}. @@ -3269,6 +3382,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Печати формат apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Вклучи го приказот на мрежата apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Оди до следниот рекорд +DocType: System Settings,Time Format,Формат на време apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Невалиден ингеренциите исплата портал DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ова е датотека со шаблони генерирана само со редови кои имаат некоја грешка. Треба да ја користите оваа датотека за корекција и увоз. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Поставување на дозволи за видовите и улоги документ @@ -3312,12 +3426,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Одгов apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Статии во Биро (променливи) DocType: DocField,Collapsible Depends On,Склопувачки зависи од DocType: Print Style,Print Style Name,Име на стилот на печатење +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Група по поле е потребно да се создаде табела со табла DocType: Print Settings,Allow page break inside tables,Дозволете пауза страница во табели DocType: Email Account,SMTP Server,SMTP сервер DocType: Print Format,Print Format Help,Печати формат Помош apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} соба мора да има барем еден корисник. DocType: DocType,Beta,бета DocType: Dashboard Chart,Count,Број +DocType: Dashboard Chart,Group By Type,Група по тип apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},врати {0} како {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ако се ажурирање, ве молиме изберете "Запиши" друг постоечки редови нема да бидат избришани." DocType: DocField,Translatable,Translatable @@ -3326,8 +3442,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Кори DocType: Web Form,Web Form,Веб образец apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Датумот {0} мора да биде во формат: {1} DocType: About Us Settings,Org History Heading,Org Историја Заглавие +DocType: Scheduled Job Type,Scheduled Job Type,Закален вид на работа DocType: Print Settings,Allow Print for Cancelled,Дозволи за печатење за Откажано DocType: Communication,Integrations can use this field to set email delivery status,Интеграции можат да го користат ова поле за да го поставите статусот мејл за испорака +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Немате дозволи да ги откажувате сите поврзани документи. DocType: Web Form,Web Page Link Text,Веб-страница линк текст DocType: Page,System Page,систем Page DocType: Page,System Page,систем Page @@ -3335,6 +3453,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Прилагодувањата за <b>{0} се</b> извезуваат во: <br> {1} DocType: Website Settings,Include Search in Top Bar,Вклучи Барај во Топ Бар +DocType: Scheduled Job Type,Daily Long,Дневно долго DocType: GSuite Settings,Allow GSuite access,Дозволете GSuite пристап DocType: DocType,DESC,Ставка DocType: DocType,Naming,Именување @@ -3422,6 +3541,7 @@ DocType: Notification,Send days before or after the reference date,Испрат DocType: User,Allow user to login only after this hour (0-24),Им овозможи на корисникот да се најавите само по овој час (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Доделете еден по еден, во низа" DocType: Integration Request,Subscription Notification,Известување за претплата +DocType: Customize Form Field, Allow in Quick Entry ,Дозволи во брз влез apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,или прикачете а DocType: Auto Repeat,Start Date,Датум на почеток apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Вредност @@ -3436,6 +3556,7 @@ DocType: Google Drive,Backup Folder ID,Резервна копија на пап apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не во режим на програмери! Постави во site_config.json или да "прилагодено" DOCTYPE. DocType: Workflow State,globe,глобус DocType: System Settings,dd.mm.yyyy,дд.мм.гггг +DocType: Onboarding Slide Help Link,Video,Видео DocType: Assignment Rule,Priority,Приоритет DocType: Email Queue,Unsubscribe Param,отпишување Парам DocType: DocType,Hide Sidebar and Menu,Сокриј ја страничната лента и менито @@ -3447,6 +3568,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Дозволи увоз (п apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,с.р. DocType: DocField,Float,Носете DocType: Print Settings,Page Settings,Поставки на страница +DocType: Notification Settings,Notification Settings,Поставки за известување apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Зачувува... apps/frappe/frappe/www/update-password.html,Invalid Password,невалидна лозинка DocType: Contact,Purchase Master Manager,Купување мајстор менаџер @@ -3459,6 +3581,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Слика на главата DocType: Address,Party GSTIN,партијата GSTIN +DocType: Scheduled Job Type,Cron Format,Корн формат apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} DocType: SMS Settings,Use POST,Користете POST DocType: Communication,SMS,порака @@ -3503,18 +3626,20 @@ DocType: Workflow,Allow approval for creator of the document,Дозволи од apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Зачувај извештај DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,АПИ на крајните точки +DocType: DocType Action,Server Action,Акција на серверот apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Администратор пристапи {0} од {1} преку IP адреса {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Полето за родители мора да биде важечко име на полето apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Не успеа при промена на претплатата DocType: LDAP Settings,LDAP Group Field,Полето на групата LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Известување за претплатен документ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Е еднаква на apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Невалиден CSV формат -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Грешка во поврзувањето со апликацијата за QZ Tray ... <br><br> Треба да имате инсталирано и работи апликацијата QZ Tray, за да ја користите функцијата Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Кликнете овде за да ја преземете и инсталирате QZ лентата</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Кликнете овде за да дознаете повеќе за Raw print</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Сетови од поголем број на копии DocType: DocField,Do not allow user to change after set the first time,Не им овозможи на корисникот да се промени откако го постави првиот време apps/frappe/frappe/utils/data.py,1 year ago,пред 1 година +DocType: DocType,Links Section,Оддел за врски apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Погледнете Дневник на сите настани за печатење, преземање и извоз" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месец DocType: Contact,Contact,Контакт @@ -3545,11 +3670,12 @@ DocType: Dropbox Settings,Dropbox Settings,Прилагодување Dropbox DocType: About Us Settings,More content for the bottom of the page.,Повеќе содржини за дното на оваа страница. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Овој документ е вратен apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Резервната копија на Google Drive е успешна. +DocType: Webhook,Naming Series,Именување Серија DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE на кој оваа Работното е применливо. DocType: User,Enabled,Овозможено apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Не успеа да се заврши поставувањето apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Нов {0}: {1} -DocType: Tag Category,Category Name,Име на категоријата +DocType: Blog Category,Category Name,Име на категоријата apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Од родителите се бара да добијат податоци за табелата за деца apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Увоз претплатници DocType: Print Settings,PDF Settings,PDF Settings @@ -3585,6 +3711,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Календар apps/frappe/frappe/client.py,No document found for given filters,Не се пронајдени резултати за даден филтри документ apps/frappe/frappe/config/website.py,A user who posts blogs.,Корисник кој објавува блогови. +DocType: DocType Action,DocType Action,Дејство на документ apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Друга {0} со {1} Тоа име, изберете друго име" DocType: DocType,Custom?,Прилагодено? DocType: Website Settings,Website Theme Image,Веб-сајт Тема слика @@ -3594,6 +3721,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Не мо apps/frappe/frappe/config/integrations.py,Backup,backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Потребно е тип на документ за да се создаде табела со табла DocType: DocField,Read Only,Само за читање +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Не можам да создадам цел за жилет apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Нов Билтен DocType: Energy Point Log,Energy Point Log,Дневник на енергетска точка DocType: Print Settings,Send Print as PDF,Испрати печатење како PDF @@ -3602,6 +3730,7 @@ DocType: Workflow Transition,Allowed,Дозволено DocType: Dashboard Chart,Chart Source,Извор на графикони apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Може да има само едно стадо во форма apps/frappe/frappe/core/doctype/file/file.py,Unable to write file format for {0},Не можам да ја запишам датотеката формат за {0} +apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py,No records present in {0},Нема записи присутни во {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Restore to default settings?,Враќање на стандардните поставувања? apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid Home Page,Невалиден Дома apps/frappe/frappe/templates/includes/login/login.js,Invalid Login. Try again.,Неправилен Влезот. Обиди се повторно. @@ -3618,16 +3747,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П apps/frappe/frappe/www/login.html,Or login with,Или пријавете се со DocType: Error Snapshot,Locals,Локалните жители apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Доставени преку {0} на {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} го спомнавте во коментар во {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Изберете група по ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"на пример, (55 + 434) / 4 или = Math.sin (Math.PI / 2) ..." apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} е потребно DocType: Integration Request,Integration Type,Тип на интеграција DocType: Newsletter,Send Attachements,Испрати прилози +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Не се пронајдени филтри apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграција на контакти на Google. DocType: Transaction Log,Transaction Log,Дневник на трансакции apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Статистика заснована на перформансите од минатиот месец (од {0} до {1}) DocType: Contact Us Settings,City,Градот +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Сокријте картички за сите корисници apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Овозможете дозволи автоматско повторување за досипот {0} во формат за прилагодување DocType: DocField,Perm Level,Перм ниво apps/frappe/frappe/www/confirm_workflow_action.html,View document,Прикажи документ @@ -3639,6 +3769,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"Во глобалната пребарување" не е дозволено за видот {0} во ред {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"Во глобалната пребарување" не е дозволено за видот {0} во ред {1} DocType: Energy Point Log,Appreciation,Благодарност +DocType: Dashboard Chart,Number of Groups,Број на групи apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Приказ на листа DocType: Workflow,Don't Override Status,Не потиснување Статус apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,термин за пребарување @@ -3678,7 +3809,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,О DocType: S3 Backup Settings,cn-northwest-1,cn-северозапад-1 DocType: Dropbox Settings,Limit Number of DB Backups,Ограничете го бројот на DB резервни копии DocType: Custom DocPerm,Level,Ниво -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Последните 30 дена DocType: Custom DocPerm,Report,Извештај apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Износот мора да биде поголем од 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Поврзано со фиоката QZ! @@ -3695,6 +3825,7 @@ DocType: S3 Backup Settings,us-west-2,нас-запад-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Изберете табела за деца apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Предизвикувачка примарна акција apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Промени +DocType: Social Login Key,User ID Property,Имот на лична карта на корисникот DocType: Email Domain,domain name,име на домен DocType: Contact Email,Contact Email,Контакт E-mail DocType: Kanban Board Column,Order,Со цел @@ -3717,7 +3848,7 @@ DocType: Contact,Last Name,Презиме DocType: Event,Private,Приватен apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Без сигнали за денес DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Испрати Е-пошта Печати прилози како PDF (се препорачува) -DocType: Web Page,Left,Лево +DocType: Onboarding Slide Field,Left,Лево DocType: Event,All Day,Цел ден apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Изгледа дека нешто не е во ред со конфигурација исплата портал овој сајт. Нема исплата е направен. DocType: GCalendar Settings,State,Држава @@ -3748,7 +3879,6 @@ DocType: Workflow State,User,Корисникот DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Прикажи титула во прозорецот на прелистувачот како "Префикс - назив" DocType: Payment Gateway,Gateway Settings,Поставувања за портата apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,текст во типот на документот -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,се кандидира тестови apps/frappe/frappe/handler.py,Logged Out,одјавени apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Повеќе... DocType: System Settings,User can login using Email id or Mobile number,Корисникот може да се логирате со користење на е-мејл ID или мобилен број @@ -3764,6 +3894,7 @@ DocType: System Settings,Number Format,Формат на броеви apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резиме DocType: Event,Event Participants,Учесници на настанот DocType: Auto Repeat,Frequency,Фреквенција +DocType: Onboarding Slide,Slide Order,Ред за слајд DocType: Custom Field,Insert After,Вметнете По DocType: Event,Sync with Google Calendar,Синхронизирајте со Google Calendar DocType: Access Log,Report Name,Име на отчет @@ -3791,6 +3922,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Макс ширина за видот на валута е 100пк во ред {0} apps/frappe/frappe/config/website.py,Content web page.,Содржина на веб страница. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Додадете нова улога +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетете ја веб-страницата +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Нова распределба DocType: Google Contacts,Last Sync On,Последно синхронизирање е вклучено DocType: Deleted Document,Deleted Document,избришани документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Нешто не беше во ред @@ -3800,7 +3933,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пејзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,"Клиентската страна, скрипта екстензии во вклучите Javascript-" DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Евиденција за следните доктрипи ќе бидат филтрирани -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Распоред неактивен +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Распоред неактивен DocType: Blog Settings,Blog Introduction,Блог Вовед DocType: Global Search Settings,Search Priorities,Приоритети за пребарување DocType: Address,Office,Канцеларија @@ -3810,13 +3943,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Врска со табела DocType: User,Email Settings,Email Settings apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Капка овде DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Доколку е овозможено, корисникот може да се најавите од која било ИП-адреса користејќи Autor Two Factor, ова може да се постави и за сите корисници во System Settings" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Поставки за печатачот ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Ве молиме внесете ја вашата лозинка за да се продолжи apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Ве молиме внесете ја вашата лозинка за да се продолжи apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Јас apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} не е валиден држава apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Аплицирајте на сите типови документи -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ажурирање на енергетската точка +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Ажурирање на енергетската точка +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Работи само еднаш дневно ако е неактивен за (денови) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Ве молам изберете друг начин на плаќање. PayPal не поддржува трансакции во валута '{0}' DocType: Chat Message,Room Type,Вид на соба DocType: Data Import Beta,Import Log Preview,Внесете преглед преглед @@ -3825,6 +3958,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-круг DocType: LDAP Settings,LDAP User Creation and Mapping,Креирање и мапирање на корисници на LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Може да се најдат работи со барање "се најде портокал во клиенти +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Денешни настани apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Жал ми е! Корисникот треба да имаат целосен пристап до своето досие. ,Usage Info,Информации за користење apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Покажете кратенки на тастатурата @@ -3840,6 +3974,7 @@ DocType: DocField,Unique,Уникатен apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ценето на {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Делумен успех DocType: Email Account,Service,Услуги +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Поставување> Корисник DocType: File,File Name,Име на датотеката apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не најде {0} {0} ({1}) apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that","Упс, не Ви е дозволено да се знае дека" @@ -3852,6 +3987,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Комп DocType: GCalendar Settings,Enable,Овозможи DocType: Google Maps Settings,Home Address,Домашна адреса apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Можете да испратите само до 5000 записи во еден да одам. (Може да биде помал во некои случаи) +DocType: Report,"output in the form of `data = [columns, result]`","излез во форма на 'податоци = [колони, резултат] `" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Видови на применлив документ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Поставете правила за кориснички задачи. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недоволна дозвола за {0} @@ -3869,7 +4005,6 @@ DocType: Communication,To and CC,Да и КК DocType: SMS Settings,Static Parameters,Статични параметрите DocType: Chat Message,Room,соба apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ажурирани во {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Работните места во заднината не се извршуваат. Ве молиме контактирајте го администраторот DocType: Portal Settings,Custom Menu Items,Прилагодено ставки од менито apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Сите Слики прикачени на Слајдшоу на веб-страница треба да бидат јавни DocType: Workflow State,chevron-right,Шеврон-десничарската @@ -3881,9 +4016,11 @@ DocType: Website Settings,Brand HTML,Бренд HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,Земете резервна копија DocType: DocType,Allow Auto Repeat,Дозволи автоматско повторување apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нема вредности за прикажување +DocType: DocType,URL for documentation or help,URL за документација или помош DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Е-пошта шаблон apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Двете корисничко име и лозинка потребни +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Нека \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ве молиме да се освежи да го добиете најновите документ. DocType: User,Security Settings,Поставки за безбедност apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Додади Колона @@ -3892,6 +4029,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},Извоз извештај: {0} DocType: Auto Email Report,Filter Meta,Филтер Мета DocType: Web Page,Set Meta Tags,Поставете мета тагови +DocType: Email Account,Use SSL for Outgoing,Користете SSL за појдовни 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: S3 Backup Settings,Backup Limit,Ограничување на резервната DocType: Dashboard Chart,Line,Линија @@ -3923,4 +4061,3 @@ DocType: DocField,Ignore User Permissions,Игнорирај Корисничк apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Зачувано успешно apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Ве молиме прашајте го вашиот администратор за да ја потврдите вашата регистрација DocType: Domain Settings,Active Domains,активните домени -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Прикажи се Влез diff --git a/frappe/translations/ml.csv b/frappe/translations/ml.csv index d0521f61be..e2f148615d 100644 --- a/frappe/translations/ml.csv +++ b/frappe/translations/ml.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ദയവായി ഒരു തുക ഫീൽഡ് തിരഞ്ഞെടുക്കുക. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ഇറക്കുമതി ഫയൽ ലോഡുചെയ്യുന്നു ... DocType: Assignment Rule,Last User,അവസാന ഉപയോക്താവ് -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ഒരു പുതിയ ചുമതല, {0}, {1} സജ്ജമാക്കിയ ചെയ്തു. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,സെഷൻ സ്ഥിരസ്ഥിതികൾ സംരക്ഷിച്ചു apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ഫയൽ വീണ്ടും ലോഡുചെയ്യുക DocType: Email Queue,Email Queue records.,ഇമെയിൽ ക്യൂ രേഖകള്. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ട്രീ DocType: User,User Emails,ഉപയോക്തൃ ഇമെയിലുകൾ DocType: User,Username,ഉപയോക്തൃനാമം apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip ഇംപോർട്ട് ചെയ്യുക +DocType: Scheduled Job Type,Create Log,ലോഗ് സൃഷ്ടിക്കുക apps/frappe/frappe/model/base_document.py,Value too big,വളരെ വലുതാണ് മൂല്യം DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,റൺ സ്ക്രിപ്റ്റ് ടെസ്റ്റ് @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,പ്രതിമാസം DocType: Address,Uttarakhand,ഉത്തരാഖണ്ഡ് DocType: Email Account,Enable Incoming,ഇൻകമിംഗ് പ്രാപ്തമാക്കുക apps/frappe/frappe/core/doctype/version/version_view.html,Danger,അപായം -DocType: Address,Email Address,ഈ - മെയില് വിലാസം +apps/frappe/frappe/www/login.py,Email Address,ഈ - മെയില് വിലാസം DocType: Workflow State,th-large,ാം-വലിയ DocType: Communication,Unread Notification Sent,വായിക്കാത്ത അറിയിപ്പ് അയച്ചു apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,കയറ്റുമതി ചെയ്യുക അനുവദനീയമല്ല. നിങ്ങൾക്ക് കയറ്റുമതി {0} പങ്ക് ആവശ്യമാണ്. @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,പ DocType: DocType,Is Published Field,ഫീൽഡ് പ്രസിദ്ധീകരിച്ചു DocType: GCalendar Settings,GCalendar Settings,GCalendar ക്രമീകരണങ്ങൾ DocType: Email Group,Email Group,ഇമെയിൽ ഗ്രൂപ്പ് +apps/frappe/frappe/__init__.py,Only for {},വേണ്ടി മാത്രം {} DocType: Event,Pulled from Google Calendar,Google കലണ്ടറിൽ നിന്ന് വലിച്ചു DocType: Note,Seen By,പ്രത്യക്ഷമായി apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ഒന്നിലധികം ചേർക്കുക -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,നിങ്ങൾ കുറച്ച് എനർജി പോയിന്റുകൾ നേടി apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,സാധുവായ ഒരു ഉപയോക്തൃ ചിത്രമല്ല. DocType: Energy Point Log,Reverted,പഴയപടിയാക്കി DocType: Success Action,First Success Message,ആദ്യ വിജയം സന്ദേശം @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ഇഷ്ട apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},തെറ്റായ മൂല്യം: {0} {1} {2} ആയിരിക്കണം apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","മാറ്റുക ഫീൽഡ് സവിശേഷതകൾ (തോൽ, വായന, അനുമതി മുതലായവ)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,അഭിനന്ദിക്കുക +DocType: Notification Settings,Document Share,പ്രമാണ പങ്കിടൽ DocType: Workflow State,lock,ലോക്ക് apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ഞങ്ങളെ ബന്ധപ്പെടുക പേജ് വേണ്ടി ക്രമീകരണങ്ങൾ. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,അഡ്മിനിസ്ട്രേറ്റർ ലോഗിൻ ചെയ്ത ൽ @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","പ്രവർത്തനക്ഷമമാക്കിയിട്ടുണ്ടെങ്കിൽ, പ്രമാണം കണ്ടതായി അടയാളപ്പെടുത്തുന്നു, ഒരു ഉപയോക്താവ് ആദ്യമായി അത് തുറക്കുന്നു" DocType: Auto Repeat,Repeat on Day,ദിവസം ആവർത്തിക്കുക DocType: DocField,Color,കളർ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,എല്ലാം വായിച്ചതായി അടയാളപ്പെടുത്തുക DocType: Data Migration Run,Log,പ്രവേശിക്കുക DocType: Workflow State,indent-right,ഇൻഡന്റ്-വലത് DocType: Has Role,Has Role,റോൾ ഉണ്ട് @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ട്രേസ്ബാക്ക് കാണിക്കുക DocType: DocType,Default Print Format,സ്ഥിരസ്ഥിതി പ്രിന്റ് ഫോർമാറ്റ് DocType: Workflow State,Tags,ടാഗുകൾ +DocType: Onboarding Slide,Slide Type,സ്ലൈഡ് തരം apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ഒന്നുമില്ല: വർക്ക്ഫ്ലോ അന്ത്യം apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","നോൺ-അതുല്യമായ നിലവിലുള്ള മൂല്യങ്ങൾ അവിടെയുണ്ട് പോലെ {0} ഫീൽഡ്, {1} അതുല്യമായ ആയി സജ്ജമാക്കാൻ കഴിയില്ല" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ഡോക്യുമെന്റ് രീതികൾ @@ -134,7 +137,6 @@ DocType: Language,Guest,അതിഥി DocType: DocType,Title Field,ടൈറ്റിൽ ഫീൽഡ് DocType: Error Log,Error Log,പിശക് ലോഗ് apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,അസാധുവായ URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,അവസാന 7 ദിവസം apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" മാത്രം ചെറുതായി "എ.ബി.സി" അധികം ഊഹിക്കാൻ പ്രയാസമാകും പോലെ ആവർത്തനങ്ങൾ DocType: Notification,Channel,ചാനൽ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","നിങ്ങൾ ഈ അംഗീകാരമില്ലാത്ത കരുതുന്നെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്റർ രഹസ്യവാക്ക് മാറ്റാൻ ദയവായി." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,ക്ലയന്റ് apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,നിര തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ഈ ഫോം നിങ്ങൾ അതു ലഭ്യമായ ശേഷം പരിഷ്ക്കരിച്ചു DocType: Address,Himachal Pradesh,ഹിമാചൽ പ്രദേശ് +DocType: Notification Log,Notification Log,അറിയിപ്പ് ലോഗ് DocType: System Settings,"If not set, the currency precision will depend on number format","സജ്ജമാക്കിയില്ലെങ്കിൽ, കറൻസി കൃത്യത നമ്പർ ഫോർമാറ്റ് ആശ്രയിച്ചിരിക്കും" DocType: System Settings,"If not set, the currency precision will depend on number format","സജ്ജമാക്കിയില്ലെങ്കിൽ, കറൻസി കൃത്യത നമ്പർ ഫോർമാറ്റ് ആശ്രയിച്ചിരിക്കും" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ആകർഷണീയ ബാർ തുറക്കുക @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,അയയ്ക്കുക DocType: Workflow Action Master,Workflow Action Name,വർക്ക്ഫ്ലോ ആക്ഷൻ പേര് apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ലയിപ്പിക്കാൻ കഴിയില്ല -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ഒരു സിപ്പ് ഫയൽ DocType: Global Search DocType,Global Search DocType,ആഗോള തിരയൽ ഡോക് ടൈപ്പ് DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,ഇമെയിൽ അയച്ചു: apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ചാർട്ട് ടോഗിൾ ചെയ്യുക apps/frappe/frappe/desk/form/save.py,Did not cancel,റദ്ദാക്കാൻ ചെയ്തില്ലേ DocType: Social Login Key,Client Information,ക്ലയന്റ് വിവരം +DocType: Energy Point Rule,Apply this rule only once per document,ഒരു പ്രമാണത്തിന് ഒരു തവണ മാത്രം ഈ നിയമം പ്രയോഗിക്കുക DocType: Workflow State,plus,പ്ലസ് +DocType: DocField,Read Only Depends On,വായിക്കാൻ മാത്രം ആശ്രയിച്ചിരിക്കുന്നു apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Guest അല്ലെങ്കിൽ അഡ്മിനിസ്ട്രേറ്ററായി ലോഗുചെയ്തിരിക്കുന്നു DocType: Email Account,UNSEEN,അദൃശ്യജ്ഞാനം apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,പ്രമാണം മാനേജർ @@ -200,9 +205,11 @@ DocType: Communication,BCC,ബിസിസി DocType: Unhandled Email,Reason,കാരണം 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,പ്രവർത്തനമൊന്നുമില്ല +DocType: Server Script,Script Manager,സ്ക്രിപ്റ്റ് മാനേജർ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,പ്രവർത്തനമൊന്നുമില്ല apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,മൂന്നാം കക്ഷി ആപ്ലിക്കേഷനുകൾ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ആദ്യ ഉപയോക്താവിന് സിസ്റ്റം മാനേജർ (നിങ്ങൾ പിന്നീട് മാറ്റാനാകും) മാറും. +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ഇന്ന് ഇവന്റുകളൊന്നുമില്ല apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,നിങ്ങൾക്ക് സ്വയം അവലോകന പോയിന്റുകൾ നൽകാൻ കഴിയില്ല apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,തിരഞ്ഞെടുത്ത ഡോ ഇവന്റിനായി ഡോക്ടൈപ്പ് സമർപ്പിക്കേണ്ടതുണ്ട് DocType: Workflow State,circle-arrow-up,സർക്കിൾ-അമ്പ്-അപ്പ് @@ -249,6 +256,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} അപ്ഡേറ്റുചെയ്യുന്നു apps/frappe/frappe/core/doctype/report/report.js,Disable Report,അപ്രാപ്തമാക്കുക റിപ്പോർട്ട് DocType: Translation,Contributed Translation Doctype Name,സംഭാവന ചെയ്ത വിവർത്തന ഡോക്റ്റൈപ്പ് പേര് +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക DocType: PayPal Settings,Redirect To,റീഡയറക്ട് DocType: Data Migration Mapping,Pull,വലിക്കുക DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ജാവാസ്ക്രിപ്റ്റ് ഫോർമാറ്റ്: frappe.query_reports ['REPORTNAME'] = {} @@ -262,6 +270,7 @@ DocType: DocShare,Internal record of document shares,ഡോക്യുമെ DocType: Energy Point Settings,Review Levels,ലെവലുകൾ അവലോകനം ചെയ്യുക DocType: Workflow State,Comment,അഭിപ്രായം DocType: Data Migration Plan,Postprocess Method,പോസ്റ്റ് പ്രൊസസ് രീതി +DocType: DocType Action,Action Type,പ്രവർത്തന തരം apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ഫോട്ടോ എടുക്കുക DocType: Assignment Rule,Round Robin,റ ound ണ്ട് റോബിൻ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","നീ അവരെ ഭേദഗതി, പിന്നീട് അവരെ റദ്ദാക്കുന്നതിൽ ചെയ്ത് സമർപ്പിച്ച രേഖകൾ മാറ്റാൻ കഴിയും." @@ -275,6 +284,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ഇതായി സംരക്ഷിക്കുക DocType: Comment,Seen,കണ്ടതാണ് apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,കൂടുതൽ വിശദാംശങ്ങൾ കാണിക്കുക +DocType: Server Script,Before Submit,സമർപ്പിക്കുന്നതിന് മുമ്പ് DocType: System Settings,Run scheduled jobs only if checked,ഷെഡ്യൂൾ ജോലികൾ പ്രവർത്തിപ്പിക്കുക ചെക്ക് ചെയ്ത മാത്രം ചെയ്താൽ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,വിഭാഗം തലക്കെട്ടുകൾ തയ്യാറാണെങ്കിൽ മാത്രമേ കാണിക്കൂ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,ആർക്കൈവ് @@ -287,10 +297,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ഡ്രോപ്പ്ബേ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,ഇച്ഛാനുസൃത സ്ക്രിപ്റ്റിന്റെ add_fetch ക്രമീകരണത്തിൽ തെറ്റായ ഫീൽഡ് നാമം <b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ഏത് കോൺടാക്റ്റാണ് സമന്വയിപ്പിക്കേണ്ടതെന്ന് Google കോൺടാക്റ്റുകൾ തിരഞ്ഞെടുക്കുക. DocType: Web Page,Main Section (HTML),പ്രധാന വിഭാഗം (HTML) +DocType: Scheduled Job Type,Annual,വാർഷിക DocType: Workflow State,headphones,ഹെഡ്ഫോണുകൾ apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,പാസ്വേഡ് ആവശ്യമാണ് അല്ലെങ്കിൽ തിരഞ്ഞെടുക്കുക പാസ്വേഡ് കാത്തിരിക്കുന്നു DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ഉദാ replies@yourcomany.com. എല്ലാ മറുപടികളും ഈ ഇൻബോക്സിലേക്ക് വരും. DocType: Slack Webhook URL,Slack Webhook URL,സ്ലാക്ക് വെബ്ഹുക്ക് URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","വിസാർഡിലെ സ്ലൈഡിന്റെ ക്രമം നിർണ്ണയിക്കുന്നു. സ്ലൈഡ് പ്രദർശിപ്പിക്കുന്നില്ലെങ്കിൽ, മുൻ‌ഗണന 0 ആയി സജ്ജമാക്കണം." DocType: Data Migration Run,Current Mapping,നിലവിലെ മാപ്പിംഗ് apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,"സാധുവായ ഇമെയിൽ, പേര് ആവശ്യമാണ്" apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,എല്ലാ അറ്റാച്ചുമെന്റുകളും സ്വകാര്യമാക്കുക @@ -314,6 +326,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,ട്രാൻസിഷൻ നിയമങ്ങൾ apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,പ്രിവ്യൂവിൽ ആദ്യത്തെ {0} വരികൾ മാത്രം കാണിക്കുന്നു apps/frappe/frappe/core/doctype/report/report.js,Example:,ഉദാഹരണം: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,നിയന്ത്രണങ്ങൾ DocType: Workflow,Defines workflow states and rules for a document.,ഒരു പ്രമാണം വേണ്ടി വർക്ക്ഫ്ലോ സംസ്ഥാനങ്ങളും നിയമങ്ങൾ നിഷ്കർഷിക്കുന്നു. DocType: Workflow State,Filter,ഫിൽറ്റർ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},കൂടുതൽ വിവരങ്ങൾക്ക് പിശക് ലോഗ് പരിശോധിക്കുക: {0} @@ -325,6 +338,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ജോലി apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ലോഗ് ഔട്ട്: {1} DocType: Address,West Bengal,പശ്ചിമ ബംഗാൾ +DocType: Onboarding Slide,Information,വിവരങ്ങൾ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable ആണെങ്കിലോ നിയോഗിക്കുകയോ സമർപ്പിക്കുക സജ്ജീകരിക്കാൻ കഴിയില്ല DocType: Transaction Log,Row Index,വരിാ ഇന്ഡക്സ് DocType: Social Login Key,Facebook,ഫേസ് @@ -342,7 +356,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ഉത് DocType: Web Form,Button Help,ബട്ടൺ സഹായം DocType: Kanban Board Column,purple,പർപ്പിൾ DocType: About Us Settings,Team Members,ടീം അംഗങ്ങൾ +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,നിഷ്‌ക്രിയ സൈറ്റുകൾക്കായി ദിവസത്തിൽ ഒരിക്കൽ മാത്രം ഷെഡ്യൂൾ ചെയ്ത ജോലികൾ പ്രവർത്തിപ്പിക്കും. 0 ആയി സജ്ജമാക്കിയാൽ സ്ഥിരസ്ഥിതി 4 ദിവസം. DocType: Assignment Rule,System Manager,സിസ്റ്റം മാനേജർ +DocType: Scheduled Job Log,Scheduled Job,ഷെഡ്യൂൾ ചെയ്ത ജോലി DocType: Custom DocPerm,Permissions,അനുമതികൾ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ആന്തരിക സംയോജനത്തിനായി സ്ലക്ക് വെബ്ഷൂക്കുകൾ DocType: Dropbox Settings,Allow Dropbox Access,ഡ്രോപ്പ്ബോക്സ് അക്സസ് അനുവദിക്കുക @@ -394,6 +410,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ബ DocType: Email Flag Queue,Email Flag Queue,ഇമെയിൽ ഫ്ലാഗ് ക്യൂ DocType: Access Log,Columns / Fields,നിരകൾ / ഫീൽഡുകൾ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,പ്രിന്റ് ഫോർമാറ്റുകളുടെ സ്റ്റൈൽഷീറ്റുകൾ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,ഒരു ഡാഷ്‌ബോർഡ് ചാർട്ട് സൃഷ്‌ടിക്കുന്നതിന് മൊത്തം ഫംഗ്ഷൻ ഫീൽഡ് ആവശ്യമാണ് apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,{0} തുറക്കുക തിരിച്ചറിയാൻ കഴിയില്ല. മറ്റെന്തെങ്കിലും ശ്രമിക്കുക. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,നിങ്ങളുടെ വിവരം സമർപ്പിച്ചു apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ഉപയോക്താവ് {0} ഇല്ലാതാക്കാൻ കഴിയില്ല @@ -410,7 +427,7 @@ DocType: Property Setter,Field Name,ഫീൽഡ് പേര് DocType: Assignment Rule,Assign To Users,ഉപയോക്താക്കൾക്ക് നിയോഗിക്കുക apps/frappe/frappe/public/js/frappe/utils/utils.js,or,അഥവാ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ഘടകം പേര് ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,തുടരുക +DocType: Onboarding Slide,Continue,തുടരുക apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google സംയോജനം പ്രവർത്തനരഹിതമാക്കി. DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,സർട്ടിഫിക്കറ്റ് @@ -423,11 +440,13 @@ DocType: Energy Point Log,Review,അവലോകനം DocType: User,Restrict IP,ഐപി പരിമിതപ്പെടുത്തുക apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ഡാഷ്ബോർഡ് apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ഈ സമയം ഇമെയിലുകൾ അയക്കാൻ പറ്റുന്നില്ല +DocType: Notification Log,Email Content,ഇമെയിൽ ഉള്ളടക്കം apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ഒരു കമാൻഡ് തിരയുക അല്ലെങ്കിൽ ടൈപ്പ് DocType: Activity Log,Timeline Name,ടൈംലൈൻ പേര് DocType: Email Account,e.g. smtp.gmail.com,ഉദാ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ഒരു പുതിയ നിയമം ചേർക്കുക DocType: Contact,Sales Master Manager,സെയിൽസ് മാസ്റ്റർ മാനേജർ +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,നിങ്ങളുടെ അപ്ലിക്കേഷൻ പ്രവർത്തിക്കുന്നതിന് നിങ്ങൾ JavaScript പ്രവർത്തനക്ഷമമാക്കേണ്ടതുണ്ട്. DocType: User Permission,For Value,മൂല്യം DocType: Event,Google Calendar ID,Google കലണ്ടർ ഐഡി apps/frappe/frappe/www/complete_signup.html,One Last Step,അവസാന ഘട്ടം @@ -442,6 +461,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP മിഡിൽ നെയിം ഫീൽഡ് DocType: GCalendar Account,Allow GCalendar Access,GCalendar ആക്സസ്സ് അനുവദിക്കുക apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} നിർബന്ധിത ഫീൽഡ് ആണ് +DocType: DocType,Documentation Link,ഡോക്യുമെന്റേഷൻ ലിങ്ക് apps/frappe/frappe/templates/includes/login/login.js,Login token required,ലോഗിൻ ടോക്കൺ ആവശ്യമാണ് apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,പ്രതിമാസ റാങ്ക്: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ഒന്നിലധികം ലിസ്റ്റ് ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക @@ -463,6 +483,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,പ്രമാണം യുആർഎൽ DocType: Version,Table HTML,പട്ടിക എച്ച്ടിഎംഎൽ apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,വരിക്കാരെ ചേര്ക്കുക +DocType: Notification Log,Energy Point,എനർജി പോയിന്റ് apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,ഇന്ന് വേണ്ടി വരാനിരിക്കുന്ന DocType: Google Calendar,Push to Google Calendar,Google കലണ്ടറിലേക്ക് പുഷ് ചെയ്യുക DocType: Notification Recipient,Email By Document Field,ഡോക്യുമെന്റ് ഫീൽഡ് ഇമെയിൽ @@ -478,12 +499,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ദൂരെ DocType: Currency,Fraction Units,അംശം യൂണിറ്റുകൾ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} നിന്ന് {1} {2} ലേക്ക് -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,ചെയ്തതായി അടയാളപ്പെടുത്തുക DocType: Chat Message,Type,തരം DocType: Google Settings,OAuth Client ID,OAuth ക്ലയൻറ് ID DocType: Auto Repeat,Subject,വിഷയം apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ഡെസ്കിലേക്ക് മടങ്ങുക DocType: Web Form,Amount Based On Field,ഫീൽഡ് അടിസ്ഥാനമാക്കി തുക +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} ന് ട്രാക്കുചെയ്‌ത പതിപ്പുകളൊന്നുമില്ല. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ഉപയോക്താവ് പങ്കിടുക നിര്ബന്ധമാണ് DocType: DocField,Hidden,മറച്ചത് DocType: Web Form,Allow Incomplete Forms,അപൂർണം ഫോം അനുവദിക്കുക @@ -506,6 +527,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,പരിശോധനയ്ക്കായി നിങ്ങളുടെ ഇമെയിൽ പരിശോധിക്കുക apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,തൊഴുത്തിൽ ഫോം അവസാനത്തിൽ ആകാൻ പാടില്ല DocType: Communication,Bounced,ദുശ്മൻ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ന്റെ DocType: Deleted Document,Deleted Name,ഇല്ലാതാക്കി പേര് apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,സിസ്റ്റവും വെബ്സൈറ്റ് ഉപയോക്താക്കൾ DocType: Workflow Document State,Doc Status,ഡോക് അവസ്ഥ @@ -516,6 +538,7 @@ DocType: Language,Language Code,ഭാഷ കോഡ് DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,കുറിപ്പ്: പരാജയപ്പെട്ട ബാക്കപ്പുകളുടെ സ്ഥിരസ്ഥിതി ഇമെയിലുകൾ അയച്ചിട്ടുണ്ട്. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,ഫിൽറ്റർ ചേർക്കുക apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},താഴെക്കൊടുത്തിരിക്കുന്ന നമ്പറുകൾ അയയ്ക്കുന്ന എസ്എംഎസ്: {0} +DocType: Notification Settings,Assignments,അസൈൻമെന്റുകൾ apps/frappe/frappe/utils/data.py,{0} and {1},"{0}, {1}" apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ഒരു സംഭാഷണം ആരംഭിക്കുക. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",എല്ലായ്പ്പോഴും "ഡ്രാഫ്റ്റ്" പ്രിന്റിംഗ് ഡ്രാഫ്റ്റ് രേഖകൾ വേണ്ടി തലക്കെട്ട് ചേർക്കാൻ @@ -524,6 +547,7 @@ DocType: Data Migration Run,Current Mapping Start,നിലവിലെ മാ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ഇമെയിൽ സ്പാം അടയാളപ്പെടുത്തി DocType: Comment,Website Manager,വെബ്സൈറ്റ് മാനേജർ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ഫയൽ അപ്ലോഡ് വിച്ഛേദിച്ചു. വീണ്ടും ശ്രമിക്കുക. +DocType: Data Import Beta,Show Failed Logs,പരാജയപ്പെട്ട ലോഗുകൾ കാണിക്കുക apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,വിവർത്തനങ്ങൾ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,നിങ്ങൾ തിരഞ്ഞെടുത്ത ഡ്രാഫ്റ്റ് അല്ലെങ്കിൽ റദ്ദാക്കി പ്രമാണങ്ങൾ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{2} {2} ഉപയോഗിച്ച് പ്രമാണത്തിന് {0} @@ -531,7 +555,9 @@ apps/frappe/frappe/model/document.py,Document Queued,പ്രമാണം ക DocType: GSuite Templates,Destination ID,ലക്ഷ്യ ഐഡി DocType: Desktop Icon,List,പട്ടിക DocType: Activity Log,Link Name,ലിങ്ക് പേര് +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,നിങ്ങൾ \ DocType: System Settings,mm/dd/yyyy,മില്ലീമീറ്റർ / / വർഷം +DocType: Onboarding Slide,Onboarding Slide,ഓൺബോർഡിംഗ് സ്ലൈഡ് apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,അസാധുവായ പാസ്വേഡ്: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,അസാധുവായ പാസ്വേഡ്: DocType: Print Settings,Send document web view link in email,ഇമെയിലിൽ പ്രമാണം വെബ് കാഴ്ച ലിങ്ക് അയയ്ക്കുക @@ -563,6 +589,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Assignment Rule Day,Wednesday,ബുധനാഴ്ച apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,ചിത്രം ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം DocType: Chat Token,Token,ടോക്കൺ +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ഫീൽഡ് നാമം {0} നിയന്ത്രിച്ചിരിക്കുന്നു DocType: Property Setter,ID (name) of the entity whose property is to be set,ആരുടെ പ്രോപ്പർട്ടി സജ്ജീകരിക്കാൻ എന്നതാണ് സ്ഥാപനത്തിന്റെ ഐഡി (പേര്) DocType: Website Settings,Website Theme Image Link,വെബ്സൈറ്റ് തീം ഇമേജ് ലിങ്ക് DocType: Web Form,Sidebar Items,സൈഡ്ബാർ ഇനങ്ങൾ @@ -591,6 +618,7 @@ DocType: Kanban Board Column,darkgrey,ഇരുണ്ട ചാരനിറം apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},വിജയകരം: {0} {1} വരെ apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ഡെമോ ഉപയോക്താക്കളുള്ള വിശദാംശങ്ങൾ മാറ്റാൻ കഴിയില്ല. https://erpnext.com ഒരു പുതിയ അക്കൗണ്ട് പ്രവേശന ദയവായി apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ഡ്രോപ്പ് +DocType: Dashboard Chart,Aggregate Function Based On,മൊത്തം പ്രവർത്തനം അടിസ്ഥാനമാക്കി apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,മാറ്റങ്ങൾ വരുത്താൻ ഇത് തനിപ്പകർപ്പ് ദയവായി apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,സംരക്ഷിക്കാൻ Enter അമർത്തുക apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,പിഡിഎഫ് തലമുറ കാരണം തകർന്നുപോകും ഇമേജ് കണ്ണികളുടെ പരാജയപ്പെട്ടു @@ -604,7 +632,9 @@ DocType: Notification,Days Before,മുമ്പുള്ള ദിവസങ് apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ദൈനംദിന ഇവന്റുകൾ ഒരേ ദിവസം തന്നെ പൂർത്തിയാക്കണം. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,എഡിറ്റുചെയ്യുക ... DocType: Workflow State,volume-down,വോള്യം-ഡൗൺ +DocType: Onboarding Slide,Help Links,സഹായ ലിങ്കുകൾ apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ഈ ഐപി വിലാസത്തിൽ നിന്ന് ആക്സസ് അനുവദനീയമല്ല +DocType: Notification Settings,Enable Email Notifications,ഇമെയിൽ അറിയിപ്പുകൾ പ്രാപ്തമാക്കുക apps/frappe/frappe/desk/reportview.py,No Tags,ടാഗുകൾ ഇല്ല DocType: Email Account,Send Notification to,ഇതിനായി വിജ്ഞാപനം അയയ്ക്കുക DocType: DocField,Collapsible,സൌകര്യങ്ങളൊക്കെ @@ -633,6 +663,7 @@ DocType: Google Drive,Last Backup On,അവസാന ബാക്കപ്പ് DocType: Customize Form Field,Customize Form Field,ഫോം ഫീൽഡ് ഇഷ്ടാനുസൃതമാക്കുക DocType: Energy Point Rule,For Document Event,പ്രമാണ ഇവന്റിനായി DocType: Website Settings,Chat Room Name,റൂം നാമം ചാറ്റ് ചെയ്യുക +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,മാറ്റമില്ല DocType: OAuth Client,Grant Type,ഗ്രാന്റ് ഇനം apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ഒരു ഉപയോക്താവ് വായിക്കാവുന്ന ആയ പ്രമാണങ്ങൾ പരിശോധിക്കുക DocType: Deleted Document,Hub Sync ID,ഹബ് സമന്വയ ID @@ -640,6 +671,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ത DocType: Auto Repeat,Quarterly,പാദവാർഷികം apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","ഇമെയിൽ ഡൊമെയ്ൻ ഈ അക്കൗണ്ടിന് കോൺഫിഗർ, സൃഷ്ടിക്കുക?" DocType: User,Reset Password Key,പാസ്വേഡ് കീ പുനഃസജ്ജമാക്കുക +DocType: Dashboard Chart,All Time,എല്ലാ സമയവും apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} എന്നതിനുള്ള നിയമവിരുദ്ധമായ പ്രമാണം നില DocType: Email Account,Enable Auto Reply,ഓട്ടോ മറുപടി പ്രവർത്തനക്ഷമമാക്കുക apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,കണ്ടില്ലേ @@ -652,6 +684,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,സ DocType: Email Account,Notify if unreplied,Unreplied എങ്കിൽ അറിയിക്കുക apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,"QR കോഡ് സ്കാൻ ചെയ്യുക, തുടർന്ന് ലഭിക്കുന്ന കോഡ് നൽകുക." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ഗ്രേഡിയന്റുകൾ പ്രാപ്തമാക്കുക +DocType: Scheduled Job Type,Hourly Long,മണിക്കൂർ ദൈർഘ്യം DocType: System Settings,Minimum Password Score,മിനിമം പാസ്വേഡ് സ്കോർ DocType: System Settings,Minimum Password Score,മിനിമം പാസ്വേഡ് സ്കോർ DocType: DocType,Fields,ഫീൾഡുകൾ @@ -660,11 +693,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,പാര apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 ബാക്കപ്പ് പൂർത്തിയായി! apps/frappe/frappe/config/desktop.py,Developer,ഡെവലപ്പർ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,സൃഷ്ടിച്ചത് +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},ഇത് പ്രവർത്തനക്ഷമമാക്കുന്നതിന് ഇനിപ്പറയുന്ന ലിങ്കിലെ നിർദ്ദേശങ്ങൾ പാലിക്കുക: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} നിരയിൽ {1} ഇരുവരും URL ഉം കുട്ടി വസ്തുക്കൾ കഴിയില്ല apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},ഇനിപ്പറയുന്ന പട്ടികകൾ‌ക്കായി കുറഞ്ഞത് ഒരു വരി ഉണ്ടായിരിക്കണം: {0} DocType: Print Format,Default Print Language,സ്ഥിര അച്ചടി ഭാഷ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,പൂർവ്വികർ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,റൂട്ട് {0} ഇല്ലാതാക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,പരാജയപ്പെട്ട ലോഗുകളൊന്നുമില്ല apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,ഇതുവരെ പോസ്റ്റ് apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","SMS ക്രമീകരണങ്ങൾ വഴി, ഒരു പ്രാമാണീകരണ രീതിയായി അതിനെ സജ്ജമാക്കുന്നതിന് മുമ്പ് SMS സജ്ജീകരിക്കുക" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,DocType ആൻഡ് പേര് ആവശ്യമാണ് രണ്ടും @@ -687,6 +722,7 @@ DocType: Website Settings,Footer Items,അടിക്കുറിപ്പ് apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,മെനു DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,നിത്യജീവിതത്തിലെ +DocType: Onboarding Slide,Max Count,പരമാവധി എണ്ണം apps/frappe/frappe/config/users_and_permissions.py,User Roles,ഉപയോക്താവിന്റെ റോളുകൾ DocType: Property Setter,Property Setter overrides a standard DocType or Field property,പ്രോപ്പർട്ടി ബാഷ്പസാന്ദ്രതയും ഒരു സാധാരണ DocType അല്ലെങ്കിൽ ഫീൽഡ് പ്രോപ്പർട്ടി തിരുത്തുന്നു apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,അപ്ഡേറ്റ് ചെയ്യാൻ കഴിയില്ല: തെറ്റായ / കാലഹരണപ്പെട്ടു ലിങ്ക്. @@ -705,6 +741,7 @@ DocType: Footer Item,"target = ""_blank""",ലക്ഷ്യം = "_blank& DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,ഹോസ്റ്റ് DocType: Data Import Beta,Import File,ഫയൽ ഇമ്പോർട്ടുചെയ്യുക +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,ടെംപ്ലേറ്റ് പിശക് apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,നിരയുടെ <b>{0}</b> ഇതിനകം നിലവിലുണ്ട്. DocType: ToDo,High,ഹൈ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,പുതിയ ഇവന്റ് @@ -720,6 +757,7 @@ DocType: Web Form Field,Show in filter,ഫിൽട്ടറിൽ കാണി DocType: Address,Daman and Diu,ദാമൻ ആൻഡ് ദിയു apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,പ്രോജക്ട് DocType: Address,Personal,വ്യക്തിപരം +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,അസംസ്കൃത അച്ചടി ക്രമീകരണങ്ങൾ ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,വിശദാംശങ്ങൾക്ക് https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region കാണുക. apps/frappe/frappe/config/settings.py,Bulk Rename,ബൾക്ക് പേരു്മാറ്റുക DocType: Email Queue,Show as cc,സിസി പോലെ കാണിക്കുക @@ -729,6 +767,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,വീഡിയോ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ഞങ്ങളുമായി ബന്ധപ്പെടുക എന്ന താൾ വേണ്ടി ആമുഖ വിവരങ്ങൾ DocType: Print Style,CSS,സി.എസ്.എസ് DocType: Workflow State,thumbs-down,കൈകാലുകളുടെ-ഡൗൺ +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,പ്രമാണങ്ങൾ റദ്ദാക്കുന്നു DocType: User,Send Notifications for Email threads,ഇമെയിൽ ത്രെഡുകൾക്കായി അറിയിപ്പുകൾ അയയ്‌ക്കുക apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,പ്രൊഫ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,"എന്നല്ല, ഡവലപ്പർ മോഡിൽ" @@ -736,7 +775,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ഫയൽ DocType: DocField,In Global Search,ആഗോള തിരയലിൽ DocType: System Settings,Brute Force Security,ബ്രൂട്ട് ഫോഴ്സ് സെക്യൂരിറ്റി DocType: Workflow State,indent-left,ഇൻഡന്റ്-ഇടത് -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,{0}: അതു ഈ ചിത്രം ഇല്ലാതാക്കാൻ മാറഡോണ. നിങ്ങളുടെ സിസ്റ്റം മാനേജർ ബന്ധപ്പെടുക. DocType: Currency,Currency Name,നാണയ പേര് apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ഇമെയിലുകൾ @@ -749,11 +787,13 @@ DocType: Energy Point Rule,User Field,ഉപയോക്തൃ ഫീൽഡ് DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,ഇല്ലാതാക്കുക പുഷ് ചെയ്യുക apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} {1} {2} വേണ്ടി ഇതിനകം അൺസബ്സ്ക്രൈബുചെയ്യപ്പെടും +DocType: Scheduled Job Type,Stopped,നിർത്തി apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,നീക്കം ചെയ്തില്ലേ apps/frappe/frappe/desk/like.py,Liked,ഇഷ്ടപ്പെട്ട apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,ഇപ്പോൾ അയയ്ക്കുക apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","സ്റ്റാൻഡേർഡ് ദൊച്ത്യ്പെ, സ്ഥിര പ്രിന്റ് ഫോർമാറ്റിൽ കഴിയില്ല ഇഷ്ടാനുസൃതമാക്കുക ഫോം ഉപയോഗിക്കുക" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","സ്റ്റാൻഡേർഡ് ദൊച്ത്യ്പെ, സ്ഥിര പ്രിന്റ് ഫോർമാറ്റിൽ കഴിയില്ല ഇഷ്ടാനുസൃതമാക്കുക ഫോം ഉപയോഗിക്കുക" +DocType: Server Script,Allow Guest,അതിഥിയെ അനുവദിക്കുക DocType: Report,Query,അന്വേഷണം DocType: Customize Form,Sort Order,ക്രമീകരണം apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'പട്ടിക കാഴ്ചയിൽ' വരി ടൈപ്പ് {0} അനുവദിച്ചിട്ടില്ല {1} @@ -774,10 +814,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,രണ്ട് ഫാക്ടർ പ്രാമാണീകരണ രീതി apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ആദ്യം പേര് സജ്ജമാക്കി റെക്കോർഡ് സംരക്ഷിക്കുക. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 റെക്കോർഡുകൾ +DocType: DocType Link,Link Fieldname,ഫീൽഡ് നാമം ലിങ്ക് ചെയ്യുക apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} ഇവരുമായി apps/frappe/frappe/email/queue.py,Unsubscribe,അൺസബ്സ്ക്രൈബ് DocType: View Log,Reference Name,റഫറൻസ് പേര് apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ഉപയോക്താവിനെ മാറ്റുക +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ആദ്യം apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,വിവർത്തനങ്ങൾ അപ്ഡേറ്റുചെയ്യുക DocType: Error Snapshot,Exception,ഒഴിവാക്കൽ DocType: Email Account,Use IMAP,IMAP ഉപയോഗിക്കുക @@ -792,6 +834,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,വർക്ക്ഫ്ലോ സംസ്ഥാനത്തിന്റെ സംക്രമണം നിർവ്വചനത്തിൽ നിയമങ്ങൾ. DocType: File,Folder,ഫോൾഡർ DocType: Website Route Meta,Website Route Meta,വെബ്‌സൈറ്റ് റൂട്ട് മെറ്റാ +DocType: Onboarding Slide Field,Onboarding Slide Field,ഓൺബോർഡിംഗ് സ്ലൈഡ് ഫീൽഡ് DocType: DocField,Index,സൂചിക DocType: Email Group,Newsletter Manager,വാർത്താക്കുറിപ്പ് മാനേജർ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,ഓപ്ഷൻ 1 @@ -874,6 +917,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,തിര DocType: Workflow State,text-width,ടെക്സ്റ്റ്-വീതി apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ഈ റെക്കോർഡ് മാക്സിമം സഹപത്രങ്ങൾ പരിധി എത്തി. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ഫയൽനാമം അല്ലെങ്കിൽ വിപുലീകരണം ഉപയോഗിച്ച് തിരയുക +DocType: Onboarding Slide,Slide Title,സ്ലൈഡ് ശീർഷകം DocType: Notification,View Properties (via Customize Form),(കസ്റ്റമൈസ് ഫോം വഴി) അവതരണരീതികള്പ്രയോഗിച്ചുകൊണ്ടിരിയ്ക്കുന്നു apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,അത് തിരഞ്ഞെടുക്കാൻ ഒരു ഫയലിൽ ക്ലിക്കുചെയ്യുക. DocType: Note Seen By,Note Seen By,കണ്ട കുറിപ്പ് @@ -900,13 +944,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL പങ്കിടുക DocType: System Settings,Allow Consecutive Login Attempts ,തുടർച്ചയായ പ്രവേശന പരീക്ഷണങ്ങൾ അനുവദിക്കുക apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,പേയ്മെന്റ് പ്രോസസ് സമയത്ത് ഒരു പിശക് സംഭവിച്ചു. ഞങ്ങളെ ബന്ധപ്പെടുക. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,സ്ലൈഡ് തരം സൃഷ്ടിക്കുകയോ ക്രമീകരണങ്ങളോ ആണെങ്കിൽ {ref_doctype} .py ഫയലിൽ ഒരു 'create_onboarding_docs' രീതി ഉണ്ടായിരിക്കണം. സ്ലൈഡ് പൂർത്തിയായ ശേഷം എക്സിക്യൂട്ട് ചെയ്യേണ്ട ഫയൽ ഫയൽ. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ദിവസം മുമ്പ് DocType: Email Account,Awaiting Password,പാസ്വേഡ് കാത്തിരിക്കുന്നു DocType: Address,Address Line 1,വിലാസ ലൈൻ 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,അഭിലഷണീയം DocType: Contact,Company Name,കമ്പനി പേര് DocType: Custom DocPerm,Role,റോൾ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ക്രമീകരണങ്ങൾ ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,നിങ്ങളുടെ ബ്ര .സറിലേക്ക് apps/frappe/frappe/utils/data.py,Cent,സെന്റ് ,Recorder,റെക്കോർഡർ @@ -966,6 +1010,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","നിങ്ങളുടെ ഇമെയിൽ സ്വീകർത്താവിന് തുറന്നിട്ടുണ്ടെങ്കിൽ ട്രാക്കുചെയ്യുക. <br> ശ്രദ്ധിക്കുക: ഒന്നിലധികം സ്വീകർത്താക്കൾക്ക് നിങ്ങൾ അയയ്ക്കുകയാണെങ്കിൽ, ഒരു സ്വീകർത്താവൻ ഇമെയിൽ വായിച്ചാലും, അത് "തുറന്നു"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ആവശ്യമുള്ള കാണുന്നില്ല മൂല്യങ്ങൾ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google കോൺ‌ടാക്റ്റ് ആക്സസ് അനുവദിക്കുക +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,നിയന്ത്രിച്ചിരിക്കുന്നു DocType: Data Migration Connector,Frappe,അവളെന്നോട് apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,വായിച്ചിട്ടില്ലെന്ന് അടയാളപ്പെടുത്തുക DocType: Activity Log,Operation,ഓപ്പറേഷൻ @@ -1019,6 +1064,7 @@ DocType: Web Form,Allow Print,പ്രിന്റ് അനുവദിക് DocType: Communication,Clicked,ക്ലിക്കുചെയ്ത apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,പിന്തുടരരുത് apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ഇതിനായി '{0}' {1} അനുമതിയില്ല +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,അയയ്ക്കാൻ ഷെഡ്യൂൾ DocType: DocType,Track Seen,ട്രാക്ക് കാണുന്നത് DocType: Dropbox Settings,File Backup,ഫയൽ ബാക്കപ്പ് @@ -1027,12 +1073,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} കണ് apps/frappe/frappe/config/customization.py,Add custom forms.,ഇച്ഛാനുസൃത ഫോമുകൾ ചേർക്കുക. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ൽ {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ഈ പ്രമാണം സമർപ്പിച്ചു -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,സിസ്റ്റം പല പ്രീ-നിർവചിക്കപ്പെട്ട വേഷങ്ങൾ നൽകുന്നു. നിങ്ങൾ മാളിക അനുമതികൾ സജ്ജീകരിക്കാൻ പുതിയ വേഷങ്ങൾ ചേർക്കാൻ കഴിയും. DocType: Communication,CC,സിസി DocType: Country,Geo,ജിയോ DocType: Data Migration Run,Trigger Name,ട്രിഗ്ഗർ പേര് -apps/frappe/frappe/public/js/frappe/desk.js,Domains,മണ്ഡലങ്ങൾ +DocType: Onboarding Slide,Domains,മണ്ഡലങ്ങൾ DocType: Blog Category,Blog Category,ബ്ലോഗ് വർഗ്ഗം apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,താഴെ വ്യവസ്ഥയിൽ പരാജയപ്പെട്ടാൽ കാരണം മാപ്പ് കഴിയുന്നില്ല: DocType: Role Permission for Page and Report,Roles HTML,റോളുകൾ എച്ച്ടിഎംഎൽ @@ -1073,7 +1118,6 @@ DocType: Assignment Rule Day,Saturday,ശനിയാഴ്ച DocType: User,Represents a User in the system.,സിസ്റ്റം ഒരു ഉപയോക്താവ് പ്രതിനിധീകരിക്കുന്നത്. DocType: List View Setting,Disable Auto Refresh,യാന്ത്രിക പുതുക്കൽ അപ്രാപ്‌തമാക്കുക DocType: Comment,Label,ലേബൽ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","നിങ്ങൾ {1} ലേ ആ ചുമതല {0}, അടച്ചു." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ഈ വിൻഡോ അടയ്ക്കുക DocType: Print Format,Print Format Type,പ്രിന്റ് ഫോർമാറ്റ് തരം DocType: Newsletter,A Lead with this Email Address should exist,ഈ ഇമെയിൽ വിലാസം ഉപയോഗിച്ച് ലീഡ് സ്നേഹങ്ങളും @@ -1089,6 +1133,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,ഔട്ട്ഗേ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ഒരു തിരഞ്ഞെടുക്കുക DocType: Data Export,Filter List,ഫിൽട്ടർ ലിസ്റ്റ് DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,ഓട്ടോ മറുപടി സന്ദേശം DocType: Data Migration Mapping,Condition,കണ്ടീഷൻ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} മണിക്കൂർ മുമ്പ് @@ -1107,12 +1152,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ബേസ് സമ്പാദകർ DocType: Communication,Sent Read Receipt,അയിച്ച വായന രസീത് DocType: Email Queue,Unsubscribe Method,ഒഴിവാക്കുക രീതി +DocType: Onboarding Slide,Add More Button,കൂടുതൽ ബട്ടൺ ചേർക്കുക DocType: GSuite Templates,Related DocType,ബന്ധപ്പെട്ട ദൊച്ത്യ്പെ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,ഉള്ളടക്കം ചേർക്കാൻ എഡിറ്റ് apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ഭാഷകൾ തിരഞ്ഞെടുക്കുക apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,കാർഡ് വിശദാംശങ്ങൾ apps/frappe/frappe/__init__.py,No permission for {0},{0} വേണ്ടി അനുമതിയില്ല DocType: DocType,Advanced,വിപുലമായ +DocType: Onboarding Slide,Slide Image Source,ഇമേജ് ഉറവിടം സ്ലൈഡുചെയ്യുക apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API കീ അല്ലെങ്കിൽ API രഹസ്യം തെറ്റായ തോന്നുന്നു !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},റഫറൻസ്: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,ശ്രീമതി @@ -1138,7 +1185,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType അനുവദിച്ചത്. ശ്രദ്ധാലുവായിരിക്കുക!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","അച്ചടി, ഇമെയിൽ ഇച്ഛാനുസൃതമാക്കിയിട്ടുള്ള ഫോർമാറ്റുകൾ" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},തുക {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,പുതിയ പതിപ്പിലേക്ക് അപ്ഡേറ്റ് DocType: Custom Field,Depends On,ആശ്രയിച്ചിരിക്കുന്നു DocType: Kanban Board Column,Green,പച്ച DocType: Custom DocPerm,Additional Permissions,അധിക അനുമതികൾ @@ -1164,6 +1210,7 @@ DocType: Address,Is Your Company Address,നിങ്ങളുടെ കമ് DocType: Energy Point Log,Social,സാമൂഹിക apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,എഡിറ്റിംഗ് വരി DocType: Workflow Action Master,Workflow Action Master,വർക്ക്ഫ്ലോ ആക്ഷൻ മാസ്റ്റർ +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,എല്ലാം കളയുക DocType: Custom Field,Field Type,ഫീൽഡ് തരം apps/frappe/frappe/utils/data.py,only.,മാത്രം. DocType: Route History,Route History,ചരിത്രം ചരിത്രം @@ -1199,11 +1246,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,പാസ്വേഡ് മ DocType: System Settings,yyyy-mm-dd,വർഷം-മാസം-തീയതി apps/frappe/frappe/desk/report/todo/todo.py,ID,ഐഡി apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,സെർവർ തകരാർ +DocType: Server Script,After Delete,ഇല്ലാതാക്കിയ ശേഷം apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,മുൻകാല റിപ്പോർട്ടുകളെല്ലാം കാണുക. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ലോഗിൻ ഐഡി ആവശ്യമാണ് DocType: Website Slideshow,Website Slideshow,വെബ്സൈറ്റ് സ്ലൈഡ്ഷോ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ഇല്ല ഡാറ്റാ DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","വെബ്സൈറ്റ് ഹോം പേജ് ആണെന്ന് ലിങ്ക്. സ്റ്റാൻഡേർഡ് ലിങ്കുകൾ (സൂചിക, ലോഗിൻ, ഉൽപ്പന്നങ്ങൾ, ബ്ലോഗ്, ഏകദേശം, കോൺടാക്റ്റ്)" +DocType: Server Script,After Submit,സമർപ്പിച്ച ശേഷം apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ഇമെയിൽ അക്കൗണ്ട് {0} നിന്ന് ഇമെയിലുകൾ വാങ്ങിക്കുന്നതും പ്രാമാണീകരണം പരാജയപ്പെട്ടു. സെർവറിൽ നിന്നുള്ള സന്ദേശം: {1} DocType: User,Banner Image,ബാനർ ചിത്രം DocType: Custom Field,Custom Field,കസ്റ്റം ഫീൽഡ് @@ -1243,15 +1292,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","ഉപയോക്താവ് ചെക്കുചെയ്തിരിക്കുന്ന എന്തെങ്കിലും പങ്കുണ്ടോ ഉണ്ട്, ഉപയോക്താവിന് ഒരു "സിസ്റ്റം ഉപയോക്തൃ" മാറുന്നു. "സിസ്റ്റം ഉപയോക്താവ്" ഡെസ്ക്ടോപ്പ് ആക്സസ് ഉണ്ട്" DocType: System Settings,Date and Number Format,തീയതിയും നമ്പർ ഫോർമാറ്റ് apps/frappe/frappe/model/document.py,one of,ഒരുത്തൻ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ഒറ്റ നിമിഷം പരിശോധിക്കുന്നു apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,കാണിക്കുക ടാഗുകൾ DocType: DocField,HTML Editor,HTML എഡിറ്റർ 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,ക്രിയകൾ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് +DocType: DocType,Actions,ക്രിയകൾ DocType: Workflow State,align-justify,വിന്യസിക്കുക-ന്യായീകരിക്കാൻ DocType: User,Middle Name (Optional),മിഡിൽ പേര് (ഓപ്ഷണൽ) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,അനുവദനീയമല്ല @@ -1265,6 +1312,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ഇല് DocType: System Settings,Security,സുരക്ഷ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} സ്വീകരിക്കുന്നവർക്ക് അയയ്ക്കാൻ ഷെഡ്യൂൾഡ് apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,മുറിക്കുക +DocType: Server Script,After Save,സംരക്ഷിച്ച ശേഷം apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},{0} നിന്നുതന്നെ {1} പേരുമാറ്റി apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} ന്റെ {0} (കുട്ടികളുള്ള {2} വരികൾ) DocType: Currency,**Currency** Master,** കറൻസി ** മാസ്റ്റർ @@ -1289,16 +1337,19 @@ DocType: Prepared Report,Filter Values,മൂല്യങ്ങൾ ഫിൽട DocType: Communication,User Tags,ഉപയോക്താവിന്റെ ടാഗുകൾ DocType: Data Migration Run,Fail,പരാജയം DocType: Workflow State,download-alt,ഡൗൺലോഡ്-Alt +DocType: Scheduled Job Type,Last Execution,അവസാന വധശിക്ഷ DocType: Data Migration Run,Pull Failed,പുൾ പരാജയപ്പെട്ടു apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,കാർഡുകൾ കാണിക്കുക / മറയ്‌ക്കുക DocType: Communication,Feedback Request,പ്രതികരണം അഭ്യർത്ഥന apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel ഫയലുകളിൽ നിന്നുള്ള ഡാറ്റ ഇമ്പോർട്ടുചെയ്യുക. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ഇനിപ്പറയുന്ന ഫീൽഡുകൾ നഷ്ടപ്പെട്ടു: +DocType: Notification Log,From User,ഉപയോക്താവിൽ നിന്ന് apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},റദ്ദാക്കൽ {0} DocType: Web Page,Main Section,പ്രധാന വിഭാഗം DocType: Page,Icon,ഐക്കൺ apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","സൂചന: പാസ്വേഡ് ചിഹ്നങ്ങൾ, അക്കങ്ങൾ, അക്ഷരം ഉൾപ്പെടുത്തുക" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","സൂചന: പാസ്വേഡ് ചിഹ്നങ്ങൾ, അക്കങ്ങൾ, അക്ഷരം ഉൾപ്പെടുത്തുക" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","പരാമർശങ്ങൾ, അസൈൻമെന്റുകൾ, എനർജി പോയിന്റുകൾ എന്നിവയ്‌ക്കും അതിലേറെ കാര്യങ്ങൾക്കുമായി അറിയിപ്പുകൾ കോൺഫിഗർ ചെയ്യുക." DocType: DocField,Allow in Quick Entry,ദ്രുത പ്രവേശനത്തിൽ അനുവദിക്കുക apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,പീഡിയെഫ് DocType: System Settings,dd/mm/yyyy,ഡിഡി / മില്ലീമീറ്റർ / വവവവ @@ -1330,7 +1381,6 @@ DocType: Website Theme,Theme URL,തീം URL DocType: Customize Form,Sort Field,അടുക്കുക ഫീൽഡ് DocType: Razorpay Settings,Razorpay Settings,Razorpay ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,എഡിറ്റ് ഫിൽറ്റർ -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,കൂടുതൽ ചേർക്കുക DocType: System Settings,Session Expiry Mobile,സെഷൻ കാലഹരണപ്പെടൽ മൊബൈൽ apps/frappe/frappe/utils/password.py,Incorrect User or Password,തെറ്റായ ഉപയോക്താവും പാസ്വേഡും apps/frappe/frappe/templates/includes/search_box.html,Search results for,ഇതിനുള്ള തിരയൽ ഫലങ്ങൾ @@ -1346,8 +1396,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,എനർജി പോയിന്റ് റൂൾ DocType: Communication,Delayed,വൈകിയ apps/frappe/frappe/config/settings.py,List of backups available for download,ഡൌൺലോഡ് ലഭ്യമായ ബാക്കപ്പുകളും പട്ടിക +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,പുതിയ ഡാറ്റ ഇറക്കുമതി പരീക്ഷിക്കുക apps/frappe/frappe/www/login.html,Sign up,സൈൻ അപ്പ് ചെയ്യുക apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,വരി {0}: സ്റ്റാൻഡേർഡ് ഫീൽഡുകളിൽ നിർബന്ധിതം പ്രവർത്തനരഹിതമാക്കാൻ അനുവദിച്ചിട്ടില്ല +DocType: Webhook,Enable Security,സുരക്ഷ പ്രാപ്തമാക്കുക apps/frappe/frappe/config/customization.py,Dashboards,ഡാഷ്‌ബോർഡുകൾ DocType: Test Runner,Output,ഔട്ട്പുട്ട് DocType: Milestone,Track Field,ഫീൽഡ് ട്രാക്കുചെയ്യുക @@ -1366,6 +1418,7 @@ DocType: Portal Menu Item,Portal Menu Item,പോർട്ടൽ മെനു apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ഫിൽട്ടറുകൾ സജ്ജമാക്കുക DocType: Contact Us Settings,Email ID,ഇമെയിൽ ഐഡി DocType: Energy Point Rule,Multiplier Field,ഗുണിത ഫീൽഡ് +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,റേസർ‌പേ ഓർ‌ഡർ‌ സൃഷ്‌ടിക്കാൻ‌ കഴിഞ്ഞില്ല. അഡ്മിനിസ്ട്രേറ്ററുമായി ബന്ധപ്പെടുക DocType: Dashboard Chart,Time Interval,സമയ ഇടവേള DocType: Activity Log,Keep track of all update feeds,എല്ലാ അപ്ഡേറ്റ് ഫീഡുകളുടെയും ട്രാക്ക് സൂക്ഷിക്കുക DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,ഉപയോക്താക്കൾക്ക് അനുവദിക്കുന്നു ശേഷം ക്ലയന്റ് അപ്ലിക്കേഷൻ ആക്സസ് ഉണ്ടായിരിക്കും ഉറവിടങ്ങളിലെ ഒരു ലിസ്റ്റ്. <br> ഉദാ പദ്ധതി @@ -1385,6 +1438,7 @@ DocType: DefaultValue,Key,കീ DocType: Address,Contacts,ബന്ധങ്ങൾ DocType: System Settings,Setup Complete,സെറ്റപ്പ് പൂർത്തിയാക്കുക apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,എല്ലാ ഡോക്യുമെന്റ് ഓഹരികളുടെ റിപ്പോർട്ട് +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ഇറക്കുമതി ടെംപ്ലേറ്റ് .csv, .xlsx അല്ലെങ്കിൽ .xls തരം ആയിരിക്കണം" apps/frappe/frappe/www/update-password.html,New Password,പുതിയ പാസ്വേഡ് apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ഫിൽട്ടർചെയ്യുക {0} കാണാതായി apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ക്ഷമിക്കണം! നിങ്ങൾ സ്വയം സൃഷ്ടിക്കപ്പെടുന്ന അഭിപ്രായങ്ങൾ ഇല്ലാതാക്കാൻ കഴിയില്ല @@ -1400,6 +1454,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ഫെവിക്കോൺ apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,പ്രവർത്തിപ്പിക്കുക DocType: Blog Post,Content (HTML),ഉള്ളടക്കം (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,ഇതിനായി സജ്ജമാക്കുക DocType: Personal Data Download Request,User Name,ഉപയോക്തൃ നാമം DocType: Workflow State,minus-sign,മൈനസ്-അടയാളം apps/frappe/frappe/public/js/frappe/request.js,Not Found,കാണ്മാനില്ല @@ -1407,6 +1462,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,ഇല്ല {0} അനു apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,കയറ്റുമതി കസ്റ്റം അനുമതികൾ apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ഇനങ്ങളൊന്നും കണ്ടെത്തിയില്ല. DocType: Data Export,Fields Multicheck,ഫീൽഡുകൾ മൾട്ടിചാക്ക് +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,}} പൂർത്തിയായി DocType: Activity Log,Login,ലോഗിൻ DocType: Web Form,Payments,പേയ്മെൻറുകൾ apps/frappe/frappe/www/qrcode.html,Hi {0},ഹായ് {0} @@ -1435,6 +1491,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,സാ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,അനുമതി തെറ്റ് apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} പേര് {1} ആകാൻ പാടില്ല DocType: User Permission,Applicable For,ബാധകമാണ് +DocType: Dashboard Chart,From Date,ഈ തീയതി മുതൽ apps/frappe/frappe/core/doctype/version/version_view.html,Success,വിജയം apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,സമയം കഴിഞ്ഞു apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,സമയം കഴിഞ്ഞു @@ -1447,7 +1504,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,വ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; അവസ്ഥ അനുവദനീയമല്ല DocType: Async Task,Async Task,Async ടാസ്ക് DocType: Workflow State,picture,ചിതം -apps/frappe/frappe/www/complete_signup.html,Complete,പൂർത്തിയാക്കുക +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,പൂർത്തിയാക്കുക DocType: DocType,Image Field,ചിത്രം ഫീൽഡ് DocType: Print Format,Custom HTML Help,കസ്റ്റം എച്ച്ടിഎംഎൽ സഹായം DocType: LDAP Settings,Default Role on Creation,സൃഷ്ടിയിലെ സ്ഥിരസ്ഥിതി പങ്ക് @@ -1455,6 +1512,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,അടുത്തത് സ്റ്റേറ്റ് DocType: User,Block Modules,ബ്ലോക്ക് മൊഡ്യൂളുകൾ DocType: Print Format,Custom CSS,കസ്റ്റം സി.എസ്.എസ് +DocType: Energy Point Rule,Apply Only Once,ഒരിക്കൽ മാത്രം പ്രയോഗിക്കുക apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ഒരു അഭിപ്രായം ചേർക്കുക DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},അവഗണിച്ചു: {0} {1} വരെ @@ -1465,6 +1523,7 @@ DocType: Address,Postal,പോസ്റ്റൽ DocType: Email Account,Default Incoming,സ്വതേ ഇൻകമിംഗ് DocType: Workflow State,repeat,ആവർത്തിച്ച് DocType: Website Settings,Banner,ബാനർ +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,എല്ലാ പ്രമാണങ്ങളും റദ്ദാക്കുക DocType: Role,"If disabled, this role will be removed from all users.","അപ്രാപ്തമാക്കിയിട്ടുണ്ടെങ്കിൽ, ഈ പങ്ക് എല്ലാ ഉപയോക്താക്കൾക്കും നിന്നും നീക്കം ചെയ്യും." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} ലിസ്റ്റിലേക്ക് പോകുക apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,തിരച്ചിൽ ന് സഹായം @@ -1473,6 +1532,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,രജി apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ഈ പ്രമാണത്തിനായുള്ള യാന്ത്രിക ആവർത്തനം പ്രവർത്തനരഹിതമാക്കി. DocType: DocType,Hide Copy,പകർത്തുക മറയ്ക്കുക apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ഏകവ്യക്തി മായ്ക്കുക +DocType: Server Script,Before Save,സംരക്ഷിക്കുന്നതിന് മുമ്പ് apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} അദ്വിതീയമായ ആയിരിക്കണം apps/frappe/frappe/model/base_document.py,Row,വരി apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & ഇമെയിൽ ടെംപ്ലേറ്റ്" @@ -1483,7 +1543,6 @@ DocType: Chat Profile,Offline,ഓഫ്ലൈൻ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},ഇമ്പോർട്ടുചെയ്‌തത് {0} DocType: User,API Key,API കീ DocType: Email Account,Send unsubscribe message in email,ഇമെയിലിൽ അൺസബ്സ്ക്രൈബ് സന്ദേശം അയയ്ക്കുക -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,എഡിറ്റ് ശീർഷകം apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,ഈ ലിങ്ക് ഫീൽഡ് വേണ്ടി DocType വരും FIELDNAME. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,നിനക്കും നിശ്ചയിച്ച പ്രമാണങ്ങൾ. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,നിങ്ങൾക്ക് ഇത് പകർത്താനും ഒട്ടിക്കാനും കഴിയും @@ -1514,8 +1573,10 @@ DocType: Data Migration Run,Total Pages,ആകെ പേജുകൾ DocType: DocField,Attach Image,ചിത്രം അറ്റാച്ച് DocType: Workflow State,list-alt,പട്ടിക-Alt apps/frappe/frappe/www/update-password.html,Password Updated,പാസ്വേഡ് അപ്ഡേറ്റ് +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ apps/frappe/frappe/www/qrcode.html,Steps to verify your login,നിങ്ങളുടെ ലോഗിൻ പരിശോധിക്കുന്നതിനുള്ള നടപടിക്രമങ്ങൾ apps/frappe/frappe/utils/password.py,Password not found,പാസ്വേഡ് കണ്ടെത്തിയില്ല +DocType: Webhook,Webhook Secret,വെബ്‌ഹൂക്ക് രഹസ്യം DocType: Data Migration Mapping,Page Length,പേജ് ദൈർഘ്യം DocType: Email Queue,Expose Recipients,സ്വീകർത്താക്കൾക്ക് എക്സ്പൊസ്പ്രഭാവംടോഗിള്ചെയ്യുക apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,മാറ്റം ഇൻകമിംഗ് മെയിലുകൾ നിര്ബന്ധമാണ് @@ -1541,6 +1602,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,സിസ്റ്റം DocType: Web Form,Max Attachment Size (in MB),മാക്സ് അറ്റാച്ചുമെന്റ് വ്യാപ്തി (MB) apps/frappe/frappe/www/login.html,Have an account? Login,ഒരു അക്കൗണ്ട് ഉണ്ടോ? ലോഗിൻ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,ക്രമീകരണങ്ങൾ അച്ചടിക്കുക ... DocType: Workflow State,arrow-down,അമ്പ്-ഡൗൺ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},വരി {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},{1}: ഉപയോക്താവ് {0} ഇല്ലാതാക്കാൻ അനുവദിച്ചിട്ടില്ല @@ -1562,6 +1624,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,നിങ DocType: Dropbox Settings,Dropbox Access Secret,ഡ്രോപ്പ്ബോക്സ് അക്സസ് രഹസ്യം DocType: Tag Link,Document Title,പ്രമാണ ശീർഷകം apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(നിർബന്ധിതം) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് DocType: Social Login Key,Social Login Provider,സാമൂഹിക ലോഗിൻ ദാതാവ് apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,മറ്റൊരു അഭിപ്രായം ചേർക്കുക apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ഫയലിൽ ഡാറ്റയൊന്നും കണ്ടെത്തിയില്ല. പുതിയ ഫയൽ ഡാറ്റ ഉപയോഗിച്ച് വീണ്ടും അറ്റാച്ചുചെയ്യുക. @@ -1576,11 +1639,12 @@ DocType: Workflow State,hand-down,കൈ താഴെ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",കാൻ‌ബൻ‌ നിരയായി ഉപയോഗിക്കാൻ‌ കഴിയുന്ന ഫീൽ‌ഡുകളൊന്നും കണ്ടെത്തിയില്ല. "തിരഞ്ഞെടുക്കുക" എന്ന തരം ഇഷ്‌ടാനുസൃത ഫീൽഡ് ചേർക്കാൻ ഇഷ്‌ടാനുസൃതമാക്കുക ഫോം ഉപയോഗിക്കുക. DocType: Address,GST State,ചരക്കുസേവന സംസ്ഥാന apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: സമർപ്പിക്കുക ഇല്ലാതെ റദ്ദാക്കുക സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ഉപയോക്താവ് ({0}) DocType: Website Theme,Theme,തീം DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,യുആർഐ റീഡയറക്ടുചെയ്യുക ഓത്ത് കോഡ് ഒരാളുണ്ട് apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,സഹായം തുറക്കുക DocType: DocType,Is Submittable,Submittable Is -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,പുതിയ പരാമർശം +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,പുതിയ പരാമർശം apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,പുതിയ Google കോൺ‌ടാക്റ്റുകളൊന്നും സമന്വയിപ്പിച്ചിട്ടില്ല. DocType: File,Uploaded To Google Drive,Google ഡ്രൈവിലേക്ക് അപ്‌ലോഡുചെയ്‌തു apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ചെക്ക് ഫീൽഡ് മൂല്യം 0 അല്ലെങ്കിൽ 1 ആകാം @@ -1590,7 +1654,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,സീരീസ് DocType: Workflow State,Inbox,ഇൻബോക്സ് DocType: Kanban Board Column,Red,റെഡ് DocType: Workflow State,Tag,ടാഗ് -DocType: Custom Script,Script,സ്ക്രിപ്റ്റ് +DocType: Report,Script,സ്ക്രിപ്റ്റ് apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,പ്രമാണം സംരക്ഷിക്കാൻ കഴിയില്ല. DocType: Energy Point Rule,Maximum Points,പരമാവധി പോയിന്റുകൾ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,എന്റെ ക്രമീകരണങ്ങൾ @@ -1619,8 +1683,10 @@ DocType: Email Queue,Email Queue,ഇമെയിൽ ക്യൂ DocType: Address,Haryana,ഹരിയാന apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,റോളുകൾ അവരുടെ ഉപയോക്തൃ പേജിൽ നിന്ന് ഉപയോക്താക്കൾക്ക് സജ്ജമാക്കാൻ കഴിയും. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,അഭിപ്രായം ചേർക്കുക +DocType: Dashboard Chart,Select Date Range,തീയതി ശ്രേണി തിരഞ്ഞെടുക്കുക DocType: DocField,Mandatory,കല്പ്പനകൊടുക്കുന്ന apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,എക്സ്പോർട്ട് മൊഡ്യൂൾ +DocType: Scheduled Job Type,Monthly Long,പ്രതിമാസ ദൈർഘ്യം apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: ഇല്ല അടിസ്ഥാന അനുമതികൾ സെറ്റ് apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","എന്ന സമർപ്പിക്കുക, റദ്ദാക്കുക, നന്നാക്കുവിൻ അർത്ഥം" @@ -1629,7 +1695,6 @@ DocType: Test Runner,Module Path,മൊഡ്യൂൾ പാത DocType: Milestone Tracker,Track milestones for any document,ഏത് പ്രമാണത്തിനും നാഴികക്കല്ലുകൾ ട്രാക്കുചെയ്യുക DocType: Social Login Key,Identity Details,ഐഡന്റിറ്റി വിശദാംശങ്ങൾ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ഡാഷ്‌ബോർഡ് കാണിക്കുക -apps/frappe/frappe/desk/form/assign_to.py,New Message,പുതിയ സന്ദേശം DocType: File,Preview HTML,പ്രിവ്യൂ എച്ച്ടിഎംഎൽ DocType: Desktop Icon,query-report,അന്വേഷണവുമായി-റിപ്പോര്ട്ട് DocType: Data Import Beta,Template Warnings,ടെംപ്ലേറ്റ് മുന്നറിയിപ്പുകൾ @@ -1646,12 +1711,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} പേര് apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ഇല്ല അനുമതികൾ ഈ മാനദണ്ഡങ്ങൾ വെച്ചിരിക്കുന്നു. DocType: Auto Email Report,Auto Email Report,ഓട്ടോ റിപ്പോർട്ട് ഇമെയിൽ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,പുതിയ പ്രമാണം പങ്കിട്ടു apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,അഭിപ്രായം ഇല്ലാതാക്കണോ? DocType: Address Template,This format is used if country specific format is not found,രാജ്യ നിർദ്ദിഷ്ട ഫോർമാറ്റ് കണ്ടെത്തിയില്ല ഇല്ലെങ്കിൽ ഈ ഫോർമാറ്റ് ഉപയോഗിക്കുന്നു DocType: System Settings,Allow Login using Mobile Number,മൊബൈൽ നമ്പർ ഉപയോഗിച്ച് ലോഗിൻ അനുവദിക്കുക apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,ഈ വിഭവം ആക്സസ് മതിയായ അനുമതികൾ ഇല്ല. ആക്സസ് ലഭിക്കാൻ നിങ്ങളുടെ മാനേജറെ ബന്ധപ്പെടുക. DocType: Custom Field,Custom,കസ്റ്റം DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","പ്രാപ്തമാക്കിയിട്ടുണ്ടെങ്കിൽ, നിയന്ത്രിത IP വിലാസത്തിൽ നിന്ന് ലോഗിൻ ചെയ്യുന്ന ഉപയോക്താക്കൾക്ക് രണ്ട് ഫാക്ടർ Auth ആവശ്യപ്പെടുന്നതല്ല" +DocType: Server Script,After Cancel,റദ്ദാക്കിയ ശേഷം DocType: Auto Repeat,Get Contacts,കോൺടാക്റ്റുകൾ നേടുക apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} പ്രകാരം സമർപ്പിച്ച പോസ്റ്റുകൾ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ശീർഷകമില്ലാത്ത നിര ഒഴിവാക്കുന്നു @@ -1662,6 +1729,7 @@ DocType: User,Login After,ശേഷം ലോഗിൻ DocType: Print Format,Monospace,മോണോസ്പെയ്സ് DocType: Letter Head,Printing,അച്ചടി DocType: Workflow State,thumbs-up,വിജയചിഹ്നം +DocType: Notification Log,Mention,പരാമർശിക്കുക DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ഫോണ്ടുകൾ apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,"കൃത്യത 1, 6 നും ഇടയിൽ ആയിരിക്കണം" @@ -1669,7 +1737,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ഒപ്പം apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},ഈ റിപ്പോർട്ട് {0} DocType: Error Snapshot,Frames,ഫ്രെയിംസ് -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ചുമതല +DocType: Notification Log,Assignment,ചുമതല DocType: Notification,Slack Channel,സ്ലാക്ക് ചാനൽ DocType: About Us Team Member,Image Link,ചിത്രം ലിങ്ക് DocType: Auto Email Report,Report Filters,റിപ്പോർട്ട് ഫിൽട്ടറുകൾ @@ -1686,6 +1754,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ചേര്ക്കാന് കഴിഞ്ഞില്ല apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,നിങ്ങളുടെ രജിസ്റ്റർ ചെയ്ത ഇമെയിൽ വിലാസത്തിലേക്ക് സ്ഥിരീകരണ കോഡ് അയച്ചു. apps/frappe/frappe/core/doctype/user/user.py,Throttled,ത്രികോണം +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,നിങ്ങളുടെ ടാർഗെറ്റ് apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","{0}: ഫിൽറ്റർ 4 മൂല്യങ്ങൾ (ദൊച്ത്യ്പെ, FIELDNAME, ഓപ്പറേറ്റർ, മൂല്യം) ഉണ്ടായിരിക്കണം" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,അസൈൻ‌മെന്റ് റൂൾ‌ പ്രയോഗിക്കുക apps/frappe/frappe/utils/bot.py,show,കാണിക്കുക @@ -1739,7 +1808,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,ലിങ് apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,നിങ്ങളുടെ ഭാഷ DocType: Dashboard Chart,Average,ശരാശരി apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,വരി ചേർക്കുക -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,പ്രിന്റർ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,അന്വേഷണത്തിൽ ഒരു സെലെക്ട് ആയിരിക്കണം DocType: Auto Repeat,Completed,പൂർത്തിയാക്കി @@ -1797,6 +1865,7 @@ DocType: GCalendar Account,Next Sync Token,അടുത്ത സമന്വയ DocType: Energy Point Settings,Energy Point Settings,എനർജി പോയിന്റ് ക്രമീകരണങ്ങൾ DocType: Async Task,Succeeded,പിൻഗാമി apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} ആവശ്യമായ നിർബന്ധിതം ഫീൽഡുകൾ +DocType: Onboarding Slide Field,Align,വിന്യസിക്കുക apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} വേണ്ടി പുനഃസജ്ജമാക്കുക അനുമതികൾ? apps/frappe/frappe/config/desktop.py,Users and Permissions,ഉപയോക്താക്കൾ അനുമതികളും DocType: S3 Backup Settings,S3 Backup Settings,S3 ബാക്കപ്പ് ക്രമീകരണങ്ങൾ @@ -1813,7 +1882,9 @@ DocType: DocType,ASC,ആരോഹണം apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,പുതിയ പ്രിന്റ് ഫോർമാറ്റ് നാമം apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,അഭ്യർത്ഥന അംഗീകരിക്കുന്നതിന് ചുവടെയുള്ള ലിങ്കിൽ ക്ലിക്കുചെയ്യുക DocType: Workflow State,align-left,വിന്യസിക്കുക-ഇടത് +DocType: Onboarding Slide,Action Settings,പ്രവർത്തന ക്രമീകരണങ്ങൾ DocType: User,Defaults,സ്ഥിരസ്ഥിതികൾ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","താരതമ്യത്തിന്,> 5, <10 അല്ലെങ്കിൽ = 324 ഉപയോഗിക്കുക. ശ്രേണികൾക്കായി, 5:10 ഉപയോഗിക്കുക (5 നും 10 നും ഇടയിലുള്ള മൂല്യങ്ങൾക്ക്)." DocType: Energy Point Log,Revert Of,പഴയപടിയാക്കുക apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,നിലവിലുള്ള ലയിക്കാനുള്ള DocType: User,Birth Date,ജനിച്ച ദിവസം @@ -1868,6 +1939,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ൽ DocType: Notification,Value Change,മൂല്യം മാറ്റുക DocType: Google Contacts,Authorize Google Contacts Access,Google കോൺ‌ടാക്റ്റ് ആക്സസ് അംഗീകരിക്കുക apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,റിപ്പോർട്ടിനിൽ നിന്ന് സംഖ്യാശാസ്ത്ര ഫീൽഡുകൾ മാത്രം കാണിക്കുന്നു +apps/frappe/frappe/utils/data.py,1 week ago,1 ആഴ്ച മുമ്പ് DocType: Data Import Beta,Import Type,ഇറക്കുമതി തരം DocType: Access Log,HTML Page,HTML പേജ് DocType: Address,Subsidiary,സഹായകന് @@ -1877,7 +1949,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,ലെറ്റർ കൂടി apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,അസാധുവായ ഔട്ട്ഗോയിംഗ് മെയിൽ സെർവർ അല്ലെങ്കിൽ പോർട്ട് DocType: Custom DocPerm,Write,എഴുതുക -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,മാത്രം അഡ്മിനിസ്ട്രേറ്റർ അന്വേഷണം / സ്ക്രിപ്റ്റ് റിപ്പോർട്ടുകൾ സൃഷ്ടിക്കുക അനുവദിച്ചു apps/frappe/frappe/public/js/frappe/form/save.js,Updating,പുതുക്കുന്നു DocType: Data Import Beta,Preview,പ്രിവ്യൂ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ഫീൽഡ് "മൂല്യം" നിർബന്ധമാണ്. അപ്ഡേറ്റ് ചെയ്യാൻ മൂല്യം ദയവായി വ്യക്തമാക്കുക @@ -1886,6 +1957,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From, apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,ഉപയോക്താവ് ആയി ക്ഷണിക്കുക DocType: Data Migration Run,Started,ആരംഭിച്ചു DocType: Data Migration Run,End Time,അവസാനിക്കുന്ന സമയം +DocType: Dashboard Chart,Group By Based On,അടിസ്ഥാനമാക്കിയുള്ള ഗ്രൂപ്പ് apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,അറ്റാച്മെന്റ് തിരഞ്ഞെടുക്കുക apps/frappe/frappe/model/naming.py, for {0},{0} വേണ്ടി apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ഈ പ്രമാണം പ്രിന്റ് അനുവദിച്ചിട്ടില്ല @@ -1927,6 +1999,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ഉറപ്പു് DocType: Workflow Document State,Update Field,അപ്ഡേറ്റ് ഫീൽഡ് DocType: Chat Profile,Enable Chat,ചാറ്റ് പ്രാപ്തമാക്കുക DocType: LDAP Settings,Base Distinguished Name (DN),ബേസ് വ്യതിരിക്ത പേര് (ഡിഎൻ) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ഈ സംഭാഷണം വിടുക apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ലിങ്ക് ഫീൽഡ് {0} വെച്ചിരിക്കുന്നു അല്ല ഓപ്ഷനുകൾ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,ക്യൂ / വർക്കർ @@ -1994,12 +2067,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,ലോഗ് ഈ സമയം അനുവദിച്ചിട്ടില്ല DocType: Data Migration Run,Current Mapping Action,നിലവിലെ മാപ്പിംഗ് ആക്ഷൻ DocType: Dashboard Chart Source,Source Name,ഉറവിട പേര് -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ഉപയോക്താവുമായി ബന്ധപ്പെട്ട ഇമെയിൽ അക്കൗണ്ടുകളൊന്നുമില്ല. ഉപയോക്താവ്> ഇമെയിൽ ഇൻ‌ബോക്‌സിന് കീഴിൽ ഒരു അക്കൗണ്ട് ചേർക്കുക. DocType: Email Account,Email Sync Option,ഇമെയിൽ സമന്വയിപ്പിക്കുക ഓപ്ഷൻ apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,വരി നം DocType: Async Task,Runtime,പ്രവർത്തനസമയം DocType: Post,Is Pinned,പിൻ ചെയ്യുന്നത് DocType: Contact Us Settings,Introduction,ആമുഖം +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,സഹായം ആവശ്യമുണ്ട്? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ആഗോളതലത്തിൽ പിൻ ചെയ്യുക apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,പിന്തുടരുന്നു DocType: LDAP Settings,LDAP Email Field,എൽഡാപ്പ് ഇമെയിൽ ഫീൽഡ് @@ -2009,7 +2082,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ഇതി DocType: User Email,Enable Outgoing,അയയ്ക്കുന്ന പ്രവർത്തനക്ഷമമാക്കുക DocType: Address,Fax,ഫാക്സ് apps/frappe/frappe/config/customization.py,Custom Tags,കസ്റ്റം ടാഗുകൾ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ദയവായി ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക DocType: Comment,Submitted,സമർപ്പിച്ച DocType: Contact,Pulled from Google Contacts,Google കോൺടാക്റ്റുകളിൽ നിന്ന് വലിച്ചെടുത്തു apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,അസാധുവായ അഭ്യർത്ഥന @@ -2030,9 +2102,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ഹോ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,എന്നോടു ലഭ്യമാക്കുക DocType: DocField,Dynamic Link,ഡൈനമിക് ലിങ്ക് apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,മെനുവിലും സൈഡ്‌ബാറിലും അധിക കുറുക്കുവഴികൾ പ്രവർത്തനക്ഷമമാക്കാൻ Alt കീ അമർത്തുക +DocType: Dashboard Chart,To Date,തീയതി DocType: List View Setting,List View Setting,ലിസ്റ്റ് കാഴ്‌ച ക്രമീകരണം apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,കാണിക്കുക പരാജയപ്പെട്ടു ജോലികൾ -DocType: Event,Details,വിശദാംശങ്ങൾ +DocType: Scheduled Job Log,Details,വിശദാംശങ്ങൾ DocType: Property Setter,DocType or Field,DocType അല്ലെങ്കിൽ ഫീൽഡ് apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,നിങ്ങൾ ഈ പ്രമാണം പിന്തുടർന്നു apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,പ്രാഥമിക നിറം @@ -2041,7 +2114,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,പുബ്ലിശബ്ലെ കീ അല്ലെങ്കിൽ രഹസ്യ കീ തെറ്റാണ് തോന്നുന്നു !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,പുബ്ലിശബ്ലെ കീ അല്ലെങ്കിൽ രഹസ്യ കീ തെറ്റാണ് തോന്നുന്നു !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,അനുമതികൾ ദ്രുത സഹായം -DocType: Tag Doc Category,Doctype to Assign Tags,ടാഗുകൾ നിർണയിക്കുന്നതിനായി Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,കാണിക്കുക Relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ഇമെയിൽ ട്രാഷിലേക്ക് നീക്കി DocType: Report,Report Builder,റിപ്പോർട്ട് ബിൽഡർ @@ -2057,6 +2129,7 @@ DocType: Workflow State,Upload,അപ്ലോഡുചെയ്യുക DocType: User Permission,Advanced Control,വിപുലമായ നിയന്ത്രണം DocType: System Settings,Date Format,തീയതി ഫോർമാറ്റ് apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,പ്രസിദ്ധീകരിച്ചിട്ടില്ല +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിരസ്ഥിതി വിലാസ ടെംപ്ലേറ്റൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയൊരെണ്ണം സൃഷ്ടിക്കുക." apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","വർക്ക്ഫ്ലോ നടപടികൾ (ഉദാ അംഗീകാരം, റദ്ദാക്കുക)." DocType: Data Import,Skip rows with errors,പിശകുകളുള്ള വരികൾ ഒഴിവാക്കുക DocType: Workflow State,flag,പതാക @@ -2073,7 +2146,7 @@ DocType: Post Comment,Post Comment,അഭിപ്രായം പോസ്റ apps/frappe/frappe/config/core.py,Documents,പ്രമാണങ്ങൾ apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,പ്രവർത്തനം ലോഗ് ചെയ്തത് DocType: Social Login Key,Custom Base URL,ഇഷ്ടാനുസൃത ബേസ് URL -DocType: Email Flag Queue,Is Completed,പൂർത്തിയായി +DocType: Onboarding Slide,Is Completed,പൂർത്തിയായി apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ഫീൽഡുകൾ നേടുക apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,എഡിറ്റ് പ്രൊഫൈൽ DocType: Kanban Board Column,Archived,പൊതിക്കെട്ടിയത് @@ -2084,12 +2157,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield .പൗരോഹിത്യം: doc.myfield == 'എന്റെ value' .പൗരോഹിത്യം: doc.age> 18 ഇവിടെ വ്യക്തമാക്കുമ്പോൾ FIELDNAME മൂല്യം ഉണ്ടെങ്കിൽ മാത്രമേ അല്ലെങ്കിൽ നിയമങ്ങൾ സത്യം ആകുന്നു (ഉദാഹരണങ്ങൾ) ഈ ഫീൽഡ് ദൃശ്യമാകും DocType: Social Login Key,Office 365,ഓഫീസ് 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ഇന്ന് -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ഇന്ന് +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ഇന്ന് +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ഇന്ന് apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","നിങ്ങൾ ഈ വെച്ചിരിക്കുന്നു ഒരിക്കൽ, ഉപയോക്താക്കൾക്ക് സാധിച്ചിരുന്നു ആക്സസ് രേഖകൾ (ഉദാ. പോസ്റ്റിന്റെ ബ്ലോഗ്) ലിങ്ക് നിലനിൽക്കുന്ന ആയിരിക്കും (ഉദാ. ബ്ലോഗർ)." DocType: Data Import Beta,Submit After Import,ഇറക്കുമതിക്ക് ശേഷം സമർപ്പിക്കുക DocType: Error Log,Log of Scheduler Errors,ഷെഡ്യൂളുകൾ അബദ്ധങ്ങൾ പ്രവേശിക്കുക DocType: User,Bio,ബയോ +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ഓൺ‌ബോർഡിംഗ് സ്ലൈഡ് സഹായ ലിങ്ക് DocType: OAuth Client,App Client Secret,അപ്ലിക്കേഷൻ ക്ലയന്റ് രഹസ്യം apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,സമർപ്പിക്കുന്നു apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,ഡാറ്റ കൂട്ടിച്ചേർക്കേണ്ട പ്രമാണംയുടെ പേര് മാതാപിതാക്കൾ ആണ്. @@ -2097,7 +2171,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,അപ്പർ കേസ് apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,കസ്റ്റം എച്ച്ടിഎംഎൽ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ഫോൾഡർ പേര് നൽകുക -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിരസ്ഥിതി വിലാസ ടെംപ്ലേറ്റൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയൊരെണ്ണം സൃഷ്ടിക്കുക." apps/frappe/frappe/auth.py,Unknown User,അജ്ഞാത ഉപയോക്താവ് apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,റോൾ തിരഞ്ഞെടുക്കുക DocType: Comment,Deleted,ഇല്ലാതാക്കിയ @@ -2113,7 +2186,7 @@ DocType: Chat Token,Chat Token,ചാറ്റ് ടോക്കൺ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ചാർട്ട് സൃഷ്ടിക്കുക apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ഇറക്കുമതി ചെയ്യരുത് -DocType: Web Page,Center,കേന്ദ്രം +DocType: Onboarding Slide Field,Center,കേന്ദ്രം DocType: Notification,Value To Be Set,മൂല്യം സജ്ജമാക്കാൻ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} എഡിറ്റുചെയ്യുക apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ആദ്യം ലെവൽ @@ -2121,7 +2194,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ഡാറ്റാബേസ് നാമം apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ഫോം പുതുക്കുക DocType: DocField,Select,തിരഞ്ഞെടുക്കുക -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,പൂർണ്ണ ലോഗ് കാണുക +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,പൂർണ്ണ ലോഗ് കാണുക DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ലളിതമായ പൈത്തൺ എക്‌സ്‌പ്രഷൻ, ഉദാഹരണം: സ്റ്റാറ്റസ് == 'ഓപ്പൺ' എന്ന് ടൈപ്പ് ചെയ്യുക == 'ബഗ്'" apps/frappe/frappe/utils/csvutils.py,File not attached,പ്രമാണം അറ്റാച്ചുചെയ്തില്ല apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ബന്ധം വിച്ഛേദിക്കപ്പെട്ടു. ചില സവിശേഷതകൾ പ്രവർത്തിച്ചേക്കില്ല. @@ -2153,6 +2226,7 @@ DocType: Web Page,HTML for header section. Optional,തലക്കെട്ട apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,ഈ സവിശേഷത പുതിയ ബ്രാൻഡ് ഇപ്പോഴും പരീക്ഷണാത്മകമാണ് apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,അനുവദനീയമായ പരമാവധി {0} വരികൾ DocType: Dashboard Chart Link,Chart,ചാർട്ട് +DocType: Scheduled Job Type,Cron,ക്രോൺ DocType: Email Unsubscribe,Global Unsubscribe,ആഗോള വരിക്കിരല്ലാതാക്കൂ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ഇത് ഒരു സാധാരണ പാസ്വേഡ്. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,കാണുക @@ -2169,6 +2243,7 @@ DocType: Data Migration Connector,Hostname,ഹോസ്റ്റ്നാമം DocType: Data Migration Mapping,Condition Detail,അവസ്ഥ വിശദാംശം apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","കറൻസിക്ക് {0}, ഏറ്റവും കുറഞ്ഞ ഇടപാട് തുക {1}" DocType: DocField,Print Hide,പ്രിന്റ് മറയ്ക്കുക +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ഉപയോക്താവിന് apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,മൂല്യം നൽകുക DocType: Workflow State,tint,ടിന്റ് @@ -2233,6 +2308,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,പ്രവ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,പ്രവർത്തിക്കുന്നതു ചേർക്കുക DocType: Footer Item,Company,കമ്പനി apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ശരാശരി {0} +DocType: Scheduled Job Log,Scheduled,ഷെഡ്യൂൾഡ് DocType: User,Logout from all devices while changing Password,പാസ്വേഡ് മാറ്റുന്ന സമയത്ത് എല്ലാ ഉപകരണങ്ങളിൽ നിന്നും പുറത്തുകടക്കുക apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,പാസ് വേർഡ് apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,പിശകുകളുണ്ടായിരുന്നു @@ -2257,7 +2333,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ഉപയോക്തൃ അനുമതി ഇതിനകം നിലവിലുണ്ട് apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} കാണുക -DocType: User,Hourly,മണിക്കൂറിൽ +DocType: Scheduled Job Type,Hourly,മണിക്കൂറിൽ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,രജിസ്റ്റർ OAuth ക്ലയന്റ് അപ്ലിക്കേഷൻ DocType: DocField,Fetch If Empty,ശൂന്യമാണെങ്കിൽ നേടുക DocType: Data Migration Connector,Authentication Credentials,പ്രാമാണീകരണ ക്രെഡൻഷ്യലുകൾ @@ -2267,10 +2343,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,പോയിന് DocType: SMS Settings,SMS Gateway URL,എസ്എംഎസ് ഗേറ്റ്വേ യുആർഎൽ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" പാടില്ല. ഇത് "{3}" ഒരെണ്ണം ആയിരിക്കണം apps/frappe/frappe/utils/data.py,{0} or {1},{0} അല്ലെങ്കിൽ {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,നിങ്ങൾ എല്ലാം സജ്ജീകരിച്ചു! DocType: Workflow State,trash,നിസ്സാരവസ്തു DocType: System Settings,Older backups will be automatically deleted,പഴയ ബാക്കപ്പുകൾ സ്വയം ഇല്ലാതാക്കും apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,അസാധുവായ ആക്സസ് കീ ഐഡി അല്ലെങ്കിൽ രഹസ്യ ആക്സസ് കീ. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,നിങ്ങൾക്ക് ചില എനർജി പോയിന്റുകൾ നഷ്ടപ്പെട്ടു DocType: Post,Is Globally Pinned,ആഗോളമായി പിൻതുടരുന്നു apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,സമീപകാല പ്രവർത്തനം DocType: Workflow Transition,Conditions,വ്യവസ്ഥകൾ @@ -2279,6 +2355,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,സ്ഥി DocType: Event,Ends on,ൽ അവസാനിക്കും DocType: Payment Gateway,Gateway,ഗേറ്റ്വേ DocType: LDAP Settings,Path to Server Certificate,സെർവർ സർട്ടിഫിക്കറ്റിലേക്കുള്ള പാത +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,നിങ്ങളുടെ ബ്ര .സറിൽ ജാവാസ്ക്രിപ്റ്റ് അപ്രാപ്തമാക്കി apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ലിങ്കുകൾ കാണുന്നതിന് ആവശ്യമായ അനുമതി apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ലിങ്കുകൾ കാണുന്നതിന് ആവശ്യമായ അനുമതി apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,വിലാസം ശീർഷകം നിർബന്ധമാണ്. @@ -2297,7 +2374,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ഇത് പരിശോധിച്ചെങ്കിൽ, സാധുവായ ഡാറ്റയുള്ള വരികൾ ഇറക്കുമതി ചെയ്യപ്പെടും, പിന്നീട് നിങ്ങൾ ഇറക്കുമതിചെയ്യാനുള്ള ഒരു പുതിയ ഫയലിലേക്ക് അസാധുവായ വരികളെ ഡ്രോപ്പുചെയ്യും." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ഡോക്യുമെന്റ് പങ്കിനെ ഉപയോക്താക്കൾ മാത്രം എഡിറ്റുചെയ്യാൻ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","നിങ്ങൾ {1}, {2} മുഖാന്തരം അടച്ചു നിയോഗിച്ചിട്ടുള്ള ആ ചുമതല {0},." DocType: Print Format,Show Line Breaks after Sections,വിഭാഗങ്ങൾ ശേഷം വരിയുടെഅക്കംകാണിക്കുക ബ്രേക്കുകൾ DocType: Communication,Read by Recipient On,സ്വീകർത്താവ് ഓൺ ചെയ്യുക വഴി വായിക്കുക DocType: Blogger,Short Name,ഹ്രസ്വ പേര് @@ -2330,6 +2406,7 @@ DocType: Translation,PR sent,PR അയച്ചു DocType: Auto Email Report,Only Send Records Updated in Last X Hours,മാത്രം റെക്കോർഡ്സ് അവസാനം എക്സ് അവേഴ്സ് അപ്ഡേറ്റ് അയയ്ക്കുക DocType: Auto Email Report,Only Send Records Updated in Last X Hours,മാത്രം റെക്കോർഡ്സ് അവസാനം എക്സ് അവേഴ്സ് അപ്ഡേറ്റ് അയയ്ക്കുക DocType: Communication,Feedback,പ്രതികരണം +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ഒരു പുതിയ പതിപ്പിലേക്ക് അപ്‌ഡേറ്റുചെയ്‌തു apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,പരിഭാഷ തുറക്കുക apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,ഈ ഇമെയിൽ ഓട്ടോജെനറേറ്റഡ് ആണ് DocType: Workflow State,Icon will appear on the button,ഐക്കൺ ബട്ടണിൽ ദൃശ്യമാകും @@ -2367,6 +2444,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,പേജ DocType: DocField,Precision,കൃത്യത DocType: Website Slideshow,Slideshow Items,സ്ലൈഡ്ഷോ ഇനങ്ങൾ apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,ആവർത്തിച്ചുള്ള പദങ്ങളും പ്രതീകങ്ങളും ഒഴിവാക്കാൻ ശ്രമിക്കുക +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,അറിയിപ്പുകൾ പ്രവർത്തനരഹിതമാക്കി +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,എല്ലാ വരികളും ഇല്ലാതാക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ? DocType: Workflow Action,Workflow State,വർക്ക്ഫ്ലോ സ്റ്റേറ്റ് apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,വരികൾ ചേർത്തു apps/frappe/frappe/www/list.py,My Account,എന്റെ അക്കൗണ്ട് @@ -2375,6 +2454,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,ശേഷം ദിനങ്ങൾ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ ട്രേ കണക്ഷൻ സജീവമാണ്! DocType: Contact Us Settings,Settings for Contact Us Page,ഞങ്ങളെ ബന്ധപ്പെടുക പേജ് വേണ്ടി ക്രമീകരണങ്ങൾ +DocType: Server Script,Script Type,സ്ക്രിപ്റ്റ് ടൈപ്പ് DocType: Print Settings,Enable Print Server,പ്രിന്റ് സെർവർ പ്രവർത്തനക്ഷമമാക്കുക apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} ആഴ്ച മുമ്പ് DocType: Email Account,Footer,അടിക്കുറിപ്പ് @@ -2400,8 +2480,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,മുന്നറിയിപ്പ് apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,ഇത് ഒന്നിലധികം പേജുകളിൽ അച്ചടിച്ചേക്കാം DocType: Data Migration Run,Percent Complete,പൂർത്തിയായി -DocType: Tag Category,Tag Category,ടാഗ് വർഗ്ഗം -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","താരതമ്യത്തിന്,> 5, <10 അല്ലെങ്കിൽ = 324 ഉപയോഗിക്കുക. ശ്രേണികൾക്കായി, 5:10 ഉപയോഗിക്കുക (5 നും 10 നും ഇടയിലുള്ള മൂല്യങ്ങൾക്ക്)." DocType: Google Calendar,Pull from Google Calendar,Google കലണ്ടറിൽ നിന്ന് വലിക്കുക apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,സഹായിക്കൂ DocType: User,Login Before,"മുമ്പ്, ലോഗിൻ" @@ -2411,17 +2489,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,വാരാന്ത്യങ്ങൾ മറയ്ക്കുക apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ആവർത്തിച്ചുള്ള പ്രമാണങ്ങൾ യാന്ത്രികമായി സൃഷ്ടിക്കുന്നു. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Is +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,വിവരം-അടയാളം apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} മൂല്യം ഒരു ലിസ്റ്റ് കഴിയില്ല DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","എങ്ങനെ ഈ കറൻസി ഫോർമാറ്റ് ചെയ്യണം? സജ്ജമാക്കിയിട്ടില്ലെങ്കിൽ, സിസ്റ്റം സ്വതവേയുള്ളതു് ഉപയോഗിക്കുന്നു" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,പ്രമാണങ്ങൾ {0} സമർപ്പിക്കണോ? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,താങ്കൾ ലോഗിൻ ചെയ്യേണ്ടതുണ്ട് സിസ്റ്റം മാനേജർ റോൾ ബാക്കപ്പുകൾ ആക്സസ് ചെയ്യാൻ കഴിയുകയും വേണം. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ ട്രേ അപ്ലിക്കേഷനിലേക്ക് കണക്റ്റുചെയ്യുന്നതിൽ പിശക് ... <br><br> അസംസ്കൃത പ്രിന്റ് സവിശേഷത ഉപയോഗിക്കുന്നതിന് നിങ്ങൾ QZ ട്രേ ആപ്ലിക്കേഷൻ ഇൻസ്റ്റാൾ ചെയ്ത് പ്രവർത്തിപ്പിക്കേണ്ടതുണ്ട്. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ ട്രേ ഡ Download ൺലോഡ് ചെയ്ത് ഇൻസ്റ്റാൾ ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">അസംസ്കൃത പ്രിന്റിംഗിനെക്കുറിച്ച് കൂടുതലറിയാൻ ഇവിടെ ക്ലിക്കുചെയ്യുക</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,പ്രിന്റർ മാപ്പിംഗ് apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,കൂട്ടിച്ചേർത്തപ്പോൾ മുമ്പ് സംരക്ഷിക്കുക. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ലിങ്കുചെയ്‌ത എല്ലാ പ്രമാണങ്ങളും റദ്ദാക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ചേർത്തു {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} നിരയിൽ {1} ലേക്ക് നിന്നും മാറ്റാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,റോൾ അനുമതികൾ DocType: Help Article,Intermediate,ഇന്റർമീഡിയറ്റ് +apps/frappe/frappe/config/settings.py,Email / Notifications,ഇമെയിൽ / അറിയിപ്പുകൾ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} നെ {2} ലേക്ക് മാറ്റി apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,റദ്ദാക്കിയ പ്രമാണം ഡ്രാഫ്റ്റായി പുനഃസ്ഥാപിച്ചു DocType: Data Migration Run,Start Time,ആരംഭ സമയം @@ -2437,6 +2519,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,അസാധുവായ സ്വീകർത്താവ് വിലാസം DocType: Workflow State,step-forward,മുന്നോട്ട് DocType: System Settings,Allow Login After Fail,പ്രവേശനത്തിനുശേഷമുള്ള പ്രവേശനം അനുവദിക്കുക +DocType: DocType Link,DocType Link,ഡോക്‌ടൈപ്പ് ലിങ്ക് DocType: Role Permission for Page and Report,Set Role For,എന്ന റോൾ സജ്ജീകരിക്കുക DocType: GCalendar Account,The name that will appear in Google Calendar,Google കലണ്ടറിൽ ദൃശ്യമാകുന്ന പേര് apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ഉപയോഗിച്ചുള്ള റൂം റൂട്ട് ഇതിനകം നിലവിലുണ്ട്. @@ -2454,6 +2537,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ഒരു DocType: Contact,Google Contacts,Google കോൺടാക്റ്റുകൾ DocType: GCalendar Account,GCalendar Account,GCalendar അക്കൗണ്ട് DocType: Email Rule,Is Spam,സ്പാം ആണ് +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,അവസാനത്തെ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},റിപ്പോർട്ട് {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},തുറക്കുക {0} DocType: Data Import Beta,Import Warnings,ഇമ്പോർട്ടുചെയ്യൽ മുന്നറിയിപ്പുകൾ @@ -2465,6 +2549,7 @@ DocType: Workflow State,ok-sign,OK-അടയാളം apps/frappe/frappe/config/settings.py,Deleted Documents,ഇല്ലാതാക്കിയ പ്രമാണങ്ങൾ apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ഫോർമാറ്റ് കേസ് സെൻസിറ്റീവ് ആണ് apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ഡെസ്ക്ടോപ്പ് ഐക്കൺ ഇതിനകം നിലവിലുണ്ട് +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,സ്ലൈഡുകൾ കാണിക്കേണ്ട എല്ലാ ഡൊമെയ്‌നുകളിലും വ്യക്തമാക്കുക. ഒന്നും വ്യക്തമാക്കിയിട്ടില്ലെങ്കിൽ സ്ഥിരസ്ഥിതിയായി എല്ലാ ഡൊമെയ്‌നുകളിലും സ്ലൈഡ് കാണിക്കും. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,തനിപ്പകർപ്പ് DocType: Newsletter,Create and Send Newsletters,"വാർത്താക്കുറിപ്പുകൾ സൃഷ്ടിക്കുക, അയയ്ക്കുക" apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,നിങ്ങളുടെ അഭിപ്രായത്തിന് നന്ദി. അംഗീകാരത്തിന് ശേഷം ഇത് പ്രസിദ്ധീകരിക്കും @@ -2474,6 +2559,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google കലണ്ടർ ഇവന്റ് ഐഡി apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","രക്ഷാകർത്തൃ" ഈ വരി ചേർത്തു വേണം ഇതിൽ പാരന്റ് ടേബിൾ സൂചിപ്പിക്കുന്നത് apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,അവലോകന പോയിന്റുകൾ: +DocType: Scheduled Job Log,Scheduled Job Log,ഷെഡ്യൂൾ ചെയ്ത ജോലി ലോഗ് +DocType: Server Script,Before Delete,ഇല്ലാതാക്കുന്നതിന് മുമ്പ് apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,ഇവരുമായി apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ഫയലുകൾ / URL കൾ അറ്റാച്ചുചെയ്ത് പട്ടികയിൽ ചേർക്കുക. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,സന്ദേശം സജ്ജമാക്കിയിട്ടില്ല @@ -2497,19 +2584,20 @@ DocType: About Us Settings,Settings for the About Us Page,കുറിച്ച apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,വര പേയ്മെന്റ് ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,വര പേയ്മെന്റ് ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,പ്രിന്റ് പ്രിന്ററിലേക്ക് അയച്ചു! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,എനർജി പോയിന്റുകൾ +DocType: Notification Settings,Energy Points,എനർജി പോയിന്റുകൾ DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ഉദാ pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,കീകൾ സൃഷ്ടിക്കുക apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ഇത് നിങ്ങളുടെ ഡാറ്റ ശാശ്വതമായി നീക്കംചെയ്യും. DocType: DocType,View Settings,കാണുക ക്രമീകരണങ്ങൾ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,പുതിയ അറിയിപ്പ് DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,ഘടന അഭ്യർത്ഥിക്കുക +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,കൺട്രോളർ രീതി get_razorpay_order കാണുന്നില്ല DocType: Personal Data Deletion Request,Pending Verification,പരിശോധന തീർപ്പുകൽപ്പിച്ചിട്ടില്ല DocType: Website Meta Tag,Website Meta Tag,വെബ്‌സൈറ്റ് മെറ്റാ ടാഗ് DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","നിലവാരമില്ലാത്ത പോർട്ട് (ഉദാഹരണത്തിന് 587). Google ക്ലൗഡിൽ, പോർട്ട് 2525 പരീക്ഷിക്കുക." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",പ്രസിദ്ധീകരിച്ച പേജുകൾക്ക് കഴിഞ്ഞ കാലത്താകാൻ കഴിയാത്തതിനാൽ അവസാന തീയതി ക്ലിയറിങ്ങ്. DocType: User,Send Me A Copy of Outgoing Emails,ഔട്ട്ഗോയിംഗ് ഇമെയിലുകളുടെ ഒരു പകർപ്പ് എനിക്ക് അയയ്ക്കുക -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. കൂടുതൽ വിവരങ്ങൾക്ക് Google അനലിറ്റിക്സ് സഹായം ദയവായി. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,പാസ്വേഡ് 100 പ്രതീകങ്ങൾ പാടില്ല DocType: OAuth Client,App Client ID,അപ്ലിക്കേഷൻ ക്ലയന്റ് ഐഡി @@ -2538,6 +2626,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,പുതി apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} {1} ഈ ഡോക്യുമെന്റ് പങ്കിട്ടു DocType: Website Settings,Brand Image,ബ്രാൻഡ് ഇമേജ് DocType: Print Settings,A4,എ 4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,ഇറക്കുമതി ടെംപ്ലേറ്റിൽ ഒരു തലക്കെട്ടും കുറഞ്ഞത് ഒരു വരിയും അടങ്ങിയിരിക്കണം. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google കലണ്ടർ ക്രമീകരിച്ചു. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","മുകളിൽ നാവിഗേഷൻ ബാർ, അടിക്കുറിപ്പ്, ലോഗോ എന്ന സെറ്റപ്പ്." DocType: Web Form Field,Max Value,പരമാവധി മൂല്യം @@ -2546,6 +2635,7 @@ DocType: Auto Repeat,Preview Message,സന്ദേശം പ്രിവ്യ DocType: User Social Login,User Social Login,ഉപയോക്തൃ സോഷ്യൽ ലോഗിൻ DocType: Contact,All,എല്ലാം DocType: Email Queue,Recipient,സ്വീകർത്താവ് +DocType: Webhook,Webhook Security,വെബ്‌ഹൂക്ക് സുരക്ഷ DocType: Communication,Has Attachment,അറ്റാച്ചുമെൻ DocType: Address,Sales User,സെയിൽസ് ഉപയോക്താവ് apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,പ്രിന്റ് ഫോർമാറ്റുകൾ പണിയും ഇഷ്ടാനുസൃതമാക്കാനും ഉപകരണം വലിച്ചിടാൻ. @@ -2636,14 +2726,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,വെബ്സൈറ് apps/frappe/frappe/model/workflow.py,Self approval is not allowed,സ്വയം അംഗീകാരം അനുവദനീയമല്ല DocType: GSuite Templates,Template ID,ഫലകം ഐഡി apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,"ഗ്രാൻറ് ടൈപ്പിന്റെ സംയോജനം ( <code>{0}</code> ), പ്രതികരണ തരം ( <code>{1}</code> ) അനുവദനീയമല്ല" -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} നിന്നുള്ള പുതിയ സന്ദേശം DocType: Portal Settings,Default Role at Time of Signup,സൈൻഅപ്പ് സമയത്ത് സ്വതേ റോൾ DocType: DocType,Title Case,ടൈറ്റിൽ കേസ് apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,നിങ്ങളുടെ ഡാറ്റ ഡ download ൺ‌ലോഡുചെയ്യുന്നതിന് ചുവടെയുള്ള ലിങ്കിൽ ക്ലിക്കുചെയ്യുക apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},ഉപയോക്താവിനായി പ്രാപ്തമാക്കിയ ഇമെയിൽ ഇൻബോക്സ് {0} DocType: Data Migration Run,Data Migration Run,ഡാറ്റ മൈഗ്രേഷൻ പ്രവർത്തിപ്പിക്കുക DocType: Blog Post,Email Sent,ഇമെയിൽ അയച്ചവ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,പഴയത് DocType: DocField,Ignore XSS Filter,XSS ഫിൽറ്റർ അവഗണിക്കുക apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,നീക്കംചെയ്തു apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ഡ്രോപ്പ്ബോക്സ് ബാക്കപ്പ് ക്രമീകരണങ്ങൾ @@ -2697,6 +2785,7 @@ DocType: Async Task,Queued,ക്യൂവിലാക്കി DocType: Braintree Settings,Use Sandbox,താങ്കളെ apps/frappe/frappe/utils/goal.py,This month,ഈ മാസം apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,പുതിയ കസ്റ്റം പ്രിന്റ് ഫോർമാറ്റ് +DocType: Server Script,Before Save (Submitted Document),സംരക്ഷിക്കുന്നതിന് മുമ്പ് (സമർപ്പിച്ച പ്രമാണം) DocType: Custom DocPerm,Create,സൃഷ്ടിക്കുക apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,പ്രദർശിപ്പിക്കാൻ കൂടുതൽ ഇനങ്ങളൊന്നുമില്ല apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,മുമ്പത്തെ റെക്കോർഡിലേക്ക് പോകുക @@ -2753,6 +2842,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ചവറ്റുകൊട്ടയിലേക്ക് നീക്കുക DocType: Web Form,Web Form Fields,വെബ് ഫോം ഫീൾഡുകൾ DocType: Data Import,Amended From,നിന്ന് ഭേദഗതി +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,സ്ലൈഡിൽ എന്താണ് പൂരിപ്പിക്കേണ്ടതെന്ന് ഉപയോക്താവിന് അറിയില്ലെങ്കിൽ ഒരു സഹായ വീഡിയോ ലിങ്ക് ചേർക്കുക. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},മുന്നറിയിപ്പ്: ലേക്കുള്ള {1} ബന്ധപ്പെട്ട പട്ടികയിൽ കണ്ടെത്താൻ {0} കഴിയുന്നില്ല DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ഈ പ്രമാണം നിലവിൽ വധശിക്ഷ ക്യൂവിലായതിനാൽ. വീണ്ടും ശ്രമിക്കുക @@ -2774,6 +2864,7 @@ DocType: Blog Post,Blog Post,ബ്ലോഗ് പോസ്റ്റു DocType: Access Log,Export From,ഇതിൽ നിന്ന് കയറ്റുമതി ചെയ്യുക apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,വിപുലമായ തിരച്ചിൽ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,വാർത്താക്കുറിപ്പ് കാണുന്നതിന് നിങ്ങളെ അനുവദിച്ചിട്ടില്ല. +DocType: Dashboard Chart,Group By,ഗ്രൂപ്പ് DocType: User,Interests,താൽപ്പര്യങ്ങൾ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,പാസ്വേഡ് പുനഃക്രമീകരിക്കാനുള്ള നിർദ്ദേശങ്ങൾ നിങ്ങളുടെ ഇമെയിൽ അയച്ചിട്ടുണ്ട് DocType: Energy Point Rule,Allot Points To Assigned Users,നിയുക്ത ഉപയോക്താക്കൾക്ക് പോയിന്റുകൾ അനുവദിക്കുക @@ -2789,6 +2880,7 @@ DocType: Assignment Rule,Assignment Rule,അസൈൻ‌മെന്റ് റ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},നിർദ്ദേശിച്ച ഉപയോക്തൃനാമം: {0} DocType: Assignment Rule Day,Day,ദിവസം apps/frappe/frappe/public/js/frappe/desk.js,Modules,മൊഡ്യൂളുകൾ +DocType: DocField,Mandatory Depends On,നിർബന്ധിതത്തെ ആശ്രയിച്ചിരിക്കുന്നു apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,പേയ്മെന്റ് വിജയം apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,ഇല്ല {0} മെയിൽ DocType: OAuth Bearer Token,Revoked,പിൻവലിച്ചു @@ -2796,6 +2888,7 @@ DocType: Web Page,Sidebar and Comments,സൈഡ്ബാർ അഭിപ്ര apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","നിങ്ങൾ ശേഷം അത് റദ്ദാക്കുക, രക്ഷിക്കും ഒരു പ്രമാണത്തിൽ നന്നാക്കുവിൻ, അത് പഴയ നമ്പർ ഒരു പതിപ്പാണ് ഒരു പുതിയ നമ്പർ ലഭിക്കും." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} പ്രമാണവുമായി അറ്റാച്ചുചെയ്യാൻ അനുവദിച്ചിട്ടില്ല, പ്രിന്റ് ക്രമീകരണങ്ങളിൽ {0} എന്നതിനായി പ്രിന്റ് അനുവദിക്കുക എന്നത് പ്രവർത്തനക്ഷമമാക്കുക" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} എന്ന രേഖയിൽ പ്രമാണം കാണുക DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ @@ -2810,6 +2903,7 @@ DocType: Currency,Fraction,അംശം apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ഇവന്റ് Google കലണ്ടറുമായി സമന്വയിപ്പിച്ചു. DocType: LDAP Settings,LDAP First Name Field,എൽഡാപ്പ് പേരിന്റെ ആദ്യ DocType: Contact,Middle Name,പേരിന്റെ മധ്യഭാഗം +DocType: DocField,Property Depends On,പ്രോപ്പർട്ടി ആശ്രയിച്ചിരിക്കുന്നു DocType: Custom Field,Field Description,ഫീൽഡ് വിവരണം apps/frappe/frappe/model/naming.py,Name not set via Prompt,പേര് പ്രോംപ്റ്റ് വഴി സജ്ജീകരിക്കാനായില്ല apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ഇമെയിൽ ഇൻബോക്സ് @@ -2855,11 +2949,11 @@ DocType: Workflow State,folder-close,ഫോൾഡർ-അടുത്ത apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,റിപ്പോർട്ട് ചെയ്യുക: DocType: Print Settings,Print taxes with zero amount,പൂജ്യം തുക ഉപയോഗിച്ച് നികുതികൾ അച്ചടിക്കുക apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} പുനർനാമകരണം ചെയ്യുന്നത് അനുവദനീയമല്ല +DocType: Server Script,Before Insert,ചേർക്കുന്നതിന് മുമ്പ് DocType: Custom Script,Custom Script,കസ്റ്റം സ്ക്രിപ്റ്റ് DocType: Address,Address Line 2,വിലാസം വരി 2 DocType: Address,Reference,റഫറൻസ് apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,നിയോഗിച്ചിട്ടുള്ള -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ഡാറ്റ മൈഗ്രേഷൻ മാപ്പിംഗ് വിശദാംശം DocType: Data Import,Action,ആക്ഷൻ DocType: GSuite Settings,Script URL,സ്ക്രിപ്റ്റ് URL @@ -2885,11 +2979,13 @@ DocType: User,Api Access,അപ് ആക്സസ് DocType: DocField,In List View,പട്ടിക കാണുക ൽ DocType: Email Account,Use TLS,ടിഎൽഎസ് ഉപയോഗിക്കുക apps/frappe/frappe/email/smtp.py,Invalid login or password,പ്രവേശനം അസാധുവാണ് അല്ലെങ്കിൽ പാസ്വേഡ് +DocType: Scheduled Job Type,Weekly Long,പ്രതിവാര ദൈർഘ്യം apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ഡൗൺലോഡ് ഫലകം apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ഫോമുകൾ ഇച്ഛാനുസൃത JavaScript ചേർക്കുക. ,Role Permissions Manager,റോൾ അനുമതികൾ മാനേജർ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,പുതിയ പ്രിന്റ് ഫോർമാറ്റ് പേര് apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,സൈഡ്ബാർ ടോഗിൾ ചെയ്യുക +DocType: Server Script,After Save (Submitted Document),സംരക്ഷിച്ച ശേഷം (സമർപ്പിച്ച പ്രമാണം) DocType: Data Migration Run,Pull Insert,ഇൻസേർട്ട് ചെയ്യുക DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ഗുണിത മൂല്യത്തിനൊപ്പം പോയിന്റുകൾ ഗുണിച്ചതിനുശേഷം അനുവദനീയമായ പരമാവധി പോയിന്റുകൾ (കുറിപ്പ്: പരിധിയില്ലാതെ ഈ ഫീൽഡ് ശൂന്യമാക്കുക അല്ലെങ്കിൽ 0 സജ്ജമാക്കുക) @@ -2907,6 +3003,7 @@ DocType: User Permission,User Permission,ഉപയോക്തൃ അനു apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ബ്ലോഗ് apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,എൽഡാപ്പ് ഇൻസ്റ്റാളുചെയ്തിട്ടില്ല apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ഡാറ്റ ഉപയോഗിച്ച് ഡൗൺലോഡ് +DocType: Server Script,Before Cancel,റദ്ദാക്കുന്നതിനുമുമ്പ് DocType: Workflow State,hand-right,കൈ-വലത് DocType: Website Settings,Subdomain,ഉപഡൊമെയ്നിൽ DocType: S3 Backup Settings,Region,പ്രവിശ്യ @@ -2952,12 +3049,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,പഴയ പാസ് DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} പോസ്റ്റുകൾ apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","ഫോർമാറ്റ് നിരകൾ, ചോദ്യത്തിലെ കോളം ലേബലുകൾ തരും." +DocType: Onboarding Slide,Slide Fields,ഫീൽഡുകൾ സ്ലൈഡുചെയ്യുക DocType: Has Domain,Has Domain,ഡൊമെയ്ൻ ഉണ്ട് DocType: User,Allowed In Mentions,പരാമർശങ്ങളിൽ അനുവദനീയമാണ് apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ഒരു അക്കൗണ്ട് ഇല്ലേ? സൈൻ അപ്പ് ചെയ്യുക apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ഐഡി ഫീൽഡ് നീക്കം ചെയ്യാൻ സാധിക്കുന്നില്ല apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable ആണെങ്കിലോ നിയോഗിക്കുകയോ നന്നാക്കുവിൻ സജ്ജീകരിക്കാൻ കഴിയില്ല DocType: Address,Bihar,ബിഹാർ +DocType: Notification Settings,Subscribed Documents,സബ്‌സ്‌ക്രൈബുചെയ്‌ത പ്രമാണങ്ങൾ apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,ഉപയോക്തൃ ക്രമീകരണങ്ങൾ DocType: Report,Reference Report,റഫറൻസ് റിപ്പോർട്ട് DocType: Activity Log,Link DocType,ലിങ്ക് DocType @@ -2975,6 +3074,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google കലണ്ട apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,നിങ്ങൾ തിരയുന്ന പേജ് കാണുന്നില്ല. കാരണം അതു നീക്കി അല്ലെങ്കിൽ കണ്ണി ഒരു ഭാഷാസ്നേഹി ഇല്ല ഇതിനുള്ള കാരണമാകാം. apps/frappe/frappe/www/404.html,Error Code: {0},പിശക് കോഡ്: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","പ്ലെയിൻ ടെക്സ്റ്റ്, വരികൾ മാത്രം ഏതാനും, പേജ് ലിസ്റ്റിംഗ് വിവരണം. (പരമാവധി 140 പ്രതീകങ്ങൾ)" +DocType: Server Script,DocType Event,ഡോക്‌ടൈപ്പ് ഇവന്റ് apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,നിർബന്ധിത ഫീൽഡുകളാണ് {0} DocType: Workflow,Allow Self Approval,സ്വയം അംഗീകാരം നൽകുക DocType: Event,Event Category,ഇവന്റ് വിഭാഗം @@ -2991,6 +3091,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,താങ്കളുടെ പേര് apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,കണക്ഷൻ വിജയം DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,സ്ലൈഡ് തരത്തിന്റെ ഓൺ‌ബോർഡിംഗ് സ്ലൈഡ് തുടരുക ഇതിനകം നിലവിലുണ്ട്. DocType: DocType,Default Sort Field,സ്ഥിരസ്ഥിതി അടുക്കൽ ഫീൽഡ് DocType: File,Is Folder,ഫോൾഡർ DocType: Document Follow,DocType,DocType @@ -3027,7 +3128,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,മൂ DocType: Workflow State,arrow-up,അമ്പ്-അപ്പ് DocType: Dynamic Link,Link Document Type,ലിങ്ക് പ്രമാണ തരം apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} പട്ടികയ്‌ക്ക് കുറഞ്ഞത് ഒരു വരി ഉണ്ടായിരിക്കണം +DocType: Server Script,Server Script,സെർവർ സ്ക്രിപ്റ്റ് DocType: OAuth Bearer Token,Expires In,കാലഹരണപ്പെടുന്നു +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","ഒരു കൂട്ടം ഫീൽഡുകൾ ആവർത്തിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്ന സമയം (ഉദാ: സ്ലൈഡിൽ നിങ്ങൾക്ക് 3 ഉപഭോക്താക്കളെ വേണമെങ്കിൽ, ഈ ഫീൽഡ് 3 ആയി സജ്ജമാക്കുക. സ്ലൈഡിൽ ആദ്യത്തെ സെറ്റ് ഫീൽഡുകൾ മാത്രമേ നിർബന്ധമായി കാണിക്കൂ)" DocType: DocField,Allow on Submit,സമർപ്പിക്കുക അനുവദിക്കുക DocType: DocField,HTML,എച്ച്ടിഎംഎൽ DocType: Error Snapshot,Exception Type,ഒഴിവാക്കൽ തരം @@ -3037,6 +3140,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,തലക്കെട്ടുകൾ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,വരാനിരിക്കുന്ന apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,ദയവായി അപ്ലിക്കേഷൻ അക്സസ് കീ അപ്ലിക്കേഷൻ രഹസ്യ കീ മൂല്യങ്ങൾ നൽകുക +DocType: Email Account,Append Emails to Sent Folder,അയച്ച ഫോൾഡറിലേക്ക് ഇമെയിലുകൾ ചേർക്കുക DocType: Web Form,Accept Payment,പേമെന്റ് apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ലിസ്റ്റ് ഇനം തിരഞ്ഞെടുക്കുക apps/frappe/frappe/config/core.py,A log of request errors,അഭ്യർത്ഥന പിശകുകൾ ഒരു ലോഗ് @@ -3055,7 +3159,7 @@ DocType: Translation,Contributed,സംഭാവന ചെയ്തു apps/frappe/frappe/config/customization.py,Form Customization,ഫോം ഇഷ്‌ടാനുസൃതമാക്കൽ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,സജീവ സെഷനുകളൊന്നുമില്ല DocType: Web Form,Route to Success Link,വിജയിക്കുന്നതിന് ലിങ്ക് റൂട്ട് ചെയ്യുക -DocType: Top Bar Item,Right,വലത് +DocType: Onboarding Slide Field,Right,വലത് apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,വരാനിരിക്കുന്ന ഇവന്റുകളൊന്നുമില്ല DocType: User,User Type,ഉപയോക്തൃ തരം DocType: Prepared Report,Ref Report DocType,റിപ് റിപ്പോർട്ട് ഡോക്ടിപ്പ് @@ -3072,6 +3176,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,വീണ്ട apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' അല്ലെങ്കിൽ 'https: //' ഉപയോഗിച്ച് ആരംഭിക്കണം apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ഓപ്ഷൻ 3 DocType: Communication,uid,യു.ഐ.ഡി +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,ഇത് പഴയപടിയാക്കാൻ കഴിയില്ല DocType: Workflow State,Edit,എഡിറ്റ് DocType: Website Settings,Chat Operators,ചാറ്റ് ഓപ്പറേറ്റർമാർ DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3083,7 +3188,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,നിങ്ങൾ ഈ രൂപത്തിൽ സംരക്ഷിക്കാത്ത മാറ്റങ്ങളുണ്ട്. തുടരുന്നതിനു മുമ്പ് സംരക്ഷിക്കുക. DocType: Address,Telangana,തെലുങ്കാന apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} സ്ഥിരസ്ഥിതി ഒരു ഓപ്ഷൻ ആയിരിക്കണം -DocType: Tag Doc Category,Tag Doc Category,ടാഗ് ഡോക് വർഗ്ഗം apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,ലാൻഡ്‌സ്‌കേപ്പ് മോഡിൽ 10-ൽ കൂടുതൽ നിരകളുള്ള റിപ്പോർട്ട് മികച്ചതായി തോന്നുന്നു. apps/frappe/frappe/database/database.py,Invalid field name: {0},ഫീൽഡ് നാമം അസാധുവാണ്: {0} DocType: Milestone,Milestone,നാഴികക്കല്ല് @@ -3092,7 +3196,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} എന്നത apps/frappe/frappe/email/queue.py,Emails are muted,ഇമെയിലുകൾ നിശബ്ദമാക്കി apps/frappe/frappe/config/integrations.py,Google Services,Google സേവനങ്ങൾ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,കണ്ട്രോൾ + അപ് -apps/frappe/frappe/utils/data.py,1 weeks ago,1 ആഴ്ച മുമ്പ് +DocType: Onboarding Slide,Slide Description,സ്ലൈഡ് വിവരണം DocType: Communication,Error,പിശക് apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,ആദ്യം ഒരു സന്ദേശം സജ്ജമാക്കുക DocType: Auto Repeat,End Date,അവസാന ദിവസം @@ -3113,10 +3217,12 @@ DocType: Footer Item,Group Label,ഗ്രൂപ്പ് ലേബൽ DocType: Kanban Board,Kanban Board,Kanban ബോർഡ് apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google കോൺ‌ടാക്റ്റുകൾ‌ ക്രമീകരിച്ചു. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 റെക്കോർഡ് എക്‌സ്‌പോർട്ടുചെയ്യും +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ഉപയോക്താവുമായി ബന്ധപ്പെട്ട ഇമെയിൽ അക്കൗണ്ടുകളൊന്നുമില്ല. ഉപയോക്താവ്> ഇമെയിൽ ഇൻ‌ബോക്‌സിന് കീഴിൽ ഒരു അക്കൗണ്ട് ചേർക്കുക. DocType: DocField,Report Hide,റിപ്പോർട്ട് മറയ്ക്കുക apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ട്രീ കാഴ്ച {0} ലഭ്യമല്ല DocType: DocType,Restrict To Domain,ഡൊമൈൻ എന്നതിലേക്ക് പരിമിതപ്പെടുത്തുക DocType: Domain,Domain,ഡൊമൈൻ +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,ഫയൽ URL അസാധുവാണ്. സിസ്റ്റം അഡ്മിനിസ്ട്രേറ്ററുമായി ബന്ധപ്പെടുക. DocType: Custom Field,Label Help,ലേബൽ സഹായം DocType: Workflow State,star-empty,നക്ഷത്രം-ഒഴിഞ്ഞ apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,തീയതി പലപ്പോഴും ഊഹിക്കാൻ എളുപ്പമാണ്. @@ -3140,6 +3246,7 @@ DocType: Workflow State,hand-left,കൈ-left DocType: Data Import,If you are updating/overwriting already created records.,നിങ്ങൾ ഇതിനകം സൃഷ്ടിച്ച റെക്കോർഡുകൾ തിരുത്തിയെഴുതുക / തിരുത്തിയെഴുതുകയാണെങ്കിൽ. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ഗ്ലോബൽ ആണ് DocType: Email Account,Use SSL,SSL ഉപയോഗിക്കുക +DocType: Webhook,HOOK-.####,ഹുക്ക് -. #### DocType: Workflow State,play-circle,പ്ലേ സർക്കിൾ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,പ്രമാണം ശരിയായി നിശ്ചയിക്കാനായില്ല apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",അസാധുവായ "depends_on" എക്സ്പ്രഷൻ @@ -3156,6 +3263,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,അവസാനം പുതുക്കിയത് apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,പ്രമാണ തരത്തിനായി DocType: Workflow State,arrow-right,അമ്പ്-വലത് +DocType: Server Script,API Method,API രീതി DocType: Workflow State,Workflow state represents the current state of a document.,വർക്ക്ഫ്ലോ സംസ്ഥാന ഒരു പ്രമാണം നിലവിലെ അവസ്ഥ പ്രതിനിധീകരിക്കുന്നു. DocType: Letter Head,Letter Head Based On,ലെറ്റർ ഹെഡ് അടിസ്ഥാനമാക്കി apps/frappe/frappe/utils/oauth.py,Token is missing,ടോക്കൺ കാണാനില്ല @@ -3194,6 +3302,7 @@ DocType: Comment,Relinked,-മായി DocType: Print Settings,Compact Item Print,കോംപാക്റ്റ് ഇനം പ്രിന്റ് DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,റീഡയറക്റ്റ് URL +DocType: Onboarding Slide Field,Placeholder,പ്ലെയ്‌സ്‌ഹോൾഡർ DocType: SMS Settings,Enter url parameter for receiver nos,റിസീവർ എണ്ണം വേണ്ടി URL പാരമീറ്റർ നൽകുക DocType: Chat Profile,Online,ഓൺലൈൻ DocType: Email Account,Always use Account's Name as Sender's Name,അയച്ചയാളുടെ പേരായി എല്ലായ്പ്പോഴും അക്കൗണ്ടിന്റെ പേര് ഉപയോഗിക്കുക @@ -3203,7 +3312,6 @@ DocType: Workflow State,Home,ഹോം DocType: OAuth Provider Settings,Auto,ഓട്ടോ DocType: System Settings,User can login using Email id or User Name,ഇമെയിൽ ഐഡി അല്ലെങ്കിൽ ഉപയോക്തൃ നാമം ഉപയോഗിച്ച് ഉപയോക്താവിന് ലോഗിൻ ചെയ്യാൻ കഴിയും DocType: Workflow State,question-sign,ചോദ്യം-അടയാളം -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} പ്രവർത്തനരഹിതമാക്കി apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",വെബ് കാഴ്ചയ്ക്കായി ഫീൽഡ് "റൂട്ട്" നിർബന്ധമാണ് apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} DocType: Energy Point Rule,The user from this field will be rewarded points,ഈ ഫീൽഡിൽ നിന്നുള്ള ഉപയോക്താവിന് റിവാർഡ് പോയിന്റുകൾ ലഭിക്കും @@ -3228,6 +3336,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ഉടമ എങ് DocType: Data Migration Mapping,Push,തള്ളുക apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ഫയലുകൾ ഇവിടെ ഇടുക DocType: OAuth Authorization Code,Expiration time,കാലഹരണപ്പെടുന്ന സമയം +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,പ്രമാണങ്ങൾ തുറക്കുക DocType: Web Page,Website Sidebar,വെബ്സൈറ്റ് സൈഡ്ബാർ DocType: Web Form,Show Sidebar,സൈഡ്ബാർ കാണിക്കുക apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,നിങ്ങൾ {0} ഇത് ആക്സസ് ചെയ്യാൻ ലോഗിൻ ചെയ്യേണ്ടതുണ്ട്. @@ -3278,6 +3387,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,പ്രിന്റ് ഫോർമാറ്റ് apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ഗ്രിഡ് കാഴ്ച ടോഗിൾ ചെയ്യുക apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,അടുത്ത റെക്കോർഡിലേക്ക് പോകുക +DocType: System Settings,Time Format,സമയ ഫോർമാറ്റ് apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,അസാധുവായ പേയ്മെന്റ് ഗേറ്റ്വേ ക്രെഡൻഷ്യലുകൾ DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ചില പിശകുകൾ ഉള്ള വരികളാൽ മാത്രം സൃഷ്ടിച്ച ടെംപ്ലേറ്റ് ഫയൽ ആണ് ഇത്. തിരുത്തലിനും ഇറക്കുമതിയ്ക്കുമായി നിങ്ങൾ ഈ ഫയൽ ഉപയോഗിക്കേണ്ടതുണ്ട്. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ഡോക്യുമെന്റ് ഇനങ്ങൾ റോളുകളും ന് അനുമതികൾ സജ്ജമാക്കുക @@ -3321,12 +3431,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,മറു apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ഡെസ്ക് താളുകൾ (സ്ഥലം കൈവശമുള്ളവരുടെ) DocType: DocField,Collapsible Depends On,സൌകര്യങ്ങളൊക്കെ ആശ്രയിച്ചിരിക്കുന്നു DocType: Print Style,Print Style Name,പ്രിന്റ് സ്റ്റൈൽ നെയിം +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ഒരു ഡാഷ്‌ബോർഡ് ചാർട്ട് സൃഷ്‌ടിക്കുന്നതിന് ഗ്രൂപ്പ് ബൈ ഫീൽഡ് ആവശ്യമാണ് DocType: Print Settings,Allow page break inside tables,ടേബിളിനുള്ളിലെ പേജ് ഛേദി അനുവദിക്കുക DocType: Email Account,SMTP Server,SMTP സെർവർ DocType: Print Format,Print Format Help,പ്രിന്റ് ഫോർമാറ്റ് സഹായം apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ഇടത്തിൽ ഒരു ഉപയോക്താവിനെ ഒരു ഉപയോക്താവിനുള്ളിൽ ഉണ്ടായിരിക്കണം. DocType: DocType,Beta,ബീറ്റ DocType: Dashboard Chart,Count,എണ്ണം +DocType: Dashboard Chart,Group By Type,തരം അനുസരിച്ച് ഗ്രൂപ്പ് apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} {1} പോലെ പുനഃസ്ഥാപിച്ചു apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","നിങ്ങൾ അപ്ഡേറ്റ് എങ്കിൽ, നിലവിലുള്ള വരികൾ ഇല്ലാതാക്കപ്പെടില്ല മറ്റാരെങ്കിലും "പുനരാലേഖനം" തിരഞ്ഞെടുക്കുക." DocType: DocField,Translatable,വിവർത്തനം ചെയ്യാനാകുന്നത് @@ -3335,8 +3447,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ഉപയ DocType: Web Form,Web Form,വെബ് ഫോം apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},{0} തീയതി ഫോർമാറ്റിൽ ആയിരിക്കണം: {1} DocType: About Us Settings,Org History Heading,ORG ചരിത്രം തലക്കെട്ട് +DocType: Scheduled Job Type,Scheduled Job Type,ഷെഡ്യൂൾ ചെയ്ത തൊഴിൽ തരം DocType: Print Settings,Allow Print for Cancelled,റദ്ദാക്കി പ്രിന്റ് അനുവദിക്കുക DocType: Communication,Integrations can use this field to set email delivery status,സമന്വയങ്ങൾ ഇമെയിൽ ഡെലിവറി നില സജ്ജീകരിക്കാൻ ഈ ഫീൽഡ് ഉപയോഗിക്കാൻ കഴിയും +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,ലിങ്കുചെയ്‌ത എല്ലാ പ്രമാണങ്ങളും റദ്ദാക്കാൻ നിങ്ങൾക്ക് അനുമതിയില്ല. DocType: Web Form,Web Page Link Text,വെബ് പേജ് ലിങ്ക്പദാവലി DocType: Page,System Page,സിസ്റ്റം പേജ് DocType: Page,System Page,സിസ്റ്റം പേജ് @@ -3344,6 +3458,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ഇഎസ്സി apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}</b> എന്നതിനുള്ള ഇഷ്ടാനുസൃതമാക്കലുകൾ ഇതിലേക്ക് എക്സ്പോർട്ടുചെയ്തു: <br> {1} DocType: Website Settings,Include Search in Top Bar,ടോപ്പ് ബാറിലെ തിരയൽ ഉൾപ്പെടുത്തുക +DocType: Scheduled Job Type,Daily Long,ഡെയ്‌ലി ലോംഗ് DocType: GSuite Settings,Allow GSuite access,ഗ്സുഇതെ ആക്സസ് അനുവദിക്കുക DocType: DocType,DESC,DESC DocType: DocType,Naming,പേരിടൽ @@ -3434,6 +3549,7 @@ DocType: Notification,Send days before or after the reference date,റഫറൻ DocType: User,Allow user to login only after this hour (0-24),(0-24) യൂസർ മാത്രമേ ഈ മണിക്കൂറിന് ശേഷം ലോഗിൻ അനുവദിക്കുക apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",ക്രമത്തിൽ ഓരോന്നായി നിയോഗിക്കുക DocType: Integration Request,Subscription Notification,സബ്സ്ക്രിപ്ഷൻ അറിയിപ്പ് +DocType: Customize Form Field, Allow in Quick Entry ,ദ്രുത എൻ‌ട്രിയിൽ‌ അനുവദിക്കുക apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,അല്ലെങ്കിൽ അറ്റാച്ചുചെയ്യുക DocType: Auto Repeat,Start Date,തുടങ്ങുന്ന ദിവസം apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,മൂല്യം @@ -3448,6 +3564,7 @@ DocType: Google Drive,Backup Folder ID,ബാക്കപ്പ് ഫോൾഡ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"എന്നല്ല, ഡവലപ്പർ മോഡിൽ! Site_config.json ൽ സജ്ജമാക്കുക അല്ലെങ്കിൽ 'കസ്റ്റം' DocType ഉണ്ടാക്കുക." DocType: Workflow State,globe,ഭൂഗോളം DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,വീഡിയോ DocType: Assignment Rule,Priority,മുൻഗണന DocType: Email Queue,Unsubscribe Param,ഒഴിവാക്കുക പരം DocType: DocType,Hide Sidebar and Menu,സൈഡ്‌ബാറും മെനുവും മറയ്‌ക്കുക @@ -3459,6 +3576,7 @@ DocType: DocType,Allow Import (via Data Import Tool),ഇറക്കുമതി apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,എസ്.ആർ DocType: DocField,Float,ഒഴുകുക DocType: Print Settings,Page Settings,പേജ് ക്രമീകരണങ്ങൾ +DocType: Notification Settings,Notification Settings,അറിയിപ്പ് ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,സംരക്ഷിക്കുന്നത്... apps/frappe/frappe/www/update-password.html,Invalid Password,അസാധുവായ പാസ്വേഡ് DocType: Contact,Purchase Master Manager,വാങ്ങൽ മാസ്റ്റർ മാനേജർ @@ -3472,6 +3590,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,ലെറ്റർ ഹെഡ് ഇമേജ് DocType: Address,Party GSTIN,പാർട്ടി ഗ്സ്തിന് +DocType: Scheduled Job Type,Cron Format,ക്രോൺ ഫോർമാറ്റ് apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} റിപ്പോർട്ട് DocType: SMS Settings,Use POST,POST ഉപയോഗിക്കുക DocType: Communication,SMS,എസ്എംഎസ് @@ -3517,18 +3636,20 @@ DocType: Workflow,Allow approval for creator of the document,പ്രമാണ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,റിപ്പോർട്ട് സംരക്ഷിക്കുക DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API എൻഡ്പോയിന്റ് ആർഗുകൾ +DocType: DocType Action,Server Action,സെർവർ പ്രവർത്തനം apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,അഡ്മിനിസ്ട്രേറ്റർ ഐപി വിലാസം {2} വഴി {1} ന് {0} പ്രവേശിക്കാനോ. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,രക്ഷാകർതൃ ഫീൽഡ് സാധുവായ ഒരു ഫീൽഡ് നാമമായിരിക്കണം apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,സബ്സ്ക്രിപ്ഷൻ മാറ്റുന്നതിനിടെ പരാജയപ്പെട്ടു DocType: LDAP Settings,LDAP Group Field,LDAP ഗ്രൂപ്പ് ഫീൽഡ് +DocType: Notification Subscribed Document,Notification Subscribed Document,അറിയിപ്പ് സബ്‌സ്‌ക്രൈബുചെയ്‌ത പ്രമാണം apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,സമമായവ apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,അസാധുവായ CSV ഫോർമാറ്റ് -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ ട്രേ അപ്ലിക്കേഷനിലേക്ക് കണക്റ്റുചെയ്യുന്നതിൽ പിശക് ... <br><br> അസംസ്കൃത പ്രിന്റ് സവിശേഷത ഉപയോഗിക്കുന്നതിന് നിങ്ങൾ QZ ട്രേ ആപ്ലിക്കേഷൻ ഇൻസ്റ്റാൾ ചെയ്ത് പ്രവർത്തിപ്പിക്കേണ്ടതുണ്ട്. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ ട്രേ ഡ Download ൺലോഡ് ചെയ്ത് ഇൻസ്റ്റാൾ ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">അസംസ്കൃത പ്രിന്റിംഗിനെക്കുറിച്ച് കൂടുതലറിയാൻ ഇവിടെ ക്ലിക്കുചെയ്യുക</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,ബാക്കപ്പുകൾ എണ്ണം ക്രമീകരിക്കുക DocType: DocField,Do not allow user to change after set the first time,ഉപയോക്താവിന് ശേഷം ആദ്യമായി സജ്ജമാക്കാൻ മാറ്റാൻ അനുവദിക്കരുത് apps/frappe/frappe/utils/data.py,1 year ago,1 വർഷം മുമ്പ് +DocType: DocType,Links Section,ലിങ്കുകൾ വിഭാഗം apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","എല്ലാ പ്രിന്റ്, ഡ download ൺ‌ലോഡ്, എക്‌സ്‌പോർട്ട് ഇവന്റുകളുടെയും ലോഗ് കാണുക" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 മാസം DocType: Contact,Contact,കോൺടാക്റ്റ് @@ -3554,16 +3675,18 @@ DocType: Auto Email Report,Dynamic Report Filters,ഡൈനാമിക് റ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,പുതിയ ഇമെയിൽ DocType: Custom DocPerm,Export,എക്സ്പോർട്ട് +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},സ്റ്റാറ്റസ് ഡിപൻഡൻസി ഫീൽഡും ചേർക്കുന്നു {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ ട്രേ പരാജയപ്പെട്ടു: DocType: Dropbox Settings,Dropbox Settings,ഡ്രോപ്പ്ബോക്സ് ക്രമീകരണങ്ങൾ DocType: About Us Settings,More content for the bottom of the page.,പേജിന്റെ അടിയിൽ വേണ്ടി കൂടുതൽ ഉള്ളടക്കം. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ഈ പ്രമാണം പഴയപടിയാക്കി apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google ഡ്രൈവ് ബാക്കപ്പ് വിജയകരം. +DocType: Webhook,Naming Series,സീരീസ് നാമകരണം DocType: Workflow,DocType on which this Workflow is applicable.,ഈ വർക്ക്ഫ്ലോ ബാധകമായ ഏത് ന് DocType. DocType: User,Enabled,പ്രാപ്തമാക്കി apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,സജ്ജീകരണം പൂർത്തിയാക്കുന്നത് പരാജയപ്പെട്ടു apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},പുതിയ {0}: {1} -DocType: Tag Category,Category Name,വർഗ്ഗം പേര് +DocType: Blog Category,Category Name,വർഗ്ഗം പേര് apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,കുട്ടികളുടെ പട്ടിക ഡാറ്റ ലഭിക്കാൻ രക്ഷകർത്താവ് ആവശ്യമാണ് apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ഇംപോർട്ട് സബ്സ്ക്രൈബുചെയ്തവർ DocType: Print Settings,PDF Settings,പി.ഡി.എഫ് ക്രമീകരണങ്ങൾ @@ -3599,6 +3722,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,കലണ്ടർ apps/frappe/frappe/client.py,No document found for given filters,നൽകിയ ഫിൽട്ടറുകൾ പ്രമാണം കണ്ടെത്തിയില്ല apps/frappe/frappe/config/website.py,A user who posts blogs.,ബ്ലോഗുകൾ പോസ്റ്റുചെയ്യുന്ന ഉപയോക്താവ്. +DocType: DocType Action,DocType Action,ഡോക്‌ടൈപ്പ് പ്രവർത്തനം apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","മറ്റൊരു {0} പേര് ഉപയോഗിച്ച് {1} മറ്റൊരു പേര് തിരഞ്ഞെടുക്കുക, നിലവിലുണ്ട്" DocType: DocType,Custom?,കസ്റ്റം? DocType: Website Settings,Website Theme Image,വെബ്സൈറ്റ് തീം ചിത്രം @@ -3608,6 +3732,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},{0}: ല apps/frappe/frappe/config/integrations.py,Backup,ബാക്കപ്പ് apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ഒരു ഡാഷ്‌ബോർഡ് ചാർട്ട് സൃഷ്‌ടിക്കാൻ പ്രമാണ തരം ആവശ്യമാണ് DocType: DocField,Read Only,വായിക്കാൻ മാത്രം +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,റേസർ‌പേ ഓർ‌ഡർ‌ സൃഷ്‌ടിക്കാൻ‌ കഴിഞ്ഞില്ല apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,ന്യൂ വാർത്താക്കുറിപ്പ് DocType: Energy Point Log,Energy Point Log,എനർജി പോയിന്റ് ലോഗ് DocType: Print Settings,Send Print as PDF,PDF ആയി പ്രിന്റ് അയയ്ക്കുക @@ -3632,15 +3757,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ന apps/frappe/frappe/www/login.html,Or login with,അതല്ല ഉപയോഗിച്ച് ലോഗിൻ DocType: Error Snapshot,Locals,നാട്ടുകാർ apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ന് {1} {0} വഴി ആശയവിനിമയം: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} {1} ഒരു അഭിപ്രായത്തിൽ പരാമർശിച്ചു apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ഗ്രൂപ്പ് പ്രകാരം തിരഞ്ഞെടുക്കുക ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ഉദാ (55 + 434) / 4 അല്ലെങ്കിൽ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ആവശ്യമാണ് DocType: Integration Request,Integration Type,ഇന്റഗ്രേഷൻ ഇനം DocType: Newsletter,Send Attachements,അത്തഛെമെംത്സ് അയയ്ക്കുക +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,ഫിൽട്ടറുകളൊന്നും കണ്ടെത്തിയില്ല apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google കോൺടാക്റ്റുകളുടെ സംയോജനം. DocType: Transaction Log,Transaction Log,ഇടപാട് ലോഗ് DocType: Contact Us Settings,City,സിറ്റി +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,എല്ലാ ഉപയോക്താക്കൾക്കും കാർഡുകൾ മറയ്‌ക്കുക DocType: DocField,Perm Level,പര്മ് ലെവൽ apps/frappe/frappe/www/confirm_workflow_action.html,View document,പ്രമാണം കാണുക apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,ഇന്നത്തെ കലണ്ടർ സംഭവങ്ങൾ @@ -3651,6 +3777,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ആഗോള തിരയൽ ൽ' തുടർച്ചയായി തരം {0} അനുവദനീയമല്ല {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ആഗോള തിരയൽ ൽ' തുടർച്ചയായി തരം {0} അനുവദനീയമല്ല {1} DocType: Energy Point Log,Appreciation,അഭിനന്ദനം +DocType: Dashboard Chart,Number of Groups,ഗ്രൂപ്പുകളുടെ എണ്ണം apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,കാണുക പട്ടിക DocType: Workflow,Don't Override Status,സ്റ്റാറ്റസ് നിസ്തേജമാക്കരുത് apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,തിരയൽ പദം @@ -3689,7 +3816,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,ന DocType: S3 Backup Settings,cn-northwest-1,cn- വടക്കുപടിഞ്ഞാറൻ -1 DocType: Dropbox Settings,Limit Number of DB Backups,DB ബാക്കപ്പുകളുടെ എണ്ണം പരിമിതപ്പെടുത്തുക DocType: Custom DocPerm,Level,ലെവൽ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,അവസാന 30 ദിവസം DocType: Custom DocPerm,Report,റിപ്പോർട്ട് apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,തുക 0 വലുതായിരിക്കണം. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ ട്രേയിലേക്ക് കണക്റ്റുചെയ്‌തു! @@ -3706,6 +3832,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,കുട്ടികളുടെ പട്ടിക തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,പ്രാഥമിക പ്രവർത്തനം ട്രിഗർ ചെയ്യുക apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,മാറ്റുക +DocType: Social Login Key,User ID Property,ഉപയോക്തൃ ഐഡി പ്രോപ്പർട്ടി DocType: Email Domain,domain name,ഡൊമെയ്ൻ നാമം DocType: Contact Email,Contact Email,കോൺടാക്റ്റ് ഇമെയിൽ DocType: Kanban Board Column,Order,ഓർഡർ @@ -3727,7 +3854,7 @@ DocType: Contact,Last Name,പേരിന്റെ അവസാന ഭാഗം DocType: Event,Private,സ്വകാര്യ apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,ഇന്ന് യ്ക്കുള്ള അലർട്ടുകൾ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ആയി ഇമെയിൽ പ്രിന്റ് കൂടെയുള്ള അയയ്ക്കുക (ശുപാർശിതം) -DocType: Web Page,Left,ഇടതുപക്ഷം +DocType: Onboarding Slide Field,Left,ഇടതുപക്ഷം DocType: Event,All Day,ദിവസം മുഴുവൻ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,എന്തെങ്കിലും ഈ സൈറ്റിന്റെ പേയ്മെന്റ് ഗേറ്റ്വേ കോൺഫിഗറേഷൻ തെറ്റ് തോന്നുന്നു. പേയ്മെന്റ് സൃഷ്ടിച്ചെങ്കിലും. DocType: GCalendar Settings,State,സ്റ്റേറ്റ് @@ -3758,7 +3885,6 @@ DocType: Workflow State,User,ഉപയോക്താവ് DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- തലക്കെട്ടിന്റെ ഘടന" ബ്രൗസർ വിൻഡോയിൽ കാണിക്കുക ശീർഷകം DocType: Payment Gateway,Gateway Settings,ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ഡോക്യുമെന്റ് തരം വാചകം -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,പരിശോധനകള്പ്രവര്ത്തിപ്പിയ്ക്കുക apps/frappe/frappe/handler.py,Logged Out,ലോഗ് ഔട്ട് apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,കൂടുതൽ... DocType: System Settings,User can login using Email id or Mobile number,ഉപയോക്തൃ ഇമെയിൽ ഐഡി അല്ലെങ്കിൽ മൊബൈൽ നമ്പർ ഉപയോഗിച്ച് പ്രവേശിക്കാൻ കഴിയും @@ -3775,6 +3901,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,സംഗ്രഹം DocType: Event,Event Participants,ഇവന്റ് പങ്കാളികൾ DocType: Auto Repeat,Frequency,ഫ്രീക്വൻസി +DocType: Onboarding Slide,Slide Order,സ്ലൈഡ് ഓർഡർ DocType: Custom Field,Insert After,ശേഷം തിരുകുക DocType: Event,Sync with Google Calendar,Google കലണ്ടറുമായി സമന്വയിപ്പിക്കുക DocType: Access Log,Report Name,റിപ്പോർട്ട് പേര് @@ -3802,6 +3929,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},തരം കറന്സി മാക്സ് വീതി നിരയിൽ 100px {0} ആണ് apps/frappe/frappe/config/website.py,Content web page.,ഉള്ളടക്ക വെബ് പേജ്. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ഒരു പുതിയ റോൾ ചേർക്കുക +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,വെബ് പേജ് സന്ദർശിക്കുക +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,പുതിയ അസൈൻമെന്റ് DocType: Google Contacts,Last Sync On,അവസാനമായി സമന്വയിപ്പിക്കുക ഓണാണ് DocType: Deleted Document,Deleted Document,ഇല്ലാതാക്കി പ്രമാണം apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ശ്ശോ! എന്തോ കുഴപ്പം സംഭവിച്ചു @@ -3811,7 +3940,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ലാൻഡ്സ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ജാവാസ്ക്രിപ്റ്റിൽ ക്ലയന്റ് സൈഡ് സ്ക്രിപ്റ്റ് എക്സ്റ്റൻഷനുകൾ DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,താഴെ കൊടുത്തിരിക്കുന്ന ഡോക്യുമെന്റുകൾക്കുള്ള റിക്കോർഡുകൾ ഫിൽറ്റർ ചെയ്യപ്പെടും -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,ഷെഡ്യൂളർ നിഷ്‌ക്രിയം +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,ഷെഡ്യൂളർ നിഷ്‌ക്രിയം DocType: Blog Settings,Blog Introduction,ബ്ലോഗ് ആമുഖം DocType: Global Search Settings,Search Priorities,മുൻ‌ഗണനകൾ തിരയുക DocType: Address,Office,ഓഫീസ് @@ -3821,13 +3950,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ഡാഷ്‌ബോർഡ DocType: User,Email Settings,ഇമെയിൽ ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ഇവിടെ ഡ്രോപ്പ് ചെയ്യുക DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","പ്രവർത്തനക്ഷമമാക്കിയിട്ടുണ്ടെങ്കിൽ, രണ്ട് ഫാക്ടർ ഓത്ത് ഉപയോഗിച്ച് ഉപയോക്താവിന് ഏത് ഐപി വിലാസത്തിൽ നിന്നും ലോഗിൻ ചെയ്യാൻ കഴിയും, ഇത് സിസ്റ്റം ക്രമീകരണങ്ങളിലെ എല്ലാ ഉപയോക്താക്കൾക്കും സജ്ജമാക്കാൻ കഴിയും" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,പ്രിന്റർ ക്രമീകരണങ്ങൾ ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,തുടരുന്നതിന് നിങ്ങളുടെ പാസ്വേഡ് ദയവായി നൽകുക apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,തുടരുന്നതിന് നിങ്ങളുടെ പാസ്വേഡ് ദയവായി നൽകുക apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ഞാൻ apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ഒരു സാധുവായ സംസ്ഥാനം apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,എല്ലാ പ്രമാണ തരങ്ങൾക്കും പ്രയോഗിക്കുക -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,എനർജി പോയിന്റ് അപ്‌ഡേറ്റ് +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,എനർജി പോയിന്റ് അപ്‌ഡേറ്റ് +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),(ദിവസങ്ങൾ) നിഷ്‌ക്രിയമാണെങ്കിൽ ദിവസേന മാത്രം ജോലികൾ പ്രവർത്തിപ്പിക്കുക apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',മറ്റൊരു പെയ്മെന്റ് രീതി തിരഞ്ഞെടുക്കുക. പേപാൽ കറൻസി ഇടപാടുകളും പിന്തുണയ്ക്കുന്നില്ല '{0}' DocType: Chat Message,Room Type,റൂം തരം DocType: Data Import Beta,Import Log Preview,ലോഗ് പ്രിവ്യൂ ഇറക്കുമതി ചെയ്യുക @@ -3836,6 +3965,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-സർക്കിൾ DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP ഉപയോക്തൃ സൃഷ്ടിയും മാപ്പിംഗും apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',നിങ്ങൾ ആവശ്യപ്പെട്ട് 'ഉപഭോക്താക്കളിൽ ഓറഞ്ച് കണ്ടെത്താൻ' കാര്യങ്ങൾ കണ്ടെത്താനാകും +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,ഇന്നത്തെ ഇവന്റുകൾ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,ക്ഷമിക്കണം! ഉപയോക്താവ് അവരുടെ സ്വന്തം റെക്കോർഡ് പൂർണ്ണ പ്രവേശനം ഉണ്ടായിരിക്കണം. ,Usage Info,ഉപയോഗം വിവരങ്ങളും apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,കീബോർഡ് കുറുക്കുവഴികൾ കാണിക്കുക @@ -3851,6 +3981,7 @@ DocType: Communication,Communication Type,കമ്മ്യൂണിക്ക DocType: DocField,Unique,യുണീക്ക് apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ഭാഗിക വിജയം DocType: Email Account,Service,സേവനം +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് DocType: File,File Name,ഫയലിന്റെ പേര് apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),({1}) {0} {0} വേണ്ടി കണ്ടെത്തിയില്ല apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},റേസ്: {0} @@ -3864,6 +3995,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,പൂ DocType: GCalendar Settings,Enable,പ്രവർത്തനക്ഷമമാക്കുക DocType: Google Maps Settings,Home Address,ഹോം വിലാസം apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),നിങ്ങൾ മാത്രം ഒന്നിലൂടെ 5000 റെക്കോർഡുകൾ വരെ അപ്ലോഡ് ചെയ്യാൻ കഴിയും. (ചില കേസുകളിൽ കുറവോ ആയിരിക്കാം) +DocType: Report,"output in the form of `data = [columns, result]`","`ഡാറ്റ = [നിരകൾ, ഫലം]` രൂപത്തിലുള്ള output ട്ട്‌പുട്ട്" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ബാധകമായ പ്രമാണ തരങ്ങൾ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ഉപയോക്തൃ അസൈൻമെന്റുകൾക്കായി നിയമങ്ങൾ സജ്ജമാക്കുക. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} അപര്യാപ്തമാണ് അനുമതി @@ -3881,7 +4013,6 @@ DocType: Communication,To and CC,"To, Cc" DocType: SMS Settings,Static Parameters,സ്റ്റാറ്റിക് പാരാമീറ്ററുകൾ DocType: Chat Message,Room,ഇടം apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} പരിഷ്കരിച്ചിരിക്കുന്നു -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,പശ്ചാത്തല ജോലികൾ പ്രവർത്തിക്കുന്നില്ല. അഡ്മിനിസ്ട്രേറ്ററുമായി ബന്ധപ്പെടുക DocType: Portal Settings,Custom Menu Items,കസ്റ്റം മെനു ഇനങ്ങൾ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,വെബ്സൈറ്റ് സ്ലൈഡ്ഷോയിലേക്ക് അറ്റാച്ചുചെയ്ത എല്ലാ ഇമേജുകളും പൊതുവായതായിരിക്കണം DocType: Workflow State,chevron-right,ഷെവ്റോൺ-വലത് @@ -3895,9 +4026,11 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} മൂല്യങ്ങൾ തിരഞ്ഞെടുത്തു DocType: DocType,Allow Auto Repeat,യാന്ത്രിക ആവർത്തനം അനുവദിക്കുക apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,കാണിക്കാൻ മൂല്യങ്ങളൊന്നുമില്ല +DocType: DocType,URL for documentation or help,ഡോക്യുമെന്റേഷനോ സഹായത്തിനോ ഉള്ള URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ഇമെയിൽ ടെംപ്ലേറ്റ് apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,അകത്തുകയറുന്നതിനുള്ള പാസ്വേഡും ആവശ്യമാണ് +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,അനുവദിക്കുക \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ഏറ്റവും പുതിയ പ്രമാണത്തിൽ ലഭിക്കാൻ പുതുക്കുക. DocType: User,Security Settings,സുരക്ഷാ ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,നിര ചേർക്കുക @@ -3907,6 +4040,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,മെറ്റാ ഫിൽട്ടർ ചെയ്യുക apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},അറ്റാച്ചുചെയ്‌ത {0}: {1} കണ്ടെത്തുക DocType: Web Page,Set Meta Tags,മെറ്റാ ടാഗുകൾ സജ്ജമാക്കുക +DocType: Email Account,Use SSL for Outgoing,Going ട്ട്‌ഗോയിംഗിനായി SSL ഉപയോഗിക്കുക 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: S3 Backup Settings,Backup Limit,ബാക്കപ്പ് പരിധി DocType: Dashboard Chart,Line,ലൈൻ @@ -3938,4 +4072,3 @@ DocType: DocField,Ignore User Permissions,ഉപയോക്താവിന apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,വിജയകരമായി സംരക്ഷിച്ചു apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,നിങ്ങളുടെ സൈൻ അപ്പ് സ്ഥിരീകരിക്കാൻ നിങ്ങളുടെ അഡ്മിനിസ്ട്രേറ്ററോട് ചോദിക്കുക DocType: Domain Settings,Active Domains,സജീവ ഡൊമെയ്നുകൾ -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,ലോഗ് കാണിക്കുക diff --git a/frappe/translations/mr.csv b/frappe/translations/mr.csv index 8112eb6188..44bedd0546 100644 --- a/frappe/translations/mr.csv +++ b/frappe/translations/mr.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,कृपया एक रक्कम फील्ड निवडा. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,आयात फाइल लोड करीत आहे ... DocType: Assignment Rule,Last User,अंतिम वापरकर्ता -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","नवीन कार्य, {0}, तुम्हांला {1} {2} ने नियुक्त केले गेले आहे" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,सत्र डीफॉल्ट जतन केले apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,फाईल रीलोड करा DocType: Email Queue,Email Queue records.,ई-मेल रांग रेकॉर्ड. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} वृक् DocType: User,User Emails,वापरकर्ता ई-मेल DocType: User,Username,वापरकर्तानाव apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,पिन आयात करा +DocType: Scheduled Job Type,Create Log,लॉग तयार करा apps/frappe/frappe/model/base_document.py,Value too big,मूल्य खूप मोठा DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,चालवा स्क्रिप्ट कसोटी @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,मासिक DocType: Address,Uttarakhand,उत्तराखंड DocType: Email Account,Enable Incoming,येणार्या सक्षम apps/frappe/frappe/core/doctype/version/version_view.html,Danger,धोका -DocType: Address,Email Address,ई-मेल पत्ता +apps/frappe/frappe/www/login.py,Email Address,ई-मेल पत्ता DocType: Workflow State,th-large,व्या-मोठ्या DocType: Communication,Unread Notification Sent,न वाचलेली सूचना पाठविलेला apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,निर्यातीला परवानगी दिली नाही. आपण निर्यात {0} भूमिका आवश्यक आहे. @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,फील्ड प्रकाशित आहे DocType: GCalendar Settings,GCalendar Settings,GCalendar सेटिंग्ज DocType: Email Group,Email Group,ई-मेल गट +apps/frappe/frappe/__init__.py,Only for {},फक्त {} साठी DocType: Event,Pulled from Google Calendar,Google कॅलेंडरवरून खेचले DocType: Note,Seen By,करून पाहिले apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,अनेक जोडा -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,आपण काही उर्जा बिंदू मिळवले apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,एक वैध वापरकर्ता प्रतिमा नाही DocType: Energy Point Log,Reverted,परत केले DocType: Success Action,First Success Message,प्रथम यशस्वी संदेश @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,आवडत apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},अयोग्य मूल्य: {0} असणे आवश्यक आहे {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","बदला क्षेत्रात गुणधर्म (कातडे, केवळ वाचनीय, परवानगी इ)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,कौतुक +DocType: Notification Settings,Document Share,दस्तऐवज सामायिक करा DocType: Workflow State,lock,लॉक apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,आमच्याशी संपर्क साधा पृष्ठ सेटिंग्ज. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,प्रशासक लॉग-इन झाला मध्ये @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","सक्षम असल्यास, कागदजत्र पाहिलेले म्हणून चिन्हांकित केले आहे, वापरकर्त्याने प्रथमच ते उघडले" DocType: Auto Repeat,Repeat on Day,दिवसाची पुनरावृत्ती करा DocType: DocField,Color,रंग +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,वाचलेले म्हणून चिन्हांकित करा DocType: Data Migration Run,Log,लॉग DocType: Workflow State,indent-right,मागणीपत्र-योग्य DocType: Has Role,Has Role,भूमिका आहे @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ट्रेसबॅक दर्शवा DocType: DocType,Default Print Format,डीफॉल्ट मुद्रण स्वरूप DocType: Workflow State,Tags,टॅग्ज +DocType: Onboarding Slide,Slide Type,स्लाइड प्रकार apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,काहीही नाही: कार्यप्रवाहाच्या शेवटी apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} क्षेत्रात बिगर अद्वितीय विद्यमान मूल्ये आहेत , म्हणून {1} मधे अद्वितीय सेट केले जाऊ शकत नाही" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,दस्तऐवज प्रकार @@ -134,7 +137,6 @@ DocType: Language,Guest,अतिथी DocType: DocType,Title Field,शीर्षक फील्ड DocType: Error Log,Error Log,त्रुटी लॉग apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,अवैध URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,शेवटचे 7 दिवस apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" "abc" पेक्षा अंदाज फक्त किंचित अजून आहेत जसे पुनरावृत्ती DocType: Notification,Channel,चॅनेल apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",आपण या अनधिकृत आहे असे वाटत असेल तर प्रशासक पासवर्ड बदला. @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,क्लायंट apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,स्तंभ निवडा apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,आपण ते लोड केल्यानंतर हा फॉर्म संपादित केला गेला आहे DocType: Address,Himachal Pradesh,हिमाचल प्रदेश +DocType: Notification Log,Notification Log,सूचना लॉग DocType: System Settings,"If not set, the currency precision will depend on number format","सेट न केल्यास, चलन सुस्पष्टता क्रमांक स्वरूप अवलंबून असेल" DocType: System Settings,"If not set, the currency precision will depend on number format","सेट न केल्यास, चलन सुस्पष्टता क्रमांक स्वरूप अवलंबून असेल" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,अद्भुतबार उघडा @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,पाठवा DocType: Workflow Action Master,Workflow Action Name,कार्यपद्धत क्रिया नाव apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType विलीन करणे शक्य नाही -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,नाही एक zip फाइल DocType: Global Search DocType,Global Search DocType,ग्लोबल सर्च डॉकटाइप DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,ई-मेल पाठविले? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,चार्ट टॉगल करा apps/frappe/frappe/desk/form/save.py,Did not cancel,रद्द करू शकला नाही DocType: Social Login Key,Client Information,ग्राहक माहिती +DocType: Energy Point Rule,Apply this rule only once per document,प्रति नियम एकदाच हा नियम लागू करा DocType: Workflow State,plus,अधिक +DocType: DocField,Read Only Depends On,केवळ वाचनीय यावर अवलंबून असते apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,अतिथी किंवा प्रशासक म्हणून लॉग-इन झाला DocType: Email Account,UNSEEN,न पाहिलेला apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,फाइल व्यवस्थापक @@ -200,9 +205,11 @@ DocType: Communication,BCC,बीसीसी DocType: Unhandled Email,Reason,कारण 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,कोणताही क्रियाकलाप नाही +DocType: Server Script,Script Manager,स्क्रिप्ट व्यवस्थापक +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,कोणताही क्रियाकलाप नाही apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,तृतीय पक्ष अॅप्स apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,प्रथम वापरकर्ता प्रणाली व्यवस्थापक होईल(आपण हे नंतर बदलू शकता). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,आज घटना नाहीत apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,आपण स्वत: ला पुनरावलोकन बिंदू देऊ शकत नाही apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,डॉक्ट टाईप निवडलेल्या डॉक इव्हेंटसाठी सबमिशनयोग्य असणे आवश्यक आहे DocType: Workflow State,circle-arrow-up,मंडळ-बाण-अप @@ -231,8 +238,10 @@ apps/frappe/frappe/config/desk.py,Files,फायली apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,परवानग्या वापरकर्त्यांना ते काय भूमिका करत आहेत यावर आधारित लागू होतात . apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,आपल्याला या दस्तऐवजात संबंधित ईमेल पाठवण्याची परवानगी नाही apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,कृपया {0} वर्गीकरण करणे / गट किमान 1 स्तंभ निवडा +apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} साठी परवानगी नाही: {1}. प्रतिबंधित फील्ड: {2} 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,You are not allowed to delete a standard Website Theme,आपल्याला मानक वेबसाइट थीम हटवण्यास परवानगी नाही +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},आपले प्रथम {0} तयार करा DocType: Data Import,Log Details,लॉग तपशील DocType: Workflow Transition,Example,उदाहरण DocType: Webhook Header,Webhook Header,Webhook शीर्षलेख @@ -249,6 +258,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} अद्यतनित करत आहे apps/frappe/frappe/core/doctype/report/report.js,Disable Report,अक्षम करा अहवाल DocType: Translation,Contributed Translation Doctype Name,सहयोगी भाषांतर दस्तऐवजाचे नाव +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म सानुकूलित करा DocType: PayPal Settings,Redirect To,पुनर्निर्देशित DocType: Data Migration Mapping,Pull,खेचणे DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},जावास्क्रिप्ट स्वरूप: frappe.query_reports ['REPORTNAME'] = {} @@ -262,6 +272,7 @@ DocType: DocShare,Internal record of document shares,दस्तऐवज स DocType: Energy Point Settings,Review Levels,पुनरावलोकन स्तर DocType: Workflow State,Comment,टिप्पणी DocType: Data Migration Plan,Postprocess Method,पोस्टप्रक्रिया पद्धत +DocType: DocType Action,Action Type,क्रिया प्रकार apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,छायाचित्र घे DocType: Assignment Rule,Round Robin,गोल रॉबिन apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","आपण त्यांना दुरूस्ती करून , नंतर त्यांना रद्द सादर केलेली कागदपत्रे बदलू शकता." @@ -275,6 +286,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,म्हणून जतन करा DocType: Comment,Seen,पाहिले apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,अधिक तपशील दर्शवा +DocType: Server Script,Before Submit,सबमिट करण्यापूर्वी DocType: System Settings,Run scheduled jobs only if checked,तपासल्यास फक्त अनुसूचित रोजगार चालवा apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,विभाग शीर्षकाच्या सक्षम केले असल्यास फक्त दर्शविले जाईल apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,संग्रहण @@ -287,10 +299,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ड्रॉपबॉक्स प apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,कस्टम स्क्रिप्टच्या ऍड_फेट संरचनामध्ये चुकीचे फिल्डनाव <b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Google संपर्क निवडा ज्यात संपर्क संकालित केला जावा. DocType: Web Page,Main Section (HTML),मुख्य विभाग (एचटीएमएल) +DocType: Scheduled Job Type,Annual,वार्षिक DocType: Workflow State,headphones,हेडफोन्स apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,पासवर्ड आवश्यक आहे किंवा प्रतीक्षा करत आहे संकेतशब्द निवडा DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,उदा replies@yourcomany.com. सर्व प्रत्युत्तरे या इनबॉक्स मधे येतील. DocType: Slack Webhook URL,Slack Webhook URL,स्लॅक वेबहूक URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",विझार्डमधील स्लाइडची क्रमवारी निश्चित करते. जर स्लाइड दर्शवायची नसेल तर प्राधान्य 0 वर सेट केले पाहिजे. DocType: Data Migration Run,Current Mapping,वर्तमान मॅपिंग apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,वैध ईमेल आणि नाव आवश्यक apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,सर्व संलग्नक खाजगी करा @@ -313,6 +327,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,मस apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,डीफॉल्टकडे रीसेट करा DocType: Workflow,Transition Rules,स्थित्यंतर नियम apps/frappe/frappe/core/doctype/report/report.js,Example:,उदाहरण: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,निर्बंध DocType: Workflow,Defines workflow states and rules for a document.,एक दस्तऐवज साठी कार्यपद्धत राज्ये आणि नियम निश्चित करते. DocType: Workflow State,Filter,फिल्टर apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},अधिक माहितीसाठी त्रुटी लॉग तपासा: {0} @@ -324,6 +339,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,नोकरी apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} लॉग आउट: {1} DocType: Address,West Bengal,पश्चिम बंगाल +DocType: Onboarding Slide,Information,माहिती apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: सेट करू शकत नाही वाटप Submittable नाही तर सबमिट करा DocType: Transaction Log,Row Index,पंक्ती निर्देशांक DocType: Social Login Key,Facebook,फेसबुक @@ -342,7 +358,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,बटण मदत DocType: Kanban Board Column,purple,जांभळा DocType: About Us Settings,Team Members,टीम सदस्य +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,निष्क्रिय साइटसाठी दिवसातून एकदाच नियोजित रोजगार चालविते. डीफॉल्ट 4 वर सेट केल्यास 4 दिवस. DocType: Assignment Rule,System Manager,प्रणाली व्यवस्थापक +DocType: Scheduled Job Log,Scheduled Job,अनुसूचित नोकरी DocType: Custom DocPerm,Permissions,परवानग्या apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,आंतरिक एकत्रिकरणासाठी मंदावते DocType: Dropbox Settings,Allow Dropbox Access,ड्रॉपबॉक्स प्रवेश परवानगी द्या @@ -395,6 +413,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ब DocType: Email Flag Queue,Email Flag Queue,ई-मेल ध्वजांकित करा रांग DocType: Access Log,Columns / Fields,स्तंभ / फील्ड apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,प्रिंट स्वरूपणासाठी स्टाइलशीट +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,डॅशबोर्ड चार्ट तयार करण्यासाठी एकत्रीत कार्य फील्ड आवश्यक आहे apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,खुल्या ओळखणे शक्य {0}. काहीतरी प्रयत्न करा. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,आपली माहिती सादर करण्यात आला आहे apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} वापरकर्ता हटविला जाऊ शकत नाही @@ -411,11 +430,12 @@ DocType: Property Setter,Field Name,फील्ड नाव DocType: Assignment Rule,Assign To Users,वापरकर्त्यांना असाइन करा apps/frappe/frappe/public/js/frappe/utils/utils.js,or,किंवा apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,विभाग नाव ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,सुरू ठेवा +DocType: Onboarding Slide,Continue,सुरू ठेवा apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google एकत्रीकरण अक्षम केले आहे. DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,प्रमाणपत्र apps/frappe/frappe/templates/includes/login/login.js,Verifying...,सत्यापित करीत आहे ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,आपले {0} {1} वरील असाइनमेंट काढले गेले आहे apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,प्रथम डेटा स्तंभ रिक्त असणे आवश्यक आहे. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,सर्व दर्शवा apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,टिप्पणी पहा @@ -424,12 +444,14 @@ DocType: Energy Point Log,Review,पुनरावलोकन DocType: User,Restrict IP,आंतरजाल प्रतिबंधित apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,डॅशबोर्ड apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,या वेळी ई-मेल पाठवण्यास अक्षम +DocType: Notification Log,Email Content,ईमेल सामग्री apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,शोधा किंवा आदेश टाइप करा DocType: Activity Log,Timeline Name,टाइमलाइन नाव apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,केवळ एक {0} प्राथमिक म्हणून सेट केले जाऊ शकते. DocType: Email Account,e.g. smtp.gmail.com,उदा smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,एक नवीन नियम जोडा DocType: Contact,Sales Master Manager,विक्री मास्टर व्यवस्थापक +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,आपल्या अ‍ॅपवर कार्य करण्यासाठी आपल्याला जावास्क्रिप्ट सक्षम करणे आवश्यक आहे. DocType: User Permission,For Value,मूल्यासाठी DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,एक अंतिम चरण @@ -445,6 +467,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,एलडीएपी मध्य apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} पैकी {0} आयात करीत आहे DocType: GCalendar Account,Allow GCalendar Access,GCalendar प्रवेशाची अनुमती द्या apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} एक अनिवार्य फील्ड आहे +DocType: DocType,Documentation Link,कागदपत्र दुवा apps/frappe/frappe/templates/includes/login/login.js,Login token required,लॉगिन टोकन आवश्यक apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,मासिक क्रमवारी: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,एकाधिक सूची आयटम निवडा @@ -466,6 +489,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,फाइल URL मध्ये DocType: Version,Table HTML,टेबल HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,सदस्य जोडा +DocType: Notification Log,Energy Point,ऊर्जा बिंदू apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,आज आगामी कार्यक्रम DocType: Google Calendar,Push to Google Calendar,Google कॅलेंडरवर ढकलणे DocType: Notification Recipient,Email By Document Field,दस्तऐवज शेतात ईमेल @@ -481,7 +505,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,लांब DocType: Currency,Fraction Units,अपूर्णांक एकके apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} पासून {1} करण्यासाठी {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,पूर्ण झाले म्हणून चिन्हांकित करा DocType: Chat Message,Type,प्रकार DocType: Google Settings,OAuth Client ID,OAuth क्लायंट आयडी DocType: Auto Repeat,Subject,विषय @@ -509,6 +532,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,कृपया सत्यापन आपला ईमेल तपासा apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,पट फॉर्म च्या शेवटी असू शकत नाही DocType: Communication,Bounced,बाऊन्स +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,च्या DocType: Deleted Document,Deleted Name,हटविले नाव apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,प्रणाली आणि वेबसाइट वापरकर्ते DocType: Workflow Document State,Doc Status,दस्तऐवज स्थिती @@ -519,6 +543,7 @@ DocType: Language,Language Code,भाषा कोड DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,टीप: अयशस्वी बॅकअपसाठी डीफॉल्ट ईमेल्स पाठविले जातात. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,फिल्टर जोडा apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},एसएमएस खालील संख्येला पाठविले: {0} +DocType: Notification Settings,Assignments,असाइनमेंट्स apps/frappe/frappe/utils/data.py,{0} and {1},{0} आणि {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,संभाषण सुरू करा DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",छपाई मसुदा मथळ्याची नेहमी "मसुदा" जोडा @@ -527,6 +552,7 @@ DocType: Data Migration Run,Current Mapping Start,वर्तमान मॅ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ईमेल स्पॅम म्हणून चिन्हांकित केले आहे DocType: Comment,Website Manager,वेबसाइट व्यवस्थापक apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,फाईल अपलोड डिस्कनेक्ट झाले कृपया पुन्हा प्रयत्न करा. +DocType: Data Import Beta,Show Failed Logs,अयशस्वी लॉग दर्शवा apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,भाषांतर apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,आपण निवडलेल्या ड्राफ्ट किंवा रद्द दस्तऐवज apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{2} ने {2} नुसार {0} हा विभाग सेट केला आहे @@ -534,7 +560,9 @@ apps/frappe/frappe/model/document.py,Document Queued,दस्तऐवज र DocType: GSuite Templates,Destination ID,गंतव्य ID DocType: Desktop Icon,List,यादी DocType: Activity Log,Link Name,दुवा नाव +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,आपण हेवन \ DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy +DocType: Onboarding Slide,Onboarding Slide,ऑनबोर्डिंग स्लाइड apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,अवैध पासवर्ड: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,अवैध पासवर्ड: DocType: Print Settings,Send document web view link in email,ई-मेल मध्ये दस्तऐवज वेब दृश्य लिंक पाठवा @@ -596,6 +624,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},यशस्वी: {0} करण्यासाठी {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,डेमो वापरकर्ता तपशील बदलू शकत नाही. https://erpnext.com एक नवीन खाते साठी साइन अप करा apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,थेंब +DocType: Dashboard Chart,Aggregate Function Based On,एकत्रीत कार्य आधारित apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,बदल करण्यासाठी याला डुप्लिकेट करा apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,जतन करण्यासाठी Enter दाबा apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,तुटलेल्या प्रतिमा links मुळे पीडीएफ पिढी/ generation अयशस्वी @@ -609,7 +638,9 @@ DocType: Notification,Days Before,दिवस करण्यापूर्व apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,डेली इव्हेंट्स त्याच दिवशी संपले पाहिजेत. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,संपादित करा ... DocType: Workflow State,volume-down,आवाज -कमी +DocType: Onboarding Slide,Help Links,मदत दुवे apps/frappe/frappe/auth.py,Access not allowed from this IP Address,या आयपी पत्त्यावरून प्रवेशास परवानगी नाही +DocType: Notification Settings,Enable Email Notifications,ईमेल सूचना सक्षम करा apps/frappe/frappe/desk/reportview.py,No Tags,टॅग्ज DocType: Email Account,Send Notification to,सूचना पाठवा DocType: DocField,Collapsible,संक्षिप्त @@ -638,6 +669,7 @@ DocType: Google Drive,Last Backup On,शेवटचा बॅकअप चा DocType: Customize Form Field,Customize Form Field,फॉर्म फील्ड सानुकूलित DocType: Energy Point Rule,For Document Event,दस्तऐवज कार्यक्रमासाठी DocType: Website Settings,Chat Room Name,चॅट रूमचे नाव +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,अपरिवर्तित DocType: OAuth Client,Grant Type,अनुदान प्रकार apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,वापरकर्ता द्वारे वाचनीय आहेत ते दस्तऐवज तपासा DocType: Deleted Document,Hub Sync ID,हब सिंक ID @@ -645,6 +677,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,व DocType: Auto Repeat,Quarterly,तिमाही apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",ईमेल डोमेन या खात्यात कॉन्फिगर एक तयार करा? DocType: User,Reset Password Key,पासवर्ड की रीसेट करा +DocType: Dashboard Chart,All Time,सर्वकाळ apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} साठी अवैध दस्तऐवज स्थिती DocType: Email Account,Enable Auto Reply,ऑटो प्रत्युत्तर सक्षम करा. apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,पाहिले नाही @@ -657,6 +690,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,स DocType: Email Account,Notify if unreplied,Unreplied तर सूचित करा apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR कोड स्कॅन करा आणि परिणामस्वरूप कोड प्रदर्शित करा. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ग्रेडियंट सक्षम करा +DocType: Scheduled Job Type,Hourly Long,ताशी लांब DocType: System Settings,Minimum Password Score,किमान पासवर्ड धावसंख्या DocType: System Settings,Minimum Password Score,किमान पासवर्ड धावसंख्या DocType: DocType,Fields,फील्ड @@ -665,11 +699,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,पाल apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 बॅकअप पूर्ण! apps/frappe/frappe/config/desktop.py,Developer,विकसक apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,तयार +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},ते सक्षम करण्यासाठी खालील दुव्यातील सूचनांचे अनुसरण कराः {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} सलग {1} दोन्ही URL आणि मूल आयटम असू शकत नाही apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},खालील सारण्यांसाठी किमान एक पंक्ती असावी: {0} DocType: Print Format,Default Print Language,डीफॉल्ट मुद्रण भाषा apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,च्या पूर्वज apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} रूट हटविले जाऊ शकत नाही +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,कोणतेही अयशस्वी लॉग apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,अद्याप कोणत्याही टिप्पण्या नाहीत apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","कृपया एसएमएस सेटिंग्जद्वारे, प्रमाणीकरण पद्धती म्हणून सेट करण्यापूर्वी SMS सेट करा" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,आवश्यक दोन्ही DocType आणि नाव @@ -692,6 +728,7 @@ DocType: Website Settings,Footer Items,तळटीप आयटम apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,मेनू DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,दैनिक +DocType: Onboarding Slide,Max Count,कमाल गणना apps/frappe/frappe/config/users_and_permissions.py,User Roles,वापरकर्ता भूमिका DocType: Property Setter,Property Setter overrides a standard DocType or Field property,मालमत्ता सेटर मानक DocType किंवा क्षेत्रात मालमत्ता अधिलिखित apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,सुधारणा करू शकत नाही: अयोग्य / कालबाह्य झालेली दुवा. @@ -710,6 +747,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,यजमान DocType: Data Import Beta,Import File,फाइल आयात करा +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,टेम्पलेट त्रुटी apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,स्तंभ <b>{0}</b> आधीपासून अस्तित्वात आहे. DocType: ToDo,High,उच्च apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,नवीन कार्यक्रम @@ -725,6 +763,7 @@ DocType: Web Form Field,Show in filter,फिल्टरमध्ये दर DocType: Address,Daman and Diu,दमण आणि दीव apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,प्रकल्प DocType: Address,Personal,वैयक्तिक +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,रॉ मुद्रण सेटिंग्ज ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,तपशीलांसाठी https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region पहा. apps/frappe/frappe/config/settings.py,Bulk Rename,मोठ्या प्रमाणात नाव बदला DocType: Email Queue,Show as cc,सीसी दर्शवा @@ -734,6 +773,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,व्हिडि DocType: Contact Us Settings,Introductory information for the Contact Us Page,आमच्याशी संपर्क साधा पृष्ठासाठी परिचय माहिती DocType: Print Style,CSS,सीएसएस DocType: Workflow State,thumbs-down,लघुप्रतिमांशी-खाली +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,कागदपत्रे रद्द करीत आहे DocType: User,Send Notifications for Email threads,ईमेल थ्रेडसाठी सूचना पाठवा apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,प्रा apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,विकसक मोड मध्ये नाही @@ -741,7 +781,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,फाई DocType: DocField,In Global Search,ग्लोबल शोध घ्या DocType: System Settings,Brute Force Security,ब्रूट फोर्स सिक्युरिटी DocType: Workflow State,indent-left,मागणीपत्र-डाव्या -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्षापूर्वी apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,हि फाइल तुम्ही डिलीट करणे धोकादायक आहे: {0}. तुमची प्रणाली व्यवस्थापकाशी संपर्क साधा. DocType: Currency,Currency Name,चलन नाव apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ईमेल नाही @@ -756,11 +795,13 @@ DocType: Energy Point Rule,User Field,वापरकर्ता फील् DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,डिलीट पुश करा apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} आधीच सदस्यत्व रद्द {1} {2} +DocType: Scheduled Job Type,Stopped,थांबवले apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,काढून टाकू शकत नाही apps/frappe/frappe/desk/like.py,Liked,आवडले apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,आता पाठवा apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","मानक DocType, मुलभूत प्रिंट स्वरूप असू शकत नाही सानुकूलित फॉर्म वापर" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","मानक DocType, मुलभूत प्रिंट स्वरूप असू शकत नाही सानुकूलित फॉर्म वापर" +DocType: Server Script,Allow Guest,अतिथीस परवानगी द्या DocType: Report,Query,क्वेरी DocType: Customize Form,Sort Order,अनुक्रम apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'यादी पहा मध्ये' सलग प्रकार {0} परवानगी नाही {1} @@ -782,10 +823,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,दोन घटक प्रमाणीकरण पद्धत apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,प्रथम नाव सेट करा आणि रेकॉर्ड सेव्ह करा. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 रेकॉर्ड +DocType: DocType Link,Link Fieldname,दुवा फील्डनाव apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} सोबत शेअर केले apps/frappe/frappe/email/queue.py,Unsubscribe,सदस्यता रद्द करा DocType: View Log,Reference Name,संदर्भ नाव apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,वापरकर्ता बदला +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,पहिला apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,अद्यतने अनुवाद DocType: Error Snapshot,Exception,अपवाद DocType: Email Account,Use IMAP,वापर IMAP कार्यक्षम @@ -800,6 +843,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,कार्यपद्धत राज्य संक्रमण व्याख्या नियम. DocType: File,Folder,फोल्डर DocType: Website Route Meta,Website Route Meta,वेबसाइट मार्ग मेटा +DocType: Onboarding Slide Field,Onboarding Slide Field,ऑनबोर्डिंग स्लाइड फील्ड DocType: DocField,Index,निर्देशांक DocType: Email Group,Newsletter Manager,वृत्तपत्र व्यवस्थापक apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,पर्याय 1 @@ -826,7 +870,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,व apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,चार्ट कॉन्फिगर करा DocType: User,Last IP,गेल्या आयपी apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,कृपया आपल्या ईमेलवर एक विषय जोडा -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,{0} आपल्यासह एक नवीन दस्तऐवज सामायिक केला गेला आहे {1}. DocType: Data Migration Connector,Data Migration Connector,डेटा माइग्रेशन कनेक्टर apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} परत केले {1} DocType: Email Account,Track Email Status,ईमेल स्थितीचा मागोवा घ्या @@ -884,6 +927,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,शोध DocType: Workflow State,text-width,मजकूर-रुंदीचा apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,या रेकॉर्डसाठी कमाल संलग्न मर्यादा गाठली आहे. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,फाईलनाव किंवा विस्ताराने शोधा +DocType: Onboarding Slide,Slide Title,स्लाइड शीर्षक DocType: Notification,View Properties (via Customize Form),(सानुकूलित फॉर्म द्वारे) गुणधर्म पहा apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,फाइल निवडण्यासाठी त्यावर क्लिक करा. DocType: Note Seen By,Note Seen By,लक्षात ठेवा पाहिले @@ -910,13 +954,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,यूआरएल सामायिक करा DocType: System Settings,Allow Consecutive Login Attempts ,सक्तीचे लॉगिन प्रयत्नांना अनुमती द्या apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,देयक प्रक्रियेदरम्यान एक त्रुटी आली कृपया आमच्याशी संपर्क साधा. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,जर स्लाइड प्रकार तयार किंवा सेटिंग्ज असेल तर स्लाइड पूर्ण झाल्यावर अंमलात आणल्या जाणार्‍या {ref_doctype} .py फाइलमध्ये 'create_onboarding_docs' पद्धत असावी. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} दिवसांपूर्वी DocType: Email Account,Awaiting Password,प्रतीक्षा करत आहे संकेतशब्द DocType: Address,Address Line 1,पत्ता ओळ 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,नाही DocType: Contact,Company Name,कंपनी नाव DocType: Custom DocPerm,Role,भूमिका -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,सेटिंग्ज ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,आपल्या ब्राउझरवर apps/frappe/frappe/utils/data.py,Cent,टक्के ,Recorder,रेकॉर्डर @@ -975,6 +1019,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","प्राप्तकर्ता कडून आपले ईमेल उघडले गेले तर मागोवा घ्या. <br> टीप: आपण एकाधिक प्राप्तकर्ते पाठवत असल्यास, जरी 1 प्राप्तकर्ता ईमेल वाचला तरीही ते "उघडलेले" म्हणून विचारात घेतले जाईल," apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,गहाळ मूल्ये आवश्यक apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google संपर्क प्रवेशास अनुमती द्या +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,प्रतिबंधित DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,वाचले नाही अशी खुण करा DocType: Activity Log,Operation,ऑपरेशन @@ -1028,6 +1073,7 @@ DocType: Web Form,Allow Print,प्रिंट परवानगी द्य DocType: Communication,Clicked,क्लिक केले apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,अनुसरण करणे रद्द करा apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} ला परवानगी नाही +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते वरून डीफॉल्ट ईमेल खाते सेट करा apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,पाठविण्यासाठी अनुसूचित DocType: DocType,Track Seen,ट्रॅक पाहिले DocType: Dropbox Settings,File Backup,फाईल बॅकअप @@ -1036,12 +1082,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,क्रम apps/frappe/frappe/config/customization.py,Add custom forms.,सानुकूल फॉर्म जोडा. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} मध्ये {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,या दस्तऐवज सादर केला -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्त्याच्या परवानग्या apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,प्रणालीमधे अनेक पूर्व परिभाषित भूमिका उपलब्ध आहे. आपण चांगल्या परवानगी सेट नवीन भूमिका जोडू शकता. DocType: Communication,CC,सीसी DocType: Country,Geo,भौगोलिक DocType: Data Migration Run,Trigger Name,ट्रिगर नाव -apps/frappe/frappe/public/js/frappe/desk.js,Domains,डोमेन +DocType: Onboarding Slide,Domains,डोमेन DocType: Blog Category,Blog Category,ब्लॉग वर्ग apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,मॅप करू शकत नाही पुढील अट अपयशी आहे : DocType: Role Permission for Page and Report,Roles HTML,भूमिका HTML @@ -1082,7 +1127,6 @@ DocType: Assignment Rule Day,Saturday,शनिवारी DocType: User,Represents a User in the system.,प्रणाली मध्ये वापरकर्ता प्रस्तुत करते. DocType: List View Setting,Disable Auto Refresh,स्वयं रीफ्रेश अक्षम करा DocType: Comment,Label,लेबल -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","कार्य {0}, आपण {1} ला नियुक्त केले आहे, ते बंद केले गेले आहे." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ही विंडो बंद करा DocType: Print Format,Print Format Type,मुद्रण स्वरूप प्रकार DocType: Newsletter,A Lead with this Email Address should exist,या ई-मेल पत्ता एक लीड अस्तित्वात पाहिजे @@ -1099,6 +1143,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,आउटगोइं apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,निवडा एक DocType: Data Export,Filter List,फिल्टर सूची DocType: Data Export,Excel,एक्सेल +DocType: System Settings,HH:mm,प.पू.: मिमी DocType: Email Account,Auto Reply Message,ऑटो प्रत्युत्तर संदेश DocType: Data Migration Mapping,Condition,अट apps/frappe/frappe/utils/data.py,{0} hours ago,{0} तासांपूर्वी @@ -1117,12 +1162,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,नॉलेज बेस सहयोगी DocType: Communication,Sent Read Receipt,पाठविले पावती वाचा DocType: Email Queue,Unsubscribe Method,सदस्यत्व रद्द करा पद्धत +DocType: Onboarding Slide,Add More Button,अधिक बटण जोडा DocType: GSuite Templates,Related DocType,संबंधित DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,सामग्री जोडण्यासाठी संपादित करा apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,भाषा निवडा apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,कार्ड तपशील apps/frappe/frappe/__init__.py,No permission for {0},{0} साठी परवानगी नाही DocType: DocType,Advanced,प्रगत +DocType: Onboarding Slide,Slide Image Source,स्लाइड प्रतिमा स्त्रोत apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API की दिसते किंवा API गुप्त चुकीचे आहे !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},संदर्भ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,सौ @@ -1148,7 +1195,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType परवानगी. सावध रहा!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","मुद्रण, ईमेल साठी सानुकूलित नमुने" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} ची बेरीज -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,नवीन आवृत्तीवर अद्यतनित DocType: Custom Field,Depends On,अवलंबून असते DocType: Kanban Board Column,Green,ग्रीन DocType: Custom DocPerm,Additional Permissions,अतिरिक्त परवानग्या @@ -1176,6 +1222,7 @@ DocType: Energy Point Log,Social,सामाजिक apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google कॅलेंडर - {0}, त्रुटी कोड {1} साठी कॅलेंडर तयार करणे शक्य नाही." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,संपादन रो DocType: Workflow Action Master,Workflow Action Master,कार्यपद्धत क्रिया मास्टर +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,सर्व हटवा DocType: Custom Field,Field Type,फील्ड प्रकार apps/frappe/frappe/utils/data.py,only.,फक्त. DocType: Route History,Route History,मार्ग इतिहास @@ -1211,11 +1258,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,पासवर्ड वि DocType: System Settings,yyyy-mm-dd,वर्ष-mm-dd या apps/frappe/frappe/desk/report/todo/todo.py,ID,आयडी apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,सर्व्हर त्रुटी +DocType: Server Script,After Delete,हटवा नंतर apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,मागील सर्व अहवाल पहा. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,लॉग-इन आयडी आवश्यक आहे DocType: Website Slideshow,Website Slideshow,वेबसाइट स्लाइडशो apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,डेटा नाही DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","दुवा जे वेबसाइटचे मुख्य पृष्ठ आहे . मानक दुवे ( निर्देशांक , लॉग इन, उत्पादने, ब्लॉग, बद्दल, संपर्क)" +DocType: Server Script,After Submit,सबमिट केल्यानंतर apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},प्रमाणीकरण ईमेल खाते {0} ईमेल प्राप्त करताना अयशस्वी. सर्व्हरकडून संदेश: {1} DocType: User,Banner Image,बॅनर प्रतिमा DocType: Custom Field,Custom Field,सानुकूल फील्ड @@ -1256,15 +1305,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","वापरकर्ता तपासले कोणत्याही भूमिका आहे, तर वापरकर्ता "प्रणाली वापरकर्ता" होते. "प्रणाली वापरकर्ता" डेस्कटॉपवरील प्रवेश आहे" DocType: System Settings,Date and Number Format,तारीख आणि क्रमांक स्वरूप apps/frappe/frappe/model/document.py,one of,एका पैकी -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म सानुकूलित करा apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,एक क्षण तपासणी apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,टॅग्ज दर्शवा DocType: DocField,HTML Editor,एचटीएमएल संपादक 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,क्रिया -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता +DocType: DocType,Actions,क्रिया DocType: Workflow State,align-justify,संरेखित-समायोजित DocType: User,Middle Name (Optional),मध्य नाव (पर्यायी) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,परवानगी नाही @@ -1278,6 +1325,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,परि DocType: System Settings,Security,सुरक्षा apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,प्राप्तकर्ता {0} ला पाठविण्यासाठी अनुसूचित apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,कट करा +DocType: Server Script,After Save,सेव्ह नंतर apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},पासून नामकरण {0} करण्यासाठी {1} DocType: Currency,**Currency** Master,** चलन ** मास्टर DocType: Email Account,No of emails remaining to be synced,उर्वरित ईमेल नाही समक्रमित करणे @@ -1302,15 +1350,18 @@ DocType: Prepared Report,Filter Values,मूल्य फिल्टर कर DocType: Communication,User Tags,सदस्य टॅग्ज DocType: Data Migration Run,Fail,अपयशी DocType: Workflow State,download-alt,डाउनलोड-Alt +DocType: Scheduled Job Type,Last Execution,शेवटची कार्यवाही DocType: Data Migration Run,Pull Failed,खेचणे अयशस्वी apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,कार्डे दर्शवा / लपवा DocType: Communication,Feedback Request,अभिप्राय विनंती apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel फायलींमधून डेटा आयात करा apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,खालील फील्ड गहाळ आहेत: +DocType: Notification Log,From User,वापरकर्त्याकडून apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},रद्द करणे {0} DocType: Web Page,Main Section,मुख्य विभाग DocType: Page,Icon,चिन्ह apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","इशारा: प्रतीक, संख्या आणि पासवर्ड राजधानी अक्षरे समाविष्ट करा" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","उल्लेख, असाइनमेंट, उर्जा बिंदू आणि बरेच काहीसाठी सूचना कॉन्फिगर करा." DocType: DocField,Allow in Quick Entry,जलद प्रविष्टीमध्ये परवानगी द्या apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,डीडी / MM / YYYY @@ -1342,7 +1393,6 @@ DocType: Website Theme,Theme URL,थीम URL DocType: Customize Form,Sort Field,क्रमवारी लावा फील्ड DocType: Razorpay Settings,Razorpay Settings,Razorpay सेटिंग्ज apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,फिल्टर संपादित करा -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,अधिक जोडा DocType: System Settings,Session Expiry Mobile,सत्र कालावधी समाप्ती मोबाइल apps/frappe/frappe/utils/password.py,Incorrect User or Password,अयोग्य वापरकर्ता किंवा संकेतशब्द apps/frappe/frappe/templates/includes/search_box.html,Search results for,च्या शोधाचे निकाल @@ -1358,8 +1408,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,उर्जा बिंदू नियम DocType: Communication,Delayed,विलंब apps/frappe/frappe/config/settings.py,List of backups available for download,डाउनलोड करण्यासाठी उपलब्ध बॅकअप यादी +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,नवीन डेटा आयात करून पहा apps/frappe/frappe/www/login.html,Sign up,साइन अप करा apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,पंक्ती {0}: मानक फील्डसाठी अनिवार्य अक्षम करण्यास अनुमती नाही +DocType: Webhook,Enable Security,सुरक्षा सक्षम करा apps/frappe/frappe/config/customization.py,Dashboards,डॅशबोर्ड्स DocType: Test Runner,Output,उत्पादन DocType: Milestone,Track Field,ट्रॅक फील्ड @@ -1378,6 +1430,7 @@ DocType: Portal Menu Item,Portal Menu Item,पोर्टल मेन्यू apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,फिल्टर सेट करा DocType: Contact Us Settings,Email ID,ई-मेल आयडी DocType: Energy Point Rule,Multiplier Field,गुणक फील्ड +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,रेजरपे ऑर्डर तयार करू शकलो नाही. कृपया प्रशासकाशी संपर्क साधा DocType: Dashboard Chart,Time Interval,वेळ मध्यांतर DocType: Activity Log,Keep track of all update feeds,सर्व अद्यतने फीडचा मागोवा ठेवा DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,क्लायंट अनुप्रयोग वापरकर्ता परवानगी नंतर प्रवेश असेल संसाधने यादी. <br> उदा प्रकल्प @@ -1397,6 +1450,7 @@ DocType: DefaultValue,Key,की DocType: Address,Contacts,संपर्क DocType: System Settings,Setup Complete,सेटअप पूर्ण apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,सर्व दस्तऐवज शेअर अहवाल +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","आयात टेम्पलेट .csv, .xlsx किंवा .xls प्रकाराचे असावेत" apps/frappe/frappe/www/update-password.html,New Password,नवीन पासवर्ड apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,फिल्टर {0} गहाळ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,क्षमस्व! आपण स्वयं-व्युत्पन्न टिप्पण्या हटवू शकत नाही @@ -1412,6 +1466,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,फेविकॉन apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,चालवा DocType: Blog Post,Content (HTML),सामग्री (एचटीएमएल) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,साठी सेटअप DocType: Personal Data Download Request,User Name,वापरकर्त्याचे नाव DocType: Workflow State,minus-sign,उणे-चिन्ह apps/frappe/frappe/public/js/frappe/request.js,Not Found,सापडले नाही @@ -1419,6 +1474,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,क्रमांक {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,निर्यात सानुकूल परवानग्या apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,कोणतेही आयटम आढळले नाहीत. DocType: Data Export,Fields Multicheck,फील्ड Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,.. पूर्ण DocType: Activity Log,Login,लॉग-इन DocType: Web Form,Payments,देयके apps/frappe/frappe/www/qrcode.html,Hi {0},हाय {0} @@ -1446,6 +1502,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,सा apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,परवानगी त्रुटी apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} चे नाव {1} असू शकत नाही DocType: User Permission,Applicable For,लागू +DocType: Dashboard Chart,From Date,तारखेपासून apps/frappe/frappe/core/doctype/version/version_view.html,Success,यशस्वी apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,सत्र कालबाह्य झाले apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,सत्र कालबाह्य झाले @@ -1458,7 +1515,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,य apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; अट परवानगी नाही DocType: Async Task,Async Task,Async कार्य DocType: Workflow State,picture,चित्र -apps/frappe/frappe/www/complete_signup.html,Complete,पूर्ण +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,पूर्ण DocType: DocType,Image Field,प्रतिमा फील्ड DocType: Print Format,Custom HTML Help,सानुकूल HTML मदत DocType: LDAP Settings,Default Role on Creation,निर्मितीवरील डीफॉल्ट भूमिका @@ -1466,6 +1523,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,पुढील राज्य DocType: User,Block Modules,ब्लॉक मॉड्यूल DocType: Print Format,Custom CSS,सानुकूल CSS +DocType: Energy Point Rule,Apply Only Once,एकदाच अर्ज करा apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,एक टिप्पणी जोडा DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},दुर्लक्ष: {0} करण्यासाठी {1} @@ -1476,6 +1534,7 @@ DocType: Address,Postal,पोस्टल DocType: Email Account,Default Incoming,मुलभूत येणार्या DocType: Workflow State,repeat,पुनरावृत्ती DocType: Website Settings,Banner,बॅनर +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,सर्व कागदपत्रे रद्द करा DocType: Role,"If disabled, this role will be removed from all users.","अक्षम केले असल्यास, ही भूमिका सर्व वापरकर्त्यांकडून काढून टाकले जाईल." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} यादीवर जा apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,शोध मदत @@ -1484,6 +1543,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,नों apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,या दस्तऐवजासाठी स्वयं पुनरावृत्ती अक्षम केली गेली आहे. DocType: DocType,Hide Copy,कॉपी लपवा apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,सर्व भूमिका साफ करा +DocType: Server Script,Before Save,सेव्ह करण्यापूर्वी apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} अद्वितीय असणे आवश्यक आहे apps/frappe/frappe/model/base_document.py,Row,रो apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","सीसी, बीसीसी आणि ईमेल टेम्पलेट" @@ -1491,9 +1551,9 @@ DocType: Data Migration Mapping Detail,Local Fieldname,स्थानिक फ DocType: DocType,Track Changes,बदलांचा मागोवा घ्या DocType: Workflow State,Check,चेक DocType: Chat Profile,Offline,ऑफलाइन +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},यशस्वीरित्या आयात {0} DocType: User,API Key,एपीआय किल्ली DocType: Email Account,Send unsubscribe message in email,ई-मेल मध्ये आपली नोंदणी रद्द संदेश पाठवा -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,शीर्षक संपादित करा apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,FIELDNAME जे या दुवा क्षेत्रासाठी DocType असेल apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,आपण आणि आपण नियुक्त दस्तऐवज. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,आपण हे कॉपी-पेस्ट देखील करू शकता @@ -1524,8 +1584,10 @@ DocType: Data Migration Run,Total Pages,एकूण पृष्ठे DocType: DocField,Attach Image,प्रतिमा संलग्न DocType: Workflow State,list-alt,यादी-Alt apps/frappe/frappe/www/update-password.html,Password Updated,पासवर्ड अद्यतनित +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्त्याच्या परवानग्या apps/frappe/frappe/www/qrcode.html,Steps to verify your login,आपले लॉगिन सत्यापित करण्यासाठी चरण apps/frappe/frappe/utils/password.py,Password not found,संकेतशब्द आढळले नाहीत +DocType: Webhook,Webhook Secret,वेबहूक सीक्रेट DocType: Data Migration Mapping,Page Length,पृष्ठ लांबी DocType: Email Queue,Expose Recipients,प्राप्त उघड apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,जोडण्यासाठी येणारे मेल अनिवार्य आहे @@ -1552,6 +1614,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,प्रणाली DocType: Web Form,Max Attachment Size (in MB),कमाल संलग्नक आकार (MB मध्ये) apps/frappe/frappe/www/login.html,Have an account? Login,एक खाते आहे? प्रवेश करा +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,मुद्रण सेटिंग्ज ... DocType: Workflow State,arrow-down,बाण-खाली apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},पंक्ती {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},वापरकर्ता हटवण्यासाठी परवानगी नाही {0}: {1} @@ -1573,6 +1636,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,आपल DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स प्रवेश गुपित DocType: Tag Link,Document Title,दस्तऐवज शीर्षक apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(अनिवार्य) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्षापूर्वी DocType: Social Login Key,Social Login Provider,सामाजिक लॉग इन प्रदाता apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,आणखी टिप्पणी जोडा apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,फाईलमध्ये कोणताही डेटा आढळला नाही कृपया डेटासह नवीन फाईल पुन्हा जोडा. @@ -1587,11 +1651,12 @@ DocType: Workflow State,hand-down,हात-खाली apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",कानबन स्तंभ म्हणून वापरली जाऊ शकणारी कोणतीही फील्ड आढळली नाहीत. "निवडा" प्रकाराचे सानुकूल फील्ड जोडण्यासाठी सानुकूलित फॉर्म वापरा. DocType: Address,GST State,'जीएसटी' राज्य apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: रद्द करा सादर केल्याशियाय सेट करू शकत नाही +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),वापरकर्ता ({0}) DocType: Website Theme,Theme,थीम DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI प्रमाणिकरण कोड बांधील पुनर्निर्देशित apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,मदत उघडा DocType: DocType,Is Submittable,Submittable आहे -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,नवीन उल्लेख +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,नवीन उल्लेख apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,कोणतेही नवीन Google संपर्क संकालित केलेले नाहीत. DocType: File,Uploaded To Google Drive,Google ड्राइव्हवर अपलोड केले apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,धनादेश field साठी मूल्य 0 किंवा 1 असू शकते @@ -1602,7 +1667,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,मालिका DocType: Workflow State,Inbox,इनबॉक्स DocType: Kanban Board Column,Red,लाल DocType: Workflow State,Tag,टॅग -DocType: Custom Script,Script,स्क्रिप्ट +DocType: Report,Script,स्क्रिप्ट apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,कागदजत्र जतन करणे शक्य नाही DocType: Energy Point Rule,Maximum Points,जास्तीत जास्त गुण apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,माझी सेटिंग्ज @@ -1631,8 +1696,10 @@ DocType: Email Queue,Email Queue,ई-मेल रांग DocType: Address,Haryana,हरियाणा apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,भूमिका त्यांच्या लेखापासून वापरकर्त्यांसाठी सेट केले जाऊ शकते. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,टिप्पणी जोडा +DocType: Dashboard Chart,Select Date Range,तारीख श्रेणी निवडा DocType: DocField,Mandatory,बंधनकारक apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,निर्यात करण्यासाठी विभाग +DocType: Scheduled Job Type,Monthly Long,मासिक लांब apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: कोणतेही मूलभूत परवानगी संच apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","रद्द करा, सबमिट , दुरुस्ती करण्याचा अर्थ" @@ -1642,7 +1709,6 @@ DocType: Milestone Tracker,Track milestones for any document,कोणत्य DocType: Social Login Key,Identity Details,ओळख तपशील apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},वर्कफ्लो स्टेट संक्रमणास {0} वरून {1} वर परवानगी नाही apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,डॅशबोर्ड दर्शवा -apps/frappe/frappe/desk/form/assign_to.py,New Message,नवीन संदेश DocType: File,Preview HTML,एचटीएमएल पूर्वावलोकन DocType: Desktop Icon,query-report,क्वेरी-अहवाल DocType: Data Import Beta,Template Warnings,टेम्पलेट चेतावणी @@ -1659,12 +1725,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} नाव apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,या मापदंडासाठी परवानग्या सेट केलेल्या नाहीत . DocType: Auto Email Report,Auto Email Report,ऑटो ईमेल अहवाल +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,नवीन दस्तऐवज सामायिक केले apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,टिप्पणी हटवायची? DocType: Address Template,This format is used if country specific format is not found,"देशातील विशिष्ट स्वरूप सापडले नाही, तर हे स्वरूप वापरले जाते" DocType: System Settings,Allow Login using Mobile Number,मोबाइल क्रमांक वापरून लॉगिन करा परवानगी द्या apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,आपल्याला हे संसाधन प्रवेश करण्यासाठी पुरेशी परवानगी नाही. प्रवेश प्राप्त करण्यासाठी आपल्या व्यवस्थापकाशी संपर्क साधा. DocType: Custom Field,Custom,सानुकूल DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","सक्षम असल्यास, प्रतिबंधित IP पत्त्यावरून लॉग इन करणारे वापरकर्ते, दो घटक ऑथसाठी सूचित केले जाणार नाहीत" +DocType: Server Script,After Cancel,रद्द केल्यानंतर DocType: Auto Repeat,Get Contacts,संपर्क मिळवा apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} अंतर्गत दाखल केली पोस्ट apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,अशीर्षकांकित स्तंभ वगळत आहे @@ -1675,6 +1743,7 @@ DocType: User,Login After,लॉग-इन केल्यानंतर DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,मुद्रण DocType: Workflow State,thumbs-up,लघुप्रतिमांशी-अप +DocType: Notification Log,Mention,उल्लेख करा DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,फॉन्ट apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,सुस्पष्टता 1 आणि 6 च्या दरम्यान असावी @@ -1682,7 +1751,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,आणि apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},हा अहवाल {0} वर व्युत्पन्न झाला DocType: Error Snapshot,Frames,फ्रेम -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,नेमणूक +DocType: Notification Log,Assignment,नेमणूक DocType: Notification,Slack Channel,स्लॅक चॅनेल DocType: About Us Team Member,Image Link,प्रतिमा दुवा DocType: Auto Email Report,Report Filters,अहवाल फिल्टर्स @@ -1699,6 +1768,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,कार्यक्रम अद्यतनित करण्यात अक्षम apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,आपल्या नोंदणीकृत ईमेल पत्त्यावर सत्यापन कोड पाठविला गेला आहे. apps/frappe/frappe/core/doctype/user/user.py,Throttled,थ्रॉटल केलेले +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,आपले लक्ष्य apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","फिल्टर 4 मूल्ये (doctype, FIELDNAME, ऑपरेटर, मूल्य) असणे आवश्यक आहे: {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,असाइनमेंट नियम लागू करा apps/frappe/frappe/utils/bot.py,show,शो @@ -1752,7 +1822,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,दुवा apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,तुमची भाषा DocType: Dashboard Chart,Average,सरासरी apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,पंक्ती जोडा -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,प्रिंटर apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,क्वेरी एक निवडा असणे आवश्यक आहे DocType: Auto Repeat,Completed,पूर्ण @@ -1812,6 +1881,7 @@ DocType: GCalendar Account,Next Sync Token,पुढील सिंक टो DocType: Energy Point Settings,Energy Point Settings,एनर्जी पॉइंट सेटिंग्ज DocType: Async Task,Succeeded,यशस्वी झाले apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},आवश्यक फील्ड {0} मधे आवश्यक आहे +DocType: Onboarding Slide Field,Align,संरेखित करा apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0}साठी परवानगी रीसेट करा ? apps/frappe/frappe/config/desktop.py,Users and Permissions,वापरकर्ते आणि परवानग्या DocType: S3 Backup Settings,S3 Backup Settings,S3 बॅकअप सेटिंग्ज @@ -1828,7 +1898,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,नवीन मुद्रण स्वरूप नाव apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,विनंती मंजूर करण्यासाठी खालील दुव्यावर क्लिक करा DocType: Workflow State,align-left,-संरेखित बाकी +DocType: Onboarding Slide,Action Settings,कृती सेटिंग्ज DocType: User,Defaults,मुलभूत +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलनासाठी,> 5, <10 किंवा = 324 वापरा. श्रेणीसाठी, 5:10 वापरा (5 आणि 10 मधील मूल्यांसाठी)." DocType: Energy Point Log,Revert Of,परत करा apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,विद्यमान विलीन DocType: User,Birth Date,जन्म तारीख @@ -1883,6 +1955,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,मध्ये DocType: Notification,Value Change,मूल्य बदला DocType: Google Contacts,Authorize Google Contacts Access,Google संपर्क प्रवेश अधिकृत करा apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,केवळ अहवालावरून अंकीय क्षेत्र दर्शवित आहे +apps/frappe/frappe/utils/data.py,1 week ago,1 आठवड्या आधी DocType: Data Import Beta,Import Type,आयात प्रकार DocType: Access Log,HTML Page,एचटीएमएल पृष्ठ DocType: Address,Subsidiary,उपकंपनी @@ -1892,7 +1965,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,नावा सह apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,अवैध जाणारे मेल सर्व्हर किंवा पोर्ट DocType: Custom DocPerm,Write,लिहा -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,फक्त प्रशासक क्वेरी / स्क्रिप्ट अहवाल तयार करण्यास परवानगी apps/frappe/frappe/public/js/frappe/form/save.js,Updating,अद्यतनित करीत आहे DocType: Data Import Beta,Preview,पूर्वावलोकन apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",शेत 'मूल्य "आवश्यक आहे. अद्ययावत करणे मूल्य निर्दिष्ट करा @@ -1901,6 +1973,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From, apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,वापरकर्ता म्हणून आमंत्रित करा DocType: Data Migration Run,Started,प्रारंभ झाला DocType: Data Migration Run,End Time,समाप्त वेळ +DocType: Dashboard Chart,Group By Based On,ग्रुप बाय बेस्ड ऑन apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,जोडणी निवडा apps/frappe/frappe/model/naming.py, for {0},साठी {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,आपल्याला हा दस्तऐवज मुद्रण करण्यासाठी परवानगी नाही @@ -1942,6 +2015,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,सत्यापि DocType: Workflow Document State,Update Field,अद्यतन फील्ड DocType: Chat Profile,Enable Chat,चॅट सक्षम करा DocType: LDAP Settings,Base Distinguished Name (DN),बेस प्रतिष्ठीत नाव (एन) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,हे संभाषण सोडा apps/frappe/frappe/model/base_document.py,Options not set for link field {0},link field {0} साठी पर्याय सेट केलेले नाहीत apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,रांग / कामगार @@ -2010,12 +2084,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,या वेळी लॉगीन करण्याची परवानगी नाही DocType: Data Migration Run,Current Mapping Action,वर्तमान मॅपिंग क्रिया DocType: Dashboard Chart Source,Source Name,स्रोत नाव -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,वापरकर्त्याशी संबंधित कोणतेही ईमेल खाते नाही. कृपया वापरकर्ता> ईमेल इनबॉक्स अंतर्गत खाते जोडा. DocType: Email Account,Email Sync Option,ईमेल समक्रमण पर्याय apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,पंक्ती संख्या DocType: Async Task,Runtime,रनटाइम DocType: Post,Is Pinned,पिन केले आहे DocType: Contact Us Settings,Introduction,परिचय +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,मदत हवी आहे? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,जागतिक स्तरावर पिन करा apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,पाठोपाठ DocType: LDAP Settings,LDAP Email Field,LDAP ईमेल फील्ड @@ -2025,7 +2099,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,आधी DocType: User Email,Enable Outgoing,जाणारे सक्षम DocType: Address,Fax,फॅक्स apps/frappe/frappe/config/customization.py,Custom Tags,सानुकूल टॅग -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप केलेले नाही. कृपया सेटअप> ईमेल> ईमेल खाते वरून नवीन ईमेल खाते तयार करा DocType: Comment,Submitted,सबमिट DocType: Contact,Pulled from Google Contacts,Google संपर्कातून खेचले apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,अवैध विनंती @@ -2046,9 +2119,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,मुख apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,मला वाटप DocType: DocField,Dynamic Link,डायनॅमिक लिंक apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,मेनू आणि साइडबारमध्ये अतिरिक्त शॉर्टकट ट्रिगर करण्यासाठी Alt की दाबा +DocType: Dashboard Chart,To Date,तारीख करण्यासाठी DocType: List View Setting,List View Setting,सूची दृश्य सेटिंग apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,रोजगार शो अयशस्वी -DocType: Event,Details,तपशील +DocType: Scheduled Job Log,Details,तपशील DocType: Property Setter,DocType or Field,DocType किंवा फील्ड apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,आपण हा दस्तऐवज अनुसरण केला नाही apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,प्राथमिक रंग @@ -2057,7 +2131,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publishable की दिसते किंवा गुप्त की चुकीचे आहे !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publishable की दिसते किंवा गुप्त की चुकीचे आहे !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,परवानगी सेट करण्यासाठी त्वरित मदत -DocType: Tag Doc Category,Doctype to Assign Tags,टॅग्ज वाटप करण्यासाठी Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,शो Relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ईमेल कचर्यात हलविली गेली आहे DocType: Report,Report Builder,अहवाल बिल्डर @@ -2073,6 +2146,7 @@ DocType: Workflow State,Upload,अपलोड करा DocType: User Permission,Advanced Control,प्रगत नियंत्रण DocType: System Settings,Date Format,तारीख स्वरूप apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,प्रकाशित नाही +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,डीफॉल्ट अ‍ॅड्रेस टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रांडिंग> अ‍ॅड्रेस टेम्पलेट वरून नवीन तयार करा. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","कार्यपद्धत क्रिया (उदा, रद्द करा स्वीकारा)." DocType: Data Import,Skip rows with errors,त्रुटी असलेल्या पंक्ती वगळा DocType: Workflow State,flag,ध्वज @@ -2089,7 +2163,7 @@ DocType: Post Comment,Post Comment,टिप्पणी पोस्ट कर apps/frappe/frappe/config/core.py,Documents,दस्तऐवज apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,क्रियाकलाप लॉग इन DocType: Social Login Key,Custom Base URL,सानुकूल बेस URL -DocType: Email Flag Queue,Is Completed,पूर्ण +DocType: Onboarding Slide,Is Completed,पूर्ण apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,फील्ड मिळवा apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,प्रोफाईल संपादित करा DocType: Kanban Board Column,Archived,संग्रहित @@ -2100,12 +2174,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",येथे परिभाषित FIELDNAMEला मूल्य आहे किंवा नियम खरे आहेत (उदाहरणे) तरच या क्षेत्रात दिसून येईल: myfield eval: doc.myfield == 'माझे मूल्य' eval: doc.age> 18 DocType: Social Login Key,Office 365,ऑफिस 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,आज -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,आज +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,आज +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,आज apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आपण या सेट एकदा सेट केल्यावर , वापरकर्ते केवळ प्रवेश दस्तऐवज वापरू शकतात (उदा. ब्लॉग) जेथे लिंक अस्तित्वात असते (उदा. ब्लॉगर)." DocType: Data Import Beta,Submit After Import,आयात केल्यानंतर सबमिट करा DocType: Error Log,Log of Scheduler Errors,अनुसूची त्रुटी लॉग DocType: User,Bio,जैव +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ऑनबोर्डिंग स्लाइड मदत दुवा DocType: OAuth Client,App Client Secret,अनुप्रयोग क्लायंट गुपित apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,सादर करत आहे apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,पालक हे डॉक्युमेंटचे नाव आहे ज्यामध्ये डेटा जोडला जाईल. @@ -2113,7 +2188,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,अप्पर केस apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,सानुकूल HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,फोल्डर नाव प्रविष्ट करा -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,डीफॉल्ट अ‍ॅड्रेस टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रांडिंग> अ‍ॅड्रेस टेम्पलेट वरून नवीन तयार करा. apps/frappe/frappe/auth.py,Unknown User,अज्ञात वापरकर्ता apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,भूमिका निवडा DocType: Comment,Deleted,हटविले @@ -2129,7 +2203,7 @@ DocType: Chat Token,Chat Token,चॅट टोकन apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,चार्ट तयार करा apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,आयात करू नका -DocType: Web Page,Center,केंद्र +DocType: Onboarding Slide Field,Center,केंद्र DocType: Notification,Value To Be Set,मूल्य सेट करणे apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} संपादित करा apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,प्रथम स्तर @@ -2137,7 +2211,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,डेटाबेस नाव apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,रिफ्रेश फॉर्म DocType: DocField,Select,निवडा -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,पूर्ण लॉग पहा +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,पूर्ण लॉग पहा DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","साधे पायथन एक्सप्रेशन, उदाहरण: स्थिती == 'उघडा' आणि टाइप करा == 'बग'" apps/frappe/frappe/utils/csvutils.py,File not attached,फाइल संलग्न नाही apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,संपर्क तूटला. काही वैशिष्ट्ये कदाचित कार्य करणार नाहीत @@ -2169,6 +2243,7 @@ DocType: Web Page,HTML for header section. Optional,शीर्षलेख व apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,हे वैशिष्ट्य प्रायोगिक नवीन आणि अजूनही आहे apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,कमाल {0} पंक्तींची परवानगी आहे DocType: Dashboard Chart Link,Chart,चार्ट +DocType: Scheduled Job Type,Cron,क्रोन DocType: Email Unsubscribe,Global Unsubscribe,जागतिक सदस्यत्व रद्द करा apps/frappe/frappe/utils/password_strength.py,This is a very common password.,हा एक अतिशय सामान्य पासवर्ड आहे. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,पहा @@ -2185,6 +2260,7 @@ DocType: Data Migration Connector,Hostname,यजमाननाम DocType: Data Migration Mapping,Condition Detail,अट तपशील apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","चलन {0} साठी, कमीत कमी व्यवहार रक्कम {1} असावी" DocType: DocField,Print Hide,मुद्रण लपवा +DocType: System Settings,HH:mm:ss,एचएच: मिमी: एसएस apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,वापरकर्त्यास apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,मूल्य प्रविष्ट करा DocType: Workflow State,tint,रंगाची छटा @@ -2249,6 +2325,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,लॉगि apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,करावे जोडा DocType: Footer Item,Company,कंपनी apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},सरासरी {0} +DocType: Scheduled Job Log,Scheduled,अनुसूचित DocType: User,Logout from all devices while changing Password,पासवर्ड बदलताना सर्व डिव्हाइसेसवरून लॉगआउट करा apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,संकेतशब्द सत्यापित करा apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,तेथे त्रुटी होत्या @@ -2274,7 +2351,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,वापरकर्ता परवानगी आधीपासूनच अस्तित्वात आहे apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},फील्ड {1} करण्यासाठी स्तंभ {0} मॅपिंग करत आहे apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} पहा -DocType: User,Hourly,ताशी +DocType: Scheduled Job Type,Hourly,ताशी apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth क्लायंट अनुप्रयोग नोंदणी DocType: DocField,Fetch If Empty,रिक्त असल्यास आणा DocType: Data Migration Connector,Authentication Credentials,प्रमाणीकरण क्रेडेन्शियल @@ -2284,10 +2361,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,पॉईंट oc DocType: SMS Settings,SMS Gateway URL,एसएमएस गेटवे URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} असू शकत नाही ""{2}"". हे एक असेच असावे ""{3}""" apps/frappe/frappe/utils/data.py,{0} or {1},{0} किंवा {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,आपण सर्व सेट आहेत! DocType: Workflow State,trash,कचरा DocType: System Settings,Older backups will be automatically deleted,जुने बॅकअप आपोआप हटविले जाईल apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,अवैध प्रवेश कळ आयडी किंवा गुप्त प्रवेश की -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,आपण काही उर्जा बिंदू गमावले DocType: Post,Is Globally Pinned,जागतिक स्तरावर पिन केले आहे apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,अलीकडील क्रियाकलाप DocType: Workflow Transition,Conditions,परिस्थिती @@ -2296,6 +2373,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,पुष् DocType: Event,Ends on,रोजी समाप्त DocType: Payment Gateway,Gateway,गेटवे DocType: LDAP Settings,Path to Server Certificate,सर्व्हर प्रमाणपत्र मार्ग +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,आपल्या ब्राउझरवर जावास्क्रिप्ट अक्षम आहे apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,दुवे पहाण्यासाठी पुरेसे परवानगी apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,दुवे पहाण्यासाठी पुरेसे परवानगी apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,पत्ता शीर्षक आवश्यक आहे. @@ -2314,7 +2392,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,ईयू-वेस्ट -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","हे तपासले असल्यास, वैध डेटासह पंक्ती आयात केली जातील आणि आपल्यासाठी नंतरच्या फाइल आयात करण्यासाठी एक नवीन फाइलमध्ये अवैध पंक्ती डंप होतील." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,दस्तऐवज भूमिका केवळ च्या वापरकर्त्यांद्वारे संपादन करता येतात -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,प्राप्तकर्ता द्वारे वाचा DocType: Blogger,Short Name,लघु नाव @@ -2347,6 +2424,7 @@ DocType: Translation,PR sent,पीआर पाठविला DocType: Auto Email Report,Only Send Records Updated in Last X Hours,केवळ रेकॉर्ड गेल्या एक्स तास अद्यतनित करा DocType: Auto Email Report,Only Send Records Updated in Last X Hours,केवळ रेकॉर्ड गेल्या एक्स तास अद्यतनित करा DocType: Communication,Feedback,अभिप्राय +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,नवीन आवृत्ती Updated वर अद्यतनित केले apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ओपन भाषांतर apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,हे ईमेल स्वयं-निर्मित आहे DocType: Workflow State,Icon will appear on the button,चिन्ह बटणावर दिसेल @@ -2384,6 +2462,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,पृष DocType: DocField,Precision,सुस्पष्टता DocType: Website Slideshow,Slideshow Items,स्लाइडशो आयटम apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,पुनरावृत्ती शब्द आणि अक्षरांची टाळण्याचा प्रयत्न +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,सूचना अक्षम +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,आपली खात्री आहे की आपण सर्व पंक्ती हटवू इच्छिता? DocType: Workflow Action,Workflow State,कार्यपद्धत राज्य apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,रांगा जोडले apps/frappe/frappe/www/list.py,My Account,माझे खाते @@ -2392,6 +2472,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,दिवसांनी apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,क्यूझेड ट्रे कनेक्शन सक्रिय! DocType: Contact Us Settings,Settings for Contact Us Page,आमच्याशी संपर्क साधा पृष्ठ सेटिंग्ज +DocType: Server Script,Script Type,स्क्रिप्ट प्रकार DocType: Print Settings,Enable Print Server,मुद्रण सर्व्हर सक्षम करा apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} आठवड्यांपूर्वी DocType: Email Account,Footer,तळटीप @@ -2416,8 +2497,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,चेतावणी apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,हे एकाधिक पृष्ठांवर मुद्रित होऊ शकते DocType: Data Migration Run,Percent Complete,पूर्ण टक्के -DocType: Tag Category,Tag Category,टॅग वर्ग -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलनासाठी,> 5, <10 किंवा = 324 वापरा. श्रेणीसाठी, 5:10 वापरा (5 आणि 10 मधील मूल्यांसाठी)." DocType: Google Calendar,Pull from Google Calendar,Google कॅलेंडरमधून खेचा apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,मदत DocType: User,Login Before,लॉग-इन करण्यापूर्वी @@ -2427,17 +2506,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,आठवडा लपवा apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,स्वयंचलितपणे आवर्ती दस्तऐवज व्युत्पन्न करते. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,आहे +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,माहिती-चिन्ह apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,मूल्य {0} साठी यादी असू शकत नाही DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","या चलनाचे रूपण कसे करावे? सेट न केल्यास, प्रणाली मुलभूत वापरा" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} दस्तऐवज सबमिट करायचे? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,तुम्ही लॉग-इन होणे आवश्यक आहे आणि बॅकअप प्रवेश करण्यात सक्षम होऊ प्रणाली व्यवस्थापक भूमिका असण्याची आवश्यकता आहे. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","क्यूझेड ट्रे अनुप्रयोगाशी कनेक्ट करताना त्रुटी ... <br><br> रॉ प्रिंट वैशिष्ट्य वापरण्यासाठी आपल्याकडे क्यूझेड ट्रे अनुप्रयोग स्थापित आणि चालू असणे आवश्यक आहे. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">क्यूझेड ट्रे डाउनलोड आणि स्थापित करण्यासाठी येथे क्लिक करा</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">रॉ प्रिंटिंगबद्दल अधिक जाणून घेण्यासाठी येथे क्लिक करा</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,प्रिंटर मॅपिंग apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,संलग्न करण्यापूर्वी जतन करा. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,आपण सर्व दुवा साधलेली कागदपत्रे रद्द करू इच्छिता? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),जोडले {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} पासून {1} पर्यंत बदलले जाऊ शकत नाही सलग {2} मधे apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,भूमिका परवानग्या DocType: Help Article,Intermediate,दरम्यानचे +apps/frappe/frappe/config/settings.py,Email / Notifications,ईमेल / सूचना apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,रद्द मसुदा म्हणून पुनर्रचना केलेले दस्तऐवज DocType: Data Migration Run,Start Time,प्रारंभ वेळ apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},हटविणे किंवा रद्द करणे शक्य नाही कारण {0} {1} {2} {3} {4} शी संबंधित आहे @@ -2453,6 +2536,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,अवैध प्राप्तकर्ता पत्ता DocType: Workflow State,step-forward,चरण-पुढे DocType: System Settings,Allow Login After Fail,अयशस्वी झाल्यानंतर लॉगिन परवानगी द्या +DocType: DocType Link,DocType Link,डॉकटाइप लिंक DocType: Role Permission for Page and Report,Set Role For,भूमिका सेट करा DocType: GCalendar Account,The name that will appear in Google Calendar,Google Calendar मध्ये दिसेल असे नाव apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} सह थेट खोली आधीपासून अस्तित्वात आहे. @@ -2470,6 +2554,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},एक DocType: Contact,Google Contacts,गूगल संपर्क DocType: GCalendar Account,GCalendar Account,GCalendar खाते DocType: Email Rule,Is Spam,स्पॅम आहे +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,शेवटचे apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},अहवाल {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ओपन {0} DocType: Data Import Beta,Import Warnings,चेतावणी आयात करा @@ -2481,6 +2566,7 @@ DocType: Workflow State,ok-sign,ठीक-चिन्ह apps/frappe/frappe/config/settings.py,Deleted Documents,हटविले दस्तऐवज apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,सीएसव्ही स्वरूपात केस संवेदनशील आहे apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,डेस्कटॉप चिन्ह आधीच अस्तित्वात आहे +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,स्लाइड्स कशा दर्शविल्या पाहिजेत हे सर्व डोमेनमध्ये निर्दिष्ट करा. काहीही निर्दिष्ट नसल्यास स्लाइड सर्व डोमेनमध्ये डीफॉल्टनुसार दर्शविली जाते. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,डुप्लिकेट DocType: Newsletter,Create and Send Newsletters,वृत्तपत्रे तयार करा आणि पाठवा apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,आपल्या टिप्पणीसाठी धन्यवाद. ते मंजुरीनंतर प्रकाशित केले जाईल @@ -2490,6 +2576,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google कॅलेंडर इव्हेंट आयडी apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",""" पालक "" पालक टेबल दाखवतात ज्यामध्ये या पंक्ती समाविष्ट करणे आवश्यक आहे" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,पुनरावलोकन बिंदू: +DocType: Scheduled Job Log,Scheduled Job Log,शेड्यूल जॉब लॉग +DocType: Server Script,Before Delete,डिलीट करण्यापूर्वी apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,शेअर केले apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,फाईल्स / यूआरएल संलग्न करा आणि टेबलमध्ये जोडा. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,संदेश सेटअप नाही @@ -2513,19 +2601,20 @@ DocType: About Us Settings,Settings for the About Us Page,आमच्या व apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,पट्टी पेमेंट गेटवे सेटिंग्ज apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,पट्टी पेमेंट गेटवे सेटिंग्ज apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,प्रिंटरवर मुद्रित करा! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,उर्जा बिंदू +DocType: Notification Settings,Energy Points,उर्जा बिंदू DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,उदा pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,की व्युत्पन्न करा apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,हे आपला डेटा कायमचा काढून टाकेल. DocType: DocType,View Settings,सेटिंग्ज पहा +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,नवीन सूचना DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,विनंती रचना +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,कंट्रोलर पद्धत गेट_राझोरपे_ऑर्डर गहाळ आहे DocType: Personal Data Deletion Request,Pending Verification,प्रलंबित पडताळणी DocType: Website Meta Tag,Website Meta Tag,वेबसाइट मेटा टॅग DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","जर नॉन-स्टँडर्ड पोर्ट (उदा. 587) Google मेघ वर असल्यास, पोर्ट 2525 वापरून पहा" apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","समाप्तीची तारीख क्लियर करणे, कारण ती प्रकाशित पृष्ठांसाठी भूतकाळात असू शकत नाही." DocType: User,Send Me A Copy of Outgoing Emails,मला जाणार् या ईमेलची कॉपी पाठवा -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.,"Google Analytics ID येथे जोडा: उदा. UA-89XXX57-1. अधिक माहितीसाठी, Google Analytics मदत शोध करा." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,पासवर्ड 100 पेक्षा जास्त वर्ण लांब शकत नाही DocType: OAuth Client,App Client ID,अनुप्रयोग क्लायंट ID @@ -2554,6 +2643,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,नवीन apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ने दस्तऐवज {1} बरोबर सामायिक केले आहे DocType: Website Settings,Brand Image,उत्पादन चित्र DocType: Print Settings,A4,ए 4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,आयात टेम्पलेटमध्ये शीर्षलेख आणि किमान एक पंक्ती असावी. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,गूगल कॅलेंडर कॉन्फिगर केले गेले आहे. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","टॉप नेव्हिगेशन बार, तळटीप आणि लोगो सेटअप." DocType: Web Form Field,Max Value,कमाल मूल्य @@ -2562,6 +2652,7 @@ DocType: Auto Repeat,Preview Message,पूर्वावलोकन संद DocType: User Social Login,User Social Login,वापरकर्ता सामाजिक लॉगइन DocType: Contact,All,सर्व DocType: Email Queue,Recipient,प्राप्तकर्ता +DocType: Webhook,Webhook Security,वेबहुक सुरक्षा DocType: Communication,Has Attachment,संलग्नक आहे DocType: Address,Sales User,विक्री सदस्य apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ड्रॅग आणि ड्रॉप साधन तयार करा आणि विविध प्रिंट सानुकूल करा . @@ -2652,14 +2743,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,वेबसाइट स apps/frappe/frappe/model/workflow.py,Self approval is not allowed,स्व-मान्यतास परवानगी नाही DocType: GSuite Templates,Template ID,टेम्पलेट ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,अनुदान प्रकार ( <code>{0}</code> ) आणि प्रतिसाद प्रकार ( <code>{1}</code> ) च्या संमिश्र परवानगीस नाही -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} कडून नवीन संदेश DocType: Portal Settings,Default Role at Time of Signup,साइन अप च्या वेळी पूर्वनिर्धारीत भूमिका DocType: DocType,Title Case,शीर्षक केस apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,आपला डेटा डाउनलोड करण्यासाठी खालील दुव्यावर क्लिक करा apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},वापरकर्त्यासाठी सक्षम ईमेल इनबॉक्स {0} DocType: Data Migration Run,Data Migration Run,डेटा माइग्रेशन रन DocType: Blog Post,Email Sent,ई-मेल पाठविले -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,जुने DocType: DocField,Ignore XSS Filter,XSS फिल्टर दुर्लक्ष apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,काढून apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ड्रॉपबॉक्स बॅक अप सेटिंग्ज @@ -2712,6 +2801,7 @@ DocType: Async Task,Queued,रांगेत आहे DocType: Braintree Settings,Use Sandbox,Sandbox वापर apps/frappe/frappe/utils/goal.py,This month,या महिन्यात apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,नवीन सानुकूल प्रिंट स्वरूप +DocType: Server Script,Before Save (Submitted Document),सेव्ह करण्यापूर्वी (सबमिट केलेले कागदपत्र) DocType: Custom DocPerm,Create,तयार करा apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,प्रदर्शित करण्यासाठी आणखी आयटम नाहीत apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,मागील रेकॉर्डवर जा @@ -2768,6 +2858,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,कचर्यात हलवा DocType: Web Form,Web Form Fields,वेब फॉर्म फील्ड DocType: Data Import,Amended From,पासून दुरुस्ती +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,स्लाइडमध्ये काय भरावे याबद्दल वापरकर्त्यास काहीच कल्पना नसल्यास फक्त एक मदत व्हिडिओ दुवा जोडा. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},चेतावणी: अक्षम शोधण्यासाठी {0} संबंधित कोणत्याही टेबल मध्ये {1} DocType: S3 Backup Settings,eu-north-1,ईयू-उत्तर -1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,हा दस्तऐवज सध्या अंमलबजावणी करण्यासाठी रांगेत लावली आहे. कृपया पुन्हा प्रयत्न करा @@ -2789,6 +2880,7 @@ DocType: Blog Post,Blog Post,ब्लॉग पोस्ट DocType: Access Log,Export From,येथून निर्यात करा apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,प्रगत शोध apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,आपल्याला वृत्तपत्र पाहण्याची परवानगी नाही +DocType: Dashboard Chart,Group By,गट DocType: User,Interests,छंद apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,पासवर्ड रीसेट सूचना ई-मेलद्वारे पाठविण्यात आले आहे DocType: Energy Point Rule,Allot Points To Assigned Users,असाइन केलेल्या वापरकर्त्यांना गुण द्या @@ -2804,6 +2896,7 @@ DocType: Assignment Rule,Assignment Rule,असाइनमेंट निय apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},सूचित वापरकर्तानाव: {0} DocType: Assignment Rule Day,Day,दिवस apps/frappe/frappe/public/js/frappe/desk.js,Modules,विभाग +DocType: DocField,Mandatory Depends On,अनिवार्य अवलंबून असते apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,भरणा यशस्वी apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,कोणत्याही {0} मेल DocType: OAuth Bearer Token,Revoked,मागे घेतले @@ -2811,6 +2904,7 @@ DocType: Web Page,Sidebar and Comments,साइडबार आणि टिप apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","आपण एक दस्तऐवजामध्ये सुधारणा करतो आणि नंतर तो रद्द करतो आणि जतन करतो , तेव्हा एक नवीन नंबर मिळेल जो जुना नंबरची एक आवृत्ती आहे." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} दस्तऐवज संलग्न करण्यास परवानगी नाही, कृपया मुद्रण सेटिंग्जमधील {0} साठी परवानगी मुद्रित करा सक्षम करा" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप केलेले नाही. कृपया सेटअप> ईमेल> ईमेल खाते वरून नवीन ईमेल खाते तयार करा apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} वर दस्तऐवज पहा DocType: Stripe Settings,Publishable Key,Publishable की DocType: Stripe Settings,Publishable Key,Publishable की @@ -2818,6 +2912,7 @@ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,आय apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,निर्यात प्रकार DocType: Workflow State,circle-arrow-left,मंडळ-बाण डावीकडे DocType: System Settings,Force User to Reset Password,संकेतशब्द रीसेट करण्यासाठी वापरकर्त्यास भाग पाडणे +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","अद्ययावत अहवाल मिळविण्यासाठी, {0} वर क्लिक करा." apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis कॅशे सर्व्हरचे चालत नाही. प्रशासक / तंत्रज्ञान समर्थनाशी संपर्क साधा apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html,Searching,शोध apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html,Searching,शोध @@ -2825,6 +2920,7 @@ DocType: Currency,Fraction,अपूर्णांक apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Google कॅलेंडरसह समक्रमित इव्हेंट. DocType: LDAP Settings,LDAP First Name Field,LDAP नाव फील्ड DocType: Contact,Middle Name,मधले नाव +DocType: DocField,Property Depends On,मालमत्ता अवलंबून असते DocType: Custom Field,Field Description,फील्ड वर्णन apps/frappe/frappe/model/naming.py,Name not set via Prompt,प्रॉम्प्ट द्वारे नाव सेट होऊ शकत नाही apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ई-मेल इनबॉक्स @@ -2871,11 +2967,11 @@ DocType: Workflow State,folder-close,फोल्डर बंद apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,अहवाल: DocType: Print Settings,Print taxes with zero amount,शून्य रकमेसह कर छपाई करा apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} नामकरण अनुमती नाही +DocType: Server Script,Before Insert,घाला आधी DocType: Custom Script,Custom Script,सानुकूल स्क्रिप्ट DocType: Address,Address Line 2,पत्ता ओळ 2 DocType: Address,Reference,संदर्भ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,नियुक्त -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते वरून डीफॉल्ट ईमेल खाते सेट करा DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,डेटा माइग्रेशन मॅपिंग तपशील DocType: Data Import,Action,क्रिया DocType: GSuite Settings,Script URL,स्क्रिप्ट URL @@ -2901,11 +2997,13 @@ DocType: User,Api Access,एपीआय प्रवेश DocType: DocField,In List View,सूची पहा DocType: Email Account,Use TLS,TLS वापरा apps/frappe/frappe/email/smtp.py,Invalid login or password,अवैध लॉगिन किंवा पासवर्ड +DocType: Scheduled Job Type,Weekly Long,साप्ताहिक लांब apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,डाउनलोड साचा apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,फॉर्म सानुकूल JavaScript जोडा. ,Role Permissions Manager,भूमिका परवानगी व्यवस्थापक apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,नवीन मुद्रण स्वरूप नाव apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,साइडबार टॉगल करा +DocType: Server Script,After Save (Submitted Document),सेव्ह नंतर (सबमिट केलेले कागदपत्र) DocType: Data Migration Run,Pull Insert,घाला घाला DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",गुणक मूल्यासह गुणांचे गुणन झाल्यानंतर जास्तीत जास्त बिंदू अनुमत आहेत (टीप: कोणत्याही मर्यादेसाठी हे फील्ड रिक्त सोडू नका किंवा 0 सेट करा) @@ -2924,6 +3022,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ब्लॉग apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP स्थापित नाही apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,डेटा डाउनलोड करा apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} साठी मूल्ये बदलली +DocType: Server Script,Before Cancel,रद्द करण्यापूर्वी DocType: Workflow State,hand-right,हात-योग्य DocType: Website Settings,Subdomain,सबडोमेन DocType: S3 Backup Settings,Region,प्रदेश @@ -2969,12 +3068,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,जुना संक DocType: S3 Backup Settings,us-east-1,यूएस-पूर्व -1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},द्वारा पोस्ट केलेले {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","स्वरूप स्तंभ करण्यासाठी, क्वेरी स्तंभ लेबल द्या." +DocType: Onboarding Slide,Slide Fields,स्लाइड फील्ड्स DocType: Has Domain,Has Domain,डोमेन आहे DocType: User,Allowed In Mentions,अनुमत मध्ये उल्लेख apps/frappe/frappe/www/login.html,Don't have an account? Sign up,खाते नाही? साइन अप करा apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID फील्ड काढू शकत नाही apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: सेट करू शकत नाही वाटप Submittable नाही तर पद्धत बदला DocType: Address,Bihar,बिहार +DocType: Notification Settings,Subscribed Documents,सदस्यता घेतलेली कागदपत्रे apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,वापरकर्ता सेटिंग्ज DocType: Report,Reference Report,संदर्भ अहवाल DocType: Activity Log,Link DocType,दुवा DocType @@ -2992,6 +3093,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google कॅलें apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,आपण शोधत आहात पृष्ठ गहाळ आहे. तो हलविले आहे कारण किंवा दुवा लेखन आहे हे असू शकते. apps/frappe/frappe/www/404.html,Error Code: {0},त्रुटी कोड: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","साध्या मजकूरात, ओळी फक्त दोन पृष्ठामध्ये सूची वर्णन. (कमाल 140 वर्ण)" +DocType: Server Script,DocType Event,डॉकटाइप इव्हेंट DocType: Workflow,Allow Self Approval,स्वत: मंजुर परवानगी द्या DocType: Event,Event Category,कार्यक्रम वर्ग apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,जॉन डो @@ -3007,6 +3109,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,आपले नाव apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,कनेक्शन यशस्वी DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,स्लाइड प्रकाराचा एक ऑनबोर्डिंग स्लाइड आधीपासून विद्यमान आहे. DocType: DocType,Default Sort Field,डीफॉल्ट क्रमवारी फील्ड DocType: File,Is Folder,फोल्डर आहे DocType: Document Follow,DocType,DocType @@ -3042,7 +3145,9 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,मूल्ये बदलली DocType: Workflow State,arrow-up,बाण-अप DocType: Dynamic Link,Link Document Type,दुवा दस्तऐवज प्रकार +DocType: Server Script,Server Script,सर्व्हर स्क्रिप्ट DocType: OAuth Bearer Token,Expires In,मध्ये कालबाह्य +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",आपल्याला फील्डचा संच किती वेळा पुनरावृत्ती करायचा आहे (उदा: जर आपल्याला स्लाइडमध्ये 3 ग्राहक हवे असतील तर हे फील्ड 3 वर सेट करा. फक्त फील्डचा पहिला सेट स्लाइडमध्ये अनिवार्य दर्शविला जाईल) DocType: DocField,Allow on Submit,सबमिट परवानगी द्या DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,अपवाद प्रकार @@ -3052,6 +3157,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,शीर्षलेख apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,पुढील कार्यक्रम apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,अनुप्रयोग प्रवेश की आणि अनुप्रयोग गुप्त की मूल्ये प्रविष्ट करा +DocType: Email Account,Append Emails to Sent Folder,पाठवलेल्या फोल्डरमध्ये ईमेल जोडा DocType: Web Form,Accept Payment,देयक स्वीकारा apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,यादी आयटम निवडा apps/frappe/frappe/config/core.py,A log of request errors,विनंती त्रुटी लॉग @@ -3070,7 +3176,7 @@ DocType: Translation,Contributed,योगदान दिले apps/frappe/frappe/config/customization.py,Form Customization,फॉर्म सानुकूलन apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,सक्रिय सत्र नाहीत DocType: Web Form,Route to Success Link,यशस्वी दुवा मार्ग -DocType: Top Bar Item,Right,अधिकार +DocType: Onboarding Slide Field,Right,अधिकार apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,आगामी कार्यक्रम नाहीत DocType: User,User Type,वापरकर्ता प्रकार DocType: Prepared Report,Ref Report DocType,रीफ रिपोर्ट डॉकटाइप @@ -3088,6 +3194,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,कृपया apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' किंवा 'https: //' ने प्रारंभ होणे आवश्यक आहे apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,पर्याय 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,हे पूर्ववत केले जाऊ शकत नाही DocType: Workflow State,Edit,संपादित करा DocType: Website Settings,Chat Operators,ऑपरेटर गप्पा मारा DocType: S3 Backup Settings,ca-central-1,सीए-मध्य -1 @@ -3099,7 +3206,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,आपण हा फॉर्म जतन न केलेले बदल आहेत. आपण सुरू ठेवण्यापूर्वी जतन करा. DocType: Address,Telangana,तेलंगणा apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} एक पर्याय असणे आवश्यक आहे डीफॉल्ट -DocType: Tag Doc Category,Tag Doc Category,टॅग दस्तऐवज वर्ग apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 पेक्षा जास्त स्तंभांसह अहवाल लँडस्केप मोडमध्ये अधिक चांगले दिसतो. apps/frappe/frappe/database/database.py,Invalid field name: {0},अवैध फील्ड नाव: {0} DocType: Milestone,Milestone,मैलाचा दगड @@ -3108,7 +3214,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} वर जा apps/frappe/frappe/email/queue.py,Emails are muted,ईमेल नि: शब्द आहेत apps/frappe/frappe/config/integrations.py,Google Services,Google सेवा apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + अप -apps/frappe/frappe/utils/data.py,1 weeks ago,१ आठवड्यांपूर्वी +DocType: Onboarding Slide,Slide Description,स्लाइड वर्णन DocType: Communication,Error,त्रुटी apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,कृपया प्रथम एक संदेश सेट करा DocType: Auto Repeat,End Date,शेवटची तारीख @@ -3129,10 +3235,12 @@ DocType: Footer Item,Group Label,गट लेबल DocType: Kanban Board,Kanban Board,Kanban मंडळ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google संपर्क कॉन्फिगर केले गेले आहेत. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 रेकॉर्ड निर्यात केली जाईल +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,वापरकर्त्याशी संबंधित कोणतेही ईमेल खाते नाही. कृपया वापरकर्ता> ईमेल इनबॉक्स अंतर्गत खाते जोडा. DocType: DocField,Report Hide,अहवाल लपवा apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},वृक्ष दृश्य उपलब्ध नाही {0} DocType: DocType,Restrict To Domain,डोमेन करण्यासाठी प्रतिबंधित DocType: Domain,Domain,डोमेन +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,अवैध फाइल URL. कृपया सिस्टम प्रशासकाशी संपर्क साधा. DocType: Custom Field,Label Help,लेबल मदत DocType: Workflow State,star-empty,स्टार-रिक्त apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,तारखा अनेकदा अंदाज लावणे सोपे आहे. @@ -3156,6 +3264,7 @@ DocType: Workflow State,hand-left,हात-बाकी DocType: Data Import,If you are updating/overwriting already created records.,आपण आधीपासूनच तयार केलेल्या रेकॉर्ड्सचे अद्यतन / ओव्हरराईट करीत असल्यास apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ग्लोबल आहे DocType: Email Account,Use SSL,SSL वापरा +DocType: Webhook,HOOK-.####,हुक -. #### DocType: Workflow State,play-circle,प्ले-मंडळ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,कागदजत्र योग्यरित्या नियुक्त करणे शक्य नाही apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",अवैध "अवलंब_ॉन" अभिव्यक्ती @@ -3172,6 +3281,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,शेवटचा रीफ्रेश apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,दस्तऐवज प्रकारासाठी DocType: Workflow State,arrow-right,बाण-योग्य +DocType: Server Script,API Method,एपीआय पद्धत DocType: Workflow State,Workflow state represents the current state of a document.,कार्यपद्धत राज्य दस्तऐवज वर्तमान स्थिती प्रतिनिधित्व करतो. DocType: Letter Head,Letter Head Based On,पत्र आधारित आधारित apps/frappe/frappe/utils/oauth.py,Token is missing,टोकन गहाळ आहे @@ -3210,6 +3320,7 @@ DocType: Comment,Relinked,पुन्हा दुवा साधलेला DocType: Print Settings,Compact Item Print,संक्षिप्त आयटम मुद्रित DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,पुनर्निर्देशित URL +DocType: Onboarding Slide Field,Placeholder,प्लेसहोल्डर DocType: SMS Settings,Enter url parameter for receiver nos,स्वीकारणारा नग साठी मापदंड प्रविष्ट करा DocType: Chat Profile,Online,ऑनलाइन DocType: Email Account,Always use Account's Name as Sender's Name,नेहमी प्रेषकाचे नाव म्हणून खात्याचे नाव वापरा @@ -3243,6 +3354,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,मालक अस DocType: Data Migration Mapping,Push,पुश करा apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,फायली येथे सोडा DocType: OAuth Authorization Code,Expiration time,कालावधी समाप्ती वेळ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,कागदजत्र उघडा DocType: Web Page,Website Sidebar,वेबसाईट साइडबार DocType: Web Form,Show Sidebar,साइडबार दर्शवा apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,आपण {0}त प्रवेश करण्यासाठी लॉग इन करणे आवश्यक आहे . @@ -3258,6 +3370,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ग्लो DocType: Desktop Icon,Page,पृष्ठ apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},शोधू शकत नाही {0} मध्ये {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,नावे आणि स्वत: आडनाव अंदाज लावणे सोपे आहे. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},दस्तऐवजाचे नाव {0} वरून {1} केले गेले apps/frappe/frappe/config/website.py,Knowledge Base,पायाभूत माहिती DocType: Workflow State,briefcase,लहानश्या सुटकेस apps/frappe/frappe/model/document.py,Value cannot be changed for {0},मूल्य बदलले जाऊ शकत नाही {0} @@ -3292,6 +3405,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,मुद्रण स्वरूप apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ग्रिड दृश्य टॉगल करा apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,पुढील रेकॉर्डवर जा +DocType: System Settings,Time Format,वेळ स्वरूप apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,अवैध पेमेंट गेटवे श्रेय DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ही काही फाईल असलेल्या केवळ ओळींमधून तयार केलेली टेम्पलेट फाइल आहे. आपण दुरुस्ती आणि आयात करण्यासाठी या फाईलचा वापर करावा. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,दस्तऐवज प्रकार आणि भूमिका सेट परवानगी @@ -3334,12 +3448,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,प्र apps/frappe/frappe/config/core.py,Pages in Desk (place holders),डेस्क लेख (ठिकाण धारक) DocType: DocField,Collapsible Depends On,संक्षिप्त अवलंबून असते DocType: Print Style,Print Style Name,मुद्रण शैलीचे नाव +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ग्रुप बाय फिल्डला डॅशबोर्ड चार्ट तयार करणे आवश्यक आहे DocType: Print Settings,Allow page break inside tables,सपाट दगडी पाट्या आत पृष्ठ खंड परवानगी द्या DocType: Email Account,SMTP Server,SMTP सर्व्हर DocType: Print Format,Print Format Help,मुद्रण स्वरूप मदत apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} खोलीत जवळजवळ एक वापरकर्ता असणे आवश्यक आहे. DocType: DocType,Beta,बीटा DocType: Dashboard Chart,Count,मोजा +DocType: Dashboard Chart,Group By Type,प्रकारानुसार गट apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},पुनर्संचयित {0} म्हणून {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","तुम्ही अद्यतनित असाल तर, ""खोडून पुन्हा लिहायची"" निवडा नाहीतर असलेल्या विद्यमान पंक्ती हटविले जाणार नाही." DocType: DocField,Translatable,भाषांतरयोग्य @@ -3349,8 +3465,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,वाप DocType: Web Form,Web Form,वेब फॉर्म apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},दिनांक {0} स्वरूप स्वरूपात असावी: {1} DocType: About Us Settings,Org History Heading,Org इतिहास शीर्षक +DocType: Scheduled Job Type,Scheduled Job Type,शेड्यूल केलेल्या जॉबचा प्रकार DocType: Print Settings,Allow Print for Cancelled,रद्द रताच ि ंट करा परवानगी द्या DocType: Communication,Integrations can use this field to set email delivery status,एकीकरण ई-मेल वितरण स्थिती सेट करण्यासाठी या क्षेत्रात वापरू शकता +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,आपल्याकडे सर्व दुवा साधलेली कागदपत्रे रद्द करण्याची परवानगी नाही. DocType: Web Form,Web Page Link Text,वेब पृष्ठ दुवा मजकूर DocType: Page,System Page,प्रणाली पृष्ठ DocType: Page,System Page,प्रणाली पृष्ठ @@ -3358,6 +3476,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}</b> साठी कस्टमायझेशन येथे निर्यात केले: <br> {1} DocType: Website Settings,Include Search in Top Bar,समाविष्ट करा शीर्ष बार मध्ये शोधा +DocType: Scheduled Job Type,Daily Long,डेली लाँग DocType: GSuite Settings,Allow GSuite access,GSuite प्रवेश करण्याची अनुमती द्या DocType: DocType,DESC,DESC DocType: DocType,Naming,नामांकन @@ -3447,6 +3566,7 @@ DocType: Notification,Send days before or after the reference date,संदर DocType: User,Allow user to login only after this hour (0-24),वापरकर्ता केवळ या तास नंतर लॉग इन करण्यासाठी (0-24) अनुमती द्या apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",एकापाठोपाठ एकाला अनुक्रमे नियुक्त करा DocType: Integration Request,Subscription Notification,सदस्यता अधिसूचना +DocType: Customize Form Field, Allow in Quick Entry ,द्रुत प्रवेशास अनुमती द्या apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,किंवा संलग्न करा DocType: Auto Repeat,Start Date,प्रारंभ तारीख apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,मूल्य @@ -3461,6 +3581,7 @@ DocType: Google Drive,Backup Folder ID,बॅकअप फोल्डर आय apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,विकसक मोड मध्ये नाही! Site_config.json मधे सेट किंवा 'कस्टम' DocType करा. DocType: Workflow State,globe,जगभरातील DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,व्हिडिओ DocType: Assignment Rule,Priority,प्राधान्य DocType: Email Queue,Unsubscribe Param,सदस्यत्व रद्द करा परम DocType: DocType,Hide Sidebar and Menu,साइडबार आणि मेनू लपवा @@ -3472,6 +3593,7 @@ DocType: DocType,Allow Import (via Data Import Tool),आयात परवा apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,सीनियर DocType: DocField,Float,फ्लोट DocType: Print Settings,Page Settings,पृष्ठ सेटिंग्ज +DocType: Notification Settings,Notification Settings,सूचना सेटिंग्ज apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,बचत... apps/frappe/frappe/www/update-password.html,Invalid Password,अवैध पासवर्ड DocType: Contact,Purchase Master Manager,खरेदी मास्टर व्यवस्थापक @@ -3486,6 +3608,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,पत्र प्रमुख प्रतिमा DocType: Address,Party GSTIN,पार्टी GSTIN +DocType: Scheduled Job Type,Cron Format,क्रोन स्वरूप apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} अहवाल DocType: SMS Settings,Use POST,POST वापरा DocType: Communication,SMS,एसएमएस @@ -3531,18 +3654,20 @@ DocType: Workflow,Allow approval for creator of the document,दस्तऐव apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,अहवाल जतन करा DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,सर्व्हर क्रिया apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,प्रशासक प्रवेश {0} वर {1} IP पत्ता द्वारे {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,मूळ फील्ड हे वैध नाव असणे आवश्यक आहे apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,सदस्यता सुधारित करताना अयशस्वी DocType: LDAP Settings,LDAP Group Field,एलडीएपी ग्रुप फील्ड +DocType: Notification Subscribed Document,Notification Subscribed Document,सूचना सबस्क्राइब्ड दस्तऐवज apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,बरोबर apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,अवैध सी स्वरूप -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","क्यूझेड ट्रे अनुप्रयोगाशी कनेक्ट करताना त्रुटी ... <br><br> रॉ प्रिंट वैशिष्ट्य वापरण्यासाठी आपल्याकडे क्यूझेड ट्रे अनुप्रयोग स्थापित आणि चालू असणे आवश्यक आहे. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">क्यूझेड ट्रे डाउनलोड आणि स्थापित करण्यासाठी येथे क्लिक करा</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">रॉ प्रिंटिंगबद्दल अधिक जाणून घेण्यासाठी येथे क्लिक करा</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,साठवत क्रमांक सेट करा DocType: DocField,Do not allow user to change after set the first time,पहिल्या वेळी सेट करण्यासाठी वापरकर्ता बदलानंतर परवानगी देऊ नका apps/frappe/frappe/utils/data.py,1 year ago,१ वर्ष पूर्वी +DocType: DocType,Links Section,दुवे विभाग apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","सर्व मुद्रण, डाउनलोड आणि निर्यात इव्हेंटचे लॉग पहा" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 महिना DocType: Contact,Contact,संपर्क @@ -3568,16 +3693,18 @@ DocType: Auto Email Report,Dynamic Report Filters,डायनॅमिक र DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,नवीन ई-मेल DocType: Custom DocPerm,Export,निर्यात +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},यशस्वीरित्या अद्यतनित {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,क्यूझेड ट्रे अयशस्वी: DocType: Dropbox Settings,Dropbox Settings,ड्रॉपबॉक्स सेटिंग्ज DocType: About Us Settings,More content for the bottom of the page.,पृष्ठाच्या तळाशी अधिक सामग्री. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,हा कागदजत्र परत केला गेला आहे apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google ड्राइव्ह बॅकअप यशस्वी. +DocType: Webhook,Naming Series,नामांकन मालिका DocType: Workflow,DocType on which this Workflow is applicable.,ज्या DocType या कार्यप्रवाहद्वारे लागू आहे. DocType: User,Enabled,सक्षम apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,सेटअप पूर्ण करण्यात अयशस्वी apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},नवीन {0}: {1} -DocType: Tag Category,Category Name,वर्गवारी नाव +DocType: Blog Category,Category Name,वर्गवारी नाव apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,मुलाची टेबल डेटा मिळविण्यासाठी पालकांची आवश्यकता असते apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,आयात सदस्य DocType: Print Settings,PDF Settings,पीडीएफ सेटिंग्ज @@ -3613,6 +3740,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,दिनदर्शिका apps/frappe/frappe/client.py,No document found for given filters,दिलेल्या दस्तऐवजाचे फिल्टर आढळला नाही apps/frappe/frappe/config/website.py,A user who posts blogs.,ब्लॉग पोस्ट करणारा वापरकर्ता +DocType: DocType Action,DocType Action,डॉकटाइप .क्शन apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","आणखी {0} नाव {1} अस्तित्वात असलेल्या, दुसरे नाव निवडा" DocType: DocType,Custom?,सानुकूल? DocType: Website Settings,Website Theme Image,वेबसाइट थीम प्रतिमा @@ -3622,6 +3750,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},लोड apps/frappe/frappe/config/integrations.py,Backup,बॅकअप apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,डॅशबोर्ड चार्ट तयार करण्यासाठी दस्तऐवज प्रकार आवश्यक आहे DocType: DocField,Read Only,केवळ वाचनीय +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,रेजरपे ऑर्डर तयार करू शकलो नाही apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,नवी वृत्तपत्र DocType: Energy Point Log,Energy Point Log,एनर्जी पॉईंट लॉग DocType: Print Settings,Send Print as PDF,PDF म्हणून प्रिंट पाठवा @@ -3646,16 +3775,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,आ apps/frappe/frappe/www/login.html,Or login with,किंवा लॉगिन DocType: Error Snapshot,Locals,लोकल apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},संप्रेषित द्वारे {0} वर {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} एक टिप्पणी आपला उल्लेख केला आहे {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,याद्वारे गट निवडा ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदा (55 + 434) / 4 किंवा = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} आवश्यक आहे DocType: Integration Request,Integration Type,एकत्रीकरण प्रकार DocType: Newsletter,Send Attachements,Attachements पाठवा +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,कोणतेही फिल्टर आढळले नाहीत apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google संपर्क एकत्रीकरण. DocType: Transaction Log,Transaction Log,व्यवहार लॉग apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),मागील महिन्याच्या कामगिरीवर आधारित आकडेवारी ({0} ते {1} पर्यंत) DocType: Contact Us Settings,City,शहर +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,सर्व वापरकर्त्यांसाठी कार्ड लपवा apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,सानुकूलित फॉर्ममध्ये डॉकटाइप {0} साठी स्वयं पुनरावृत्तीस अनुमती द्या DocType: DocField,Perm Level,पर्म स्तर apps/frappe/frappe/www/confirm_workflow_action.html,View document,कागदजत्र पहा @@ -3667,6 +3797,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ग्लोबल शोध घ्या' प्रकार परवानगी नाही {0} सलग {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ग्लोबल शोध घ्या' प्रकार परवानगी नाही {0} सलग {1} DocType: Energy Point Log,Appreciation,कौतुक +DocType: Dashboard Chart,Number of Groups,गटांची संख्या apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,सूची दृश्य DocType: Workflow,Don't Override Status,स्थिती अधिलिखित करू नका apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,शोध संज्ञा @@ -3706,7 +3837,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,आ DocType: S3 Backup Settings,cn-northwest-1,सीएन-वायव्य -1 DocType: Dropbox Settings,Limit Number of DB Backups,डीबी बॅकअपची मर्यादा DocType: Custom DocPerm,Level,स्तर -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,शेवटचे 30 दिवस DocType: Custom DocPerm,Report,अहवाल apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,रक्कम 0 पेक्षा जास्त असणे आवश्यक आहे. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,क्यूझेड ट्रेला जोडलेले! @@ -3723,6 +3853,7 @@ DocType: S3 Backup Settings,us-west-2,यूएस-वेस्ट -2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,चाईल्ड टेबल निवडा apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ट्रिगर प्राथमिक क्रिया apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,बदला +DocType: Social Login Key,User ID Property,वापरकर्ता आयडी मालमत्ता DocType: Email Domain,domain name,डोमेनचे नाव DocType: Contact Email,Contact Email,संपर्क ईमेल DocType: Kanban Board Column,Order,ऑर्डर @@ -3744,7 +3875,7 @@ DocType: Contact,Last Name,गेल्या नाव DocType: Event,Private,खाजगी apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,आज अॅलर्ट DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF म्हणून ईमेल प्रिंट जोडणी पाठवा (शिफारस केलेले) -DocType: Web Page,Left,डावीकडे +DocType: Onboarding Slide Field,Left,डावीकडे DocType: Event,All Day,सर्व दिवस apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,असे दिसते या साइटच्या पेमेंट गेटवे संरचना चुकीचे आहे. कोणत्याही देय करण्यात आली आहे. DocType: GCalendar Settings,State,राज्य @@ -3775,7 +3906,6 @@ DocType: Workflow State,User,सदस्य DocType: Website Settings,"Show title in browser window as ""Prefix - title""","""पूर्वपद - शीर्षक"" म्हणून शीर्षक ब्राउझर विंडोमध्ये दर्शवा" DocType: Payment Gateway,Gateway Settings,गेटवे सेटिंग्ज apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,दस्तऐवज प्रकार मजकूर -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,चालवा कसोटी apps/frappe/frappe/handler.py,Logged Out,लॉग आउट apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,अधिक ... DocType: System Settings,User can login using Email id or Mobile number,वापरकर्ता ईमेल ID किंवा मोबाईल नंबर वापरून लॉग इन करू शकता @@ -3792,6 +3922,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,सारांश DocType: Event,Event Participants,कार्यक्रम सहभागी DocType: Auto Repeat,Frequency,वारंवारता +DocType: Onboarding Slide,Slide Order,स्लाइड ऑर्डर DocType: Custom Field,Insert After,नंतर समाविष्ट करा DocType: Event,Sync with Google Calendar,Google कॅलेंडरसह समक्रमित करा DocType: Access Log,Report Name,अहवाल नाव @@ -3819,6 +3950,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},सलग {0} मधे चलन प्रकारा साठी मॅक्स रूंदी 100px आहे apps/frappe/frappe/config/website.py,Content web page.,सामग्री वेब पृष्ठ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,एक नवीन भूमिका जोडा +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,वेब पृष्ठास भेट द्या +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,नवीन असाइनमेंट DocType: Google Contacts,Last Sync On,अंतिम सिंक चालू DocType: Deleted Document,Deleted Document,हटविले दस्तऐवज apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,अरेरे! काहीतरी चूक झाली @@ -3829,7 +3962,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,लँडस्क apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,क्लाएंट साइड Javascript मधील स्क्रिप्ट विस्तार DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,खालील सिद्धांतांच्या नोंदी फिल्टर केल्या जातील -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,शेड्युलर निष्क्रिय +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,शेड्युलर निष्क्रिय DocType: Blog Settings,Blog Introduction,ब्लॉग परिचय DocType: Global Search Settings,Search Priorities,प्राधान्यक्रम शोधा DocType: Address,Office,कार्यालय @@ -3839,13 +3972,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,डॅशबोर्ड च DocType: User,Email Settings,ई-मेल सेटिंग्ज apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,येथे ड्रॉप करा DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","सक्षम केल्यास, वापरकर्ता दोन फॅक्टर ऑथचा वापर करून कोणत्याही आयपी पत्त्यावर लॉगिन करू शकतो, हे सिस्टम सेटिंग्जमधील सर्व वापरकर्त्यांसाठी देखील सेट केले जाऊ शकते." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,प्रिंटर सेटिंग्ज ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,सुरू ठेवा आपला संकेतशब्द प्रविष्ट करा apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,सुरू ठेवा आपला संकेतशब्द प्रविष्ट करा apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,मी apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} हे वैध राज्य नाही apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,सर्व कागदपत्रांच्या प्रकारांवर अर्ज करा -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,उर्जा बिंदू अद्यतन +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,उर्जा बिंदू अद्यतन +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),(दिवसा) निष्क्रिय असल्यास फक्त रोजच नोकर्‍या चालवा apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',कृपया दुसरी देयक पद्धत निवडा. पोपल चलन व्यवहार समर्थन देत नाही '{0}' DocType: Chat Message,Room Type,खोली प्रकार DocType: Data Import Beta,Import Log Preview,लॉग पूर्वावलोकन आयात करा @@ -3854,6 +3987,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ठीक-मंडळ DocType: LDAP Settings,LDAP User Creation and Mapping,एलडीएपी वापरकर्त्याची निर्मिती आणि मॅपिंग apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',आपण 'ग्राहक मध्ये संत्रा शोधण्यासाठी' विचारून गोष्टी शोधू शकता +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,आजच्या घटना apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,क्षमस्व! सदस्य त्यांच्या स्वत: च्या रेकॉर्डला पूर्ण प्रवेश असणे आवश्यक आहे. ,Usage Info,वापर माहिती apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,कीबोर्ड शॉर्टकट दर्शवा @@ -3870,6 +4004,7 @@ DocType: DocField,Unique,युनिक apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{1} वर {0} कौतुक apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,आंशिक यश DocType: Email Account,Service,सेवा +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता DocType: File,File Name,फाइल नाव apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} शोधू शकत नाही {0} ({1}) साठी apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3883,6 +4018,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,नो DocType: GCalendar Settings,Enable,सक्षम DocType: Google Maps Settings,Home Address,घरचा पत्ता apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),आपण केवळ एक जाता जाता 5000 पर्यंत रेकॉर्ड अपलोड करू शकता. (काही बाबतीत कमी असू शकते) +DocType: Report,"output in the form of `data = [columns, result]`","आउटपुट `डेटा = [स्तंभ, परिणाम] of च्या स्वरूपात" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,लागू कागदपत्र प्रकार apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,वापरकर्ता असाइनमेंटसाठी नियम सेट करा. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},अपुरी परवानगी {0} @@ -3900,7 +4036,6 @@ DocType: Communication,To and CC,आणि सीसी DocType: SMS Settings,Static Parameters,स्थिर बाबी DocType: Chat Message,Room,खोली apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},वर अद्यतनित केले {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,पार्श्वभूमी नोकर्‍या चालत नाहीत. कृपया प्रशासकाशी संपर्क साधा DocType: Portal Settings,Custom Menu Items,सानुकूल मेनू आयटम apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,वेबसाइट स्लाइडशी संलग्न सर्व प्रतिमा सार्वजनिक असावी DocType: Workflow State,chevron-right,शेवरॉन उजव्या @@ -3913,10 +4048,12 @@ DocType: Website Settings,Brand HTML,ब्रँड HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,बॅकअप घ्या DocType: DocType,Allow Auto Repeat,स्वयं पुनरावृत्तीस अनुमती द्या apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,दर्शविण्यासाठी कोणतीही मूल्ये नाहीत +DocType: DocType,URL for documentation or help,दस्तऐवजीकरण किंवा मदतीसाठी URL DocType: Desktop Icon,_doctype,_doc प्र कार DocType: Communication,Email Template,ईमेल टेम्पलेट apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,यशस्वीरित्या {0} रेकॉर्ड अद्यतनित केले. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,आवश्यक दोन्ही लॉगिन आणि पासवर्ड +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,चला \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,नवीनतम दस्तऐवजात प्राप्त करण्यासाठी रीफ्रेश करा. DocType: User,Security Settings,सुरक्षा सेटिंग्ज apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,स्तंभ जोडा @@ -3925,6 +4062,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},निर्यात अहवाल: {0} DocType: Auto Email Report,Filter Meta,मेटा फिल्टर DocType: Web Page,Set Meta Tags,मेटा टॅग सेट करा +DocType: Email Account,Use SSL for Outgoing,आउटगोइंगसाठी एसएसएल वापरा 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: S3 Backup Settings,Backup Limit,बॅकअप मर्यादा DocType: Dashboard Chart,Line,ओळ @@ -3956,4 +4094,3 @@ DocType: DocField,Ignore User Permissions,वापरकर्ता परव apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,यशस्वीरित्या जतन केले apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,आपले साइन-अप सत्यापित करण्यासाठी आपल्या प्रशासकास सांगा DocType: Domain Settings,Active Domains,सक्रिय डोमेन -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,लॉग दर्शवा diff --git a/frappe/translations/ms.csv b/frappe/translations/ms.csv index a378d0c4da..c45712d3f4 100644 --- a/frappe/translations/ms.csv +++ b/frappe/translations/ms.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Sila pilih Field Jumlah. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Memuatkan fail import ... DocType: Assignment Rule,Last User,Pengguna Terakhir -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Satu tugas baru, {0}, telah diberikan kepada anda oleh {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Default Sesi disimpan apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Muat semula Fail DocType: Email Queue,Email Queue records.,rekod e-mel Giliran. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,Pokok {0} DocType: User,User Emails,E-mel pengguna DocType: User,Username,Nama pengguna apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Buat Log apps/frappe/frappe/model/base_document.py,Value too big,Nilai terlalu besar DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Bulanan DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Membolehkan masuk apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Bahaya -DocType: Address,Email Address,Alamat e-mel +apps/frappe/frappe/www/login.py,Email Address,Alamat e-mel DocType: Workflow State,th-large,ke-besar DocType: Communication,Unread Notification Sent,Pemberitahuan belum dibaca Dihantar apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksport tidak dibenarkan. Anda perlu {0} peranan untuk eksport. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Bata DocType: DocType,Is Published Field,Adalah Published Field DocType: GCalendar Settings,GCalendar Settings,Tetapan GCalendar DocType: Email Group,Email Group,e-mel Group +apps/frappe/frappe/__init__.py,Only for {},Hanya untuk {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendar Google - Tidak dapat memadamkan Acara {0} dari Google Calendar, kod ralat {1}." DocType: Event,Pulled from Google Calendar,Ditarik dari Kalendar Google DocType: Note,Seen By,Dilihat oleh apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,menambah Pelbagai -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Anda mendapat beberapa mata tenaga apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Bukan Imej Pengguna yang sah. DocType: Energy Point Log,Reverted,Dibalikkan DocType: Success Action,First Success Message,Mesej Sukses Pertama @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Bukan seperti apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nilai yang tidak betul: {0} mesti {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Sifat perubahan lapangan (sembunyi, baca sahaja, kebenaran dan lain-lain)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Menghargai +DocType: Notification Settings,Document Share,Kongsi Dokumen DocType: Workflow State,lock,mengunci apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Tetapan untuk Hubungi Kami Page. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Pentadbir Logged Dalam @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Jika didayakan, dokumen ditandai seperti yang dilihat, kali pertama pengguna membukanya" DocType: Auto Repeat,Repeat on Day,Ulang hari DocType: DocField,Color,Warna +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Tandakan semua sebagai Baca DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,inden kanan DocType: Has Role,Has Role,mempunyai Peranan @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Tunjukkan Traceback DocType: DocType,Default Print Format,Cetak Format Default DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Jenis Slide apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Tiada: Akhir Aliran Kerja apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} bidang tidak boleh ditetapkan sebagai unik dalam {1}, kerana ada nilai-nilai bukan unik yang sedia ada" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Jenis dokumen @@ -136,7 +139,6 @@ DocType: Language,Guest,Tetamu DocType: DocType,Title Field,Tajuk Field DocType: Error Log,Error Log,ralat Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL tidak sah -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 hari terakhir apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ulangan seperti "abcabcabc" hanya sedikit sukar diteka daripada "abc" DocType: Notification,Channel,Saluran apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jika anda rasa ini adalah tidak dibenarkan, sila tukar kata laluan Administrator." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Pelanggan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Pilih Lajur apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Borang ini telah diubah suai selepas anda telah dimuatkan DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Log Pemberitahuan 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Buka Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Pe apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Hantar DocType: Workflow Action Master,Workflow Action Name,Nama aliran kerja Tindakan apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE tidak boleh digabungkan -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Bukan fail zip DocType: Global Search DocType,Global Search DocType,DocType Carian Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,E-mel Dihantar? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Togol Carta apps/frappe/frappe/desk/form/save.py,Did not cancel,Tidak membatalkan DocType: Social Login Key,Client Information,Maklumat Pelanggan +DocType: Energy Point Rule,Apply this rule only once per document,Gunakan peraturan ini sekali sahaja setiap dokumen DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Baca Hanya Bergantung Pada apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Log masuk sebagai Guest atau Pentadbir DocType: Email Account,UNSEEN,GHAIB apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Sebab 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Tiada aktiviti +DocType: Server Script,Script Manager,Pengurus Skrip +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Tiada aktiviti apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps Pihak Ketiga apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Tiada Peristiwa Hari Ini apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Anda tidak boleh memberikan ulasan kajian kepada diri sendiri apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mestilah diserahkan untuk Acara Dok Dokumen yang dipilih DocType: Workflow State,circle-arrow-up,bulatan-anak panah-up @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Tidak dibenarkan untuk {0}: {1}. Medan terhad: {2} 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,You are not allowed to delete a standard Website Theme,Anda tidak dibenarkan untuk memadam Laman Web Tema standard +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Buat pertama anda {0} DocType: Data Import,Log Details,Log Butiran DocType: Workflow Transition,Example,Contoh DocType: Webhook Header,Webhook Header,Webhook Header @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Latar Belakang Sembang apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Tanda sebagai telah dibaca apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Mengemas kini {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Slaid Onboarding <b>{0}</b> dengan susunan slaid yang sama sudah wujud apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Laporan Disable DocType: Translation,Contributed Translation Doctype Name,Terjemahan Terjemahan Doktor +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang DocType: PayPal Settings,Redirect To,redirect To DocType: Data Migration Mapping,Pull,Tarik DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Rekod dalaman saham dokumen DocType: Energy Point Settings,Review Levels,Tahap Semakan DocType: Workflow State,Comment,Ulasan DocType: Data Migration Plan,Postprocess Method,Kaedah Postprocess +DocType: DocType Action,Action Type,Jenis Tindakan apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Mengambil gambar DocType: Assignment Rule,Round Robin,Robin pusingan apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Anda boleh menukar dokumen Dihantar dengan membatalkan mereka dan kemudian, meminda mereka." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Simpan sebagai DocType: Comment,Seen,Dilihat apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Menunjukkan maklumat lanjut +DocType: Server Script,Before Submit,Sebelum Hantar 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,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,Archive,Arkib @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Akses Utama apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Nama field yang salah <b>{0}</b> dalam add_fetch konfigurasi skrip tersuai apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Pilih Kenalan Google untuk kenalan mana yang harus diselaraskan. DocType: Web Page,Main Section (HTML),Seksyen Utama (HTML) +DocType: Scheduled Job Type,Annual,Tahunan DocType: Workflow State,headphones,fon kepala apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Katalaluan diperlukan atau pilih Menunggu Kata laluan DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,contohnya replies@yourcomany.com. Semua jawapan akan datang ke peti masuk ini. DocType: Slack Webhook URL,Slack Webhook URL,URL Webhack Slack +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Menentukan susunan slaid di wizard. Sekiranya slaid tidak dipaparkan, keutamaan hendaklah ditetapkan kepada 0." DocType: Data Migration Run,Current Mapping,Pemetaan Semasa apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,E-mel yang sah dan nama yang dikehendaki apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Buat semua lampiran peribadi @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Peraturan Peralihan apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Menunjukkan hanya {0} baris pertama dalam pratonton apps/frappe/frappe/core/doctype/report/report.js,Example:,Contoh: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Sekatan DocType: Workflow,Defines workflow states and rules for a document.,Mentakrifkan negeri aliran kerja dan kaedah-kaedah bagi dokumen. DocType: Workflow State,Filter,Penapis apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Semak Log Ralat untuk mendapatkan maklumat lanjut: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Kerja apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} log keluar: {1} DocType: Address,West Bengal,Bengal Barat +DocType: Onboarding Slide,Information,Maklumat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak boleh menetapkan Berikan Hantar jika tidak Boleh Hantar DocType: Transaction Log,Row Index,Indeks Baris DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,butang Bantuan DocType: Kanban Board Column,purple,ungu DocType: About Us Settings,Team Members,Ahli-ahli pasukan +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Akan menjalankan pekerjaan berjadual hanya sekali sehari untuk tapak yang tidak aktif. Default 4 hari jika ditetapkan kepada 0. DocType: Assignment Rule,System Manager,Pengurus Sistem +DocType: Scheduled Job Log,Scheduled Job,Kerja Berjadual DocType: Custom DocPerm,Permissions,Kebenaran apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks untuk integrasi dalaman DocType: Dropbox Settings,Allow Dropbox Access,Membenarkan akses Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Kod B DocType: Email Flag Queue,Email Flag Queue,E-mel Flag Giliran DocType: Access Log,Columns / Fields,Lajur / Medan apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheet untuk Format Cetak +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Bidang Fungsi Agregat diperlukan untuk membuat carta papan pemuka apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Tidak dapat mengenal pasti terbuka {0}. Cuba sesuatu yang lain. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Maklumat anda telah dihantar apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Pengguna {0} tidak boleh dihapuskan @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Nama Field DocType: Assignment Rule,Assign To Users,Berikan kepada Pengguna apps/frappe/frappe/public/js/frappe/utils/utils.js,or,atau apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nama modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Teruskan +DocType: Onboarding Slide,Continue,Teruskan apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integrasi Google dilumpuhkan. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,sijil apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Mengesahkan ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Tugasan anda pada {0} {1} telah dialih keluar apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Ruangan data pertama boleh kosong. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Tunjukkan semua Versi apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Lihat Komen @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Menyekat IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Tidak dapat menghantar e-mel pada masa ini apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendar Google - Tidak dapat mengemas kini Acara {0} dalam Google Calendar, kod ralat {1}." +DocType: Notification Log,Email Content,Kandungan E-mel apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cari atau taip arahan DocType: Activity Log,Timeline Name,Nama Timeline apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Hanya satu {0} boleh ditetapkan sebagai utama. DocType: Email Account,e.g. smtp.gmail.com,contohnya smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Tambah A Peraturan Baru DocType: Contact,Sales Master Manager,Master Sales Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Anda perlu mengaktifkan JavaScript untuk apl anda berfungsi. DocType: User Permission,For Value,Untuk Nilai DocType: Event,Google Calendar ID,ID Kalendar Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Selangkah lepas @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP Middle Name Field apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Mengimport {0} daripada {1} DocType: GCalendar Account,Allow GCalendar Access,Benarkan Akses GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} adalah medan wajib +DocType: DocType,Documentation Link,Pautan Dokumentasi apps/frappe/frappe/templates/includes/login/login.js,Login token required,Token masuk diperlukan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Kedudukan bulanan: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pilih beberapa item senarai @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL fail DocType: Version,Table HTML,Jadual HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Tambah Pelanggan +DocType: Notification Log,Energy Point,Tenaga Titik apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Kegiatan mendatang untuk Hari DocType: Google Calendar,Push to Google Calendar,Tolak ke Kalendar Google DocType: Notification Recipient,Email By Document Field,E-mel Dengan Dokumen Field @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Away DocType: Currency,Fraction Units,Unit pecahan apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} dari {1} kepada {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Tandakan sebagai Selesai DocType: Chat Message,Type,Jenis DocType: Google Settings,OAuth Client ID,ID Klien OAuth DocType: Auto Repeat,Subject,Tertakluk apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Kembali ke Meja DocType: Web Form,Amount Based On Field,Jumlah Berasaskan Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} tidak mempunyai versi yang dikesan. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Sila semak email anda untuk pengesahan apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Kali ganda tidak boleh berada di akhir bentuk DocType: Communication,Bounced,Melantun +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,daripada DocType: Deleted Document,Deleted Name,Nama dipadam apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistem dan Laman Web Pengguna DocType: Workflow Document State,Doc Status,Doc Status @@ -527,6 +552,7 @@ DocType: Language,Language Code,Kod bahasa DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: Melalui e-mel lalai untuk backup gagal dihantar. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Tambah Penapis apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS yang dihantar ke nombor berikut: {0} +DocType: Notification Settings,Assignments,Tugasan apps/frappe/frappe/utils/data.py,{0} and {1},{0} dan {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Mulakan perbualan. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sentiasa menambah "Draf" Tajuk untuk mencetak draf dokumen @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Mula Pemetaan Semasa apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mel telah ditandakan sebagai spam DocType: Comment,Website Manager,Laman Web Pengurus apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Muat Naik Fail Dihentikan. Sila cuba lagi. +DocType: Data Import Beta,Show Failed Logs,Tunjukkan Log Gagal apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Terjemahan apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Anda Draf dipilih atau dokumen Dibatalkan apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumen {0} telah ditetapkan untuk menyatakan {1} oleh {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumen dalam Baris Gilir DocType: GSuite Templates,Destination ID,ID Destinasi DocType: Desktop Icon,List,Senarai DocType: Activity Log,Link Name,link Nama +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Anda syurga \ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,Slide Onboarding apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Kata laluan tidak sah: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Kata laluan tidak sah: DocType: Print Settings,Send document web view link in email,Menghantar dokumen lihat web link dalam e-mel @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,kelabu gelap apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Berjaya: {0} kepada {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Drop +DocType: Dashboard Chart,Aggregate Function Based On,Fungsi Agregat Berdasarkan apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Sila buat salinan ini untuk membuat perubahan apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Tekan Enter untuk menyimpan apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generasi PDF gagal kerana pautan imej rosak @@ -617,7 +647,9 @@ DocType: Notification,Days Before,Sebelum hari apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Peristiwa Harian harus selesai pada Hari yang sama. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ... DocType: Workflow State,volume-down,kelantangan kurang +DocType: Onboarding Slide,Help Links,Pautan Bantuan apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Akses tidak dibenarkan dari Alamat IP ini +DocType: Notification Settings,Enable Email Notifications,Dayakan Pemberitahuan E-mel apps/frappe/frappe/desk/reportview.py,No Tags,Tiada Tags DocType: Email Account,Send Notification to,Hantar Pemberitahuan kepada DocType: DocField,Collapsible,Lipat @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Backup Terakhir Pada DocType: Customize Form Field,Customize Form Field,Menyesuaikan Borang Field DocType: Energy Point Rule,For Document Event,Untuk Acara Dokumen DocType: Website Settings,Chat Room Name,Nama Bilik Sembang +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Tidak berubah DocType: OAuth Client,Grant Type,Grant Jenis apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Semak Dokumen yang boleh dibaca oleh pengguna yang DocType: Deleted Document,Hub Sync ID,ID Sync Hub @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,meng DocType: Auto Repeat,Quarterly,Suku Tahunan apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Setiap masa apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status Dokumen Haram untuk {0} DocType: Email Account,Enable Auto Reply,Membolehkan Auto Balas apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Tidak Kelihatan @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Mesej DocType: Email Account,Notify if unreplied,Maklumkan jika unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Imbas Kod QR dan masukkan kod yang dihasilkan dipaparkan. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Dayakan Gradien +DocType: Scheduled Job Type,Hourly Long,Jam panjang DocType: System Settings,Minimum Password Score,Minimum Kata laluan Skor DocType: System Settings,Minimum Password Score,Minimum Kata laluan Skor DocType: DocType,Fields,Medan @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Ibu Bapa Ja apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup lengkap! apps/frappe/frappe/config/desktop.py,Developer,Pemaju apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Dibuat +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Untuk membolehkannya ikut arahan dalam pautan berikut: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} di baris {1} tidak boleh mempunyai URL dan perkara anak secara serentak apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Harus ada atleast satu baris untuk jadual berikut: {0} DocType: Print Format,Default Print Language,Bahasa Cetakan Lalai apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Keturunan apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Akar {0} tidak boleh dihapuskan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Tiada log gagal apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Tiada komen lagi apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Sila persiapkan SMS sebelum menetapkannya sebagai kaedah pengesahan, melalui Tetapan SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Kedua-dua DOCTYPE dan Nama diperlukan @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,Item Footer apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Daily +DocType: Onboarding Slide,Max Count,Count Count apps/frappe/frappe/config/users_and_permissions.py,User Roles,Peranan Pengguna DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Harta Setter mengatasi satu DOCTYPE standard atau harta Field apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Tidak boleh Kemas kini: Salah Link / tamat tempoh. @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Host DocType: Data Import Beta,Import File,Import Fail +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Ralat Templat apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Ruangan <b>{0}</b> sudah wujud. DocType: ToDo,High,Tinggi apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Acara Baru @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,Tunjukkan dalam penapis DocType: Address,Daman and Diu,Daman dan Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projek DocType: Address,Personal,Peribadi +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Tetapan Pencetakan Raw ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Lihat https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region untuk maklumat lanjut. apps/frappe/frappe/config/settings.py,Bulk Rename,Rename Bulk DocType: Email Queue,Show as cc,Tunjukkan sebagai cc @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Ambil Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Maklumat pengenalan bagi Hubungi Kami Page DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,ibu jari ke bawah +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Membatalkan dokumen DocType: User,Send Notifications for Email threads,Hantar Notis untuk benang E-mel apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Tidak dalam Mod Pemaju @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Backup fail DocType: DocField,In Global Search,Dalam Pencarian Global DocType: System Settings,Brute Force Security,Keselamatan Force Brute DocType: Workflow State,indent-left,inden kiri -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Ia adalah berisiko untuk memadam fail ini: {0}. Sila hubungi Pengurus Sistem anda. DocType: Currency,Currency Name,Nama Mata Wang apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Tiada E-mel @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,Medan Pengguna DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Tolak Padam apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} telah dinyahlanggan untuk {1} {2} +DocType: Scheduled Job Type,Stopped,Berhenti apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Tidak mengeluarkan apps/frappe/frappe/desk/like.py,Liked,Disukai apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Hantar Sekarang apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE tidak boleh mempunyai bentuk percetakan lalai, menggunakan Borang Customize" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE tidak boleh mempunyai bentuk percetakan lalai, menggunakan Borang Customize" +DocType: Server Script,Allow Guest,Benarkan tetamu DocType: Report,Query,Pertanyaan DocType: Customize Form,Sort Order,Sort Order apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'Dalam Lihat Senarai' tidak dibenarkan jenis {0} di baris {1} @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Kaedah Pengesahan Dua Faktor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Mula-mula tetapkan nama dan simpan rekod. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Rekod +DocType: DocType Link,Link Fieldname,Taip Nama Field apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Dikongsi dengan {0} apps/frappe/frappe/email/queue.py,Unsubscribe,unsubscribe DocType: View Log,Reference Name,Nama Rujukan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Ubah Pengguna +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pertama apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Terjemahan Terjemahan DocType: Error Snapshot,Exception,Pengecualian DocType: Email Account,Use IMAP,Penggunaan IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Peraturan mentakrifkan peralihan negeri dalam aliran kerja. DocType: File,Folder,Folder DocType: Website Route Meta,Website Route Meta,Laluan Meta Laman Web +DocType: Onboarding Slide Field,Onboarding Slide Field,Field Slide Onboarding DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Pengurus apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Pilihan 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ter apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurasikan Carta DocType: User,Last IP,IP lalu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Sila tambahkan subjek ke e-mel anda -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Dokumen baharu {0} telah dikongsi oleh anda {1}. DocType: Data Migration Connector,Data Migration Connector,Penyambung Migrasi Data apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} dibalik {1} DocType: Email Account,Track Email Status,Jejaki Status E-mel @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,Keluar Default DocType: Workflow State,play,bermain apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klik pada pautan di bawah untuk melengkapkan pendaftaran anda dan tetapkan kata laluan baru apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Tidak menambah +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} mendapat {1} mata untuk {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,No Akaun E-mel Ditugaskan DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Hubungi Kami Tetapan @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Mencari . DocType: Workflow State,text-width,teks-lebar apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Had Lampiran maksimum bagi rekod ini dicapai. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Cari mengikut nama atau pelanjutan nama +DocType: Onboarding Slide,Slide Title,Tajuk Slide DocType: Notification,View Properties (via Customize Form),Lihat Properties (melalui Borang Customize) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik pada fail untuk memilihnya. DocType: Note Seen By,Note Seen By,Nota Seen By @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Kongsi URL DocType: System Settings,Allow Consecutive Login Attempts ,Benarkan Percubaan Masuk Berturut-turut apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Ralat berlaku semasa proses pembayaran. Sila hubungi kami. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Jika Jenis Slaid Buat atau Seting mesti ada kaedah 'create_onboarding_docs' dalam fail {ref_doctype} .py yang akan dilaksanakan selepas slaid selesai. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} hari lalu DocType: Email Account,Awaiting Password,menunggu Kata laluan DocType: Address,Address Line 1,Alamat Baris 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Bukan Descendants Of DocType: Contact,Company Name,Nama Syarikat DocType: Custom DocPerm,Role,Peranan -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Tetapan ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ke pelayar anda apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Perakam @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Jejaki jika e-mel anda telah dibuka oleh penerima. <br> Nota: Jika anda menghantar kepada beberapa penerima, walaupun 1 penerima membaca e-mel, ia akan dianggap "Dibuka"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Nilai-nilai yang hilang yang diperlukan apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Benarkan Akses Kenalan Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Terhad DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Tanda sebagai tidak dibaca DocType: Activity Log,Operation,Operasi @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,Benarkan Cetak DocType: Communication,Clicked,Klik apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tiada kebenaran untuk '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Sila persiapkan Akaun E-mel lalai dari Persediaan> E-mel> Akaun E-mel apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Dijadual menghantar DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,Backup Fail @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Tiada {0} dit apps/frappe/frappe/config/customization.py,Add custom forms.,Tambah bentuk adat. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} dalam {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,mengemukakan dokumen ini -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistem ini menyediakan banyak peranan yang telah ditetapkan. Anda boleh menambah tugas baru untuk menetapkan kebenaran yang lebih halus. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Mencetuskan nama -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domain +DocType: Onboarding Slide,Domains,Domain DocType: Blog Category,Blog Category,Blog Kategori apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Tidak boleh peta kerana keadaan berikut gagal: DocType: Role Permission for Page and Report,Roles HTML,Peranan HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,Sabtu DocType: User,Represents a User in the system.,Mewakili pengguna dalam sistem. DocType: List View Setting,Disable Auto Refresh,Lumpuhkan Segera Semula Auto DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Tugas {0}, yang kautunjukkan kepada {1}, telah ditutup." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sila tutup tetingkap ini DocType: Print Format,Print Format Type,Cetak Format Jenis DocType: Newsletter,A Lead with this Email Address should exist,A Lead dengan Alamat E-mel ini perlu wujud @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Tetapan SMTP untuk e-me apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pilih satu DocType: Data Export,Filter List,Senarai Penapis DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Balas Mesej DocType: Data Migration Mapping,Condition,Keadaan apps/frappe/frappe/utils/data.py,{0} hours ago,{0} hours ago @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Pangkalan Contributor DocType: Communication,Sent Read Receipt,Dihantar Baca Resit DocType: Email Queue,Unsubscribe Method,unsubscribe Kaedah +DocType: Onboarding Slide,Add More Button,Tambah lebih banyak butang DocType: GSuite Templates,Related DocType,DOCTYPE yang berkaitan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Edit untuk menambah kandungan apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Pilih Bahasa apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Maklumat Kad apps/frappe/frappe/__init__.py,No permission for {0},Tiada kebenaran untuk {0} DocType: DocType,Advanced,Advanced +DocType: Onboarding Slide,Slide Image Source,Sumber Imej Slaid apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Rujukan: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Puan @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Pengguna tidak boleh Buat apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Berjaya Selesai apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,akses Dropbox diluluskan! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Adakah anda pasti mahu menggabungkan {0} dengan {1}? DocType: Customize Form,Enter Form Type,Masukkan Borang Jenis DocType: Google Drive,Authorize Google Drive Access,Diberikan Akses Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Nama Parameter Kanban yang tiada @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Membenarkan DOCTYPE, DOCTYPE. Berhati-hati!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Format disesuaikan untuk Percetakan, E-mel" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jumlah {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Dikemaskini Untuk Versi Baru DocType: Custom Field,Depends On,Bergantung Pada DocType: Kanban Board Column,Green,Green DocType: Custom DocPerm,Additional Permissions,Kebenaran tambahan @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,Sosial apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Kalendar Google - Tidak dapat membuat Kalendar untuk {0}, kod ralat {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Penyuntingan Row DocType: Workflow Action Master,Workflow Action Master,Aliran Kerja Tindakan Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Memadam semua DocType: Custom Field,Field Type,Jenis bidang apps/frappe/frappe/utils/data.py,only.,sahaja. DocType: Route History,Route History,Sejarah Laluan @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Lupa kata laluan? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Ralat pelayan +DocType: Server Script,After Delete,Selepas Padam apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Lihat semua laporan yang lalu. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Id Log masuk diperlukan DocType: Website Slideshow,Website Slideshow,Laman Web Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Tiada Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link yang halaman rumah laman web. Pautan Standard (indeks, login, produk, blog, kira-kira, hubungan)" +DocType: Server Script,After Submit,Selepas Hantar apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Pengesahan gagal semasa menerima e-mel dari Akaun E-mel {0}. Mesej dari pelayan: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Custom Field @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Jika pengguna mempunyai apa-apa peranan diperiksa, maka pengguna menjadi "Sistem Pengguna". "Sistem Pengguna" mempunyai akses ke desktop" DocType: System Settings,Date and Number Format,Format Tarikh dan Nombor apps/frappe/frappe/model/document.py,one of,salah satu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Semakan satu masa apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Show Tags DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna +DocType: DocType,Actions,Tindakan-tindakan DocType: Workflow State,align-justify,menyelaraskan-mewajarkan DocType: User,Middle Name (Optional),Nama Tengah (Pilihan) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Tidak Dibenarkan @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Tidak Keput DocType: System Settings,Security,Keselamatan apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Dijadual menghantar kepada {0} penerima apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Potong +DocType: Server Script,After Save,Selepas Simpan apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},dinamakan semula dari {0} kepada {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} daripada {1} ({2} baris dengan anak-anak) DocType: Currency,**Currency** Master,** Mata Wang ** Master @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,Nilai Penapis DocType: Communication,User Tags,Tags DocType: Data Migration Run,Fail,Gagal DocType: Workflow State,download-alt,turun-alt +DocType: Scheduled Job Type,Last Execution,Pelaksanaan Terakhir DocType: Data Migration Run,Pull Failed,Tarik Gagal apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Tunjukkan / Sembunyikan Kad DocType: Communication,Feedback Request,Reaksi Permintaan apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Import Data dari fail CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Mengikuti bidang yang hilang: +DocType: Notification Log,From User,Dari Pengguna apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Membatalkan {0} DocType: Web Page,Main Section,Seksyen utama DocType: Page,Icon,Icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Petunjuk: Termasuk simbol, nombor dan huruf besar dalam kata laluan" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Petunjuk: Termasuk simbol, nombor dan huruf besar dalam kata laluan" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurasikan pemberitahuan untuk menyebut, tugasan, mata tenaga dan banyak lagi." DocType: DocField,Allow in Quick Entry,Benarkan dalam Kemasukan Pantas apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,URL Tema DocType: Customize Form,Sort Field,Susun Field DocType: Razorpay Settings,Razorpay Settings,Tetapan Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Tambah Lagi DocType: System Settings,Session Expiry Mobile,Sesi tamat Bergerak apps/frappe/frappe/utils/password.py,Incorrect User or Password,Pengguna atau Kata Laluan yang salah apps/frappe/frappe/templates/includes/search_box.html,Search results for,Hasil carian untuk @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Peraturan Tenaga Tenaga DocType: Communication,Delayed,Lambat apps/frappe/frappe/config/settings.py,List of backups available for download,Senarai sandaran boleh dimuat turun +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Cuba Import Data yang baru apps/frappe/frappe/www/login.html,Sign up,Daftar apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Baris {0}: Tidak dibenarkan melumpuhkan Mandatori untuk medan standard +DocType: Webhook,Enable Security,Dayakan Keselamatan apps/frappe/frappe/config/customization.py,Dashboards,Papan pemuka DocType: Test Runner,Output,Pengeluaran DocType: Milestone,Track Field,Trek Field @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,Menetapkan Hartanah Selepas Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Menambah medan untuk bentuk. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Kelihatan seperti sesuatu yang tidak kena dengan konfigurasi Paypal tapak ini. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Tambah Ulasan +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} memberikan tugas baru {1} {2} kepada anda apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Saiz Fon (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Hanya DocTypes standard yang dibenarkan untuk disesuaikan daripada Borang Penyesuaian. DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,Menu Portal Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Tetapkan Penapis DocType: Contact Us Settings,Email ID,ID e-mel DocType: Energy Point Rule,Multiplier Field,Field Multiplier +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Tidak dapat membuat pesanan Razorpay. Sila hubungi Pentadbir DocType: Dashboard Chart,Time Interval,Selang Masa DocType: Activity Log,Keep track of all update feeds,Jejaki semua suapan kemas kini +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} berkongsi dokumen {1} {2} dengan anda DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Senarai sumber mana App Pelanggan akan mempunyai akses kepada selepas pengguna membenarkannya. <br> contohnya projek DocType: Translation,Translated Text,diterjemahkan Text DocType: Contact Us Settings,Query Options,Pertanyaan Pilihan @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,Utama DocType: Address,Contacts,Kenalan DocType: System Settings,Setup Complete,Persediaan Lengkap apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Laporan semua saham dokumen +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Templat import harus bersifat .csv, .xlsx atau .xls" apps/frappe/frappe/www/update-password.html,New Password,Kata laluan baru apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Penapis {0} hilang apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Maaf! Anda tidak boleh memadam komen auto-dijana @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Jalankan DocType: Blog Post,Content (HTML),Kandungan (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Persediaan untuk DocType: Personal Data Download Request,User Name,Nama Pengguna DocType: Workflow State,minus-sign,tolak-tanda apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Tiada {0} kebenaran apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksport Kebenaran Custom apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Tiada item dijumpai. DocType: Data Export,Fields Multicheck,Medan Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Lengkap DocType: Activity Log,Login,Log masuk DocType: Web Form,Payments,Pembayaran apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integrasi Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} mengembalikan mata anda pada {1} {2} DocType: System Settings,Enable Scheduled Jobs,Membolehkan Pekerjaan Berjadual apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Nota: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Tidak aktif @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Templa apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Ralat Kebenaran apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nama {0} tidak boleh {1} DocType: User Permission,Applicable For,Terpakai Untuk +DocType: Dashboard Chart,From Date,Dari Tarikh apps/frappe/frappe/core/doctype/version/version_view.html,Success,Kejayaan apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,sesi Tamat tempoh apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,sesi Tamat tempoh @@ -1480,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Kej apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; tidak dibenarkan dalam keadaan DocType: Async Task,Async Task,Async Petugas DocType: Workflow State,picture,gambar -apps/frappe/frappe/www/complete_signup.html,Complete,Lengkap +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Lengkap DocType: DocType,Image Field,Field Image DocType: Print Format,Custom HTML Help,Custom HTML Bantuan DocType: LDAP Settings,Default Role on Creation,Peranan lalai pada Penciptaan @@ -1488,6 +1549,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Negeri seterusnya DocType: User,Block Modules,Sekat Modul DocType: Print Format,Custom CSS,CSS Custom +DocType: Energy Point Rule,Apply Only Once,Terapkan Hanya Sekali apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Tambah komen DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Diabaikan: {0} kepada {1} @@ -1499,6 +1561,7 @@ DocType: Email Account,Default Incoming,Default masuk DocType: Workflow State,repeat,berulang DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Nilai mestilah salah satu daripada {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Batal Semua Dokumen 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Pergi ke {0} Senarai apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Bantuan di Cari @@ -1507,6 +1570,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Mendaftar t apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ulang Auto untuk dokumen ini telah dilumpuhkan. DocType: DocType,Hide Copy,Menyembunyikan Salinan apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Kosongkan semua peranan +DocType: Server Script,Before Save,Sebelum Simpan apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} mestilah unik apps/frappe/frappe/model/base_document.py,Row,Berturut-turut apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Templat E-mel" @@ -1517,7 +1581,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Berhasil diimport {0} DocType: User,API Key,Kunci API DocType: Email Account,Send unsubscribe message in email,Menghantar mesej unsubscribe dalam e-mel -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Title apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname yang akan menjadi DOCTYPE untuk bidang pautan ini. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumen yang diberikan kepada anda dan oleh anda. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Anda juga boleh menyalin-paste ini @@ -1549,8 +1612,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Lampirkan imej DocType: Workflow State,list-alt,senarai-alt apps/frappe/frappe/www/update-password.html,Password Updated,Kata laluan Dikemaskini +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Langkah-langkah untuk mengesahkan login anda apps/frappe/frappe/utils/password.py,Password not found,Kata laluan tidak dijumpai +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Panjang Halaman DocType: Email Queue,Expose Recipients,mendedahkan Penerima apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Untuk menambah adalah wajib untuk mel masuk @@ -1578,6 +1643,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Lampiran Saiz (dalam MB) apps/frappe/frappe/www/login.html,Have an account? Login,Akaun? Log masuk +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Tetapan Cetak ... DocType: Workflow State,arrow-down,arrow ke bawah apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Barisan {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Pengguna tidak dibenarkan untuk memadamkan {0}: {1} @@ -1599,6 +1665,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Akses Rahsia DocType: Tag Link,Document Title,Tajuk dokumen apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Wajib) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu DocType: Social Login Key,Social Login Provider,Penyedia Log Masuk Sosial apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Tambahkan lagi komen apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Tiada data yang terdapat dalam fail tersebut. Sila masukkan semula fail baru dengan data. @@ -1613,11 +1680,12 @@ DocType: Workflow State,hand-down,tangan-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Tiada bidang yang dapat digunakan sebagai Kolom Kanban. Gunakan Borang Sesuaikan untuk menambah Bidang Tersuai jenis "Pilih". DocType: Address,GST State,GST Negeri apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Tidak boleh menetapkan Batal tanpa Hantar +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Pengguna ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound Untuk Kod Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Bantuan Terbuka DocType: DocType,Is Submittable,Adalah Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Mention Baru +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Mention Baru apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Tiada kenalan Google baharu yang disegerakkan. DocType: File,Uploaded To Google Drive,Dimuat naik ke Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Nilai untuk medan cek boleh sama ada 0 atau 1 @@ -1629,7 +1697,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Peti masuk DocType: Kanban Board Column,Red,Merah DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Skrip +DocType: Report,Script,Skrip apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumen tidak dapat disimpan. DocType: Energy Point Rule,Maximum Points,Mata maksimum apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Tetapan Saya @@ -1659,9 +1727,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} mata penghargaan untuk {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Peranan boleh ditetapkan untuk pengguna dari laman pengguna mereka. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Tambah komen +DocType: Dashboard Chart,Select Date Range,Pilih Julat Tarikh DocType: DocField,Mandatory,Mandatori apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul Eksport +DocType: Scheduled Job Type,Monthly Long,Long Bulanan apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Tiada set kebenaran asas +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Hantar e-mel ke {0} untuk memautnya di sini apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Pengertian Hantar, Batal, Meminda" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do @@ -1670,7 +1741,6 @@ DocType: Milestone Tracker,Track milestones for any document,Jejaki peristiwa pe DocType: Social Login Key,Identity Details,Butiran Pengenalan apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Peralihan aliran kerja tidak dibenarkan dari {0} hingga {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Tunjukkan Papan Pemuka -apps/frappe/frappe/desk/form/assign_to.py,New Message,Mesej baru DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,Pertanyaan-laporan DocType: Data Import Beta,Template Warnings,Peringatan Templat @@ -1681,18 +1751,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Berkaitan De apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Edit Tetapan Laporan E-mel Auto DocType: Chat Room,Message Count,Count Message DocType: Workflow State,book,buku +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} dikaitkan dengan dokumen berikut: {2} DocType: Communication,Read by Recipient,Baca oleh Penerima DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Ralat dalam Skrip Custom apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nama apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Tiada Kebenaran ditetapkan untuk kriteria ini. DocType: Auto Email Report,Auto Email Report,Auto Laporan Email +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Dikongsi Dokumen Baru apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Memadam komen? DocType: Address Template,This format is used if country specific format is not found,Format ini digunakan jika format tertentu negara tidak dijumpai DocType: System Settings,Allow Login using Mobile Number,Benarkan Log masuk menggunakan Nombor Telefon apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jika diaktifkan, pengguna yang log masuk dari Alamat IP Terhad, tidak akan diminta untuk Two Factor Auth" +DocType: Server Script,After Cancel,Selepas Batal DocType: Auto Repeat,Get Contacts,Dapatkan Kenalan apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Jawatan yang difailkan di bawah {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Melangkau Tiang Tanpa Tajuk @@ -1703,6 +1776,7 @@ DocType: User,Login After,Log masuk Selepas DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Percetakan DocType: Workflow State,thumbs-up,pujian +DocType: Notification Log,Mention,Menyebut DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Font apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision hendaklah antara 1 dan 6 @@ -1710,7 +1784,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,dan apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Laporan ini dihasilkan pada {0} DocType: Error Snapshot,Frames,Frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,tugasan +DocType: Notification Log,Assignment,tugasan DocType: Notification,Slack Channel,Saluran Slack DocType: About Us Team Member,Image Link,Pautan imej DocType: Auto Email Report,Report Filters,laporan Penapis @@ -1727,7 +1801,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Tidak dapat mengemas kini acara apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Kod pengesahan telah dihantar ke alamat e-mel berdaftar anda. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Terkejut +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Sasaran anda apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Penapis mesti mempunyai 4 nilai (DOCTYPE, FIELDNAME, pengendali, nilai): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Tiada Nama Khusus untuk {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Memohon Peraturan Penyerah Hak apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/utils/data.py,Invalid field name {0},Nama medan tidak sah {0} @@ -1737,7 +1813,6 @@ DocType: Workflow State,text-height,teks ketinggian DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Pemetaan Pelan Migrasi Data apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Memulakan Frappé ... DocType: Web Form Field,Max Length,Max Panjang -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Untuk {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,peta-penanda apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Hantar Isu @@ -1773,6 +1848,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page hilang atau berpindah apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Ulasan DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay tetapan gateway Pembayaran +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} mendapat {1} titik untuk {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Ambil gambar yang dilampirkan dari dokumen DocType: Chat Room,Name,Nama DocType: Contact Us Settings,Skype,Skype @@ -1783,7 +1859,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Buka Pautan apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Bahasa awak DocType: Dashboard Chart,Average,Purata apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Tambah Row -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Mesin pencetak apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Pertanyaan mestilah SELECT DocType: Auto Repeat,Completed,Siap @@ -1843,6 +1918,7 @@ DocType: GCalendar Account,Next Sync Token,Token Sync Seterusnya DocType: Energy Point Settings,Energy Point Settings,Tetapan Mata Tenaga DocType: Async Task,Succeeded,Diikuti apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Medan mandatori yang diperlukan dalam {0} +DocType: Onboarding Slide Field,Align,Align apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Kebenaran Reset untuk {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Pengguna dan Kebenaran DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1859,7 +1935,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nama Format Cetak Baru apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik pada pautan di bawah untuk meluluskan permintaan DocType: Workflow State,align-left,menyelaraskan kiri +DocType: Onboarding Slide,Action Settings,Tetapan Tindakan DocType: User,Defaults,Lalai +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Sebagai perbandingan, gunakan> 5, <10 atau = 324. Untuk julat, gunakan 5:10 (untuk nilai antara 5 & 10)." DocType: Energy Point Log,Revert Of,Balik Semula apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Bergabung dengan yang sedia ada DocType: User,Birth Date,Tarikh Lahir @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Dalam DocType: Notification,Value Change,Nilai Perubahan DocType: Google Contacts,Authorize Google Contacts Access,Mengotorkan Akses Kenalan Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hanya menunjukkan medan Nombor dari Laporan +apps/frappe/frappe/utils/data.py,1 week ago,1 minggu yang lalu DocType: Data Import Beta,Import Type,Jenis Import DocType: Access Log,HTML Page,Halaman HTML DocType: Address,Subsidiary,Anak Syarikat @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Dengan Kepala Surat apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Pelayan Mel Keluar sah atau Port DocType: Custom DocPerm,Write,Tulis -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Hanya Pentadbir dibenarkan untuk membuat Pertanyaan / Skrip Laporan apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Pengemaskinian DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "nilai" adalah wajib. Sila nyatakan nilai yang perlu dikemaskini @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Jemput seb DocType: Data Migration Run,Started,Dimulakan apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Pengguna {0} tidak mempunyai akses kepada dokumen ini DocType: Data Migration Run,End Time,Akhir Masa +DocType: Dashboard Chart,Group By Based On,Kumpulan Berdasarkan Berdasarkan Pada apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Pilih Lampiran apps/frappe/frappe/model/naming.py, for {0},untuk {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Anda tidak dibenarkan untuk mencetak dokumen ini @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Mengesahkan DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Dayakan Sembang DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Nama (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Meninggalkan perbualan ini apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Pilihan tidak ditetapkan untuk bidang link {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Beratur / Pekerja @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Log Masuk tidak dibenarkan pada masa ini DocType: Data Migration Run,Current Mapping Action,Tindakan pemetaan semasa DocType: Dashboard Chart Source,Source Name,Nama Source -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tiada akaun e-mel yang berkaitan dengan Pengguna. Sila tambahkan akaun di bawah Pengguna> Peti Masuk E-mel. DocType: Email Account,Email Sync Option,E-mel Pilihan Sync apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Baris Tidak DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Telah disematkan DocType: Contact Us Settings,Introduction,Pengenalan +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Perlukan bantuan? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin di seluruh dunia apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Diikuti oleh DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Sudah pad DocType: User Email,Enable Outgoing,Membolehkan Keluar DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Custom Tag -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaun E-mel bukan persediaan. Sila buat Akaun E-mel baru dari Persediaan> E-mel> Akaun E-mel DocType: Comment,Submitted,Dihantar DocType: Contact,Pulled from Google Contacts,Ditarik dari Kenalan Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Permintaan tidak sah @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home / Ujia apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Beri kepada saya DocType: DocField,Dynamic Link,Pautan Dinamik apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tekan Alt Utama untuk mencetuskan jalan pintas tambahan dalam Menu dan Sidebar +DocType: Dashboard Chart,To Date,Tarikh DocType: List View Setting,List View Setting,Tetapan Paparan Senarai apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show gagal pekerjaan -DocType: Event,Details,Butiran +DocType: Scheduled Job Log,Details,Butiran DocType: Property Setter,DocType or Field,DOCTYPE atau Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Anda tidak mematuhi dokumen ini apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Warna primer @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Seolah Key boleh diterbitkan atau Rahsia Utama adalah salah !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Seolah Key boleh diterbitkan atau Rahsia Utama adalah salah !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Bantuan cepat untuk Menetapkan Kebenaran -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE ke Berikan Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Show berulang apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mel telah dialihkan ke sampah DocType: Report,Report Builder,Laporan Builder @@ -2105,6 +2184,7 @@ DocType: Workflow State,Upload,Muat naik DocType: User Permission,Advanced Control,Kawalan Lanjutan DocType: System Settings,Date Format,Format tarikh apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Tidak Diterbitkan +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tiada Templat Alamat lalai yang ditemui. Sila buat yang baru dari Persediaan> Percetakan dan Penjenamaan> Template Alamat. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Tindakan untuk aliran kerja (contohnya Meluluskan, Membatalkan)." DocType: Data Import,Skip rows with errors,Langkau baris dengan ralat DocType: Workflow State,flag,bendera @@ -2114,7 +2194,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Doku apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Lompat ke medan DocType: Contact Us Settings,Forward To Email Address,Forward Untuk E Alamat DocType: Contact Phone,Is Primary Phone,Adakah Telefon Utama -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Hantar e-mel ke {0} untuk memautnya di sini. DocType: Auto Email Report,Weekdays,Harijadi apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} rekod akan dieksport apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Bidang tajuk mesti fieldname yang sah @@ -2122,7 +2201,7 @@ DocType: Post Comment,Post Comment,pos komen apps/frappe/frappe/config/core.py,Documents,Dokumen apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Log Aktiviti oleh DocType: Social Login Key,Custom Base URL,URL Pangkalan Khusus -DocType: Email Flag Queue,Is Completed,Sudah selesai +DocType: Onboarding Slide,Is Completed,Sudah selesai apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Dapatkan Medan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Sunting profil DocType: Kanban Board Column,Archived,Arkib @@ -2133,12 +2212,13 @@ 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 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,hari ini -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,hari ini +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,hari ini +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,hari ini apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Hantar Selepas Import DocType: Error Log,Log of Scheduler Errors,Log Kesilapan Berjadual DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Pautan Bantuan Slaid Onboarding DocType: OAuth Client,App Client Secret,Secret Pelanggan App apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Mengemukakan apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Ibu bapa ialah nama dokumen yang akan ditambahkan data tersebut. @@ -2146,7 +2226,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,KES UPPER apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Masukkan nama folder -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tiada Templat Alamat lalai yang ditemui. Sila buat yang baru dari Persediaan> Percetakan dan Penjenamaan> Template Alamat. apps/frappe/frappe/auth.py,Unknown User,Pengguna tidak diketahui apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Pilih Peranan DocType: Comment,Deleted,Dihapuskan @@ -2162,7 +2241,7 @@ DocType: Chat Token,Chat Token,Token Sembang apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Buat Carta apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Jangan Import -DocType: Web Page,Center,Pusat +DocType: Onboarding Slide Field,Center,Pusat DocType: Notification,Value To Be Set,Nilai Akan Tetapkan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Tahap Pertama @@ -2170,7 +2249,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nama Pangkalan Data apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Borang Muat semula DocType: DocField,Select,Pilih -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Lihat Log Penuh +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Lihat Log Penuh DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Ekspresi Python Mudah, Contoh: status == 'Terbuka' dan ketik == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Fail tidak dilampirkan apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Sambungan hilang. Sesetengah ciri mungkin tidak berfungsi. @@ -2202,6 +2281,7 @@ DocType: Web Page,HTML for header section. Optional,HTML untuk bahagian kepala. apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ciri ini adalah jenama baru dan masih eksperimen apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimum {0} baris dibenarkan DocType: Dashboard Chart Link,Chart,Carta +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ini adalah kata yang sangat umum. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Lihat @@ -2218,6 +2298,7 @@ DocType: Data Migration Connector,Hostname,Nama hos DocType: Data Migration Mapping,Condition Detail,Detil keadaan apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Untuk mata wang {0}, jumlah transaksi minimum harus {1}" DocType: DocField,Print Hide,Cetak Sembunyikan +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Kepada Pengguna apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Masukkan Nilai DocType: Workflow State,tint,warna @@ -2285,6 +2366,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kod QR untuk P apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tambah ke To Do DocType: Footer Item,Company,Syarikat apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Purata {0} +DocType: Scheduled Job Log,Scheduled,Berjadual DocType: User,Logout from all devices while changing Password,Log keluar dari semua peranti semasa menukar Kata Laluan apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Sahkan Kata Laluan apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Terdapat ralat @@ -2310,7 +2392,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Kebenaran pengguna sudah wujud apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Lajur pemetaan {0} ke medan {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Lihat {0} -DocType: User,Hourly,Jam +DocType: Scheduled Job Type,Hourly,Jam apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Mendaftar OAuth Pelanggan App DocType: DocField,Fetch If Empty,Ambil Jika Kosong DocType: Data Migration Connector,Authentication Credentials,Kredensial Pengesahan @@ -2321,10 +2403,10 @@ DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},diperolehi oleh {0} melalui peraturan automatik {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} atau {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Anda semua siap! DocType: Workflow State,trash,sampah DocType: System Settings,Older backups will be automatically deleted,sandaran tua akan dipadamkan secara automatik apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID Kunci Akses atau Kunci Akses Rahsia tidak sah. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Anda kehilangan beberapa mata tenaga DocType: Post,Is Globally Pinned,Dikenali secara Global apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Aktiviti Terkini DocType: Workflow Transition,Conditions,Syarat-syarat @@ -2333,6 +2415,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Disahkan DocType: Event,Ends on,Berakhir pada DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Jalan ke Sijil Pelayan +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript dilumpuhkan pada penyemak imbas anda apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Tidak kebenaran yang cukup untuk melihat pautan apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Tidak kebenaran yang cukup untuk melihat pautan apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Alamat Tajuk adalah wajib. @@ -2352,7 +2435,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jika ini diperiksa, baris dengan data yang sah akan diimport dan baris tidak sah akan dibuang ke dalam fail baru untuk anda import kemudian." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumen hanya boleh disunting oleh pengguna peranan -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Tugas {0}, yang kautunjukkan kepada {1}, telah ditutup oleh {2}." DocType: Print Format,Show Line Breaks after Sections,Show Line Breaks selepas Seksyen DocType: Communication,Read by Recipient On,Baca oleh Penerima Pada DocType: Blogger,Short Name,Nama Pendek @@ -2385,6 +2467,7 @@ DocType: Translation,PR sent,PR dihantar DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Hanya Hantar Records Dikemaskini dalam Waktu X lepas DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Hanya Hantar Records Dikemaskini dalam Waktu X lepas DocType: Communication,Feedback,Maklumbalas +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Dikemaskini Ke Versi Baru 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Terjemahan Terbuka apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,E-mel ini autogenerated DocType: Workflow State,Icon will appear on the button,Ikon akan muncul pada butang @@ -2423,6 +2506,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Page tidak DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Item Slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Cuba untuk mengelakkan mengulangi kata-kata dan watak-watak +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Pemberitahuan Dilumpuhkan +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Adakah anda pasti mahu memadam semua baris? DocType: Workflow Action,Workflow State,Negeri aliran kerja apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,baris Ditambah apps/frappe/frappe/www/list.py,My Account,Akaun Saya @@ -2431,6 +2516,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Selepas hari apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Sambungan QZ Tray Aktif! DocType: Contact Us Settings,Settings for Contact Us Page,Tetapan untuk Hubungi Kami Page +DocType: Server Script,Script Type,Skrip Jenis DocType: Print Settings,Enable Print Server,Dayakan Pelayan Cetak apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} weeks ago DocType: Email Account,Footer,Footer @@ -2456,8 +2542,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Amaran apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Ini mungkin boleh dicetak pada berbilang halaman DocType: Data Migration Run,Percent Complete,Peratus Selesai -DocType: Tag Category,Tag Category,tag Kategori -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Sebagai perbandingan, gunakan> 5, <10 atau = 324. Untuk julat, gunakan 5:10 (untuk nilai antara 5 & 10)." DocType: Google Calendar,Pull from Google Calendar,Tarik dari Kalendar Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Bantuan DocType: User,Login Before,Log masuk Sebelum @@ -2467,17 +2551,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sembunyikan hujung minggu apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Secara automatik menghasilkan dokumen berulang. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Adalah +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-tanda apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Nilai untuk {0} tidak boleh menjadi senarai yang DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bagaimanakah mata wang ini diformat? Jika tidak ditetapkan, akan menggunakan default sistem" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Hantar {0} dokumen? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Kesalahan menyambung ke Aplikasi QZ Tray ... <br><br> Anda perlu memasang dan menjalankan aplikasi QZ Tray, untuk menggunakan ciri Cetak Raw. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klik di sini untuk Muat turun dan pasang QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klik di sini untuk mengetahui lebih lanjut mengenai Percetakan Raw</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Pemetaan Pencetak apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Sila simpan sebelum melampirkan. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Adakah anda ingin membatalkan semua dokumen yang dikaitkan? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Ditambah {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak boleh diubah dari {0} kepada {1} berturut-turut {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Kebenaran Peranan DocType: Help Article,Intermediate,Intermediate +apps/frappe/frappe/config/settings.py,Email / Notifications,E-mel / Pemberitahuan apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} berubah {1} ke {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Dokumen Dibatalkan dipulihkan sebagai Draf DocType: Data Migration Run,Start Time,Waktu Mula @@ -2494,6 +2582,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Bo apps/frappe/frappe/email/smtp.py,Invalid recipient address,Alamat penerima tidak sah DocType: Workflow State,step-forward,langkah ke hadapan DocType: System Settings,Allow Login After Fail,Benarkan Masuk Selepas Gagal +DocType: DocType Link,DocType Link,Pautan DocType DocType: Role Permission for Page and Report,Set Role For,Set Peranan Untuk DocType: GCalendar Account,The name that will appear in Google Calendar,Nama yang akan muncul dalam Kalendar Google apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Bilik langsung dengan {0} sudah wujud. @@ -2511,6 +2600,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Buat baru DocType: Contact,Google Contacts,Kenalan Google DocType: GCalendar Account,GCalendar Account,Akaun GCalendar DocType: Email Rule,Is Spam,adalah Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Terakhir apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Laporan {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Buka {0} DocType: Data Import Beta,Import Warnings,Amaran Import @@ -2522,6 +2612,7 @@ DocType: Workflow State,ok-sign,ok-tanda apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumen dipadam apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Format CSV adalah sensitif huruf apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon sudah wujud +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Nyatakan di mana semua domain harus dipaparkan. Jika tiada yang dinyatakan, slaid dipaparkan dalam semua domain secara lalai." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Salinan apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Bidang {1} dalam baris {2} tidak dapat disembunyikan dan wajib tanpa lalai DocType: Newsletter,Create and Send Newsletters,Buat dan Hantar Surat Berita @@ -2532,6 +2623,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID Acara Kalendar Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Induk"" menandakan jadual induk di mana baris ini perlu ditambah" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Tinjauan Semula: +DocType: Scheduled Job Log,Scheduled Job Log,Log Kerja Berjadual +DocType: Server Script,Before Delete,Sebelum Padam apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Berkongsi Dengan apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Lampirkan fail / url dan tambahkan dalam jadual. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Mesej bukan persediaan @@ -2555,19 +2648,21 @@ DocType: About Us Settings,Settings for the About Us Page,Tetapan untuk Mengenai apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Jalur tetapan gerbang pembayaran apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Jalur tetapan gerbang pembayaran apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Cetak Dihantar ke pencetak! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Mata Tenaga +DocType: Notification Settings,Energy Points,Mata Tenaga +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Masa {0} mesti dalam bentuk: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,contohnya pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Menjana Kunci apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ini akan mengalih keluar data anda secara kekal. DocType: DocType,View Settings,Lihat Tetapan +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Pemberitahuan Baharu DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Minta Struktur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Kaedah pengawal get_razorpay_order hilang DocType: Personal Data Deletion Request,Pending Verification,Penamatan Pengesahan DocType: Website Meta Tag,Website Meta Tag,Meta Tag Laman Web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Jika pelabuhan bukan standard (contohnya 587). Jika di Google Cloud, cuba port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Tanggal akhir pembersihan, kerana ia tidak boleh di masa lalu untuk halaman yang diterbitkan." DocType: User,Send Me A Copy of Outgoing Emails,Hantar Saya Salinan E-mel Keluar -DocType: System Settings,Scheduler Last Event,Penjadual acara lepas DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Tambah Google Analytics ID: contohnya. UA-89XXX57-1. Sila mencari bantuan dalam Google Analytics untuk maklumat lanjut. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Kata laluan tidak boleh lebih daripada 100 aksara DocType: OAuth Client,App Client ID,ID App Pelanggan @@ -2596,6 +2691,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Kata Laluan B apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} berkongsi dokumen ini dengan {1} DocType: Website Settings,Brand Image,Imej jenama DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Templat import harus mengandungi Header dan atleast satu baris. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalendar Google telah dikonfigurasikan. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Persediaan bar navigasi atas, footer dan logo." DocType: Web Form Field,Max Value,Max Nilai @@ -2605,6 +2701,7 @@ DocType: User Social Login,User Social Login,Masuk Sosial Pengguna apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} mengkritik kerja anda pada {1} dengan {2} titik DocType: Contact,All,Semua DocType: Email Queue,Recipient,Penerima +DocType: Webhook,Webhook Security,Keselamatan Webhook DocType: Communication,Has Attachment,mempunyai Lampiran DocType: Address,Sales User,Jualan Pengguna apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag dan Drop alat untuk membina dan menyesuaikan Format Cetak. @@ -2671,7 +2768,6 @@ DocType: Data Migration Mapping,Migration ID Field,Medan ID Migrasi DocType: Dashboard Chart,Last Synced On,Terkini Terkini DocType: Comment,Comment Type,Komen Jenis DocType: OAuth Client,OAuth Client,OAuth Pelanggan -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} mengkritik kerja anda pada {1} {2} DocType: Assignment Rule,Users,Pengguna DocType: Address,Odisha,Odisha DocType: Report,Report Type,Jenis Laporan @@ -2697,14 +2793,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Laman Web Slideshow Perka apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Kelulusan diri tidak dibenarkan DocType: GSuite Templates,Template ID,ID template apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Gabungan Jenis Pemberian ( <code>{0}</code> ) dan Jenis Tindak Balas ( <code>{1}</code> ) tidak dibenarkan -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Mesej Baru dari {0} DocType: Portal Settings,Default Role at Time of Signup,Peranan Lalai di Masa Daftar DocType: DocType,Title Case,Tajuk Kes apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klik pada pautan di bawah untuk memuat turun data anda apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Peti masuk e-mel yang diaktifkan untuk pengguna {0} DocType: Data Migration Run,Data Migration Run,Jalankan Migrasi Data DocType: Blog Post,Email Sent,E-mel dihantar -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Lebih lama DocType: DocField,Ignore XSS Filter,Abaikan XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,dikeluarkan apps/frappe/frappe/config/integrations.py,Dropbox backup settings,tetapan Dropbox sandaran @@ -2759,6 +2853,7 @@ DocType: Async Task,Queued,Beratur DocType: Braintree Settings,Use Sandbox,Penggunaan Sandbox apps/frappe/frappe/utils/goal.py,This month,Bulan ini apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Format Custom Cetak +DocType: Server Script,Before Save (Submitted Document),Sebelum Simpan (Dokumen Dihantar) DocType: Custom DocPerm,Create,Buat apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Tiada lagi item yang dipaparkan apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Pergi ke rekod sebelumnya @@ -2816,6 +2911,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Pindah ke tong sampah DocType: Web Form,Web Form Fields,Borang Web Fields DocType: Data Import,Amended From,Pindaan Dari +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Tambahkan pautan video bantuan sekiranya pengguna tidak tahu mengenai apa yang harus diisi dalam slaid. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Amaran: Tidak dapat mencari {0} dalam mana-mana jadual yang berkaitan dengan {1} DocType: S3 Backup Settings,eu-north-1,eu-utara-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Dokumen ini kini pesanan yang akan dilaksanakan. Sila cuba lagi @@ -2838,6 +2934,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Eksport Dari apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Carian Terperinci apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Anda tidak dibenarkan melihat surat berita itu. +DocType: Dashboard Chart,Group By,Group By DocType: User,Interests,minat apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Arahan set semula kata laluan telah dihantar ke e-mel anda DocType: Energy Point Rule,Allot Points To Assigned Users,Allot Points To Users Ditetapkan @@ -2853,6 +2950,7 @@ DocType: Assignment Rule,Assignment Rule,Peraturan Penyerahan apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Nama pengguna yang dicadangkan: {0} DocType: Assignment Rule Day,Day,hari apps/frappe/frappe/public/js/frappe/desk.js,Modules,modul +DocType: DocField,Mandatory Depends On,Mandatori Bergantung apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Kejayaan pembayaran apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Tiada {0} mel DocType: OAuth Bearer Token,Revoked,dibatalkan @@ -2860,6 +2958,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar dan Komen apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Tidak dibenarkan melampirkan {0} dokumen, sila aktifkan Sediakan Cetak Untuk {0} dalam Tetapan Cetak" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaun E-mel bukan persediaan. Sila buat Akaun E-mel baru dari Persediaan> E-mel> Akaun E-mel apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Lihat dokumen di {0} DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan @@ -2875,13 +2974,13 @@ DocType: Currency,Fraction,Pecahan apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Acara Disegerakkan dengan Kalendar Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Pertama Nama Field DocType: Contact,Middle Name,Nama tengah +DocType: DocField,Property Depends On,Harta Tergantung DocType: Custom Field,Field Description,Bidang Penerangan apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nama tidak ditetapkan melalui Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mel Peti Masuk apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Mengemas kini {0} daripada {1}, {2}" DocType: Auto Email Report,Filters Display,Penapis Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","amended_from" mesti hadir untuk melakukan pindaan. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} menghargai kerja anda di {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Simpan penapis DocType: Address,Plant,Loji apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Membalas semua @@ -2922,11 +3021,11 @@ DocType: Workflow State,folder-close,folder yang terletak berhampiran apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Laporan: DocType: Print Settings,Print taxes with zero amount,Cetak cukai dengan jumlah sifar apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} tidak boleh dinamakan semula +DocType: Server Script,Before Insert,Sebelum Masukkan DocType: Custom Script,Custom Script,Skrip Custom DocType: Address,Address Line 2,Alamat 2 DocType: Address,Reference,Rujukan apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Ditugaskan Untuk -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Sila persiapkan Akaun E-mel lalai dari Persediaan> E-mel> Akaun E-mel DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detil Pemetaan Migrasi Data DocType: Data Import,Action,Tindakan DocType: GSuite Settings,Script URL,URL skrip @@ -2952,11 +3051,13 @@ DocType: User,Api Access,Akses Api DocType: DocField,In List View,Dalam Senarai Lihat DocType: Email Account,Use TLS,Penggunaan TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Log masuk atau kata laluan tidak sah +DocType: Scheduled Job Type,Weekly Long,Mingguan Long apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Muat turun Template apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Tambah adat javascript untuk bentuk. ,Role Permissions Manager,Kebenaran Peranan Pengurus apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nama Format Cetak baru apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Togol Sidebar +DocType: Server Script,After Save (Submitted Document),Selepas Simpan (Dokumen Dihantar) DocType: Data Migration Run,Pull Insert,Tarik Masukkan DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Mata maksimum dibenarkan selepas mendarabkan mata dengan nilai penggandaan (Nota: Untuk tiada had meninggalkan medan ini kosong atau tetapkan 0) @@ -2976,6 +3077,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Tidak Dipasang apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Muat turun dengan data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},menukar nilai untuk {0} {1} +DocType: Server Script,Before Cancel,Sebelum Batal DocType: Workflow State,hand-right,tangan kanan DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Wilayah @@ -3022,12 +3124,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Kata Laluan Lama DocType: S3 Backup Settings,us-east-1,kami-timur-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Mesej oleh {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Untuk ruangan format, memberikan label lajur dalam cari." +DocType: Onboarding Slide,Slide Fields,Slide Fields DocType: Has Domain,Has Domain,mempunyai Domain DocType: User,Allowed In Mentions,Dibenarkan dalam Mentions apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Tiada akaun? Daftar apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Tidak dapat mengalih keluar medan ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Tidak boleh menetapkan Berikan Meminda jika tidak Boleh Serah DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Dokumen yang Dilanggan apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Tetapan Pengguna DocType: Report,Reference Report,Laporan Rujukan DocType: Activity Log,Link DocType,link DOCTYPE @@ -3045,6 +3149,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Mengotorkan Akses Kale apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,halaman yang anda cari adalah hilang. Ini mungkin kerana ia dipindahkan atau terdapat kesilapan menaip dalam pautan. apps/frappe/frappe/www/404.html,Error Code: {0},Kod Ralat: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Keterangan untuk laman yang menyenaraikan, dalam teks biasa, hanya beberapa baris. (Maks 140 huruf)" +DocType: Server Script,DocType Event,Acara DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} adalah medan mandatori DocType: Workflow,Allow Self Approval,Benarkan Kelulusan Diri DocType: Event,Event Category,Kategori Acara @@ -3061,6 +3166,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nama awak apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Kejayaan Sambungan DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slaid Slide of Type Slide Teruskan sudah wujud. DocType: DocType,Default Sort Field,Bidang Isih Semula Default DocType: File,Is Folder,Adakah Folder DocType: Document Follow,DocType,DOCTYPE @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,nilai B DocType: Workflow State,arrow-up,arrow-up DocType: Dynamic Link,Link Document Type,Pautan Jenis Dokumen apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Harus ada atleast satu baris untuk {0} jadual +DocType: Server Script,Server Script,Skrip pelayan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Untuk mengkonfigurasi Ulangan Auto, dayakan "Benarkan Ulang Auto" dari {0}." DocType: OAuth Bearer Token,Expires In,tamat pada +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Jumlah kali anda ingin mengulangi medan medan (misalnya: jika anda ingin 3 pelanggan dalam slaid, tetapkan medan ini kepada 3. Hanya medan pertama medan ditunjukkan sebagai wajib dalam slaid)" DocType: DocField,Allow on Submit,Benarkan di Hantar DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Pengecualian Jenis @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Tajuk apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Acara akan datang apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Sila masukkan nilai untuk App Access Key dan App Rahsia Utama +DocType: Email Account,Append Emails to Sent Folder,Tambah E-mel ke Folder Terkirim DocType: Web Form,Accept Payment,terima Pembayaran apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Pilih item senarai apps/frappe/frappe/config/core.py,A log of request errors,A log kesilapan permintaan @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,Sumbangan apps/frappe/frappe/config/customization.py,Form Customization,Borang Penyesuaian apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Tiada Sesi Aktif DocType: Web Form,Route to Success Link,Laluan untuk Pautan Kejayaan -DocType: Top Bar Item,Right,Hak +DocType: Onboarding Slide Field,Right,Hak apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Tiada Acara Akan Datang DocType: User,User Type,Jenis pengguna DocType: Prepared Report,Ref Report DocType,Laporkan Laporan DocType @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Sila cuba lagi apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL mesti bermula dengan 'http: //' atau 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Pilihan 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Perkara ini tidak boleh diubah DocType: Workflow State,Edit,Edit DocType: Website Settings,Chat Operators,Pengendali Sembang DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Lalai untuk {0} mesti menjadi pilihan -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Laporkan dengan lebih daripada 10 lajur kelihatan lebih baik dalam mod Landskap. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nama medan tidak sah: {0} DocType: Milestone,Milestone,Kejayaan @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Pergi ke {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-mel adalah disenyapkan apps/frappe/frappe/config/integrations.py,Google Services,Perkhidmatan Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 minggu yang lalu +DocType: Onboarding Slide,Slide Description,Keterangan Slide DocType: Communication,Error,Ralat apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Sila tetapkan mesej terlebih dahulu DocType: Auto Repeat,End Date,Tarikh akhir @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,Kumpulan Label DocType: Kanban Board,Kanban Board,Lembaga Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kenalan Google telah dikonfigurasikan. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekod akan dieksport +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tiada akaun e-mel yang berkaitan dengan Pengguna. Sila tambahkan akaun di bawah Pengguna> Peti Masuk E-mel. DocType: DocField,Report Hide,Laporan Sembunyikan apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},pandangan Tree tidak tersedia untuk {0} DocType: DocType,Restrict To Domain,Menyekat Untuk Domain DocType: Domain,Domain,Domain +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL fail tidak sah. Sila hubungi Pentadbir Sistem. DocType: Custom Field,Label Help,Label Bantuan DocType: Workflow State,star-empty,bintang-kosong apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Tarikh sering mudah untuk diteka. @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left,tangan kiri DocType: Data Import,If you are updating/overwriting already created records.,Sekiranya anda mengemaskini / menulis semula rekod telah dibuat. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Adakah Global DocType: Email Account,Use SSL,Penggunaan SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,bermain-bulatan apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumen tersebut tidak dapat diberikan dengan betul apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ungkapan "dependent" tidak sah @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Terakhir disegarkan apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Untuk Jenis Dokumen DocType: Workflow State,arrow-right,arrow kanan +DocType: Server Script,API Method,Kaedah API DocType: Workflow State,Workflow state represents the current state of a document.,Keadaan aliran kerja mewakili keadaan semasa dokumen. DocType: Letter Head,Letter Head Based On,Ketua Surat Berasaskan Pada apps/frappe/frappe/utils/oauth.py,Token is missing,Token yang hilang @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,dihubungkan semula DocType: Print Settings,Compact Item Print,Compact Perkara Cetak DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,redirect URL +DocType: Onboarding Slide Field,Placeholder,Placeholder DocType: SMS Settings,Enter url parameter for receiver nos,Masukkan parameter url untuk penerima nos DocType: Chat Profile,Online,talian DocType: Email Account,Always use Account's Name as Sender's Name,Sentiasa gunakan Nama Akaun sebagai Nama Penghantar @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,Laman Utama DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Pengguna boleh log masuk menggunakan id E-mel atau Nama Pengguna DocType: Workflow State,question-sign,soalan-tanda -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} dilumpuhkan apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Laluan "laluan" adalah wajib untuk Paparan Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Masukkan Ruang Sebelum {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Pengguna dari medan ini akan diberi ganjaran @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jika Pemilik DocType: Data Migration Mapping,Push,Tolak apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Drop fail di sini DocType: OAuth Authorization Code,Expiration time,masa tamat +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Buka Dokumen DocType: Web Page,Website Sidebar,laman web Sidebar DocType: Web Form,Show Sidebar,Show Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Anda perlu log masuk untuk mengakses ini {0}. @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pintasan Glo DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Tidak dapat mencari {0} dalam {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nama dan nama keluarga sendiri adalah mudah untuk meneka. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokumen dinamakan semula dari {0} hingga {1} apps/frappe/frappe/config/website.py,Knowledge Base,Asas pengetahuan DocType: Workflow State,briefcase,beg bimbit apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Nilai tidak boleh diubah untuk {0} @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format cetak apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle View Grid apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pergi ke rekod seterusnya +DocType: System Settings,Time Format,Format masa apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,kelayakan gerbang pembayaran tidak sah DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ini adalah fail templat yang dijana dengan hanya baris yang mempunyai ralat. Anda harus menggunakan fail ini untuk pembetulan dan import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Kebenaran Set Pada Dokumen Jenis dan Peranan @@ -3397,12 +3513,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Balas apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Laman-laman dalam Meja (pemegang tempat) DocType: DocField,Collapsible Depends On,Lipat Bergantung Pada DocType: Print Style,Print Style Name,Nama Gaya Cetak +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Kumpulan Oleh medan diperlukan untuk membuat carta papan pemuka DocType: Print Settings,Allow page break inside tables,Benarkan pemisah halaman dalam jadual DocType: Email Account,SMTP Server,Pelayan SMTP DocType: Print Format,Print Format Help,Format Cetak Bantuan apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Bilik {0} mestilah mempunyai sekurang-kurangnya satu pengguna. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Kira +DocType: Dashboard Chart,Group By Type,Kumpulan Mengikut Jenis apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Komen Baru pada {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},dipulihkan {0} seperti {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Jika anda sedang mengemas kini, sila pilih "Tindih" baris lain yang sedia ada tidak akan dipadam." @@ -3413,8 +3531,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profil pe DocType: Web Form,Web Form,Borang Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Tarikh {0} mesti dalam bentuk: {1} DocType: About Us Settings,Org History Heading,Org Sejarah Tajuk +DocType: Scheduled Job Type,Scheduled Job Type,Jenis Kerja Berjadual DocType: Print Settings,Allow Print for Cancelled,Benarkan Cetak untuk Dibatalkan DocType: Communication,Integrations can use this field to set email delivery status,Integrasi boleh menggunakan medan ini untuk menetapkan status penghantaran e-mel +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Anda tidak mempunyai keizinan untuk membatalkan semua dokumen yang dipautkan. DocType: Web Form,Web Page Link Text,Web Page Link teks DocType: Page,System Page,Page sistem DocType: Page,System Page,Page sistem @@ -3422,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Pengubahsuaian untuk <b>{0}</b> dieksport ke: <br> {1} DocType: Website Settings,Include Search in Top Bar,Termasuk carian dalam Top Bar +DocType: Scheduled Job Type,Daily Long,Harian Panjang DocType: GSuite Settings,Allow GSuite access,Membenarkan akses GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Menamakan @@ -3514,6 +3635,7 @@ DocType: Notification,Send days before or after the reference date,Hantar hari s DocType: User,Allow user to login only after this hour (0-24),Membenarkan pengguna untuk log masuk hanya selepas jam ini (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Berikan satu persatu, dalam urutan" DocType: Integration Request,Subscription Notification,Pemberitahuan Langganan +DocType: Customize Form Field, Allow in Quick Entry ,Benarkan Entri Pantas apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,atau lampirkan a DocType: Auto Repeat,Start Date,Tarikh Mula apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Nilai @@ -3528,6 +3650,7 @@ DocType: Google Drive,Backup Folder ID,ID Folder Sandaran apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Tidak dalam Mod Pemaju! Terletak di site_config.json atau membuat DOCTYPE 'Custom'. DocType: Workflow State,globe,dunia DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Keutamaan DocType: Email Queue,Unsubscribe Param,unsubscribe Param DocType: DocType,Hide Sidebar and Menu,Sembunyikan Sidebar dan Menu @@ -3539,6 +3662,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Benarkan Import (melalui To apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Tetapan Halaman +DocType: Notification Settings,Notification Settings,Tetapan Pemberitahuan apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Menyimpan ... apps/frappe/frappe/www/update-password.html,Invalid Password,kata laluan tidak sah apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Berjaya mengimport {0} rekod daripada {1}. @@ -3554,6 +3678,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Imej Kepala Surat DocType: Address,Party GSTIN,Parti GSTIN +DocType: Scheduled Job Type,Cron Format,Format Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Laporan DocType: SMS Settings,Use POST,Gunakan POST DocType: Communication,SMS,SMS @@ -3599,18 +3724,20 @@ DocType: Workflow,Allow approval for creator of the document,Benarkan kelulusan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Simpan Laporan DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Tindakan Pelayan apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Pentadbir diakses {0} pada {1} melalui IP Alamat {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Bidang Induk mestilah nama lapangan yang sah apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Gagal semasa meminda langganan DocType: LDAP Settings,LDAP Group Field,LDAP Group Field +DocType: Notification Subscribed Document,Notification Subscribed Document,Dokumen yang Dilanggan Pemberitahuan apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Sama apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Format CSV tidak sah -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Kesalahan menyambung ke Aplikasi QZ Tray ... <br><br> Anda perlu memasang dan menjalankan aplikasi QZ Tray, untuk menggunakan ciri Cetak Raw. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klik di sini untuk Muat turun dan pasang QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klik di sini untuk mengetahui lebih lanjut mengenai Percetakan Raw</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Set Bilangan Sandaran DocType: DocField,Do not allow user to change after set the first time,Tidak membenarkan pengguna untuk berubah selepas menetapkan masa pertama apps/frappe/frappe/utils/data.py,1 year ago,1 tahun yang lalu +DocType: DocType,Links Section,Seksyen Pautan apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Lihat Log semua acara cetakan, muat turun dan eksport" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 bulan DocType: Contact,Contact,Hubungi @@ -3637,16 +3764,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,E-mel baru DocType: Custom DocPerm,Export,Eksport apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Untuk menggunakan Kalendar Google, dayakan {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Juga menambah medan pergantungan status {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Berjaya diperbaharui {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Dulang Gagal: DocType: Dropbox Settings,Dropbox Settings,Tetapan Dropbox DocType: About Us Settings,More content for the bottom of the page.,Lebih banyak kandungan untuk bahagian bawah halaman. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Dokumen ini telah dibalikkan apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Backup Google Drive Berjaya. +DocType: Webhook,Naming Series,Menamakan Siri DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE yang Workflow ini terpakai. DocType: User,Enabled,Membolehkan apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Gagal menyelesaikan persediaan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},New {0}: {1} -DocType: Tag Category,Category Name,Kategori Nama +DocType: Blog Category,Category Name,Kategori Nama apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Ibu bapa dikehendaki untuk mendapatkan data meja kanak-kanak apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Pelanggan Import DocType: Print Settings,PDF Settings,Tetapan PDF @@ -3682,6 +3812,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendar apps/frappe/frappe/client.py,No document found for given filters,Tiada dokumen yang dijumpai untuk penapis diberikan apps/frappe/frappe/config/website.py,A user who posts blogs.,Seorang pengguna yang menyiarkan blog. +DocType: DocType Action,DocType Action,Tindakan DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Satu lagi {0} dengan nama {1} wujud, pilih nama lain" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Laman Web Tema Image @@ -3691,6 +3822,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Tidak dap apps/frappe/frappe/config/integrations.py,Backup,sandaran apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Jenis dokumen diperlukan untuk membuat carta papan pemuka DocType: DocField,Read Only,Baca Sahaja +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Tidak dapat membuat pesanan razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New Newsletter DocType: Energy Point Log,Energy Point Log,Log Keluar Log Tenaga DocType: Print Settings,Send Print as PDF,Hantar Cetak PDF @@ -3716,16 +3848,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Sah apps/frappe/frappe/www/login.html,Or login with,Atau log masuk dengan DocType: Error Snapshot,Locals,Penduduk tempatan apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Disampaikan melalui {0} pada {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} menyebut anda dalam komen dalam {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Pilih Kumpulan Oleh ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,contohnya (55 + 434) / 4 = atau Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} diperlukan DocType: Integration Request,Integration Type,Jenis integrasi DocType: Newsletter,Send Attachements,menghantar attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Tiada penapis yang ditemui apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrasi Kenalan Google. DocType: Transaction Log,Transaction Log,Log Urus niaga apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistik berdasarkan prestasi bulan lepas (dari {0} hingga {1}) DocType: Contact Us Settings,City,City +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Sembunyikan kad untuk semua pengguna apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Dayakan Benarkan Ulang Auto untuk doctype {0} dalam Sesuaikan Borang DocType: DocField,Perm Level,Tahap Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Lihat dokumen @@ -3737,6 +3870,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},'In Search Global' tidak dibenarkan untuk jenis {0} berturut-turut {1} DocType: Energy Point Log,Appreciation,Penghargaan +DocType: Dashboard Chart,Number of Groups,Bilangan Kumpulan apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Senarai View DocType: Workflow,Don't Override Status,Jangan Override Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,istilah carian @@ -3778,7 +3912,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-northwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Had Nombor DB Backups DocType: Custom DocPerm,Level,Tahap -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 hari lepas DocType: Custom DocPerm,Report,Laporan apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Jumlah mesti lebih besar daripada 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Terhubung dengan QZ Tray! @@ -3795,6 +3928,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Pilih Jadual Kanak-kanak apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Main Tindakan Utama apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Perubahan +DocType: Social Login Key,User ID Property,ID Produk Pengguna DocType: Email Domain,domain name,nama domain DocType: Contact Email,Contact Email,Hubungi E-mel DocType: Kanban Board Column,Order,Order @@ -3817,7 +3951,7 @@ DocType: Contact,Last Name,Nama Akhir DocType: Event,Private,Persendirian apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Kiri DocType: Event,All Day,All Day apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Kelihatan seperti sesuatu yang tidak kena dengan konfigurasi gerbang pembayaran tapak ini. Tiada pembayaran telah dibuat. DocType: GCalendar Settings,State,Negeri @@ -3849,7 +3983,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Tetapan Gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teks dalam jenis dokumen -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Ujian dijalankan apps/frappe/frappe/handler.py,Logged Out,Logged Out apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,More ... DocType: System Settings,User can login using Email id or Mobile number,Pengguna boleh login menggunakan id E-mel atau nombor Mobile @@ -3866,6 +3999,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Ringkasan DocType: Event,Event Participants,Peserta Acara DocType: Auto Repeat,Frequency,kekerapan +DocType: Onboarding Slide,Slide Order,Perintah Slaid DocType: Custom Field,Insert After,Masukkan Selepas DocType: Event,Sync with Google Calendar,Segerakkan dengan Kalendar Google DocType: Access Log,Report Name,Nama Laporan @@ -3893,6 +4027,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Lebar Max untuk jenis mata wang adalah 100px berturut-turut {0} apps/frappe/frappe/config/website.py,Content web page.,Laman web kandungan. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Tambah Peranan Baru +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Lawati Halaman Web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Tugasan Baru DocType: Google Contacts,Last Sync On,Penyegerakan Terakhir DocType: Deleted Document,Deleted Document,Dokumen dipadam apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Sesuatu telah berlaku @@ -3903,7 +4039,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Sambungan skrip sebelah pelanggan dalam Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Rekod untuk dokumentasi berikut akan ditapis -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Penjadual tidak aktif +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Penjadual tidak aktif DocType: Blog Settings,Blog Introduction,Blog Pengenalan DocType: Global Search Settings,Search Priorities,Cari Keutamaan DocType: Address,Office,Pejabat @@ -3913,13 +4049,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Carta Dashboard Link DocType: User,Email Settings,Tetapan e-mel apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Drop Di sini DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Jika diaktifkan, pengguna boleh log masuk dari mana-mana Alamat IP menggunakan Two Factor Auth, ini juga boleh ditetapkan untuk semua pengguna dalam Tetapan Sistem" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Tetapan Pencetak ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Sila masukkan kata laluan anda untuk Teruskan apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Sila masukkan kata laluan anda untuk Teruskan apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Saya apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} bukan Negeri yang sah apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Memohon kepada semua Jenis Dokumen -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Kemas kini titik tenaga +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Kemas kini titik tenaga +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Jalankan Pekerjaan sahaja Harian jika Tidak Aktif (Hari) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Jenis bilik DocType: Data Import Beta,Import Log Preview,Import Preview Log @@ -3928,6 +4064,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok bulatan DocType: LDAP Settings,LDAP User Creation and Mapping,Penciptaan dan Pemetaan Pengguna LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Anda boleh mencari sesuatu dengan bertanya 'mencari jingga pelanggan +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Acara Hari Ini apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Maaf! Pengguna perlu mempunyai akses yang lengkap untuk rekod mereka sendiri. ,Usage Info,Maklumat penggunaan apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Tunjukkan Pintasan Papan Kekunci @@ -3944,6 +4081,7 @@ DocType: DocField,Unique,Unik apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} dihargai pada {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Kejayaan Separi DocType: Email Account,Service,Perkhidmatan +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna DocType: File,File Name,Nama Fail apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Tidak jumpa {0} untuk {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3957,6 +4095,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Pendafta DocType: GCalendar Settings,Enable,membolehkan DocType: Google Maps Settings,Home Address,Alamat rumah apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Anda hanya boleh memuat naik hamper 5000 rekod dalam satu pergi. (Mungkin kurang dalam beberapa kes) +DocType: Report,"output in the form of `data = [columns, result]`","output dalam bentuk `data = [lajur, hasil]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Jenis Dokumen yang Berkenaan apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Sediakan aturan untuk tugasan pengguna. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Kebenaran tidak mencukupi untuk {0} @@ -3974,7 +4113,6 @@ DocType: Communication,To and CC,Kepada dan CC DocType: SMS Settings,Static Parameters,Parameter statik DocType: Chat Message,Room,bilik apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},dikemaskini untuk {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Pekerjaan latar belakang tidak berjalan. Sila hubungi Pentadbir DocType: Portal Settings,Custom Menu Items,Item Custom Menu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Semua Imej yang dilampirkan dalam Tayangan Slaid Website mestilah terbuka DocType: Workflow State,chevron-right,chevron kanan @@ -3989,11 +4127,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Nilai {0} dipilih DocType: DocType,Allow Auto Repeat,Benarkan Ulang Auto apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Tiada nilai untuk dipaparkan +DocType: DocType,URL for documentation or help,URL untuk dokumentasi atau bantuan DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Templat E-mel apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Berjaya memperbaharui {0} rekod. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Pengguna {0} tidak mempunyai akses dokument melalui kebenaran peranan untuk dokumen {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Kedua-dua login dan kata laluan diperlukan +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Biarkan \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Sila muat semula untuk mendapatkan dokumen terkini. DocType: User,Security Settings,Tetapan keselamatan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Tambah Column @@ -4003,6 +4143,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,menapis Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Sila temui dilampirkan {0}: {1} DocType: Web Page,Set Meta Tags,Tetapkan Tag Meta +DocType: Email Account,Use SSL for Outgoing,Gunakan SSL untuk Keluar 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: S3 Backup Settings,Backup Limit,Had Backup DocType: Dashboard Chart,Line,Talian @@ -4035,4 +4176,3 @@ DocType: DocField,Ignore User Permissions,Abaikan Kebenaran pengguna apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Berjaya disimpan apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Sila minta pentadbir anda untuk mengesahkan pendaftaran anda DocType: Domain Settings,Active Domains,Domain Active -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Paparkan Log diff --git a/frappe/translations/my.csv b/frappe/translations/my.csv index 379bc44795..88918f160a 100644 --- a/frappe/translations/my.csv +++ b/frappe/translations/my.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,တစ်ဦးငွေပမာဏကွင်းဆင်းရွေးချယ်ပါ။ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,loading တင်သွင်းဖိုင်ကို ... DocType: Assignment Rule,Last User,နောက်ဆုံးအသုံးပြုသူ -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","အသစ်အလုပ်တစ်ခုကို, {0}, {1} အားဖြင့်သင်တို့မှတာဝန်ပေးခဲ့တာဖြစ်ပါတယ်။ {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,session Defaults ကိုကယျတငျ apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ဖိုင်မှတ်တမ်းကိုပြန်တင်ရန် DocType: Email Queue,Email Queue records.,အီးမေးလ်တန်းစီမှတ်တမ်းများ။ @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,အသုံးပြုသူအီးမေးလ်များ DocType: User,Username,username apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,သွင်းကုန်ဇစ် +DocType: Scheduled Job Type,Create Log,Log ဖန်တီးပါ apps/frappe/frappe/model/base_document.py,Value too big,သိပ်ကြီးမားတဲ့ Value တစ်ခု DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run ကို Script စမ်းသပ်ခြင်း @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,လစဉ် DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Incoming Enable apps/frappe/frappe/core/doctype/version/version_view.html,Danger,အန္တရာယ် -DocType: Address,Email Address,အီးမေးလ်လိပ်စာ +apps/frappe/frappe/www/login.py,Email Address,အီးမေးလ်လိပ်စာ DocType: Workflow State,th-large,ကြိမ်မြောက်-ကြီးများ DocType: Communication,Unread Notification Sent,ဖတ်ဖြစ်သောအသိပေးခြင်း Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ပို့ကုန်ခွင့်မပြု။ သင်တို့ကိုတင်ပို့ဖို့ {0} အခန်းကဏ္ဍထားဖို့လိုပါမယ်။ @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,ဖျော်ဖြေမှု Published ဖြစ်ပါတယ် DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings များ DocType: Email Group,Email Group,အီးမေးလ်အုပ်စု +apps/frappe/frappe/__init__.py,Only for {},{} အတွက်သာ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google ကပြက္ခဒိန် - Google ကပြက္ခဒိန်, အမှားကုဒ် {1} ကနေပွဲ {0} ကိုဖျက်ပစ်လို့မရပါ။" DocType: Event,Pulled from Google Calendar,Google ကပြက္ခဒိန်ထဲကနေဆွဲထုတ် DocType: Note,Seen By,အားဖြင့်မြင်ကြ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,အကွိမျမြားစှာ Add -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,သငျသညျအခြို့သောစွမ်းအင်ကိုမှတ်ရရှိခဲ့ apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,မခိုင်လုံသောအသုံးပြုသူပုံရိပ်။ DocType: Energy Point Log,Reverted,မူလ DocType: Success Action,First Success Message,ပထမဦးစွာအောင်မြင်မှုကို Message @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,မကြိ apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},မမှန်ကန်တန်ဖိုးကို: {0} {1} {2} ဖြစ်ရမည် apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ပြောင်းလဲမှုကိုလယ်ဂုဏ်သတ္တိများ (ဝှက်, Readonly, ခွင့်ပြုချက်ဖြင့်)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,လေးမွတျ +DocType: Notification Settings,Document Share,မှတ်တမ်းမျှဝေပါ DocType: Workflow State,lock,သော့ခတ် apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Contact Us စာမျက်နှာဖြစ်သည် Settings ကို။ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,အုပ်ချုပ်ရေးမှူး Logged ခုနှစ်တွင် @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","enabled လျှင်, စာရွက်စာတမ်းကိုတှေ့မွငျအဖြစ်မှတ်သားသည်ပထမဦးဆုံးအကြိမ်အသုံးပြုသူတစ်ဦးကဖွင့်လှစ်" DocType: Auto Repeat,Repeat on Day,နေ့တွင် Repeat DocType: DocField,Color,အရောင် +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,အားလုံးကို Read အဖြစ်မှတ်သားပါ DocType: Data Migration Run,Log,တုံး DocType: Workflow State,indent-right,ကုန်အမှာစာညာ DocType: Has Role,Has Role,အခန်းက္ပရှိပါတယ် @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Show ကို Traceback DocType: DocType,Default Print Format,default ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ DocType: Workflow State,Tags,Tags: +DocType: Onboarding Slide,Slide Type,လျှောအမျိုးအစား apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,အဘယ်သူမျှမ: အသွားအလာ၏အဆုံး apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",Non-မူထူးခြားတဲ့လက်ရှိတန်ဖိုးများရှိပါတယ်အဖြစ် {0} လယ် {1} အတွက်မူထူးခြားတဲ့အဖြစ်သတ်မှတ်မရနိုငျ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,စာရွက်စာတမ်းအမျိုးအစားများ @@ -136,7 +139,6 @@ DocType: Language,Guest,ဧည့်သည် DocType: DocType,Title Field,ခေါင်းစဉ်ဖျော်ဖြေမှု DocType: Error Log,Error Log,အမှားပါ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,မှားနေသော URL ကို -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,နောက်ဆုံး 7 ရက် apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","abcabcabc" သာအနည်းငယ် "abc" ထက်ခန့်မှန်းရန်ခက်ခဲနေကြသည်နှင့်တူပြန်လုပ်ပါ DocType: Notification,Channel,channel apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","သင်သည်ဤခွင့်ပြုချက်မရှိဘဲဖြစ်ပါတယ်ထင်ပါတယ်လျှင်, အုပ်ချုပ်ရေးမှူးစကားဝှက်ကိုပြောင်းလဲရန်ကျေးဇူးတင်ပါ။" @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,ဖောက်သည် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,ကော်လံကို Select လုပ်ပါ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ဤပုံစံကိုသင်တင်ဆောင်ခဲ့ကြပြီးနောက်နောက်ဆုံးပြင်ဆင်ခဲ့သည်သိရသည် DocType: Address,Himachal Pradesh,Himachal Pradesh ပြည်နယ် +DocType: Notification Log,Notification Log,အသိပေးချက်မှတ်တမ်း DocType: System Settings,"If not set, the currency precision will depend on number format","သတ်မှတ်မထားလျှင်, ငွေကြေးတိကျစွာအရေအတွက်ကိုပုံစံပေါ်တွင်မူတည်ပါလိမ့်မယ်" DocType: System Settings,"If not set, the currency precision will depend on number format","သတ်မှတ်မထားလျှင်, ငွေကြေးတိကျစွာအရေအတွက်ကိုပုံစံပေါ်တွင်မူတည်ပါလိမ့်မယ်" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ပွင့်လင်း Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ပေးပို့ DocType: Workflow Action Master,Workflow Action Name,အသွားအလာလှုပ်ရှားမှုအမည် apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ပေါင်းစည်းမရနိုင်ပါ -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,မဇစ်ဖိုင် DocType: Global Search DocType,Global Search DocType,ကမ္ဘာလုံးဆိုင်ရာရှာရန် DOCTYPE DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,အီးမေးလ် Sent? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ခလုတ်ဇယား apps/frappe/frappe/desk/form/save.py,Did not cancel,ဖျက်သိမ်းဘဲ DocType: Social Login Key,Client Information,client သတင်းအချက်အလက် +DocType: Energy Point Rule,Apply this rule only once per document,ဤစည်းမျဉ်းကိုစာရွက်စာတမ်းတစ်ခုလျှင်တစ်ကြိမ်သာကျင့်သုံးပါ DocType: Workflow State,plus,အပေါင်း +DocType: DocField,Read Only Depends On,ဖတ်ရန်ပေါ်မူတည်သည် apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,ဧည့်သည်သို့မဟုတ်အုပ်ချုပ်ရေးမှူးအဖြစ် Logged DocType: Email Account,UNSEEN,မမွငျရသော apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ဖိုင်မန်နေဂျာ @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,အကွောငျးရငျး 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,လှုပ်ရှားမှုမရှိပါ +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,လှုပ်ရှားမှုမရှိပါ apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,တတိယပါတီ Apps ကပ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ပထမဦးဆုံးအသုံးပြုသူဟာ System Manager က (သင်နောက်ပိုင်းမှာဒီပြောင်းလဲနိုင်သည်) ဖြစ်လာပါလိမ့်မယ်။ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ယနေ့အဖြစ်အပျက်များမရှိပါ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,သင်ကိုယ်တိုင်မှပြန်လည်သုံးသပ်အချက်များကိုမပေးနိုငျပါ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DOCTYPE ရွေးချယ်ထား Doc Event များအတွက်တင်ပြသူဖြစ်ရပါမည် DocType: Workflow State,circle-arrow-up,စက်ဝိုင်း-မြှား-up က @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} အဘို့အခွင့်မပြုထား: {1} ။ ကန့်သတ်သောလယ်: {2} 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,You are not allowed to delete a standard Website Theme,သင်ကစံဝက်ဘ်ဆိုက် Theme ကိုပယ်ဖျက်ဖို့ခွင့်ပြုမထား +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},သင်၏ပထမဆုံး {0} ကိုဖန်တီးပါ။ DocType: Data Import,Log Details,log အသေးစိတ် DocType: Workflow Transition,Example,နမူနာ DocType: Webhook Header,Webhook Header,Webhook Header ကို @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,chat နောက်ခံသမိုင်း apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,ဖတ်အဖြစ်မာ့ခ် apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},အသစ်ပြောင်းခြင်း {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,တူညီသောဆလိုက်အမိန့်နှင့်အတူ Onboarding ဆလိုက် <b>{0}</b> ရှိပြီးသား apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable လုပ်ထားအစီရင်ခံစာ DocType: Translation,Contributed Translation Doctype Name,ဘာသာပြန်ခြင်း DOCTYPE အမည်လှူဒါန်းခဲ့ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Customize Form ကို DocType: PayPal Settings,Redirect To,ရန် redirect DocType: Data Migration Mapping,Pull,ဆွဲပါ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript ကိုစီစဉ်ဖွဲ့စည်းမှုပုံစံ: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,စာရွက်စာတ DocType: Energy Point Settings,Review Levels,ဆန်းစစ်ခြင်း Levels DocType: Workflow State,Comment,မှတ်ချက် DocType: Data Migration Plan,Postprocess Method,Postprocess Method ကို +DocType: DocType Action,Action Type,လှုပ်ရှားမှုအမျိုးအစား apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ဓာတ်ပုံကိုယူ DocType: Assignment Rule,Round Robin,round ရော်ဘင် apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","သင်သည်သူတို့ပြင်ဆင်ရေး, ပြီးတော့သူတို့ကိုဖျက်ဖို့က Submitted စာရွက်စာတမ်းများကိုပြောင်းလဲနိုင်ပါတယ်။" @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save အမျှ DocType: Comment,Seen,မြင်ဘူး apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,အသေးစိတ်ပြရန် +DocType: Server Script,Before Submit,တင်သွင်းခြင်းမပြုမီ DocType: System Settings,Run scheduled jobs only if checked,စီစဉ်ထားအလုပ်အကိုင်များကို run checked သာလျှင် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,အပိုင်းခေါင်းစဉ် enabled လျှင်သာပြသပါလိမ့်မည် apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,မော်ကွန်းတိုက် @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox ကို Access Key ကိ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,ထုံးစံ script ၏ add_fetch ဖွဲ့စည်းမှုပုံစံမှား fieldname <b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,အဆက်အသွယ်တစ်ပြိုင်တည်းချိန်ကိုက်ထားရမည်ဖြစ်သော Google မှဆက်သွယ်ရန်ရွေးချယ်ပါ။ DocType: Web Page,Main Section (HTML),အဓိကအပိုင်း (HTML) +DocType: Scheduled Job Type,Annual,နှစ်ပတ်လည် DocType: Workflow State,headphones,နားကြပ် apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Password ကို Password ကိုစောင့်မျှော်နေရင်းမလိုအပ်သို့မဟုတ် select လုပ်ဖြစ်ပါတယ် DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ဥပမာ replies@yourcomany.com ။ အားလုံးသည်ပြန်ကြားချက်ဒီ inbox ရဲ့ရောက်လိမ့်မည်။ DocType: Slack Webhook URL,Slack Webhook URL,Webhook URL ကိုပိတ်ဆို့တားဆီးစေ +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",Wizard ရှိဆလိုက်၏အမိန့်ကိုဆုံးဖြတ်သည်။ ဆလိုက်ကိုပြသရန်မဟုတ်ပါက ဦး စားပေး 0 ဖြစ်သင့်သည်။ DocType: Data Migration Run,Current Mapping,လက်ရှိမြေပုံ apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,သက်တမ်းရှိအီးမေးလ်နှင့်နာမတော်ကိုမလိုအပ်ပါ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,ပူးတွဲပါဖိုင်အားလုံးကိုပုဂ္ဂလိက Make @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,အကူးအပြောင်းနည်းဥပဒေများ apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,preview ကိုသာပထမဦးဆုံး {0} တန်းစီဖေါ်ပြခြင်း apps/frappe/frappe/core/doctype/report/report.js,Example:,ဥပမာ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ကန့်သတ်ချက်များ DocType: Workflow,Defines workflow states and rules for a document.,တစ်ဦးစာရွက်စာတမ်းတွေအတွက်လုပ်ငန်းအသွားအလာပြည်နယ်နှင့်စည်းမျဉ်းစည်းကမ်းသတ်မှတ်ပါတယ်။ DocType: Workflow State,Filter,ရေစစ် apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},ပိုမိုသိရှိလိုပါကများအတွက်မှားယွင်းနေသည် Log in ဝင်ရန် Check: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,အလုပ် apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ထွက် logged: {1} DocType: Address,West Bengal,အနောက်ဘင်္ဂလား +DocType: Onboarding Slide,Information,သတင်းအချက်အလက် apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable မဆိုနိုင်ပါ Assign Submit စွဲလမ်းခြင်းမနိုင်သလား DocType: Transaction Log,Row Index,အတန်းအညွှန်း DocType: Social Login Key,Facebook,Facebook က @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,button ကိုအကူအညီ DocType: Kanban Board Column,purple,ခရမ်းရောင်နု DocType: About Us Settings,Team Members,ရေးအဖွဲ့င်များ +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,မလှုပ်မရှားဖြစ်နေသောဆိုဒ်များအတွက်တစ်ရက်လျှင်တစ်ကြိမ်သာအချိန်ဇယားဆွဲထားသည့်အလုပ်များကိုလုပ်လိမ့်မည်။ 0 ထားလျှင်ပုံမှန် 4 ရက်။ DocType: Assignment Rule,System Manager,system Manager က +DocType: Scheduled Job Log,Scheduled Job,စီစဉ်ထားယောဘ DocType: Custom DocPerm,Permissions,ခွင့်ပြုချက် apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ပြည်တွင်းရေးပေါင်းစည်းမှုများအတွက်လျှော့ Webhooks DocType: Dropbox Settings,Allow Dropbox Access,Dropbox ကို Access က Allow @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,scan DocType: Email Flag Queue,Email Flag Queue,အီးမေးလ်ပို့ရန်အလံတန်းစီ DocType: Access Log,Columns / Fields,ကော်လံ / Field များ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ပုံနှိပ်ပါ Formats အဘို့ကို Stylesheets +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Dashboard ဇယားတစ်ခုကိုဖန်တီးရန် Aggregate Function field လိုအပ်သည် apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,{0} ပွင့်လင်းခွဲခြားသတ်မှတ်လို့မရပါ။ အခြားအရာတစ်ခုခုကြိုးစားပါ။ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,သင့်ရဲ့အချက်အလက်တွေကိုတင်ပြပြီးပါပြီ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,အသုံးပြုသူ {0} ဖျက်ပြီးမရနိုင်ပါ @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,လယ်ပြင်၌အမည် DocType: Assignment Rule,Assign To Users,အသုံးပြုသူများသည်ရန်သတ်မှတ် apps/frappe/frappe/public/js/frappe/utils/utils.js,or,သို့မဟုတ် apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,module တစ်ခုနာမတော်ကိုမ ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continue +DocType: Onboarding Slide,Continue,Continue apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google ကပေါင်းစည်းရေးကိုပိတ်ထားသည်။ DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,လက်မှတ် apps/frappe/frappe/templates/includes/login/login.js,Verifying...,စိစစ် ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1} ရှိသင့်တာ ၀ န်ကိုဖျက်သိမ်းလိုက်ပြီ apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,ပထမဦးစွာဒေတာကော်လံအလွတ်ဖြစ်ရမည်။ apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,အားလုံးဗားရှင်းပြရန် apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,ကြည့်ရန်မှတ်ချက် @@ -432,12 +452,14 @@ DocType: User,Restrict IP,အိုင်ပီကန့်သတ် apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,dashboard ကို apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ဒီအချိန်မှာအီးမေးလ်များကိုပေးပို့ဖို့မအောင်မြင်ဘူး apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google ကပြက္ခဒိန် - Google ကပြက္ခဒိန်, အမှားကုဒ် {1} အတွက်ပွဲ {0} ကို update မလုပ်နိုင်ခဲ့ပါ။" +DocType: Notification Log,Email Content,အီးမေးလ်အကြောင်းအရာ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,command တစ်ခုရှာရန်သို့မဟုတ်ရိုက်ထည့် DocType: Activity Log,Timeline Name,timeline ကိုအမည် apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,တစ်ဦးတည်းသာ {0} မူလတန်းအဖြစ်သတ်မှတ်နိုင်ပါသည်။ DocType: Email Account,e.g. smtp.gmail.com,ဥပမာ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,တစ်ဦးက New Rule Add DocType: Contact,Sales Master Manager,အရောင်းမဟာ Manager က +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,သင်၏ app ကိုအသုံးပြုရန်အတွက် JavaScript ကိုဖွင့်ရန်လိုသည်။ DocType: User Permission,For Value,Value ကိုများအတွက် DocType: Event,Google Calendar ID,Google ကပြက္ခဒိန် ID ကို apps/frappe/frappe/www/complete_signup.html,One Last Step,တဦးတည်းပြီးခဲ့သည့်အဆင့် @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP အလယျပိုငျ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},တင်သွင်းခြင်း {0} {1} ၏ DocType: GCalendar Account,Allow GCalendar Access,GCalendar Access ကို Allow apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} တစ်ဦးမဖြစ်မနေအကွက်ဖြစ်၏ +DocType: DocType,Documentation Link,မှတ်တမ်းလင့် apps/frappe/frappe/templates/includes/login/login.js,Login token required,login လက္ခဏာသက်သေမလိုအပ် apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,လစဉ်အဆင့်: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,မျိုးစုံစာရင်းကိုပစ္စည်းများကို Select လုပ်ပါ @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,file ကို URL ကို DocType: Version,Table HTML,စားပွဲတင်က HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Subscribers Add +DocType: Notification Log,Energy Point,စွမ်းအင်ပွိုင့် apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,ဒီနေ့သည်လာမည့်အဖွဲ့တွေ DocType: Google Calendar,Push to Google Calendar,Google ကပြက္ခဒိန်မှ Push DocType: Notification Recipient,Email By Document Field,Document ဖိုင်ဖျော်ဖြေမှုအားဖြင့် email @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ကွာ DocType: Currency,Fraction Units,အစိတ်အပိုင်းယူနစ် apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} {1} ကနေ {2} မှ -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,ပြီးပြီအဖြစ်မာ့ခ် DocType: Chat Message,Type,ပုံစံ DocType: Google Settings,OAuth Client ID,OAuth လိုင်း ID ကို DocType: Auto Repeat,Subject,ဘာသာရပ် apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,နောက်ကျော Desk မှ DocType: Web Form,Amount Based On Field,ဖျော်ဖြေမှုတွင် အခြေခံ. ပမာဏ +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} တွင်ဗားရှင်းမရှိသေးပါ။ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,အသုံးပြုသူဝေမျှမယ်တွေအတွက်မဖြစ်မနေဖြစ်ပါသည် DocType: DocField,Hidden,Hidden DocType: Web Form,Allow Incomplete Forms,မပြည့်စုံပုံစံ Allow @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,စိစစ်အတည်ပြုဘို့သင့်အီးမေးလ်စစ်ဆေးပါ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,သိုးခြံပုံစံ၏အဆုံးမှာမဖွစျနိုငျ DocType: Communication,Bounced,ကစားနိုင်ခဲ့ပါတယ် +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,၏ DocType: Deleted Document,Deleted Name,Deleted အမည် apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,စနစ်နှင့်ဝက်ဘ်ဆိုက်အသုံးပြုသူများ DocType: Workflow Document State,Doc Status,doc နဲ့ Status @@ -527,6 +552,7 @@ DocType: Language,Language Code,ဘာသာစကား Code ကို DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,မှတ်ချက်: ပုံမှန်အားဖြင့်ပျက်ကွက်ရန်သင့်သိမ်းဆည်းချက်တွေကိုများအတွက်အီးမေးလ်များကိုစလှေတျတျောနေကြသည်။ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Filter ကို Add apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},အောက်ပါနံပါတ်များကိုစလှေတျ SMS ကို: {0} +DocType: Notification Settings,Assignments,တာဝန် apps/frappe/frappe/utils/data.py,{0} and {1},{0} နှင့် {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,စကားပြောကိုစတင်ပါ။ DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",အမြဲတမ်းပုံနှိပ်ဥပဒေမူကြမ်းစာရွက်စာတမ်းများများအတွက်ခေါင်းစီး "မူကြမ်း" add @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,လက်ရှိမြေပ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,အီးမေးလ်ပို့ရန်စပမ်အဖြစ်မှတ်ထားပြီး DocType: Comment,Website Manager,website Manager က apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,လွှတ်တင်ခြင်းအဆက်ပြတ်နေ File ။ ထပ်ကြိုးစားပါ။ +DocType: Data Import Beta,Show Failed Logs,မအောင်မြင်သောမှတ်တမ်းများကိုပြပါ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ဘာသာပြန်ချက်များ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,သငျသညျရွေးချယ်ထားသောမူကြမ်းသို့မဟုတ်ပယ်ဖျက်ထားသည့်စာရွက်စာတမ်းများ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},စာရွက်စာတမ်း {0} {2} အားဖြင့်ပြည်နယ် {1} ဟုသတ်မှတ်ထားသည် @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,စာရွက်စာတ DocType: GSuite Templates,Destination ID,destination ID ကို DocType: Desktop Icon,List,စာရင်း DocType: Activity Log,Link Name,link ကိုအမည် +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,သငျသညျဆိပ် \ DocType: System Settings,mm/dd/yyyy,မီလီမီတာ / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,onboarding လျှော apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,မှားနေသောစကားဝှက်: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,မှားနေသောစကားဝှက်: DocType: Print Settings,Send document web view link in email,အီးမေးလ်ထဲတွင်စာရွက်စာတမ်းကို web အမြင် link ကို Send @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},အောင်မြင်သော: {0} {1} မှ apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,သရုပ်ပြအတွက်အသုံးပြုသူအသေးစိတျမပြောင်းနိုင်ပါ။ https://erpnext.com မှာအသစ်တခုအကောင့်အတွက်ဆိုင်းအပ်ပေးပါ apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,drop +DocType: Dashboard Chart,Aggregate Function Based On,အပေါ်အခြေခံပြီးစုစုပေါင်း function ကို apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,အပြောင်းအလဲများကိုလုပ်ရန်ဤ Copy လုပ်လိုက်ပါ ကျေးဇူးပြု. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,စာနယ်ဇင်းကယ်ဖို့ Enter apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF ဖိုင်ရယူရန်မျိုးဆက်ဘယ်ကြောင့်ဆိုသော်လည်းကျိုးပုံရိပ်ကိုလင့်များ၏မအောင်မြင်သော @@ -617,7 +647,9 @@ DocType: Notification,Days Before,ခင်မှာရက်ပတ်လုံ apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,နေ့စဉ်ပွဲများထိုနေ့ရက်တွင်အပြီးသတ်သငျ့သညျ။ apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ကို ... DocType: Workflow State,volume-down,volume အ-Down +DocType: Onboarding Slide,Help Links,အကူအညီလင့်များ apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Access ကိုဤ IP Address ကိုထံမှခွင့်မပြု +DocType: Notification Settings,Enable Email Notifications,အီးမေးလ်သတိပေးချက်များကိုဖွင့် apps/frappe/frappe/desk/reportview.py,No Tags,အဘယ်သူမျှမ Tags: DocType: Email Account,Send Notification to,မှအမိန့်ကြော်ငြာစာ Send DocType: DocField,Collapsible,ခေါက် @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,တွင်နောက်ဆုံး Bac DocType: Customize Form Field,Customize Form Field,Form တွင်ကွင်းဆင်း Customize DocType: Energy Point Rule,For Document Event,စာရွက်စာတမ်း Event များအတွက် DocType: Website Settings,Chat Room Name,ROOM တွင်အမည် chat +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,မပြောင်းလဲ DocType: OAuth Client,Grant Type,Grant ကအမျိုးအစား apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,တစ်အသုံးပြုသူများကဖတ်လို့လွယ်သောစာရွက်စာတမ်းများစစ်ဆေး DocType: Deleted Document,Hub Sync ID,hub Sync ကို ID ကို @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,သ DocType: Auto Repeat,Quarterly,သုံးလတစ်ကြိမ် apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","အီးမေးလ်ပို့ရန်ဒိုမိန်းသည်ဤအကောင့်မပြုပြင်, တဦးတည်း Create?" DocType: User,Reset Password Key,Password ကို Reset Key ကို +DocType: Dashboard Chart,All Time,အချိန်အားလုံး apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} များအတွက်တရားမဝင်စာရွက်စာတမ်းအခြေအနေ DocType: Email Account,Enable Auto Reply,မော်တော်ကားစာပြန်ရန် Enable apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,မမွငျရ @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,စ DocType: Email Account,Notify if unreplied,unreplied လျှင်အကြောင်းကြား apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,ဖို့အတွက် QR Code ကိုစကင်ဖတ်ပြသထားသောရရှိလာတဲ့ code ကိုရိုက်ထည့်ပါ။ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,gradient Enable +DocType: Scheduled Job Type,Hourly Long,နာရီကြာရှည် DocType: System Settings,Minimum Password Score,နိမ့်ဆုံး Password ကိုရမှတ် DocType: System Settings,Minimum Password Score,နိမ့်ဆုံး Password ကိုရမှတ် DocType: DocType,Fields,လယ်ကွက် @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,မိဘ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 ကို Backup ကိုဖြည့်စွက်! apps/frappe/frappe/config/desktop.py,Developer,developer apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Created +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},၎င်းကိုဖွင့်နိုင်ရန်အောက်ပါ link ရှိညွှန်ကြားချက်များကိုလိုက်နာပါ။ {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} အတန်းအတွက် {1} နှစ်ဦးစလုံးရဲ့ URL နှင့်ကလေးပစ္စည်းများရှိသည်မဟုတ်နိုင် apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},အောက်ပါဇယားများအတွက် atleast တဦးတည်းအတန်းရှိသင့်ပါသည်: {0} DocType: Print Format,Default Print Language,default ပါပုံနှိပ်ဘာသာစကားများ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,၏ဘိုးဘေးတို့ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,အမြစ် {0} ဖျက်ပြီးမရနိုင်ပါ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,မအောင်မြင်သောမှတ်တမ်းများမရှိပါ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,သေးမှတ်ချက်များမရှိပါ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",SMS ကိုချိန်ညှိမှုများမှတဆင့်တစ်ဦး authentication ကိုနည်းလမ်းအဖြစ်က setting မတိုင်မီ setup ကို SMS ကိုနှစ်သက်သော apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,DOCTYPE နှင့်အမည်မရှိမဖြစ်တဲ့နှစ်ဦးစလုံး @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,footer ပစ္စည်းများ apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu ကို DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,နေ့စဉ် +DocType: Onboarding Slide,Max Count,မက်စ်အရေအတွက် apps/frappe/frappe/config/users_and_permissions.py,User Roles,အသုံးပြုသူအခန်းကဏ္ဍ DocType: Property Setter,Property Setter overrides a standard DocType or Field property,အိမ်ခြံမြေ Setter တစ်ဦးစံ DOCTYPE သို့မဟုတ်ကွင်းဆင်းပစ္စည်းဥစ္စာပိုင်ဆိုင်မှုတွေကို override apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Update မနိုင်သည်မှားယွင်းနေ / သက်တမ်းလွန် Link ကို။ @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",ပစ်မှတ် = "_blank& DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,host က DocType: Data Import Beta,Import File,သွင်းကုန်ဖိုင်မှတ်တမ်း +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Template အမှား apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,ကော်လံ <b>{0}</b> ပြီးသားတည်ရှိ။ DocType: ToDo,High,မြင့်သော apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,နယူး Event @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,filter ကိုအတွက်ပြရ DocType: Address,Daman and Diu,ဒါမန်နှင့် Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,စီမံကိန်း DocType: Address,Personal,ပုဂ္ဂိုလ်ရေး +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,ပုံနှိပ်ခြင်း Raw ချိန်ညှိချက်များ ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,အသေးစိတ်ကို https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region ကိုကြည့်ပါ။ apps/frappe/frappe/config/settings.py,Bulk Rename,ထုထည်ကြီး Rename DocType: Email Queue,Show as cc,cc အဖြစ်ပြသပါ @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ဗီဒီယိ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ထို Contact Us စာမျက်နှာဖြစ်သည်နိဒါန်းသတင်းအချက်အလက် DocType: Print Style,CSS,CSS ကို DocType: Workflow State,thumbs-down,လက်မ-Down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,စာရွက်စာတမ်းများကိုပယ်ဖျက် DocType: User,Send Notifications for Email threads,အီးမေးလ်ချည်များအတွက်အသိပေးချက်များ Send apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ပါမောက္ခ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,မ Developer Mode ကိုအတွက် @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,file ကိ DocType: DocField,In Global Search,ကမ္တာ့ရှာရန်အတွက် DocType: System Settings,Brute Force Security,brute တပ်ဖွဲ့လုံခြုံရေး DocType: Workflow State,indent-left,ကုန်အမှာစာ-လက်ဝဲ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} လွန်ခဲ့သောနှစ်က apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,{0}: ဒါဟာဒီဖိုင်ကိုဖျက်ပစ်ရန်အန္တရာယ်များသည်။ သင့်ရဲ့ System ကို Manager ကဆက်သွယ်နိုင်ပါသည်။ DocType: Currency,Currency Name,ငွေကြေးအမည် apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,အဘယ်သူမျှမထားတဲ့အီးမေးလ် @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,အသုံးပြုသူဖျော DocType: DocType,MyISAM,MyISAM ကတော့ DocType: Data Migration Run,Push Delete,Delete Push apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} {1} {2} များအတွက်ပြီးသား unsubscribe +DocType: Scheduled Job Type,Stopped,ရပ်တန့် apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,မရွှေ့ခဲ့ဘူး apps/frappe/frappe/desk/like.py,Liked,ကြိုက်တယ် apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,အခုတော့ Send apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",စံ DOCTYPE Customize Form ကိုအသုံးပြု default အနေနဲ့ပုံနှိပ်ပုံစံရှိသည်မဟုတ်နိုင်ပါတယ် apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",စံ DOCTYPE Customize Form ကိုအသုံးပြု default အနေနဲ့ပုံနှိပ်ပုံစံရှိသည်မဟုတ်နိုင်ပါတယ် +DocType: Server Script,Allow Guest,Guest ည့်သည်ခွင့်ပြုသည် DocType: Report,Query,မေးခွန်း DocType: Customize Form,Sort Order,Sort အမိန့် apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'' List ကိုကြည့်ရန်ခုနှစ်တွင် '' အတန်းအတွက်အမျိုးအစား {0} သည်အခွင့်မပေး {1} @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,နှစ်ဦးက factor authentication နည်းလမ်း apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ပထမဦးစွာနာမကိုမသတ်မှတ်နှင့်စံချိန်သိမ်းဆည်းပါ။ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 မှတ်တမ်း +DocType: DocType Link,Link Fieldname,ကွင်းဆင်းအမည်ချိတ်ဆက်ပါ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} နှင့်အတူ shared apps/frappe/frappe/email/queue.py,Unsubscribe,စာရင်းဖျက်ရန် DocType: View Log,Reference Name,ကိုးကားစရာအမည် apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ပြောင်းလဲမှုကိုအသုံးပြုသူ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ပထမ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update ကိုဘာသာပြန်ချက်များ DocType: Error Snapshot,Exception,ချွင်းချက် DocType: Email Account,Use IMAP,IMAP ထဲကကိုအသုံးပြုပါ @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,အဆိုပါလုပ်ငန်းအသွားအလာအတွက်ပြည်နယ်၏အကူးအပြောင်း defining နည်းဥပဒေများ။ DocType: File,Folder,Folder ကို DocType: Website Route Meta,Website Route Meta,ဝက်ဘ်ဆိုက်လမ်းကြောင်းတွင် Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,လျှော Field ကို onboarding DocType: DocField,Index,ညွှန်ပြသောအရာ DocType: Email Group,Newsletter Manager,သတင်းလွှာ Manager က apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,option 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,အ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ဇယားကို configure DocType: User,Last IP,နောက်ဆုံး IP ကို apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,သင့်အီးမေးလ်တစ်ခုဘာသာရပ် add ပေးပါ -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,အသစ်စာရွက်စာတမ်း {0} သင် {1} နှင့်အတူနေဖြင့်မျှဝေခဲ့သည်။ DocType: Data Migration Connector,Data Migration Connector,ဒေတာကိုရွှေ့ပြောင်း Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} {1} သို့ပြောင်း DocType: Email Account,Track Email Status,track အီးမေးလ်အခြေအနေ @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,default အထွက် DocType: Workflow State,play,ကစား apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,သင့်ရဲ့မှတ်ပုံတင်ကိုအပြီးသတ်တစ်ဦးစကားဝှက်အသစ်သတ်မှတ်ဖို့အောက်ကလင့်ခ်ကိုနှိပ်ပါ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,add မဟုတ် +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} {2} {3} အတွက်ရမှတ် {1} ရရှိခဲ့ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Assigned အဘယ်သူမျှမအီးမေးလ်အကောင့် DocType: S3 Backup Settings,eu-west-2,EU-အနောက်ဘက်-2 DocType: Contact Us Settings,Contact Us Settings,ကျွန်ုပ်တို့ကို Settings ကိုဆက်သွယ်ရန် @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,ရှာ DocType: Workflow State,text-width,text-width ကို apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ဤမှတ်တမ်းသည်အမြင့်ဆုံးနှောင်ကြိုးများကိုကန့်သတ်ရောက်ရှိခဲ့သည်။ apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ဖိုင်အမည်သို့မဟုတ် extension ကိုအားဖြင့်ရှာရန် +DocType: Onboarding Slide,Slide Title,လျှောခေါင်းစဉ် DocType: Notification,View Properties (via Customize Form),(Customize ကို Form တွင်ကနေတဆင့်) view Properties ကို apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ကရွေးဖို့ဖိုင်တစ်ခုပေါ်တွင်ကလစ်နှိပ်ပါ။ DocType: Note Seen By,Note Seen By,မြင်မှတ်ချက် @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,ဝေမျှမယ် URL ကို DocType: System Settings,Allow Consecutive Login Attempts ,Allow ဆက်တိုက်ဝင်မည်ကြိုးစားခြင်း apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,အမှားငွေပေးချေမှုလုပ်ငန်းစဉ်အတွင်းကြုံခဲ့ရသည်။ ကျွန်တော်တို့ကိုဆက်သွယ်ပါ။ +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Slide Type သည် Create or Settings ဖြစ်ပါက `ref_doctype} .py file 'တွင် slide_ ပြီးဆုံးသွားသောအခါ execute လုပ်ရန်အတွက်' create_onboarding_docs 'နည်းလမ်းရှိသင့်သည်။ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,လွန်ခဲ့တဲ့ {0} ရက်ပတ်လုံး DocType: Email Account,Awaiting Password,Password ကိုစောင့်ဆိုင်း DocType: Address,Address Line 1,လိပ်စာစာကြောင်း 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,မအမျိုးအနွယ် DocType: Contact,Company Name,ကုမ္ပဏီအမည် DocType: Custom DocPerm,Role,အခန်းက္ပ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ဆက်တင်များ ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,သင့် browser မှ apps/frappe/frappe/utils/data.py,Cent,Cent က ,Recorder,အသံဖမ်း @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","သင့်အီးမေးလ်လက်ခံသူများကဖွင့်လှစ်ခဲ့ပြီးလျှင်ခြေရာခံ။ <br> မှတ်ချက်: အကယ်. သင်သည်မျိုးစုံလက်ခံသူများမှပေးပို့ခြင်းနေတယ်ဆိုရင်, 1 လက်ခံရရှိသူအီးမေးလ်ဖတ်လျှင်ပင်, က "ဖွင့်လှစ်" စဉ်းစားပါလိမ့်မယ်" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,လိုအပ်သောပျောက်ဆုံးတန်ဖိုးများ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google အဆက်အသွယ် Access ကို Allow +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,ကန့်သတ် DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,"မဖတ်ရသေးသည့်အဖြစ်, Mark" DocType: Activity Log,Operation,စစ်ဆင်ရေး @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,ပုံနှိပ်ပါ Allow DocType: Communication,Clicked,နှိပ်လိုက် apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,လိုက်အောင် apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},မှ '' {0} {1} မရှိပါခွင့်ပြုချက် +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ကျေးဇူးပြု၍ Setup> Email> Email Account မှမူလအီးမေးလ်ကိုသတ်မှတ်ပါ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ပေးပို့ဖို့စီစဉ်ထား DocType: DocType,Track Seen,Track မွငျ DocType: Dropbox Settings,File Backup,file ကို Backup ကို @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} မျှ apps/frappe/frappe/config/customization.py,Add custom forms.,ထုံးစံပုံစံများကိုထည့်ပေါင်းပါ။ apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} {2} အတွက် apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ဤစာရွက်စာတမ်းတင်သွင်း -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,setup ကို> အသုံးပြုသူခွင့်ပြုချက် apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,အဆိုပါစနစ်အများအပြား Pre-defined အခန်းကဏ္ဍပေးပါသည်။ သင်ကအနုစိတ်ခွင့်ပြုချက်တင်ထားရန်အသစ်အခန်းကဏ္ဍထည့်နိုင်သည်။ DocType: Communication,CC,CC ကို DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,ခလုတ်အမည် -apps/frappe/frappe/public/js/frappe/desk.js,Domains,domains +DocType: Onboarding Slide,Domains,domains DocType: Blog Category,Blog Category,ဘလော့အမျိုးအစား apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"အောက်ပါအခြေအနေပျက်ကွက်သောကြောင့်, map မဟုတ်နိုင်သည်" DocType: Role Permission for Page and Report,Roles HTML,အခန်းကဏ္ဍက HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,စနေနေ့ DocType: User,Represents a User in the system.,system ကိုတစ်အသုံးပြုသူကိုကိုယ်စားပြုပါတယ်။ DocType: List View Setting,Disable Auto Refresh,အော်တို Refresh ကို Disable DocType: Comment,Label,ကပ်တံဆိပ် -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","သင် {1} မှတာဝန်ပေးအပ်သောအလုပ်တစ်ခုကို {0}, ပိတ်သိမ်းခဲ့ကြောင်းသိရသည်။" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ဒီဝင်းဒိုးကိုပိတ်လိုက် ကျေးဇူးပြု. DocType: Print Format,Print Format Type,ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံကအမျိုးအစား DocType: Newsletter,A Lead with this Email Address should exist,ဒီအီးမေးလ်လိပ်စာနှင့်အတူတစ်ဦးကဦးဆောင်တည်ရှိသင့်တယ် @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,ထွက်သွာ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,တစ်ဦးကိုရှေးခယျြ DocType: Data Export,Filter List,filter များစာရင်း DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,နာရီ - မီလီမီတာ DocType: Email Account,Auto Reply Message,မော်တော်ကားစာပြန်ရန် Message DocType: Data Migration Mapping,Condition,condition apps/frappe/frappe/utils/data.py,{0} hours ago,{0} နာရီအကြာက @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Contributor DocType: Communication,Sent Read Receipt,Sent ဖတ်ငွေလက်ခံပြေစာ DocType: Email Queue,Unsubscribe Method,စာရင်းဖျက်ရန် Method ကို +DocType: Onboarding Slide,Add More Button,နောက်ထပ် Button ထည့်ပါ DocType: GSuite Templates,Related DocType,Related DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,အကြောင်းအရာထည့်ရန်ပြင်ဆင်ရန် apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,ဘာသာစကားများကို Select လုပ်ပါ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Card အားအသေးစိတ် apps/frappe/frappe/__init__.py,No permission for {0},{0} ဘို့အဘယ်သူမျှမခွင့်ပြုချက် DocType: DocType,Advanced,advanced +DocType: Onboarding Slide,Slide Image Source,Image ကိုအရင်းအမြစ်လျှော apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API သော့သို့မဟုတ် API ကိုလြှို့ဝှကျကမှားပုံရသည် !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},ကိုးကားစရာ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,ဒေါ် @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,master DocType: DocType,User Cannot Create,အသုံးပြုသူ Create မရပါ apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,အောင်မြင်စွာ Done apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox ကို access ကိုအတည်ပြုနေပါသည်! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,{0} {1} နဲ့ပေါင်းစည်းချင်တာသေချာလား။ DocType: Customize Form,Enter Form Type,Form တွင် Type ကိုရိုက်ထည့်ပါ DocType: Google Drive,Authorize Google Drive Access,Google Drive ကို Access ကိုခွင့်ပြုရန် apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,ပျောက်ဆုံးနေ parameter သည် Kanban ဘုတ်အဖွဲ့အမည် @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE ခွင့်ပြုခြင်း။ သတိထားပါ!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ပုံနှိပ်, အီးမေးလ်များအတွက်စိတ်ကြိုက် Formats" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} ၏ sum -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,နယူးဗားရှင်းနိုင်ရန် Updated DocType: Custom Field,Depends On,တွင်မူတည် DocType: Kanban Board Column,Green,စိမ်းလန်းသော DocType: Custom DocPerm,Additional Permissions,နောက်ထပ်ခွင့်ပြုချက် @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,လူမှုရေး apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",Google ကပြက္ခဒိန် - {0} များအတွက်အမှားကုဒ် {1} ပြက္ခဒိန်ဖန်တီးမပေးနိုင်ခဲ့ပါ။ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,တည်းဖြတ်တဲ့ Row DocType: Workflow Action Master,Workflow Action Master,အသွားအလာလှုပ်ရှားမှုမဟာ +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,အားလုံးကိုဖျက်ပါ DocType: Custom Field,Field Type,field ကအမျိုးအစား apps/frappe/frappe/utils/data.py,only.,သာ။ DocType: Route History,Route History,လမ်းကြောင်းသမိုင်း @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,စကားဝှက်က DocType: System Settings,yyyy-mm-dd,yyyy မီလီမီတာ-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID ကို apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,ဆာဗာအမှား +DocType: Server Script,After Delete,ပယ်ဖျက်ပြီးနောက် apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,အားလုံးအတိတ်အစီရင်ခံစာများကိုကြည့်ပါ။ apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,login ID ကိုလိုအပ်သည် DocType: Website Slideshow,Website Slideshow,website Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,အဘယ်သူမျှမအချက်အလက် DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","website ကို home page ကိုကြောင်း link ။ စံ Links များ (အညွှန်းကိန်း, login လုပ်လို့ရပါတယ်, ထုတ်ကုန်များ, ဘလော့ခန့်, အဆက်အသွယ်)" +DocType: Server Script,After Submit,တင်သွင်းပြီးနောက် apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},အီးမေးလ်အကောင့်ကို {0} ကနေအီးမေးလ်များကိုလက်ခံရရှိစဉ် authentication မအောင်မြင်ခဲ့ပေ။ server ကနေအကြောင်းကြားစာ: {1} DocType: User,Banner Image,"Banner သင်ခန်းစာများ," DocType: Custom Field,Custom Field,custom ဖျော်ဖြေမှု @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","အသုံးပြုသူကို check မဆိုအခန်းကဏ္ဍရှိပါတယ်လျှင်, အသုံးပြုသူတစ်ဦး "System ကိုအသုံးပြုသူတို့၏" ဖြစ်လာသည်။ "စနစ်အသုံးပြုသူက" desktop ပေါ်မှာလက်လှမ်းမီရှိပါတယ်" DocType: System Settings,Date and Number Format,ရက်စွဲနှင့်နံပါတ် Format ကို apps/frappe/frappe/model/document.py,one of,တယောက် -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Customize Form ကို apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,တဦးတည်းယခုအချိန်တွင်ကိုစစ်ဆေးခြင်း apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,show Tags: DocType: DocField,HTML Editor,HTML ကို Editor ကို 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,setup ကို> အသုံးပြုသူ +DocType: DocType,Actions,* Actions DocType: Workflow State,align-justify,တေ့-ကိုအပြစ်လွတ် DocType: User,Middle Name (Optional),အလယျပိုငျးအမည် (Optional) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,အခွင့်မရှိကြ @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,အဘယ DocType: System Settings,Security,လုံခွုံရေး apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} လက်ခံသူများမှပို့ပေးရန်စီစဉ်ထား apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ဖြတ် +DocType: Server Script,After Save,သိမ်းဆည်းပြီးနောက် apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},{1} မှ {0} ကနေအမည်ပြောင်း apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} {1} (ကလေးများနှင့်အတူ {2} တန်း) ၏ DocType: Currency,**Currency** Master,** ငွေကြေးစနစ် ** မဟာ @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,filter တန်ဖိုးများ DocType: Communication,User Tags,အသုံးပြုသူ Tags: DocType: Data Migration Run,Fail,ဆုံးရှုံး DocType: Workflow State,download-alt,"download, alt +" +DocType: Scheduled Job Type,Last Execution,နောက်ဆုံး Execution DocType: Data Migration Run,Pull Failed,မှု pull apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,ပြ / ဝှက်ကဒ်များ DocType: Communication,Feedback Request,တုံ့ပြန်ချက်တောင်းဆိုခြင်း apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV ဖိုင် / Excel ဖိုင်များကိုမှတင်သွင်း Data ဖြစ်ပါတယ်။ apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,အောက်ပါလယ်ကွင်းပျောက်ဆုံးနေ: +DocType: Notification Log,From User,အသုံးပြုသူမှ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},ဖျက်သိမ်းပြီး {0} DocType: Web Page,Main Section,အဓိကပုဒ်မ DocType: Page,Icon,icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","အရိပ်အမြွက်: စကားဝှက်အတွက်သင်္ကေတများ, နံပါတ်နှင့်အရင်းအနှီးအက္ခရာများ Include" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","အရိပ်အမြွက်: စကားဝှက်အတွက်သင်္ကေတများ, နံပါတ်နှင့်အရင်းအနှီးအက္ခရာများ Include" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",ဖော်ပြချက်များ၊ တာဝန်များ၊ စွမ်းအင်အချက်များနှင့်အခြားအရာများအတွက်သတိပေးချက်များကိုပြုပြင်ပါ။ DocType: DocField,Allow in Quick Entry,လျင်မြန်စွာ Entry အတွက် Allow apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF ဖိုင်ရယူရန် DocType: System Settings,dd/mm/yyyy,dd / မီလီမီတာ / yyyy @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,theme URL ကို DocType: Customize Form,Sort Field,Sort ဖျော်ဖြေမှု DocType: Razorpay Settings,Razorpay Settings,Razorpay ချိန်ညှိ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit ကို Filter ကို -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,နောက်ထပ် Add DocType: System Settings,Session Expiry Mobile,session သက်တမ်းကုန်ဆုံးမိုဘိုင်းလ် apps/frappe/frappe/utils/password.py,Incorrect User or Password,မှားယွင်းနေအသုံးပြုသူသို့မဟုတ်စကားဝှက် apps/frappe/frappe/templates/includes/search_box.html,Search results for,ရှာဖွေမှုရလဒ်များ @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,စွမ်းအင်ဝန်ကြီးဌာနပွိုင့်စည်းမျဉ်း DocType: Communication,Delayed,နှောင့်နှေး apps/frappe/frappe/config/settings.py,List of backups available for download,download ပြုလုပ်ရရှိနိုင်သောထားရှိတဲ့ Backup များစာရင်း +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,ဒေတာအသစ်တင်သွင်းမှုကိုကြိုးစားကြည့်ပါ apps/frappe/frappe/www/login.html,Sign up,ဆိုင်းအပ် apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,အတန်း {0}: စံလယ်ယာမသင်မနေရကို disable လုပ်ဖို့ခွင့်ပြုမ +DocType: Webhook,Enable Security,လုံခြုံရေးဖွင့် apps/frappe/frappe/config/customization.py,Dashboards,Dashboard DocType: Test Runner,Output,output DocType: Milestone,Track Field,track ဖျော်ဖြေမှု @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,အချက်ပေးပြီ apps/frappe/frappe/config/customization.py,Add fields to forms.,ပုံစံများမှလယ်ကွင်းထည့်ပါ။ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,တစ်ခုခုကဒီ site ရဲ့ Paypal configuration နဲ့အတူမှားယွင်းနေသည်နဲ့တူလှပါတယ်။ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,ဆန်းစစ်ခြင်း Add +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} သည်သင့်အားလုပ်ငန်းသစ် {1} {2} အသစ်ကိုပေးအပ်ခဲ့သည် apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),font Size ကို (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,သာစံ DOCTYPE Customize Form ကိုကနေစိတ်ကြိုက်ခံရဖို့ခွင့်ပြုခဲ့ရသည်။ DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,portal Menu ကို Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,set စိစစ်မှုများ DocType: Contact Us Settings,Email ID,အီးမေးလ် ID ကို DocType: Energy Point Rule,Multiplier Field,မြှောက်ကိန်းဖျော်ဖြေမှု +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay အမိန့်ကို ဖန်တီး၍ မရပါ။ ကျေးဇူးပြု၍ အုပ်ချုပ်ရေးမှူးကိုဆက်သွယ်ပါ DocType: Dashboard Chart,Time Interval,အချိန်ကြားကာလ DocType: Activity Log,Keep track of all update feeds,အားလုံး update ကို feeds တွေကိုခြေရာခံသိမ်းဆည်းထားပါ +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ကစာရွက်စာတမ်း {1} {2} ကိုသင်နှင့်မျှဝေခဲ့သည် DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,အသုံးပြုသူကခွင့်ပြုပြီးနောက်လိုင်း App ကိုမှဝင်ရောက်ခွင့်ရှိလိမ့်မည်သည့်အရင်းအမြစ်များကိုစာရင်းတစ်ခု။ <br> ဥပမာစီမံကိန်းအတွက် DocType: Translation,Translated Text,ဘာသာပြန်ထားသောစာသား DocType: Contact Us Settings,Query Options,query က Options @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,သော့ DocType: Address,Contacts,ဆက်သွယ်ရန် DocType: System Settings,Setup Complete,Setup ကို Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,အားလုံးစာရွက်စာတမ်းရှယ်ယာအစီရင်ခံစာ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","သွင်းကုန်ပုံစံသည် .csv, .xlsx သို့မဟုတ် .xls အမျိုးအစားဖြစ်သင့်သည်" apps/frappe/frappe/www/update-password.html,New Password,စကားဝှက်အသစ် apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ပျောက်ဆုံး {0} Filter apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ဆော်ရီး! သငျသညျ Auto-generated မှတ်ချက်များမဖျက်နိုင်ပါ @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,ပွေးသှား DocType: Blog Post,Content (HTML),အကြောင်းအရာ (HTML) ကို +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,အဘို့အ Setup ကို DocType: Personal Data Download Request,User Name,အသုံးပြုသူအမည် DocType: Workflow State,minus-sign,အနုတ်-နိမိတ်လက္ခဏာ apps/frappe/frappe/public/js/frappe/request.js,Not Found,မတွေ့ပါ @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,အဘယ်သူမျ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ပို့ကုန်စိတ်တိုင်းကျခွင့်ပြုချက်များ apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ပစ္စည်းများကိုမျှမတွေ့ပါ။ DocType: Data Export,Fields Multicheck,fields Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} ပြီးပြီ DocType: Activity Log,Login,လော့ဂ်အင် DocType: Web Form,Payments,ငွေပေးချေမှု apps/frappe/frappe/www/qrcode.html,Hi {0},မင်္ဂလာပါ {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive ကိုပေါင်းစည်းရေး။ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} {1} {2} ပေါ်တွင်သင်၏မှတ်သို့ပြောင်း DocType: System Settings,Enable Scheduled Jobs,Scheduled ဂျော့ Enable apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,မှတ်စုများ: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,မလှုပ်ရှားတတ်သော @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ဘု apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,ခွင့်ပြုချက်မှားယွင်းနေသည် apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} အမည် {1} မဖြစ်နိုင် DocType: User Permission,Applicable For,အကြောင်းမူကားသက်ဆိုင်သော +DocType: Dashboard Chart,From Date,နေ့စွဲကနေ apps/frappe/frappe/core/doctype/version/version_view.html,Success,အောင်မြင်ခြင်း apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,session Expired apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,session Expired @@ -1480,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,အ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; အခြေအနေခွင့်မပြု DocType: Async Task,Async Task,Async ရဲ့ Task DocType: Workflow State,picture,ရုပ်ပုံ -apps/frappe/frappe/www/complete_signup.html,Complete,ပြည့်စုံသော +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ပြည့်စုံသော DocType: DocType,Image Field,image ကိုဖျော်ဖြေမှု DocType: Print Format,Custom HTML Help,custom က HTML အကူအညီ DocType: LDAP Settings,Default Role on Creation,ဖန်ဆင်းခြင်းအပေါ် default အခန်းက္ပ @@ -1488,6 +1549,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Next ကိုပြည်နယ် DocType: User,Block Modules,block ပါဝါ DocType: Print Format,Custom CSS,custom CSS ကို +DocType: Energy Point Rule,Apply Only Once,တစ်ကြိမ်သာလျှောက်ပါ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,a comment Add DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},ကိုလျစ်လျူရှု: {0} {1} မှ @@ -1499,6 +1561,7 @@ DocType: Email Account,Default Incoming,default Incoming DocType: Workflow State,repeat,ပြန်ဆို DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Value ကို {0} တဦးဖြစ်ရပါမည် +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,စာရွက်စာတမ်းများအားလုံးကိုဖျက်ပါ DocType: Role,"If disabled, this role will be removed from all users.",မသန်စွမ်းလျှင်ဤအခန်းကဏ္ဍအားလုံးအသုံးပြုသူများအနေဖယ်ရှားပါလိမ့်မည်။ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} စာရင်းကိုသွားပါ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ရှာဖွေရန်အပေါ်အကူအညီ @@ -1507,6 +1570,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,မှတ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ဤစာရွက်စာတမ်းများအတွက်အော်တိုထပ်ခါတလဲလဲပိတ်ထားလိုက်ပြီဖြစ်သည်။ DocType: DocType,Hide Copy,Copy ကူးဝှက် apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,အားလုံးအခန်းကဏ္ဍရှင်းလင်း +DocType: Server Script,Before Save,သိမ်းဆည်းခြင်းမပြုမီ apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ထူးခြားသောဖြစ်ရမည် apps/frappe/frappe/model/base_document.py,Row,အတန်း apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC ကို, BCC & အီးမေးလ် Template ကို" @@ -1517,7 +1581,6 @@ DocType: Chat Profile,Offline,အော့ဖ်လိုင်း apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},အောင်မြင်စွာတင်သွင်း {0} DocType: User,API Key,API ကို Key ကို DocType: Email Account,Send unsubscribe message in email,အီးမေးလ်ထဲတွင်ယူမှုကိုဖျက်သတင်းစကားကိုပို့ပါ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit ကိုခေါင်းစဉ် apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,ဒီ link ကိုလယ်များအတွက် DOCTYPE ဖြစ်လိမ့်မည်ဟူသော Fieldname ။ apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,သင်နှင့်သင်ကတာဝန်ပေးအပ် documents ။ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,သင်တို့သည်လည်း copy-paste နိုင်ပါတယ်ဒီ @@ -1549,8 +1612,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Image ကို Attach DocType: Workflow State,list-alt,စာရင်း-alt + apps/frappe/frappe/www/update-password.html,Password Updated,Password ကို Updated +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,setup ကို> အသုံးပြုသူခွင့်ပြုချက် apps/frappe/frappe/www/qrcode.html,Steps to verify your login,သင်၏ login အတည်ပြုရန်ခြေလှမ်းများ apps/frappe/frappe/utils/password.py,Password not found,Password ကိုမတွေ့ရှိ +DocType: Webhook,Webhook Secret,Webhook လျှို့ဝှက်ချက် DocType: Data Migration Mapping,Page Length,စာမကျြနှာရှည် DocType: Email Queue,Expose Recipients,လက်ခံသူများဖော်ထုတ် apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,append ရန်အဝင်မေးလ်တွေအတွက်မဖြစ်မနေဖြစ်ပါသည် @@ -1578,6 +1643,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,စံနစ် DocType: Web Form,Max Attachment Size (in MB),(ကို MB အတွက်) မက်စ်နှောင်ကြိုး Size ကို apps/frappe/frappe/www/login.html,Have an account? Login,အကောင့်တစ်ခုရှိသည်? လော့ဂ်အင် +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,ပုံနှိပ်ချိန်ညှိချက်များ ... DocType: Workflow State,arrow-down,မြှား-Down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},အတန်း {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},{1}: User {0} ကိုပယ်ဖျက်ဖို့ခွင့်မပြု @@ -1599,6 +1665,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,သင် DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ကို Access ကလျှို့ဝှက်ချက် DocType: Tag Link,Document Title,စာရွက်စာတမ်းခေါင်းစဉ် apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(မသင်မနေရ) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} လွန်ခဲ့သောနှစ်က DocType: Social Login Key,Social Login Provider,လူမှုဝင်မည်ပေးသူ apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,နောက်ထပ်မှတ်ချက်လေး apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ဖိုင်ထဲမှာမှမတွေ့ပါဒေတာ။ ဒေတာနှင့်အတူသစ်ကိုဖိုင်ကိုပြန်ပြီးပူးတွဲရမည်ပေးပါ။ @@ -1613,11 +1680,12 @@ DocType: Workflow State,hand-down,လက်-Down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",အဘယ်သူမျှမလယ်ကွင်းတစ်ခု Kanban ကော်လံအဖြစ်အသုံးပြုနိုင်ပါတယ်တွေ့ရှိခဲ့ပါတယ်။ "ကိုရွေးချယ်ပါ" type ကိုတစ်စိတ်တိုင်းကျကွင်းဆင်း add ဖို့ Customize Form ကိုသုံးပါ။ DocType: Address,GST State,GST ပြည်နယ် apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Submit မပါဘဲ Cancel စွဲလမ်းခြင်းမနိုင်သလား +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),အသုံးပြုသူ ({0}) DocType: Website Theme,Theme,အကွောငျး DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Auth Code ကိုမလွဲမသွေ URI Redirect apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,ပွင့်လင်းအကူအညီ DocType: DocType,Is Submittable,Submittable ဖြစ်ပါသည် -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,နယူးဖော်ပြခြင်း +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,နယူးဖော်ပြခြင်း apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,အဘယ်သူမျှမသစ်ကို Google ကဆက်သွယ်ရန်တစ်ပြိုင်တည်းချိန်ကိုက်။ DocType: File,Uploaded To Google Drive,Google Drive ကိုရန် Uploaded apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,တစ်ဦးကို check လယ်ပြင်သည် Value တစ်ခုပါ 0 င်သို့မဟုတ် 1 ဖြစ်စေနိုင်ပါတယ် @@ -1629,7 +1697,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,inbox DocType: Kanban Board Column,Red,နီသော DocType: Workflow State,Tag,tag -DocType: Custom Script,Script,script +DocType: Report,Script,script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,စာရွက်စာတမ်းသည်ကယ်တင်ခြင်းသို့ရောက်နိုင်မည်မဟုတ်ပါ။ DocType: Energy Point Rule,Maximum Points,အများဆုံးအမှတ် apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,My Settings @@ -1659,9 +1727,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} {1} {2} ကိုကြေးဇူးတငျကွောငျးအချက်များ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,အခန်းကဏ္ဍဟာသူတို့ရဲ့အသုံးပြုသူစာမျက်နှာကနေ user တွေအတွက်သတ်မှတ်နိုင်တယ်။ apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,မှတ်ချက်လေး +DocType: Dashboard Chart,Select Date Range,Date Range ကိုရွေးပါ DocType: DocField,Mandatory,အတင်းအကျပ်ဖြစ်သော apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ပို့ကုန်မှ module +DocType: Scheduled Job Type,Monthly Long,လစဉ်ကြာရှည် apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: No အခြေခံခွင့်ပြုချက်ထား +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,ဤနေရာတွင်ချိတ်ဆက်ရန် {0} သို့အီးမေးလ်ပို့ပါ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","၏ Submit, Cancel, ပြင်ဆင်ချက်အဓိပ္ပာယ်" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,လုပ်ပါမှ @@ -1670,7 +1741,6 @@ DocType: Milestone Tracker,Track milestones for any document,မည်သည် DocType: Social Login Key,Identity Details,အထောက်အထားအသေးစိတ် apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},{1} မှ {0} ကနေခွင့်မပြုလုပ်ငန်းအသွားအလာပြည်နယ်အကူးအပြောင်း apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Show ကို Dashboard ကို -apps/frappe/frappe/desk/form/assign_to.py,New Message,နယူးမက်စေ့ DocType: File,Preview HTML,ကို Preview HTML ကို DocType: Desktop Icon,query-report,query ကို-အစီရင်ခံစာ DocType: Data Import Beta,Template Warnings,template သတိပေးချက်များ @@ -1681,18 +1751,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,အတူ Li apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Edit ကိုအော်တိုအီးမေးလ်အစီရင်ခံစာ Settings များ DocType: Chat Room,Message Count,မက်ဆေ့ခ်ျကိုအရေအတွက် DocType: Workflow State,book,စာအုပ် +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} ကိုအောက်ပါတင်သွင်းထားသောစာရွက်စာတမ်းများနှင့်ဆက်စပ်ထားသည်။ {2} DocType: Communication,Read by Recipient,လက်ခံသူများက Read DocType: Website Settings,Landing Page,ဆင်းသက်စာမျက်နှာ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,စိတ်တိုင်းကျ Script ထဲမှာမှားယွင်းနေသည် apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} အမည် apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,အဘယ်သူမျှမခွင့်ပြုချက်ဒီသတ်မှတ်ချက်များသည်ထားကြ၏။ DocType: Auto Email Report,Auto Email Report,အော်တိုအီးမေးလ်အစီရင်ခံစာ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,စာကြည့်တိုက်အသစ် apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,မှတ်ချက်ကိုဖျက်မလား? DocType: Address Template,This format is used if country specific format is not found,တိုင်းပြည်တိကျတဲ့ format ကိုမတွေ့ရှိပါကဤ format ကိုအသုံးပြုပါတယ် DocType: System Settings,Allow Login using Mobile Number,ဝင်မည်မိုဘိုင်းနံပါတ်သုံးပြီး Allow apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,သင်ဤသယံဇာတဝင်ရောက်ဖို့လုံလောက်တဲ့ခွင့်ပြုချက်ရှိသည်မဟုတ်ကြဘူး။ access ကိုရရန်သင့်မန်နေဂျာကိုဆက်သွယ်ပါ။ DocType: Custom Field,Custom,ထုံးစံဓလေ့ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","enabled လြှငျ, ကန့်သတ် IP Address ကိုကနေ login သူကိုသုံးစွဲသူများနှစ်ဦး Factor Auth များအတွက်သတိပေးခံရမည်မဟုတ်ပါ" +DocType: Server Script,After Cancel,Cancel ပြီးနောက် DocType: Auto Repeat,Get Contacts,ဆက်သွယ်ရန် get apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} အောက်မှာတင်သွင်းပို့စ်များ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ခေါင်းစဉ်မဲ့ကော်လံခုန်ကျော်သွားသကဲ့သို့ဖြစ်ရသည် @@ -1703,6 +1776,7 @@ DocType: User,Login After,ပြီးနောက် Login DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,ပုံနှိပ်ခြင်း DocType: Workflow State,thumbs-up,လက်မထောင်ပြခြင်း +DocType: Notification Log,Mention,ဖော်ပြခြင်း DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision 1 နှင့် 6 အကြားဖြစ်သင့်တယ် @@ -1710,7 +1784,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},အက် apps/frappe/frappe/public/js/frappe/utils/utils.js,and,နှင့် apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},ဤအစီရင်ခံစာ {0} အပေါ်ထုတ်လုပ်လိုက်တဲ့ခဲ့သည် DocType: Error Snapshot,Frames,frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,တာဝန်ကျတဲ့နေရာ +DocType: Notification Log,Assignment,တာဝန်ကျတဲ့နေရာ DocType: Notification,Slack Channel,ပျင်းရိ Channel ကို DocType: About Us Team Member,Image Link,image ကို Link ကို DocType: Auto Email Report,Report Filters,အစီရင်ခံစာစိစစ်မှုများ @@ -1727,7 +1801,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,အဖြစ်အပျက် update ဖို့မအောင်မြင်ဘူး apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,verification code ကိုသင့်ရဲ့မှတ်ပုံတင်အီးမေးလ်လိပ်စာထံသို့စေလွှတ်ခဲ့သည်။ apps/frappe/frappe/core/doctype/user/user.py,Throttled,ရပ်စဲခံနေရသည် +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,သင့်ရည်မှန်းချက် apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","{0}: filter 4 တန်ဖိုးများ (DOCTYPE, fieldname, အော်ပရေတာ, တန်ဖိုး) ရှိရမည်" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},{0} အတွက်အမည်သတ်မှတ်ရန်မရှိပါ apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,တာဝန်နည်းဥပဒေ Apply apps/frappe/frappe/utils/bot.py,show,ပြသ apps/frappe/frappe/utils/data.py,Invalid field name {0},မှားနေသောလယ်ကွင်းနာမကိုအမှီ {0} @@ -1737,7 +1813,6 @@ DocType: Workflow State,text-height,text-အမြင့် DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ဒေတာကိုရွှေ့ပြောင်း Plan ကိုပုံထုတ်ခြင်း apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappéစတင်ကာ ... DocType: Web Form Field,Max Length,မက်စ်ရှည် -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} များအတွက် DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,မြေပုံ-အမှတ်အသား apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,တစ်ဦး Issue Submit @@ -1773,6 +1848,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,ပျောက်ဆု apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,reviews DocType: DocType,Route,ခရီးစဉ် apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay ငွေပေးချေမှုရမည့်တံခါးပေါက် settings ကို +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} {2} {3} အတွက်ရမှတ် {1} ရရှိခဲ့ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,စာရွက်စာတမ်းကနေပူးတွဲပုံရိပ်တွေဆွဲယူ DocType: Chat Room,Name,နာမကို DocType: Contact Us Settings,Skype,Skype ကို @@ -1783,7 +1859,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,ပွင် apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,သင့်ရဲ့ဘာသာစကားများ DocType: Dashboard Chart,Average,ပျမ်းမျှ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Row Add -DocType: Tag Category,Doctypes,DOCTYPE apps/frappe/frappe/public/js/frappe/form/print.js,Printer,ပုံနှိပ်စက် apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,query တစ်ခု SELECT ဖြစ်ရမည် DocType: Auto Repeat,Completed,ပြီးစီး @@ -1843,6 +1918,7 @@ DocType: GCalendar Account,Next Sync Token,Next ကို Sync ကိုတိ DocType: Energy Point Settings,Energy Point Settings,စွမ်းအင်ဝန်ကြီးဌာနပွိုင့်က Settings DocType: Async Task,Succeeded,အရာ၌နန်းထိုင် apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} အတွက်လိုအပ်သည့်မသင်မနေရလယ်ကွက် +DocType: Onboarding Slide Field,Align,ချိန်ညှိပါ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} သည် reset ခွင့်ပြုချက်? apps/frappe/frappe/config/desktop.py,Users and Permissions,အသုံးပြုသူများနှင့်ခွင့်ပြုချက် DocType: S3 Backup Settings,S3 Backup Settings,S3 ကို Backup ကိုချိန်ညှိမှုများ @@ -1859,7 +1935,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,နယူးပရင့်ထုတ်ရန် Format ကိုအမည် apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,တောင်းဆိုချက်အတည်ပြုဖို့အောက်က link ကိုကလစ်နှိပ်ပါ DocType: Workflow State,align-left,တေ့-လက်ဝဲ +DocType: Onboarding Slide,Action Settings,Action ချိန်ညှိချက်များ DocType: User,Defaults,Defaults ကို +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","နှိုင်းယှဉ်မှုအဘို့,> 5, <10 or = 324 ကိုအသုံးပြုပါ။ အကွာအဝေးအဘို့, 5:10 (5 & 10 အကြားတန်ဖိုးများအတွက်) ကိုသုံးပါ။" DocType: Energy Point Log,Revert Of,၏ယခင်အခြေအနေပြန်သွားရန် apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,လက်ရှိအတူ merge DocType: User,Birth Date,မွေးနေ့ @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,တွင် DocType: Notification,Value Change,Value တစ်ခုပြောင်းရန် DocType: Google Contacts,Authorize Google Contacts Access,Google အဆက်အသွယ် Access ကိုခွင့်ပြုရန် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,အစီရင်ခံစာထဲကနေမှသာကိန်းဂဏန်းလယ်ကွင်းဖေါ်ပြသည် +apps/frappe/frappe/utils/data.py,1 week ago,လွန်ခဲ့သော ၁ ပတ်က DocType: Data Import Beta,Import Type,သွင်းကုန်အမျိုးအစား DocType: Access Log,HTML Page,HTML ကို 's Page DocType: Address,Subsidiary,ထောက်ခံသောကုမ္ပဏီ @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Letterhead နှင့်အတူ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,မမှန်ကန်ခြင်းအထွက်မေလ်းဆာဗာသို့မဟုတ်ဆိပ်ကမ်း DocType: Custom DocPerm,Write,ရေးသား -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,သာအုပ်ချုပ်ရေးမှူး Query / Script ကိုအစီရင်ခံစာများကိုဖန်တီးရန်ခွင့်ပြု apps/frappe/frappe/public/js/frappe/form/save.js,Updating,UPDATE DocType: Data Import Beta,Preview,ကို Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ဖျော်ဖြေမှု "တန်ဖိုး" မဖြစ်မနေဖြစ်ပါတယ်။ updated ခံရဖို့တန်ဖိုးကိုသတ်မှတ်ပေးပါ @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,အသု DocType: Data Migration Run,Started,Started apps/frappe/frappe/permissions.py,User {0} does not have access to this document,အသုံးပြုသူ {0} ဤစာရွက်စာတမ်းမှဝင်ရောက်ခွင့်ရှိသည်ပါဘူး DocType: Data Migration Run,End Time,အဆုံးအချိန် +DocType: Dashboard Chart,Group By Based On,အပေါ်အခြေခံပြီးအုပ်စု apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Attachments ကိုရွေးပါ apps/frappe/frappe/model/naming.py, for {0},{0} သည် apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,သင်သည်ဤစာရွက်စာတမ်း print ထုတ်ခွင့်မပြုခဲ့ကြသည် @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verify DocType: Workflow Document State,Update Field,Update ကိုဖျော်ဖြေမှု DocType: Chat Profile,Enable Chat,Chat ကို Enable DocType: LDAP Settings,Base Distinguished Name (DN),base ကိုခွဲခြမ်းစိတ်ဖြာအမည် (DN) +DocType: Server Script,API,API ကို apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ဒီစကားပြောဆို Leave apps/frappe/frappe/model/base_document.py,Options not set for link field {0},link ကိုလယ်၌ {0} သည်စွဲလမ်းခြင်းမ Options ကို apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,တန်းစီ / အလုပ်သမား @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,login ဒီအချိန်မှာခွင့်မပြု DocType: Data Migration Run,Current Mapping Action,လက်ရှိမြေပုံလှုပ်ရှားမှု DocType: Dashboard Chart Source,Source Name,source အမည် -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,အသုံးပြုသူနှင့်ဆက်စပ်သောအီးမေးလ်အကောင့်မရှိပါ။ ကျေးဇူးပြု၍ User> Email Inbox အောက်တွင်အကောင့်တစ်ခုထည့်ပါ။ DocType: Email Account,Email Sync Option,အီးမေးလ်ပို့ရန် Sync ကို Option ကို apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,အဘယ်သူမျှမ Row DocType: Async Task,Runtime,runtime DocType: Post,Is Pinned,Pinned ဖြစ်ပါတယ် DocType: Contact Us Settings,Introduction,နိဒါန်း +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,အကူအညီလိုတယ်? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,pin တစ်ကမ္ဘာလုံး apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,နောက်မှလိုက်နေသည်မှာ DocType: LDAP Settings,LDAP Email Field,LDAP အီးမေးလ်ဖျော်ဖြေမှု @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ယခု DocType: User Email,Enable Outgoing,အထွက် Enable DocType: Address,Fax,ဖက်စ် apps/frappe/frappe/config/customization.py,Custom Tags,စိတ်တိုင်းကျ Tags: -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မတည်ဆောက်ပါ ကျေးဇူးပြု၍ Setup> Email> Email Account မှအီးမေးလ်အကောင့်အသစ်ကိုဖွင့်ပါ DocType: Comment,Submitted,Submitted DocType: Contact,Pulled from Google Contacts,Google Contacts မှဆွဲထုတ် apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,သက်တမ်းရှိတောင်းဆိုမှုအတွက် @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,နေအ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,ငါ့ထံသို့ assign DocType: DocField,Dynamic Link,dynamic Link ကို apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Menu ကိုနှင့် Sidebar အတွက်အပိုဆောင်း shortcuts တွေကိုဖြစ်ပေါ်အောင်စာနယ်ဇင်း Alt Key ကို +DocType: Dashboard Chart,To Date,ယနေ့အထိ DocType: List View Setting,List View Setting,စာရင်းကြည့်ရန်ပြင်ဆင်မှုအား apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show ကိုအလုပ်အကိုင်ပျက်ကွက် -DocType: Event,Details,အသေးစိတ်အချက်အလက်များကို +DocType: Scheduled Job Log,Details,အသေးစိတ်အချက်အလက်များကို DocType: Property Setter,DocType or Field,DOCTYPE သို့မဟုတ်ဖျော်ဖြေမှု apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,သငျသညျဤစာရွက်စာတမ်း unfollowed apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,မူလတန်းအရောင် @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publish Key ကိုသို့မဟုတ်လျှို့ဝှက် Key ကိုကမှားပုံရသည် !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publish Key ကိုသို့မဟုတ်လျှို့ဝှက် Key ကိုကမှားပုံရသည် !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,ခွင့်ပြုချက်ပြင်ဆင်ခြင်းသည်လျင်မြန်စွာအကူအညီ -DocType: Tag Doc Category,Doctype to Assign Tags,Tags: သတ်မှတ်ဖို့ DOCTYPE apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Show ကို Relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,အီးမေးလ်ပို့ရန်အမှိုက်ရွှေ့လိုက်ပြီ DocType: Report,Report Builder,အစီရင်ခံစာ Builder @@ -2105,6 +2184,7 @@ DocType: Workflow State,Upload,upload DocType: User Permission,Advanced Control,အဆင့်မြင့်ထိန်းချုပ်ရေး DocType: System Settings,Date Format,နေ့စွဲစီစဉ်ဖွဲ့စည်းမှုပုံစံ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Published မဟုတ် +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ပုံမှန်လိပ်စာ template ကိုမတွေ့ပါ။ Setup> ပုံနှိပ်ခြင်းနှင့်ကုန်အမှတ်တံဆိပ်> လိပ်စာပုံစံမှအသစ်တစ်ခုဖန်တီးပါ။ apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","လုပ်ငန်းအသွားအလာသည် * Actions (ဥပမာအတည်ပြု, Cancel) ။" DocType: Data Import,Skip rows with errors,မှားယွင်းမှုများနှင့်အတူတန်းစီ Skip DocType: Workflow State,flag,အလံ @@ -2114,7 +2194,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ပ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,လယ်ပြင်ဤနေရာသို့သွားရန် DocType: Contact Us Settings,Forward To Email Address,Forward Email လိပ်စာရန် DocType: Contact Phone,Is Primary Phone,မူလတန်းဖုန်းဖြစ်ပါတယ် -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ဒီမှာချိတ်ဆက် {0} အီးမေးလ်ပေးပို့ပါ။ DocType: Auto Email Report,Weekdays,ကြားရက်များ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} မှတ်တမ်းများတင်ပို့ပါလိမ့်မည် apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ခေါင်းစဉ်လယ်တရားဝင် fieldname ဖြစ်ရမည် @@ -2122,7 +2201,7 @@ DocType: Post Comment,Post Comment,post ကိုမှတ်ချက် apps/frappe/frappe/config/core.py,Documents,စာရွက်စာတမ်းများ apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Activity Log အားဖြင့် DocType: Social Login Key,Custom Base URL,custom အခြေစိုက် URL ကို -DocType: Email Flag Queue,Is Completed,Completed ဖြစ်ပါတယ် +DocType: Onboarding Slide,Is Completed,Completed ဖြစ်ပါတယ် apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Fields get apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Edit Profile DocType: Kanban Board Column,Archived,မော်ကွန်းတင်ထား @@ -2133,12 +2212,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield eval: doc.myfield == '' ငါ့အ Value ကို '' eval:> 18 doc.age ဒီနေရာမှာသတ်မှတ်ထားတဲ့ fieldname တန်ဖိုးကိုရှိပါတယ် OR စည်းမျဉ်းစည်းကမ်းတွေကို (ဥပမာ) မှန်သာမှန်လျှင်ဤနယ်ပယ်ပေါ်လာပါလိမ့်မယ် DocType: Social Login Key,Office 365,Office 365 ကို -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ယနေ့တွင် -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ယနေ့တွင် +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ယနေ့တွင် +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ယနေ့တွင် apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,သွင်းကုန်ပြီးနောက် Submit DocType: Error Log,Log of Scheduler Errors,Scheduler ကို Errors ၏ log DocType: User,Bio,ဇီဝ +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ဆလိုက်အကူအညီလင့်ခ် onboarding DocType: OAuth Client,App Client Secret,App ကိုလိုင်းလျှို့ဝှက်ချက် apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,တင်ပြနေသည် apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,မိဘဒေတာမှထည့်သွင်းရလိမ့်မည်သည့်စာရွက်စာတမ်း၏နာမတော်သည်။ @@ -2146,7 +2226,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ကြီးများပြဿနာ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,custom က HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ဖိုင်တွဲအမည် Enter -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ပုံမှန်လိပ်စာ template ကိုမတွေ့ပါ။ Setup> ပုံနှိပ်ခြင်းနှင့်ကုန်အမှတ်တံဆိပ်> လိပ်စာပုံစံမှအသစ်တစ်ခုဖန်တီးပါ။ apps/frappe/frappe/auth.py,Unknown User,အမည်မသိအသုံးပြုသူ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,အခန်းက္ပကိုရွေးပါ DocType: Comment,Deleted,Deleted @@ -2162,7 +2241,7 @@ DocType: Chat Token,Chat Token,တိုကင် chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ဇယား Create apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,တင်သွင်းရန်မနေပါနဲ့ -DocType: Web Page,Center,အလယ်ဗဟို +DocType: Onboarding Slide Field,Center,အလယ်ဗဟို DocType: Notification,Value To Be Set,Value ကို Set ခံရရန် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit ကို {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ပထမဦးစွာအဆင့် @@ -2170,7 +2249,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ဒေတာဘေ့စအမည် apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Form တွင် refresh DocType: DocField,Select,ကိုရွေးပါ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,View Full Log in ဝင်ရန် +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,View Full Log in ဝင်ရန် DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ရိုးရှင်းသော Python ကိုဖော်ပြမှု, ဥပမာ: status ကို == '' ပွင့်လင်း 'နှင့်အမျိုးအစား ==' 'ဘာဂ်' '" apps/frappe/frappe/utils/csvutils.py,File not attached,file ကိုပူးတွဲမ apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Connection ကိုဆုံးရှုံးခဲ့ရသည်။ အချို့အင်္ဂါရပ်အလုပ်မဖြစ်ပေလိမ့်မည်။ @@ -2202,6 +2281,7 @@ DocType: Web Page,HTML for header section. Optional,header အပိုင်း apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,ဒီ feature အမှတ်တံဆိပ်အသစ်နှင့်နေဆဲစမ်းသပ်ဖြစ်ပါသည် apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,ခွင့်ပြုအများဆုံး {0} တန်း DocType: Dashboard Chart Link,Chart,ဇယား +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,ကမ္တာ့ unsubscribe apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ဤအရာသည်အလွန်ဘုံစကားဝှက်ဖြစ်ပါတယ်။ apps/frappe/frappe/email/doctype/email_group/email_group.js,View,ကြည့်ရန် @@ -2218,6 +2298,7 @@ DocType: Data Migration Connector,Hostname,hostname DocType: Data Migration Mapping,Condition Detail,အခွအေနေအသေးစိတ် apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","ငွေကြေးအဘို့ {0}, နိမ့်ဆုံးငွေပေးငွေယူငွေပမာဏ {1} ဖြစ်သင့်" DocType: DocField,Print Hide,ပုံနှိပ်ဖျောက် +DocType: System Settings,HH:mm:ss,နာရီ: မီလီမီတာ: စက္ကန့် apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,အသုံးပြုသူမှ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Value တစ်ခုထည့်သွင်းပါ DocType: Workflow State,tint,တင့် @@ -2285,6 +2366,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ဝင်မ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,လုပ်ပါရန်ထည့်သွင်းပါ DocType: Footer Item,Company,ကုမ္ပဏီ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ၏ပျမ်းမျှ +DocType: Scheduled Job Log,Scheduled,Scheduled DocType: User,Logout from all devices while changing Password,Password ကိုပြောင်းလဲနေတဲ့စဉ်ကိရိယာအားလုံးမှ logout apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Password ကို Verify apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,အမှားများရှိကြ၏ @@ -2310,7 +2392,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,အသုံးပြုသူခွင့်ပြုချက်ရှိထားပြီးသား apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},မြေပုံကော်လံ {0} တောမှ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ကြည့်ရန် {0} -DocType: User,Hourly,နာရီတိုင်း +DocType: Scheduled Job Type,Hourly,နာရီတိုင်း apps/frappe/frappe/config/integrations.py,Register OAuth Client App,မှတ်ပုံတင်မည် OAuth လိုင်း App ကို DocType: DocField,Fetch If Empty,Empty အကယ်. ဆွဲယူ DocType: Data Migration Connector,Authentication Credentials,authentication သံတမန်ဆောင်ဧည် @@ -2321,10 +2403,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS ကို Gateway က URL ကို apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" မဖြစ်နိုင်။ ဒါဟာ "{3}" တယောက်ဖြစ်သင့် apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},အော်တိုအုပ်ချုပ်မှုကိုမှတဆင့် {0} အားဖြင့်ရရှိခဲ့ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} သို့မဟုတ် {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,သင်တို့ရှိသမျှသည် set up! DocType: Workflow State,trash,အသုံးမရသောအရာ DocType: System Settings,Older backups will be automatically deleted,အဟောင်းတွေ Backup တွေကိုအလိုအလျှောက်ဖျက်ပစ်ပါလိမ့်မည် apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,မှားနေသော Access ကို Key ကို ID သို့မဟုတ်လျှို့ဝှက် Access ကို Key ကို။ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,သငျသညျအခြို့သောစွမ်းအင်ကိုမှတ်ဆုံးရှုံးခဲ့ရ DocType: Post,Is Globally Pinned,တစ်ကမ္ဘာလုံး Pinned ဖြစ်ပါတယ် apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,လတ်တလောလှုပ်ရှားမှု DocType: Workflow Transition,Conditions,အခြေအနေများ @@ -2333,6 +2415,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,အတည် DocType: Event,Ends on,အပေါ်အဆုံးသတ် DocType: Payment Gateway,Gateway,Gateway မှာ DocType: LDAP Settings,Path to Server Certificate,ဆာဗာလက်မှတ်မှ path +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,သင်၏ browser ပေါ်တွင် Javascript ကိုပိတ်ထားသည် apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,လင့်များကြည့်ဖို့မလုံလောက်ခွင့်ပြုချက် apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,လင့်များကြည့်ဖို့မလုံလောက်ခွင့်ပြုချက် apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,လိပ်စာခေါင်းစဉ်မဖြစ်မနေဖြစ်ပါတယ်။ @@ -2352,7 +2435,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,EU-အနောက်ဘက်-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",ဒီ check လုပ်ထားလျှင်ခိုင်လုံသောဒေတာနှင့်အတူတန်းစီတင်သွင်းမည်ဖြစ်ပြီးမမှန်ကန်တဲ့အတန်းကိုသင်နောက်ပိုင်းတွင်တင်သွင်းဖို့အတှကျဖိုင်အသစ်တစ်ခုသို့စွန့်ပစ်လိမ့်မည်။ apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,စာရွက်စာတမ်းအခန်းကဏ္ဍ၏အသုံးပြုသူများသာတည်းဖြတ်မှု -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","သင် {1}, {2} ကြောင့်ပိတ်ထားခဲ့ဖို့တာဝန်ပေးသောအလုပ်တစ်ခုကို {0}, ။" DocType: Print Format,Show Line Breaks after Sections,ကဏ္ဍများပြီးနောက် Show ကိုလိုင်း Break များ DocType: Communication,Read by Recipient On,တွင်လက်ခံသူများက Read DocType: Blogger,Short Name,တိုတောင်းသောအမည် @@ -2385,6 +2467,7 @@ DocType: Translation,PR sent,PR စနစ်ကိုစေလွှတ် DocType: Auto Email Report,Only Send Records Updated in Last X Hours,နောက်ဆုံး X ကိုနာရီအတွက်နောက်ဆုံးရေးသားချိန် Records ကိုသာပို့ပါ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,နောက်ဆုံး X ကိုနာရီအတွက်နောက်ဆုံးရေးသားချိန် Records ကိုသာပို့ပါ DocType: Communication,Feedback,တုံ့ပြန်ချက် +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ဗားရှင်းအသစ်သို့အဆင့်မြှင့်တင်ခြင်း apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,ပွင့်လင်းဘာသာပြန်စာပေ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,ဤသည်ကိုအီးမေးလ် autogenerated ဖြစ်ပါတယ် DocType: Workflow State,Icon will appear on the button,icon ခလုတ်ကိုပေါ်လာပါလိမ့်မယ် @@ -2423,6 +2506,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,စာမ DocType: DocField,Precision,စေ့စပ်သေချာခြင်း DocType: Website Slideshow,Slideshow Items,ဆလိုက်ရှိုးပစ္စည်းများ apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,အထပ်ထပ်စကားလုံးများနှင့်ဇာတ်ကောင်ရှောင်ရှားရန်ကြိုးစားပါ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,အသိပေးချက်များကိုပိတ်ထားသည် +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,အတန်းတွေအားလုံးကိုမင်းဖျက်ချင်လားသေချာလား။ DocType: Workflow Action,Workflow State,အသွားအလာပြည်နယ် apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,အတန်း Added apps/frappe/frappe/www/list.py,My Account,ကြှနျုပျအကောငျ့ @@ -2431,6 +2516,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,ပြီးနောက်ရက်ပတ်လုံး apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Active ကို QZ Tray ထဲမှာ Connection ကို! DocType: Contact Us Settings,Settings for Contact Us Page,Contact Us စာမျက်နှာဖြစ်သည် Settings ကို +DocType: Server Script,Script Type,script ကအမျိုးအစား DocType: Print Settings,Enable Print Server,ပုံနှိပ်ပါဆာဗာ Enable apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} weeks ago DocType: Email Account,Footer,footer @@ -2456,8 +2542,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,သတိပေးခြင်း apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,ဒီအမျိုးစုံစာမျက်နှာများပေါ်တွင်ပုံနှိပ်ရစေခြင်းငှါ DocType: Data Migration Run,Percent Complete,ရာခိုင်နှုန်းကိုအပြီးအစီး -DocType: Tag Category,Tag Category,tag ကို Category: -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","နှိုင်းယှဉ်မှုအဘို့,> 5, <10 or = 324 ကိုအသုံးပြုပါ။ အကွာအဝေးများအတွက်, 5:10 (5 & 10 အကြားတန်ဖိုးများအတွက်) ကိုသုံးပါ။" DocType: Google Calendar,Pull from Google Calendar,Google ကပြက္ခဒိန်ထဲကနေဆွဲထုတ် apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,ကူညီကြပါ DocType: User,Login Before,ခင်မှာ Login @@ -2467,17 +2551,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,တနင်္ဂနွေ Hide apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,အလိုအလျှောက်ထပ်တလဲလဲစာရွက်စာတမ်းများကိုထုတ်ပေးပါတယ်။ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ဖြစ် +DocType: Onboarding Slide,ERPNext,ERP နောက်တစ်ခု DocType: Workflow State,info-sign,info-နိမိတ်လက္ခဏာ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ဘို့ Value ကိုစာရင်းတစ်ခုမဖွစျနိုငျ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",ဒီငွေကြေး format ချရမည်လော ထားမသွားဘူးဆိုရင် system ကို default အတိုင်းအသုံးပြုလိမ့်မည် apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} စာရွက်စာတမ်းများ Submit? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,သင်တို့အထဲ၌ logged ရန်လိုခြင်းနှင့်စနစ် Manager ကအခန်းက္ပရန်သင့်သိမ်းဆည်းချက်တွေကိုဝင်ရောက်ကြည့်ရှုနိုင်မှရှိသည်။ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ Tray Application ချိတ်ဆက်မှုအမှား ... <br><br> Raw Print အင်္ဂါရပ်ကိုအသုံးပြုရန်သင် QZ Tray application ကို install လုပ်ပြီး run ရမည်။ <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ Tray ကိုဒေါင်းလုတ် လုပ်၍ တပ်ဆင်ရန်ဤနေရာကိုနှိပ်ပါ</a> ။ <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">ကုန်ကြမ်းပုံနှိပ်ခြင်းအကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ</a> ။" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ပရင်တာပုံထုတ်ခြင်း apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,တွဲထားခင်ကိုကယ်တင်ပေးပါ။ +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ဆက်စပ်စာရွက်စာတမ်းများအားလုံးကိုဖျက်ချင်ပါသလား။ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Added {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} အတန်းအတွက် {1} မှကနေပြောင်းလဲမပြနိုင် apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,အခန်းက္ပခွင့်ပြုချက် DocType: Help Article,Intermediate,ကြားဖြစ်သော +apps/frappe/frappe/config/settings.py,Email / Notifications,အီးမေးလ် / အသိပေးချက်များ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {2} မှ {1} ပြောင်းလဲသွားတယ် apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,မူကြမ်းအဖြစ်ပွနျလညျထူထောငျဖျက်သိမ်းစာရွက်စာတမ်း DocType: Data Migration Run,Start Time,Start ကိုအချိန် @@ -2494,6 +2582,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Sh apps/frappe/frappe/email/smtp.py,Invalid recipient address,မမှန်ကန်ခြင်းလက်ခံသူလိပ်စာ DocType: Workflow State,step-forward,ခြေလှမ်း-ရှေ့ဆက် DocType: System Settings,Allow Login After Fail,ဝင်မည်ကျရှုံးခြင်းပြီးနောက် Allow +DocType: DocType Link,DocType Link,DocType Link ကို DocType: Role Permission for Page and Report,Set Role For,သည် set အခန်းက္ပ DocType: GCalendar Account,The name that will appear in Google Calendar,Google ကပြက္ခဒိန်၌ထင်ရှားလတံ့သောအမည်ဖြင့် apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ပြီးသားတည်ရှိနှင့်အတူတိုက်ရိုက်အခန်းထဲမှာ။ @@ -2511,6 +2600,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},သစ် DocType: Contact,Google Contacts,Google အဆက်အသွယ် DocType: GCalendar Account,GCalendar Account,GCalendar အကောင့် DocType: Email Rule,Is Spam,ပမ် Is +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,နောက်ဆုံး apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},အစီရင်ခံစာ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ပွင့်လင်း {0} DocType: Data Import Beta,Import Warnings,သွင်းကုန်သတိပေးချက်များ @@ -2522,6 +2612,7 @@ DocType: Workflow State,ok-sign,ok-နိမိတ်လက္ခဏာ apps/frappe/frappe/config/settings.py,Deleted Documents,Deleted စာရွက်စာတမ်းများ apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,အဆိုပါ CSV ပုံစံအမှုအထိခိုက်မခံဖြစ်ပါသည် apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,desktop အိုင်ကွန်ပြီးသားတည်ရှိ +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ဆလိုက်များပေါ်လာသင့်သည့် domains များအားလုံးကိုသတ်မှတ်ပါ။ ဘာမျှမသတ်မှတ်ထားပါကဆလိုက်ကိုမူလနေရာတိုင်းတွင်ပြသည်။ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,မူရငျးခှဲ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ကွင်းဆင်း {1} အတန်းအတွက် {2} က default မပါဘဲဝှက်ထားခြင်းနှင့်မဖြစ်မနေမရနိုငျ DocType: Newsletter,Create and Send Newsletters,သတင်းလွှာ Create နှင့် Send @@ -2532,6 +2623,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google ကပြက္ခဒိန်ပွဲစဉ် ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","မိဘ" ဒီအတန်းကဆက်ပြောသည်ရမည်ဖြစ်သည့်အတွက်မိဘစားပွဲပေါ်မှာနေတဲ့အကြောင်းအချက်ပြ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,ဆန်းစစ်ခြင်းအမှတ်: +DocType: Scheduled Job Log,Scheduled Job Log,Scheduled Job Log +DocType: Server Script,Before Delete,မဖျက်မီ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,အတူ shared apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ဖိုင်တွေ / url များပူးတွဲ table ထဲမှာထည့်ပါ။ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,မက်ဆေ့ခ်ျကိုမပေး setup ကို @@ -2555,19 +2648,21 @@ DocType: About Us Settings,Settings for the About Us Page,ထိုအကြေ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,အစင်းငွေပေးချေမှုတံခါးပေါက် settings ကို apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,အစင်းငွေပေးချေမှုတံခါးပေါက် settings ကို apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ပရင်တာမှ Sent ပုံနှိပ်ပါ! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,စွမ်းအင်ဝန်ကြီးဌာနအမှတ် +DocType: Notification Settings,Energy Points,စွမ်းအင်ဝန်ကြီးဌာနအမှတ် +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},အချိန် {0} သည်ပုံစံဖြင့်ဖြစ်ရမည် - {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ဥပမာ pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,သော့ချက်များ Generate apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ဤသည်ကိုအပြီးတိုင်သင့်ရဲ့ဒေတာကိုဖယ်ရှားပစ်မည်။ DocType: DocType,View Settings,ကြည့်ရန်ချိန်ညှိမှုများ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,အသိပေးချက်အသစ် DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,တောင်းဆိုမှုဖွဲ့စည်းပုံ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Controller နည်းလမ်း get_razorpay_order ပျောက်နေသည် DocType: Personal Data Deletion Request,Pending Verification,ဆိုင်းငံ့အတည်ပြု DocType: Website Meta Tag,Website Meta Tag,ဝဘ်ဆိုဒ်တွင် Meta Tag ကို DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","non standard port (ဥပမာ 587) လျှင်။ Google Cloud ပေါ်မှာလြှငျ, ဆိပ်ကမ်းကို 2525 ကွိုးစားပါ။" apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","ကထုတ်ဝေစာမကျြနှာများအတွက်အတိတ်ထဲမှာမဖွစျနိုငျအဖြစ်, အဆုံးနေ့စွဲရှင်းလင်းရေး။" DocType: User,Send Me A Copy of Outgoing Emails,ငါ့ကိုအထွက်အီးမေးလ်များ၏တစ်ဦးက Copy ကူး Send -DocType: System Settings,Scheduler Last Event,Scheduler ကိုပြီးခဲ့သည့် Event DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google Analytics ID ကို Add: ဥပမာ။ UA-89XXX57-1 ။ နောက်ထပ်သတင်းအချက်အလက်များသည် Google Analytics အပေါ်အကူအညီကိုရှာပေးပါ။ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Password ကို 100 ကျော်ဇာတ်ကောင်ရှည်လျားမဖွစျနိုငျ DocType: OAuth Client,App Client ID,App ကိုလိုင်း ID ကို @@ -2596,6 +2691,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,နယူး apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} {1} နှင့်အတူဤစာရွက်စာတမ်း shared DocType: Website Settings,Brand Image,ကုန်အမှတ်တံဆိပ်ပုံရိပ် DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,သွင်းကုန် template တွင် Header တစ်ခုပါဝင်ပြီးအနည်းဆုံးတစ်ခုစီပါဝင်သင့်သည်။ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google ကပြက္ခဒိန် configured ခဲ့တာဖြစ်ပါတယ်။ apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","ထိပ်တန်း navigation bar, footer နှင့်လိုဂိုကို Setup ။" DocType: Web Form Field,Max Value,မက်စ် Value တစ်ခု @@ -2605,6 +2701,7 @@ DocType: User Social Login,User Social Login,အသုံးပြုသူလ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} {2} အချက်နှင့်အတူ {1} ပေါ်တွင်သင်၏အလုပ်ဝေဖန် DocType: Contact,All,အားလုံး DocType: Email Queue,Recipient,လက်လံသူ +DocType: Webhook,Webhook Security,Webhook လုံခြုံရေး DocType: Communication,Has Attachment,နှောင်ကြိုးများကိုရှိပါတယ် DocType: Address,Sales User,အရောင်းအသုံးပြုသူတို့၏ apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ပုံနှိပ် Formats တည်ဆောက်ရန်နှင့်စိတ်ကြိုက် tool ကို drag and drop ။ @@ -2671,7 +2768,6 @@ DocType: Data Migration Mapping,Migration ID Field,ရွှေ့ပြော DocType: Dashboard Chart,Last Synced On,နောက်ဆုံး Sync တွင် DocType: Comment,Comment Type,မှတ်ချက်ကအမျိုးအစား DocType: OAuth Client,OAuth Client,OAuth လိုင်း -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} {1} {2} ပေါ်တွင်သင်၏အလုပ်ဝေဖန် DocType: Assignment Rule,Users,အသုံးပြုသူများက DocType: Address,Odisha,Odisha DocType: Report,Report Type,အစီရင်ခံစာ Type @@ -2697,14 +2793,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,website Slideshow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,ကိုယ်ပိုင်အတည်ပြုချက်ခွင့်မပြုပါ DocType: GSuite Templates,Template ID,template ID ကို apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Grant ကအမျိုးအစား (များ၏ပေါင်းစပ် <code>{0}</code> ) နှင့်တုံ့ပြန်မှုအမျိုးအစား ( <code>{1}</code> ) ခွင့်မပြု -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} ကနေ New ကိုကို Message DocType: Portal Settings,Default Role at Time of Signup,Signup ၏အချိန်ကာလမှာ default အခန်းက္ပ DocType: DocType,Title Case,ခေါင်းစဉ် Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,သင့်ရဲ့ဒေတာကို download လုပ်ပါဖို့အောက်က link ကိုကလစ်နှိပ်ပါ apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},အသုံးပြုသူ {0} များအတွက် Enabled ကိုအီးမေးလ်စာပုံး DocType: Data Migration Run,Data Migration Run,ဒေတာကိုရွှေ့ပြောင်း Run ကို DocType: Blog Post,Email Sent,အီးမေးလ် Sent -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,အဟောင်းတွေ DocType: DocField,Ignore XSS Filter,XSS Filter ကိုလျစ်လျူရှုပါ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ဖယ်ရှားခံရ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox ကို backup လုပ်ထား settings ကို @@ -2759,6 +2853,7 @@ DocType: Async Task,Queued,Queued DocType: Braintree Settings,Use Sandbox,Sandbox ကိုသုံးပါ apps/frappe/frappe/utils/goal.py,This month,ဤလတွင် apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,နယူးအကောက်ခွန်ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ +DocType: Server Script,Before Save (Submitted Document),သိမ်းဆည်းခြင်းမပြုမီ (စာရွက်စာတမ်းအားတင်သွင်းပြီး) DocType: Custom DocPerm,Create,ဖန်တီး apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,ပြသဖို့ပိုပစ္စည်းများအဘယ်သူမျှမ apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,ယခင်စံချိန်ကိုသွားပါ @@ -2816,6 +2911,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,အမှိုက်ပုံးထဲရန်ရွှေ့ DocType: Web Form,Web Form Fields,Web ကို Form တွင် Fields DocType: Data Import,Amended From,မှစ. ပြင်ဆင် +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,အသုံးပြုသူသည်ဆလိုက်ကိုဘာဖြည့်သွင်းရမည်ကိုမသိရှိပါကအကူအညီဗီဒီယိုလင့်ခ်ထည့်ပါ။ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},သတိပေးချက်: {1} နှင့်ဆက်စပ်သောမည်သည့် table ထဲမှာ {0} ရှာတွေ့ဖို့မအောင်မြင်ဘူး DocType: S3 Backup Settings,eu-north-1,EU-မြောက်ဘက်-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ဤစာရွက်စာတမ်းလက်ရှိသေဒဏ်စီရင်ဘို့တန်းစီနေသည်။ ထပ်ကြိုးစားပါ @@ -2838,6 +2934,7 @@ DocType: Blog Post,Blog Post,ဘလော့ Post က DocType: Access Log,Export From,မှစ. တင်ပို့မှု apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ပါ Advanced Search apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,သင့်အနေဖြင့်သတင်းလွှာကြည့်ရှုရန်ခွင့်ပြုမထားပေ။ +DocType: Dashboard Chart,Group By,Group မှဖြင့် DocType: User,Interests,စိတ်ဝင်စားမှုများ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Password ကိုကို reset ညွှန်ကြားချက်သင့်အီးမေးလ်ကိုစလှေတျခဲ့ကြ DocType: Energy Point Rule,Allot Points To Assigned Users,Assigned အသုံးပြုသူများရန်အမှတ်စာရေးတံ ချ. ဝေ @@ -2853,6 +2950,7 @@ DocType: Assignment Rule,Assignment Rule,တာဝန်ကျတဲ့စည် apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},အကြံပြုသည်အသုံးပြုသူအမည်: {0} DocType: Assignment Rule Day,Day,နေ့ apps/frappe/frappe/public/js/frappe/desk.js,Modules,modules +DocType: DocField,Mandatory Depends On,မဖြစ်မနေမှီခိုသည် apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ငွေပေးချေမှုရမည့်အောင်မြင်မှုသည် apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,အဘယ်သူမျှမ {0} မေးလ် DocType: OAuth Bearer Token,Revoked,ရုတ်သိမ်း @@ -2860,6 +2958,7 @@ DocType: Web Page,Sidebar and Comments,sidebar နှင့်ထင်မြင apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 တစ်ခုပြင်ဆင်ချက်သောအခါ, အဟောင်းအရေအတွက်၏တစ်ဦးဗားရှင်းကြောင်းအသစ်တခုနံပါတ်ရလာကြလိမ့်မည်။" apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} စာရွက်စာတမ်း attach ခွင့်မပြု, ပုံနှိပ်ပါက Settings ထဲမှာ {0} သည်ပုံနှိပ်ပါ Allow enable ပေးပါ" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မတည်ဆောက်ရသေး ကျေးဇူးပြု၍ Setup> Email> Email Account မှအီးမေးလ်အကောင့်အသစ်ကိုဖွင့်ပါ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} မှာစာရွက်စာတမ်းကိုကြည့်ပါ DocType: Stripe Settings,Publishable Key,Publish Key ကို DocType: Stripe Settings,Publishable Key,Publish Key ကို @@ -2875,13 +2974,13 @@ DocType: Currency,Fraction,အစိတ်အပိုင်း apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,အဖြစ်အပျက်က Google ပြက္ခဒိန်နှင့်အတူတစ်ပြိုင်တည်းချိန်ကိုက်။ DocType: LDAP Settings,LDAP First Name Field,LDAP ပထမအမည်ဖျော်ဖြေမှု DocType: Contact,Middle Name,အလယ်နာမည် +DocType: DocField,Property Depends On,အိမ်ခြံမြေအပေါ်မူတည်သည် DocType: Custom Field,Field Description,လယ်ပြင်၌ဖော်ပြချက်များ apps/frappe/frappe/model/naming.py,Name not set via Prompt,နာမတော်ကိုမ Prompt ကိုကနေတဆင့်စွဲလမ်းခြင်းမ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,အီးမေးလ်ပို့ရန် Inbox ထဲမှာ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{0} {1}, {2} ၏အသစ်ပြောင်းခြင်း" DocType: Auto Email Report,Filters Display,စိစစ်မှုများပြရန် apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","amended_from" လယ်ကွင်းတစ်ခုပြင်ဆင်ချက်လုပ်ဖို့ပစ္စုပ္ပန်ဖြစ်ရပါမည်။ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} {1} {2} ပေါ်တွင်သင်၏အလုပ်တန်ဖိုးထား apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filter ကို Save DocType: Address,Plant,စက်ရုံ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,အားလုံး Reply @@ -2922,11 +3021,11 @@ DocType: Workflow State,folder-close,ဖိုင်တွဲ-နီးစပ် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,အစီရင်ခံစာ: DocType: Print Settings,Print taxes with zero amount,သုညငွေပမာဏနှင့်အတူပုံနှိပ်ပါအခွန်များ apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ဟုအမည်ပြောင်းခံရဖို့ခွင့်မပြု +DocType: Server Script,Before Insert,ထည့်သွင်းခြင်းမပြုမီ DocType: Custom Script,Custom Script,custom Script ကို DocType: Address,Address Line 2,လိပ်စာလိုင်း 2 DocType: Address,Reference,အညွှန်း apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,ရန်တာဝန်ပေး -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ကျေးဇူးပြု၍ Setup> Email> Email Account မှမူလအီးမေးလ်ကိုသတ်မှတ်ပါ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ဒေတာကိုရွှေ့ပြောင်းမြေပုံအသေးစိတ် DocType: Data Import,Action,action DocType: GSuite Settings,Script URL,script URL ကို @@ -2952,11 +3051,13 @@ DocType: User,Api Access,api Access ကို DocType: DocField,In List View,List ကိုကြည့်ရန်အတွက် DocType: Email Account,Use TLS,TLS ကိုသုံးပါ apps/frappe/frappe/email/smtp.py,Invalid login or password,မမှန်ကန်ခြင်း login လုပ်လို့ရပါတယ်သို့မဟုတ်စကားဝှက် +DocType: Scheduled Job Type,Weekly Long,အပတ်စဉ်အရှည် apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ဒေါင်းလုပ် Template: apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ပုံစံများမှထုံးစံ javascript ထည့်ပါ။ ,Role Permissions Manager,အခန်းက္ပခွင့်ပြုချက် Manager က apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,အသစ်ကပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံအမည် apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,toggle Sidebar +DocType: Server Script,After Save (Submitted Document),သိမ်းဆည်းပြီးနောက် (တင်ပြစာရွက်စာတမ်း) DocType: Data Migration Run,Pull Insert,Insert pull DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",အဆိုပါမြှောက်ကိန်းတန်ဖိုးမှတ်မပွားများပြီးနောက်ခွင့်ပြုအများဆုံးအချက်များ (မှတ်ချက်: အဘယ်သူမျှမန့်သတ်ချက်သည်အချည်းနှီးသောဤနယ်ပယ်တွင်ထားခဲ့ပါသို့မဟုတ် 0 င်သတ်မှတ်ထား) @@ -2976,6 +3077,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ဘလော့ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Installed မ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ဒေတာနှင့်အတူ Download apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} များအတွက်တန်ဖိုးများပြောင်းလဲသွား +DocType: Server Script,Before Cancel,ပယ်ဖျက်မီ DocType: Workflow State,hand-right,လက်ညာ DocType: Website Settings,Subdomain,subdomain DocType: S3 Backup Settings,Region,ဒေသ @@ -3022,12 +3124,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,စကားဝှက DocType: S3 Backup Settings,us-east-1,ကျွန်တော်တို့ကို-အရှေ့-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} ရေးသားချက်များ apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","format နဲ့ကော်လံလုပ်ဖို့, query ကိုအတွက်ကော်လံတံဆိပ်များပေးပါ။" +DocType: Onboarding Slide,Slide Fields,လျှော Fields DocType: Has Domain,Has Domain,ဒိုမိန်းရှိပါတယ် DocType: User,Allowed In Mentions,ခုနှစ်တွင်ပြောဆိုရန်ခွင့်ပြု apps/frappe/frappe/www/login.html,Don't have an account? Sign up,အကောင့်တစ်ခုရှိသည်မဟုတ်လော ဆိုင်းအပ် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID ကိုလယ်ပြင်ကိုမဖယ်ရှားနိုင် apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable မဆိုနိုင်ပါ Assign ပြင်ဆင်ချက်စွဲလမ်းခြင်းမနိုင်သလား DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Subscribed စာရွက်စာတမ်းများ apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,အသုံးပြုသူကိုဆက်တင် DocType: Report,Reference Report,ကိုးကားစရာအစီရင်ခံစာ DocType: Activity Log,Link DocType,link ကို DOCTYPE @@ -3045,6 +3149,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google ကပြက္ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,သင်တို့အဘို့ရှာကြသည်စာမျက်နှာပျောက်နေသည်။ ဒါကြောင့်ပြောင်းရွှေ့ဒါမှမဟုတ် link ကိုတစ်ဦး typing error တစ်ခုရှိသည်ကို ထောက်. ဤသည်ဖြစ်နိုင်ပါတယ်။ apps/frappe/frappe/www/404.html,Error Code: {0},အမှားကုဒ်: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","လွင်ပြင်စာသား, လိုင်းများသာစုံတွဲအတွက်စာမျက်နှာလူပ်သည်ဖော်ပြချက်။ (max ကို 140 ဇာတ်ကောင်)" +DocType: Server Script,DocType Event,DocType ပွဲ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} မဖြစ်မနေလယ်ကွင်းများမှာ DocType: Workflow,Allow Self Approval,ကိုယ်ပိုင်အတည်ပြုချက် Allow DocType: Event,Event Category,အဖြစ်အပျက် Category: @@ -3061,6 +3166,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,မင်းနာမည် apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,connection အောင်မြင် DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ဆော့ဖ်ဝဲအမျိုးအစား onboarding ဆလိုက်ဆက်လက်ရှိနေသည်။ DocType: DocType,Default Sort Field,default စီဖျော်ဖြေမှု DocType: File,Is Folder,Folder ကို Is DocType: Document Follow,DocType,DOCTYPE @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Changed DocType: Workflow State,arrow-up,မြှား-up က DocType: Dynamic Link,Link Document Type,လင့်ခ်စာရွက်စာတမ်းအမျိုးအစား apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} စားပွဲပေါ်မှာအဘို့အ atleast တဦးတည်းအတန်းရှိသင့်ပါသည် +DocType: Server Script,Server Script,ဆာဗာ Script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","အော်တိုထပ် configure လုပ်ဖို့, {0} ကနေ "အော်တိုထပ် Allow" ကို enable ။" DocType: OAuth Bearer Token,Expires In,ခုနှစ်တွင်သက်တမ်းကုန်ဆုံးမည် +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",သင်နယ်ပယ်များထပ်ခါတလဲလဲလုပ်လိုသည့်အကြိမ်အရေအတွက် (ဥပမာ - အကယ်၍ သင်ဆလိုက်တွင်ဖောက်သည် ၃ ဦး ကိုလိုချင်ပါကဤအကွက်ကို ၃ တွင်ထားပါ။ ပထမ ဦး ဆုံးအကွက်များသာလျှင်ဆလိုက်တွင်မဖြစ်မနေဖော်ပြထားသည်) DocType: DocField,Allow on Submit,Submit အပေါ် Allow DocType: DocField,HTML,HTML ကို DocType: Error Snapshot,Exception Type,ခြွင်းချက်ကအမျိုးအစား @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,လာမည့်အဖြစ်အပျက်များ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,App ကို Access ကို Key ကိုနှင့် App ကိုလြှို့ဝှကျ Key ကိုများအတွက်တန်ဖိုးများကိုရိုက်ထည့်ပေးပါ +DocType: Email Account,Append Emails to Sent Folder,Folder ကိုပို့။ စာများပို့ပါ DocType: Web Form,Accept Payment,ငွေပေးချေမှုရမည့် Accept apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,စာရင်း item ကို Select လုပ် apps/frappe/frappe/config/core.py,A log of request errors,တောင်းဆိုချက်ကိုအမှားများတစ် log က @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,လှူဒါန်းခဲ့ apps/frappe/frappe/config/customization.py,Form Customization,form ကို Customization apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,အဘယ်သူမျှမတက်ကြွ Sessions DocType: Web Form,Route to Success Link,အောင်မြင်မှု Link ကိုမှလမ်းကြောင်း -DocType: Top Bar Item,Right,မှန်သော +DocType: Onboarding Slide Field,Right,မှန်သော apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,အဘယ်သူမျှမဖြစ်အံ့ဆဲဆဲပွဲများ DocType: User,User Type,အသုံးပြုသူကအမျိုးအစား DocType: Prepared Report,Ref Report DocType,ref အစီရင်ခံစာ DOCTYPE @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,ထပ်ကြ apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',သို့မဟုတ် 'https: //': URL ကို '' // http '' နှင့်စတင်ရမည် apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,option 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,ဒါကိုဖျက်လို့မရပါဘူး DocType: Workflow State,Edit,Edit ကို DocType: Website Settings,Chat Operators,chat လုပ်ငန်းရှင်များ DocType: S3 Backup Settings,ca-central-1,ca ကို-အလယ်ပိုင်း-1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,သင်သည်ဤပုံစံဖြင့်ကယ်တင်ခြင်းမအပြောင်းအလဲများရှိသည်။ ရှေ့ဆက်မသွားခင်ကိုကယ်တင်ပေးပါ။ DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} သည် default option တစ်ခုဖြစ်ရပါမည် -DocType: Tag Doc Category,Tag Doc Category,Tag ကို Doc Category: apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,ကျော်ကို 10 စစ်ကြောင်းများနှင့်အတူအစီရင်ခံစာအခင်းအကျင်း mode မှာပိုကောင်းလှပါတယ်။ apps/frappe/frappe/database/database.py,Invalid field name: {0},မှားနေသောလယ်ကွင်းအမည်: {0} DocType: Milestone,Milestone,မှတ်တိုင် @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} ကိုသွ apps/frappe/frappe/email/queue.py,Emails are muted,အီးမေးလ်များကိုအသံတိတ်များမှာ apps/frappe/frappe/config/integrations.py,Google Services,Google ဝန်ဆောင်မှုများ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,ပြီးရင် Ctrl + Up ကို -apps/frappe/frappe/utils/data.py,1 weeks ago,1 ပတ်အကြာက +DocType: Onboarding Slide,Slide Description,Slide ဖော်ပြချက် DocType: Communication,Error,အမှား apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,ကျေးဇူးပြု. setup ကိုပထမဦးဆုံးသတင်းစကား DocType: Auto Repeat,End Date,အဆုံးနေ့စွဲ @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,Group ကတံဆိပ်တပ်ရန် DocType: Kanban Board,Kanban Board,Kanban ဘုတ်အဖွဲ့ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google အဆက်အသွယ် configured ခဲ့တာဖြစ်ပါတယ်။ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 စံချိန်တင်ပို့ပါလိမ့်မည် +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,အသုံးပြုသူနှင့်ဆက်စပ်သောအီးမေးလ်အကောင့်မရှိပါ။ ကျေးဇူးပြု၍ User> Email Inbox အောက်တွင်အကောင့်တစ်ခုထည့်ပါ။ DocType: DocField,Report Hide,အစီရင်ခံစာဖျောက် apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0} သည်အပင်၏အသီးကိုအမြင်မရရှိနိုင်ပါ DocType: DocType,Restrict To Domain,ဒိုမိန်းစေရန်ကန့်သတ်ရန် DocType: Domain,Domain,ဒိုမိန်း +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,မမှန်ကန်သောဖိုင် URL ။ ကျေးဇူးပြု၍ System Administrator ကိုဆက်သွယ်ပါ။ DocType: Custom Field,Label Help,label အကူအညီ DocType: Workflow State,star-empty,ကြယ်ပွင့်-အချည်းနှီး apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ရက်စွဲများမကြာခဏခန့်မှန်းရန်မလွယ်ကူဖြစ်ကြသည်။ @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left,လက်-left DocType: Data Import,If you are updating/overwriting already created records.,သငျသညျကို update နေတယ်ဆိုရင် / overwrite လုပ်တဲ့ပြီးသားမှတ်တမ်းများကိုဖန်တီးခဲ့တယ်။ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ကမ္တာ့ Is DocType: Email Account,Use SSL,SSL ကိုအသုံးပြုပါ +DocType: Webhook,HOOK-.####,ချိတ် - ။ #### DocType: Workflow State,play-circle,ကစား-စက်ဝိုင်း apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,စာရွက်စာတမ်းမှန်ကန်စွာတာဝန်ပေးမရနိုင်ခြင်း apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",မှားနေသော "depends_on" ဟူသောအသုံးအနှုနျး @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,နောက်ဆုံးလန်းဆန်း apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,စာရွက်စာတမ်းအမျိုးအစားများအတွက် DocType: Workflow State,arrow-right,မြှားညာ +DocType: Server Script,API Method,API နည်းလမ်း DocType: Workflow State,Workflow state represents the current state of a document.,အသွားအလာပြည်နယ် document ရဲ့လက်ရှိပြည်နယ်ကိုကိုယ်စားပြုပါတယ်။ DocType: Letter Head,Letter Head Based On,ပေးစာဌာနမှူးအခြေပြုတွင် apps/frappe/frappe/utils/oauth.py,Token is missing,token ပျောက်ဆုံးနေ @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,ကျစ်လစ်သိပ်သည်း Item ပုံနှိပ်ပါ DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL ကို redirect +DocType: Onboarding Slide Field,Placeholder,ရာထူး DocType: SMS Settings,Enter url parameter for receiver nos,လက်ခံ nos သည် url parameter ကိုရိုက်ထည့် DocType: Chat Profile,Online,အွန်လိုင်း DocType: Email Account,Always use Account's Name as Sender's Name,ပေးပို့သူရဲ့အမည်အဖြစ်အကောင့်ရဲ့အမည်အမြဲတမ်းသုံးရန် @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,နေအိမ် DocType: OAuth Provider Settings,Auto,အော်တို DocType: System Settings,User can login using Email id or User Name,အသုံးပြုသူအီးမေးလ်အိုင်ဒီသို့မဟုတ်အသုံးပြုသူအမည်ကိုသုံးပြီး login နိုင်ပါတယ် DocType: Workflow State,question-sign,မေးခွန်း-နိမိတ်လက္ခဏာ -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ကိုပိတ်ထား apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",field "လမ်းကြောင်း" web Views စာတွေအတွက်မဖြစ်မနေဖြစ်ပါသည် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} ခင်မှာကော်လံထည့်ပါ DocType: Energy Point Rule,The user from this field will be rewarded points,ဒီလယ်ကွင်းကနေအသုံးပြုသူအချက်များအကျိုးကိုခံရလိမ့်မည် @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ပိုင်ရ DocType: Data Migration Mapping,Push,တွန်းထိုး apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ဤနေရာတွင် drop files တွေကို DocType: OAuth Authorization Code,Expiration time,သက်တမ်းကုန်ဆုံးအချိန် +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,စာရွက်စာတမ်းများကိုဖွင့်ပါ DocType: Web Page,Website Sidebar,ဝက်ဘ်ဆိုက် Sidebar DocType: Web Form,Show Sidebar,show ကို Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,သင် {0} ဒီထဲကိုဝင်ရောက်ဖို့အတွက် logged ခံရဖို့လိုအပ်ပါတယ်။ @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ကမ္ဘ DocType: Desktop Icon,Page,စာမျက်နှာ apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},{1} အတွက် {0} ကိုရှာမတွေ့ပါ apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,မိမိတို့ကိုယ်အားဖြင့်အမည်များနှင့်မျိုးရိုးအမည်ခန့်မှန်းရန်မလွယ်ကူဖြစ်ကြသည်။ +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},{0} မှ {1} မှအမည်ပြောင်းထားသောစာရွက်စာတမ်း apps/frappe/frappe/config/website.py,Knowledge Base,Knowledge Base DocType: Workflow State,briefcase,လကျဆှဲအိတျ apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Value တစ်ခု {0} သည်ပြောင်းလဲမပြနိုင် @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,toggle Grid ကြည့်ရန် apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,လာမယ့်စံချိန်ကိုသွားပါ +DocType: System Settings,Time Format,အချိန်ပုံစံ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,မှားနေသောငွေပေးချေမှုတံခါးပေါက်အထောက်အထားများ DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ဤသည်အချို့သောအမှားရှိခြင်းကိုသာအတန်းနှင့်အတူနေထုတ်လုပ်လိုက်တဲ့ template ကိုဖိုင်ဖြစ်ပါသည်။ သငျသညျဆုံးမပဲ့ပြင်ခြင်းနှင့်သွင်းကုန်အဘို့ဤဖိုင်တွင်အသုံးပြုသင့်ပါတယ်။ apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Document ဖိုင်အမျိုးအစားများနှင့်ရာထူးတာဝန်အပေါ် Set ခွင့်ပြုချက် @@ -3397,12 +3513,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,ပြန apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Desk အတွက်စာမျက်နှာများ (ရာအရပျကိုင်ဆောင်သူ) DocType: DocField,Collapsible Depends On,ခေါက်တွင်မူတည် DocType: Print Style,Print Style Name,ပုံနှိပ်ပါစတိုင်အမည် +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Group By field သည် dashboard ဇယားတစ်ခုဖန်တီးရန်လိုအပ်သည် DocType: Print Settings,Allow page break inside tables,စားပွဲအတွင်းပိုင်းစာမျက်နှာချိုး Allow DocType: Email Account,SMTP Server,SMTP Server ကို DocType: Print Format,Print Format Help,ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံအကူအညီ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} အခန်းထဲမှာ atmost အသုံးပြုသူတစ်ဦးရှိရမည်။ DocType: DocType,Beta,beta ကို DocType: Dashboard Chart,Count,ရေတွက် +DocType: Dashboard Chart,Group By Type,အမျိုးအစားအလိုက်အုပ်စုလိုက် apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},{0} အပေါ်နယူးမှတ်ချက်: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} {1} အဖြစ်ပွနျလညျထူထောငျ apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","သင်ထားတဲ့ update များကိုနေတယ်ဆိုရင်, လက်ရှိအတန်းဖျက်ပြီးလိမ့်မည်မဟုတ်ပါတခြားအကြောင်း "Overwrite 'ကိုရွေးချယ်ပါကျေးဇူးတင်ပါ။" @@ -3413,8 +3531,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,အသု DocType: Web Form,Web Form,Web ကို Form တွင် apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},နေ့စွဲ {0} format နဲ့သူဖြစ်ရမည်: {1} DocType: About Us Settings,Org History Heading,org သမိုင်း HEAD +DocType: Scheduled Job Type,Scheduled Job Type,စီစဉ်ထားအလုပ်အမျိုးအစား DocType: Print Settings,Allow Print for Cancelled,ပယ်ဖျက်ဘို့ပရင့်ထုတ်ရန် Allow DocType: Communication,Integrations can use this field to set email delivery status,ပေါင်းစည်းမှုရဲ့အီးမေးလ်ပေးအပ်ခြင်းအဆင့်အတန်းသတ်မှတ်ဖို့ဒီလယ်ပြင်ကိုသုံးနိုင်သည် +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,ဆက်နွယ်နေသောစာရွက်စာတမ်းများအားလုံးကိုဖျက်သိမ်းရန်သင့်တွင်ခွင့်ပြုချက်မရှိပါ။ DocType: Web Form,Web Page Link Text,Web ကို 's Page Link ကိုစာသား DocType: Page,System Page,System ကို 's Page DocType: Page,System Page,System ကို 's Page @@ -3422,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},တင်ပို့ <b>{0}</b> များအတွက် Custom: <br> {1} DocType: Website Settings,Include Search in Top Bar,ထိပ်တန်းဘားများတွင်ရှာရန် Include +DocType: Scheduled Job Type,Daily Long,နေ့စဉ်သုံး DocType: GSuite Settings,Allow GSuite access,GSuite access ကို Allow DocType: DocType,DESC,DESC DocType: DocType,Naming,အမည်ပေးခြင်း @@ -3514,6 +3635,7 @@ DocType: Notification,Send days before or after the reference date,ထိုက DocType: User,Allow user to login only after this hour (0-24),(0-24) အသုံးပြုသူသာဒီနာရီပြီးနောက် login မှ Allow apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",sequence ကိုအတွက်တဦးတည်းအားဖြင့်တဦးတည်း assign DocType: Integration Request,Subscription Notification,subscription သတိပေးချက် +DocType: Customize Form Field, Allow in Quick Entry ,လျင်မြန်စွာ Entry 'အတွက်ခွင့်ပြုပါ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,သို့မဟုတ်တစ်တွဲ DocType: Auto Repeat,Start Date,စတင်သည့်ရက်စွဲ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,အဘိုး @@ -3528,6 +3650,7 @@ DocType: Google Drive,Backup Folder ID,Backup ကို Folder ကို ID က apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,မ Developer Mode တွင်! site_config.json အတွက် Set သို့မဟုတ် '' စိတ်တိုင်းကျ '' DOCTYPE စေကြလော့။ DocType: Workflow State,globe,အလုံး DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ဗီဒီယိုကို DocType: Assignment Rule,Priority,ဦးစားပေး DocType: Email Queue,Unsubscribe Param,စာရင်းဖျက်ရန်ရာမီတာများ DocType: DocType,Hide Sidebar and Menu,Sidebar နှင့် Menu ကို Hide @@ -3539,6 +3662,7 @@ DocType: DocType,Allow Import (via Data Import Tool),(ဒေတာများ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,SR DocType: DocField,Float,မြော DocType: Print Settings,Page Settings,စာမကျြနှာကိုဆက်တင် +DocType: Notification Settings,Notification Settings,အသိပေးချက်ပြင်ဆင်ခြင်းများ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,သိမ်းဆည်းခြင်း ... apps/frappe/frappe/www/update-password.html,Invalid Password,မှားနေသော Password ကို apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,အောင်မြင်စွာ {1} ထဲက {0} စံချိန်တင်သွင်းခဲ့သည်။ @@ -3554,6 +3678,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail DocType: Letter Head,Letter Head Image,ပေးစာဌာနမှူးပုံရိပ် DocType: Address,Party GSTIN,ပါတီ GSTIN +DocType: Scheduled Job Type,Cron Format,Cron အမျိုးအစား apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} အစီရင်ခံစာ DocType: SMS Settings,Use POST,POST ကိုသုံးပါ DocType: Communication,SMS,စာတို @@ -3599,18 +3724,20 @@ DocType: Workflow,Allow approval for creator of the document,စာရွက် apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ကြော်ငြာကို Save လုပ်ရန်အစီရင်ခံစာ DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API ကိုဆုံးမှတ် Args +DocType: DocType Action,Server Action,ဆာဗာလှုပ်ရှားမှု apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,အုပ်ချုပ်ရေးမှူး IP Address ကို {2} ကနေတဆင့် {1} အပေါ် {0} ဝင်ရောက်။ apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,မိဘကွင်းဆင်းခိုင်လုံသော fieldname ဖြစ်ရမည် apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,subscription ကိုပြင်ဆင်ရေးစဉ် Failed DocType: LDAP Settings,LDAP Group Field,LDAP Group မှကွင်းဆင်း +DocType: Notification Subscribed Document,Notification Subscribed Document,Subscribed စာရွက်စာတမ်းအကြောင်းကြားစာ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,တူညီသော apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,မှားနေသော CSV ဖိုင် Format ကို -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ Tray Application ချိတ်ဆက်မှုအမှား ... <br><br> Raw Print အင်္ဂါရပ်ကိုအသုံးပြုရန်သင် QZ Tray application ကို install လုပ်ပြီး run ရမည်။ <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ Tray ကိုဒေါင်းလုတ် လုပ်၍ တပ်ဆင်ရန်ဤနေရာကိုနှိပ်ပါ</a> ။ <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">ကုန်ကြမ်းပုံနှိပ်ခြင်းအကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ</a> ။" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,အရံသိမ်းဆည်းခြင်း၏ Set အရေအတွက် DocType: DocField,Do not allow user to change after set the first time,အသုံးပြုသူပြီးနောက်ပထမဦးဆုံးအကြိမ်ထားကိုပြောင်းလဲခွင့်မပြုပါနဲ့ apps/frappe/frappe/utils/data.py,1 year ago,လွန်ခဲ့သော 1 နှစ် +DocType: DocType,Links Section,Links အပိုင်း apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","အားလုံးပုံနှိပ်, download, နှင့်ပို့ကုန်ဖြစ်ရပ်များ၏ကြည့်ရန် Log in ဝင်ရန်" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 လ DocType: Contact,Contact,ထိတှေ့ @@ -3637,16 +3764,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,နယူးအီးမေးလ် DocType: Custom DocPerm,Export,ထုတ်ကုန် apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Google ကပြက္ခဒိန်ကိုအသုံးပြုဖို့ရန်, {0} ကို enable ။" +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},အခြေအနေမှီခိုကွက် {0} ကိုလည်းထည့်ခြင်း +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},အောင်မြင်စွာအဆင့်မြှင့်တင်ထားသော {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Tray ထဲမှာမအောင်မြင်ပါ: DocType: Dropbox Settings,Dropbox Settings,Dropbox ကိုချိန်ညှိ DocType: About Us Settings,More content for the bottom of the page.,စာမျက်နှာ၏အောက်ဆုံးပိုအကြောင်းအရာများကို။ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ဤစာရွက်စာတမ်းမူလထားသည် apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive ကို Backup ကိုအောင်မြင်သော။ +DocType: Webhook,Naming Series,စီးရီးအမည် DocType: Workflow,DocType on which this Workflow is applicable.,ဒီအသွားအလာသက်ဆိုင်သောအရာအပေါ် DOCTYPE ။ DocType: User,Enabled,Enabled apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,setup ကိုဖြည့်စွက်ရန်မအောင်မြင်ခဲ့ပါ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},နယူး {0}: {1} -DocType: Tag Category,Category Name,Category: အမည် +DocType: Blog Category,Category Name,Category: အမည် apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,မိဘကလေးသည်စားပွဲဒေတာရဖို့လိုအပ် apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,သွင်းကုန် Subscribers DocType: Print Settings,PDF Settings,PDF ဖိုင်ရယူရန် Settings ကို @@ -3682,6 +3812,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ပြက္ခဒိန် apps/frappe/frappe/client.py,No document found for given filters,စာရွက်စာတမ်းပေးထား filter များရှာမတွေ့ပါ apps/frappe/frappe/config/website.py,A user who posts blogs.,ဘလော့ဂ်များရေးသားသူကိုအသုံးပြုသူတစ်ဦး။ +DocType: DocType Action,DocType Action,DocType လှုပ်ရှားမှု apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",နောက်ထပ် {0} နာမည် {1} အခြားသောနာမကို select တည်ရှိ DocType: DocType,Custom?,custom? DocType: Website Settings,Website Theme Image,"website Theme သင်ခန်းစာများ," @@ -3691,6 +3822,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},{0}: ဝ apps/frappe/frappe/config/integrations.py,Backup,Backup ကို apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,စာရွက်စာတမ်းအမျိုးအစားတစ်ဒိုင်ခွက်ဇယားကိုဖန်တီးရန်လိုအပ်ပါသည် DocType: DocField,Read Only,သာလျှင် Read +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,razorpay အမိန့်ကို ဖန်တီး၍ မရပါ apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,နယူးသတင်းလွှာ DocType: Energy Point Log,Energy Point Log,စွမ်းအင်ဝန်ကြီးဌာနပွိုင့် Log in ဝင်ရန် DocType: Print Settings,Send Print as PDF,PDF ဖိုင်ရယူရန်အဖြစ်ပုံနှိပ် Send @@ -3716,16 +3848,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,အ apps/frappe/frappe/www/login.html,Or login with,ဒါမှမဟုတ်နှင့်အတူ login DocType: Error Snapshot,Locals,ဒေသခံတွေ apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{1} အပေါ် {0} ကနေတဆင့်ဆက်သွယ်: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} {1} အတွက်မှတ်ချက်၌သင်တို့ကိုဖော်ပြခဲ့တဲ့ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,အုပ်စုဖြင့်ရွေးရန် ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ဥပမာ (55 + 434) / 4 သို့မဟုတ် = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} လိုအပ်သည် DocType: Integration Request,Integration Type,ပေါင်းစည်းရေးအမျိုးအစား DocType: Newsletter,Send Attachements,attachment Send +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,စစ်ထုတ်စက်များမတွေ့ပါ apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google အဆက်အသွယ်ပေါင်းစည်းရေး။ DocType: Transaction Log,Transaction Log,ငွေသွင်းငွေထုတ် Log in ဝင်ရန် apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),ပြီးခဲ့သည့်လကရဲ့စွမ်းဆောင်မှုအပေါ်အခြေခံပြီး stats ({0} ကနေ {1} မှ) DocType: Contact Us Settings,City,မြို့ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,အသုံးပြုသူအားလုံးအတွက်ကဒ်များဖျောက်ထားပါ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Customize Form ကိုအတွက် DOCTYPE {0} များအတွက်အော်တိုထပ် Allow Enable DocType: DocField,Perm Level,Perm အဆင့် apps/frappe/frappe/www/confirm_workflow_action.html,View document,ကြည့်ရန်စာရွက်စာတမ်း @@ -3737,6 +3870,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'' ဂလိုဘယ်ရှာရန်ခုနှစ်တွင် '' အတန်းများတွင်အမျိုးအစား {0} အဘို့အခွင့်မပြုထား {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'' ဂလိုဘယ်ရှာရန်ခုနှစ်တွင် '' အတန်းများတွင်အမျိုးအစား {0} အဘို့အခွင့်မပြုထား {1} DocType: Energy Point Log,Appreciation,ကြေးဇူးတငျကွောငျး +DocType: Dashboard Chart,Number of Groups,အုပ်စုအရေအတွက် apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,ကြည့်ရန်စာရင်း DocType: Workflow,Don't Override Status,Status ကိုဖျက်ရေးရန်မနေပါနဲ့ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,ရှာရန်သက်တမ်း @@ -3778,7 +3912,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-အနောက်မြောက်ဘက်-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB အရံသိမ်းဆည်းခြင်း၏ကန့်သတ်အရေအတွက် DocType: Custom DocPerm,Level,level -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,နောက်ဆုံး 30 ရက် DocType: Custom DocPerm,Report,အစီရင်ခံစာ apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,ပမာဏ 0 င်ထက် သာ. ကြီးမြတ်ဖြစ်ရပါမည်။ apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ Tray ထဲကချိတ်ဆက်ထားပြီး! @@ -3795,6 +3928,7 @@ DocType: S3 Backup Settings,us-west-2,ကျွန်တော်တို့က apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,ကလေးဇယားကို Select လုပ်ပါ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ခလုတ်မူလတန်းလှုပ်ရှားမှု apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,ပွောငျးလဲခွငျး +DocType: Social Login Key,User ID Property,အသုံးပြုသူ ID အိမ်ခြံမြေ DocType: Email Domain,domain name,domain name ကို DocType: Contact Email,Contact Email,ဆက်သွယ်ရန်အီးမေးလ် DocType: Kanban Board Column,Order,အမိန့် @@ -3817,7 +3951,7 @@ DocType: Contact,Last Name,မျိုးနွယ်အမည် DocType: Event,Private,ကိုယ်ပိုင် apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,ယနေ့အဘို့အဘယ်သူမျှမကသတိပေးချက် DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ဖိုင်ရယူရန်အဖြစ်အီးမေးလ်ပုံနှိပ်ခဲ့သည် Attachments Send (အကြံပြုထားသည့်) -DocType: Web Page,Left,လက်ဝဲဘက် +DocType: Onboarding Slide Field,Left,လက်ဝဲဘက် DocType: Event,All Day,အားလုံးသည်နေ့ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,တစ်ခုခုကဒီ site ရဲ့ငွေပေးချေမှုတံခါးပေါက် configuration နဲ့အတူမှားယွင်းနေသည်နဲ့တူလှပါတယ်။ အဘယ်သူမျှမပေးချေမှုကိုဖန်ဆင်းခဲ့သည်။ DocType: GCalendar Settings,State,ပြည်နယ် @@ -3849,7 +3983,6 @@ DocType: Workflow State,User,အသုံးပြုသူ DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- ခေါင်းစဉ်ကို prefix" အဖြစ် browser ကိုပြတင်းပေါက်၌ Show ကိုခေါင်းစဉ် DocType: Payment Gateway,Gateway Settings,gateway မှာ Settings များ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,စာရွက်စာတမ်းအမျိုးအစားထဲမှာစာသား -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,run စမ်းသပ်မှု apps/frappe/frappe/handler.py,Logged Out,အထဲက Logged apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,နောက်ထပ်... DocType: System Settings,User can login using Email id or Mobile number,အသုံးပြုသူအီးမေးလ်အိုင်ဒီသို့မဟုတ်ဖုန်းနံပါတ်ကိုအသုံးပြုပြီး login နိုင်ပါတယ် @@ -3866,6 +3999,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,အကျဉ်းချုပ် DocType: Event,Event Participants,အဖြစ်အပျက်ပါဝင် DocType: Auto Repeat,Frequency,frequency +DocType: Onboarding Slide,Slide Order,အမိန့်လျှော DocType: Custom Field,Insert After,ပြီးနောက် Insert DocType: Event,Sync with Google Calendar,Google ကပြက္ခဒိန်နှင့်အတူ Sync ကို DocType: Access Log,Report Name,အစီရင်ခံစာအမည် @@ -3893,6 +4027,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},အမျိုးအစားငွေကြေးစနစ်များအတွက် max ကို width ကိုအတန်းအတွက် 100px {0} သည် apps/frappe/frappe/config/website.py,Content web page.,content ဝဘ်စာမျက်နှာ။ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,တစ်ဦးက New အခန်းကဏ္ဍ Add +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ဝက်ဘ်စာမျက်နှာသို့သွားပါ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,တာဝန်အသစ် DocType: Google Contacts,Last Sync On,နောက်ဆုံး Sync ကိုတွင် DocType: Deleted Document,Deleted Document,Deleted စာရွက်စာတမ်း apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! တစ်ခုခုမှားသွားတယ် @@ -3903,7 +4039,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ရှုခင် apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Javascript ကိုအတွက် client ကို side script တွေ extension များ DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,DOCTYPE အောက်ပါများအတွက်မှတ်တမ်းများ filtered ပါလိမ့်မည် -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Scheduler ကိုအလုပ်မလုပ် +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Scheduler ကိုအလုပ်မလုပ် DocType: Blog Settings,Blog Introduction,ဘလော့နိဒါန်း DocType: Global Search Settings,Search Priorities,ဦး စားပေးရှာဖွေပါ DocType: Address,Office,ရုံး @@ -3913,13 +4049,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Dashboard ကိုဇယာ DocType: User,Email Settings,အီးမေးလ် Settings ကို apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ဤတွင် drop DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","enabled ဆိုလျှင်, အသုံးပြုသူနှစ်ဦး Factor Auth ကိုအသုံးပြုပြီးမည်သည့် IP Address ကိုကနေ login နိုငျသညျ, ဤသူကိုလည်း System ကိုချိန်ညှိမှုများအားလုံးကိုအသုံးပြုသူများအတွက်သတ်မှတ်နိုင်ပါသည်" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,ပရင်တာက Settings ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Continue သင်၏ Password ကိုရိုက်ထည့်ပါ ကျေးဇူးပြု. apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Continue သင်၏ Password ကိုရိုက်ထည့်ပါ ကျေးဇူးပြု. apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ငါ့ကို apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} မမှန်ကန်သောပြည်နယ် apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,အားလုံးစာရွက်စာတမ်းများအမျိုးအစားများမှ Apply -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,စွမ်းအင်ဝန်ကြီးဌာနအမှတ် update ကို +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,စွမ်းအင်ဝန်ကြီးဌာနအမှတ် update ကို +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),မလှုပ်မရှားဖြစ်နေပါက (နေ့များ) သာအလုပ်များကိုနေ့စဉ်နေ့တိုင်းလုပ်ပါ။ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',အခြားပေးချေမှုနည်းလမ်းကိုရွေးချယ်ပါ။ PayPal က '' {0} '' ငွေကြေးအရောင်းအထောကျပံ့ပေးမထားဘူး DocType: Chat Message,Room Type,အခန်းအမျိုးအစား DocType: Data Import Beta,Import Log Preview,သွင်းကုန် Log in ဝင်ရန် Preview ကို @@ -3928,6 +4064,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-စက်ဝိုင်း DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP အသုံးပြုသူဖန်ဆင်းခြင်းနှင့်ပုံထုတ်ခြင်း apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',သငျသညျ '' ဖောက်သည်အတွက်လိမ္မော်ရောင်ကိုရှာဖွေ '' ကိုတောင်းမှုအရာကိုရှာတွေ့နိုင်ပါသည် +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,ဒီနေ့ဖြစ်ရပ်များ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,စိတ်မကောင်း! အသုံးပြုသူမိမိတို့ကိုယ်ပိုင်စံချိန်မှပြီးပြည့်စုံ access ကိုရှိသင့်သည်။ ,Usage Info,အသုံးပြုမှုအင်ဖို apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Show ကို Keyboard Shortcuts @@ -3944,6 +4081,7 @@ DocType: DocField,Unique,ထူးခြားသော apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} {1} အပေါ်တန်ဖိုးထား apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,တစ်စိတ်တစ်ပိုင်းအောင်မြင်မှု DocType: Email Account,Service,ဝန်ဆောင်မှု +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,setup ကို> အသုံးပြုသူ DocType: File,File Name,ဖိုင်နာမည် apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),({1}) {0} {0} သည်မတှေ့ apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},res: {0} @@ -3957,6 +4095,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,complete DocType: GCalendar Settings,Enable,Enable DocType: Google Maps Settings,Home Address,အိမ်လိပ်စာ apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),သင်ဟာတစ်ခုသာသွားအတွက် 5000 မှတ်တမ်းများအထိ upload နိုင်ပါတယ်။ (အချို့ကိစ္စများတွင်လျော့နည်းစေခြင်းငှါ) +DocType: Report,"output in the form of `data = [columns, result]`","`ဒေတာ = [ကော်လံ, ရလဒ်]` ၏ပုံစံအတွက် output ကို" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,သက်ဆိုင်စာရွက်စာတမ်းအမျိုးအစားများ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,အသုံးပြုသူတာဝန်တွေဘို့စည်းမျဉ်းစည်းကမ်းတွေကိုတက်သတ်မှတ်မည်။ apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} အဘို့မလုံလောက်ခွင့်ပြုချက် @@ -3973,7 +4112,6 @@ DocType: Communication,To and CC,ရန်နှင့် CC ကို DocType: SMS Settings,Static Parameters,static Parameter များကို DocType: Chat Message,Room,အခန်းတခန်း apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} မှ updated -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,နောက်ခံသမိုင်းအလုပ်အကိုင်များပြေးကြသည်မဟုတ်။ အုပ်ချုပ်ရေးမှူးကိုဆက်သွယ်ပါ DocType: Portal Settings,Custom Menu Items,စိတ်တိုင်းကျ Menu ကိုပစ္စည်းများ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ဝဘ်ဆိုဒ်လိုက်ရှိုးတွဲအားလုံးပုံများအများပြည်သူဖြစ်သင့် DocType: Workflow State,chevron-right,Chevron ညာ @@ -3988,11 +4126,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,ရှေးခယျြထား {0} တန်ဖိုးများ DocType: DocType,Allow Auto Repeat,အော်တိုထပ် Allow apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ပြသနိုင်ဖို့တန်ဖိုးများကိုအဘယ်သူမျှမ +DocType: DocType,URL for documentation or help,စာရွက်စာတမ်းများသို့မဟုတ်အကူအညီအတွက် URL ကို DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,အီးမေးလ်ပို့ရန် Template ကို apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,အောင်မြင်စွာ {0} စံချိန် updated ။ apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},အသုံးပြုသူ {0} စာရွက်စာတမ်း {1} များအတွက်အခန်းကဏ္ဍခွင့်ပြုချက်မှတဆင့် DOCTYPE လက်လှမ်းရှိသည်ပါဘူး apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,login လုပ်လို့ရပါတယ်နှင့် password ကိုနှစ်ဦးစလုံးမလိုအပ် +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,ခွင့်ပြုပါ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,နောက်ဆုံးပေါ်စာရွက်စာတမ်းရဖို့ refresh ပေးပါ။ DocType: User,Security Settings,လုံခြုံရေး settings apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,စစ်ကြောင်း Add @@ -4002,6 +4142,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Meta Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},ပူးတွဲ {0} ကိုရှာဖွေပေးပါ: {1} DocType: Web Page,Set Meta Tags,Meta Tags: Set +DocType: Email Account,Use SSL for Outgoing,အထွက်အတွက် SSL ကိုသုံးပါ 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: S3 Backup Settings,Backup Limit,Backup ကိုကန့်သတ် DocType: Dashboard Chart,Line,လိုင်း @@ -4034,4 +4175,3 @@ DocType: DocField,Ignore User Permissions,အသုံးပြုသူခွ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,အောင်မြင်စွာသည်ကယ်တင်ခြင်းသို့ရောက် apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,သင်တို့၏နိမိတ်လက္ခဏာ-up ကအတည်ပြုရန်သင်၏စီမံအုပ်ချုပ်သူကိုမေးပေးပါ DocType: Domain Settings,Active Domains,active ကိုဒိုမိန်း -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,show ကို Log in ဝင်ရန် diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv index 9320c7eee1..20ec2f6c3e 100644 --- a/frappe/translations/nl.csv +++ b/frappe/translations/nl.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Selecteer een veld Aantal. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Importbestand laden ... DocType: Assignment Rule,Last User,Laatste gebruiker -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Een nieuwe taak, {0}, is aan u toegewezen door {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Standaardwaarden sessie opgeslagen apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Bestand opnieuw laden DocType: Email Queue,Email Queue records.,E-mail Queue verslagen. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Boom DocType: User,User Emails,gebruiker Emails DocType: User,Username,Gebruikersnaam apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip importeren +DocType: Scheduled Job Type,Create Log,Maak logboek apps/frappe/frappe/model/base_document.py,Value too big,Waarde te groot DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Maandelijks DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Inschakelen Binnenkomend apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Gevaar -DocType: Address,Email Address,E-mailadres +apps/frappe/frappe/www/login.py,Email Address,E-mailadres DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Melding 'Ongelezen' verstuurd apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Exporteren niet toegestaan. Je hebt rol {0} nodig om te kunnen exporteren . @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,Wordt gepubliceerd Field DocType: GCalendar Settings,GCalendar Settings,GCalendar-instellingen DocType: Email Group,Email Group,E-mail Group +apps/frappe/frappe/__init__.py,Only for {},Alleen voor {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Kon gebeurtenis {0} niet verwijderen uit Google Agenda, foutcode {1}." DocType: Event,Pulled from Google Calendar,Getrokken uit Google Agenda DocType: Note,Seen By,Gezien door apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Meerdere toevoegen -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Je hebt wat energiepunten verdiend apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Geen geldige gebruikersafbeelding. DocType: Energy Point Log,Reverted,teruggekeerd DocType: Success Action,First Success Message,Eerste succesbericht @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Niet zoals apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet zijn {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Wijzig veldeigenschappen (verberg, alleen-lezen, toestemming, etc. )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Waarderen +DocType: Notification Settings,Document Share,Document delen DocType: Workflow State,lock,slot apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Instellingen voor Contact Pagina. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator Gelogd In @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Indien ingeschakeld, wordt het document gemarkeerd als zichtbaar, de eerste keer dat een gebruiker het opent" DocType: Auto Repeat,Repeat on Day,Herhaal op dag DocType: DocField,Color,Kleur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Alles als gelezen markeren DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right,inspringing-rechts DocType: Has Role,Has Role,Heeft Rol @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback weergeven DocType: DocType,Default Print Format,Standaard Print Format DocType: Workflow State,Tags,labels +DocType: Onboarding Slide,Slide Type,Type dia apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Geen: Einde van de Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} veld kan niet worden ingesteld als uniek {1}, omdat er niet uniek bestaande waarden" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Document Types @@ -136,7 +139,6 @@ DocType: Language,Guest,Gast DocType: DocType,Title Field,Titelveld DocType: Error Log,Error Log,Error log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Ongeldige URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Laatste 7 dagen apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Herhalingen zoals "abcabcabc" zijn slechts iets moeilijker te raden dan "abc" DocType: Notification,Channel,Kanaal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Als u denkt dat dit niet is toegestaan, wijzigt u het beheerderswachtwoord." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Klant apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Selecteer Kolom apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Dit formulier is gewijzigd nadat u het hebt geladen DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Meldingslogboek DocType: System Settings,"If not set, the currency precision will depend on number format","Indien niet ingesteld, zal de valutaprecisie afhangen van het nummerformaat" DocType: System Settings,"If not set, the currency precision will depend on number format","Indien niet ingesteld, zal de valutaprecisie afhangen van het nummerformaat" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Di apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Verstuur DocType: Workflow Action Master,Workflow Action Name,Workflow Actie Naam apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan niet worden samengevoegd -DocType: Web Form Field,Fieldtype,Veldtype +DocType: Onboarding Slide Field,Fieldtype,Veldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Niet een zip-bestand DocType: Global Search DocType,Global Search DocType,Globaal zoeken DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,E-mail verzonden? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Wissel diagram apps/frappe/frappe/desk/form/save.py,Did not cancel,Niet geannuleerd DocType: Social Login Key,Client Information,Klanteninformatie +DocType: Energy Point Rule,Apply this rule only once per document,Pas deze regel slechts eenmaal per document toe DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Alleen lezen hangt af van apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Aangemeld als Gast of Beheerder DocType: Email Account,UNSEEN,ONGEZIEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Bestandsbeheer @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Reden 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Geen activiteit +DocType: Server Script,Script Manager,Scriptbeheer +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Geen activiteit apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps van derden apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Geen evenementen vandaag apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Je kunt jezelf geen beoordelingspunten geven apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType moet Submitterbaar zijn voor het geselecteerde Doc Event DocType: Workflow State,circle-arrow-up,cirkel-pijl-up @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Niet toegestaan voor {0}: {1}. Beperkt veld: {2} 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,You are not allowed to delete a standard Website Theme,Het is niet toegestaan om een standaard website thema verwijderen +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Maak je eerste {0} DocType: Data Import,Log Details,Log Details DocType: Workflow Transition,Example,Voorbeeld DocType: Webhook Header,Webhook Header,Webhook Header @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat achtergrond apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Markeer als gelezen apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} updaten +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Er bestaat al een Onboarding-dia <b>{0}</b> met dezelfde diavolgorde apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Uitschakelen Report DocType: Translation,Contributed Translation Doctype Name,Bijgedragen vertaling Doctype Naam +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuratie> Formulier aanpassen DocType: PayPal Settings,Redirect To,omleiden naar DocType: Data Migration Mapping,Pull,Trekken DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formaat : frappe.query_reports ['REPORTNAME'] = { } @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Interne record van document DocType: Energy Point Settings,Review Levels,Beoordeling niveaus DocType: Workflow State,Comment,Reactie DocType: Data Migration Plan,Postprocess Method,Postprocess-methode +DocType: DocType Action,Action Type,actie type apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Neem foto DocType: Assignment Rule,Round Robin,Rond Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",U kunt Ingezonden documenten wijzigen door deze te annuleren en vervolgens te wijzigen. @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Opslaan als DocType: Comment,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Toon meer details +DocType: Server Script,Before Submit,Voordat indienen 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,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,Archive,Archief @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Verkeerde veldnaam <b>{0}</b> in add_fetch-configuratie van aangepast script apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Selecteer Google Contacten waarnaar contact moet worden gesynchroniseerd. DocType: Web Page,Main Section (HTML),Hoofdsectie (HTML) +DocType: Scheduled Job Type,Annual,jaar- DocType: Workflow State,headphones,hoofdtelefoon apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Wachtwoord nodig of selecteer afwachting wachtwoord DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,bijv. antwoord@uwbedrijf.nl. Alle antwoorden zullen op deze inbox binnenkomen. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook-URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Bepaalt de volgorde van de dia in de wizard. Als de dia niet wordt weergegeven, moet de prioriteit worden ingesteld op 0." DocType: Data Migration Run,Current Mapping,Huidige toewijzing apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Geldig e-mailadres en naam vereist apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Maak alle bijlagen privé @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Overgang Regels apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Alleen eerste {0} rijen in voorbeeld weergeven apps/frappe/frappe/core/doctype/report/report.js,Example:,Voorbeeld: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,beperkingen DocType: Workflow,Defines workflow states and rules for a document.,Definieert workflow-staten en regels voor een document. DocType: Workflow State,Filter,filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Controleer het foutenlogboek voor meer informatie: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} afgemeld: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Informatie apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0} : Kan niet op ""In te dienen"" gezet worden indien niet indienbaar" DocType: Transaction Log,Row Index,Rij-index DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,knop Help DocType: Kanban Board Column,purple,Purper DocType: About Us Settings,Team Members,Teamleden +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Voert geplande taken slechts eenmaal per dag uit voor inactieve sites. Standaard 4 dagen indien ingesteld op 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Geplande taak DocType: Custom DocPerm,Permissions,Machtigingen apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks voor interne integratie DocType: Dropbox Settings,Allow Dropbox Access,Laat Dropbox Access @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scan DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Queue DocType: Access Log,Columns / Fields,Kolommen / velden apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets voor afdrukformaten +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Het veld Aggregatiefunctie is vereist om een dashboarddiagram te maken apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Kan open {0} niet identificeren. Probeer iets anders. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Uw informatie is ingediend apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Gebruiker {0} kan niet worden verwijderd @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Veldnaam DocType: Assignment Rule,Assign To Users,Toewijzen aan gebruikers apps/frappe/frappe/public/js/frappe/utils/utils.js,or,of apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,module naam ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Voortzetten +DocType: Onboarding Slide,Continue,Voortzetten apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google-integratie is uitgeschakeld. DocType: Custom Field,Fieldname,Veldnaam DocType: Workflow State,certificate,certificaat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Controleren ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Uw opdracht op {0} {1} is verwijderd apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Eerste data kolom moet leeg zijn. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Alle versies apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Bekijk reactie @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Beperken IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Niet in staat om e-mails te verzenden op dit moment apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Kon gebeurtenis {0} in Google Agenda, foutcode {1} niet bijwerken." +DocType: Notification Log,Email Content,E-mail inhoud apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Zoek of typ een opdracht DocType: Activity Log,Timeline Name,Timeline Naam apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Er kan slechts één {0} worden ingesteld als primair. DocType: Email Account,e.g. smtp.gmail.com,bv smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Voeg een nieuwe regel toe DocType: Contact,Sales Master Manager,Sales Master Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,U moet JavaScript inschakelen om uw app te laten werken. DocType: User Permission,For Value,Voor waarde DocType: Event,Google Calendar ID,Google Agenda-ID apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Veld LDAP-middelste naam apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} van {1} importeren DocType: GCalendar Account,Allow GCalendar Access,GCalendar-toegang toestaan apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} is een verplicht veld +DocType: DocType,Documentation Link,Documentatielink apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login token vereist apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Maandelijkse rang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selecteer meerdere lijstitems @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,File-URL DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Abonnees toevoegen +DocType: Notification Log,Energy Point,Energiepunt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Geplande evenementen voor vandaag DocType: Google Calendar,Push to Google Calendar,Push naar Google Agenda DocType: Notification Recipient,Email By Document Field,E-mail Door Document Field @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Weg DocType: Currency,Fraction Units,Fractie Units apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} van {1} tot {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Markeer als gedaan DocType: Chat Message,Type,Type DocType: Google Settings,OAuth Client ID,OAuth-client-ID DocType: Auto Repeat,Subject,Onderwerp apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Terug naar bureau DocType: Web Form,Amount Based On Field,Bedrag op basis van Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} heeft geen versies bijgehouden. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Gebruiker is verplicht voor Share DocType: DocField,Hidden,verborgen DocType: Web Form,Allow Incomplete Forms,Laat Onvolledig ingevulde formulieren @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Controleer uw e-mail voor verificatie apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold kan niet aan het einde van de vorm DocType: Communication,Bounced,Gebouncet +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,van DocType: Deleted Document,Deleted Name,verwijderde Naam apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Systeem en gebruikers van de website DocType: Workflow Document State,Doc Status,Doc Status @@ -527,6 +552,7 @@ DocType: Language,Language Code,taalcode DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Opmerking: standaard worden e-mails voor mislukte back-ups verzonden. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Filter toevoegen apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS verzonden naar volgende nummers: {0} +DocType: Notification Settings,Assignments,opdrachten apps/frappe/frappe/utils/data.py,{0} and {1},{0} en {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Een gesprek beginnen. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Voeg altijd "Concept" Heading for printing conceptdocumenten @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Huidige toewijzingstart apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail is gemarkeerd als spam DocType: Comment,Website Manager,Website Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,File Upload Disconnected. Probeer het opnieuw. +DocType: Data Import Beta,Show Failed Logs,Mislukte logboeken weergeven apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,vertaalwerk apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,U selecteerde Ontwerp of Geannuleerde documenten apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Document {0} is ingesteld op staat {1} op {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,document wachtrij DocType: GSuite Templates,Destination ID,Bestemming ID DocType: Desktop Icon,List,lijst DocType: Activity Log,Link Name,Link Naam +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Je hebt \ DocType: System Settings,mm/dd/yyyy,mm/dd/jjjj +DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ongeldig wachtwoord: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ongeldig wachtwoord: DocType: Print Settings,Send document web view link in email,Stuur document web view koppeling in de email @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,donker grijs apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Succesvolle: {0} tot {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Laten vallen +DocType: Dashboard Chart,Aggregate Function Based On,Totale functie gebaseerd op apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Gelieve een tweede om wijzigingen aan te brengen apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Druk op Enter om te bewaren apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF generatie mislukt vanwege gebroken image koppelingen @@ -617,7 +647,9 @@ DocType: Notification,Days Before,Dagen voor apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dagelijkse evenementen moeten op dezelfde dag eindigen. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Bewerk... DocType: Workflow State,volume-down,volume-omlaag +DocType: Onboarding Slide,Help Links,Help-links apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Toegang niet toegestaan vanaf dit IP-adres +DocType: Notification Settings,Enable Email Notifications,E-mailmeldingen inschakelen apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Stuur Kennisgeving aan DocType: DocField,Collapsible,Inklapbaar @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Laatste back-up aan DocType: Customize Form Field,Customize Form Field,Aanpassen formulierveld DocType: Energy Point Rule,For Document Event,Voor documentgebeurtenis DocType: Website Settings,Chat Room Name,Chat Room Name +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,onveranderd DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Aanvinken welke documenten leesbaar zijn voor een gebruiker DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,Gebr DocType: Auto Repeat,Quarterly,Kwartaal apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Altijd apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Illegale documentstatus voor {0} DocType: Email Account,Enable Auto Reply,Inschakelen Automatisch Antwoord apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Niet Gezien @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Beric DocType: Email Account,Notify if unreplied,Houd indien Onbeantwoorde apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Scan de QR-code en voer de weergegeven code in. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Verlopen inschakelen +DocType: Scheduled Job Type,Hourly Long,Elk uur lang DocType: System Settings,Minimum Password Score,Minimum wachtwoord score DocType: System Settings,Minimum Password Score,Minimum wachtwoord score DocType: DocType,Fields,Velden @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tabl apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Back-up voltooid! apps/frappe/frappe/config/desktop.py,Developer,Ontwikkelaar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Gemaakt +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Volg de instructies in de volgende link om dit in te schakelen: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in rij {1} kan niet zowel URL en onderliggende items bevatten apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Er moet minstens één rij zijn voor de volgende tabellen: {0} DocType: Print Format,Default Print Language,Standaard afdruktaal apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Voorouders van apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan niet worden verwijderd +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Geen mislukte logboeken apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Nog geen reacties apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Installeer alstublieft SMS voordat u deze instelt als een verificatiemethode, via SMS-instellingen" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Zowel DocType en Naam verplicht @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,Voettekst onderdelen apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Standaardwaarde DocType: Auto Repeat,Daily,Dagelijks +DocType: Onboarding Slide,Max Count,Max. Aantal apps/frappe/frappe/config/users_and_permissions.py,User Roles,Gebruikersrollen DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Eigenschap Setter overschrijft een standaard DocType of Field woning apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan niet bijwerken : Onjuiste / verlopen Link . @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,gastheer DocType: Data Import Beta,Import File,Importeer bestand +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Sjabloonfout apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Column <b>{0}</b> al bestaan. DocType: ToDo,High,Hoog apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nieuw evenement @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,Toon in filter DocType: Address,Daman and Diu,Daman en Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Project DocType: Address,Personal,Persoonlijk +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Instellingen voor onbewerkt afdrukken ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Zie https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region voor meer informatie. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Hernoemen DocType: Email Queue,Show as cc,Toon als cc @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Neem video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Inleidende informatie voor het Contactformulier DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,duim-omlaag +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Documenten annuleren DocType: User,Send Notifications for Email threads,Verzend meldingen voor e-mailthreads apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Niet in Developer Mode @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Bestandskop DocType: DocField,In Global Search,In Global Search DocType: System Settings,Brute Force Security,Brute Force-beveiliging DocType: Workflow State,indent-left,inspringing-links -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar geleden apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Het is riskant om dit bestand te verwijderen: {0}. Neem dan contact op met uw systeembeheerder. DocType: Currency,Currency Name,Valutanaam apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,geen e-mails @@ -765,10 +805,12 @@ DocType: Energy Point Rule,User Field,Gebruikersveld DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Druk op Verwijderen apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} al afgemeld voor {1} {2} +DocType: Scheduled Job Type,Stopped,Gestopt apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Niet verwijderd apps/frappe/frappe/desk/like.py,Liked,Vond apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Nu verzenden apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standaard DocType kan niet standaard afdrukformaat hebben, gebruik maken van formulier aanpassen" +DocType: Server Script,Allow Guest,Gast toestaan DocType: Report,Query,Query DocType: Customize Form,Sort Order,Sorteervolgorde apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'In lijst weergave' niet toegestaan voor type {0} in rij {1} @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Twee Factor Authentication methode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stel eerst de naam in en sla de record op. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 records +DocType: DocType Link,Link Fieldname,Veldnaam koppelen apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Gedeeld met {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Afmelden DocType: View Log,Reference Name,Referentie Naam apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Verander gebruiker +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Eerste apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update vertalingen DocType: Error Snapshot,Exception,Uitzondering DocType: Email Account,Use IMAP,Met IMAP @@ -808,6 +852,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Regels met betrekking tot de overgang van de staat in de workflow. DocType: File,Folder,Map DocType: Website Route Meta,Website Route Meta,Website Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Nieuwsbrief Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Optie 1 @@ -834,7 +879,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ins apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Kaarten configureren DocType: User,Last IP,Laatste IP- apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Voeg een onderwerp toe aan uw e-mail -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Er is een nieuw document {0} gedeeld met u {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} keerde terug {1} DocType: Email Account,Track Email Status,Volg e-mailstatus @@ -887,6 +931,7 @@ DocType: Email Account,Default Outgoing,Standaard uitgaande DocType: Workflow State,play,spelen apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klik op onderstaande link om uw registratie te voltooien en een nieuw wachtwoord in te stellen apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Niet toegevoegd +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} behaalde {1} punten voor {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Geen E-mailaccounts Assigned DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Neem contact met ons op Instellingen @@ -895,6 +940,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Zoeken .. DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximale Attachment Limiet voor dit record bereikt. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Zoeken op bestandsnaam of extensie +DocType: Onboarding Slide,Slide Title,Titel dia DocType: Notification,View Properties (via Customize Form),Bekijk Properties (via Customize Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik op een bestand om het te selecteren. DocType: Note Seen By,Note Seen By,Opmerking gezien door @@ -921,13 +967,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Deel URL DocType: System Settings,Allow Consecutive Login Attempts ,Sta opeenvolgende inlogpogingen toe apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Er is een fout opgetreden tijdens het betalingsproces. Contacteer ons alsjeblieft. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Als Type dia de optie Maken of Instellingen is, moet er een methode 'create_onboarding_docs' zijn in het {ref_doctype} .py-bestand dat moet worden uitgevoerd nadat de dia is voltooid." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dagen geleden DocType: Email Account,Awaiting Password,In afwachting van Password DocType: Address,Address Line 1,Adres Lijn 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Niet Nakomelingen van DocType: Contact,Company Name,Bedrijfsnaam DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Instellingen ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,naar uw browser apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,opnemer @@ -987,6 +1033,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Houd bij of uw e-mail door de ontvanger is geopend. <br> Opmerking: als u naar meerdere ontvangers verzendt, zelfs als 1 ontvanger de e-mail leest, wordt deze beschouwd als "Geopend"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ontbrekende waarden vereist apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google Contacten toegang toestaan +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Beperkt DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Markeren als ongelezen DocType: Activity Log,Operation,Operatie @@ -1040,6 +1087,7 @@ DocType: Web Form,Allow Print,laat Print DocType: Communication,Clicked,Geklikt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Volg niet apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Geen toestemming om '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel het standaard e-mailaccount in via Setup> Email> Email Account apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Gepland voor sturen DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,Bestandsback-up @@ -1048,12 +1096,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Geen {0} gevo apps/frappe/frappe/config/customization.py,Add custom forms.,Voeg aangepaste formulieren. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} van {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,dit document ingediend -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuratie> Gebruikersrechten apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Het systeem biedt een groot aantal vooraf gedefinieerde rollen . U kunt nieuwe rollen toevoegen om specifiekere machtigingen in te stellen . DocType: Communication,CC,CC DocType: Country,Geo,Geo- DocType: Data Migration Run,Trigger Name,Triggernaam -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domeinen +DocType: Onboarding Slide,Domains,Domeinen DocType: Blog Category,Blog Category,Blog Categorie apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Kan niet toewijzen, omdat volgende voorwaarde mislukt:" DocType: Role Permission for Page and Report,Roles HTML,Rollen HTML @@ -1094,7 +1141,6 @@ DocType: Assignment Rule Day,Saturday,Zaterdag DocType: User,Represents a User in the system.,Vertegenwoordigt een gebruiker in het systeem. DocType: List View Setting,Disable Auto Refresh,Schakel Auto Refresh uit DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","De taak {0}, die u hebt toegewezen aan {1}, is gesloten." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sluit dit venster DocType: Print Format,Print Format Type,Print Formaat Type DocType: Newsletter,A Lead with this Email Address should exist,Een Lead met dit e-mailadres zou moeten bestaan @@ -1111,6 +1157,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP-instellingen voor apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,kies een DocType: Data Export,Filter List,Filterlijst DocType: Data Export,Excel,uitmunten +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Automatisch Antwoord DocType: Data Migration Mapping,Condition,Voorwaarde apps/frappe/frappe/utils/data.py,{0} hours ago,{0} uur geleden @@ -1129,12 +1176,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Inzender DocType: Communication,Sent Read Receipt,Verzonden Leesbevestiging DocType: Email Queue,Unsubscribe Method,Afmelden Methode +DocType: Onboarding Slide,Add More Button,Knop Meer toevoegen DocType: GSuite Templates,Related DocType,Gerelateerd DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Bewerken om inhoud toe te voegen apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Selecteer talen apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kaart details apps/frappe/frappe/__init__.py,No permission for {0},Geen toestemming voor {0} DocType: DocType,Advanced,Geavanceerd +DocType: Onboarding Slide,Slide Image Source,Schuif Afbeeldingsbron apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Lijkt API Key of API Secret is verkeerd !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Referentie: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Mvr @@ -1151,6 +1200,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Stam DocType: DocType,User Cannot Create,Gebruiker kan niet aanmaken apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Met succes gedaan apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,toegang Dropbox is goedgekeurd! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Weet u zeker dat u {0} wilt samenvoegen met {1}? DocType: Customize Form,Enter Form Type,Voer Form Type in DocType: Google Drive,Authorize Google Drive Access,Autoriseer Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Ontbrekende parameter Kanban-bordnaam @@ -1160,7 +1210,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Het toestaan DocType , DocType . Wees voorzichtig !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Aangepaste Formaten voor afdrukken, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Som van {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Geupdate naar nieuwe versie DocType: Custom Field,Depends On,Hangt af van DocType: Kanban Board Column,Green,Groen DocType: Custom DocPerm,Additional Permissions,Additionele Machtigingen @@ -1188,6 +1237,7 @@ DocType: Energy Point Log,Social,sociaal apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Agenda - Kan geen agenda maken voor {0}, foutcode {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Rij bewerken DocType: Workflow Action Master,Workflow Action Master,Workflow Actie Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Verwijder alles DocType: Custom Field,Field Type,Veldtype apps/frappe/frappe/utils/data.py,only.,alleen. DocType: Route History,Route History,Route geschiedenis @@ -1224,11 +1274,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Wachtwoord vergeten? DocType: System Settings,yyyy-mm-dd,jjjj-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverfout +DocType: Server Script,After Delete,Na verwijderen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Bekijk alle eerdere rapporten. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Inloggen Id is vereist DocType: Website Slideshow,Website Slideshow,Website Diashow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Geen gegevens DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link dat is de homepagina van de site . Standaard Links (index , inloggen, producten , blog , over , contact)" +DocType: Server Script,After Submit,Na verzenden apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Authenticatie is mislukt tijdens het ontvangen van e-mails van e-mail account {0}. Bericht van server: {1} DocType: User,Banner Image,Banner Afbeelding DocType: Custom Field,Custom Field,Aangepast veld @@ -1269,15 +1321,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Als de gebruiker een rol gecontroleerd heeft, dan is de gebruiker wordt een "Systeem". "Systeem" heeft toegang tot de desktop" DocType: System Settings,Date and Number Format,Datum en Nummer Formaat apps/frappe/frappe/model/document.py,one of,Een van de -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuratie> Formulier aanpassen apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Het controleren van het ene moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Show-tags DocType: DocField,HTML Editor,HTML-editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker +DocType: DocType,Actions,Acties DocType: Workflow State,align-justify,align-justify DocType: User,Middle Name (Optional),Tussenvoegsel (optioneel) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Niet toegestaan @@ -1292,6 +1342,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,geen result DocType: System Settings,Security,Beveiliging apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Gepland om te sturen naar {0} ontvangers apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Besnoeiing +DocType: Server Script,After Save,Na opslaan apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},hernoemd van {0} tot {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} van {1} ({2} rijen met kinderen) DocType: Currency,**Currency** Master,**Valuta** Stam @@ -1318,16 +1369,19 @@ DocType: Prepared Report,Filter Values,Filterwaarden DocType: Communication,User Tags,Gebruiker-tags DocType: Data Migration Run,Fail,mislukken DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Laatste uitvoering DocType: Data Migration Run,Pull Failed,Trek mislukt apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Kaarten tonen / verbergen DocType: Communication,Feedback Request,Terugkoppeling Request apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Gegevens importeren uit CSV / Excel-bestanden. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Na velden ontbreken: +DocType: Notification Log,From User,Van gebruiker apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} annuleren DocType: Web Page,Main Section,Hoofd Sectie DocType: Page,Icon,pictogram apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Inclusief symbolen, cijfers en hoofdletters in het wachtwoord" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Inclusief symbolen, cijfers en hoofdletters in het wachtwoord" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configureer meldingen voor vermeldingen, opdrachten, energiepunten en meer." DocType: DocField,Allow in Quick Entry,Toestaan bij snel invoeren apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/jjjj @@ -1359,7 +1413,6 @@ DocType: Website Theme,Theme URL,Thema-URL DocType: Customize Form,Sort Field,Sorteren Veld DocType: Razorpay Settings,Razorpay Settings,Razorpay Instellingen apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Filter bewerken -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Voeg meer toe DocType: System Settings,Session Expiry Mobile,Session Vervaldatum Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Onjuiste gebruiker of wachtwoord apps/frappe/frappe/templates/includes/search_box.html,Search results for,zoekresultaten voor @@ -1375,8 +1428,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energiepuntregel DocType: Communication,Delayed,Vertraagd apps/frappe/frappe/config/settings.py,List of backups available for download,Lijst van back-ups te downloaden +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Probeer de nieuwe gegevensimport apps/frappe/frappe/www/login.html,Sign up,Aanmelden apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rij {0}: niet toegestaan verplicht voor standaardvelden uitschakelen +DocType: Webhook,Enable Security,Schakel beveiliging in apps/frappe/frappe/config/customization.py,Dashboards,dashboards DocType: Test Runner,Output,uitgang DocType: Milestone,Track Field,Volg veld @@ -1384,6 +1439,7 @@ DocType: Notification,Set Property After Alert,Eigenschap instellen na alarmerin apps/frappe/frappe/config/customization.py,Add fields to forms.,Voeg velden toe aan formulieren apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Voeg recensie toe +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} heeft een nieuwe taak {1} {2} aan u toegewezen apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Lettergrootte (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Alleen standaard DocTypes mogen worden aangepast vanuit het formulier Aanpassen. DocType: Email Account,Sendgrid,SendGrid @@ -1395,8 +1451,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Stel filters in DocType: Contact Us Settings,Email ID,E-mail-ID DocType: Energy Point Rule,Multiplier Field,Vermenigvuldiger veld +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Kan Razorpay-bestelling niet maken. Neem contact op met de beheerder DocType: Dashboard Chart,Time Interval,Tijdsinterval DocType: Activity Log,Keep track of all update feeds,Blijf op de hoogte van alle update feeds +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} heeft een document {1} {2} met u gedeeld DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Een lijst van de middelen die de Client App toegang zal moeten nadat de gebruiker toelaat. <br> bijv project DocType: Translation,Translated Text,vertaalde tekst DocType: Contact Us Settings,Query Options,Query-opties @@ -1415,6 +1473,7 @@ DocType: DefaultValue,Key,Sleutel DocType: Address,Contacts,Contacten DocType: System Settings,Setup Complete,Installatie voltooid apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Verslag van alle documenten aandelen +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importsjabloon moet van het type .csv, .xlsx of .xls zijn" apps/frappe/frappe/www/update-password.html,New Password,Nieuw wachtwoord apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} ontbrekende apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Sorry! Je kunt niet automatisch gegenereerde opmerkingen verwijderen @@ -1431,6 +1490,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Rennen DocType: Blog Post,Content (HTML),Inhoud (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Klaargemaakt voor DocType: Personal Data Download Request,User Name,Gebruikersnaam DocType: Workflow State,minus-sign,min-teken apps/frappe/frappe/public/js/frappe/request.js,Not Found,Niet gevonden @@ -1438,11 +1498,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Geen {0} toestemming apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export Custom Machtigingen apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Geen items gevonden. DocType: Data Export,Fields Multicheck,Velden Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Compleet DocType: Activity Log,Login,Login DocType: Web Form,Payments,Betalingen apps/frappe/frappe/www/qrcode.html,Hi {0},Hoi {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-integratie. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} heeft uw punten teruggezet op {1} {2} DocType: System Settings,Enable Scheduled Jobs,Inschakelen Geplande Jobs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Opmerkingen: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inactief @@ -1467,6 +1527,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mail apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Toelatingsfout apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Naam van {0} kan niet {1} zijn DocType: User Permission,Applicable For,Toepasselijk voor +DocType: Dashboard Chart,From Date,Van Datum apps/frappe/frappe/core/doctype/version/version_view.html,Success,Succes apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessie verlopen apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessie verlopen @@ -1479,7 +1540,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; niet toegelaten in conditie DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,afbeelding -apps/frappe/frappe/www/complete_signup.html,Complete,Voltooien +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Voltooien DocType: DocType,Image Field,beeldveld DocType: Print Format,Custom HTML Help,Aangepaste HTML Help DocType: LDAP Settings,Default Role on Creation,Standaardrol bij creatie @@ -1487,6 +1548,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Volgend Stadium DocType: User,Block Modules,Block Modules DocType: Print Format,Custom CSS,Aangepaste CSS +DocType: Energy Point Rule,Apply Only Once,Slechts eenmaal toepassen apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Voeg een reactie toe DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Genegeerd: {0} tot {1} @@ -1498,6 +1560,7 @@ DocType: Email Account,Default Incoming,Standaard Inkomende DocType: Workflow State,repeat,herhalen DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Waarde moet een van {0} zijn +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Annuleer alle documenten 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Ga naar {0} lijst apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hulp bij zoeken @@ -1506,6 +1569,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Geregistree apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,De automatische herhaling voor dit document is uitgeschakeld. DocType: DocType,Hide Copy,Verberg Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Wis alle rollen +DocType: Server Script,Before Save,Voordat u opslaat apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} moet uniek zijn apps/frappe/frappe/model/base_document.py,Row,Rij apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & e-mailsjabloon" @@ -1516,7 +1580,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Succesvol geïmporteerd {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Stuur unsubscribe bericht e-mail -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Titel bewerken apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Veldnaam die de DocType voor deze link veld zal zijn. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documenten aan u toegewezen en door u. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Je kunt dit ook kopiëren en plakken @@ -1548,8 +1611,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Bevestig Afbeelding DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Wachtwoord bijgewerkt +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuratie> Gebruikersrechten apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Stappen om uw login te verifiëren apps/frappe/frappe/utils/password.py,Password not found,Wachtwoord niet gevonden +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Paginalengte DocType: Email Queue,Expose Recipients,Expose Ontvangers apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Toevoegen aan is verplicht voor inkomende mails @@ -1577,6 +1642,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Systeem DocType: Web Form,Max Attachment Size (in MB),Max Bijlage Grootte (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Bestaande account? Aanmelden +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Afdrukinstellingen ... DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rij {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Gebruiker niet toegestaan om {0} te verwijderen: {1} @@ -1598,6 +1664,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Voer uw w DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Toegang Secret DocType: Tag Link,Document Title,Document titel apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verplicht) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar geleden DocType: Social Login Key,Social Login Provider,Social Login Provider apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Nog een reactie toevoegen apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Geen gegevens gevonden in het bestand. Maak het nieuwe bestand opnieuw vast met gegevens. @@ -1612,11 +1679,12 @@ DocType: Workflow State,hand-down,hand-neer apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Geen velden gevonden die kunnen worden gebruikt als een Kanban-kolom. Gebruik het formulier aanpassen om een aangepast veld van het type "Selecteren" toe te voegen. DocType: Address,GST State,GST-staat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Kan niet Annuleren zonder in te dienen +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Gebruiker ({0}) DocType: Website Theme,Theme,Thema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound To Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Open Help DocType: DocType,Is Submittable,Kan ingediend worden -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nieuw vermeld +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nieuw vermeld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Geen nieuwe Google-contacten gesynchroniseerd. DocType: File,Uploaded To Google Drive,Geupload naar Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Waarde voor een controle veld kan 0 of 1 zijn @@ -1628,7 +1696,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Rood DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Document kan niet worden opgeslagen. DocType: Energy Point Rule,Maximum Points,Maximum aantal punten apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mijn instellingen @@ -1658,9 +1726,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} waarderingspunten voor {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rollen kunnen worden ingesteld voor gebruikers vanaf hun gebruikers pagina . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Reactie toevoegen +DocType: Dashboard Chart,Select Date Range,Selecteer datumbereik DocType: DocField,Mandatory,Verplicht apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module exporteren +DocType: Scheduled Job Type,Monthly Long,Maandelijks lang apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : Geen basis machtigingen ingesteld +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Stuur een e-mail naar {0} om het hier te koppelen apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Betekenis van Indienen, Annuleren, Wijzigen" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Actie @@ -1669,7 +1740,6 @@ DocType: Milestone Tracker,Track milestones for any document,Mijlpalen bijhouden DocType: Social Login Key,Identity Details,Identiteitsdetails apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Overgang werkstroomstatus niet toegestaan van {0} naar {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Dashboard weergeven -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nieuw bericht DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,vraag-rapport DocType: Data Import Beta,Template Warnings,Sjabloonwaarschuwingen @@ -1680,18 +1750,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Linked Met apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Bewerk instellingen voor automatische e-mailberichten DocType: Chat Room,Message Count,Aantal berichten DocType: Workflow State,book,boek +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} is gekoppeld aan de volgende ingediende documenten: {2} DocType: Communication,Read by Recipient,Lezen door ontvanger DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Fout in Aangepaste Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Naam apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Geen Machtigingen ingesteld voor deze criteria. DocType: Auto Email Report,Auto Email Report,Auto Email Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nieuw document gedeeld apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Reactie verwijderen? DocType: Address Template,This format is used if country specific format is not found,Dit formaat wordt gebruikt als landspecifiek formaat niet kan worden gevonden DocType: System Settings,Allow Login using Mobile Number,Log in met Mobielnummer apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Indien ingeschakeld, zullen gebruikers die zich aanmelden vanuit een beperkt IP-adres, niet om twee factoren worden gevraagd" +DocType: Server Script,After Cancel,Na annuleren DocType: Auto Repeat,Get Contacts,Contactpersonen ophalen apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Berichten opgeslagen onder {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kolom zonder titel overslaan @@ -1702,6 +1775,7 @@ DocType: User,Login After,Login Na DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Afdrukken DocType: Workflow State,thumbs-up,duim-omhoog +DocType: Notification Log,Mention,Vermelden DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision moet tussen 1 en 6 @@ -1709,7 +1783,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,en apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Dit rapport is gegenereerd op {0} DocType: Error Snapshot,Frames,Frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,toewijzing +DocType: Notification Log,Assignment,toewijzing DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Afbeelding Link DocType: Auto Email Report,Report Filters,rapport Filters @@ -1726,7 +1800,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Event actualiseren onmogelijk apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Verificatiecode is verzonden naar uw geregistreerde e-mailadres. apps/frappe/frappe/core/doctype/user/user.py,Throttled,gesmoord +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Je doelwit apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter moet 4 waarden hebben (doctype, veldnaam, operator, waarde): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Geen naam opgegeven voor {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Toewijzingsregel toepassen apps/frappe/frappe/utils/bot.py,show,tonen apps/frappe/frappe/utils/data.py,Invalid field name {0},Ongeldige veldnaam {0} @@ -1736,7 +1812,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapping van gegevensmigratieplannen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé starten ... DocType: Web Form Field,Max Length,Maximale lengte -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Voor {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,kaart-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Dien een Issue in @@ -1772,6 +1847,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Pagina ontbreekt of verpla apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,beoordelingen DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Betaling gateway-instellingen +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} behaalde {1} punt voor {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Haal bijgevoegde afbeeldingen uit het document DocType: Chat Room,Name,Naam DocType: Contact Us Settings,Skype,Skype @@ -1782,7 +1858,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Open Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Je taal DocType: Dashboard Chart,Average,Gemiddelde apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Voeg een rij toe -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Query moet een SELECT zijn DocType: Auto Repeat,Completed,Voltooid @@ -1842,6 +1917,7 @@ DocType: GCalendar Account,Next Sync Token,Volgende synchronisatietoken DocType: Energy Point Settings,Energy Point Settings,Instellingen energiepunt DocType: Async Task,Succeeded,Geslaagd apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Verplichte velden zijn verplicht in {0} +DocType: Onboarding Slide Field,Align,align apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset Machtigingen voor {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Gebruikers en machtigingen DocType: S3 Backup Settings,S3 Backup Settings,S3 Back-upinstellingen @@ -1858,7 +1934,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Naam van nieuwe afdrukindeling apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik op de onderstaande link om het verzoek goed te keuren DocType: Workflow State,align-left,align-left +DocType: Onboarding Slide,Action Settings,Actie instellingen DocType: User,Defaults,Standaardwaarden +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Gebruik voor vergelijking> 5, <10 of = 324. Gebruik 5:10 voor bereiken (voor waarden tussen 5 en 10)." DocType: Energy Point Log,Revert Of,Terugkeren van apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Samenvoegen met bestaande DocType: User,Birth Date,Geboortedatum @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,in DocType: Notification,Value Change,Waarde Veranderen DocType: Google Contacts,Authorize Google Contacts Access,Autoriseer Google Contacten Toegang apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Alleen Numerieke velden uit rapport weergeven +apps/frappe/frappe/utils/data.py,1 week ago,1 week geleden DocType: Data Import Beta,Import Type,Type invoer DocType: Access Log,HTML Page,HTML-pagina DocType: Address,Subsidiary,Dochteronderneming @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Met briefhoofd apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ongeldige uitgaande Server of Poort DocType: Custom DocPerm,Write,Schrijven -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Alleen Beheerder toegestaan om Query / Script Rapporten maken apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aan het bijwerken DocType: Data Import Beta,Preview,Voorbeeld apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "waarde" is verplicht. Gelieve te specificeren waarde worden bijgewerkt @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Uitnodigen DocType: Data Migration Run,Started,Begonnen apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Gebruiker {0} heeft geen toegang tot dit document DocType: Data Migration Run,End Time,Eindtijd +DocType: Dashboard Chart,Group By Based On,Groeperen op basis van apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selecteer Bijlagen apps/frappe/frappe/model/naming.py, for {0},voor {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,U bent niet gemachtigd om dit document af te drukken @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Controleren DocType: Workflow Document State,Update Field,Veld bijwerken DocType: Chat Profile,Enable Chat,Chat inschakelen DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Laat dit gesprek apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opties niet ingesteld voor link veld {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Wachtrij / werknemer @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Inloggen niet toegestaan op dit moment DocType: Data Migration Run,Current Mapping Action,Huidige toewijzingsactie DocType: Dashboard Chart Source,Source Name,Bron naam -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Geen e-mailaccount gekoppeld aan de gebruiker. Voeg een account toe onder Gebruiker> E-mailinbox. DocType: Email Account,Email Sync Option,E-mail Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rij nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Is vastgezet DocType: Contact Us Settings,Introduction,Introductie +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Hulp nodig? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin wereldwijd apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Gevolgd door DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Reeds in DocType: User Email,Enable Outgoing,Inschakelen Uitgaand DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Custom Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak een nieuw e-mailaccount aan via Instellingen> E-mail> E-mailaccount DocType: Comment,Submitted,Ingediend DocType: Contact,Pulled from Google Contacts,Getrokken uit Google Contacten apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ongeldig verzoek @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home / Test apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Toewijzen aan mij DocType: DocField,Dynamic Link,Dynamische Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Druk op Alt-toets om extra snelkoppelingen in het menu en de zijbalk te activeren +DocType: Dashboard Chart,To Date,Tot Datum DocType: List View Setting,List View Setting,Lijstweergave-instelling apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show mislukte taken -DocType: Event,Details,Details +DocType: Scheduled Job Log,Details,Details DocType: Property Setter,DocType or Field,DocType of Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,U heeft dit document niet meer gevolgd apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primaire kleur @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Lijkt Publicable Key of Secret Key is fout !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Lijkt Publicable Key of Secret Key is fout !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Quick Help voor het instellen van machtigingen -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype te Tags toewijzen apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Toon Terugval apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail is verplaatst naar de prullenbak DocType: Report,Report Builder,Rapport Bouwer @@ -2104,6 +2183,7 @@ DocType: Workflow State,Upload,uploaden DocType: User Permission,Advanced Control,Geavanceerde besturing DocType: System Settings,Date Format,Datumnotatie apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Niet gepubliceerd +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Setup> Printing and Branding> Address Template. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Acties voor workflow ( bijv. goedkeuren , Annuleren) ." DocType: Data Import,Skip rows with errors,Sla rijen met fouten over DocType: Workflow State,flag,vlag @@ -2113,7 +2193,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Docu apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring naar veld DocType: Contact Us Settings,Forward To Email Address,Doorsturen naar e-mailadres DocType: Contact Phone,Is Primary Phone,Is primaire telefoon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Stuur een e-mail naar {0} om het hier te koppelen. DocType: Auto Email Report,Weekdays,Doordeweekse dagen apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} records worden geëxporteerd apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titelveld moet een geldige veldnaam zijn @@ -2121,7 +2200,7 @@ DocType: Post Comment,Post Comment,Plaats een reactie apps/frappe/frappe/config/core.py,Documents,Documenten apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Activiteitenlogboek door DocType: Social Login Key,Custom Base URL,Aangepaste basis-URL -DocType: Email Flag Queue,Is Completed,Is voltooid +DocType: Onboarding Slide,Is Completed,Is voltooid apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Krijg velden apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Bewerk profiel DocType: Kanban Board Column,Archived,Gearchiveerd @@ -2132,11 +2211,12 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Vandaag +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Vandaag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Verzenden na importeren DocType: Error Log,Log of Scheduler Errors,Log van Scheduler Fouten DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help Link DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Indienen apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Bovenliggend element is de naam van het document waaraan de gegevens worden toegevoegd. @@ -2144,7 +2224,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,HOOFDLETTERS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Aangepaste HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Voer mapnaam -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Instellingen> Afdrukken en branding> Adressjabloon. apps/frappe/frappe/auth.py,Unknown User,Onbekende gebruiker apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Selecteer Rol DocType: Comment,Deleted,Verwijderd @@ -2160,7 +2239,7 @@ DocType: Chat Token,Chat Token,Chat token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Grafiek maken apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Niet importeren -DocType: Web Page,Center,Centreren +DocType: Onboarding Slide Field,Center,Centreren DocType: Notification,Value To Be Set,Waarde om te worden ingesteld apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Bewerk {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Eerste Niveau @@ -2168,7 +2247,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Database naam apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Vernieuwen Form DocType: DocField,Select,Kiezen -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Bekijk volledig logboek +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Bekijk volledig logboek DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Eenvoudige Python-expressie, voorbeeld: status == 'Open' en type == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Bestand niet bijgevoegd apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Verbinding verbroken. Sommige functies werken mogelijk niet. @@ -2200,6 +2279,7 @@ DocType: Web Page,HTML for header section. Optional,HTML voor header sectie . fa apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Deze functie is nieuw en nog steeds experimenteel apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maximum {0} rijen toegestaan DocType: Dashboard Chart Link,Chart,tabel +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Global Afmelden apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dit is een veel voorkomende wachtwoord. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Uitzicht @@ -2216,6 +2296,7 @@ DocType: Data Migration Connector,Hostname,hostname DocType: Data Migration Mapping,Condition Detail,Conditiedetail apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Voor valuta {0} moet het minimale transactiebedrag {1} zijn DocType: DocField,Print Hide,Print Verberg +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Naar gebruiker apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Waarde invoeren DocType: Workflow State,tint,tint @@ -2283,6 +2364,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-code voor i apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Toevoegen aan To Do DocType: Footer Item,Company,Bedrijf apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gemiddelde van {0} +DocType: Scheduled Job Log,Scheduled,Geplande DocType: User,Logout from all devices while changing Password,Uitloggen van alle apparaten tijdens het wijzigen van het wachtwoord apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Bevestig wachtwoord apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Er zijn fouten opgetreden. @@ -2308,7 +2390,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Gebruikersrechten bestaan al apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kolom {0} toewijzen aan veld {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Bekijk {0} -DocType: User,Hourly,ieder uur +DocType: Scheduled Job Type,Hourly,ieder uur apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreer OAuth Client App DocType: DocField,Fetch If Empty,Ophalen indien leeg DocType: Data Migration Connector,Authentication Credentials,Verificatiegegevens @@ -2319,10 +2401,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},verkregen door {0} via automatische regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} of {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,U bent er helemaal klaar voor! DocType: Workflow State,trash,prullenbak DocType: System Settings,Older backups will be automatically deleted,Oudere backups worden automatisch verwijderd apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ongeldige toegangssleutel ID of geheime toegangssleutel. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Je hebt wat energiepunten verloren DocType: Post,Is Globally Pinned,Is wereldwijd gepind apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Recente activiteit DocType: Workflow Transition,Conditions,Voorwaarden @@ -2331,6 +2413,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Bevestigd DocType: Event,Ends on,Eindigt op DocType: Payment Gateway,Gateway,Poort DocType: LDAP Settings,Path to Server Certificate,Pad naar servercertificaat +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript is uitgeschakeld in uw browser apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Niet genoeg toestemming om links te zien apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Niet genoeg toestemming om links te zien apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adres titel is verplicht. @@ -2350,7 +2433,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Als dit is aangevinkt, worden rijen met geldige gegevens geïmporteerd en worden ongeldige rijen in een nieuw bestand gedumpt om later te importeren." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document is alleen bewerkbaar door gebruikers van de rol van -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","De taak {0}, die u hebt toegewezen aan {1}, is gesloten door {2}." DocType: Print Format,Show Line Breaks after Sections,Show Line Breaks na Secties DocType: Communication,Read by Recipient On,Lezen door ontvanger op DocType: Blogger,Short Name,Korte Naam @@ -2383,6 +2465,7 @@ DocType: Translation,PR sent,PR verzonden DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Verzend alleen Records bijgewerkt in de laatste X uur DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Verzend alleen Records bijgewerkt in de laatste X uur DocType: Communication,Feedback,Terugkoppeling +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Bijgewerkt naar een nieuwe versie 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Open vertaling apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Deze email is autogenerated DocType: Workflow State,Icon will appear on the button,Pictogram verschijnt op de knop @@ -2421,6 +2504,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Pagina nie DocType: DocField,Precision,Precisie DocType: Website Slideshow,Slideshow Items,Diashow Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Probeer om herhaalde woorden en tekens te vermijden +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Meldingen uitgeschakeld +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Weet u zeker dat u alle rijen wilt verwijderen? DocType: Workflow Action,Workflow State,Workflow Status apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rijen Toegevoegd apps/frappe/frappe/www/list.py,My Account,Mijn Account @@ -2429,6 +2514,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dagen na apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-lade-verbinding actief! DocType: Contact Us Settings,Settings for Contact Us Page,Instellingen voor Contact Pagina +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Schakel afdrukserver in apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} weken geleden DocType: Email Account,Footer,Voettekst @@ -2454,8 +2540,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Waarschuwing apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Dit kan op meerdere pagina's worden afgedrukt DocType: Data Migration Run,Percent Complete,Percentage compleet -DocType: Tag Category,Tag Category,tag Categorie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Gebruik voor vergelijking> 5, <10 of = 324. Gebruik 5:10 voor bereiken (voor waarden tussen 5 en 10)." DocType: Google Calendar,Pull from Google Calendar,Uit Google Agenda halen apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Help DocType: User,Login Before,Login Voor @@ -2465,17 +2549,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Weekends verbergen apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genereert automatisch terugkerende documenten. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Is +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-teken apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Waar voor {0} kan geen lijst worden DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet deze valuta worden geformatteerd? Indien niet ingesteld, dan zal gebruik gemaakt wroden van de systeem standaard" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} documenten verzenden? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Fout bij verbinding maken met QZ-ladetoepassing ... <br><br> De toepassing QZ-lade moet zijn geïnstalleerd en actief zijn om de functie Raw Print te kunnen gebruiken. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klik hier om de QZ-lade te downloaden en te installeren</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klik hier voor meer informatie over Raw Printing</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printertoewijzing apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Gelieve opslaan voordat het bevestigen. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Wilt u alle gekoppelde documenten annuleren? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Toegevoegd {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType kan niet worden veranderd van {0} tot {1} in rij {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rol Machtigingen DocType: Help Article,Intermediate,tussen- +apps/frappe/frappe/config/settings.py,Email / Notifications,E-mail notificaties apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} heeft {1} gewijzigd in {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Geannuleerd document hersteld als Concept DocType: Data Migration Run,Start Time,Starttijd @@ -2492,6 +2580,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ka apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ongeldige ontvanger adres DocType: Workflow State,step-forward,stap-vooruit DocType: System Settings,Allow Login After Fail,Aanmelden na mislukken toestaan +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Stel rol voor de DocType: GCalendar Account,The name that will appear in Google Calendar,De naam die in Google Agenda wordt weergegeven apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Directe kamer met {0} bestaat al. @@ -2508,6 +2597,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Maak een DocType: Contact,Google Contacts,Google Contacten DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Email Rule,Is Spam,is Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Laatste apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} DocType: Data Import Beta,Import Warnings,Waarschuwingen importeren @@ -2519,6 +2609,7 @@ DocType: Workflow State,ok-sign,ok-teken apps/frappe/frappe/config/settings.py,Deleted Documents,Documenten verwijderd apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Het CSV-formaat is hoofdlettergevoelig apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop-icoon bestaat al +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Geef op in welke domeinen de dia's moeten worden weergegeven. Als er niets is opgegeven, wordt de dia standaard in alle domeinen weergegeven." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dupliceer apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Veld {1} in rij {2} kan niet standaard worden verborgen en verplicht DocType: Newsletter,Create and Send Newsletters,Maken en verzenden van nieuwsbrieven @@ -2529,6 +2620,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Agenda-gebeurtenis-ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Bovenliggend"" betekent de bovenliggende tabel waarin deze rij moet worden toegevoegd" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Review punten: +DocType: Scheduled Job Log,Scheduled Job Log,Gepland takenlogboek +DocType: Server Script,Before Delete,Voordat verwijderen apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Gedeeld met apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Voeg bestanden / urls toe en voeg in de tabel toe. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Bericht niet ingesteld @@ -2552,19 +2645,21 @@ DocType: About Us Settings,Settings for the About Us Page,Instellingen voor de p apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Strip-gateway instellingen apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Strip-gateway instellingen apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Afdrukken Verzonden naar de printer! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiepunten +DocType: Notification Settings,Energy Points,Energiepunten +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tijd {0} moet de notatie hebben: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,bv pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Genereer sleutels apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Hiermee worden uw gegevens permanent verwijderd. DocType: DocType,View Settings,Bekijk instellingen +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nieuwe melding DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Verzoekstructuur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Controller methode get_razorpay_order ontbreekt DocType: Personal Data Deletion Request,Pending Verification,wachten op verificatie DocType: Website Meta Tag,Website Meta Tag,Website-metatag DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",Als niet-standaardpoort (bijvoorbeeld 587). Als u in Google Cloud poort 2525 probeert. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Einddatum wissen, omdat dit voor gepubliceerde pagina's niet in het verleden kan zijn." DocType: User,Send Me A Copy of Outgoing Emails,Stuur me een kopie van uitgaande e-mails -DocType: System Settings,Scheduler Last Event,Scheduler Laatste Event DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Voeg Google Analytics ID toe: bv. UA-89XXX57-1. Zoek hulp bij Google Analytics voor meer informatie. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Wachtwoord kan niet meer dan 100 tekens lang zijn DocType: OAuth Client,App Client ID,App Client ID @@ -2593,6 +2688,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nieuw wachtwo apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} deelde dit document met {1} DocType: Website Settings,Brand Image,merk Afbeelding DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importsjabloon moet een koptekst bevatten en minimaal één rij. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Agenda is geconfigureerd. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",Instellen van bovenste navigatiebalk voettekst en logo. DocType: Web Form Field,Max Value,Max Value @@ -2602,6 +2698,7 @@ DocType: User Social Login,User Social Login,Gebruikers sociale login apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} bekritiseerde uw werk op {1} met {2} punt DocType: Contact,All,Alle DocType: Email Queue,Recipient,Ontvanger +DocType: Webhook,Webhook Security,Webhook-beveiliging DocType: Communication,Has Attachment,Heeft bijlage DocType: Address,Sales User,Sales Gebruiker apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop tool om op te bouwen en aan te passen Print Formaten. @@ -2668,7 +2765,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migration ID Field DocType: Dashboard Chart,Last Synced On,Laatst gesynchroniseerd DocType: Comment,Comment Type,Reactie Type DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} bekritiseerde uw werk op {1} {2} DocType: Assignment Rule,Users,Gebruikers DocType: Address,Odisha,Odisha DocType: Report,Report Type,Rapport Type @@ -2694,14 +2790,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Diashow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Eigen goedkeuring is niet toegestaan DocType: GSuite Templates,Template ID,Sjabloon ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Combinatie van Grant Type ( <code>{0}</code> ) en Response Type ( <code>{1}</code> ) niet toegestaan -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nieuw bericht van {0} DocType: Portal Settings,Default Role at Time of Signup,Default Rol op het moment van Inschrijven DocType: DocType,Title Case,Titel Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klik op onderstaande link om uw gegevens te downloaden apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Inbox voor e-mail ingeschakeld voor gebruiker {0} DocType: Data Migration Run,Data Migration Run,Data Migration Run DocType: Blog Post,Email Sent,E-mail verzonden -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Ouder DocType: DocField,Ignore XSS Filter,Negeer XSS-filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,verwijderd apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox back-instellingen @@ -2756,6 +2850,7 @@ DocType: Async Task,Queued,Wachtrij DocType: Braintree Settings,Use Sandbox,Gebruik Sandbox apps/frappe/frappe/utils/goal.py,This month,Deze maand apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nieuwe Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Voor opslaan (verzonden document) DocType: Custom DocPerm,Create,Creëren apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Geen items meer om weer te geven apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Ga naar vorige record @@ -2813,6 +2908,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Verplaatsen naar prullenbak DocType: Web Form,Web Form Fields,Webformulier invulvelden DocType: Data Import,Amended From,Gewijzigd Van +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Voeg een help-videolink toe voor het geval de gebruiker geen idee heeft wat hij in de dia moet invullen. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Waarschuwing: Kan niet vinden {0} in een tabel met betrekking tot {1} DocType: S3 Backup Settings,eu-north-1,eu-noord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Dit document is momenteel in de wachtrij voor de uitvoering. Probeer het opnieuw @@ -2835,6 +2931,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Exporteren van apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Geavanceerd Zoeken apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,U mag de nieuwsbrief niet bekijken. +DocType: Dashboard Chart,Group By,Groeperen volgens DocType: User,Interests,Interesses apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,"Instructies om uw wachtwoord opnieuw in te stellen, zijn naar uw e-mail verzonden" DocType: Energy Point Rule,Allot Points To Assigned Users,Wijs punten toe aan toegewezen gebruikers @@ -2850,6 +2947,7 @@ DocType: Assignment Rule,Assignment Rule,Toewijzingsregel apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Suggereerde Gebruikersnaam: {0} DocType: Assignment Rule Day,Day,Dag apps/frappe/frappe/public/js/frappe/desk.js,Modules,modules +DocType: DocField,Mandatory Depends On,Verplicht hangt af van apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,betaling Succes apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Geen {0} mail DocType: OAuth Bearer Token,Revoked,herroepen @@ -2857,6 +2955,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar en Reacties apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Geen toestemming om een {0} document bij te voegen, schakel aub Afdrukken toestaan voor {0} in de afdrukinstellingen in" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak een nieuw e-mailaccount aan via Instellingen> E-mail> E-mailaccount apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Zie het document op {0} DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel @@ -2872,13 +2971,13 @@ DocType: Currency,Fraction,Fractie apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Evenement gesynchroniseerd met Google Agenda. DocType: LDAP Settings,LDAP First Name Field,LDAP Voornaam Field DocType: Contact,Middle Name,Midden-naam +DocType: DocField,Property Depends On,Eigendom hangt af van DocType: Custom Field,Field Description,Veld Omschrijving apps/frappe/frappe/model/naming.py,Name not set via Prompt,Naam niet ingesteld via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail Postvak IN apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Updaten {0} van {1}, {2}" DocType: Auto Email Report,Filters Display,filters weergeven apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","modified_from" veld moet aanwezig zijn om een wijziging uit te voeren. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} waardeerde uw werk op {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filters opslaan DocType: Address,Plant,Fabriek apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Allen beantwoorden @@ -2919,11 +3018,11 @@ DocType: Workflow State,folder-close,map-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Verslag doen van: DocType: Print Settings,Print taxes with zero amount,Afdrukbelasting met nulbedrag apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} mag niet worden hernoemd +DocType: Server Script,Before Insert,Voor het invoegen DocType: Custom Script,Custom Script,Aangepaste Script DocType: Address,Address Line 2,Adres Lijn 2 DocType: Address,Reference,Referentie apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Toegewezen Aan -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel het standaard e-mailaccount in via Setup> Email> Email Account DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail DocType: Data Import,Action,Actie DocType: GSuite Settings,Script URL,Script URL @@ -2949,11 +3048,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,In lijstweergave DocType: Email Account,Use TLS,gebruik TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Ongeldige login of wachtwoord +DocType: Scheduled Job Type,Weekly Long,Wekelijks lang apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Download Template apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Voeg aangepaste javascript toe aan formulieren. ,Role Permissions Manager,Rol Machtigingen Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Naam van de nieuwe Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Zijbalk verschuiven +DocType: Server Script,After Save (Submitted Document),Na opslaan (ingediend document) DocType: Data Migration Run,Pull Insert,Pull Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maximaal toegestane punten na het vermenigvuldigen van punten met de vermenigvuldigingswaarde (Opmerking: laat dit veld voor geen limiet leeg of stel 0 in) @@ -2973,6 +3074,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP niet geïnstalleerd apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Download met data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},waarden gewijzigd voor {0} {1} +DocType: Server Script,Before Cancel,Voor annuleren DocType: Workflow State,hand-right,hand-rechts DocType: Website Settings,Subdomain,Subdomein DocType: S3 Backup Settings,Region,Regio @@ -3019,12 +3121,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Oud Wachtwoord DocType: S3 Backup Settings,us-east-1,us-oost-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Berichten van {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Om kolommen op te maken, geef de kolom labels in de query." +DocType: Onboarding Slide,Slide Fields,Schuif velden DocType: Has Domain,Has Domain,Heeft domein DocType: User,Allowed In Mentions,Toegestaan in vermeldingen apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Heb je nog geen account? Aanmelden apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Kan ID-veld niet verwijderen apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan wijziging niet doorvoeren indien niet indienbaar DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Ingeschreven documenten apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Gebruikersinstellingen DocType: Report,Reference Report,Referentierapport DocType: Activity Log,Link DocType,Link DocType @@ -3042,6 +3146,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google Agenda-toegang apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,De pagina die u zoekt ontbreekt. Dit kan zijn omdat het wordt verplaatst of er een typefout in de link. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschrijving van lijst pagina, in platte tekst, slechts een paar regels. (Max 140 tekens)" +DocType: Server Script,DocType Event,DocType-evenement apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} zijn verplichte velden DocType: Workflow,Allow Self Approval,Toestaan zelf-goedkeuring DocType: Event,Event Category,Evenement Categorie @@ -3058,6 +3163,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Uw naam apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Verbindingssucces DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Er bestaat al een Onboarding-dia van het diatype Doorgaan. DocType: DocType,Default Sort Field,Standaard sorteerveld DocType: File,Is Folder,Is Folder DocType: Document Follow,DocType,DocType @@ -3096,8 +3202,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Gewijzi DocType: Workflow State,arrow-up,pijl-up DocType: Dynamic Link,Link Document Type,Type document koppelen apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Er moet minimaal één rij zijn voor de {0} tabel +DocType: Server Script,Server Script,Server Script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Om Auto Repeat te configureren, schakelt u "Allow Auto Repeat" in vanaf {0}." DocType: OAuth Bearer Token,Expires In,Verloopt in +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Het aantal keren dat u de set velden wilt herhalen (bijvoorbeeld: als u 3 klanten in de dia wilt, stelt u dit veld in op 3. Alleen de eerste set velden wordt als verplicht in de dia weergegeven)" DocType: DocField,Allow on Submit,Laat op Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Uitzondering Type @@ -3107,6 +3215,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Geplande evenementen apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Vul de waarden voor App Access Key en App Secret Key +DocType: Email Account,Append Emails to Sent Folder,E-mails toevoegen aan map Verzonden DocType: Web Form,Accept Payment,Accepteer Betaling apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selecteer lijstitem apps/frappe/frappe/config/core.py,A log of request errors,Een log van het verzoekfouten @@ -3125,7 +3234,7 @@ DocType: Translation,Contributed,bijgedragen apps/frappe/frappe/config/customization.py,Form Customization,Formulier aanpassen apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Geen actieve sessies DocType: Web Form,Route to Success Link,Route naar succeskoppeling -DocType: Top Bar Item,Right,Rechts +DocType: Onboarding Slide Field,Right,Rechts apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Geen aankomende evenementen DocType: User,User Type,Gebruikerstype DocType: Prepared Report,Ref Report DocType,Ref Rapporteer DocType @@ -3143,6 +3252,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Probeer het opni apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL moet beginnen met 'http: //' of 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Optie 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Dit kan niet ongedaan gemaakt worden DocType: Workflow State,Edit,Bewerken DocType: Website Settings,Chat Operators,Chat Operators DocType: S3 Backup Settings,ca-central-1,ca-centrale-1 @@ -3154,7 +3264,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Standaard voor {0} moet een optie zijn -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categorie apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Rapport met meer dan 10 kolommen ziet er beter uit in de liggende modus. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ongeldige veldnaam: {0} DocType: Milestone,Milestone,Mijlpaal @@ -3163,7 +3272,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Ga naar {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-mails zijn gedempt apps/frappe/frappe/config/integrations.py,Google Services,Google-services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Omhoog -apps/frappe/frappe/utils/data.py,1 weeks ago,1 week ago +DocType: Onboarding Slide,Slide Description,Beschrijving dia DocType: Communication,Error,Fout apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Stel eerst een bericht in DocType: Auto Repeat,End Date,Einddatum @@ -3184,10 +3293,12 @@ DocType: Footer Item,Group Label,Etiket DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacten is geconfigureerd. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 record wordt geëxporteerd +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Geen e-mailaccount gekoppeld aan de gebruiker. Voeg een account toe onder Gebruiker> E-mailinbox. DocType: DocField,Report Hide,Rapport Verbergen apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Boomstructuur niet beschikbaar voor {0} DocType: DocType,Restrict To Domain,Beperkt tot Domein DocType: Domain,Domain,Domein +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ongeldige bestands-URL. Neem contact op met de systeembeheerder. DocType: Custom Field,Label Help,Label Help DocType: Workflow State,star-empty,star-leeg apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Data zijn vaak gemakkelijk te raden. @@ -3212,6 +3323,7 @@ DocType: Workflow State,hand-left,hand-links DocType: Data Import,If you are updating/overwriting already created records.,Als u reeds gemaakte records bijwerkt / overschrijft. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Is wereldwijd DocType: Email Account,Use SSL,Gebruik SSL +DocType: Webhook,HOOK-.####,HAAK-.#### DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Het document kan niet correct worden toegewezen apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ongeldige "depends_on" -uitdrukking @@ -3228,6 +3340,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Laatst vernieuwd apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Voor documenttype DocType: Workflow State,arrow-right,pijl-rechts +DocType: Server Script,API Method,API-methode DocType: Workflow State,Workflow state represents the current state of a document.,Workflow status vertegenwoordigt de huidige toestand van een document. DocType: Letter Head,Letter Head Based On,Briefhoofd op basis van apps/frappe/frappe/utils/oauth.py,Token is missing,Token ontbreekt @@ -3267,6 +3380,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compact Item Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,redirect URL +DocType: Onboarding Slide Field,Placeholder,placeholder DocType: SMS Settings,Enter url parameter for receiver nos,Voer URL-parameter voor de ontvanger nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Gebruik altijd de accountnaam als afzendernaam @@ -3276,7 +3390,6 @@ DocType: Workflow State,Home,Thuis DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Gebruiker kan inloggen met e-mail id of gebruikersnaam DocType: Workflow State,question-sign,vraagteken -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} is uitgeschakeld apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Veld "route" is verplicht voor webweergaven apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Kolom invoegen vóór {0} DocType: Energy Point Rule,The user from this field will be rewarded points,De gebruiker uit dit veld krijgt punten @@ -3301,6 +3414,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Als de eigenaar DocType: Data Migration Mapping,Push,Duwen apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Zet hier bestanden neer DocType: OAuth Authorization Code,Expiration time,vervaltijd +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Open documenten DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Show Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,U moet ingelogd zijn om toegang te krijgen tot {0}. @@ -3316,6 +3430,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Wereldwijde DocType: Desktop Icon,Page,Pagina apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Kon {0} niet in {1} vinden apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Voor- en achternamen door zelf zijn makkelijk te raden. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Document hernoemd van {0} tot {1} apps/frappe/frappe/config/website.py,Knowledge Base,Kennis basis DocType: Workflow State,briefcase,koffer apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Waarde kan niet worden gewijzigd voor {0} @@ -3352,6 +3467,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Formaat apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Schakelen tussen rasterweergave apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Ga naar het volgende record +DocType: System Settings,Time Format,Tijd formaat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ongeldige betaling gateway geloofsbrieven DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dit is het sjabloonbestand dat is gegenereerd met alleen de rijen die een fout bevatten. U zou dit bestand moeten gebruiken voor correctie en import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Instellen Machtigingen op Document Types en Rollen @@ -3395,12 +3511,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Antwoorden apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Pagina's in Bureau (houders plaats) DocType: DocField,Collapsible Depends On,Inklapbaar item hangt af van DocType: Print Style,Print Style Name,Naam afdrukstijl +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Groeperen op veld is vereist om een dashboarddiagram te maken DocType: Print Settings,Allow page break inside tables,Laat pagina-einde in tabellen DocType: Email Account,SMTP Server,SMTP-server DocType: Print Format,Print Format Help,Print Formaat Help apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ruimte moet minimaal één gebruiker hebben. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,tellen +DocType: Dashboard Chart,Group By Type,Groeperen op type apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nieuwe reactie op {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},herstelde {0} en {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Als u wilt bijwerken, selecteert u ""Overschrijven"" anders bestaande rijen worden niet verwijderd." @@ -3411,8 +3529,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Gebruiker DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} moet de indeling hebben: {1} DocType: About Us Settings,Org History Heading,Org Geschiedenis rubriek +DocType: Scheduled Job Type,Scheduled Job Type,Type geplande taak DocType: Print Settings,Allow Print for Cancelled,Laat Print voor Geannuleerde DocType: Communication,Integrations can use this field to set email delivery status,Integraties kunnen dit veld gebruiken om de e-mail status ingevoerd +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,U hebt geen rechten om alle gekoppelde documenten te annuleren. DocType: Web Form,Web Page Link Text,Webpagina linktekst DocType: Page,System Page,Systeempagina DocType: Page,System Page,Systeempagina @@ -3420,6 +3540,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Aanpassingen voor <b>{0}</b> geëxporteerd naar: <br> {1} DocType: Website Settings,Include Search in Top Bar,Inclusief Zoeken in Top Bar +DocType: Scheduled Job Type,Daily Long,Dagelijks lang DocType: GSuite Settings,Allow GSuite access,GSuite toegang verlenen DocType: DocType,DESC,DESC DocType: DocType,Naming,Benaming @@ -3523,6 +3644,7 @@ DocType: Notification,Send days before or after the reference date,Stuur dagen v DocType: User,Allow user to login only after this hour (0-24),Gebruiker mag alleen inloggen na dit uur (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Wijs een voor een na elkaar toe DocType: Integration Request,Subscription Notification,Abonnementsmelding +DocType: Customize Form Field, Allow in Quick Entry ,Toestaan in snelle invoer apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,of bevestig een DocType: Auto Repeat,Start Date,Startdatum apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Waarde @@ -3537,6 +3659,7 @@ DocType: Google Drive,Backup Folder ID,Back-upmap-ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Niet in Developer Mode! Stel in site_config.json of maak DocType 'Aangepast'. DocType: Workflow State,globe,wereldbol DocType: System Settings,dd.mm.yyyy,dd.mm.jjjj +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioriteit DocType: Email Queue,Unsubscribe Param,Afmelden Param DocType: DocType,Hide Sidebar and Menu,Zijbalk en menu verbergen @@ -3548,6 +3671,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Laat Import (via gegevens i apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Zweven DocType: Print Settings,Page Settings,Pagina instellingen +DocType: Notification Settings,Notification Settings,Notificatie instellingen apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Besparing... apps/frappe/frappe/www/update-password.html,Invalid Password,ongeldig wachtwoord apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Succesvol geïmporteerd {0} record uit {1}. @@ -3563,6 +3687,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Briefhoofd afbeelding DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron-indeling apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Rapport DocType: SMS Settings,Use POST,Gebruik POST DocType: Communication,SMS,sms @@ -3608,18 +3733,20 @@ DocType: Workflow,Allow approval for creator of the document,Sta goedkeuring toe apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Rapport opslaan DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API-eindpuntargumenten +DocType: DocType Action,Server Action,Serveractie apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator benaderd {0} op {1} via IP-adres {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Bovenliggend veld moet een geldige veldnaam zijn apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Mislukt tijdens het wijzigen van het abonnement DocType: LDAP Settings,LDAP Group Field,LDAP-groepsveld +DocType: Notification Subscribed Document,Notification Subscribed Document,Kennisgeving onderschreven document apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Is gelijk aan apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Ongeldige CSV-formaat -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Fout bij verbinding maken met QZ-ladetoepassing ... <br><br> De toepassing QZ-lade moet zijn geïnstalleerd en actief zijn om de functie Raw Print te kunnen gebruiken. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klik hier om de QZ-lade te downloaden en te installeren</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klik hier voor meer informatie over Raw Printing</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Set aantal back-ups DocType: DocField,Do not allow user to change after set the first time,Sta niet toe dat de gebruiker na de eerste keer wijzigt apps/frappe/frappe/utils/data.py,1 year ago,1 jaar geleden +DocType: DocType,Links Section,Links sectie apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Bekijk Log van alle print-, download- en exportgebeurtenissen" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 maand DocType: Contact,Contact,Contact @@ -3646,16 +3773,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,nieuwe e-mail DocType: Custom DocPerm,Export,Exporteren apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Schakel {0} in om Google Agenda te gebruiken. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Ook wordt het statusafhankelijkheidsveld {0} toegevoegd +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Succesvol bijgewerkt {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-lade mislukt: DocType: Dropbox Settings,Dropbox Settings,Dropbox-instellingen DocType: About Us Settings,More content for the bottom of the page.,Meer inhoud voor de onderkant van de pagina. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Dit document is teruggezet apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive Backup succesvol. +DocType: Webhook,Naming Series,Benoemen Series DocType: Workflow,DocType on which this Workflow is applicable.,DocType waarop deze Workflow van toepassing is. DocType: User,Enabled,Ingeschakeld apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,De installatie kon niet worden voltooid apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nieuw {0}: {1} -DocType: Tag Category,Category Name,Categorienaam +DocType: Blog Category,Category Name,Categorienaam apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Ouder is vereist om onderliggende tabelgegevens te verkrijgen apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Abonnees Import DocType: Print Settings,PDF Settings,PDF-instellingen @@ -3691,6 +3821,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Agenda apps/frappe/frappe/client.py,No document found for given filters,Geen document gevonden voor gegeven filters apps/frappe/frappe/config/website.py,A user who posts blogs.,Een gebruiker die blogs plaatst. +DocType: DocType Action,DocType Action,DocType-actie apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Een ander {0} met de naam {1} bestaat, selecteert u een andere naam" DocType: DocType,Custom?,Aangepast? DocType: Website Settings,Website Theme Image,Website Theme Afbeelding @@ -3700,6 +3831,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Kan niet apps/frappe/frappe/config/integrations.py,Backup,Backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Documenttype is vereist om een dashboarddiagram te maken DocType: DocField,Read Only,Alleen lezen +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Kan razorpay-bestelling niet maken apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nieuw Nieuwsbrief DocType: Energy Point Log,Energy Point Log,Energiepuntlogboek DocType: Print Settings,Send Print as PDF,Verzend Afdruk als PDF @@ -3725,16 +3857,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bev apps/frappe/frappe/www/login.html,Or login with,Of log in met DocType: Error Snapshot,Locals,Locals apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Gecommuniceerd via {0} on {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} heeft je genoemd in een commentaar in {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Selecteer Groeperen op ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,bijv (55 + 434) / 4 = of Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} is verplicht DocType: Integration Request,Integration Type,integratie Type DocType: Newsletter,Send Attachements,Stuur Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Geen filters gevonden apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Contacten integratie. DocType: Transaction Log,Transaction Log,Transactielogboek apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistieken gebaseerd op de prestaties van vorige maand (van {0} tot {1}) DocType: Contact Us Settings,City,City +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Kaarten verbergen voor alle gebruikers apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Schakel Automatisch herhalen in voor doctype {0} in Aanpassen formulier DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/www/confirm_workflow_action.html,View document,Bekijk document @@ -3746,6 +3879,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},'In Global Search' niet toegestaan voor type {0} in rij {1} DocType: Energy Point Log,Appreciation,Waardering +DocType: Dashboard Chart,Number of Groups,Aantal groepen apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Lijst weergeven DocType: Workflow,Don't Override Status,Niet overschrijven Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Zoekterm @@ -3787,7 +3921,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-noordwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Beperk aantal DB-back-ups DocType: Custom DocPerm,Level,Niveau -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Laatste 30 dagen DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Het bedrag moet groter zijn dan 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Aangesloten op QZ-lade! @@ -3804,6 +3937,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Selecteer onderliggende tabel apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Activeer primaire actie apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Verandering +DocType: Social Login Key,User ID Property,Gebruiker ID Eigendom DocType: Email Domain,domain name,domeinnaam DocType: Contact Email,Contact Email,Contact E-mail DocType: Kanban Board Column,Order,Bestellen @@ -3826,7 +3960,7 @@ DocType: Contact,Last Name,Achternaam DocType: Event,Private,Prive- apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Links DocType: Event,All Day,Gehele dag apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Het lijkt erop dat er iets mis is met de betaling gateway de configuratie van deze site. Geen betaling heeft plaatsgevonden. DocType: GCalendar Settings,State,Status @@ -3858,7 +3992,6 @@ DocType: Workflow State,User,Gebruiker DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Toon titel in browservenster als "Prefix - titel" DocType: Payment Gateway,Gateway Settings,Gateway-instellingen apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,tekst in het documenttype -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Tests uitvoeren apps/frappe/frappe/handler.py,Logged Out,Uitgelogd apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Meer... DocType: System Settings,User can login using Email id or Mobile number,Gebruiker kan inloggen met e-mail id of mobiel nummer @@ -3875,6 +4008,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Overzicht DocType: Event,Event Participants,Deelnemers aan het evenement DocType: Auto Repeat,Frequency,Frequentie +DocType: Onboarding Slide,Slide Order,Schuifvolgorde DocType: Custom Field,Insert After,Invoegen na DocType: Event,Sync with Google Calendar,Synchroniseren met Google Agenda DocType: Access Log,Report Name,Rapportnaam @@ -3902,6 +4036,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max. breedte voor het type Valuta is 100px in rij {0} apps/frappe/frappe/config/website.py,Content web page.,Inhoud webpagina. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Voeg een nieuwe rol toe +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Bezoek webpagina +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nieuwe opdracht DocType: Google Contacts,Last Sync On,Last Sync On DocType: Deleted Document,Deleted Document,verwijderde Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oeps! Er ging iets mis! @@ -3912,7 +4048,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landschap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client-side script extensies in Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Records voor het volgen van doctypes zullen worden gefilterd -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planner Inactief +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planner Inactief DocType: Blog Settings,Blog Introduction,Blog Inleiding DocType: Global Search Settings,Search Priorities,Zoek prioriteiten DocType: Address,Office,Kantoor @@ -3922,13 +4058,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Link naar dashboarddiagram DocType: User,Email Settings,E-mail Instellingen apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Laat hier vallen DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Indien ingeschakeld, kan de gebruiker zich aanmelden vanaf elk IP-adres met behulp van Two Factor Auth, dit kan ook worden ingesteld voor alle gebruikers in Systeeminstellingen" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Printerinstellingen ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Voer uw wachtwoord in om verder te gaan apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Voer uw wachtwoord in om verder te gaan apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Me apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} geen geldig Status apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Toepassen op alle soorten documenten -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Update energiepunt +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Update energiepunt +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Taken alleen dagelijks uitvoeren indien inactief gedurende (dagen) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Kamertype DocType: Data Import Beta,Import Log Preview,Voorbeeld van logboek importeren @@ -3937,6 +4073,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-cirkel DocType: LDAP Settings,LDAP User Creation and Mapping,Maken en toewijzen van LDAP-gebruikers apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Evenementen van vandaag apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Sorry! Gebruiker dient volledige toegang tot eigen record te hebben. ,Usage Info,Gebruiksinfo apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Sneltoetsen weergeven @@ -3953,6 +4090,7 @@ DocType: DocField,Unique,Uniek apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} gewaardeerd op {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Gedeeltelijk succes DocType: Email Account,Service,Service +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker DocType: File,File Name,Bestandsnaam apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Niet gevonden {0} voor {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3966,6 +4104,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registra DocType: GCalendar Settings,Enable,in staat stellen DocType: Google Maps Settings,Home Address,Thuisadres apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),U kunt maximaal 5000 records in één keer uploaden (soms minder). +DocType: Report,"output in the form of `data = [columns, result]`","uitvoer in de vorm van `data = [kolommen, resultaat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Toepasselijke documenttypen apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Regels instellen voor gebruikerstoewijzingen. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Onvoldoende Toestemming voor {0} @@ -3983,7 +4122,6 @@ DocType: Communication,To and CC,Aan en CC DocType: SMS Settings,Static Parameters,Statische Parameters DocType: Chat Message,Room,Kamer apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},bijgewerkt om {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Achtergrondtaken worden niet uitgevoerd. Neem contact op met de beheerder DocType: Portal Settings,Custom Menu Items,Aangepaste menu-items apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Alle afbeeldingen die bij de website dia's zijn gekoppeld, moeten publiek zijn" DocType: Workflow State,chevron-right,chevron-rechts @@ -3998,11 +4136,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} waarden geselecteerd DocType: DocType,Allow Auto Repeat,Automatisch herhalen toestaan apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Geen waarden om te tonen +DocType: DocType,URL for documentation or help,URL voor documentatie of hulp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email sjabloon apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} record succesvol bijgewerkt. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Gebruiker {0} heeft geen doctype toegang via rolrechten voor document {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Zowel de login en wachtwoord vereist +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Laat\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vernieuw om het nieuwste document te krijgen. DocType: User,Security Settings,Beveiligingsinstellingen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Kolom toevoegen @@ -4012,6 +4152,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Zie bijgevoegde {0}: {1} DocType: Web Page,Set Meta Tags,Stel metatags in +DocType: Email Account,Use SSL for Outgoing,Gebruik SSL voor uitgaand 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: S3 Backup Settings,Backup Limit,Backup limiet DocType: Dashboard Chart,Line,Lijn @@ -4044,4 +4185,3 @@ DocType: DocField,Ignore User Permissions,Negeer Gebruikersmachtigingen apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Met succes opgeslagen apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Vraag uw beheerder om uw sign-up te controleren DocType: Domain Settings,Active Domains,Actieve domeinen -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Show Log diff --git a/frappe/translations/no.csv b/frappe/translations/no.csv index f4b227b933..14351c72f3 100644 --- a/frappe/translations/no.csv +++ b/frappe/translations/no.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Velg en beløpsfeltet. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Laster inn importfil ... DocType: Assignment Rule,Last User,Siste bruker -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","En ny oppgave, {0}, har blitt gitt til deg av {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Økt standard er lagret apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Last inn filen på nytt DocType: Email Queue,Email Queue records.,E-post Queue poster. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} treet DocType: User,User Emails,bruker~~POS=TRUNC e-post DocType: User,Username,Brukernavn apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importer Zip +DocType: Scheduled Job Type,Create Log,Lag logg apps/frappe/frappe/model/base_document.py,Value too big,Verdi for stor DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Kjør Script Test @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Månedlig DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktivere innkommende apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Danger -DocType: Address,Email Address,E-Post-Adresse +apps/frappe/frappe/www/login.py,Email Address,E-Post-Adresse DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Ulest melding sendt apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksport er ikke tillatt. Du må {0} rolle å eksportere. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Avbr DocType: DocType,Is Published Field,Er Publisert Feltet DocType: GCalendar Settings,GCalendar Settings,GCalendar-innstillinger DocType: Email Group,Email Group,E-post-konsernet +apps/frappe/frappe/__init__.py,Only for {},Bare for {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - Kunne ikke slette hendelse {0} fra Google Kalender, feilkode {1}." DocType: Event,Pulled from Google Calendar,Trekkes fra Google Kalender DocType: Note,Seen By,Sett av apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Legg til flere -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Du fikk noen energipoeng apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ikke et gyldig brukerbilde. DocType: Energy Point Log,Reverted,falt DocType: Success Action,First Success Message,Første suksessmelding @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ikke like apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Feil verdi: {0} må være {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Endre feltegenskaper (hjem, skrivebeskyttet, tillatelse etc.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Sette pris på +DocType: Notification Settings,Document Share,Dokumentandel DocType: Workflow State,lock,låse apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Innstillinger for kontakt oss siden. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator logget inn @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Hvis det er aktivert, blir dokumentet merket som sett, første gang en bruker åpner det" DocType: Auto Repeat,Repeat on Day,Gjenta på dagen DocType: DocField,Color,Farge +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Marker alle som lest DocType: Data Migration Run,Log,Logg DocType: Workflow State,indent-right,innrykk høyre DocType: Has Role,Has Role,har rolle @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Vis traceback DocType: DocType,Default Print Format,Standard Print Format DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Skyvetype apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: End of arbeidsflyt apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} feltet kan ikke settes som unik i {1}, så er det ikke-entydige eksisterende verdier" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumenttyper @@ -136,7 +139,6 @@ DocType: Language,Guest,Gjest DocType: DocType,Title Field,Tittel Feltet DocType: Error Log,Error Log,feil~~POS=TRUNC apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,ugyldig URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Siste 7 dager apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Gjentar som "abcabcabc" er bare litt vanskeligere å gjette enn "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Hvis du tror dette er ulovlig, må du endre administratorpassordet." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Client apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Velg kolonne apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Denne formen har blitt endret etter at du har lastet det DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Varslingslogg DocType: System Settings,"If not set, the currency precision will depend on number format","Hvis ikke innstilt, vil valutaens presisjon avhenge av tallformat" DocType: System Settings,"If not set, the currency precision will depend on number format","Hvis ikke innstilt, vil valutaens presisjon avhenge av tallformat" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Åpne Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Em apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Sende DocType: Workflow Action Master,Workflow Action Name,Arbeidsflyten Handlingsnavn apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE kan ikke bli slått sammen -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ikke en zip-fil DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,E-post sendt? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Bytt diagram apps/frappe/frappe/desk/form/save.py,Did not cancel,Ikke avbryte DocType: Social Login Key,Client Information,Klientinformasjon +DocType: Energy Point Rule,Apply this rule only once per document,Bruk denne regelen bare en gang per dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Les bare avhengig av apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Logget inn som gjest eller Administrator DocType: Email Account,UNSEEN,USETT apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Filbehandler @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Reason 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Ingen aktivitet +DocType: Server Script,Script Manager,Manusmanager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ingen aktivitet apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Tredjepartsprogrammer apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Ingen hendelser i dag apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Du kan ikke gi vurderingspoeng til deg selv apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType må være Submitterable for den valgte Doc Event DocType: Workflow State,circle-arrow-up,sirkel-pil opp @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ikke tillatt for {0}: {1}. Begrenset felt: {2} 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,You are not allowed to delete a standard Website Theme,Du har ikke lov til å slette en standard nettside Theme +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Lag din første {0} DocType: Data Import,Log Details,Loggdetaljer DocType: Workflow Transition,Example,Eksempel DocType: Webhook Header,Webhook Header,Webhook Header @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat bakgrunn apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marker som lest apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Oppdaterer {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,En Onboarding-lysbilde <b>{0}</b> med samme lysbilde-rekkefølge eksisterer allerede apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Deaktiver Rapporter DocType: Translation,Contributed Translation Doctype Name,Bidragt oversettelse Doctype Name +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema DocType: PayPal Settings,Redirect To,omdirigere å DocType: Data Migration Mapping,Pull,Dra DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Javascript Format: frappe.query_reports ['rapportnavn'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Intern oversikt over dokume DocType: Energy Point Settings,Review Levels,Anmeldelse Levels DocType: Workflow State,Comment,Kommentar DocType: Data Migration Plan,Postprocess Method,Etterprosessmetode +DocType: DocType Action,Action Type,Handlingstype apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Ta bilde DocType: Assignment Rule,Round Robin,Rund Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Du kan endre Innsendte dokumenter ved å kansellere dem, og deretter, om endring av dem." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Lagre som DocType: Comment,Seen,Sett apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Vis mer informasjon +DocType: Server Script,Before Submit,Før du sender inn 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,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,Archive,Arkiv @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Tilgang Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Feil feltnavn <b>{0}</b> i add_fetch-konfigurasjon av tilpasset skript apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Velg Google-kontakter som kontakten skal synkroniseres til. DocType: Web Page,Main Section (HTML),Hovedseksjon (HTML) +DocType: Scheduled Job Type,Annual,Årlig DocType: Workflow State,headphones,hodetelefoner apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Passord er nødvendig eller velg Venter passord DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,f.eks replies@yourcomany.com. Alle svar vil komme til denne innboks. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Bestemmer rekkefølgen på lysbildet i veiviseren. Hvis lysbildet ikke skal vises, bør prioriteten settes til 0." DocType: Data Migration Run,Current Mapping,Aktuell kartlegging apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Gyldig e-post og navn nødvendig apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Gjør alle vedlegg private @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Overgangsregler apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Viser bare de første {0} radene i forhåndsvisning apps/frappe/frappe/core/doctype/report/report.js,Example:,Eksempel: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Begrensninger DocType: Workflow,Defines workflow states and rules for a document.,Definerer arbeidsflyt stater og regler for et dokument. DocType: Workflow State,Filter,Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Sjekk feilloggen for mer informasjon: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Jobb apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} logges ut: {1} DocType: Address,West Bengal,Vest-Bengal +DocType: Onboarding Slide,Information,Informasjon apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke sette Assign Send inn hvis ikke Submittable DocType: Transaction Log,Row Index,Radindeks DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Button Hjelp DocType: Kanban Board Column,purple,lilla DocType: About Us Settings,Team Members,Lagmedlemmer +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Vil kjøre planlagte jobber bare en gang om dagen for inaktive nettsteder. Standard 4 dager hvis satt til 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Planlagt jobb DocType: Custom DocPerm,Permissions,Tillatelser apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks for intern integrasjon DocType: Dropbox Settings,Allow Dropbox Access,Tillat Dropbox Tilgang @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skann DocType: Email Flag Queue,Email Flag Queue,E-post Flag Queue DocType: Access Log,Columns / Fields,Kolonner / felt apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stilark for utskriftsformater +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Aggregate Function-felt kreves for å lage et dashborddiagram apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Kan ikke identifisere åpen {0}. Prøv noe annet. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Din informasjon har blitt sendt apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Bruker {0} kan ikke slettes @@ -417,11 +436,12 @@ DocType: Property Setter,Field Name,Feltnavn DocType: Assignment Rule,Assign To Users,Tildel til brukere apps/frappe/frappe/public/js/frappe/utils/utils.js,or,eller apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modul navn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Fortsette +DocType: Onboarding Slide,Continue,Fortsette apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integrasjon er deaktivert. DocType: Custom Field,Fieldname,Feltnavn DocType: Workflow State,certificate,sertifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Bekrefter ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Oppgaven din på {0} {1} er fjernet apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Først data kolonne må være tom. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Vis alle versjoner apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Se kommentar @@ -431,12 +451,14 @@ DocType: User,Restrict IP,Begrense IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,dashbord apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Kan ikke sende e-post på denne tiden apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - Kunne ikke oppdatere hendelse {0} i Google Kalender, feilkode {1}." +DocType: Notification Log,Email Content,E-postinnhold apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Søk eller skriv en kommando DocType: Activity Log,Timeline Name,Tidslinje Name apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Bare en {0} kan settes som primær. DocType: Email Account,e.g. smtp.gmail.com,f.eks smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Legg til en ny regel DocType: Contact,Sales Master Manager,Sales Master manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Du må aktivere JavaScript for at appen din skal fungere. DocType: User Permission,For Value,For verdi DocType: Event,Google Calendar ID,Google Kalender-ID apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP mellomnavnfelt apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerer {0} av {1} DocType: GCalendar Account,Allow GCalendar Access,Tillat GCalendar Access apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} er et obligatorisk felt +DocType: DocType,Documentation Link,Dokumentasjonslenke apps/frappe/frappe/templates/includes/login/login.js,Login token required,Påloggings-token kreves apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Månedlig rangering: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Velg flere listeelementer @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Filen URL DocType: Version,Table HTML,Tabell HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Legg Abonnenter +DocType: Notification Log,Energy Point,Energipunkt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Kommende arrangementer for dag DocType: Google Calendar,Push to Google Calendar,Trykk til Google Kalender DocType: Notification Recipient,Email By Document Field,E-post Ved Document Feltet @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Borte DocType: Currency,Fraction Units,Brøk Units apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} fra {1} til {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marker som ferdig DocType: Chat Message,Type,Type DocType: Google Settings,OAuth Client ID,OAuth-klient-ID DocType: Auto Repeat,Subject,Emne apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tilbake til skrivebordet DocType: Web Form,Amount Based On Field,Beløp basert på feltet +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} har ingen versjoner sporet. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Brukeren er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillat Ufullstendige skjemaer @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Vennligst sjekk e-posten din for verifisering apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold kan ikke være på slutten av skjemaet DocType: Communication,Bounced,Returnerte +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,av DocType: Deleted Document,Deleted Name,slettet Name apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,System og Website Brukere DocType: Workflow Document State,Doc Status,Doc Status @@ -526,6 +551,7 @@ DocType: Language,Language Code,Språkkode DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Merk: Som standard sendes e-postmeldinger for mislykkede sikkerhetskopier. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Legg til filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS sendt til følgende nummer: {0} +DocType: Notification Settings,Assignments,oppdrag apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Start en samtale. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Alltid legge til "Draft" Overskrift for utskrift av utkast til dokumenter @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,Aktuell kartleggingstart apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-post er merket som spam DocType: Comment,Website Manager,Website manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Filopplasting frakoblet. Vær så snill, prøv på nytt." +DocType: Data Import Beta,Show Failed Logs,Vis mislykkede logger apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Oversettelser apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Du valgte Utkast eller Avlyste dokumenter apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentet {0} er satt til å angi {1} av {2} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Dokument kø DocType: GSuite Templates,Destination ID,Destinasjons-ID DocType: Desktop Icon,List,List DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Du har ikke \ DocType: System Settings,mm/dd/yyyy,mm / dd / åååå +DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ugyldig passord: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ugyldig passord: DocType: Print Settings,Send document web view link in email,Send dokumentet web visning linken i e-post @@ -603,6 +632,7 @@ DocType: Kanban Board Column,darkgrey,mørk grå apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Vellykket: {0} til {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Miste +DocType: Dashboard Chart,Aggregate Function Based On,Samlet funksjon basert på apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Vennligst kopiere denne til å gjøre endringer apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Trykk på Enter for å lagre apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF generasjon mislyktes på grunn av ødelagte bilde lenker @@ -616,7 +646,9 @@ DocType: Notification,Days Before,Dager før apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Daglige hendelser bør avsluttes samme dag. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigere... DocType: Workflow State,volume-down,volum-ned +DocType: Onboarding Slide,Help Links,Hjelp lenker apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Tilgang ikke tillatt fra denne IP-adressen +DocType: Notification Settings,Enable Email Notifications,Aktiver e-postvarsler apps/frappe/frappe/desk/reportview.py,No Tags,ingen tagger DocType: Email Account,Send Notification to,Sende melding til DocType: DocField,Collapsible,Sammenleggbar @@ -645,6 +677,7 @@ DocType: Google Drive,Last Backup On,Siste sikkerhetskopi DocType: Customize Form Field,Customize Form Field,Tilpass skjemafelt DocType: Energy Point Rule,For Document Event,For dokumenthendelse DocType: Website Settings,Chat Room Name,Chat Room Name +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,uendret DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Sjekk hvilke dokumenter som kan leses av en bruker DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,bruk DocType: Auto Repeat,Quarterly,Quarterly apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Hele tiden apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ulovlig dokumentstatus for {0} DocType: Email Account,Enable Auto Reply,Aktiver automatisk svar apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ikke sett @@ -664,6 +698,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Meldi DocType: Email Account,Notify if unreplied,Varsle hvis Ubesvarte apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skann QR-koden og skriv inn den resulterende koden som vises. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktiver graderinger +DocType: Scheduled Job Type,Hourly Long,Timevis lang DocType: System Settings,Minimum Password Score,Minimum passord score DocType: System Settings,Minimum Password Score,Minimum passord score DocType: DocType,Fields,Felt @@ -672,11 +707,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tabl apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup komplett! apps/frappe/frappe/config/desktop.py,Developer,Utvikler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Laget +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Følg instruksjonene i følgende lenke for å aktivere den: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} i rad {1} kan ikke ha både URL og barne varer apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Det skal være minst en rad for følgende tabeller: {0} DocType: Print Format,Default Print Language,Standard utskriftsspråk apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Forfedre av apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan ikke slettes +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Ingen mislykkede logger apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Ingen kommentarer ennå apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Vennligst sett inn SMS før du angir det som en godkjenningsmetode, via SMS-innstillinger" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Både DOCTYPE og navn nødvendig @@ -700,6 +737,7 @@ DocType: Website Settings,Footer Items,Footer Items apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meny DocType: DefaultValue,DefaultValue,Standardverdi DocType: Auto Repeat,Daily,Daglig +DocType: Onboarding Slide,Max Count,Maks antall apps/frappe/frappe/config/users_and_permissions.py,User Roles,Brukerroller DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Eiendom Setter styrer en standard DOCTYPE eller Feltet eiendom apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan ikke oppdatere: Feilaktig / utløpt Link. @@ -718,6 +756,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Vert DocType: Data Import Beta,Import File,Importer fil +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Malfeil apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Kolonne <b>{0}</b> allerede eksisterer. DocType: ToDo,High,Høy apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ny begivenhet @@ -733,6 +772,7 @@ DocType: Web Form Field,Show in filter,Vis i filter DocType: Address,Daman and Diu,Daman og Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Prosjekt DocType: Address,Personal,Personlig +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Innstillinger for rå utskrift ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Se https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for detaljer. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Vis som cc @@ -742,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Ta video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Innledende informasjon for Kontakt oss Page DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,tommel ned +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Avbryter dokumenter DocType: User,Send Notifications for Email threads,Send varsler for e-posttråder apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ikke i utviklermodus @@ -749,7 +790,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Filbackup e DocType: DocField,In Global Search,I Global Søk DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,innrykk-venstre -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Det er risikabelt å slette denne filen: {0}. Ta kontakt med din System Manager. DocType: Currency,Currency Name,Valuta Name apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ingen e-post @@ -764,11 +804,13 @@ DocType: Energy Point Rule,User Field,Brukerfelt DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Trykk Slett apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} allerede meldt for {1} {2} +DocType: Scheduled Job Type,Stopped,Stoppet apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Ikke fjerne apps/frappe/frappe/desk/like.py,Liked,Likte apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Send Nå apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke ha standard utskriftsformat, bruk Tilpass skjema" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke ha standard utskriftsformat, bruk Tilpass skjema" +DocType: Server Script,Allow Guest,Tillat gjest DocType: Report,Query,Spørring DocType: Customize Form,Sort Order,Sorteringsrekkefølge apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'I List View' ikke tillatt for typen {0} i rad {1} @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,To faktorautentiseringsmetode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Først angi navnet og lagre posten. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 poster +DocType: DocType Link,Link Fieldname,Koblingsfeltnavn apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delt med {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Avslutte abonnementet DocType: View Log,Reference Name,Referanse Name apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Bytt bruker +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Først apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Oppdater oversettelser DocType: Error Snapshot,Exception,Unntak DocType: Email Account,Use IMAP,Bruk IMAP @@ -807,6 +851,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Regler som definerer overgangen fra staten i arbeidsflyten. DocType: File,Folder,Mappe DocType: Website Route Meta,Website Route Meta,Nettstedsrute Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,Hovedsiden DocType: Email Group,Newsletter Manager,Nyhetsbrev manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Alternativ 1 @@ -833,7 +878,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurer diagrammer DocType: User,Last IP,Siste IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Vennligst legg til et emne i din epost -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Et nytt dokument {0} er delt av deg {1}. DocType: Data Migration Connector,Data Migration Connector,Datamigreringskobling apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} tilbakeført {1} DocType: Email Account,Track Email Status,Spor e-poststatus @@ -886,6 +930,7 @@ DocType: Email Account,Default Outgoing,Standard Utgående DocType: Workflow State,play,spille apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klikk på linken nedenfor for å fullføre registreringen og sette et nytt passord apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Ikke legge +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} fikk {1} poeng for {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ingen e-postkontoer Assigned DocType: S3 Backup Settings,eu-west-2,eu-vest-2 DocType: Contact Us Settings,Contact Us Settings,Kontakt oss Settings @@ -894,6 +939,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Søker .. DocType: Workflow State,text-width,text-bredde apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimal Vedlegg Grensen for denne posten nådd. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Søk etter filnavn eller filtype +DocType: Onboarding Slide,Slide Title,Lysbildetittel DocType: Notification,View Properties (via Customize Form),Vis egenskaper (via Tilpass Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klikk på en fil for å velge den. DocType: Note Seen By,Note Seen By,Merk sett av @@ -920,13 +966,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Del nettadresse DocType: System Settings,Allow Consecutive Login Attempts ,Tillat sammenhengende påloggingsforsøk apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Det oppsto en feil under betalingsprosessen. Værsåsnill kontakt oss. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Hvis lysbildetype er Opprett eller Innstillinger, bør det være en 'create_onboarding_docs' -metode i {ref_doctype} .py-filen som skal utføres etter at lysbildet er fullført." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dager siden DocType: Email Account,Awaiting Password,Venter passord DocType: Address,Address Line 1,Adresselinje 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ikke etterkommere av DocType: Contact,Company Name,Selskapsnavn DocType: Custom DocPerm,Role,Rolle -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Innstillinger ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,til nettleseren din apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,opptaker @@ -986,6 +1032,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Spor hvis e-posten din har blitt åpnet av mottakeren. <br> Merk: Hvis du sender til flere mottakere, selv om 1 mottaker leser e-posten, vil den bli vurdert som "Åpnet"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Manglende verdier Påkrevd apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Tillat tilgang til Google-kontakter +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,begrenset DocType: Data Migration Connector,Frappe,frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Merk som ulest DocType: Activity Log,Operation,Operasjon @@ -1039,6 +1086,7 @@ DocType: Web Form,Allow Print,lar utskrifts DocType: Communication,Clicked,Klikket apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Slutt å følge apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen tillatelse til {0} {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Angi standard e-postkonto fra Oppsett> E-post> E-postkonto apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planlagt å sende DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,File Backup @@ -1047,12 +1095,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Nei {0} funne apps/frappe/frappe/config/customization.py,Add custom forms.,Legg tilpassede skjemaer. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} i {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,innsendt dette dokumentet -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukertillatelser apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systemet gir mange forhåndsdefinerte roller. Du kan legge til nye roller for å sette finere tillatelser. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Utløsernavn -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domener +DocType: Onboarding Slide,Domains,Domener DocType: Blog Category,Blog Category,Blogg Kategori apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Kan ikke tilordne fordi følgende betingelse mislykkes: DocType: Role Permission for Page and Report,Roles HTML,Roller HTML @@ -1093,7 +1140,6 @@ DocType: Assignment Rule Day,Saturday,Lørdag DocType: User,Represents a User in the system.,Representerer en bruker i systemet. DocType: List View Setting,Disable Auto Refresh,Deaktiver automatisk oppdatering DocType: Comment,Label,Etiketten -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Oppgaven {0}, som du tilordnet til {1}, har blitt stengt." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Lukk dette vinduet DocType: Print Format,Print Format Type,Print Format Type DocType: Newsletter,A Lead with this Email Address should exist,En Lead med denne e-postadressen skal eksistere @@ -1110,6 +1156,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP-innstillinger for apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,velg en DocType: Data Export,Filter List,Filterliste DocType: Data Export,Excel,utmerke +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto svarmelding DocType: Data Migration Mapping,Condition,Tilstand apps/frappe/frappe/utils/data.py,{0} hours ago,{0} timer siden @@ -1128,12 +1175,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base bidragsyter DocType: Communication,Sent Read Receipt,Sendte Les Kvittering DocType: Email Queue,Unsubscribe Method,Avmelding Method +DocType: Onboarding Slide,Add More Button,Legg til mer-knapp DocType: GSuite Templates,Related DocType,Beslektet DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Redigere å legge til innhold apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Velg språk apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kortdetaljer apps/frappe/frappe/__init__.py,No permission for {0},Ingen tillatelse for {0} DocType: DocType,Advanced,Avansert +DocType: Onboarding Slide,Slide Image Source,Skyv bildekilde apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referanse: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Fru @@ -1150,6 +1199,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Bruker kan ikke opprette apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fullført apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Tilgang til Dropbox er godkjent! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Er du sikker på at du vil slå sammen {0} med {1}? DocType: Customize Form,Enter Form Type,Skriv inn skjematype DocType: Google Drive,Authorize Google Drive Access,Autoriser Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Manglende parameter Kanban Board Name @@ -1159,7 +1209,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Tillate DOCTYPE, DOCTYPE. Vær forsiktig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Tilpassede formater for utskrift, e-post" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summen av {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Oppdatert til ny versjon DocType: Custom Field,Depends On,Kommer An På DocType: Kanban Board Column,Green,Grønn DocType: Custom DocPerm,Additional Permissions,Ytterligere Tillatelser @@ -1187,6 +1236,7 @@ DocType: Energy Point Log,Social,Sosial apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Kalender - Kunne ikke opprette kalender for {0}, feilkode {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Redigerer Row DocType: Workflow Action Master,Workflow Action Master,Arbeidsflyt Handling Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Slette alle DocType: Custom Field,Field Type,Felttype apps/frappe/frappe/utils/data.py,only.,bare. DocType: Route History,Route History,Rutehistorie @@ -1223,11 +1273,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Glemt passord? DocType: System Settings,yyyy-mm-dd,åååå-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,serverfeil +DocType: Server Script,After Delete,Etter sletting apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Se alle tidligere rapporter. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Login Id er nødvendig DocType: Website Slideshow,Website Slideshow,Website Show apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ingen Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link som er nettstedet hjemmesiden. Standard Links (indeks, logg, produkter, blogg, om, kontakt)" +DocType: Server Script,After Submit,Etter innsending apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Godkjenning mislyktes mens du mottar e-post fra e-postkonto {0}. Melding fra serveren: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Tilpasset felt @@ -1268,15 +1320,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Hvis brukeren har noen rolle sjekket, så brukeren blir en "System Bruker". "System Bruker" har tilgang til skrivebordet" DocType: System Settings,Date and Number Format,Dato og tallformat apps/frappe/frappe/model/document.py,one of,en av -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontrollere en stund apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Vis Tags DocType: DocField,HTML Editor,HTML Editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker +DocType: DocType,Actions,Handlinger DocType: Workflow State,align-justify,justere-rettferdig DocType: User,Middle Name (Optional),Middle Name (valgfritt) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ikke Tillatt @@ -1291,6 +1341,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ingen Resul DocType: System Settings,Security,Sikkerhet apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planlagt å sende til {0} mottakere apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kutte opp +DocType: Server Script,After Save,Etter lagre apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},omdøpt fra {0} i {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} av {1} ({2} rader med barn) DocType: Currency,**Currency** Master,** Valuta ** Master @@ -1317,16 +1368,19 @@ DocType: Prepared Report,Filter Values,Filtrer verdier DocType: Communication,User Tags,Bruker Tags DocType: Data Migration Run,Fail,fail DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Siste henrettelse DocType: Data Migration Run,Pull Failed,Trekk mislyktes apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Vis / skjul kort DocType: Communication,Feedback Request,Tilbakemelding Etterspør apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importer data fra CSV / Excel-filer. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Følgende felt mangler: +DocType: Notification Log,From User,Fra bruker apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Avbryter {0} DocType: Web Page,Main Section,Hoved Seksjon DocType: Page,Icon,Ikon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Inkluder symboler, tall og store bokstaver i passordet" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Inkluder symboler, tall og store bokstaver i passordet" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurer varsler for omtaler, oppgaver, energipoeng og mer." DocType: DocField,Allow in Quick Entry,Tillat i hurtigoppføring apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / åååå @@ -1358,7 +1412,6 @@ DocType: Website Theme,Theme URL,Tema URL DocType: Customize Form,Sort Field,Sorter Feltet DocType: Razorpay Settings,Razorpay Settings,Razorpay Innstillinger apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Rediger filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Legg til mer DocType: System Settings,Session Expiry Mobile,Session Utløps Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Feil bruker eller passord apps/frappe/frappe/templates/includes/search_box.html,Search results for,Søkeresultater for @@ -1374,8 +1427,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energy Point-regel DocType: Communication,Delayed,Forsinket apps/frappe/frappe/config/settings.py,List of backups available for download,Liste over sikkerhetskopier tilgjengelig for nedlasting +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Prøv den nye dataimporten apps/frappe/frappe/www/login.html,Sign up,Registrer deg apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Row {0}: Ikke tillatt å deaktivere Obligatorisk for standardfelt +DocType: Webhook,Enable Security,Aktiver sikkerhet apps/frappe/frappe/config/customization.py,Dashboards,oversikter DocType: Test Runner,Output,Produksjon DocType: Milestone,Track Field,Spor felt @@ -1383,6 +1438,7 @@ DocType: Notification,Set Property After Alert,Angi egenskap etter advarsel apps/frappe/frappe/config/customization.py,Add fields to forms.,Legge til felt i skjemaer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Ser ut som noe er galt med dette nettstedet er Paypal-konfigurasjonen. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Legg til anmeldelse +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} tildelte deg en ny oppgave {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Skriftstørrelse (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Bare standard DocTypes tillates tilpasset fra Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1394,8 +1450,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal menypunkt apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Angi filtre DocType: Contact Us Settings,Email ID,E-ID DocType: Energy Point Rule,Multiplier Field,Multiplikatorfelt +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Kunne ikke opprette Razorpay-ordre. Kontakt administrator DocType: Dashboard Chart,Time Interval,Tidsintervall DocType: Activity Log,Keep track of all update feeds,Hold orden på alle oppdaterings feeds +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} delte et dokument {1} {2} med deg DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,En liste over ressurser som klient app vil ha tilgang til etter at brukeren tillater det. <br> f.eks prosjekt DocType: Translation,Translated Text,oversatt tekst DocType: Contact Us Settings,Query Options,Query Options @@ -1414,6 +1472,7 @@ DocType: DefaultValue,Key,Nøkkel DocType: Address,Contacts,Kontakt DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport fra alle dokument aksjer +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importmalen skal være av typen .csv, .xlsx eller .xls" apps/frappe/frappe/www/update-password.html,New Password,Nytt Passord apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} mangler apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Beklager! Du kan ikke slette automatisk generert kommentarer @@ -1429,6 +1488,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Løpe DocType: Blog Post,Content (HTML),Innhold (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Oppsett for DocType: Personal Data Download Request,User Name,Brukernavn DocType: Workflow State,minus-sign,minus-tegn apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ikke Funnet @@ -1436,11 +1496,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Nei {0} tillatelse apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksport Custom Tillatelser apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ingen objekter funnet. DocType: Data Export,Fields Multicheck,Felter Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Fullført DocType: Activity Log,Login,Logg Inn DocType: Web Form,Payments,Betalinger apps/frappe/frappe/www/qrcode.html,Hi {0},Hei {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-integrasjon. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} tilbakelevert poengene dine på {1} {2} DocType: System Settings,Enable Scheduled Jobs,Aktiver Planlagte Jobs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Merknader: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,inaktiv @@ -1465,6 +1525,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-post apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Tillatelsesfeil apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Navnet {0} kan ikke være {1} DocType: User Permission,Applicable For,Aktuelt For +DocType: Dashboard Chart,From Date,Fra Dato apps/frappe/frappe/core/doctype/version/version_view.html,Success,Suksess apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesjon utløpt apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesjon utløpt @@ -1477,7 +1538,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suk apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ikke tillatt i tilstand DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,bilde -apps/frappe/frappe/www/complete_signup.html,Complete,Fullstendig +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Fullstendig DocType: DocType,Image Field,Bilde Felt DocType: Print Format,Custom HTML Help,Custom HTML-hjelp DocType: LDAP Settings,Default Role on Creation,Standard rolle for oppretting @@ -1485,6 +1546,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Neste State DocType: User,Block Modules,Block Modules DocType: Print Format,Custom CSS,Custom CSS +DocType: Energy Point Rule,Apply Only Once,Bruk bare en gang apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Legg til en kommentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorert: {0} til {1} @@ -1496,6 +1558,7 @@ DocType: Email Account,Default Incoming,Standard Innkommende DocType: Workflow State,repeat,gjenta DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Verdien må være en av {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Avbryt alle dokumenter 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gå til {0} Liste apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjelp til søk @@ -1504,6 +1567,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrert apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Auto Repeat for dette dokumentet er deaktivert. DocType: DocType,Hide Copy,Skjule Kopier apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Fjerne alle roller +DocType: Server Script,Before Save,Før lagre apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} må være unik apps/frappe/frappe/model/base_document.py,Row,Row apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC og Email Template" @@ -1514,7 +1578,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importert {0} DocType: User,API Key,API-nøkkel DocType: Email Account,Send unsubscribe message in email,Send unsubscribe meldingen i e-post -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Rediger tittel apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Feltnavn som vil være DOCTYPE for denne koblingen feltet. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumenter tildelt deg og av deg. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Du kan også kopiere og lime inn dette @@ -1546,8 +1609,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Fest bilde DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Passord Oppdatert +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukertillatelser apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Trinn for å bekrefte innlogging apps/frappe/frappe/utils/password.py,Password not found,Passord ikke funnet +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Sidelengde DocType: Email Queue,Expose Recipients,Expose Mottakere apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Føye til er obligatorisk for innkommende post @@ -1575,6 +1640,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Max Vedlegg Størrelse (i MB) apps/frappe/frappe/www/login.html,Have an account? Login,Har du en konto? Logg inn +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Utskriftsinnstillinger ... DocType: Workflow State,arrow-down,pil-ned apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rad {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Bruker ikke lov til å slette {0}: {1} @@ -1596,6 +1662,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Skriv inn DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tilgang Secret DocType: Tag Link,Document Title,Dokument tittel apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),"(Påbudt, bindende)" +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden DocType: Social Login Key,Social Login Provider,Sosial innloggingsleverandør apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Legg til en kommentar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Ingen data funnet i filen. Vennligst sett den nye filen på nytt med data. @@ -1610,11 +1677,12 @@ DocType: Workflow State,hand-down,hånden ned apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Ingen felt funnet som kan brukes som Kanban-kolonne. Bruk Tilpass skjema for å legge til et tilpasset felt av typen "Velg". DocType: Address,GST State,GST-stat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Kan ikke angi Avbryt uten Send +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Bruker ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigerings URI nødt til å Auth kode apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Åpne hjelp DocType: DocType,Is Submittable,Er Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nytt omtale +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nytt omtale apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Ingen nye Google-kontakter er synkronisert. DocType: File,Uploaded To Google Drive,Lastet opp til Google Disk apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Verdi for en sjekk feltet kan være enten 0 eller 1 @@ -1626,7 +1694,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Innboks DocType: Kanban Board Column,Red,Rød DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumentet kan ikke lagres. DocType: Energy Point Rule,Maximum Points,Maksimum poeng apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mine innstillinger @@ -1656,9 +1724,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} påskjønnelsespunkter for {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roller kan settes for brukere fra brukersiden. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Legg til en kommentar +DocType: Dashboard Chart,Select Date Range,Velg datoområde DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module å eksportere +DocType: Scheduled Job Type,Monthly Long,Månedlig lang apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Ingen grunnleggende rettigheter sett +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Send en e-post til {0} for å koble den hit apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",Betydning av Submit Avbryt: Bedre apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Å Gjøre @@ -1667,7 +1738,6 @@ DocType: Milestone Tracker,Track milestones for any document,Spor milepæler for DocType: Social Login Key,Identity Details,Identitetsdetaljer apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Overgang til arbeidsflytstatus er ikke tillatt fra {0} til {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Vis instrumentpanel -apps/frappe/frappe/desk/form/assign_to.py,New Message,Ny melding DocType: File,Preview HTML,Forhåndsvisning HTML DocType: Desktop Icon,query-report,spørring-rapport DocType: Data Import Beta,Template Warnings,Malvarsler @@ -1678,18 +1748,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Knyttet til apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Rediger Innstillingsinnstillinger for automatisk e-post DocType: Chat Room,Message Count,Meldingstelling DocType: Workflow State,book,bok +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} er koblet til følgende innsendte dokumenter: {2} DocType: Communication,Read by Recipient,Les av mottaker DocType: Website Settings,Landing Page,Destinasjonsside apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Feil på Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Name apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ingen tillatelser satt for disse kriteriene. DocType: Auto Email Report,Auto Email Report,Auto E-postrapport +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nytt dokument delt apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Slett kommentar? DocType: Address Template,This format is used if country specific format is not found,Dette formatet brukes hvis landet bestemt format ikke er funnet DocType: System Settings,Allow Login using Mobile Number,Tillat innlogging ved hjelp av mobilnummer apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Hvis aktivert, blir brukere som logger inn fra Begrenset IP-adresse, ikke bedt om Two Factor Auth" +DocType: Server Script,After Cancel,Etter avbryt DocType: Auto Repeat,Get Contacts,Få kontakter apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Innlegg arkivert under {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Hopp over Untitled Column @@ -1700,6 +1773,7 @@ DocType: User,Login After,Login Etter DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Utskrift DocType: Workflow State,thumbs-up,tommel opp +DocType: Notification Log,Mention,Nevne DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,fonter apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision bør være mellom 1 og 6 @@ -1707,7 +1781,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,og apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Denne rapporten ble generert på {0} DocType: Error Snapshot,Frames,Rammer -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tildeling +DocType: Notification Log,Assignment,Tildeling DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Bilde Link DocType: Auto Email Report,Report Filters,rapportfiltre @@ -1724,7 +1798,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Kan ikke oppdatere event apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Bekreftelseskoden er sendt til din registrerte e-postadresse. apps/frappe/frappe/core/doctype/user/user.py,Throttled,strupes +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Målet ditt apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filteret må ha 4 verdier (doktype, feltnavn, operatør, verdi): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Ingen navn er spesifisert for {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Bruk oppdragsregel apps/frappe/frappe/utils/bot.py,show,forestilling apps/frappe/frappe/utils/data.py,Invalid field name {0},Ugyldig feltnavn {0} @@ -1734,7 +1810,6 @@ DocType: Workflow State,text-height,text-høyden DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapping av dataoverføringsplan apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Starter Frappé ... DocType: Web Form Field,Max Length,Maks lengde -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},For {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-markør apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Send inn et problem @@ -1770,6 +1845,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page mangler eller flyttet apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,anmeldelser DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay betaling gateway-innstillinger +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} fikk {1} poeng for {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Hent vedlagte bilder fra dokument DocType: Chat Room,Name,Navn DocType: Contact Us Settings,Skype,Skype @@ -1780,7 +1856,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Åpne koblin apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ditt språk DocType: Dashboard Chart,Average,Gjennomsnitt apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Legg til rad -DocType: Tag Category,Doctypes,Doctyper apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Skriver apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Spørring må være en SELECT DocType: Auto Repeat,Completed,Fullført @@ -1840,6 +1915,7 @@ DocType: GCalendar Account,Next Sync Token,Neste synkroniseringstegn DocType: Energy Point Settings,Energy Point Settings,Innstillinger for energipunkt DocType: Async Task,Succeeded,Lyktes apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriske felt kreves i {0} +DocType: Onboarding Slide Field,Align,Tilpasse apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Tilbakestill Tillatelser for {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Brukere og tillatelser DocType: S3 Backup Settings,S3 Backup Settings,S3 Sikkerhetskopieringsinnstillinger @@ -1856,7 +1932,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nytt utskriftsformatnavn apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klikk på lenken nedenfor for å godkjenne forespørselen DocType: Workflow State,align-left,justere venstre +DocType: Onboarding Slide,Action Settings,Handlingsinnstillinger DocType: User,Defaults,Mislighold +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning, bruk> 5, <10 eller = 324. For områder kan du bruke 5:10 (for verdier mellom 5 og 10)." DocType: Energy Point Log,Revert Of,Revert Of apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Slå sammen med eksisterende DocType: User,Birth Date,Bursdag @@ -1911,6 +1989,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,I DocType: Notification,Value Change,Verdiendring DocType: Google Contacts,Authorize Google Contacts Access,Tillat tilgang til Google-kontakter apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Viser bare Numeriske felt fra Rapport +apps/frappe/frappe/utils/data.py,1 week ago,1 uke siden DocType: Data Import Beta,Import Type,Importtype DocType: Access Log,HTML Page,HTML-side DocType: Address,Subsidiary,Datterselskap @@ -1920,7 +1999,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Med Brev apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ugyldig Utgående e-posttjener eller Port DocType: Custom DocPerm,Write,Skrive -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Bare Administrator lov til å lage Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Oppdatering DocType: Data Import Beta,Preview,Forhåndsvisning apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Feltet "verdi" er obligatorisk. Vennligst oppgi verdien som skal oppdateres @@ -1930,6 +2008,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Inviter so DocType: Data Migration Run,Started,startet apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Bruker {0} har ikke tilgang til dette dokumentet DocType: Data Migration Run,End Time,Sluttid +DocType: Dashboard Chart,Group By Based On,Gruppe etter basert på apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Velg Vedlegg apps/frappe/frappe/model/naming.py, for {0},for {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Du har ikke lov til å skrive ut dette dokumentet @@ -1971,6 +2050,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Bekreft DocType: Workflow Document State,Update Field,Oppdater felt DocType: Chat Profile,Enable Chat,Aktiver Chat DocType: LDAP Settings,Base Distinguished Name (DN),Base Unikt navn (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,La denne samtalen apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Alternativer ikke satt for link feltet {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Kø / Arbeider @@ -2039,12 +2119,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Logg ikke tillatt på dette tidspunktet DocType: Data Migration Run,Current Mapping Action,Aktuell kartleggingshandling DocType: Dashboard Chart Source,Source Name,Source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ingen e-postkonto tilknyttet brukeren. Legg til en konto under Bruker> E-postinnboks. DocType: Email Account,Email Sync Option,E-post Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rad nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Er festet DocType: Contact Us Settings,Introduction,Introduksjon +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Trenger hjelp? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin globalt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Etterfulgt av DocType: LDAP Settings,LDAP Email Field,LDAP E-post Feltet @@ -2054,7 +2134,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Allerede DocType: User Email,Enable Outgoing,Aktiver utgående DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Egendefinerte definerte~~POS=HEADCOMP tagger -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto er ikke konfigurert. Opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto DocType: Comment,Submitted,Sendt inn DocType: Contact,Pulled from Google Contacts,Trekkes fra Google-kontakter apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,I gyldig forespørsel @@ -2075,9 +2154,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Hjem / Test apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Tildele til meg DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Trykk på Alt-tasten for å utløse flere snarveier i Meny og sidefelt +DocType: Dashboard Chart,To Date,To Date DocType: List View Setting,List View Setting,Innstilling av listevisning apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Vis mislyktes arbeidsplasser -DocType: Event,Details,Detaljer +DocType: Scheduled Job Log,Details,Detaljer DocType: Property Setter,DocType or Field,DOCTYPE eller Felt apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Du har fulgt dette dokumentet apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primærfarge @@ -2086,7 +2166,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Synes publiserbar nøkkel eller hemmelig nøkkel er feil !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Synes publiserbar nøkkel eller hemmelig nøkkel er feil !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Hurtighjelp for å sette rettigheter -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE å tildele koder apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Vis Tilbakefall apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-post er flyttet til søppel DocType: Report,Report Builder,Report Builder @@ -2102,6 +2181,7 @@ DocType: Workflow State,Upload,Last opp DocType: User Permission,Advanced Control,Avansert kontroll DocType: System Settings,Date Format,Datoformat apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ikke publisert +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemaler funnet. Opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemal. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Initiativer for arbeidsflyt (f.eks godkjenne Avbryt). DocType: Data Import,Skip rows with errors,Hopp over rader med feil DocType: Workflow State,flag,flagg @@ -2111,7 +2191,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Skri apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hopp til felt DocType: Contact Us Settings,Forward To Email Address,Frem til e-postadresse DocType: Contact Phone,Is Primary Phone,Er primær telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Send en e-post til {0} for å koble den hit. DocType: Auto Email Report,Weekdays,hver~~POS=TRUNC apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} poster blir eksportert apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Tittel-feltet må være en gyldig feltnavn @@ -2119,7 +2198,7 @@ DocType: Post Comment,Post Comment,post Kommentar apps/frappe/frappe/config/core.py,Documents,Dokumenter apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktivitetslogg av DocType: Social Login Key,Custom Base URL,Tilpasset basisside -DocType: Email Flag Queue,Is Completed,Det er ferdig +DocType: Onboarding Slide,Is Completed,Det er ferdig apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Få felt apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Endre profil DocType: Kanban Board Column,Archived,Arkivert @@ -2130,11 +2209,12 @@ 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 DocType: Social Login Key,Office 365,Kontor 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,I dag +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Send inn etter import DocType: Error Log,Log of Scheduler Errors,Logg av Scheduler feil DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help Link DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Sende inn apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Foreldre er navnet på dokumentet som dataene vil bli lagt til. @@ -2142,7 +2222,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,STOR BOKSTAV apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Skriv inn mappenavn -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemaler funnet. Opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemal. apps/frappe/frappe/auth.py,Unknown User,Ukjent bruker apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Velg rolle DocType: Comment,Deleted,Slettet @@ -2158,7 +2237,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Lag diagram apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ikke importer -DocType: Web Page,Center,Sentrum +DocType: Onboarding Slide Field,Center,Sentrum DocType: Notification,Value To Be Set,Verdi som skal settes apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Rediger {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Første nivå @@ -2166,7 +2245,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Database navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh Form DocType: DocField,Select,Velg -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Vis full logg +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vis full logg DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Eksempel: status == 'Open' og skriv == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Fil ikke festet apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Forbindelse mistet. Noen funksjoner fungerer kanskje ikke. @@ -2198,6 +2277,7 @@ DocType: Web Page,HTML for header section. Optional,HTML for header delen. Valgf apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Denne funksjonen er helt ny og fortsatt eksperimentell apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimum {0} rader tillatt DocType: Dashboard Chart Link,Chart,Chart +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global Avmelding apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dette er en svært vanlig passord. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Utsikt @@ -2214,6 +2294,7 @@ DocType: Data Migration Connector,Hostname,vertsnavn DocType: Data Migration Mapping,Condition Detail,Tilstandsdetaljer apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","For valuta {0}, bør minimumstransaksjonsbeløpet være {1}" DocType: DocField,Print Hide,Print Skjul +DocType: System Settings,HH:mm:ss,HH: MM: SS apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Til bruker apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Legg inn verdi DocType: Workflow State,tint,tint @@ -2281,6 +2362,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kode for in apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Legg til å gjøre DocType: Footer Item,Company,Selskap apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gjennomsnitt av {0} +DocType: Scheduled Job Log,Scheduled,Planlagt DocType: User,Logout from all devices while changing Password,Logg ut fra alle enheter mens du endrer passord apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Bekreft Passord apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Det var feil @@ -2306,7 +2388,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Brukertillatelse eksisterer allerede apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartlegger kolonne {0} til felt {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Se {0} -DocType: User,Hourly,Hver time +DocType: Scheduled Job Type,Hourly,Hver time apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrer OAuth-klient app DocType: DocField,Fetch If Empty,Hent hvis den er tom DocType: Data Migration Connector,Authentication Credentials,Godkjennings legitimasjon @@ -2317,10 +2399,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},oppnådd av {0} via automatisk regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eller {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Dere er alle satt opp! DocType: Workflow State,trash,trash DocType: System Settings,Older backups will be automatically deleted,Eldre sikkerhetskopier vil bli slettet automatisk apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ugyldig tilgangsnøkkel-ID eller hemmelig tilgangsnøkkel. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Du mistet noen energipoeng DocType: Post,Is Globally Pinned,Er globalt stiftet apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Nylig aktivitet DocType: Workflow Transition,Conditions,Forhold @@ -2329,6 +2411,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Bekreftet DocType: Event,Ends on,Slutter på DocType: Payment Gateway,Gateway,Inngangsport DocType: LDAP Settings,Path to Server Certificate,Sti til serversertifikat +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,JavaScript er deaktivert i nettleseren din apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ikke nok tillatelse til å se koblinger apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ikke nok tillatelse til å se koblinger apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adresse Tittel er obligatorisk. @@ -2348,7 +2431,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-vest-en DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Hvis dette er merket, importeres rader med gyldige data, og ugyldige rader blir dumpet til en ny fil for at du skal importere senere." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentet er kun redigeres av brukerne av rolle -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Oppgaven {0}, som du tilordnet {1} har blitt stengt av {2}." DocType: Print Format,Show Line Breaks after Sections,Vis linjeskift etter §§ DocType: Communication,Read by Recipient On,Les av mottaker på DocType: Blogger,Short Name,Kort Navn @@ -2381,6 +2463,7 @@ DocType: Translation,PR sent,PR sendt DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Send kun poster som er oppdatert i løpet av de siste 10 timene DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Send kun poster som er oppdatert i løpet av de siste 10 timene DocType: Communication,Feedback,Tilbakemelding +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Oppdatert til en ny versjon 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Åpne oversettelse apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Denne e-posten er autogenerert DocType: Workflow State,Icon will appear on the button,Ikon vises på knappen @@ -2419,6 +2502,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Side ikke DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Bildeserie Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Prøv å unngå gjentatte ord og tegn +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Varsler er deaktivert +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Er du sikker på at du vil slette alle radene? DocType: Workflow Action,Workflow State,Arbeidsflyt State apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rader lagt apps/frappe/frappe/www/list.py,My Account,Min Konto @@ -2427,6 +2512,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dager etter apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-brettforbindelse aktiv! DocType: Contact Us Settings,Settings for Contact Us Page,Innstillinger for Kontakt oss Page +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Aktiver utskriftsserver apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} uker siden DocType: Email Account,Footer,Bunntekst @@ -2452,8 +2538,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Advarsel apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Dette kan skrives ut på flere sider DocType: Data Migration Run,Percent Complete,Prosent fullført -DocType: Tag Category,Tag Category,tag Kategori -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning, bruk> 5, <10 eller = 324. For områder kan du bruke 5:10 (for verdier mellom 5 og 10)." DocType: Google Calendar,Pull from Google Calendar,Trekk fra Google Kalender apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Hjelp DocType: User,Login Before,Login Før @@ -2463,17 +2547,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skjul helger apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genererer automatisk gjentagende dokumenter. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Er +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-skilt apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Verdi for {0} kan ikke være en liste DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valutaen være formatert? Dersom ikke satt, vil bruke systemstandarder" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Send {0} dokumenter? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Feil ved tilkobling til QZ Tray Application ... <br><br> Du må ha QZ Tray-applikasjon installert og kjørt for å bruke Raw Print-funksjonen. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klikk her for å laste ned og installere QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klikk her for å lære mer om Raw Printing</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Skriverkartlegging apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vennligst spare før du fester. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vil du avbryte alle koblede dokumenter? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Lagt {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype kan ikke endres fra {0} til {1} i rad {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rolle Tillatelser DocType: Help Article,Intermediate,Mellom +apps/frappe/frappe/config/settings.py,Email / Notifications,E-postvarsler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} endret {1} til {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Avbrutt dokument gjenopprettet som Draft DocType: Data Migration Run,Start Time,Starttid @@ -2490,6 +2578,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ka apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ugyldig mottakeradresse DocType: Workflow State,step-forward,skritt fremover DocType: System Settings,Allow Login After Fail,Tillat innlogging etter feil +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Sett rolle for DocType: GCalendar Account,The name that will appear in Google Calendar,Navnet som vil vises i Google Kalender apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direkte rom med {0} eksisterer allerede. @@ -2507,6 +2596,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Opprett e DocType: Contact,Google Contacts,Google-kontakter DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Email Rule,Is Spam,er Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Siste apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapporter {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Åpen {0} DocType: Data Import Beta,Import Warnings,Importvarsler @@ -2518,6 +2608,7 @@ DocType: Workflow State,ok-sign,ok-tegn apps/frappe/frappe/config/settings.py,Deleted Documents,Slettede dokumenter apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-formatet er saksfølsomt apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon eksisterer allerede +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Spesifiser i hvilke domener lysbildene skal vises. Hvis ingenting er spesifisert, vises lysbildet som standard i alle domener." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplisere apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Felt {1} i rad {2} kan ikke være skjult og obligatorisk uten standard DocType: Newsletter,Create and Send Newsletters,Lag og send nyhetsbrev @@ -2528,6 +2619,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Kalenderhendelses-ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Parent" betegner den overordnede tabellen der denne raden må legges apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Gjennomgangspoeng: +DocType: Scheduled Job Log,Scheduled Job Log,Planlagt jobblogg +DocType: Server Script,Before Delete,Før sletting apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Delt med apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Legg ved filer / URLer og legg til i tabellen. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Melding ikke oppsett @@ -2551,19 +2644,21 @@ DocType: About Us Settings,Settings for the About Us Page,Innstillinger for oss apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe betalings gateway innstillinger apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe betalings gateway innstillinger apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Skriv ut Sendt til skriveren! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energipoeng +DocType: Notification Settings,Energy Points,Energipoeng +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tid {0} må være i format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,f.eks pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generere nøkler apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Dette vil fjerne dataene dine permanent. DocType: DocType,View Settings,Vis innstillinger +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ny varsling DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Be om struktur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Kontrollermetode get_razorpay_order mangler DocType: Personal Data Deletion Request,Pending Verification,Venter på verifisering DocType: Website Meta Tag,Website Meta Tag,Nettsteds metakode DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Hvis ikke standardport (f.eks. 587). Hvis du prøver på Google Cloud, kan du prøve port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Sletting av sluttdato, som det ikke kan være tidligere for publiserte sider." DocType: User,Send Me A Copy of Outgoing Emails,Send meg en kopi av utgående e-post -DocType: System Settings,Scheduler Last Event,Scheduler Siste hendelse DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Legg Google Analytics ID: f.eks. UA-89XXX57-1. Vennligst søk hjelp på Google Analytics for mer informasjon. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Passordet kan ikke være mer enn 100 tegn DocType: OAuth Client,App Client ID,App-klient-ID @@ -2592,6 +2687,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nytt passord apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delte dette dokumentet med {1} DocType: Website Settings,Brand Image,Varemerke DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importmalen skal inneholde en overskrift og minst en rad. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Kalender er konfigurert. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Oppsett av menylinjen, bunntekst og logo." DocType: Web Form Field,Max Value,Max Value @@ -2601,6 +2697,7 @@ DocType: User Social Login,User Social Login,Bruker sosial pålogging apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritiserte arbeidet ditt med {1} med {2} poeng DocType: Contact,All,Alt DocType: Email Queue,Recipient,Mottaker +DocType: Webhook,Webhook Security,Webhook Security DocType: Communication,Has Attachment,har Vedlegg DocType: Address,Sales User,Salg User apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Dra og slipp verktøy for å bygge og tilpasse utskriftsformater. @@ -2667,7 +2764,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrerings-ID-feltet DocType: Dashboard Chart,Last Synced On,Sist synkronisert på DocType: Comment,Comment Type,Kommentar Type DocType: OAuth Client,OAuth Client,OAuth-klient -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritiserte arbeidet ditt med {1} {2} DocType: Assignment Rule,Users,Brukere DocType: Address,Odisha,Odisha DocType: Report,Report Type,Rapporttype @@ -2693,14 +2789,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slide Element apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Egen godkjenning er ikke tillatt DocType: GSuite Templates,Template ID,Mal ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kombinasjon av Grant Type ( <code>{0}</code> ) og Response Type ( <code>{1}</code> ) er ikke tillatt -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Ny melding fra {0} DocType: Portal Settings,Default Role at Time of Signup,Standard rolle ved tidspunktet for registrering DocType: DocType,Title Case,Tittel sak apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klikk på lenken nedenfor for å laste ned dataene dine apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Aktivert e-postinnboks for bruker {0} DocType: Data Migration Run,Data Migration Run,Dataoverføringsdrift DocType: Blog Post,Email Sent,E-post sendt -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Eldre DocType: DocField,Ignore XSS Filter,Ignorer XSS-filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,fjernet apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox backup innstillinger @@ -2755,6 +2849,7 @@ DocType: Async Task,Queued,I kø DocType: Braintree Settings,Use Sandbox,bruk Sandbox apps/frappe/frappe/utils/goal.py,This month,Denne måneden apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Før lagring (innsendt dokument) DocType: Custom DocPerm,Create,Skape apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Ingen flere gjenstander å vise apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Gå til forrige post @@ -2812,6 +2907,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Flytt til søppel DocType: Web Form,Web Form Fields,Web Form Fields DocType: Data Import,Amended From,Endret Fra +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Legg til en hjelpevideo-kobling i tilfelle bruker ikke har noen anelse om hva de skal fylle ut lysbildet. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Advarsel: Kan ikke finne {0} i ethvert bord knyttet til {1} DocType: S3 Backup Settings,eu-north-1,eu-nord-en apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Dette dokumentet er for tiden i kø for gjennomføring. Vær så snill, prøv på nytt" @@ -2834,6 +2930,7 @@ DocType: Blog Post,Blog Post,Blogginnlegg DocType: Access Log,Export From,Eksporter fra apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Avansert Søk apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Du har ikke lov til å se nyhetsbrevet. +DocType: Dashboard Chart,Group By,Grupper etter DocType: User,Interests,Interesser apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instruksjoner Password Reset har blitt sendt til din e-post DocType: Energy Point Rule,Allot Points To Assigned Users,Tildel poeng til tildelte brukere @@ -2849,6 +2946,7 @@ DocType: Assignment Rule,Assignment Rule,Oppdragsregel apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Foreslått Brukernavn: {0} DocType: Assignment Rule Day,Day,Dag apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduler +DocType: DocField,Mandatory Depends On,Obligatorisk avhengig av apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,betaling suksess apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ingen {0} post DocType: OAuth Bearer Token,Revoked,opphevet @@ -2856,6 +2954,7 @@ DocType: Web Page,Sidebar and Comments,Sidepanel og kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ikke tillatt å legge ved {0} dokument, vennligst aktiver Tillat utskrift for {0} i utskriftsinnstillinger" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto er ikke konfigurert. Opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Se dokumentet på {0} DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel @@ -2870,13 +2969,13 @@ DocType: Currency,Fraction,Fraksjon apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Hendelse synkronisert med Google Kalender. DocType: LDAP Settings,LDAP First Name Field,LDAP fornavn Feltet DocType: Contact,Middle Name,Mellomnavn +DocType: DocField,Property Depends On,Eiendom avhenger av DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py,Name not set via Prompt,Navn ikke satt via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-post innboksen apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Oppdaterer {0} av {1}, {2}" DocType: Auto Email Report,Filters Display,Filter Skjerm apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Feltet "amend_from" må være til stede for å gjøre en endring. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} satte pris på arbeidet ditt med {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Lagre filtre DocType: Address,Plant,Plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svar alle @@ -2917,11 +3016,11 @@ DocType: Workflow State,folder-close,mappe-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Rapportere: DocType: Print Settings,Print taxes with zero amount,Skriv ut avgifter med null beløp apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ikke lov til å bli omdøpt +DocType: Server Script,Before Insert,Før du setter inn DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Adresselinje 2 DocType: Address,Reference,Referanse apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Tilordnet -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Angi standard e-postkonto fra Oppsett> E-post> E-postkonto DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migrering Kartlegging Detalj DocType: Data Import,Action,Handling DocType: GSuite Settings,Script URL,Skript URL @@ -2947,11 +3046,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,I listevisning DocType: Email Account,Use TLS,Bruk TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Ugyldig brukernavn eller passord +DocType: Scheduled Job Type,Weekly Long,Ukentlig lang apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Last ned Mal apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Legg tilpassede script for å former. ,Role Permissions Manager,Rolle Tillatelser manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Navnet på den nye utskriftsformat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Bytt sidepanel +DocType: Server Script,After Save (Submitted Document),Etter lagring (innsendt dokument) DocType: Data Migration Run,Pull Insert,Trekk inn DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Maksimum poeng tillatt etter multiplisering av poeng med multiplikatorverdien (Merk: For ingen grenser, la dette feltet være tomt eller sett 0)" @@ -2971,6 +3072,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogg apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ikke installert apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Last ned med data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},endrede verdier for {0} {1} +DocType: Server Script,Before Cancel,Før avbryt DocType: Workflow State,hand-right,hånd høyre DocType: Website Settings,Subdomain,Underdomene DocType: S3 Backup Settings,Region,Region @@ -3017,12 +3119,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Gammelt Passord DocType: S3 Backup Settings,us-east-1,oss-øst-en apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Innlegg {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","For å formatere kolonner, gi kolonneetiketter i søket." +DocType: Onboarding Slide,Slide Fields,Skyvfelt DocType: Has Domain,Has Domain,Har Domene DocType: User,Allowed In Mentions,Tillatt i omtaler apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Har du ikke en konto? Melde deg på apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Kan ikke fjerne ID-feltet apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan ikke sette Assign Endre hvis ikke Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Abonnerte dokumenter apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Brukerinstillinger DocType: Report,Reference Report,Referanserapport DocType: Activity Log,Link DocType,Link DOCTYPE @@ -3040,6 +3144,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoriser Google Kalen apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Siden du leter etter mangler. Dette kan være fordi det flyttes eller det er en skrivefeil i linken. apps/frappe/frappe/www/404.html,Error Code: {0},Feilkode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivelse for notering siden, i klartekst, bare et par linjer. (maks 140 tegn)" +DocType: Server Script,DocType Event,DocType-hendelse apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} er obligatoriske felt DocType: Workflow,Allow Self Approval,Tillat selv godkjenning DocType: Event,Event Category,Hendelse Kategori @@ -3056,6 +3161,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Navnet ditt apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Tilkoblingssuksess DocType: DocType,InnoDB,Uskyldig +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,En Onboarding-lysbilde av lysbildetype Fortsett eksisterer allerede. DocType: DocType,Default Sort Field,Standard sorteringsfelt DocType: File,Is Folder,Er Folder DocType: Document Follow,DocType,DOCTYPE @@ -3093,8 +3199,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,verdier DocType: Workflow State,arrow-up,pil opp DocType: Dynamic Link,Link Document Type,Koble dokumenttype apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Det skal være minst en rad for {0} tabellen +DocType: Server Script,Server Script,Server script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","For å konfigurere Auto Repeat, aktiverer du "Tillat Auto Repeat" fra {0}." DocType: OAuth Bearer Token,Expires In,utløper om +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Antall ganger du vil gjenta settet med felt (f.eks: hvis du vil ha 3 kunder i lysbildet, sett dette feltet til 3. Bare det første settet med felt vises som obligatorisk i lysbildet)" DocType: DocField,Allow on Submit,Tillat på Send DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Unntak Type @@ -3104,6 +3212,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,overskrifter apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Kommende arrangementer apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Fyll inn verdier for App tilgangsnøkkel og App hemmelig nøkkel +DocType: Email Account,Append Emails to Sent Folder,Legg e-post til sendt mappe DocType: Web Form,Accept Payment,godta betaling apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Velg listeelement apps/frappe/frappe/config/core.py,A log of request errors,En logg over forespørsels feil @@ -3122,7 +3231,7 @@ DocType: Translation,Contributed,bidratt apps/frappe/frappe/config/customization.py,Form Customization,Formtilpasning apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ingen aktive økter DocType: Web Form,Route to Success Link,Rute til suksesslink -DocType: Top Bar Item,Right,Rett +DocType: Onboarding Slide Field,Right,Rett apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Ingen kommende arrangementer DocType: User,User Type,Brukertype DocType: Prepared Report,Ref Report DocType,Ref Rapporter DocType @@ -3140,6 +3249,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Vær så snill, apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL må starte med 'http: //' eller 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Alternativ 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Dette kan ikke angres DocType: Workflow State,Edit,Redigere DocType: Website Settings,Chat Operators,Chatoperatører DocType: S3 Backup Settings,ca-central-1,ca-sentral-1 @@ -3151,7 +3261,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Rapport med mer enn 10 kolonner ser bedre ut i liggende modus. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ugyldig feltnavn: {0} DocType: Milestone,Milestone,Milestone @@ -3160,7 +3269,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Gå til {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-post er dempet apps/frappe/frappe/config/integrations.py,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Opp -apps/frappe/frappe/utils/data.py,1 weeks ago,1 uke siden +DocType: Onboarding Slide,Slide Description,Lysbildebeskrivelse DocType: Communication,Error,Feil apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Vennligst sett opp en melding først DocType: Auto Repeat,End Date,Sluttdato @@ -3181,10 +3290,12 @@ DocType: Footer Item,Group Label,Gruppe etikett DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-kontakter er konfigurert. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 post blir eksportert +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ingen e-postkonto tilknyttet brukeren. Legg til en konto under Bruker> E-postinnboks. DocType: DocField,Report Hide,Rapporter Skjul apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Trevisning ikke tilgjengelig for {0} DocType: DocType,Restrict To Domain,Begrens til domene DocType: Domain,Domain,Domene +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ugyldig fil-URL. Kontakt systemadministrator. DocType: Custom Field,Label Help,Etiketten Hjelp DocType: Workflow State,star-empty,stjerners-tomt apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datoer er ofte lett å gjette. @@ -3209,6 +3320,7 @@ DocType: Workflow State,hand-left,hand-venstre DocType: Data Import,If you are updating/overwriting already created records.,Hvis du oppdaterer / overskriver allerede opprettede poster. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Er global DocType: Email Account,Use SSL,Bruk SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,play-sirkel apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentet kunne ikke tilordnes riktig apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ugyldig "depends_on" -uttrykk @@ -3225,6 +3337,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Sist oppdatert apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,For dokumenttype DocType: Workflow State,arrow-right,pil høyre +DocType: Server Script,API Method,API-metode DocType: Workflow State,Workflow state represents the current state of a document.,Arbeidsflyt staten representerer den nåværende tilstanden i et dokument. DocType: Letter Head,Letter Head Based On,Brevhode basert på apps/frappe/frappe/utils/oauth.py,Token is missing,Token mangler @@ -3264,6 +3377,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Kompakt Element Skriv ut DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,omdirigere URL +DocType: Onboarding Slide Field,Placeholder,Plassholder DocType: SMS Settings,Enter url parameter for receiver nos,Skriv inn url parameter for mottaker nos DocType: Chat Profile,Online,på nett DocType: Email Account,Always use Account's Name as Sender's Name,Bruk alltid kontoens navn som avsenderens navn @@ -3273,7 +3387,6 @@ DocType: Workflow State,Home,Hjem DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Brukeren kan logge inn med e-post-ID eller brukernavn DocType: Workflow State,question-sign,spørsmålstegn -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} er deaktivert apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Feltet "rute" er obligatorisk for Webvisninger apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Sett inn kolonne før {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Brukeren fra dette feltet vil bli belønnet poeng @@ -3298,6 +3411,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Hvis eier DocType: Data Migration Mapping,Push,Trykk apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Slipp filer her DocType: OAuth Authorization Code,Expiration time,utløps~~POS=TRUNC tid +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Åpne dokumenter DocType: Web Page,Website Sidebar,nettstedet Sidebar DocType: Web Form,Show Sidebar,Show Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Du må være innlogget for å få tilgang til denne {0}. @@ -3313,6 +3427,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale snar DocType: Desktop Icon,Page,Side apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Kunne ikke finne {0} i {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Navn og etternavn av seg selv er lett å gjette. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument omdøpt fra {0} til {1} apps/frappe/frappe/config/website.py,Knowledge Base,Kunnskapsbase DocType: Workflow State,briefcase,stresskoffert apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Verdien kan ikke endres for {0} @@ -3349,6 +3464,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Veksle gridvisning apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Gå til neste post +DocType: System Settings,Time Format,Tidsformat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ugyldige betaling gateway legitimasjon DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dette er malfilen som genereres med bare radene som har noen feil. Du bør bruke denne filen for korrigering og import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Angi tillatelser på dokumenttyper og roller @@ -3391,12 +3507,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Svar apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Artikler i Desk (aliaser) DocType: DocField,Collapsible Depends On,Sammenleggbar Avhenger DocType: Print Style,Print Style Name,Skriv ut stilnavn +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Grupp etter felt kreves for å opprette et oversiktsdiagram DocType: Print Settings,Allow page break inside tables,Tillate sideskift inni tabeller DocType: Email Account,SMTP Server,SMTP-server DocType: Print Format,Print Format Help,Print Format Hjelp apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} rom må ha minst én bruker. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Telle +DocType: Dashboard Chart,Group By Type,Gruppe etter type apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Ny kommentar til {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},opprettes {0} som {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Hvis du oppdaterer, vennligst velg "Over" annet eksisterende rader blir ikke slettet." @@ -3407,14 +3525,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Brukerpro DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dato {0} må være i format: {1} DocType: About Us Settings,Org History Heading,Org Historie Overskrift +DocType: Scheduled Job Type,Scheduled Job Type,Planlagt jobbtype DocType: Print Settings,Allow Print for Cancelled,Lar utskrifts for avbrutt DocType: Communication,Integrations can use this field to set email delivery status,Integrasjoner kan bruke dette feltet til å angi e-postlevering status +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Du har ikke tillatelser til å kansellere alle koblede dokumenter. DocType: Web Form,Web Page Link Text,Web Page Link Text DocType: Page,System Page,System side apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Sette standard format, sidestørrelse, utskriftsstil etc." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Tilpasninger for <b>{0}</b> eksportert til: <br> {1} DocType: Website Settings,Include Search in Top Bar,Inkluder Søk i Top Bar +DocType: Scheduled Job Type,Daily Long,Daglig lang DocType: GSuite Settings,Allow GSuite access,Tillat GSuite-tilgang DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming @@ -3506,6 +3627,7 @@ DocType: Notification,Send days before or after the reference date,Sende dager f DocType: User,Allow user to login only after this hour (0-24),Tillater brukeren å logge inn først etter denne timen (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Tildel en etter en, i rekkefølge" DocType: Integration Request,Subscription Notification,Abonnementsvarsling +DocType: Customize Form Field, Allow in Quick Entry ,Tillat hurtiginngang apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,eller fest en DocType: Auto Repeat,Start Date,Startdato apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Verdi @@ -3520,6 +3642,7 @@ DocType: Google Drive,Backup Folder ID,Mappe-ID for sikkerhetskopi apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i utviklermodus! Sett i site_config.json eller gjøre 'Custom' DOCTYPE. DocType: Workflow State,globe,kloden DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,video DocType: Assignment Rule,Priority,Prioritet DocType: Email Queue,Unsubscribe Param,Avmelding Param DocType: DocType,Hide Sidebar and Menu,Skjul sidefelt og meny @@ -3531,6 +3654,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Tillate import (via dataimp apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sideinnstillinger +DocType: Notification Settings,Notification Settings,Varslingsinnstillinger apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Lagrer ... apps/frappe/frappe/www/update-password.html,Invalid Password,ugyldig passord apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importert {0} post fra {1}. @@ -3546,6 +3670,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Brevhodebilde DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron-format apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Rapporter DocType: SMS Settings,Use POST,Bruk POST DocType: Communication,SMS,tekstmelding @@ -3591,18 +3716,20 @@ DocType: Workflow,Allow approval for creator of the document,Tillat godkjenning apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Lagre rapport DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Serverhandling apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator nås {0} på {1} via IP Address {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Foreldrefelt må være et gyldig feltnavn apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Mislyktes mens du endret abonnement DocType: LDAP Settings,LDAP Group Field,LDAP-gruppefelt +DocType: Notification Subscribed Document,Notification Subscribed Document,Varsel Abonnert Dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Lik apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Ugyldig CSV-format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Feil ved tilkobling til QZ Tray Application ... <br><br> Du må ha QZ Tray-applikasjon installert og kjørt for å bruke Raw Print-funksjonen. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klikk her for å laste ned og installere QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klikk her for å lære mer om Raw Printing</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Sett Antall sikkerhetskopier DocType: DocField,Do not allow user to change after set the first time,Ikke la brukeren endre etter satt første gang apps/frappe/frappe/utils/data.py,1 year ago,1 år siden +DocType: DocType,Links Section,Koblingsseksjonen apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Vis logg over alle utskrivnings-, nedlastnings- og eksportarrangementer" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 måned DocType: Contact,Contact,Kontakt @@ -3629,16 +3756,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,ny email DocType: Custom DocPerm,Export,Export apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Hvis du vil bruke Google Kalender, aktiverer du {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Legger også til statusavhengighetsfeltet {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Oppdatert {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-skuff mislyktes: DocType: Dropbox Settings,Dropbox Settings,Dropbox Innstillinger DocType: About Us Settings,More content for the bottom of the page.,Mer innhold til nederst på siden. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Dette dokumentet er omgjort apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive-sikkerhetskopi er vellykket. +DocType: Webhook,Naming Series,Navngi Series DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE som denne Workflow er aktuelt. DocType: User,Enabled,Aktivert apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Kunne ikke fullføre installasjonen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Ny {0}: {1} -DocType: Tag Category,Category Name,Category Name +DocType: Blog Category,Category Name,Category Name apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Foreldre er påkrevd for å få data om barnets tabeller apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Abonnenter DocType: Print Settings,PDF Settings,PDF-innstillinger @@ -3674,6 +3804,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalender apps/frappe/frappe/client.py,No document found for given filters,Ingen dokument funnet for gitt filtre apps/frappe/frappe/config/website.py,A user who posts blogs.,En bruker som poster blogger. +DocType: DocType Action,DocType Action,DocType-handling apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","En annen {0} med navnet {1} finnes, velg et annet navn" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Website Theme Bilde @@ -3683,6 +3814,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Kan ikke apps/frappe/frappe/config/integrations.py,Backup,backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Dokumenttype er nødvendig for å lage et oversiktsdiagram DocType: DocField,Read Only,Read Only +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Kunne ikke opprette razorpay-ordre apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Ny Nyhetsbrev DocType: Energy Point Log,Energy Point Log,Energipunktlogg DocType: Print Settings,Send Print as PDF,Send Skriv ut som PDF @@ -3708,16 +3840,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bek apps/frappe/frappe/www/login.html,Or login with,Eller logg inn med DocType: Error Snapshot,Locals,Lokalbefolkningen apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommunisert via {0} på {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} nevnte deg i en kommentar i {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Velg gruppe etter ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} er nødvendig DocType: Integration Request,Integration Type,integrasjon Type DocType: Newsletter,Send Attachements,Send vedlegg +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Fant ingen filtre apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakter Integrasjon. DocType: Transaction Log,Transaction Log,Transaksjonslogg apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistikk basert på resultatene fra forrige måned (fra {0} til {1}) DocType: Contact Us Settings,City,By +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Skjul kort for alle brukere apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktiver Tillat automatisk gjenta for doktype {0} i Tilpass skjema DocType: DocField,Perm Level,Perm nivå apps/frappe/frappe/www/confirm_workflow_action.html,View document,Se dokument @@ -3729,6 +3862,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},'I global søk' ikke tillatt for type {0} i rad {1} DocType: Energy Point Log,Appreciation,Verdsettelse +DocType: Dashboard Chart,Number of Groups,Antall grupper apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Vis liste DocType: Workflow,Don't Override Status,Ikke overstyr Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Søkeord @@ -3770,7 +3904,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-nordvest-en DocType: Dropbox Settings,Limit Number of DB Backups,Begrens antall DB-sikkerhetskopier DocType: Custom DocPerm,Level,Nivå -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Siste 30 dager DocType: Custom DocPerm,Report,Rapporter apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Beløpet må være større enn 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Koblet til QZ-skuff! @@ -3787,6 +3920,7 @@ DocType: S3 Backup Settings,us-west-2,oss-vest-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Velg Barnetabell apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Endre +DocType: Social Login Key,User ID Property,Bruker-ID-eiendom DocType: Email Domain,domain name,domenenavn DocType: Contact Email,Contact Email,Kontakt Epost DocType: Kanban Board Column,Order,Rekkefølge @@ -3809,7 +3943,7 @@ DocType: Contact,Last Name,Etternavn DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Venstre DocType: Event,All Day,Hele Dagen apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Ser ut som noe er galt med dette nettstedets betaling gateway konfigurasjon. Ingen betaling er gjort. DocType: GCalendar Settings,State,Stat @@ -3841,7 +3975,6 @@ DocType: Workflow State,User,Bruker DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Vis tittel i nettleservinduet som "Prefix - title" DocType: Payment Gateway,Gateway Settings,Gateway Innstillinger apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,tekst i dokumenttype -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Kjør test apps/frappe/frappe/handler.py,Logged Out,Logget ut apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mer... DocType: System Settings,User can login using Email id or Mobile number,Brukeren kan logge inn med e-post-ID eller mobilnummer @@ -3858,6 +3991,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sammendrag DocType: Event,Event Participants,Eventdeltakere DocType: Auto Repeat,Frequency,Hyppighet +DocType: Onboarding Slide,Slide Order,Slide Order DocType: Custom Field,Insert After,Sett Etter DocType: Event,Sync with Google Calendar,Synkroniser med Google Kalender DocType: Access Log,Report Name,Rapportnavn @@ -3885,6 +4019,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maks bredde for type Valuta er 100px i rad {0} apps/frappe/frappe/config/website.py,Content web page.,Innholds nettside. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Legg til en ny rolle +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besøk websiden +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ny oppgave DocType: Google Contacts,Last Sync On,Sist synk på DocType: Deleted Document,Deleted Document,slettet Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Noe gikk galt @@ -3895,7 +4031,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klientsiden skript utvidelser i Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Rekordene for følgende doktypefiler blir filtrert -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planlegger inaktiv +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planlegger inaktiv DocType: Blog Settings,Blog Introduction,Blogg Introduksjon DocType: Global Search Settings,Search Priorities,Søkeprioriteter DocType: Address,Office,Kontor @@ -3905,13 +4041,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Dashborddiagramkobling DocType: User,Email Settings,E-postinnstillinger apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Slipp her DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Hvis det er aktivert, kan brukeren logge inn fra hvilken som helst IP-adresse ved å bruke tofaktoraut. Dette kan også angis for alle brukere i Systeminnstillinger" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Skriverinnstillinger ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vennligst skriv inn passordet ditt for å fortsette apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vennligst skriv inn passordet ditt for å fortsette apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Meg apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} er ikke en gyldig State apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Gjelder alle dokumenttyper -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Oppdatering av energipunkt +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Oppdatering av energipunkt +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Kjør jobber bare daglig hvis inaktive i (dager) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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} DocType: Chat Message,Room Type,Romtype DocType: Data Import Beta,Import Log Preview,Forhåndsvisning av importlogg @@ -3920,6 +4056,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-sirkel DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP-brukeroppretting og kartlegging apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Du kan finne ting ved å spørre «finne appelsin i kundenes +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Dagens hendelser apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Sorry! Brukeren skal ha full tilgang til sin egen rekord. ,Usage Info,bruk info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Vis hurtigtaster @@ -3936,6 +4073,7 @@ DocType: DocField,Unique,Unique apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} verdsatt {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delvis suksess DocType: Email Account,Service,Tjeneste +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker DocType: File,File Name,Filnavn apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Fant du ikke {0} for {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3949,6 +4087,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Komplett DocType: GCalendar Settings,Enable,Aktiver DocType: Google Maps Settings,Home Address,Hjemmeadresse apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan bare laste opp 5000 poster på en gang. (Kan være mindre i noen tilfeller) +DocType: Report,"output in the form of `data = [columns, result]`","output i form av `data = [kolonner, resultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Gjeldende dokumenttyper apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Sett opp regler for brukeroppdrag. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Utilstrekkelig Tillatelse for {0} @@ -3966,7 +4105,6 @@ DocType: Communication,To and CC,Til og CC DocType: SMS Settings,Static Parameters,Statiske Parametere DocType: Chat Message,Room,Rom apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},oppdatert til {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Bakgrunnsjobber kjører ikke. Kontakt administrator DocType: Portal Settings,Custom Menu Items,Custom Menu Items apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Alle bilder som er festet til nettstedet Slideshow skal være offentlige DocType: Workflow State,chevron-right,chevron-rett @@ -3981,11 +4119,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} verdier valgt DocType: DocType,Allow Auto Repeat,Tillat automatisk gjenta apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ingen verdier å vise +DocType: DocType,URL for documentation or help,URL for dokumentasjon eller hjelp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-postskjema apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} posten ble vellykket. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Bruker {0} har ikke tilgang til doktype via rolletillatelse for dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Både brukernavn og passord kreves +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,La\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vennligst oppdater for å få det siste dokumentet. DocType: User,Security Settings,Sikkerhetsinnstillinger apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Legg til kolonne @@ -3995,6 +4135,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Vennligst finn vedlagte {0}: {1} DocType: Web Page,Set Meta Tags,Angi metatagger +DocType: Email Account,Use SSL for Outgoing,Bruk SSL for utgående 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: S3 Backup Settings,Backup Limit,Backup Limit DocType: Dashboard Chart,Line,Linje @@ -4027,4 +4168,3 @@ DocType: DocField,Ignore User Permissions,Ignorer brukertillatelser apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Lagret apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Spør administratoren å bekrefte registreringen DocType: Domain Settings,Active Domains,Aktive domener -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Vis Logg diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv index 19c7f94139..891a69bcb8 100644 --- a/frappe/translations/pl.csv +++ b/frappe/translations/pl.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Proszę wybrać kwotę Field. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Ładowanie pliku importu ... DocType: Assignment Rule,Last User,Ostatni użytkownik -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nowe zadanie, {0}, zostało przypisane do Ciebie przez {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Zapisane ustawienia domyślne sesji apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Załaduj ponownie plik DocType: Email Queue,Email Queue records.,Zapisy email kolejce. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,Drzewo {0} DocType: User,User Emails,E-maile użytkowników DocType: User,Username,Nazwa użytkownika apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importuj Zip +DocType: Scheduled Job Type,Create Log,Utwórz dziennik apps/frappe/frappe/model/base_document.py,Value too big,Wartość zbyt duża DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Uruchom test skryptowy @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Miesięcznie DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Włącz Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Niebezpieczeństwo -DocType: Address,Email Address,E-mail +apps/frappe/frappe/www/login.py,Email Address,E-mail DocType: Workflow State,th-large, DocType: Communication,Unread Notification Sent,Nieprzeczytane Powiadomienie Wysłano apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,eksport nie jest dozwolony. Potrzebujesz {0} modeli żeby eksportować @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Anul DocType: DocType,Is Published Field,Pole jest publikowany DocType: GCalendar Settings,GCalendar Settings,Ustawienia GCalendar DocType: Email Group,Email Group,Grupa email +apps/frappe/frappe/__init__.py,Only for {},Jedynie dla {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendarz Google - nie można usunąć zdarzenia {0} z kalendarza Google, kod błędu {1}." DocType: Event,Pulled from Google Calendar,Wyciągnął z Kalendarza Google DocType: Note,Seen By,Widziany przez apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj wiele -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Zyskałeś kilka punktów energii apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nieprawidłowy obraz użytkownika. DocType: Energy Point Log,Reverted,Odwrócone DocType: Success Action,First Success Message,Pierwszy komunikat o sukcesie @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,nie jest podo apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nieprawidłowa wartość: {0} musi być {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Zmień właściwość pola (ukryj, tylko-do-odczytu, pozwolenia etc.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Doceniać +DocType: Notification Settings,Document Share,Udostępnianie dokumentu DocType: Workflow State,lock,Zablokowany apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Ustawienia strony Kontakt apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator Zalogowani @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Jeśli ta opcja jest włączona, dokument jest oznaczony jako widoczny, gdy użytkownik otworzy go po raz pierwszy" DocType: Auto Repeat,Repeat on Day,Powtórz w dzień DocType: DocField,Color,Kolor +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Oznacz wszystkie jako przeczytane DocType: Data Migration Run,Log,Log DocType: Workflow State,indent-right, DocType: Has Role,Has Role,ma rolę @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Pokaż śledzenie DocType: DocType,Default Print Format,Domyślny format wydruku DocType: Workflow State,Tags,Tagi +DocType: Onboarding Slide,Slide Type,Typ slajdu apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Brak: Zakończenie przepływu prac apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} pole nie może być ustawiony jako jedyne w {1}, jako że nie są unikatowe istniejących wartości" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Typy dokumentów @@ -136,7 +139,6 @@ DocType: Language,Guest,Gość DocType: DocType,Title Field,Pole tytułu DocType: Error Log,Error Log,Dziennik błędów apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,nieprawidłowy URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Ostatnie 7 dni apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Powtarza jak "abcabcabc" są tylko nieznacznie trudniejsze do odgadnięcia niż "abc" DocType: Notification,Channel,Kanał apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jeśli uważasz, że to wynik nieuprawnionego dostępu, należy zmienić hasło administratora." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Wybierz kolumnę apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Formularz ten został zmodyfikowany po załadowaniu go DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Dziennik powiadomień 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otwórz Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Um apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Wyślij DocType: Workflow Action Master,Workflow Action Name,Nazwa Akcji Przepływu Pracy apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType nie może być połączony -DocType: Web Form Field,Fieldtype,Typ pola +DocType: Onboarding Slide Field,Fieldtype,Typ pola apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nie jest to plik zip DocType: Global Search DocType,Global Search DocType,DocType wyszukiwania globalnego DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Wiadomość wysłana? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Przełącz wykres apps/frappe/frappe/desk/form/save.py,Did not cancel,Nie anulowano DocType: Social Login Key,Client Information,Informacja klientów +DocType: Energy Point Rule,Apply this rule only once per document,Zastosuj tę regułę tylko raz na dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Tylko do odczytu zależy apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Zalogowany jako Gość lub Administratora DocType: Email Account,UNSEEN,NIEWIDZIALNY apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Menedżer plików @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Powód 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Brak aktywności +DocType: Server Script,Script Manager,Menedżer skryptów +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Brak aktywności apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacje osób trzecich apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Brak wydarzeń dzisiaj apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nie możesz dać sobie punktów przeglądu apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType musi być nadpisany dla wybranego zdarzenia dokumentu DocType: Workflow State,circle-arrow-up, @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Niedozwolone dla {0}: {1}. Ograniczone pole: {2} 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,You are not allowed to delete a standard Website Theme,"Nie masz uprawnień, aby usunąć standardowy motyw strony WWW" +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Utwórz swój pierwszy {0} DocType: Data Import,Log Details,Szczegóły dziennika DocType: Workflow Transition,Example,Przykład DocType: Webhook Header,Webhook Header,Nagłówek Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Czat w Tle apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Oznacz jako przeczytane apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aktualizacja {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Slajd dołączania <b>{0}</b> o tej samej kolejności slajdów już istnieje apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Wyłącz Raport DocType: Translation,Contributed Translation Doctype Name,Nazwa udostępnionego tłumaczenia +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ustawienia> Dostosuj formularz DocType: PayPal Settings,Redirect To,Aby przekierować DocType: Data Migration Mapping,Pull,Ciągnąć DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Format JavaScript: raporty frappe.query [ 'ReportName'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Rekord wewnętrzna akcji do DocType: Energy Point Settings,Review Levels,Przejrzyj poziomy DocType: Workflow State,Comment,Komentarz DocType: Data Migration Plan,Postprocess Method,Metoda postprocesowa +DocType: DocType Action,Action Type,Rodzaj działania apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Zrobić zdjęcie DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Można zmienić załączone dokumenty poprzez anulowanie ich, a następnie zmieniając je." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Zapisz jako DocType: Comment,Seen,Widziany apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Pokaż więcej szczegółów +DocType: Server Script,Before Submit,Przed przesłaniem 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,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,Archive,Archiwum @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Klucz do Dostępu do Dropboxa apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Niepoprawna nazwa pola <b>{0}</b> w konfiguracji add_fetch niestandardowego skryptu apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Wybierz Kontakty Google, z którymi kontakt powinien zostać zsynchronizowany." DocType: Web Page,Main Section (HTML),Główna sekcja (HTML) +DocType: Scheduled Job Type,Annual,Roczny DocType: Workflow State,headphones,słuchawki apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Hasło jest wymagane lub wybierz Oczekuje Hasło DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,np replies@yourcomany.com. Wszystkie odpowiedzi przyjdą do tej skrzynki. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Określa kolejność slajdu w kreatorze. Jeśli slajd nie ma być wyświetlany, priorytet należy ustawić na 0." DocType: Data Migration Run,Current Mapping,Bieżące mapowanie apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Wymagany poprawny adres e-mail i imię apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Ustaw wszystkie załączniki jako prywatne @@ -317,6 +331,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Zasady transakcji apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Pokazuje tylko pierwsze {0} wierszy w podglądzie apps/frappe/frappe/core/doctype/report/report.js,Example:,Przykład: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ograniczenia DocType: Workflow,Defines workflow states and rules for a document.,Definiuje stany przepływu pracy i zasady dokumentu. DocType: Workflow State,Filter,filtr apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},"Sprawdź dziennik błędów, aby uzyskać więcej informacji: {0}" @@ -328,6 +343,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Praca apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} wylogowany: {1} DocType: Address,West Bengal,Bengal Zachodni +DocType: Onboarding Slide,Information,Informacja apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable, DocType: Transaction Log,Row Index,Indeks wierszy DocType: Social Login Key,Facebook,Facebook @@ -346,7 +362,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Przycisk Pomocy DocType: Kanban Board Column,purple,fioletowy DocType: About Us Settings,Team Members,Członkowie zespołu +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Będzie uruchamiał zaplanowane zadania tylko raz dziennie dla nieaktywnych witryn. Domyślnie 4 dni, jeśli jest ustawiony na 0." DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Zaplanowane zadanie DocType: Custom DocPerm,Permissions,Uprawnienia apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks do wewnętrznej integracji DocType: Dropbox Settings,Allow Dropbox Access,Zezwalaj na dostęp do Dropbox @@ -401,6 +419,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skanu DocType: Email Flag Queue,Email Flag Queue,Email Oznacz Queue DocType: Access Log,Columns / Fields,Kolumny / Pola apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Arkusze stylów dla formatów wydruku +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Pole Funkcja agregująca jest wymagana do utworzenia wykresu deski rozdzielczej apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Nie można zidentyfikować otwarte {0}. Spróbuj czegoś innego. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Twoje informacje zostały przedłożone apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Użytkownik {0} nie może być usunięty @@ -417,11 +436,12 @@ DocType: Property Setter,Field Name,Nazwa pola DocType: Assignment Rule,Assign To Users,Przypisz do użytkowników apps/frappe/frappe/public/js/frappe/utils/utils.js,or,albo apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Nazwa Modułu... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Kontynuuj +DocType: Onboarding Slide,Continue,Kontynuuj apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integracja Google jest wyłączona. DocType: Custom Field,Fieldname,Nazwa pola DocType: Workflow State,certificate,certyfikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Weryfikowanie ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Twoje zadanie w {0} {1} zostało usunięte apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Pierwsza kolumna z danymi musi być pusta apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Pokaż wszystkie wersje apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Wyświetl komentarz @@ -431,12 +451,14 @@ DocType: User,Restrict IP,Ogranicz IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Deska rozdzielcza apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nie można w tym momencie wysłać e-maili. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendarz Google - nie można zaktualizować zdarzenia {0} w kalendarzu Google, kod błędu {1}." +DocType: Notification Log,Email Content,Treść e-mail apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Wyszukaj lub wpisz polecenie DocType: Activity Log,Timeline Name,Timeline Nazwa apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Tylko jeden {0} może być ustawiony jako podstawowy. DocType: Email Account,e.g. smtp.gmail.com,np smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj nową regułę DocType: Contact,Sales Master Manager,Główny Menadżer Sprzedaży +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Aby aplikacja działała, musisz włączyć JavaScript." DocType: User Permission,For Value,Dla wartości DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,Ostatni krok @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Pole nazwy środkowej LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importowanie {0} z {1} DocType: GCalendar Account,Allow GCalendar Access,Zezwalaj na dostęp do GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} jest polem obowiązkowym +DocType: DocType,Documentation Link,Link do dokumentacji apps/frappe/frappe/templates/includes/login/login.js,Login token required,Wymagany token logowania apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Ranking miesięczny: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Wybierz wiele elementów listy @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL Pliku DocType: Version,Table HTML,Tabela HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Dodaj subskrybentów +DocType: Notification Log,Energy Point,Punkt energetyczny apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Nadchodzące Wydarzenia na Dziś DocType: Google Calendar,Push to Google Calendar,Przekaż do Kalendarza Google DocType: Notification Recipient,Email By Document Field,E-mail Przez Pole dokumentu @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Zaraz wracam DocType: Currency,Fraction Units,Jednostki ułamku apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} od {1} do {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Oznacz jako wykonane DocType: Chat Message,Type,Typ DocType: Google Settings,OAuth Client ID,Identyfikator klienta OAuth DocType: Auto Repeat,Subject,Temat apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Powrót do Pulpitu DocType: Web Form,Amount Based On Field,Kwota wg Polu +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nie ma śledzonych wersji. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Proszę sprawdzić pocztę do weryfikacji apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fałd nie mogą być na końcu formy DocType: Communication,Bounced,Odbił +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,z DocType: Deleted Document,Deleted Name,Nazwa usunięte apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Użytkownicy systemu i strony DocType: Workflow Document State,Doc Status,Doc Status @@ -526,6 +551,7 @@ DocType: Language,Language Code,Kod języka DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Uwaga: Domyślnie wysyłane są wiadomości e-mail dotyczące nieudanych kopii zapasowych. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Dodaj filtr apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS wysłany do następujących numerów: {0} +DocType: Notification Settings,Assignments,Przydziały apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Rozpocznij rozmowę. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Zawsze dodawaj nagłówek ""Wersja robocza"" podczas drukowania dokumentów w wersji roboczej" @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,Bieżący start mapowania apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email został oznaczony jako spam DocType: Comment,Website Manager,Manager strony WWW apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Odzyskanie pliku zostało rozłączone. Proszę spróbuj ponownie. +DocType: Data Import Beta,Show Failed Logs,Pokaż nieudane dzienniki apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Tłumaczenia apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Wybrałeś dokumenty robocze lub anulowane apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} został ustawiony na stan {1} do {2} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumentu zapisanego DocType: GSuite Templates,Destination ID,Identyfikator miejsca docelowego DocType: Desktop Icon,List,lista DocType: Activity Log,Link Name,Łącze Nazwa +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Masz jeszcze\ DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr +DocType: Onboarding Slide,Onboarding Slide,Zjeżdżalnia apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nieprawidłowe hasło: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nieprawidłowe hasło: DocType: Print Settings,Send document web view link in email,Wyślij Document Link zobaczyć web maila @@ -603,6 +632,7 @@ DocType: Kanban Board Column,darkgrey,ciemno szary apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Udane: {0} {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Upuszczać +DocType: Dashboard Chart,Aggregate Function Based On,Funkcja agregująca na podstawie apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Proszę powielić tego dokonać zmian apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Naciśnij Enter, aby zapisać" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generowanie PDF powiodło się z powodu niedziałających linków graficznych @@ -616,7 +646,9 @@ DocType: Notification,Days Before,Dni przed apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Codzienne wydarzenia powinny zakończyć się w tym samym dniu. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edytować... DocType: Workflow State,volume-down,obniż-głośność +DocType: Onboarding Slide,Help Links,Linki pomocnicze apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Dostęp niedozwolony z tego adresu IP +DocType: Notification Settings,Enable Email Notifications,Włącz powiadomienia e-mail apps/frappe/frappe/desk/reportview.py,No Tags,Brak tagów DocType: Email Account,Send Notification to,Wyślij Powiadomienie do DocType: DocField,Collapsible,Składany @@ -645,6 +677,7 @@ DocType: Google Drive,Last Backup On,Ostatnia kopia zapasowa włączona DocType: Customize Form Field,Customize Form Field,Dostosuj Pole Formularza DocType: Energy Point Rule,For Document Event,W przypadku zdarzenia dokumentu DocType: Website Settings,Chat Room Name,Nazwa pokoju czatu +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Bez zmian DocType: OAuth Client,Grant Type,Grant Rodzaj apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Sprawdź, które dokumenty są czytelne przez Użytkownika" DocType: Deleted Document,Hub Sync ID,Identyfikator Hub Sync @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,uży DocType: Auto Repeat,Quarterly,Kwartalnie apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",Domena poczty elektronicznej nie została skonfigurowana dla tego konta. Czy utworzyć konto? DocType: User,Reset Password Key,Zresetuj Klucz Hasła +DocType: Dashboard Chart,All Time,Cały czas apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Niedozwolony status dokumentu dla {0} DocType: Email Account,Enable Auto Reply,Włącz automatyczną odpowiedź apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nie Widziany @@ -664,6 +698,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Wiado DocType: Email Account,Notify if unreplied,Informuj jeśli Tematy bez odpowiedzi apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Zeskanuj kod QR i wprowadź wyświetlony kod. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Włącz gradienty +DocType: Scheduled Job Type,Hourly Long,Godzinna DocType: System Settings,Minimum Password Score,Minimalny Wynik Hasła DocType: System Settings,Minimum Password Score,Minimalny Wynik Hasła DocType: DocType,Fields,Pola @@ -672,11 +707,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Nadrzędna apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup zakończony! apps/frappe/frappe/config/desktop.py,Developer,Deweloper apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Stworzony +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Aby go włączyć, postępuj zgodnie z instrukcjami w następującym linku: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} w wierszu {1} nie może mieć jednocześnie obu przypisanych paramentów typu URL i elementu zależnego apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Powinien być co najmniej jeden wiersz dla następujących tabel: {0} DocType: Print Format,Default Print Language,Domyślny język wydruku apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Przodkowie apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nie może być usunięty +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Brak logów zakończonych niepowodzeniem apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Brak komentarzy apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Proszę skonfigurować SMS przed skonfigurowaniem go jako metody uwierzytelniania przez SMS Settings apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Zarówno DocType i Imię wymagane @@ -700,6 +737,7 @@ DocType: Website Settings,Footer Items,Składniki Stopki apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Codziennie +DocType: Onboarding Slide,Max Count,Maksymalna liczba apps/frappe/frappe/config/users_and_permissions.py,User Roles,Role Użytkownika DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Nieruchomość Seter zastępuje standardowy DOCTYPE lub właściwości pola apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nie można zaktualizować: Nieprawidłowy / nieważny link @@ -718,6 +756,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd, DocType: Integration Request,Host,Gospodarz DocType: Data Import Beta,Import File,Importować plik +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Błąd szablonu apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Kolumna <b>{0}</b> istnieje. DocType: ToDo,High,Wysoki apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nowe wydarzenie @@ -733,6 +772,7 @@ DocType: Web Form Field,Show in filter,Pokaż w filtrze DocType: Address,Daman and Diu,Daman i Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Osobiste +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Ustawienia drukowania nieprzetworzonego ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Szczegółowe informacje można znaleźć na stronie https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Zbiorcza Zmiana Nazwy DocType: Email Queue,Show as cc,Pokaż jako cc @@ -742,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Zrobić film DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informacje wprowadzające na stronie Kontakt DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,Kciuk w dół +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Anulowanie dokumentów DocType: User,Send Notifications for Email threads,Wyślij powiadomienia o wątkach e-mail apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nie w trybie dewelopera @@ -749,7 +790,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Kopie zapas DocType: DocField,In Global Search,W Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left, -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} lat temu apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"To jest ryzykowne, aby usunąć ten plik: {0}. Proszę skontaktować się z System Manager." DocType: Currency,Currency Name,Nazwa waluty apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Brak wiadomości e-mail @@ -764,11 +804,13 @@ DocType: Energy Point Rule,User Field,Pole użytkownika DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Naciśnij Usuń apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} już wypisany do {1} {2} +DocType: Scheduled Job Type,Stopped,Zatrzymany apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nie usunięto apps/frappe/frappe/desk/like.py,Liked,Podobało apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Wyślij teraz apps/frappe/frappe/core/doctype/doctype/doctype.py,"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" apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Pozwól gościowi DocType: Report,Query,Zapytanie DocType: Customize Form,Sort Order,Kolejność apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},Pole 'W widoku listy' nie jest dozwolone dla typu {0} w lini {1} @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Metoda uwierzytelniania dwóch czynników apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najpierw ustaw nazwę i zapisz rekord. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 rekordów +DocType: DocType Link,Link Fieldname,Link Nazwa pola apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Udostępnione {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Wyrejestrowanie DocType: View Log,Reference Name,Nazwa Odniesienia apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Zmień użytkownika +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pierwszy apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Zaktualizuj tłumaczenia DocType: Error Snapshot,Exception,Wyjątek DocType: Email Account,Use IMAP,Wykorzystanie IMAP @@ -808,6 +852,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Zasady określające przejście w stan pracy. DocType: File,Folder,Falcówka DocType: Website Route Meta,Website Route Meta,Strona internetowa Trasa Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Biuletyn Kierownik apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opcja 1 @@ -834,7 +879,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ust apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Skonfiguruj wykresy DocType: User,Last IP,Ostatnio używany IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Dodaj temat do wiadomości e-mail -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Nowy dokument {0} został udostępniony przez Ciebie {1}. DocType: Data Migration Connector,Data Migration Connector,Złącze migracji danych apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} cofnięty {1} DocType: Email Account,Track Email Status,Śledź status e-mail @@ -887,6 +931,7 @@ DocType: Email Account,Default Outgoing,Domyślnie Wychodzący DocType: Workflow State,play,play apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Kliknij na link poniżej, aby dokończyć rejestrację i ustawić nowe hasło" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nie dodano +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} zdobył {1} punktów za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Brak Konta e-mail przypisanego DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,"Ustawienia strony ""Skontaktuj się z nami""" @@ -895,6 +940,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Szukanie DocType: Workflow State,text-width,szerokość tekstu apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksymalny limit Załącznik do tego rekordu osiągnięty. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Wyszukaj według nazwy pliku lub rozszerzenia +DocType: Onboarding Slide,Slide Title,Tytuł slajdu DocType: Notification,View Properties (via Customize Form),Właściwości widoku (przez Customize Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Kliknij plik, aby go wybrać." DocType: Note Seen By,Note Seen By,Uwaga postrzegane przez @@ -921,13 +967,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Udostępnij adres URL DocType: System Settings,Allow Consecutive Login Attempts ,Zezwalaj na kolejne próby logowania apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Wystąpił błąd podczas procesu płatności. Proszę skontaktuj się z nami. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Jeśli Typ slajdu to Utwórz lub Ustawienia, w pliku {ref_doctype} .py powinna istnieć metoda „create_onboarding_docs”, która ma zostać wykonana po zakończeniu slajdu." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dni temu DocType: Email Account,Awaiting Password,Oczekuje na Hasło DocType: Address,Address Line 1,Pierwszy wiersz adresu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nie potomkowie DocType: Contact,Company Name,Nazwa firmy DocType: Custom DocPerm,Role,Rola -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Ustawienia ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,do twojej przeglądarki apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,rejestrator @@ -987,6 +1033,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Śledź, czy adres e-mail został otwarty przez odbiorcę. <br> Uwaga: jeśli wysyłasz do wielu odbiorców, nawet jeśli jeden odbiorca odczyta wiadomość e-mail, zostanie ona uznana za "Otwartą"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Uzupełnij Brakujące Wartości apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Zezwól na dostęp do kontaktów Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ograniczony DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Oznacz jako nieprzeczytane DocType: Activity Log,Operation,Operacja @@ -1040,6 +1087,7 @@ DocType: Web Form,Allow Print,Pozwól na Drukowanie DocType: Communication,Clicked,Kliknął apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nie obserwuj apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nie ma zgodny na '{0} {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Proszę ustawić domyślne konto e-mail w Ustawienia> E-mail> Konto e-mail apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Zaplanowane do wysłania DocType: DocType,Track Seen,Tor widziany DocType: Dropbox Settings,File Backup,Kopia zapasowa plików @@ -1048,12 +1096,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,"Nie znalezio apps/frappe/frappe/config/customization.py,Add custom forms.,Dodaj niestandardowe formy. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0} {1} {2} w apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,przedstawiła ten dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ustawienia> Uprawnienia użytkownika apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,System zapewnia wiele pre-definiowanych ról. Można dodać nowe role do ustawiania uprawnień. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nazwa wyzwalacza -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domeny +DocType: Onboarding Slide,Domains,Domeny DocType: Blog Category,Blog Category,Kategoria blogu apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Nie można zmapować, ponieważ następujący warunek zawiesza się" DocType: Role Permission for Page and Report,Roles HTML,Role HTML @@ -1094,7 +1141,6 @@ DocType: Assignment Rule Day,Saturday,Sobota DocType: User,Represents a User in the system.,Reprezentuje użytkownika w systemie. DocType: List View Setting,Disable Auto Refresh,Wyłącz automatyczne odświeżanie DocType: Comment,Label,etykieta -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Zadanie {0}, które przypisane do {1}, został zamknięty." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zamknij to okno DocType: Print Format,Print Format Type,Drukuj Typ Formatu DocType: Newsletter,A Lead with this Email Address should exist,Klient z tym adresem Email powinien już istnieć @@ -1111,6 +1157,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Ustawienia SMTP dla wia apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,wybierz DocType: Data Export,Filter List,Lista filtrów DocType: Data Export,Excel,Przewyższać +DocType: System Settings,HH:mm,GG: mm DocType: Email Account,Auto Reply Message,Wiadomość automatycznej odpowiedzi DocType: Data Migration Mapping,Condition,Stan apps/frappe/frappe/utils/data.py,{0} hours ago,{0} godzin(y) temu @@ -1129,12 +1176,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Baza wiedzy specjalista DocType: Communication,Sent Read Receipt,Wysłane potwierdzenie odbioru DocType: Email Queue,Unsubscribe Method,Metoda Wyrejestrowanie +DocType: Onboarding Slide,Add More Button,Dodaj przycisk więcej DocType: GSuite Templates,Related DocType,DocType powiązany apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,"Edytuj, aby dodać treść" apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Wybierz język apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Szczegóły karty apps/frappe/frappe/__init__.py,No permission for {0},Brak zgody na {0} DocType: DocType,Advanced,Zaawansowany +DocType: Onboarding Slide,Slide Image Source,Slide Image Source apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Odniesienie: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Pani @@ -1151,6 +1200,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Magister DocType: DocType,User Cannot Create,Użytkownik nie może stworzyć apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Pomyślnie wykonane apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dostęp do Dropbox jest zatwierdzony! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Czy na pewno chcesz połączyć {0} z {1}? DocType: Customize Form,Enter Form Type,Wprowadź Typ Formularza DocType: Google Drive,Authorize Google Drive Access,Autoryzuj dostęp do Dysku Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Brakujący parametr Nazwa płyty Kanban @@ -1160,7 +1210,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!", apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Niestandardowe formaty do drukowania, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Zaktualizowano do nowej wersji DocType: Custom Field,Depends On,Zależny od DocType: Kanban Board Column,Green,Zielony DocType: Custom DocPerm,Additional Permissions,Dodatkowe uprawnienia @@ -1188,6 +1237,7 @@ DocType: Energy Point Log,Social,Społeczny apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Kalendarz Google - nie można utworzyć kalendarza dla {0}, kod błędu {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Edycja wiersza DocType: Workflow Action Master,Workflow Action Master,Główny plik Akcji Przepływu Pracy +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Usuń wszystko DocType: Custom Field,Field Type,Typ pola apps/frappe/frappe/utils/data.py,only.,tylko. DocType: Route History,Route History,Historia trasy @@ -1224,11 +1274,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Zapomniałeś hasła? DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,błąd serwera +DocType: Server Script,After Delete,Po usunięciu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Zobacz wszystkie poprzednie raporty. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Identyfikator logowania jest wymagany DocType: Website Slideshow,Website Slideshow,Pokaz slajdów Strony Internetowej apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Brak danych DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Łącze to jest strona główna. Standardowe Linki (indeks, login, produkty, blog, informacje, dane kontaktowe)" +DocType: Server Script,After Submit,Po przesłaniu apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Uwierzytelnianie nie powiodło się podczas odbierania wiadomości e-mail z konta e-mail {0}. Wiadomość z serwera: {1} DocType: User,Banner Image,Zdjęcie Baneru DocType: Custom Field,Custom Field,Własne pole @@ -1269,15 +1321,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Jeśli użytkownik ma żadnej roli zaznaczone, użytkownik staje się "systemu użytkownika". "Użytkownik systemu" ma dostęp do pulpitu" DocType: System Settings,Date and Number Format,Format daty i numeru apps/frappe/frappe/model/document.py,one of,Jeden z -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ustawienia> Dostosuj formularz apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Sprawdzanie jednej chwili apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Pokaż tagi DocType: DocField,HTML Editor,Edytor HTML 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,Dane do faktury DocType: Email Queue,Not Sent,Nie wysłane -DocType: Web Form,Actions,Działania -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ustawienia> Użytkownik +DocType: DocType,Actions,Działania DocType: Workflow State,align-justify,Wyrównaj do lewej i do prawej DocType: User,Middle Name (Optional),Drugie imię (opcjonalnie) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Niedozwolone @@ -1292,6 +1342,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Brak Wynik DocType: System Settings,Security,Zabezpieczenia apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Zaplanowane do wysłania do {0} odbiorców apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Ciąć +DocType: Server Script,After Save,Po zapisaniu apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},zmieniono nazwę z {0} na {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} z {1} ({2} wierszy z dziećmi) DocType: Currency,**Currency** Master,** Waluta ** Główna @@ -1318,16 +1369,19 @@ DocType: Prepared Report,Filter Values,Filtruj wartości DocType: Communication,User Tags,Tagi użytkownika DocType: Data Migration Run,Fail,Zawieść DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Ostatnia egzekucja DocType: Data Migration Run,Pull Failed,Pull Failed apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Pokaż / ukryj karty DocType: Communication,Feedback Request,Zgłoszenie Zapytanie apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importuj dane z plików CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Następujących dziedzinach brakuje: +DocType: Notification Log,From User,Od użytkownika apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Anulowanie {0} DocType: Web Page,Main Section,Główna Sekcja DocType: Page,Icon,ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Wskazówka: do hasła wprowadź symbole, numery i duże litery" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Wskazówka: do hasła wprowadź symbole, numery i duże litery" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Skonfiguruj powiadomienia o wzmiankach, zadaniach, punktach energetycznych i innych." DocType: DocField,Allow in Quick Entry,Zezwalaj w szybkim wpisie apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/rrrr @@ -1359,7 +1413,6 @@ DocType: Website Theme,Theme URL,URL motywu DocType: Customize Form,Sort Field,Sortuj pola DocType: Razorpay Settings,Razorpay Settings,Ustawienia Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edytuj filtr -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Dodaj więcej DocType: System Settings,Session Expiry Mobile,Długość sesji na urządzeniach mobilnych apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nieprawidłowy użytkownik lub hasło apps/frappe/frappe/templates/includes/search_box.html,Search results for,Wyniki wyszukiwania dla @@ -1375,8 +1428,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Reguła punktu energetycznego DocType: Communication,Delayed,Opóźniony apps/frappe/frappe/config/settings.py,List of backups available for download,Lista kopii zapasowych dostępnych do pobrania +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Wypróbuj nowy import danych apps/frappe/frappe/www/login.html,Sign up,Rejestracja apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Wiersz {0}: niedozwolone wyłączenie Obowiązkowe dla standardowych pól +DocType: Webhook,Enable Security,Włącz zabezpieczenia apps/frappe/frappe/config/customization.py,Dashboards,Pulpity nawigacyjne DocType: Test Runner,Output,Wydajność DocType: Milestone,Track Field,Pole toru @@ -1384,6 +1439,7 @@ DocType: Notification,Set Property After Alert,Ustaw właściwość po alertu apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj pola do formularzy. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Wygląda na to, że coś jest nie tak z konfiguracją witryny Paypal." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Dodaj recenzję +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} przydzielił Ci nowe zadanie {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Rozmiar czcionki (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Tylko standardowe DocTypes mogą być dostosowywane z Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,8 +1451,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Pozycja menu apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Ustaw filtry DocType: Contact Us Settings,Email ID,Identyfikator E-mail DocType: Energy Point Rule,Multiplier Field,Pole mnożnika +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nie można utworzyć zamówienia Razorpay. Skontaktuj się z administratorem DocType: Dashboard Chart,Time Interval,Przedział czasowy DocType: Activity Log,Keep track of all update feeds,Śledź wszystkie kanały aktualizacji +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} udostępnił Ci dokument {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Wykaz środków, które App klient będzie miał dostęp do gdy użytkownik na to pozwala. <br> np projekt" DocType: Translation,Translated Text,Tekst przetłumaczony DocType: Contact Us Settings,Query Options,Opcje Zapytania @@ -1415,6 +1473,7 @@ DocType: DefaultValue,Key,Klucz DocType: Address,Contacts,Kontakty DocType: System Settings,Setup Complete,Konfiguracja zakończona apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Zgłoś wszystkich akcji dokumentów +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Szablon importu powinien być typu .csv, .xlsx lub .xls" apps/frappe/frappe/www/update-password.html,New Password,Nowe hasło apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtr {0} brakujący apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Przepraszam! Nie można usuwać auto generowane komentarzy @@ -1431,6 +1490,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Biegać DocType: Blog Post,Content (HTML),Treść (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Konfiguracja dla DocType: Personal Data Download Request,User Name,Nazwa Użytkownika DocType: Workflow State,minus-sign,znak minusa apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nie znaleziono @@ -1438,11 +1498,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0} - brak uprawnień apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Uprawnienia eksportowe na zamówienie apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nie znaleziono żadnych przedmiotów. DocType: Data Export,Fields Multicheck,Pola Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Ukończono DocType: Activity Log,Login,Zaloguj się DocType: Web Form,Payments,Płatności apps/frappe/frappe/www/qrcode.html,Hi {0},Cześć {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integracja z Dyskiem Google. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} cofnął twoje punkty w {1} {2} DocType: System Settings,Enable Scheduled Jobs,Włącz zaplanowane zadania apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notatki: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Nieaktywny @@ -1467,6 +1527,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Szablo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Błąd uprawnień apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Nazwa {0} nie może być {1} DocType: User Permission,Applicable For,Stosowne dla +DocType: Dashboard Chart,From Date,Od daty apps/frappe/frappe/core/doctype/version/version_view.html,Success,Sukces apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesja wygasła apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesja wygasła @@ -1479,7 +1540,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Pow apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Niedozwolony w stanie DocType: Async Task,Async Task,Asynchroniczny Zadanie DocType: Workflow State,picture,zdjęcie -apps/frappe/frappe/www/complete_signup.html,Complete,Kompletny +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Kompletny DocType: DocType,Image Field,Pole obrazu DocType: Print Format,Custom HTML Help,Niestandardowe HTML Help DocType: LDAP Settings,Default Role on Creation,Domyślna rola przy tworzeniu @@ -1487,6 +1548,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Następne Województwo DocType: User,Block Modules,Moduły blokowe DocType: Print Format,Custom CSS,Niestandardowy CSS +DocType: Energy Point Rule,Apply Only Once,Złóż wniosek tylko raz apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentarz DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorowane: {0} {1} @@ -1498,6 +1560,7 @@ DocType: Email Account,Default Incoming,Domyślnie przychodzące DocType: Workflow State,repeat,powtórz DocType: Website Settings,Banner,Baner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Wartość musi być równa {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Anuluj wszystkie dokumenty 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Przejdź do listy {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoc w wyszukiwaniu @@ -1506,6 +1569,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Zarejestro apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatyczne powtarzanie tego dokumentu zostało wyłączone. DocType: DocType,Hide Copy,Ukryj Kopie apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Wyczyść wszystkie pola +DocType: Server Script,Before Save,Przed zapisaniem apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} musi być unikalny apps/frappe/frappe/model/base_document.py,Row,Wiersz apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC i szablon wiadomości e-mail" @@ -1516,7 +1580,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Pomyślnie zaimportowano {0} DocType: User,API Key,Klucz API DocType: Email Account,Send unsubscribe message in email,Wyślij wiadomość do maila wypisz -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edytuj tytuł apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Nazwa pola, które będzie DocType dla tego pola łącza." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumenty przypisane do ciebie i przez ciebie. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Możesz także skopiować i wkleić to @@ -1548,8 +1611,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Dołącz obrazek DocType: Workflow State,list-alt, apps/frappe/frappe/www/update-password.html,Password Updated,Hasło zaktualizowane +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ustawienia> Uprawnienia użytkownika apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kroki weryfikujące login apps/frappe/frappe/utils/password.py,Password not found,Hasło nie zostało znalezione +DocType: Webhook,Webhook Secret,Secret Webhook DocType: Data Migration Mapping,Page Length,Długość strony DocType: Email Queue,Expose Recipients,Expose Odbiorcy apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Dołącz do jest obowiązkowe dla przychodzących maili @@ -1577,6 +1642,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maksymalny rozmiar załącznika (w MB) apps/frappe/frappe/www/login.html,Have an account? Login,Mieć konto? Zaloguj się +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Ustawienia drukowania ... DocType: Workflow State,arrow-down,strzałka w dół apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Wiersz {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Użytkownik nie może usuwać {0}: {1} @@ -1598,6 +1664,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Wpisz swo DocType: Dropbox Settings,Dropbox Access Secret,Sekret do Dostępu do Dropboxa DocType: Tag Link,Document Title,Tytuł dokumentu apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obowiązkowy) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} lat temu DocType: Social Login Key,Social Login Provider,Dostawca logowania społecznościowego apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodaj kolejny komentarz apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Brak danych w pliku. Proszę ponownie dołączyć nowy plik do danych. @@ -1612,11 +1679,12 @@ DocType: Workflow State,hand-down, apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Nie znaleziono pól, które mogłyby zostać użyte jako kolumna Kanban. Użyj formularza Dostosuj, aby dodać niestandardowe pole typu „Wybierz”." DocType: Address,GST State,Stan GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Nie można ustawić Anuluj bez Zatwierdź +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Użytkownik ({0}) DocType: Website Theme,Theme,Motyw DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Przekierowanie URI związany z Kodeksem Autentyczna apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Otwórz Pomoc DocType: DocType,Is Submittable, -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nowe wspomnienie +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nowe wspomnienie apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nie zsynchronizowano żadnych nowych kontaktów Google. DocType: File,Uploaded To Google Drive,Przesłano na Dysk Google apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Wartość dla checkboxu może wynosić 0 albo 1 @@ -1628,7 +1696,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Skrzynka odbiorcza DocType: Kanban Board Column,Red,Czerwony DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,Skrypt +DocType: Report,Script,Skrypt apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument nie może zostać zapisany. DocType: Energy Point Rule,Maximum Points,Maksymalna liczba punktów apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje ustawienia @@ -1658,9 +1726,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} punkty aprecjacji za {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Przypisywanie ról do użytkowników odbywa się na stronie ustawień Użytkowników. Ustawienia > Użytkownik apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Dodaj komentarz +DocType: Dashboard Chart,Select Date Range,Wybierz zakres dat DocType: DocField,Mandatory,Obowiązkowe apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moduł do eksportu +DocType: Scheduled Job Type,Monthly Long,Miesięcznie apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Brak podstawowych uprawnień +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Wyślij wiadomość e-mail na adres {0}, aby połączyć ją tutaj" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Znaczenie Zatwierdzenia, Anulowania, Modyfikacji" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Do zrobienia @@ -1669,7 +1740,6 @@ DocType: Milestone Tracker,Track milestones for any document,Śledź kamienie mi DocType: Social Login Key,Identity Details,Szczegóły tożsamości apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Zmiana stanu przepływu pracy jest niedozwolona od {0} do {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Pokaż pulpit -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nowa wiadomość DocType: File,Preview HTML,Podgląd HTML DocType: Desktop Icon,query-report,Raport zapytań DocType: Data Import Beta,Template Warnings,Ostrzeżenia szablonu @@ -1680,18 +1750,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Połączenie apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Edytuj ustawienia raportu automatycznego raportu pocztowego DocType: Chat Room,Message Count,Liczba wiadomości DocType: Workflow State,book,książka +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} jest powiązany z następującymi przesłanymi dokumentami: {2} DocType: Communication,Read by Recipient,Czytaj od odbiorcy DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Błąd w skrypcie niestandardowe apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,Imię {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nie ustawiono uprawnień do tych kryteriów DocType: Auto Email Report,Auto Email Report,Auto Raport e-mail +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Udostępniono nowy dokument apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Usuń komentarz? DocType: Address Template,This format is used if country specific format is not found,"Format ten jest używany, jeśli Format danego kraju nie znaleziono" DocType: System Settings,Allow Login using Mobile Number,Zezwalaj na logowanie przy użyciu numeru telefonu komórkowego apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jeśli ta opcja jest włączona, użytkownicy, którzy logują się z ograniczonego adresu IP, nie będą monitowani o dwu czynnika uwierzytelniania" +DocType: Server Script,After Cancel,Po anulowaniu DocType: Auto Repeat,Get Contacts,Pobierz kontakty apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Stanowisk złożony w ramach {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Pomijanie kolumny bez tytułu @@ -1702,6 +1775,7 @@ DocType: User,Login After,Logowanie po godzinie DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Druk DocType: Workflow State,thumbs-up,Kciuk w górę +DocType: Notification Log,Mention,Wzmianka DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Czcionki apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precyzja obliczeń powinna być pomiędzy 1 i 6 @@ -1709,7 +1783,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,i apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ten raport został wygenerowany na {0} DocType: Error Snapshot,Frames,Ramki -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Zadanie +DocType: Notification Log,Assignment,Zadanie DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link, DocType: Auto Email Report,Report Filters,Raport Filtry @@ -1726,7 +1800,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nie można zaktualizować imprezę apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Kod weryfikacyjny został wysłany na Twój zarejestrowany adres e-mail. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Zablokowane +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Twój cel apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtr musi mieć 4 wartości (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nie podano nazwy dla {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Zastosuj regułę przydziału apps/frappe/frappe/utils/bot.py,show,pokazać apps/frappe/frappe/utils/data.py,Invalid field name {0},Niepoprawna nazwa pola {0} @@ -1736,7 +1812,6 @@ DocType: Workflow State,text-height,wysokość tekstu DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapowanie planu migracji danych apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Uruchamianie Frappé ... DocType: Web Form Field,Max Length,Maksymalna długość -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Dla {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker, apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Zgłoś problem @@ -1772,6 +1847,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Brak strony lub została o apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Recenzje DocType: DocType,Route,Trasa apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Ustawienia bramki płatności Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} zdobył {1} punkt za {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Pobierz załączone obrazy z dokumentu DocType: Chat Room,Name,Nazwa DocType: Contact Us Settings,Skype,Skype @@ -1782,7 +1858,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Otwórz link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Twój język DocType: Dashboard Chart,Average,Średni apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Dodaj wiersz -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Drukarka apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Zapytanie musi być typu SELECT DocType: Auto Repeat,Completed,Zakończono @@ -1842,6 +1917,7 @@ DocType: GCalendar Account,Next Sync Token,Następny token synchronizacji DocType: Energy Point Settings,Energy Point Settings,Ustawienia punktu energetycznego DocType: Async Task,Succeeded,Osiągnąłeś sukces apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Okienka obowiązkowe wymagane w {0} +DocType: Onboarding Slide Field,Align,Wyrównać apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Resetuj Dostęp dla {0} apps/frappe/frappe/config/desktop.py,Users and Permissions,Użytkownicy i uprawnienia DocType: S3 Backup Settings,S3 Backup Settings,S3 Ustawienia kopii zapasowej @@ -1858,7 +1934,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nowa nazwa formatu wydruku apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Kliknij poniższy link, aby zatwierdzić wniosek" DocType: Workflow State,align-left,Wyrównaj do lewej +DocType: Onboarding Slide,Action Settings,Ustawienia akcji DocType: User,Defaults,Wartości domyślne +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Dla porównania użyj> 5, <10 lub = 324. Dla zakresów użyj 5:10 (dla wartości od 5 do 10)." DocType: Energy Point Log,Revert Of,Przywróć apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Połączy się z istniejącą DocType: User,Birth Date,Data Urodzenia @@ -1913,6 +1991,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,jest w DocType: Notification,Value Change,Zmień Wartość DocType: Google Contacts,Authorize Google Contacts Access,Autoryzuj dostęp do kontaktów Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Wyświetlanie tylko pól numerycznych z raportu +apps/frappe/frappe/utils/data.py,1 week ago,1 tydzień temu DocType: Data Import Beta,Import Type,Typ importu DocType: Access Log,HTML Page,Strona HTML DocType: Address,Subsidiary,Pomocniczy @@ -1922,7 +2001,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Z nagłówkiem apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nieprawidłowy serwer poczty wychodzącej lub port DocType: Custom DocPerm,Write,Zapisz -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tylko Administrator może tworzyć zapytania / skrypty dla raportów apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualizuje DocType: Data Import Beta,Preview,Podgląd apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Pole "wartość" jest obowiązkowe. Proszę podać wartość, która będzie aktualizowana" @@ -1932,6 +2010,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Zaproś ja DocType: Data Migration Run,Started,Rozpoczęty apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Użytkownik {0} nie ma dostępu do tego dokumentu DocType: Data Migration Run,End Time,Czas zakończenia +DocType: Dashboard Chart,Group By Based On,Grupuj według apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Wybierz Załączniki apps/frappe/frappe/model/naming.py, for {0},dla {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nie masz uprawnień do druku tego dokumentu @@ -1973,6 +2052,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Zweryfikować DocType: Workflow Document State,Update Field,Zaktualizuj Pole DocType: Chat Profile,Enable Chat,Włącz czat DocType: LDAP Settings,Base Distinguished Name (DN),Bazowa nazwa wyróżniająca (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Opuść tę rozmowę apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Nie zostały wybrane opcje dla okienka {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Kolejka / pracownik @@ -2041,12 +2121,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Login nie jest dostępny w tym czasie DocType: Data Migration Run,Current Mapping Action,Bieżąca akcja mapowania DocType: Dashboard Chart Source,Source Name,Źródło Nazwa -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Brak konta e-mail powiązanego z użytkownikiem. Dodaj konto w opcji Użytkownik> Skrzynka e-mail. DocType: Email Account,Email Sync Option,Opcja synchronizacji poczty elektronicznej apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Wiersz nr DocType: Async Task,Runtime,Czas pracy DocType: Post,Is Pinned,Przypięty DocType: Contact Us Settings,Introduction,Wprowadzenie +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Potrzebuję pomocy? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Przypnij globalnie apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Śledzony przez DocType: LDAP Settings,LDAP Email Field,LDAP email Pole @@ -2056,7 +2136,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,"Jest ju DocType: User Email,Enable Outgoing,Włącz wychodzących DocType: Address,Fax,Faks apps/frappe/frappe/config/customization.py,Custom Tags,Własne tagi -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie zostało skonfigurowane. Utwórz nowe konto e-mail w Ustawienia> E-mail> Konto e-mail DocType: Comment,Submitted,Zgłoszny DocType: Contact,Pulled from Google Contacts,Pobrano z kontaktów Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Nieprawidłowe żądanie @@ -2077,9 +2156,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Strona gł apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Przypisanie do mnie DocType: DocField,Dynamic Link,Link dynamiczny apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Naciśnij klawisz Alt, aby uruchomić dodatkowe skróty w menu i pasku bocznym" +DocType: Dashboard Chart,To Date,Do daty DocType: List View Setting,List View Setting,Ustawienie widoku listy apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Pokaż prace które się nie powiodły -DocType: Event,Details,Szczegóły +DocType: Scheduled Job Log,Details,Szczegóły DocType: Property Setter,DocType or Field,DocType albo Pole apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Zrezygnowałeś z tego dokumentu apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Kolor podstawowy @@ -2088,7 +2168,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Wydaje się, że klucz do publikowania lub sekretny klucz jest błędny !!!" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Wydaje się, że klucz do publikowania lub sekretny klucz jest błędny !!!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Szybka pomoc dla Ustawień Pozwoleń -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype przypisać tagi apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Pokaż Poprawki apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Email został przeniesiony do kosza DocType: Report,Report Builder,Kreator raportów @@ -2104,6 +2183,7 @@ DocType: Workflow State,Upload,Prześlij DocType: User Permission,Advanced Control,Zaawansowana kontrola DocType: System Settings,Date Format,Format daty apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nie Opublikowany +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego szablonu adresu. Utwórz nowy w Ustawieniach> Drukowanie i znakowanie> Szablon adresu. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Aktywności przepływu prac (np. Zatwierdzony, Anulowany)." DocType: Data Import,Skip rows with errors,Pomiń wiersze z błędami DocType: Workflow State,flag,flaga @@ -2113,7 +2193,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Wydr apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Przejdź do pola DocType: Contact Us Settings,Forward To Email Address,Prześlij dalej to adresu e-mail DocType: Contact Phone,Is Primary Phone,Jest podstawowym telefonem -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Wyślij e-mail na adres {0}, aby połączyć go tutaj." DocType: Auto Email Report,Weekdays,Dni robocze apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} rekordy zostaną wyeksportowane apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Tytuł pole musi być prawidłową nazwę pola @@ -2121,7 +2200,7 @@ DocType: Post Comment,Post Comment,Wyślij komentarz apps/frappe/frappe/config/core.py,Documents,Dokumenty apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Dziennik aktywności według DocType: Social Login Key,Custom Base URL,Niestandardowy bazowy adres URL -DocType: Email Flag Queue,Is Completed,Jest zakończony +DocType: Onboarding Slide,Is Completed,Jest zakończony apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Zdobądź pola apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Edytuj profil DocType: Kanban Board Column,Archived,W archiwum @@ -2132,12 +2211,13 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Dzisiaj -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Dzisiaj +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Dzisiaj +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Dzisiaj apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).", DocType: Data Import Beta,Submit After Import,Prześlij po imporcie DocType: Error Log,Log of Scheduler Errors,Zaloguj Błędów Scheduler DocType: User,Bio,Biografia +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Wbudowany link pomocy do slajdu DocType: OAuth Client,App Client Secret,Tajny Klient App apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Złożenie apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Rodzic to nazwa dokumentu, do którego zostaną dodane dane." @@ -2145,7 +2225,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,DUŻE LITERY apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Niestandardowy HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Wpisz nazwę folderu -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego szablonu adresu. Utwórz nowy w Ustawieniach> Drukowanie i znakowanie> Szablon adresu. apps/frappe/frappe/auth.py,Unknown User,Nieznany użytkownik apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Wybierz rolę DocType: Comment,Deleted,Usunięte @@ -2161,7 +2240,7 @@ DocType: Chat Token,Chat Token,Token czatu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Utwórz wykres apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Nie importuj -DocType: Web Page,Center,Środek +DocType: Onboarding Slide Field,Center,Środek DocType: Notification,Value To Be Set,"Wartość, którą należy ustawić" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edycja {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Pierwszy poziom @@ -2169,7 +2248,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nazwa bazy danych apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Odśwież Formularz DocType: DocField,Select,Wybierz -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Wyświetl pełny dziennik +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Wyświetl pełny dziennik DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Przykład: status == 'Open' i wpisz == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Plik nie dołączony apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Utracono połączenie. Niektóre funkcje mogą nie działać. @@ -2201,6 +2280,7 @@ DocType: Web Page,HTML for header section. Optional,HTML dla sekcji nagłówka. apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ta funkcja jest nowy i wciąż eksperymentalna apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksymalnie dozwolone {0} wierszy DocType: Dashboard Chart Link,Chart,Wykres +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Globalny Wyrejestrowanie apps/frappe/frappe/utils/password_strength.py,This is a very common password.,To jest bardzo częstym hasłem. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Widok @@ -2217,6 +2297,7 @@ DocType: Data Migration Connector,Hostname,Nazwa hosta DocType: Data Migration Mapping,Condition Detail,Szczegóły warunku apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",W przypadku waluty {0} minimalna kwota transakcji powinna wynosić {1} DocType: DocField,Print Hide,Ukryj Druk +DocType: System Settings,HH:mm:ss,GG: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Do użytkownika apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Wpisz Wartość DocType: Workflow State,tint,odcień @@ -2284,6 +2365,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code for Lo apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj do listy Do Zrobienia DocType: Footer Item,Company,Firma apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Średnia z {0} +DocType: Scheduled Job Log,Scheduled,Zaplanowane DocType: User,Logout from all devices while changing Password,Wyloguj się ze wszystkich urządzeń podczas zmiany hasła apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Zweryfikuj Hasło apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Wystąpiły błędy @@ -2309,7 +2391,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Uprawnienia użytkownika już istnieją apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapowanie kolumny {0} na pole {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Wyświetl {0} -DocType: User,Hourly,Cogodzinny +DocType: Scheduled Job Type,Hourly,Cogodzinny apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Zarejestruj OAuth klienta App DocType: DocField,Fetch If Empty,Pobierz jeśli jest pusty DocType: Data Migration Connector,Authentication Credentials,Poświadczenia uwierzytelniające @@ -2320,10 +2402,10 @@ DocType: SMS Settings,SMS Gateway URL,Adres URL bramki SMS apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},zdobyte przez {0} za pomocą automatycznej reguły {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} lub {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Wszystko gotowe! DocType: Workflow State,trash,kosz DocType: System Settings,Older backups will be automatically deleted,Starsze kopie zapasowe będą automatycznie usuwane apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nieprawidłowy identyfikator klucza dostępu lub tajny klucz dostępu. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Straciłeś kilka punktów energii DocType: Post,Is Globally Pinned,Jest przypięty globalnie apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Ostatnia aktywność DocType: Workflow Transition,Conditions,Warunki @@ -2332,6 +2414,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Potwierdzone DocType: Event,Ends on,Kończy się DocType: Payment Gateway,Gateway,Przejście DocType: LDAP Settings,Path to Server Certificate,Ścieżka do certyfikatu serwera +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript jest wyłączony w Twojej przeglądarce apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Brak dostę pu do linków apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Brak dostę pu do linków apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Podanie tytułu adresu jest wymagane @@ -2351,7 +2434,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jeśli ta opcja zostanie zaznaczona, wiersze zawierające poprawne dane zostaną zaimportowane, a nieprawidłowe wiersze zostaną zrzucone do nowego pliku w celu późniejszego zaimportowania." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument jest tylko edytowalny przez użytkowników z rolą -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Zadanie {0}, które przypisane do {1}, zostało zamknięte przez {2}." DocType: Print Format,Show Line Breaks after Sections,Pokaż podziały wiersza po sekcji DocType: Communication,Read by Recipient On,Odczytany przez odbiorcę DocType: Blogger,Short Name,Skrócona nazwa @@ -2384,6 +2466,7 @@ DocType: Translation,PR sent,PR wysłany DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tylko wysyłanie rekordów z ostatnich X godzin DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tylko wysyłanie rekordów z ostatnich X godzin DocType: Communication,Feedback,Informacja zwrotna +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Zaktualizowano do nowej wersji 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Otwórz tłumaczenie apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ten e-mail jest stworzony automatycznie DocType: Workflow State,Icon will appear on the button,Ikona pojawi się na przycisku @@ -2422,6 +2505,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Strona nie DocType: DocField,Precision,Precyzja liczb DocType: Website Slideshow,Slideshow Items,Elementy pokazu slajdów apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Staraj się unikać powtarzających się słów i znaków +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Powiadomienia wyłączone +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Czy na pewno chcesz usunąć wszystkie wiersze? DocType: Workflow Action,Workflow State,Stan Przepływu Pracy apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,wiersze dodane apps/frappe/frappe/www/list.py,My Account,Moje Konto @@ -2430,6 +2515,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dni Po apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ Tray Connection Active! DocType: Contact Us Settings,Settings for Contact Us Page,Ustawienia Kontakt Page +DocType: Server Script,Script Type,Typ Skryptu DocType: Print Settings,Enable Print Server,Włącz serwer druku apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} tygodni temu DocType: Email Account,Footer,Stopka @@ -2455,8 +2541,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Ostrzeżenie apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Może to zostać wydrukowane na wielu stronach DocType: Data Migration Run,Percent Complete,Procent ukończony -DocType: Tag Category,Tag Category,Kategoria tagów -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Dla porównania użyj> 5, <10 lub = 324. Dla zakresów użyj 5:10 (dla wartości od 5 do 10)." DocType: Google Calendar,Pull from Google Calendar,Wyciągnij z Kalendarza Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Pomoc DocType: User,Login Before,Logowanie przed godziną @@ -2466,17 +2550,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ukryj weekendy apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatycznie generuje dokumenty cykliczne. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Czy +DocType: Onboarding Slide,ERPNext,ERPNastępny DocType: Workflow State,info-sign, apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Wart {0} nie może być lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jaka powinna być waluta? Jeśli nie jest ustawiona, użyje domyślnych ustawień systemowych" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Prześlij dokumenty {0}? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Błąd połączenia z aplikacją QZ Tray ... <br><br> Musisz mieć zainstalowaną i uruchomioną aplikację QZ Tray, aby móc korzystać z funkcji Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Kliknij tutaj, aby pobrać i zainstalować tacę QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Kliknij tutaj, aby dowiedzieć się więcej o drukowaniu surowym</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapowanie drukarki apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Proszę zapisać przed załączeniem. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Czy chcesz anulować wszystkie powiązane dokumenty? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Uprawnienia Roli DocType: Help Article,Intermediate,Pośredni +apps/frappe/frappe/config/settings.py,Email / Notifications,Powiadomienia e-mailowe apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} zmieniono {1} na {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Anulowany dokument przywrócony jako Szkic DocType: Data Migration Run,Start Time,Czas rozpoczęcia @@ -2493,6 +2581,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Mo apps/frappe/frappe/email/smtp.py,Invalid recipient address,Nieprawidłowy adres odbiorcy DocType: Workflow State,step-forward,Przejdź krok dalej DocType: System Settings,Allow Login After Fail,Zezwalaj na logowanie po błędzie +DocType: DocType Link,DocType Link,Łącze DocType DocType: Role Permission for Page and Report,Set Role For,Ustaw rola DocType: GCalendar Account,The name that will appear in Google Calendar,"Nazwa, która pojawi się w Kalendarzu Google" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Bezpośredni pokój z {0} już istnieje. @@ -2510,6 +2599,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Utwórz n DocType: Contact,Google Contacts,Kontakty Google DocType: GCalendar Account,GCalendar Account,Konto GCalendar DocType: Email Rule,Is Spam,Czy Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,"Ostatni, ubiegły, zeszły" apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Zgłoś {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otwórz {0} DocType: Data Import Beta,Import Warnings,Importuj ostrzeżenia @@ -2521,6 +2611,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Usunięte dokumenty apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,W formacie CSV rozróżniana jest wielkość liter apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona Pulpitu już istnieje +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Określ, w których wszystkich domenach powinny się wyświetlać slajdy. Jeśli nic nie określono, slajd jest domyślnie wyświetlany we wszystkich domenach." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Pole {1} w wierszu {2} nie może być ukryte i obowiązkowe bez domyślnych DocType: Newsletter,Create and Send Newsletters,Utwórz i wyślij biuletyny @@ -2531,6 +2622,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Identyfikator zdarzenia Kalendarza Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Rodzic"" oznacza tabelę nadrzędną, w której ten wiersz musi być dodany" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Punkty kontrolne: +DocType: Scheduled Job Log,Scheduled Job Log,Dziennik zaplanowanych zadań +DocType: Server Script,Before Delete,Przed usunięciem apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Udostępnione apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Dołącz pliki / adresy URL i dodaj tabelę. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Wiadomość nie została skonfigurowana @@ -2554,19 +2647,21 @@ DocType: About Us Settings,Settings for the About Us Page,Ustawienia dla O nas P apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Przejrzyj ustawienia bramki płatności apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Przejrzyj ustawienia bramki płatności apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Drukuj Wysłane do drukarki! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Punkty energetyczne +DocType: Notification Settings,Energy Points,Punkty energetyczne +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Godzina {0} musi mieć format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,np pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generuj klucze apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Spowoduje to trwałe usunięcie danych. DocType: DocType,View Settings,Ustawienia widoku +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nowe powiadomienie DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Struktura zapytania +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Brak metody kontrolera get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Oczekuje na weryfikację DocType: Website Meta Tag,Website Meta Tag,Metatag witryny DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Jeśli nietypowy port (np. 587). Jeśli używasz Google Cloud, spróbuj port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Usunięcie daty zakończenia, ponieważ nie może być w przeszłości dla opublikowanych stron." DocType: User,Send Me A Copy of Outgoing Emails,Wyślij mi kopię wychodzących wiadomości e-mail -DocType: System Settings,Scheduler Last Event,Harmonogram Ostatnie Zdarzenie DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Dodaj Google Analytics ID: np. UA-89XXX57-1. Więcej informacji znajdziesz w pomocy Google Analytics. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Hasło nie może być dłuższa niż 100 znaków DocType: OAuth Client,App Client ID,App ID klienta @@ -2595,6 +2690,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Wymagane nowe apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} podzielali ten dokument z {1} DocType: Website Settings,Brand Image,Obraz Marki DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Szablon importu powinien zawierać nagłówek i co najmniej jeden wiersz. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalendarz Google został skonfigurowany. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Ustawienia górnego paska nawigacji, stopki i logo" DocType: Web Form Field,Max Value,Maksymalna wartość @@ -2604,6 +2700,7 @@ DocType: User Social Login,User Social Login,Logowanie społecznościowe użytko apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} skrytykował twoją pracę nad {1} punktem {2} DocType: Contact,All,Wszystko DocType: Email Queue,Recipient,Adresat +DocType: Webhook,Webhook Security,Bezpieczeństwo Webhook DocType: Communication,Has Attachment,zawiera załącznik DocType: Address,Sales User,Sprzedaż użytkownika apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Narzędzie w stylu przeciągnij i upuść do tworzenia i dostosowywania formatów wydruku. @@ -2670,7 +2767,6 @@ DocType: Data Migration Mapping,Migration ID Field,Pole Identyfikator migracji DocType: Dashboard Chart,Last Synced On,Ostatnia synchronizacja włączona DocType: Comment,Comment Type,Typ Komentarza DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} skrytykował twoją pracę w {1} {2} DocType: Assignment Rule,Users,Użytkownicy DocType: Address,Odisha,Odisha DocType: Report,Report Type,Typ raportu @@ -2696,14 +2792,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Przedmiot pokazu slajdów apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Autoryzacja nie jest dozwolona DocType: GSuite Templates,Template ID,Identyfikator szablonu apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kombinacja typu grantu ( <code>{0}</code> ) i typu odpowiedzi ( <code>{1}</code> ) jest niedozwolona -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nowa wiadomość od {0} DocType: Portal Settings,Default Role at Time of Signup,Domyślnie Rola w momencie zarejestruj DocType: DocType,Title Case, apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Kliknij poniższy link, aby pobrać dane" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Włączona skrzynka odbiorcza poczty e-mail dla użytkownika {0} DocType: Data Migration Run,Data Migration Run,Uruchomienie migracji danych DocType: Blog Post,Email Sent,Wiadomość wysłana -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Starsze DocType: DocField,Ignore XSS Filter,Ignoruj filtr XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,usunął(a) apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Ustawienia kopii zapasowej Dropbox @@ -2758,6 +2852,7 @@ DocType: Async Task,Queued,W kolejce DocType: Braintree Settings,Use Sandbox,Korzystanie Sandbox apps/frappe/frappe/utils/goal.py,This month,Ten miesiąc apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nowy format wydruku klienta +DocType: Server Script,Before Save (Submitted Document),Przed zapisaniem (przesłany dokument) DocType: Custom DocPerm,Create,Utwórz apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nie ma więcej elementów do wyświetlenia apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Przejdź do poprzedniego rekordu @@ -2815,6 +2910,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Przenieść do kosza DocType: Web Form,Web Form Fields,Pola formularza internetowego DocType: Data Import,Amended From,Zmodyfikowany od +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Dodaj link do filmu pomocy na wypadek, gdyby użytkownik nie miał pojęcia o tym, co wypełnić slajd." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Ostrzeżenie: Nie można znaleźć {0} w dowolnej tabeli związanej {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Dokument ten jest obecnie w kolejce do realizacji. Proszę spróbuj ponownie @@ -2837,6 +2933,7 @@ DocType: Blog Post,Blog Post,Wpis na blogu DocType: Access Log,Export From,Eksportuj z apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Wyszukiwanie zaawansowane apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nie możesz przeglądać biuletynu. +DocType: Dashboard Chart,Group By,Grupuj według DocType: User,Interests,Zainteresowania apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instrukcja resetowania hasła została wysłana na Twój email DocType: Energy Point Rule,Allot Points To Assigned Users,Przydziel punkty przypisanym użytkownikom @@ -2852,6 +2949,7 @@ DocType: Assignment Rule,Assignment Rule,Reguła przydziału apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Sugerowana Nazwa użytkownika: {0} DocType: Assignment Rule Day,Day,Dzień apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduły +DocType: DocField,Mandatory Depends On,Obowiązkowe zależy od apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Płatność Sukces apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Nie {0} elektronicznej DocType: OAuth Bearer Token,Revoked,odwołane @@ -2859,6 +2957,7 @@ DocType: Web Page,Sidebar and Comments,Pasek boczny i Komentarze apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Niedozwolone jest dołączanie dokumentu {0}, włącz opcję Zezwalaj na drukowanie dla {0} w Ustawieniach drukowania" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie zostało skonfigurowane. Utwórz nowe konto e-mail w Ustawienia> E-mail> Konto e-mail apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Zobacz dokument pod adresem {0} DocType: Stripe Settings,Publishable Key,Klucz publikowany DocType: Stripe Settings,Publishable Key,Klucz publikowany @@ -2874,13 +2973,13 @@ DocType: Currency,Fraction,Ułamek apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Wydarzenie zsynchronizowane z Kalendarzem Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Imię Pole DocType: Contact,Middle Name,Drugie imię +DocType: DocField,Property Depends On,Właściwość zależy od DocType: Custom Field,Field Description,Opis pola apps/frappe/frappe/model/naming.py,Name not set via Prompt, apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Skrzynka e-mail apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aktualizacja {0} {1}, {2}" DocType: Auto Email Report,Filters Display,filtry Wyświetlacz apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Pole „Poprawiono_z” musi być obecne, aby wprowadzić poprawkę." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} docenia twoją pracę nad {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Zapisz filtry DocType: Address,Plant,Zakład apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpowiedz wszystkim @@ -2921,11 +3020,11 @@ DocType: Workflow State,folder-close,Zamknięty folder apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Raport: DocType: Print Settings,Print taxes with zero amount,Drukowanie podatków z zerową kwotą apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,Niedozwolona jest zmiana nazwy {0} +DocType: Server Script,Before Insert,Przed wstawieniem DocType: Custom Script,Custom Script,Własny skrypt DocType: Address,Address Line 2,Drugi wiersz adresu DocType: Address,Reference,Referencja apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Przypisano do -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Skonfiguruj domyślne konto e-mail w Ustawienia> E-mail> Konto e-mail DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Szczegóły odwzorowania migracji danych DocType: Data Import,Action,Działanie DocType: GSuite Settings,Script URL,URL skryptu @@ -2951,11 +3050,13 @@ DocType: User,Api Access,Dostęp do Api DocType: DocField,In List View,W widoku listy DocType: Email Account,Use TLS,Użyj TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Niewłaściwe hasło lub login +DocType: Scheduled Job Type,Weekly Long,Tygodniowy Długi apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Ściągnij Szablon apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj niestandardowy kod javascript do formularza ,Role Permissions Manager,Zarządzanie uprawnieniami roli apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nazwa nowego formatu wydruku apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Przełącz boczny pasek +DocType: Server Script,After Save (Submitted Document),Po zapisaniu (przesłany dokument) DocType: Data Migration Run,Pull Insert,Pull Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maksymalna liczba punktów dozwolona po pomnożeniu punktów przez wartość mnożnika (Uwaga: W przypadku braku limitu pozostaw to pole puste lub ustaw 0) @@ -2975,6 +3076,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,Nie zainstalowano protokołu LDAP apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Pobierz z danymi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},zmieniono wartości dla {0} {1} +DocType: Server Script,Before Cancel,Przed anulowaniem DocType: Workflow State,hand-right, DocType: Website Settings,Subdomain,Subdomena DocType: S3 Backup Settings,Region,Region @@ -3021,12 +3123,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Stare hasło DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posty stworzone przez {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",Aby sformatować kolumny podaj nazwy kolumn w zapytaniu +DocType: Onboarding Slide,Slide Fields,Slajdy pól DocType: Has Domain,Has Domain,Ma domenę DocType: User,Allowed In Mentions,Dozwolony do Oznaczenia apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nie masz konta? Zapisz się apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nie można usunąć pola identyfikatora apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable, DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Dokumenty subskrybowane apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Ustawienia użytkownika DocType: Report,Reference Report,Raport referencyjny DocType: Activity Log,Link DocType,DocType link @@ -3044,6 +3148,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoryzuj dostęp do K apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Strona, której szukasz nie brakuje. To może być dlatego, że porusza się lub jest literówka w linku." apps/frappe/frappe/www/404.html,Error Code: {0},Kod błędu {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)", +DocType: Server Script,DocType Event,Zdarzenie DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} to pola obowiązkowe DocType: Workflow,Allow Self Approval,Zezwalaj na samoobsługę DocType: Event,Event Category,Kategoria wydarzenia @@ -3060,6 +3165,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Twoje imię apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Sukces połączenia DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Onboarding Slide of Slide Type Continue już istnieje. DocType: DocType,Default Sort Field,Domyślne pole sortowania DocType: File,Is Folder,Czy Folder DocType: Document Follow,DocType,DocType @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Zmienio DocType: Workflow State,arrow-up,strzałka w górę DocType: Dynamic Link,Link Document Type,Połącz typ dokumentu apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,W tabeli {0} powinien znajdować się przynajmniej jeden wiersz +DocType: Server Script,Server Script,Skrypt serwera apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Aby skonfigurować automatyczne powtarzanie, włącz „Zezwalaj na automatyczne powtarzanie” z {0}." DocType: OAuth Bearer Token,Expires In,Wygasa za +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Liczba powtórzeń zestawu pól (np. Jeśli chcesz 3 klientów na slajdzie, ustaw to pole na 3. Tylko pierwszy zestaw pól jest pokazany jako obowiązkowy na slajdzie)" DocType: DocField,Allow on Submit,Zezwól na Wysłanie DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Typ wyjątku @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Nagłówki apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,nadchodzące wydarzenia apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Proszę podać wartości App dostęp do kluczowych aplikacji i tajny klucz +DocType: Email Account,Append Emails to Sent Folder,Dołącz wiadomości e-mail do folderu wysłanych DocType: Web Form,Accept Payment,Zaakceptuj płatność apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Wybierz element listy apps/frappe/frappe/config/core.py,A log of request errors,Rejestr błędów @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,Przyczynił się apps/frappe/frappe/config/customization.py,Form Customization,Dostosowywanie formularza apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Brak sesji aktywnych DocType: Web Form,Route to Success Link,Link do sukcesu -DocType: Top Bar Item,Right,Prawo +DocType: Onboarding Slide Field,Right,Prawo apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Brak nadchodzących wydarzeń DocType: User,User Type,Typ użytkownika DocType: Prepared Report,Ref Report DocType,Ref Zgłoś DocType @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Proszę spróbuj apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Adres URL musi zaczynać się od „http: //” lub „https: //” apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcja 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Tego nie da się cofnąć DocType: Workflow State,Edit,Edytuj DocType: Website Settings,Chat Operators,Operatorzy na czacie DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Domyślnie dla {0} musi być opcja -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategoria apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Raport z więcej niż 10 kolumnami wygląda lepiej w trybie poziomym. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nieprawidłowa nazwa pola: {0} DocType: Milestone,Milestone, @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Idź do {0} apps/frappe/frappe/email/queue.py,Emails are muted,Email wyciszony apps/frappe/frappe/config/integrations.py,Google Services,Usługi Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + strzałka w górę -apps/frappe/frappe/utils/data.py,1 weeks ago,1 tydzień temu +DocType: Onboarding Slide,Slide Description,Opis slajdu DocType: Communication,Error,Błąd apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Najpierw skonfiguruj wiadomość DocType: Auto Repeat,End Date,Data zakończenia @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,Grupa Label DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google zostały skonfigurowane. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord zostanie wyeksportowany +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Brak konta e-mail powiązanego z użytkownikiem. Dodaj konto w opcji Użytkownik> Skrzynka e-mail. DocType: DocField,Report Hide,Ukryj Raport apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Widok nie jest dostępny dla Drzewo {0} DocType: DocType,Restrict To Domain,Ogranicz do domeny DocType: Domain,Domain,Domena +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Nieprawidłowy adres URL pliku. Skontaktuj się z administratorem systemu. DocType: Custom Field,Label Help,pomoc w etykiecie DocType: Workflow State,star-empty, apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Terminy często są łatwe do odgadnięcia. @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left, DocType: Data Import,If you are updating/overwriting already created records.,Jeśli aktualizujesz / zastępujesz już utworzone rekordy. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Jest globalny DocType: Email Account,Use SSL,Użyj SSL +DocType: Webhook,HOOK-.####,HAK-.#### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentu nie można poprawnie przypisać apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Nieprawidłowy wyrażenie "depends_on" @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Ostatnio odświeżony apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dla typu dokumentu DocType: Workflow State,arrow-right,strzałka w prawo +DocType: Server Script,API Method,Metoda API DocType: Workflow State,Workflow state represents the current state of a document.,Stan Przepływu Pracy reprezentuje aktualny stan dokumentu. DocType: Letter Head,Letter Head Based On,Szef literowy na podstawie apps/frappe/frappe/utils/oauth.py,Token is missing,Reklamowe brakuje @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Compact Element Drukuj DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,przekierowanie +DocType: Onboarding Slide Field,Placeholder,Symbol zastępczy DocType: SMS Settings,Enter url parameter for receiver nos,Wpisz URL dla odbiorcy numeru DocType: Chat Profile,Online,online DocType: Email Account,Always use Account's Name as Sender's Name,Zawsze używaj nazwy konta jako nazwy nadawcy @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,Start DocType: OAuth Provider Settings,Auto,Automatyczny DocType: System Settings,User can login using Email id or User Name,Użytkownik może zalogować się przy użyciu adresu e-mail lub nazwy użytkownika DocType: Workflow State,question-sign,question-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} jest wyłączone apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Pole "route" jest obowiązkowe w przypadku widoków sieciowych apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Wstaw kolumnę przed {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Użytkownik z tego pola otrzyma punkty @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jeśli Właściciela DocType: Data Migration Mapping,Push,Pchać apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Upuść pliki tutaj DocType: OAuth Authorization Code,Expiration time,czas ważności +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Otwórz dokumenty DocType: Web Page,Website Sidebar,Pasek boczny Witryny DocType: Web Form,Show Sidebar,Show Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Musisz być zalogowany aby uzyskać dostęp do tego {0}. @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne skr DocType: Desktop Icon,Page,Strona apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Nie można znaleźć {0} w {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imiona i nazwiska same w sobie są łatwe do odgadnięcia. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument zmieniono nazwę z {0} na {1} apps/frappe/frappe/config/website.py,Knowledge Base,Baza wiedzy DocType: Workflow State,briefcase,teczka apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Wartość nie może być zmieniona dla {0} @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format Druku apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Przełącz widok siatki apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Przejdź do następnego rekordu +DocType: System Settings,Time Format,Format czasu apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nieprawidłowe poświadczenia bramka płatności DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Jest to plik szablonu generowany tylko z błędami w wierszach. Powinieneś użyć tego pliku do korekty i importu. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Ustaw dostępy dla typów dokumentów i ról @@ -3397,12 +3513,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Odpowiadać apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Strony w biurko (posiadacze miejsce) DocType: DocField,Collapsible Depends On,Składany Zależy od DocType: Print Style,Print Style Name,Nazwa Stylu drukowania +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Pole Grupuj według jest wymagane do utworzenia wykresu deski rozdzielczej DocType: Print Settings,Allow page break inside tables,Pozostawić Podział strony wewnątrz tabel DocType: Email Account,SMTP Server,Serwer SMTP DocType: Print Format,Print Format Help,Format Drukuj Pomoc apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} pokój musi mieć conajmniej jednego użytkownika. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Liczyć +DocType: Dashboard Chart,Group By Type,Grupuj według typu apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nowy komentarz na {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},przywrócone {0} w {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","W przypadku aktualizacji, należy wybrać opcję ""Zastąp"" jeszcze istniejące wiersze nie zostaną usunięte." @@ -3413,8 +3531,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profil u DocType: Web Form,Web Form,Formularz internetowy apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} musi mieć format: {1} DocType: About Us Settings,Org History Heading,Nagłówek Historii Organizacji +DocType: Scheduled Job Type,Scheduled Job Type,Zaplanowany typ pracy DocType: Print Settings,Allow Print for Cancelled,Pozwól na Drukowanie dla Anulowanych DocType: Communication,Integrations can use this field to set email delivery status,"Integracja może użyć tego pola, aby ustawić stan przesyłki e-mail" +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nie masz uprawnień do anulowania wszystkich powiązanych dokumentów. DocType: Web Form,Web Page Link Text,Tekst linku do strony WWW DocType: Page,System Page,Strona systemowa DocType: Page,System Page,Strona systemowa @@ -3422,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,WYJŚCIE apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Dostosowania do <b>{0}</b> wyeksportowanych do: <br> {1} DocType: Website Settings,Include Search in Top Bar,Obejmują Szukaj w górnym pasku +DocType: Scheduled Job Type,Daily Long,Codziennie długo DocType: GSuite Settings,Allow GSuite access,Zezwalaj na dostęp do GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nazwa @@ -3525,6 +3646,7 @@ DocType: Notification,Send days before or after the reference date,Wyślij dni p DocType: User,Allow user to login only after this hour (0-24),Zezwól użytkownikowi na logowanie się tylko po tych godzinach (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Przypisz jeden po drugim, po kolei" DocType: Integration Request,Subscription Notification,Powiadomienie o subskrypcji +DocType: Customize Form Field, Allow in Quick Entry ,Pozwól na szybkie wejście apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,lub załączyć DocType: Auto Repeat,Start Date,Data startu apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Wartość @@ -3539,6 +3661,7 @@ DocType: Google Drive,Backup Folder ID,Identyfikator folderu kopii zapasowej apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nie w trybie dewelopera! Położony w site_config.json lub dokonać DOCTYPE ""custom""." DocType: Workflow State,globe,kula ziemska DocType: System Settings,dd.mm.yyyy,dd.mm.rrrr +DocType: Onboarding Slide Help Link,Video,Wideo DocType: Assignment Rule,Priority,Priorytet DocType: Email Queue,Unsubscribe Param,Wyrejestrowanie Param DocType: DocType,Hide Sidebar and Menu,Ukryj pasek boczny i menu @@ -3550,6 +3673,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Zezwolić na przywóz (popr apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Ustawienia strony +DocType: Notification Settings,Notification Settings,Ustawienia powiadomień apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Oszczędność... apps/frappe/frappe/www/update-password.html,Invalid Password,nieprawidłowe hasło apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Pomyślnie zaimportowano rekord {0} z {1}. @@ -3565,6 +3689,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Obraz głowy listu DocType: Address,Party GSTIN,Strona GSTIN +DocType: Scheduled Job Type,Cron Format,Format Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,Raport {0} DocType: SMS Settings,Use POST,Użyj POST DocType: Communication,SMS,SMS @@ -3610,18 +3735,20 @@ DocType: Workflow,Allow approval for creator of the document,Zezwalaj na zatwier apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Zapisz raport DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,Argumenty API punktu końcowego +DocType: DocType Action,Server Action,Działanie serwera apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator obejrzano {0} na {1} poprzez adres IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Pole nadrzędne musi być prawidłową nazwą pola apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Błąd podczas zmiany subskrypcji DocType: LDAP Settings,LDAP Group Field,Pole grupy LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Dokument subskrybowany powiadomienia apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,równa się apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Nieprawidłowy format CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Błąd połączenia z aplikacją QZ Tray ... <br><br> Musisz mieć zainstalowaną i uruchomioną aplikację QZ Tray, aby móc korzystać z funkcji Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Kliknij tutaj, aby pobrać i zainstalować tacę QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Kliknij tutaj, aby dowiedzieć się więcej o drukowaniu surowym</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Ustaw liczbę kopii zapasowych DocType: DocField,Do not allow user to change after set the first time,Nie zezwól użytkownikowi zmieniać po pierwszym ustawieniu apps/frappe/frappe/utils/data.py,1 year ago,1 rok temu +DocType: DocType,Links Section,Sekcja linków apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Wyświetl dziennik wszystkich zdarzeń drukowania, pobierania i eksportowania" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 miesiąc DocType: Contact,Contact,Kontakt @@ -3648,16 +3775,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nowa wiadomość DocType: Custom DocPerm,Export,Eksport apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Aby korzystać z Kalendarza Google, włącz {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Dodanie również pola zależności statusu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Pomyślnie zaktualizowano {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Taca QZ nie powiodła się: DocType: Dropbox Settings,Dropbox Settings,Ustawienia Dropbox DocType: About Us Settings,More content for the bottom of the page.,Więcej contentu do dolnej strony. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ten dokument został cofnięty apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Pomyślnie utworzono kopię zapasową Dysku Google. +DocType: Webhook,Naming Series,Seria nazw DocType: Workflow,DocType on which this Workflow is applicable., DocType: User,Enabled,Aktywny apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Nie udało się ukończyć konfiguracji apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nowy {0}: {1} -DocType: Tag Category,Category Name,Nazwa kategorii +DocType: Blog Category,Category Name,Nazwa kategorii apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Rodzic musi pobrać dane tabeli podrzędnej apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import abonentów DocType: Print Settings,PDF Settings,Ustawienia PDF @@ -3693,6 +3823,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendarz apps/frappe/frappe/client.py,No document found for given filters,Nie znaleziono dokumentu dla określonych filtrów apps/frappe/frappe/config/website.py,A user who posts blogs.,Użytkownik publikujący blogi. +DocType: DocType Action,DocType Action,Działanie DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Inny {0} z nazwą {1} istnieje, wybierz inną nazwę" DocType: DocType,Custom?,Niestandardowy? DocType: Website Settings,Website Theme Image,Zdjęcie stylu strony WWW @@ -3702,6 +3833,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nie możn apps/frappe/frappe/config/integrations.py,Backup,Kopia zapasowa apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Typ dokumentu jest wymagany do utworzenia wykresu deski rozdzielczej DocType: DocField,Read Only,Tylko do odczytu +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nie można utworzyć zamówienia razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nowy biuletyn DocType: Energy Point Log,Energy Point Log,Dziennik punktów energetycznych DocType: Print Settings,Send Print as PDF,Wyślij Druk w formacie PDF @@ -3727,16 +3859,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot apps/frappe/frappe/www/login.html,Or login with,Lub zaloguj się DocType: Error Snapshot,Locals,Miejscowi apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Przekazywane za pośrednictwem {0} w dniu {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} wspomniał o Tobie w komentarzu w {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Wybierz Grupuj według ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} is wymagany DocType: Integration Request,Integration Type,Rodzaj integracja DocType: Newsletter,Send Attachements,Wyślij załączniki +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nie znaleziono filtrów apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracja kontaktów Google. DocType: Transaction Log,Transaction Log,Dziennik transakcji apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statystyki oparte na wynikach z ostatniego miesiąca (od {0} do {1}) DocType: Contact Us Settings,City,Miasto +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ukryj karty dla wszystkich użytkowników apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Włącz Zezwalaj na automatyczne powtarzanie dla dokumentu {0} w formularzu Dostosuj DocType: DocField,Perm Level,Poziom Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Wyświetl dokument @@ -3748,6 +3881,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},"W wyszukiwaniu globalnym" niedozwolone dla typu {0} w wierszu {1} DocType: Energy Point Log,Appreciation,Uznanie +DocType: Dashboard Chart,Number of Groups,Liczba grup apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Pokaż listę DocType: Workflow,Don't Override Status,Nie zastępują status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Szukany termin @@ -3789,7 +3923,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-northwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limit Liczba kopii zapasowych DB DocType: Custom DocPerm,Level,Poziom -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Ostatnie 30 dni DocType: Custom DocPerm,Report,Raport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Ilość musi być większy niż 0 ° C. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Połączony z tacą QZ! @@ -3806,6 +3939,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Wybierz tabelę podrzędną apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Reszta +DocType: Social Login Key,User ID Property,Właściwość identyfikatora użytkownika DocType: Email Domain,domain name,nazwa domeny DocType: Contact Email,Contact Email,E-mail kontaktu DocType: Kanban Board Column,Order,Zamówienie @@ -3828,7 +3962,7 @@ DocType: Contact,Last Name,Nazwisko DocType: Event,Private,Prywatny apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Opuścił DocType: Event,All Day,Cały Dzień apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Wygląda na to, że coś jest nie tak z konfiguracją bramki płatności tej witryny. Żadna płatność została dokonana." DocType: GCalendar Settings,State,Województwo @@ -3860,7 +3994,6 @@ 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ł" DocType: Payment Gateway,Gateway Settings,Ustawienia bramy apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Tekst w rodzaju dokumentu -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Uruchom testy apps/frappe/frappe/handler.py,Logged Out,Wylogowano apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Jeszcze... DocType: System Settings,User can login using Email id or Mobile number,Użytkownik może zalogować się przy użyciu adresu e-mail lub numeru telefonu komórkowego @@ -3877,6 +4010,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Podsumowanie DocType: Event,Event Participants,Uczestnicy wydarzenia DocType: Auto Repeat,Frequency,Częstotliwość +DocType: Onboarding Slide,Slide Order,Kolejność slajdów DocType: Custom Field,Insert After,Wstaw za DocType: Event,Sync with Google Calendar,Synchronizuj z Kalendarzem Google DocType: Access Log,Report Name,Nazwa raportu @@ -3904,6 +4038,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksymalna szerokość dla typu Waluta to 100px w rzędzie {0} apps/frappe/frappe/config/website.py,Content web page.,Strona WWW zawartości apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj nową rolę +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Odwiedź stronę internetową +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nowy przydział DocType: Google Contacts,Last Sync On,Ostatnia synchronizacja DocType: Deleted Document,Deleted Document,Dokument usunięty apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Coś poszło nie tak @@ -3914,7 +4050,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Krajobraz apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Rozszerzenia skryptów po stronie klienta w JavaScript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Rekordy dla następujących doctypes będą filtrowane -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Harmonogram nieaktywny +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Harmonogram nieaktywny DocType: Blog Settings,Blog Introduction,Wstęp bloga DocType: Global Search Settings,Search Priorities,Priorytety wyszukiwania DocType: Address,Office,Biuro @@ -3924,13 +4060,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Link do tablicy wskaźników DocType: User,Email Settings,Ustawienia wiadomości e-mail apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Upuść tutaj DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Jeśli ta opcja jest włączona, użytkownik może zalogować się z dowolnego adresu IP przy użyciu uwierzytelniania dwustopniowego, można to również ustawić dla wszystkich użytkowników w ustawieniach systemu" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Ustawienia drukarki ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Wprowadź swoje hasło, aby kontynuować" apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Wprowadź swoje hasło, aby kontynuować" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mnie apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} Stan niedozwolony apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Zastosuj do wszystkich typów dokumentów -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizacja punktu energetycznego +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Aktualizacja punktu energetycznego +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Uruchamiaj zadania tylko codziennie, jeśli nieaktywne przez (dni)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}” DocType: Chat Message,Room Type,Rodzaj pokoju DocType: Data Import Beta,Import Log Preview,Importuj podgląd dziennika @@ -3939,6 +4075,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,Tworzenie i mapowanie użytkowników LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Można znaleźć rzeczy, pytając "znaleźć pomarańczowy klientów"" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Dzisiejsze wydarzenia apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Przykro mi! Użytkownik powinien mieć pełny dostęp do własnego rekordu. ,Usage Info,Wykorzystanie informacji apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Pokaż skróty klawiaturowe @@ -3955,6 +4092,7 @@ DocType: DocField,Unique,Unikalny apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} doceniamy w {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Częściowy sukces DocType: Email Account,Service,Usługa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ustawienia> Użytkownik DocType: File,File Name,Nazwa pliku apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nie znaleziono {0} dla {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3968,6 +4106,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Zakończ DocType: GCalendar Settings,Enable, DocType: Google Maps Settings,Home Address,Adres domowy apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Możesz przesłać do 5000 rekordów za jednym zamachem (w niektórych przypadkach jeszcze mniej). +DocType: Report,"output in the form of `data = [columns, result]`","dane wyjściowe w postaci `data = [kolumny, wynik]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Odpowiednie typy dokumentów apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Skonfiguruj reguły przypisywania użytkowników. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Niewystarczająca zgoda na {0} @@ -3985,7 +4124,6 @@ DocType: Communication,To and CC,Do CC DocType: SMS Settings,Static Parameters,Parametry statyczne DocType: Chat Message,Room,Pokój apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},zaktualizowano do {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Zadania w tle nie są uruchomione. Skontaktuj się z administratorem DocType: Portal Settings,Custom Menu Items,Pozycje menu niestandardowego apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Wszystkie zdjęcia dołączone do Slajdu internetowego powinny być publiczne DocType: Workflow State,chevron-right, @@ -4000,11 +4138,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Wybrano wartości {0} DocType: DocType,Allow Auto Repeat,Zezwól na automatyczne powtarzanie apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Brak wartości do pokazania +DocType: DocType,URL for documentation or help,Adres URL dokumentacji lub pomocy DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Szablon e-maila apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Pomyślnie zaktualizowano rekord {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Użytkownik {0} nie ma dostępu do dokumentu przez uprawnienie roli dla dokumentu {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Zarówno login i hasło wymagane +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Pozwolić\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Odśwież by otrzymać aktualny dokument DocType: User,Security Settings,Ustawienia Zabezpieczeń apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Dodaj kolumnę @@ -4014,6 +4154,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtr Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Dołącz załączony {0}: {1} DocType: Web Page,Set Meta Tags,Ustaw meta tagi +DocType: Email Account,Use SSL for Outgoing,Użyj protokołu SSL dla wychodzących 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: S3 Backup Settings,Backup Limit,Limit Kopii Zapasowej DocType: Dashboard Chart,Line,Linia @@ -4046,4 +4187,3 @@ DocType: DocField,Ignore User Permissions,Ignoruj uprawnienia użytkowników apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Zapisano pomyślnie apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Proszę skontaktować się z administratorem, aby sprawdzić swój znak w górę" DocType: Domain Settings,Active Domains,Domeny aktywne -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Pokaż logi diff --git a/frappe/translations/ps.csv b/frappe/translations/ps.csv index 331b4249d9..dd1f1c1ed5 100644 --- a/frappe/translations/ps.csv +++ b/frappe/translations/ps.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,لطفا یو مقدار ساحوي ټاکي. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,د واردولو دوتنه پورته کول ... DocType: Assignment Rule,Last User,وروستی کارن -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",يوه نوې دنده، {0}، چې تاسو ته د {1} ګمارل شوي دي. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,د ناستې ټاکل شوي خوندي شوي apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,دوتنه بیا پورته کړئ DocType: Email Queue,Email Queue records.,ليک د کتار اسناد. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} د ونو DocType: User,User Emails,کارن برېښناليک DocType: User,Username,نوم apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,زېرمه وارد کړه +DocType: Scheduled Job Type,Create Log,خبرال جوړ کړئ apps/frappe/frappe/model/base_document.py,Value too big,ارزښت ډېر لوی DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,د دويم الخط ټیسټ @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,میاشتنی DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,فعال راتلونکي apps/frappe/frappe/core/doctype/version/version_view.html,Danger,د خطر -DocType: Address,Email Address,بریښنالیک +apps/frappe/frappe/www/login.py,Email Address,بریښنالیک DocType: Workflow State,th-large,مه-لوی DocType: Communication,Unread Notification Sent,لېکل خبر ته وليږدول شوه apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,د صادراتو د اجازه نشته. تاسو د {0} د صادراتو رول ته اړتيا لري. @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,د { DocType: DocType,Is Published Field,خپور ساحوي DocType: GCalendar Settings,GCalendar Settings,د ګالالرنې ترتیبونه DocType: Email Group,Email Group,دبرېښنا ګروپ +apps/frappe/frappe/__init__.py,Only for {},یوازې د {for لپاره DocType: Event,Pulled from Google Calendar,د ګوګل کیلنڈر څخه کښل شوی DocType: Note,Seen By,لیدل By apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Add ګڼ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,تاسو د انرژۍ ځینې ټکي ترلاسه کړل apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,د کارن باور نشته. DocType: Energy Point Log,Reverted,بېرته راوړل DocType: Success Action,First Success Message,د بریالیتوب لومړی پیغام @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ناخوښ apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ناسم ارزښت: {0} بايد د {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",د بدلون په برخه مال (پټيږي، readonly، اجازه او نور) apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,مننه +DocType: Notification Settings,Document Share,لاسوند شریکول DocType: Workflow State,lock,لاک apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,زمونږ لپاره د تماس Page امستنې. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,د اداري غونډال په @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",که چیرې فعال شوي ، دا سند د لیدل شوي په توګه نښه شوی ، لومړی ځل چې یو کارن یې پرانیزي DocType: Auto Repeat,Repeat on Day,په ورځ کې تکرار کړئ DocType: DocField,Color,رنګ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,ټول د لوستلو په توګه په نښه کړئ DocType: Data Migration Run,Log,يادښت DocType: Workflow State,indent-right,indent-حق DocType: Has Role,Has Role,لري رول @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ټرېبیک ښودل DocType: DocType,Default Print Format,Default چاپ شکل DocType: Workflow State,Tags,نښانونه +DocType: Onboarding Slide,Slide Type,د سلایډ ډول apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,هيڅ: د ننګولې پايان apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} په برخه لکه څنګه چې په {1} ساری نه جوړ شي، د غير سارې موجوده ارزښتونو شته apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,سند ډولونه @@ -134,7 +137,6 @@ DocType: Language,Guest,ميلمه DocType: DocType,Title Field,عنوان ساحوي DocType: Error Log,Error Log,تېروتنه ننوتنه apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,ناباوره یو ار ایل -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,وروستۍ days ورځې apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",لکه "abcabcabc" يوازې لږ څه ستونزمن په پرتله "ABC" فکر تکرارونه DocType: Notification,Channel,چینل apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",که تاسو فکر کوئ چې دا غیر مجاز، لطفا د ادارې د پاسورد بدلولو لپاره. @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,د مراجع apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,کالم غوره کړئ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,دغه فورمه بدل شوی دی وروسته تاسو بار دا DocType: Address,Himachal Pradesh,Himachal پرادېش +DocType: Notification Log,Notification Log,د خبرتیا لاګ DocType: System Settings,"If not set, the currency precision will depend on number format",که ټاکل شوی نه وي، د اسعارو د دقت به د شمېر شکل پورې اړه لري DocType: System Settings,"If not set, the currency precision will depend on number format",که ټاکل شوی نه وي، د اسعارو د دقت به د شمېر شکل پورې اړه لري apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,په زړه پوری غږی خلاص کړئ @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,د apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,وليږئ DocType: Workflow Action Master,Workflow Action Name,ننګولې کړنه نوم apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType نه مدغم شي -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,يو زيب دوتنه نه ده DocType: Global Search DocType,Global Search DocType,نړېوال پلټنې ډایپ ټایپ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,برېښناليک لېږلو؟ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,چارټ ټګ کړئ apps/frappe/frappe/desk/form/save.py,Did not cancel,ايا لغوه نه DocType: Social Login Key,Client Information,د مراجع معلومات +DocType: Energy Point Rule,Apply this rule only once per document,دا قانون یوازې په هر سند کې یوځل پلي کړئ DocType: Workflow State,plus,جمع +DocType: DocField,Read Only Depends On,یوازې لوستل یې تکیه کوي apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,په توګه ميلمه یا مدیر غونډال کې DocType: Email Account,UNSEEN,په غیبو apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,د دوتنې د مدير @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,دلیل 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,هیڅ فعالیت نشته +DocType: Server Script,Script Manager,اسکرپټ سمبالګر +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,هیڅ فعالیت نشته apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,د دریمې ډلې کاریالونه apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,لومړی د کارونکي عکس به د سیستم د مدیر شي (تاسو کوالی شي وروسته بدلون). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,نن ورځ پیښې نه apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,تاسو نشئ کولی ځان ته د بیاکتنې ټکي ورکړئ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,د ډاټا ټایپ د ټاکل شوي ډاکټر ایستنې لپاره باید د منلو وړ وي DocType: Workflow State,circle-arrow-up,دایره-غشی-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},د {0}: {1} لپاره اجازه نشته. محدوده ساحه: {2} 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,You are not allowed to delete a standard Website Theme,تاسو اجازه نه لري چې د يوې معياري وېب پاڼه موضوع ړنګول +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},خپل لومړی {0} جوړ کړئ DocType: Data Import,Log Details,د ننوتلو تفصیلات DocType: Workflow Transition,Example,بېلګه DocType: Webhook Header,Webhook Header,د ویب هاک سرلیک @@ -250,6 +258,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},نوي کول {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ناتوانې راپور DocType: Translation,Contributed Translation Doctype Name,مرسته شوی د ژباړې لاسوند ډول +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم کول> دودیز کړئ DocType: PayPal Settings,Redirect To,د Redirect DocType: Data Migration Mapping,Pull,کشول DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},د جاوا شکل: frappe.query_reports [ 'REPORTNAME'] = {} @@ -264,6 +273,7 @@ DocType: DocShare,Internal record of document shares,د سند د سهم د دا DocType: Energy Point Settings,Review Levels,د بیاکتنې کچې DocType: Workflow State,Comment,تبصره DocType: Data Migration Plan,Postprocess Method,د پوستې پروسس طریقه +DocType: DocType Action,Action Type,د عمل ډول apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,انځور واخلئ DocType: Assignment Rule,Round Robin,پړاو روبین apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",تاسو کولای وسپارل اسناد بندول يې او وروسته، د تعديل يې بدل کړي. @@ -277,6 +287,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,لیدل apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,نور معلومات وښیه +DocType: Server Script,Before Submit,وړاندې له سپارلو څخه DocType: System Settings,Run scheduled jobs only if checked,یوازې ټاکل شوې دندې پرمخ که وکتل apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,که کړی سرلیکونه دي چارن به يوازې شي ښودل شوی apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,آرشیف @@ -289,10 +300,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox لاسرسی لپاره ع apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,غلط فیلډ <b>نوم نوم {0}</b> د ګمرک نسخه د اضافې فایبر ترتیبولو کې apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,د ګوګل اړیکې غوره کړئ چیرې چې اړیکې باید همغږي شي. DocType: Web Page,Main Section (HTML),اصلي برخه (HTML) +DocType: Scheduled Job Type,Annual,کلنی DocType: Workflow State,headphones,ویولون apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,پاسورډ دې ته اړتيا ده او يا په تمه پاسورډ انتخاب DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,د بيلګې په توګه replies@yourcomany.com. د ټولو ځواب به دې ته درشي راشي. DocType: Slack Webhook URL,Slack Webhook URL,سلیمان ویبښک URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",په وزر کې د سلایډ ترتیب ټاکي. که سلایډ نه ښودل کیږي ، لومړیتوب باید 0 ته تنظیم شي. DocType: Data Migration Run,Current Mapping,اوسنۍ نقشه apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,د اعتبار وړ بریښنا لیک او نوم ته اړتيا apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,ټولې ضمیمې خصوصي کړئ @@ -316,6 +329,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,د انتقال اصول apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,یوازې په لومړي مخ کې {0} قطارونه ښودل کیږي apps/frappe/frappe/core/doctype/report/report.js,Example:,بیلګې په توګه: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,محدودیتونه DocType: Workflow,Defines workflow states and rules for a document.,يو سند لپاره ننګولې دولتونو او اصولو تعریفوي. DocType: Workflow State,Filter,Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},د نورو معلوماتو لپاره تېروتنه وګورئ: {0} @@ -327,6 +341,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,دنده apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} غونډال څخه: {1} DocType: Address,West Bengal,لویدیځ بنګال +DocType: Onboarding Slide,Information,معلومات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: جوړ نشي دمکپاین سپارل که Submittable نه DocType: Transaction Log,Row Index,د قطار لست DocType: Social Login Key,Facebook,Facebook @@ -345,7 +360,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,تڼی په مرسته DocType: Kanban Board Column,purple,ارغواني DocType: About Us Settings,Team Members,د ډلې غړي +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,د غیر فعال سایټونو لپاره به په ورځ کې یوځل مهالویشې دندې پرمخ وړي. ډیفالټ 4 ورځې که 0 ته ټاکل شوي وي. DocType: Assignment Rule,System Manager,سيستم مدير +DocType: Scheduled Job Log,Scheduled Job,مهالویش دنده DocType: Custom DocPerm,Permissions,حلال apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,د داخلي انضباط لپاره سست ویب پاڼه DocType: Dropbox Settings,Allow Dropbox Access,Dropbox د لاسرسي اجازه @@ -398,6 +415,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,با DocType: Email Flag Queue,Email Flag Queue,برېښناليک پرچم د کتار DocType: Access Log,Columns / Fields,کالمونه / ډګرونه apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,د چاپ شکلونو لپاره سټیلیلټونه +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,د ډشبورډ چارټ رامینځته کولو لپاره د مجموعي فنکشن ساحه اړینه ده apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,نه په ګوته کولای {0}. بل څه کوښښ وکړئ. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ستاسو معلومات وسپارل شو apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,کارن {0} نه ړنګ شي @@ -414,11 +432,12 @@ DocType: Property Setter,Field Name,ساحوي نوم DocType: Assignment Rule,Assign To Users,کارونکو ته یې وسپارئ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,او یا apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,موډول په نوم ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ته دوام ورکړي +DocType: Onboarding Slide,Continue,ته دوام ورکړي apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,د ګوګل ادغام غیر فعال دی. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,سند apps/frappe/frappe/templates/includes/login/login.js,Verifying...,د تثبیتولو لپاره ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,ستاسو دنده په {0} {1} لرې شوې ده apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,لومړی د معلوماتو کالم بايد خالي وي. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,ټولې نسخې وښایاست apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,نظر وګوره @@ -427,12 +446,14 @@ DocType: Energy Point Log,Review,بیاکتنه DocType: User,Restrict IP,د محدودولو IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ډشبورډ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,په دې وخت بریښنالیکونو ته واستوي توان نلري +DocType: Notification Log,Email Content,د بریښنالیک مینځپانګه apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,پلټنه يا د يو کمانډ ټايپ DocType: Activity Log,Timeline Name,مهال ویش نوم apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,یوازې یو {0} د لومړني په توګه ټاکل کیدی شي. DocType: Email Account,e.g. smtp.gmail.com,د بيلګې په توګه smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Add يو نوي حاکمیت DocType: Contact,Sales Master Manager,خرڅلاو ماسټر مدير +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,تاسو اړتیا لرئ خپل کار کولو لپاره جاواسکریپټ وړ کړئ. DocType: User Permission,For Value,د ارزښت لپاره DocType: Event,Google Calendar ID,د ګوګل کتل ID apps/frappe/frappe/www/complete_signup.html,One Last Step,یو تېر ګام @@ -447,6 +468,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,د LDAP مینځنی نوم ساحه apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},د {1} د {0} واردول DocType: GCalendar Account,Allow GCalendar Access,د ګالیالیلر لاسرسی ته اجازه ورکړه +DocType: DocType,Documentation Link,لاسوند لینک apps/frappe/frappe/templates/includes/login/login.js,Login token required,د ننوتلو اړتیا نشته apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,میاشتنی درجه: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,د لیست ګ multiple شمیر توکي غوره کړئ @@ -468,6 +490,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,دوتنه URL DocType: Version,Table HTML,جدول د HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,پېرودونکي ورزیات کړئ +DocType: Notification Log,Energy Point,د بریښنا نقطه apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,نن د راتلونکې پېښې DocType: Google Calendar,Push to Google Calendar,ګوګل کیلنڈر ته فشار ورکړئ DocType: Notification Recipient,Email By Document Field,ليک د سند د ساحوي @@ -483,7 +506,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,تل DocType: Currency,Fraction Units,کسر واحدونه apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} د {1} د {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,د ډون په توګه نښه DocType: Chat Message,Type,ډول DocType: Google Settings,OAuth Client ID,د OAuth مؤکل ID DocType: Auto Repeat,Subject,مضمون @@ -511,6 +533,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,لورينه وکړئ د تصدیق خپل ایمیل وګورئ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,زياتيدو لپاره نه شي کولای چې د په بڼه پای وي DocType: Communication,Bounced,وغوړېد +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,د DocType: Deleted Document,Deleted Name,ړنګ نوم apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,سيستم او د وېب پاڼه کارنان DocType: Workflow Document State,Doc Status,doc حالت @@ -521,6 +544,7 @@ DocType: Language,Language Code,ژبه کوډ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,یادونه: د ناکامۍ شاتړ لپاره د ډیورنډ ای میلونو لخوا لېږل کیږي. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Add Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},پیغامونه د دې لاندې شمېرې ته استول: {0} +DocType: Notification Settings,Assignments,ګمارنې apps/frappe/frappe/utils/data.py,{0} and {1},{0} او {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,خبرې اترې پیل کړئ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","مسوده" تل د چاپ اسناد مسوده مدعي دی اضافه @@ -529,6 +553,7 @@ DocType: Data Migration Run,Current Mapping Start,اوسنۍ نقشه ایزه apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,برېښناليک په نښه شوی سپم DocType: Comment,Website Manager,وېب پاڼه مدير apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,د دوتنې اپارتمان ونشو. مهرباني وکړئ بیا هڅه وکړئ. +DocType: Data Import Beta,Show Failed Logs,ناکام شوي خبرونه وښیه apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ژباړونکي apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,تاسو غوره مسوده یا لغوه اسناد apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},لاسوند {0} د {1} لخوا د {2} @@ -536,7 +561,9 @@ apps/frappe/frappe/model/document.py,Document Queued,سند له پيله DocType: GSuite Templates,Destination ID,موخه تذکرې DocType: Desktop Icon,List,بشپړفهرست DocType: Activity Log,Link Name,لینک نوم +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,تاسو خوندي یاست \ DocType: System Settings,mm/dd/yyyy,mm / DD / yyyy +DocType: Onboarding Slide,Onboarding Slide,د تخته ایښودلو سلایډ apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,بې اعتباره پټنوم: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,بې اعتباره پټنوم: DocType: Print Settings,Send document web view link in email,وليږئ بريښناليک په سند وېب محتویات مخونه @@ -598,6 +625,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},بریالی: {0} د {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,په قالب نه شي کولای د کارونکي عکس تفصيلات بدلون. په https://erpnext.com لطفا لپاره يو نوی ګڼون لپارهخپل apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,غورځول +DocType: Dashboard Chart,Aggregate Function Based On,مجموعی دنده پر اساس apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,لطفا دوه دا بدلونونه راولي apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,د خوندي کولو لپاره داخله کړه apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,د PDF نسل د مات انځور تړنې له امله پاتې راغلي @@ -611,7 +639,9 @@ DocType: Notification,Days Before,ورځې مخکې apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ورځنۍ پیښې باید په ورته ورځ پای ته ورسي. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,سمول ... DocType: Workflow State,volume-down,حجم څخه ښکته +DocType: Onboarding Slide,Help Links,د مرستې لینکونه apps/frappe/frappe/auth.py,Access not allowed from this IP Address,د دې IP پتې څخه د لاسرسي اجازه نشته +DocType: Notification Settings,Enable Email Notifications,د بریښنالیک خبرتیاوې فعال کړئ apps/frappe/frappe/desk/reportview.py,No Tags,نه نښانونه DocType: Email Account,Send Notification to,ته خبردارې ورکول وليږئ DocType: DocField,Collapsible,پرېوتونکې @@ -640,6 +670,7 @@ DocType: Google Drive,Last Backup On,وروستی شاتړ DocType: Customize Form Field,Customize Form Field,دتنظيمولو فورمه ساحوي DocType: Energy Point Rule,For Document Event,د لاسوند پیښې لپاره DocType: Website Settings,Chat Room Name,د چیٹ کوډ نوم +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,نه بدلیدونکی DocType: OAuth Client,Grant Type,وړیا ډول apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,د وګورئ چې اسناد يو کارن لخوا د لوستلو وړ دي DocType: Deleted Document,Hub Sync ID,د کور همکاري ID @@ -647,6 +678,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,په DocType: Auto Repeat,Quarterly,درې میاشتنی apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",برېښناليک ډومېن لپاره دې حساب نه بندي شوې، یو جوړول؟ DocType: User,Reset Password Key,د بیرته شفر کلیدي +DocType: Dashboard Chart,All Time,هر وخت apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},د {0} لپاره د غلط سند حالت DocType: Email Account,Enable Auto Reply,فعال د موټرونو ته ځواب ورکړئ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,نه دي ليدلي @@ -659,6 +691,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,د پ DocType: Email Account,Notify if unreplied,خبر که unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,د QR Code سکین وکړئ او د پایله شوي کوډ کوډ داخل کړئ. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,درجه بندي وړ کړئ +DocType: Scheduled Job Type,Hourly Long,ساعتونه اوږده DocType: System Settings,Minimum Password Score,لږ تر لږه پاسورډ نمره DocType: System Settings,Minimum Password Score,لږ تر لږه پاسورډ نمره DocType: DocType,Fields,فیلډز @@ -667,11 +700,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent جد apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 بیک اپ بشپړ شوی! apps/frappe/frappe/config/desktop.py,Developer,د پراختیا apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,ايجاد +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},د دې وړ کولو لپاره په لاندې لینک کې لارښوونې تعقیب کړئ: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} په قطار {1} کولای د هغوی دواړه په حافظی او ماشوم توکي لري apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},د لاندې جدولونو لپاره باید لږترلږه یو قطار شتون ولري: {0} DocType: Print Format,Default Print Language,د چاپ اصلي ژبه apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,د پلارانو apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,د ريښي د {0} نه ړنګ شي +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,ندی وتلی غونډ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,نظر نشته تر اوسه apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",مهرباني وکړئ د ایس ایم ایل سایټونو له لارې د تایید کولو د طریقې په توګه یې د ترتیب کولو څخه دمخه ایس ایم ایس جوړه کړئ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,DocType دواړه او نوم ته اړتيا @@ -695,6 +730,7 @@ DocType: Website Settings,Footer Items,پښۍ سامان apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,غورنۍ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,هره ورځ +DocType: Onboarding Slide,Max Count,اعظمي شميرنه apps/frappe/frappe/config/users_and_permissions.py,User Roles,کارن ونډې DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ملکیت Setter يو معياري DocType يا ساحوي ملکیت overrides apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,اوسمهال نشي: ناسمې / ختم شوي لینک. @@ -712,6 +748,7 @@ DocType: Footer Item,"target = ""_blank""",هدف = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,کوربه DocType: Data Import Beta,Import File,دوتنه واردول +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,ټیمپلیټ تېروتنه apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,کالم <b>{0}</b> لا شتون لري. DocType: ToDo,High,د عالي apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,نوې پېښه @@ -727,6 +764,7 @@ DocType: Web Form Field,Show in filter,په فلټر کې ښودل DocType: Address,Daman and Diu,دامان او يعنې apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,د پروژې د DocType: Address,Personal,د شخصي +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,د چاپ کولو امستنې ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,د نورو معلوماتو لپاره https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region وګورئ. apps/frappe/frappe/config/settings.py,Bulk Rename,د حجم د رښتو DocType: Email Queue,Show as cc,په توګه cc خپرونه @@ -736,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ویډیو واخل DocType: Contact Us Settings,Introductory information for the Contact Us Page,د Contact Us Page د پیژندنی معلومات DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,په ګوتو کی ښکته +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,سندونه لغوه کول DocType: User,Send Notifications for Email threads,د بریښنالیک موضوعاتو لپاره خبرتیاوې واستوئ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,پروفيسور apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,نه په پراختیا د اکر @@ -743,7 +782,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,د دوتن DocType: DocField,In Global Search,په نړیوال لټون DocType: System Settings,Brute Force Security,د ځواک ځواک امنیت DocType: Workflow State,indent-left,indent-کيڼ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کاله دمخه apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,دا خطرناکه چې د دغې دوتنې د ړنګولو: {0}. لطفا د خپل سیستم د مدیر سره اړیکه. DocType: Currency,Currency Name,د اسعارو نوم apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,نه برېښناليک @@ -758,11 +796,13 @@ DocType: Energy Point Rule,User Field,کارن ډګر DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,پټه ړنګول apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} لا د کش {1} {2} +DocType: Scheduled Job Type,Stopped,ودرول apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ايا لرې نه apps/frappe/frappe/desk/like.py,Liked,خوبيا apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,وليږئ اوس apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",معياري DocType نه شي کولای تلوالیزه چاپي بڼه لري، دتنظيمولو فورمه وکاروي apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",معياري DocType نه شي کولای تلوالیزه چاپي بڼه لري، دتنظيمولو فورمه وکاروي +DocType: Server Script,Allow Guest,میلمه ته اجازه ورکړه DocType: Report,Query,نه خوری DocType: Customize Form,Sort Order,سمبالول، منظمول apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'په List View لپاره ډول {0} په قطار نه اجازه {1} @@ -784,10 +824,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,د دوو فکتور اعتباري طریقه apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,لومړی نوم نومول او ریکارډ خوندي کول. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ریکارډونه +DocType: DocType Link,Link Fieldname,د لینک ساحه apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},د شریکې سره د {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ویسي DocType: View Log,Reference Name,ماخذ نوم apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,کارن بدل کړئ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,لومړی apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,اوسمهال لاسوندونه DocType: Error Snapshot,Exception,استثنا DocType: Email Account,Use IMAP,IMAP استعمال @@ -802,6 +844,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,اصول په ننګولې دي د دولت د انتقال د تعریف. DocType: File,Folder,دادوسیه DocType: Website Route Meta,Website Route Meta,د ویب پا Rouې میټا +DocType: Onboarding Slide Field,Onboarding Slide Field,د تخته وهلو ځای DocType: DocField,Index,ډېرځليزې DocType: Email Group,Newsletter Manager,خبر پاڼه د مدير apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,انتخاب: 1 @@ -828,12 +871,12 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ټ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,چارټونه ترتیبول DocType: User,Last IP,تېره IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,مهرباني وکړئ یو مضمون خپل بریښنالیک اضافه کړئ -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,یو نوی سند {0} له تاسو سره {1} شریک شوی دی. DocType: Data Migration Connector,Data Migration Connector,د ډاټا مهاجرت کنټرول apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} بیرته راستول شوی {1} DocType: Email Account,Track Email Status,د بریښناليک وضعیت DocType: Note,Notify Users On Every Login,په هر ننوتل کارنان خبر DocType: Note,Notify Users On Every Login,په هر ننوتل کارنان خبر +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,کالم {0} د هیڅ ډګر سره سمون نه خوری apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,په بریالیتوب سره د {0} ریکارډونه نوي شوي. DocType: PayPal Settings,API Password,API پاسورډ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,د پیټون ماډل داخل کړئ یا د کنټرول ډول غوره کړئ @@ -888,6 +931,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,پلټي DocType: Workflow State,text-width,text-عرض apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,د دې ریکارډ اعظمي ضميمه حد ته رسیدلی. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,د فایل نوم یا شاتاړی په واسطه لټون وکړئ +DocType: Onboarding Slide,Slide Title,د سلایډ سرلیک DocType: Notification,View Properties (via Customize Form),محتویات Properties (دتنظيمولو فورمه له لارې) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,د هغې د غوره کولو لپاره په فایل کلیک وکړئ. DocType: Note Seen By,Note Seen By,نوټ کتل By @@ -914,13 +958,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,د شریک یو آر ایل DocType: System Settings,Allow Consecutive Login Attempts ,په منظمه توګه د ننوتلو هڅې اجازه ورکړئ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,یوه تېروتنه د پیسو په بهیر کې رامنځته شوه. مهرباني وکړئ موږ سره اړیکه ونیسئ. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,که چیرې د سلایډ ډول جوړ یا تنظیمات وي نو باید د create ref_doctype py .py فایل کې د 'create_onboarding_docs' میتود شتون ولري چې د سلایډ بشپړیدو وروسته اجرا شي. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ورځې مخکې DocType: Email Account,Awaiting Password,تمه پاسورډ DocType: Address,Address Line 1,پته کرښې 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,د کڅوړو نه DocType: Contact,Company Name,دکمپنی نوم DocType: Custom DocPerm,Role,رول -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ترتیبات ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ستاسو براوزر ته apps/frappe/frappe/utils/data.py,Cent,په سلو کې ,Recorder,ریکارډر @@ -980,6 +1024,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",که چیرې ستاسو بریښناليک د ترلاسه کونکي لخوا پرانستل شوی وي وڅارئ. <br> یادونه: که تاسو څو څو السته راوړونکو ته استول کیږئ، حتی که 1 ترلاسه کونکي ایمیل ولولي، دا به "د پرانيستې" په نظر کې ونیول شي. apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ورک ارزښتونه اړین apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,د ګوګل اړیکو لاسرسی ته اجازه ورکړئ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,محدود شوی DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,مارک په توګه نوې DocType: Activity Log,Operation,د عملياتو @@ -1033,6 +1078,7 @@ DocType: Web Form,Allow Print,چاپ اجازه DocType: Communication,Clicked,چې ټک apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,بې لارې کول apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ته هيڅ اجازه '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د ډیفالټ بریښنالیک حساب له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه تنظیم کړئ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ټاکل شوې واستوي DocType: DocType,Track Seen,Track کتل DocType: Dropbox Settings,File Backup,د دوتنې شاتړ @@ -1041,12 +1087,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,نه {0} وم apps/frappe/frappe/config/customization.py,Add custom forms.,د ګمرک د فورمو کړئ. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} د {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,د دې سند ته وسپارل -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> د کارونکي اجازه apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,دا سیستم د ډیرو مخکې تعریف رول برابروي. تاسو کولای شئ د نوي رول ته اضافه کړی تر میده پرېښلې ټاکل. DocType: Communication,CC,CC DocType: Country,Geo,د جيو DocType: Data Migration Run,Trigger Name,د تورګر نوم -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domains +DocType: Onboarding Slide,Domains,Domains DocType: Blog Category,Blog Category,Blog کټه ګورۍ apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,نقشه کولی ځکه چې لاندې حالت ونشي نه: DocType: Role Permission for Page and Report,Roles HTML,رولونه د HTML @@ -1087,7 +1132,6 @@ DocType: Assignment Rule Day,Saturday,شنبه DocType: User,Represents a User in the system.,استازيتوب په سيستم کې يو کارن. DocType: List View Setting,Disable Auto Refresh,د آٹو ریفریش غیر فعال کړئ DocType: Comment,Label,لیبل -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",د دنده {0}، چې تاسو د {1}، تړل شوې ده ګمارل شوي و. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,لطفا دا کړکۍ وتړي DocType: Print Format,Print Format Type,چاپ شکل ډول DocType: Newsletter,A Lead with this Email Address should exist,په دې ليک پته د مشرتابه باید شتون @@ -1104,6 +1148,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,د تېرې برېښل apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,یو غوره کړئ DocType: Data Export,Filter List,د فلټر لیست DocType: Data Export,Excel,اېسلسل +DocType: System Settings,HH:mm,HH: ملي میتر DocType: Email Account,Auto Reply Message,د موټرونو ته ځواب ورکړئ پيغام DocType: Data Migration Mapping,Condition,حالت apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ساعته وړاندې @@ -1122,12 +1167,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,پوهې بنسټ وڼده DocType: Communication,Sent Read Receipt,ته وليږدول ولولئ د رسيد DocType: Email Queue,Unsubscribe Method,د ګډون د Method +DocType: Onboarding Slide,Add More Button,نورې تtonۍ اضافه کړئ DocType: GSuite Templates,Related DocType,اړوند DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,د محتوا اضافه د سمولو apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,انتخاب ژبې apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,د کارت تفصیلات apps/frappe/frappe/__init__.py,No permission for {0},لپاره په هیڅ اجازه {0} DocType: DocType,Advanced,ژور +DocType: Onboarding Slide,Slide Image Source,د سلایډ سرچینه apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,داسې ښکاري چې API کلیدي یا API پټې ناسم دی !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},ماخذ: {0} د {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,میرمن @@ -1144,6 +1191,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ماسټر DocType: DocType,User Cannot Create,کارن جوړول نه شي apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,په بریالیتوب سره ترسره شو apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox لاسرسي تصویب! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,ایا ته باوري یې چې {0} د {1} سره ورګډول غواړې؟ DocType: Customize Form,Enter Form Type,وليکئ فورمه ډول DocType: Google Drive,Authorize Google Drive Access,د ګوګل ډرایو لاسرسی اختیار کړئ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,د پیرودونکي کنبن بورډ نوم ورک شوی @@ -1153,7 +1201,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",اجازه DocType، DocType. احتیاط کوه! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",د چاپونې، دبرېښنا ليک دودیزه بڼی apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},د {0} مجموعه -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Updated د نوې بڼه DocType: Custom Field,Depends On,اړه لري پر DocType: Kanban Board Column,Green,شین DocType: Custom DocPerm,Additional Permissions,اضافي حلال @@ -1180,6 +1227,7 @@ DocType: Address,Is Your Company Address,آیا ستاسو شرکت پته DocType: Energy Point Log,Social,ټولنیز apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,ايډيټنګ د کتارونو DocType: Workflow Action Master,Workflow Action Master,ننګولې کړنه ماسټر +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,ټول ړنګ کړئ DocType: Custom Field,Field Type,ساحوي ډول apps/frappe/frappe/utils/data.py,only.,يوازې. DocType: Route History,Route History,د لیږد تاریخ @@ -1215,11 +1263,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,خپل پټ نوم درڅخه DocType: System Settings,yyyy-mm-dd,yyyy ملي متري-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,د پالنګر کې تېروتنه +DocType: Server Script,After Delete,د حذف کیدو وروسته apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,ټول پخواني راپورونه وګورئ. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ننوتل Id ته اړتيا ده DocType: Website Slideshow,Website Slideshow,وېب پاڼه ننداريزکتل apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,نه د معلوماتو د DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",لینک چې د ویب کور پاڼې. معياري دویب (د غړو، د ننوتو، توليداتو، بلاګ، په اړه، د تماس) +DocType: Server Script,After Submit,د سپارلو وروسته apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},اعتبارول ونشو داسې حال کې چې له دبرېښنا ليک حساب {0} ایمیلونو. پالنګر څخه پيغام: {1} DocType: User,Banner Image,بیرغ د انځور DocType: Custom Field,Custom Field,د ګمرکونو د ساحوي @@ -1260,15 +1310,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",که د کارونکي لري کوم رول وکتل، نو د کارن د "سیستم کارن" شي. "سيستم کارن" لري د سرپاڼې ته لاسرسی DocType: System Settings,Date and Number Format,نېټه او شمېر شکل apps/frappe/frappe/model/document.py,one of,یو له -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> فارم دودیز کړئ apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,يوه شېبه کتل apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,انکړپټه ښودل نښانونه DocType: DocField,HTML Editor,ایچ ٹی ایم ایل ایڈیٹر 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,کړنې -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,جوړول> کارن +DocType: DocType,Actions,کړنې DocType: Workflow State,align-justify,په همغاړیتوب-توجیه DocType: User,Middle Name (Optional),د منځني نوم (اختیاری) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,نه اجازه @@ -1283,6 +1331,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,نه پای DocType: System Settings,Security,امنیت apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,ټاکل شوې د {0} اخیستونکو ته واستوي apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,کټ +DocType: Server Script,After Save,د خوندي کولو وروسته apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},له نامه ونومول {0} د {1} DocType: Currency,**Currency** Master,** د اسعارو ** ماسټر DocType: Email Account,No of emails remaining to be synced,نه د بریښنالیکونو پاتې ته دفارسی شي @@ -1307,16 +1356,19 @@ DocType: Prepared Report,Filter Values,فلټر ارزښتونه DocType: Communication,User Tags,کارن نښانونه DocType: Data Migration Run,Fail,ناکامي DocType: Workflow State,download-alt,دانلود-alt +DocType: Scheduled Job Type,Last Execution,اخري اعدام DocType: Data Migration Run,Pull Failed,ناکامه کړه apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,کارتونه ښکاره کړئ / پټول DocType: Communication,Feedback Request,Feedback غوښتنه apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,د CSV / Excel فایلونو څخه ډاټا وارد کړئ. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,لاندې ساحو د ورک شوي وي: +DocType: Notification Log,From User,د کارونکي څخه apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},سرغړونه {0} DocType: Web Page,Main Section,اصلي برخه DocType: Page,Icon,icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",اشاره: شامل سمبولونه، د شمېر او د مرکز لیکونه په پټنوم apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",اشاره: شامل سمبولونه، د شمېر او د مرکز لیکونه په پټنوم +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",د یادونې ، مقرراتو ، انرژي نقطو او نور ډیر څه لپاره خبرتیاوې تنظیم کړئ. DocType: DocField,Allow in Quick Entry,په فوری ننوتلو کې اجازه ورکړئ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,د PDF DocType: System Settings,dd/mm/yyyy,DD / mm / yyyy @@ -1348,7 +1400,6 @@ DocType: Website Theme,Theme URL,د موضوع موضوع DocType: Customize Form,Sort Field,ننداره ساحوي DocType: Razorpay Settings,Razorpay Settings,Razorpay امستنې apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,چاڼ -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Add نور DocType: System Settings,Session Expiry Mobile,د ناستې د پای د موبايل په apps/frappe/frappe/utils/password.py,Incorrect User or Password,ناسمه کارن یا پاسورډ apps/frappe/frappe/templates/includes/search_box.html,Search results for,د پلټنې پايلې @@ -1364,8 +1415,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,د انرژي ټکي قانون DocType: Communication,Delayed,وځنډید apps/frappe/frappe/config/settings.py,List of backups available for download,د backups دانلود لپاره بشپړفهرست +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,د نوي ډاټا واردولو هڅه وکړئ apps/frappe/frappe/www/login.html,Sign up,ثبت نام apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Row {0}: د معياري ساحو لپاره لازمي معلولیت نلري +DocType: Webhook,Enable Security,امنیت فعال کړئ apps/frappe/frappe/config/customization.py,Dashboards,ډشبورډونه DocType: Test Runner,Output,Output DocType: Milestone,Track Field,د څرک ساحه @@ -1384,6 +1437,7 @@ DocType: Portal Menu Item,Portal Menu Item,تانبه Menu د قالب apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,فلټرونه تنظیم کړئ DocType: Contact Us Settings,Email ID,Email ID DocType: Energy Point Rule,Multiplier Field,ضربوونکی ډګر +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,د ریزارپي آرډر جوړ نه شو. مهرباني وکړئ له مدیر سره اړیکه ونیسئ DocType: Dashboard Chart,Time Interval,د وخت وقفه DocType: Activity Log,Keep track of all update feeds,د ټولو تازه تغذیاتو څارنه وکړئ DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,د سرچینو لست چې د مراجع ددفتروسایل به وروسته د کارونکي ته اجازه ورکوي چې دا ته لاسرسی ولري. <br> د بيلګې په توګه د پروژې د @@ -1403,6 +1457,7 @@ DocType: DefaultValue,Key,کلیدي DocType: Address,Contacts,د اړيکې DocType: System Settings,Setup Complete,Setup بشپړ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,د ټولو سند د سهم راپور +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",د واردولو نمونه باید د .csv ، .xlsx یا .xls ډول وي apps/frappe/frappe/www/update-password.html,New Password,نوئ پټ نوم apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} د ورکو apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,اوبخښه! تاسو نه شي کولای د Auto-تولید تبصرې ړنګول @@ -1418,6 +1473,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,چلول DocType: Blog Post,Content (HTML),مینځپانګه (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,د پاره لپاره ترتیب DocType: Personal Data Download Request,User Name,د کارونکي نوم DocType: Workflow State,minus-sign,منفي-نښه apps/frappe/frappe/public/js/frappe/request.js,Not Found,پیدا نشو @@ -1425,6 +1481,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,نه {0} د اجازې apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,د صادراتو د ګمرک حلال apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,کوم توکي ونه موندل شول. DocType: Data Export,Fields Multicheck,ساحې څو ځلې +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,. بشپړ DocType: Activity Log,Login,د ننه کیدل DocType: Web Form,Payments,د پیسو ورکړه apps/frappe/frappe/www/qrcode.html,Hi {0},سلام {0} @@ -1452,6 +1509,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,د ع apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,د اجازې تېروتنه apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},د نوم {0} نه وي {1} DocType: User Permission,Applicable For,د تطبیق لپاره +DocType: Dashboard Chart,From Date,له نېټه apps/frappe/frappe/core/doctype/version/version_view.html,Success,د برياليتوب apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ناستې ختم دی apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,ناستې ختم دی @@ -1464,7 +1522,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ب apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,؛ په حالت اجازه نه DocType: Async Task,Async Task,Async کاري DocType: Workflow State,picture,انځور -apps/frappe/frappe/www/complete_signup.html,Complete,بشپړ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,بشپړ DocType: DocType,Image Field,د انځور د ساحوي DocType: Print Format,Custom HTML Help,د ګمرکونو د HTML مرسته DocType: LDAP Settings,Default Role on Creation,په تخلیق کې د ډیفالټ رول @@ -1472,6 +1530,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,بل د بهرنیو چارو DocType: User,Block Modules,د بنديز د روزنیز ماډل DocType: Print Format,Custom CSS,د ګمرکونو د سټايل شي +DocType: Energy Point Rule,Apply Only Once,یوازې یو ځل غوښتنه وکړئ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Add a comment DocType: Webhook,on_update,په apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},له پامه: {0} د {1} @@ -1483,6 +1542,7 @@ DocType: Email Account,Default Incoming,default راتلونکي DocType: Workflow State,repeat,تکرار DocType: Website Settings,Banner,بينر apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},ارزښت باید د {0} څخه یو وي +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,ټول لاسوندونه لغوه کړه DocType: Role,"If disabled, this role will be removed from all users.",که ناچارن شوی، دغه رول به له ټولو کاروونکو لرې شي. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} لیست ته ورشئ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,مرسته په پلټنه @@ -1491,6 +1551,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,نوملي apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,د دې سند لپاره د آټو تکرار غیر فعال شوی دی. DocType: DocType,Hide Copy,پټول کاپي apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ټول رولونه د پاکولو +DocType: Server Script,Before Save,د خوندي کیدو دمخه apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} بايد بې سارې وي apps/frappe/frappe/model/base_document.py,Row,د کتارونو apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template",CC، BCC او د برېښنالیک معرفي کول @@ -1501,7 +1562,6 @@ DocType: Chat Profile,Offline,د نالیکي apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},په بریالیتوب سره {0} وارد شو DocType: User,API Key,API کلیدي DocType: Email Account,Send unsubscribe message in email,په بريښناليک د ګډون د پېغام وليږئ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,سمول عنوان apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname چې به د دې لینک په ساحه کې DocType وي. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,اسناد تاسو ته او تاسو له خوا ګمارل شوي و. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,تاسو کولی شئ دا کاپي کاپي کړئ @@ -1532,8 +1592,10 @@ DocType: Data Migration Run,Total Pages,ټولې پاڼې DocType: DocField,Attach Image,د انځور ضمیمه DocType: Workflow State,list-alt,لست-alt apps/frappe/frappe/www/update-password.html,Password Updated,شفر Updated +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> د کارونکي اجازه apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ستاسو د ننوتنې تصدیق کولو ګامونه apps/frappe/frappe/utils/password.py,Password not found,شفر ونه موندل شو +DocType: Webhook,Webhook Secret,د ویب هوک راز DocType: Data Migration Mapping,Page Length,د اوږدوالی اوږدوالی DocType: Email Queue,Expose Recipients,اخیستونکو کيږدئ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,پايملون د دې لپاره چې راتلونکي ته لارسرسي الزامی دی @@ -1559,6 +1621,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,سيستم DocType: Web Form,Max Attachment Size (in MB),Max ضميمه اندازه (په MB) apps/frappe/frappe/www/login.html,Have an account? Login,يو ګڼون لری؟ د ننه کیدل +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,د چاپ امستنې ... DocType: Workflow State,arrow-down,غشی ښکته apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},قطار {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},کارن اجازه نه ړنګول {0}: {1} @@ -1579,6 +1642,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,خپل پ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox لاسرسی پټې DocType: Tag Link,Document Title,لاسوند apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(لازمي) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کاله دمخه DocType: Social Login Key,Social Login Provider,د ټولنی ننوتل چمتو کول apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Add يو بل پيغام apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,په فایل کې هیڅ معلومات نه موندل کیږي. مهرباني وکړئ نوی فایل د ډاټا سره بیاچاپ کړئ. @@ -1593,11 +1657,12 @@ DocType: Workflow State,hand-down,لاس ښکته apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",هیڅ ساحه ونه موندل شوه چې د کانبان کالم په توګه وکارول شي. د "انتخاب" ډول کې د ګمرکي ساحې اضافه کولو لپاره دودیز فارم وکاروئ. DocType: Address,GST State,GST د بهرنیو چارو apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: جوړ نشي لغوه پرته سپارل +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),کارنان ({0}) DocType: Website Theme,Theme,موضوع DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI د Auth قانون تابع دي apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,خلاص مرسته DocType: DocType,Is Submittable,ده Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,نوی یادونه +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,نوی یادونه apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,د ګوګل نوې اړیکې ندي سمې شوي. DocType: File,Uploaded To Google Drive,ګوګل ډرایو ته اپلوډ شوی apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,د چيک د پټی ارزښت وي 0 يا 1 @@ -1607,7 +1672,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,نوم لړۍ اجب DocType: Workflow State,Inbox,ته درشي DocType: Kanban Board Column,Red,سور DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,د ښونکی +DocType: Report,Script,د ښونکی apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,لاسوند نشي خوندي کېدلی. DocType: Energy Point Rule,Maximum Points,اعظمي نقطې apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,زما امستنې @@ -1637,8 +1702,10 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} د {1} {2} لپاره د تعریف ټکي apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,رول کولای شي له خپلو کارن مخ د کاروونکو لپاره د جوړ شي. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Add Comment +DocType: Dashboard Chart,Select Date Range,د نیټې سلسله وټاکئ DocType: DocField,Mandatory,اجباري apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ماډل د صادرولو +DocType: Scheduled Job Type,Monthly Long,میاشتنۍ اوږده apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: نه د اساسي پرېښلې ټولګه apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",د سپارل، لغوه ترجمه، تعدیل @@ -1648,7 +1715,6 @@ DocType: Milestone Tracker,Track milestones for any document,د هر سند لپ DocType: Social Login Key,Identity Details,د پېژندنې تفصیلات apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},د کاري جریان حالت لیږد ته له {0} څخه {1} ته اجازه نشته apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ډشبورډ ښودل -apps/frappe/frappe/desk/form/assign_to.py,New Message,نوی پیغام DocType: File,Preview HTML,د مخکتنې د HTML DocType: Desktop Icon,query-report,خوری-راپور DocType: Data Import Beta,Template Warnings,د ساندوي خبرداری @@ -1665,12 +1731,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} نوم apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,نه حلال د دې ثبتیږي. DocType: Auto Email Report,Auto Email Report,د موټرونو دبرېښنا ليک راپور +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,نوی لاسوند شرید شو apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,ړنګول نظر؟ DocType: Address Template,This format is used if country specific format is not found,دا فرمت که د هېواد مشخصې فرمت ونه موندل کارول DocType: System Settings,Allow Login using Mobile Number,اجازه ننوتل د موبايل نمبر په کارولو apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,تاسو پوره پرېښلې د دې منابعو ته لاسرسی نه لري. لورينه وکړئ خپل د مدیر سره اړیکه ته لاره پيدا کړي. DocType: Custom Field,Custom,د ګمرکونو DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",که چیرې فعال وي، هغه کارونکي چې د محدود شوي IP پتې څخه ننوتل، د دوو فاکتور لیکوال لپاره ندی هڅول کیږي +DocType: Server Script,After Cancel,د لغوه کیدو وروسته DocType: Auto Repeat,Get Contacts,اړيکې ترلاسه کړئ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ليکنې درج لاندې {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,د سرلیک نه پرته کالم پریښودل @@ -1681,6 +1749,7 @@ DocType: User,Login After,ننوتل وروسته DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,د چاپونې DocType: Workflow State,thumbs-up,تړون +DocType: Notification Log,Mention,ذکر کول DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,فکسونه apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision بايد 1 او 6 تر منځ وي @@ -1688,7 +1757,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,او apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},دا راپور په {0} DocType: Error Snapshot,Frames,چوکاټونه -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,دندې +DocType: Notification Log,Assignment,دندې DocType: Notification,Slack Channel,سلیمان چینل DocType: About Us Team Member,Image Link,د انځور لینک DocType: Auto Email Report,Report Filters,راپور چاڼګرونه @@ -1705,6 +1774,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,د غونډې د اوسمهالولو توان نلري apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,د تایید کوډ ستاسو د ثبت شوي بریښنالیک پتې ته لیږل شوی. apps/frappe/frappe/core/doctype/user/user.py,Throttled,ټوټه شوی +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,ستاسو هدف apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",چاڼ بايد 4 ارزښتونه (doctype، fieldname، عملیاتو، ارزښت) لري: {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,د ګمارنې مقرره پلي کړئ apps/frappe/frappe/utils/bot.py,show,خپرونه @@ -1715,7 +1785,6 @@ DocType: Workflow State,text-height,text-قد DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,د معلوماتو د مهاجرت پالن نقشه apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,د فریپ پیلول ... DocType: Web Form Field,Max Length,Max اوږدوالی -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},د {0} {1} لپاره DocType: Print Format,Jinja,جنجا DocType: Workflow State,map-marker,نقشه-مارکر apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,یو Issue سپارل @@ -1751,6 +1820,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page ورک يا وړل apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,بیاکتنې DocType: DocType,Route,لار apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay تاديه ليدونکی امستنې +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} د {2} {3} لپاره {1} نقطه ترلاسه کړه apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,د لاسوند انځورونه ترلاسه کړئ DocType: Chat Room,Name,نوم DocType: Contact Us Settings,Skype,سکایپ @@ -1761,7 +1831,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,د پران apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,ستا ژبه DocType: Dashboard Chart,Average,اوسط apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Add د کتارونو -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,چاپګر apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,خوری باید یو انتخاب وي DocType: Auto Repeat,Completed,بشپړ شوي @@ -1819,6 +1888,7 @@ DocType: GCalendar Account,Next Sync Token,د بل همغږۍ ټکي DocType: Energy Point Settings,Energy Point Settings,د انرژي ټکي تنظیمات DocType: Async Task,Succeeded,بریالي وو apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},اجباري برخو کې اړتیا {0} +DocType: Onboarding Slide Field,Align,سیدول apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,لپاره د بیرته حلال {0}؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,کارنان او حلال DocType: S3 Backup Settings,S3 Backup Settings,S3 بیک اپ امستنې @@ -1835,7 +1905,9 @@ DocType: DocType,ASC,دلیکلو apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,د نوي چاپ بmatه نوم apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,د غوښتنې تصویب لپاره لاندې لینک باندې کلیک وکړئ DocType: Workflow State,align-left,په همغاړیتوب-پاتې +DocType: Onboarding Slide,Action Settings,د کړنې امستنې DocType: User,Defaults,افتراضیو +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",د پرتله کولو لپاره ،> 5 ، <10 یا = 324 وکاروئ. د حدونو لپاره ، 5:10 وکاروئ (د 5 او 10 ترمنځ ارزښتونو لپاره). DocType: Energy Point Log,Revert Of,بېرته راوګرځول apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,سره د موجوده لېږدونه DocType: User,Birth Date,د زېږېدو نېټه @@ -1890,6 +1962,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,په DocType: Notification,Value Change,د ارزښت د بدلون DocType: Google Contacts,Authorize Google Contacts Access,د ګوګل اړیکو لاسرسی اختیار کړئ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,د راپور څخه یواځې د شمیرې ساحې ښودل +apps/frappe/frappe/utils/data.py,1 week ago,1 اونۍ دمخه DocType: Data Import Beta,Import Type,د واردولو ډول DocType: Access Log,HTML Page,د HTML پا .ه DocType: Address,Subsidiary,د متمم @@ -1899,7 +1972,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,سره ليک apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,باطلې باورلیک Mail سرور يا بندر DocType: Custom DocPerm,Write,وليکئ -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,یواځې د مدیر ته شوې پوښتن / دستورالعمل راپورونه جوړ اجازه apps/frappe/frappe/public/js/frappe/form/save.js,Updating,د نصابونو په DocType: Data Import Beta,Preview,د مخکتنې apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ساحوي "ارزښت" لازمي ده. لطفا د ارزښت د مشخص اوسمهالولو ته @@ -1909,6 +1981,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,په تو DocType: Data Migration Run,Started,پیل شوی apps/frappe/frappe/permissions.py,User {0} does not have access to this document,کارن {0} دې لاسوند کې لاسرسی نه لري DocType: Data Migration Run,End Time,د پاي وخت +DocType: Dashboard Chart,Group By Based On,ډله پر بنسټ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,انتخاب ضم apps/frappe/frappe/model/naming.py, for {0},د {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,تاسو د دې لاسوند د چاپولو اجازه نه لري @@ -1950,6 +2023,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,تایید کړي DocType: Workflow Document State,Update Field,تازه ساحوي DocType: Chat Profile,Enable Chat,فعال چیٹ DocType: LDAP Settings,Base Distinguished Name (DN),اډه قدرمنو نوم (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,دې خبرو اترو څخه ووځي apps/frappe/frappe/model/base_document.py,Options not set for link field {0},د تړنه ډګر غوراوي نه {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,کتار / کارګر @@ -2016,12 +2090,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,د ننوت په دې وخت کې اجازه نه لري DocType: Data Migration Run,Current Mapping Action,اوسنۍ نقشه ایزه کړنه DocType: Dashboard Chart Source,Source Name,سرچینه نوم -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,د کارونکي سره هیڅ کوم بریښنالیک نه دی تړلی. مهرباني وکړئ د کارن> بریښنالیک ان باکس کې لاندې حساب اضافه کړئ. DocType: Email Account,Email Sync Option,برېښناليک پرانیځئ انتخاب apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,قطار DocType: Async Task,Runtime,ډول کارېږي، DocType: Post,Is Pinned,پیژندل شوی دی DocType: Contact Us Settings,Introduction,پېژندنه +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,مرستې ته اړتیا لرئ؟ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,په نړیواله کچه پن کړئ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ور پسی DocType: LDAP Settings,LDAP Email Field,LDAP بريښناليک ساحوي @@ -2031,7 +2105,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,لا له DocType: User Email,Enable Outgoing,فعال باورلیک DocType: Address,Fax,فاکس apps/frappe/frappe/config/customization.py,Custom Tags,د ګمرکونو نښانونه -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب نه دی تنظیم شوی. مهرباني وکړئ له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه نوی بریښنالیک حساب جوړ کړئ DocType: Comment,Submitted,ته وسپارل شول DocType: Contact,Pulled from Google Contacts,د ګوګل اړیکو څخه راوتلی apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,په اعتباري غوښتنه @@ -2052,9 +2125,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,کور / ا apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,ماته موظف DocType: DocField,Dynamic Link,خوځنده لینک apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,په مینو او سایډ بار کې د اضافي شارټ کټونو د متحرک کولو لپاره Alt کیلي فشار ورکړئ +DocType: Dashboard Chart,To Date,نن ورځ DocType: List View Setting,List View Setting,د لیست لید تنظیم کول apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,خپرونه کې پاتې دندې -DocType: Event,Details,په بشپړه توګه کتل +DocType: Scheduled Job Log,Details,په بشپړه توګه کتل DocType: Property Setter,DocType or Field,DocType يا ساحوي apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,تاسو دا لاسوند خالي کړی دی apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,لومړنی رنګ @@ -2063,7 +2137,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,داسي ښکاري چي خپرولو کلیدي یا پټې مهم غلط دی !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,داسي ښکاري چي خپرولو کلیدي یا پټې مهم غلط دی !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,لپاره د خوښو حلال چټک مرسته -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype ته نښانونه موظف apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,انکړپټه ښودل راوس apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,د خځلنۍ ته برېښناليک دی کډه شوي دي DocType: Report,Report Builder,راپور جوړونکی @@ -2079,6 +2152,7 @@ DocType: Workflow State,Upload,پورته کول DocType: User Permission,Advanced Control,پرمختللي کنټرول DocType: System Settings,Date Format,نېټه شکل apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,نه Published +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,د پتې اصلي ټاپو ټاټوبی ونه موندل شو. مهرباني وکړئ له تنظیم او چاپ کولو او نښه کولو> پته ټیمپلیټ څخه نوی جوړ کړئ. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",د ننګولې کړنې (د بيلګې په توګه تصویب کړي، لغوه کړه). DocType: Data Import,Skip rows with errors,قطارونه د غلطۍ سره پریږدي DocType: Workflow State,flag,بیرغ @@ -2095,7 +2169,7 @@ DocType: Post Comment,Post Comment,د پوسټ تبصره apps/frappe/frappe/config/core.py,Documents,اسناد apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,د فعالیت له پلوه DocType: Social Login Key,Custom Base URL,د ګمرک بنسټیز URL -DocType: Email Flag Queue,Is Completed,بشپړ +DocType: Onboarding Slide,Is Completed,بشپړ apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ساحې ترلاسه کړئ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,سمول پېژندنه DocType: Kanban Board Column,Archived,ارشیف @@ -2106,12 +2180,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",دې برخه کې به پرانيستل شي يوازې که د fieldname دلته تعریف ارزښت لري، یا د اصولو سمه (مثالونه) دي: myfield eval: doc.myfield == زما ارزښت 'eval: doc.age> 18 DocType: Social Login Key,Office 365,دفتر 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,نن -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,نن +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,نن +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,نن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,له واردولو وروسته وسپارئ DocType: Error Log,Log of Scheduler Errors,يادښت د pane دندې تېروتنې DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,د تخته سلایډ مرستې لینک DocType: OAuth Client,App Client Secret,ددفتروسایل د مراجع د پټې apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ته وسپارل شول apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,والدین د هغه سند نوم دی چې کوم معلومات به یې اضافه شي. @@ -2119,7 +2194,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,د مشرانو د دوسيې د apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,د ګمرکونو د HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,دادوسیه خلاصه نوم ولیکۍ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,د پتې اصلي ټاپو ټاټوبی ونه موندل شو. مهرباني وکړئ له تنظیم او چاپ کولو او نښه کولو> پته ټیمپلیټ څخه نوی جوړ کړئ. apps/frappe/frappe/auth.py,Unknown User,نامعلوم ناباوره apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,انتخاب رول DocType: Comment,Deleted,ړنګ @@ -2135,7 +2209,7 @@ DocType: Chat Token,Chat Token,چیٹ توکی apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,چارت جوړ کړئ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,وارد مه کوئ -DocType: Web Page,Center,مرکز +DocType: Onboarding Slide Field,Center,مرکز DocType: Notification,Value To Be Set,ارزښت جوړ شي apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,لومړی د ليول @@ -2143,7 +2217,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,د ډاټا ډاټا apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,تاندول فورمه DocType: DocField,Select,وټاکئ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,بشپړ لاګ وګورئ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,بشپړ لاګ وګورئ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",د ساده پیتون څرګندونې ، مثال: حالت == 'خلاص' او ټایپ == 'بګ' apps/frappe/frappe/utils/csvutils.py,File not attached,دوتنه نه ضميمه apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,پیوستون ورک شوی. ځینې ځانګړتیاوې ممکن کار ونکړي. @@ -2152,6 +2226,7 @@ apps/frappe/frappe/public/js/frappe/chat.js,New Chat,نوی چیٹ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",که تاسو دا ډول ټاکل، د دې توکي به په غوره والدينو لاندې يو څاڅکی ښکته راځي. DocType: Print Format,Show Section Headings,انکړپټه ښودل برخه Headings DocType: Bulk Update,Limit,حد +apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},موږ د دې اړوند {0} معلوماتو حذف کولو غوښتنه ترلاسه کړې: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,نوی برخه اضافه کړئ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,فلټر شوي ریکارډونه apps/frappe/frappe/www/printview.py,No template found at path: {0},نه کېنډۍ په لاره وموندل شو: {0} @@ -2174,6 +2249,7 @@ DocType: Web Page,HTML for header section. Optional,سرۍ کړی لپاره HTM apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,دا ځانګړتيا، نوي او تر اوسه آزمېښتي apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,اعظمي {0} د قطارونو په اجازه DocType: Dashboard Chart Link,Chart,چارټ +DocType: Scheduled Job Type,Cron,کرون DocType: Email Unsubscribe,Global Unsubscribe,Global د ګډون د apps/frappe/frappe/utils/password_strength.py,This is a very common password.,دا یو ډیر عادی شفر. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,محتویات @@ -2190,6 +2266,7 @@ DocType: Data Migration Connector,Hostname,کوربه نوم DocType: Data Migration Mapping,Condition Detail,حالت تفصیل apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",د پیسو لپاره {0}، د لیږد لږ تر لږه {1} DocType: DocField,Print Hide,چاپ پټول +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,کارونکي ته apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,ارزښت وليکئ DocType: Workflow State,tint,tint @@ -2255,6 +2332,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,د ننوتن apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ته اضافه کړی تر آیا DocType: Footer Item,Company,شرکت apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},اوسط {0} +DocType: Scheduled Job Log,Scheduled,ټاکل شوې DocType: User,Logout from all devices while changing Password,د پټنوم بدلولو په وخت کې د ټولو وسیلو څخه ننوتل apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,شفر تاييد apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,تېروتنې وې @@ -2280,7 +2358,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,د کارن اجازې لا دمخه لا شتون لري apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},کالم {0} ساحې {1} ته نقشه کول apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},وګورئ {0} -DocType: User,Hourly,ورځي +DocType: Scheduled Job Type,Hourly,ورځي apps/frappe/frappe/config/integrations.py,Register OAuth Client App,راجستر OAuth د مراجع ددفتروسایل DocType: DocField,Fetch If Empty,راوړئ که خالي DocType: Data Migration Connector,Authentication Credentials,د اعتبار اعتبارونه @@ -2290,10 +2368,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,د ټکی تخصیص DocType: SMS Settings,SMS Gateway URL,SMS ليدونکی URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} د {1} نه وي. "{2}". دا بايد د يو وي "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} يا {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,تاسو ټول تنظیم شوي یاست! DocType: Workflow State,trash,خځلنۍ DocType: System Settings,Older backups will be automatically deleted,د زړو backups به په اتوماتيک ډول ړنګ شي apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,د ناباوره لاسرسی کیلي ID یا د پټ لاس رسی کیلي. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,تاسو د انرژۍ ځینې ټکي له لاسه ورکړ DocType: Post,Is Globally Pinned,په نړیوال بانک کې apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,وروستی فعالیت DocType: Workflow Transition,Conditions,شرایط @@ -2302,6 +2380,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,تاييد DocType: Event,Ends on,ختميږی په DocType: Payment Gateway,Gateway,ليدونکی DocType: LDAP Settings,Path to Server Certificate,د سرور سند ته لاره +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,جاواسکریپټ ستاسو په براوزر کې نافعال دی apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,نه کافي اجازې ته تړنې وګورئ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,نه کافي اجازې ته تړنې وګورئ apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,پته عنوان الزامی دی. @@ -2321,7 +2400,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-West-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",که چیرې دا چک شوی وي، د قطعاتو باوري ډاټا سره به واردېږي او باوري قطار به تاسو ته وروسته د واردولو لپاره نوي فایل ته وځنډول شي. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,سند یوازې د رول د کاروونکو له خوا د سمون -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,د ترلاسه کوونکی لخوا DocType: Blogger,Short Name,لنډ نوم @@ -2354,6 +2432,7 @@ DocType: Translation,PR sent,PR لیږل شوی DocType: Auto Email Report,Only Send Records Updated in Last X Hours,یوازې ولېږئ سوابق په تېر X ساعتونه Updated DocType: Auto Email Report,Only Send Records Updated in Last X Hours,یوازې ولېږئ سوابق په تېر X ساعتونه Updated DocType: Communication,Feedback,Feedback +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,نوې نسخې ته تازه شوی 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,پرانيستی ژباړه apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,دا بریښنالیک تایید شوی DocType: Workflow State,Icon will appear on the button,Icon به پر تڼی ښکاري @@ -2391,6 +2470,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Page ون DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,ننداريزکتل سامان apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,د پرله پسې خبرو او د تورو د مخنيوي هڅه وکړي +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,خبرتیاوی ناتوان شوی +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,ایا تاسو باوري یاست چې غواړئ ټولې قطارونه حذف کړئ؟ DocType: Workflow Action,Workflow State,ننګولې د بهرنیو چارو apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,د قطارونو د ورزیاتولو apps/frappe/frappe/www/list.py,My Account,زما حساب @@ -2399,6 +2480,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,وروسته له څو ورځو apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,د QZ ټری ارتباط فعال! DocType: Contact Us Settings,Settings for Contact Us Page,زمونږ لپاره د تماس Page امستنې +DocType: Server Script,Script Type,د ښونکی ډول DocType: Print Settings,Enable Print Server,د چاپ سرور فعالول apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} اوونۍ دمخه DocType: Email Account,Footer,پښۍ @@ -2424,8 +2506,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,خبرداری apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,دا ممکن په ډیری پا onو کې چاپ شي DocType: Data Migration Run,Percent Complete,فيصده بشپړ شوی -DocType: Tag Category,Tag Category,Tag کټه ګورۍ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",د پرتله کولو لپاره ،> 5 ، <10 یا = 324 وکاروئ. د حدونو لپاره ، 5:10 وکاروئ (د 5 او 10 ترمنځ ارزښتونو لپاره). DocType: Google Calendar,Pull from Google Calendar,د ګوګل کیلنڈر څخه وباسئ apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,مرسته DocType: User,Login Before,ننوتل مخکې @@ -2435,17 +2515,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,د اونۍ پټول apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,په اتوماتيک ډول د تکراري اسنادو تولید apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ده +DocType: Onboarding Slide,ERPNext,د ERPNext DocType: Workflow State,info-sign,معلومات-نښه apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,د {0} نه شي کولای یو لست وي ارزښت DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",څنګه بايد د دغه کار د اسعارو بڼول شي؟ که ټاکل شوی نه، به سيستم افتراضیو وکاروي apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,د {0} اسناد تسلیم کړئ؟ apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,تاسو بايد غونډال کې شي او د سیستم د مدير رول ولري تر څو backups لاسرسی وي. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","د QZ ټری کاریال سره په پیوستولو کې تېروتنه ... <br><br> تاسو اړتیا لرئ د QZ ټری غوښتنلیک نصب او چلئ ، د خامو چاپ ب featureه کارولو لپاره. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">د QZ ټری ډاونلوډ او نصبولو لپاره دلته کلیک وکړئ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">د را چاپولو په اړه د نورو معلوماتو لپاره دلته کلیک وکړئ</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,د چاپګر نقشه apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,لطفا د ژغورلو ضميمه مخکې. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ایا تاسو غواړئ ټول تړلي سندونه لغوه کړئ؟ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),د ورزیاتولو {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype څخه نشي بدل شي {0} د {1} په قطار {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,رول حلال DocType: Help Article,Intermediate,منځني +apps/frappe/frappe/config/settings.py,Email / Notifications,بریښنالیک / خبرتیاوې apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,مستند اسناد د مسودې په توګه بیرته راګرځیدل DocType: Data Migration Run,Start Time,د پيل وخت apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} د {2} {3} {4} سره تړاو لري، ځکه چې ړنګول یا رد نه شي کولی. @@ -2460,6 +2544,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,آ apps/frappe/frappe/email/smtp.py,Invalid recipient address,دترلاسه کوونکي ایمیل ادرس ناسم نوم DocType: Workflow State,step-forward,په ګام مخ DocType: System Settings,Allow Login After Fail,د ناکامۍ وروسته د ننوتلو اجازه ورکړه +DocType: DocType Link,DocType Link,د ډاک ټایپ لینک DocType: Role Permission for Page and Report,Set Role For,د ټاکلو په رول د DocType: GCalendar Account,The name that will appear in Google Calendar,هغه نوم چې په ګوګل کټل کې راځي apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,د {0} سره مستقیم خونه لا دمخه شتون لري. @@ -2477,6 +2562,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},د جوړ DocType: Contact,Google Contacts,د ګوګل اړیکې DocType: GCalendar Account,GCalendar Account,د ګالیلر حساب DocType: Email Rule,Is Spam,آیا سپام +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,اخري apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},راپور {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},د پرانیستې {0} DocType: Data Import Beta,Import Warnings,خبرداری وارد کړه @@ -2488,6 +2574,7 @@ DocType: Workflow State,ok-sign,سمه ده-نښه apps/frappe/frappe/config/settings.py,Deleted Documents,ړنګ اسناد apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,د CSV بڼه د قضیې حساس دی apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,د ديسکټاپ Icon د مخکې نه شتون +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,په هغه څه مشخص کړئ چې ټول ډومینونه باید سلایډونه ښکاره شي. که هیڅ شی مشخص نه وي نو سلایډ په ټولو ډومینونو کې د ډیفالټ لخوا ښودل شوی. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,دوه DocType: Newsletter,Create and Send Newsletters,جوړول او وليږئ ګڼې apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,ستاسو له نظره مننه دا به له تصویب وروسته خپاره شي @@ -2497,6 +2584,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,د ګوګل کیلنڈر پیښه ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","د موروپلار" ليدل کېږي د مورنی جدول کې چې باید د دې د قطار زياته شي apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,د بیاکتنې ټکي: +DocType: Scheduled Job Log,Scheduled Job Log,د مهالویش دنده +DocType: Server Script,Before Delete,مخکې له مینځه وړل apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,د شریکې سره apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,د فایلونو / یو آر ایل سره ضمیمه کړئ او په میز کې اضافه کړئ. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,پیغام نه دی جوړ شوی @@ -2520,19 +2609,21 @@ DocType: About Us Settings,Settings for the About Us Page,لپاره زموږ پ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,یاتوره پیسو ليدونکی امستنې apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,یاتوره پیسو ليدونکی امستنې apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,چاپ ته یې ولیږل شو! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,د انرژی ځایونه +DocType: Notification Settings,Energy Points,د انرژی ځایونه +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},وخت {0} باید په ب formatه کې وي: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,د بيلګې په توګه pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,کیلي تولید کړئ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,دا به تل ستاسو ډاټا لرې کړي. DocType: DocType,View Settings,View امستنې +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,نوی خبرتیا DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,د جوړښت غوښتنه +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,د کنټرول میتود get_razorpay_order ورک دی DocType: Personal Data Deletion Request,Pending Verification,انتظار باوری DocType: Website Meta Tag,Website Meta Tag,د ویب پا Metې میټا ټاګ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",که غیر معیاري بندر (د مثال په توګه 587). که په ګوګل کلاډر کې، 2525 بندر کې هڅه وکړئ. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",د پای نیټه نیټه، لکه څنګه چې دا په تیرو کې په خپره شوې پاڼې کې نه شي کیدی. DocType: User,Send Me A Copy of Outgoing Emails,د تللو بریښنالیکونو کاپي زه واستوئ -DocType: System Settings,Scheduler Last Event,pane دندې تېر دکمپاینونو DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Add Google Analytics ID: د بيلګې په توګه. UA-89XXX57-1. مهرباني وکړی د Google Analytics د نورو معلوماتو لپاره د مرستې ولټوي. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,پټنوم نه شي کولای 100 څخه زيات خویونه اوږده وي DocType: OAuth Client,App Client ID,ددفتروسایل د مراجع ID @@ -2561,6 +2652,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,د نوي ش apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} د دې سند سره شریک {1} DocType: Website Settings,Brand Image,دچاپی DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,د وارداتو ٹیمپلیټ باید سرلیک ولري او لږترلږه یو قطار ولري. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,د ګوګل کیلنګر ترتیب شوی. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",د سر ګرځښت bar، پښۍ او لوګو Setup. DocType: Web Form Field,Max Value,Max ارزښت @@ -2569,6 +2661,7 @@ DocType: Auto Repeat,Preview Message,وړاندې کول پېغام DocType: User Social Login,User Social Login,د کارن ټولنیز ننوتل DocType: Contact,All,ټول DocType: Email Queue,Recipient,دترلاسه کوونکي +DocType: Webhook,Webhook Security,د ویب هک امنیت DocType: Communication,Has Attachment,لري ضميمه DocType: Address,Sales User,خرڅلاو کارن apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,راکښن او لاسرسئ وسیله د جوړولو او چاپ بڼی دتنظيمولو. @@ -2658,13 +2751,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,وېب پاڼه نندا apps/frappe/frappe/model/workflow.py,Self approval is not allowed,د ځان تایید اجازه نلري DocType: GSuite Templates,Template ID,کينډۍ ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,د وړاندو ډول ډول ( <code>{0}</code> او د ځواب ډول ( <code>{1}</code> ) اجازه نه لري -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},له {0} څخه نوی پیغام DocType: Portal Settings,Default Role at Time of Signup,Default د لپارهخپل د وخت رول DocType: DocType,Title Case,عنوان Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,ستاسو د معلوماتو ډاونلوډ کولو لپاره لاندې لینک باندې کلیک وکړئ +apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},د کاروونکي {0} لپاره بریښنالیک بریښنالیک DocType: Data Migration Run,Data Migration Run,د ډاټا مهاجرت چلول DocType: Blog Post,Email Sent,برېښناليک لېږلو -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,زوړ DocType: DocField,Ignore XSS Filter,XSS Filter له پامه apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,لرې apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox شاتړ امستنې @@ -2718,6 +2810,7 @@ DocType: Async Task,Queued,له پيله DocType: Braintree Settings,Use Sandbox,sandbox استعمال apps/frappe/frappe/utils/goal.py,This month,دا میاشت apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,د نوي ګمرک د چاپ شکل +DocType: Server Script,Before Save (Submitted Document),د خوندي کولو دمخه (سپارل شوی لاسوند) DocType: Custom DocPerm,Create,جوړول apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,نور توکي د ښودلو لپاره نشته apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,پخواني ریکارډ ته لاړشئ @@ -2774,6 +2867,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,د خځلنۍ ته خوځون DocType: Web Form,Web Form Fields,ويب فورمه فیلډز DocType: Data Import,Amended From,تعدیل له +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,د مرستې ویډیو لینک اضافه کړئ په هغه حالت کې چې کارن په سلایډ کې د ډکولو په اړه هیڅ نظر نلري. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},خبرداری: توان نلري پيدا {0} په اړوند د هر میز {1} DocType: S3 Backup Settings,eu-north-1,د شمال - 1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,دغه سند د اوس لپاره د اعدام له پيله. لطفا بیا هڅه وکړې @@ -2795,6 +2889,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,څخه صادرول apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ژور لټون apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,تاسو ته د خبر لیک لیدو اجازه نلرئ. +DocType: Dashboard Chart,Group By,ډله په DocType: User,Interests,د ګټو apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,د تېرنويې د بیرته جوړولو د لارښوونو ته خپل ایمیل استول شوي دي DocType: Energy Point Rule,Allot Points To Assigned Users,ټاکل شوي کاروونکو ته د نقطو ټاکل @@ -2810,6 +2905,7 @@ DocType: Assignment Rule,Assignment Rule,د ګمارنې مقرره apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},انديز نوم: {0} DocType: Assignment Rule Day,Day,ورځ apps/frappe/frappe/public/js/frappe/desk.js,Modules,ماډلونو +DocType: DocField,Mandatory Depends On,لازميږي apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,د پیسو د برياليتوب apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,نه {0} پست DocType: OAuth Bearer Token,Revoked,لغوه @@ -2817,6 +2913,7 @@ DocType: Web Page,Sidebar and Comments,د پټې او تبصره apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",کله چې تاسو پرچاپیریال سره يو سند وروسته لغوه کړه او د ژغورلو دا، به د يو نوي شمېر چې د زاړه شمېر کې نسخه تر لاسه کړي. apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",د {0} سند لاسلیک کولو ته اجازه نلري، لطفا د چاپ ترتیبونو کې {0} ته د چاپ اجازه ورکړئ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب نه دی تنظیم شوی. مهرباني وکړئ له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه نوی بریښنالیک حساب جوړ کړئ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},سند په {0} کې وګورئ DocType: Stripe Settings,Publishable Key,خپرولو کلیدي DocType: Stripe Settings,Publishable Key,خپرولو کلیدي @@ -2832,6 +2929,7 @@ DocType: Currency,Fraction,کسر apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,پیښه د ګوګل کیلنڈر سره همغږي شوې. DocType: LDAP Settings,LDAP First Name Field,LDAP لومړی نوم ساحوي DocType: Contact,Middle Name,منځنی نوم +DocType: DocField,Property Depends On,ملکیت پورې اړه لري DocType: Custom Field,Field Description,ساحوي Description apps/frappe/frappe/model/naming.py,Name not set via Prompt,له لارې د خپلسرو نوم نه apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ايميل @@ -2878,11 +2976,11 @@ DocType: Workflow State,folder-close,دادوسیه خلاصه-نږدې apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,راپور: DocType: Print Settings,Print taxes with zero amount,د صفر مقدار سره مالیات چاپ کړئ apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} نه اجازه نامه ونومول شي +DocType: Server Script,Before Insert,مخکې له ننوتلو څخه DocType: Custom Script,Custom Script,د ګمرکونو د ښونکی DocType: Address,Address Line 2,د ادرس کرښه 2 DocType: Address,Reference,ماخذ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,ته ګمارل شوي -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د ډیفالټ بریښنالیک حساب له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه تنظیم کړئ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,د معلوماتو مهاجرت نقشه توضیحات DocType: Data Import,Action,کړنه DocType: GSuite Settings,Script URL,سکرېپټ د حافظی @@ -2908,11 +3006,13 @@ DocType: User,Api Access,د اپي لاسرسي DocType: DocField,In List View,په لست کی View DocType: Email Account,Use TLS,ایس استعمال apps/frappe/frappe/email/smtp.py,Invalid login or password,د ننوتو ناسم نوم يا پاسورډ +DocType: Scheduled Job Type,Weekly Long,اونيزه اوږده apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,دانلود کينډۍ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Add د ګمرک د فارمونو جاوا. ,Role Permissions Manager,رول حلال مدير apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,د نوي چاپ شکل نوم apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,د سایډ بار ټګول +DocType: Server Script,After Save (Submitted Document),له خوندي کولو وروسته (سپارل شوی لاسوند) DocType: Data Migration Run,Pull Insert,ورننوځئ DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",د ضرب کونکي ارزښت سره د ضرب الاجل وروسته اعظمي نقطو ته اجازه ورکول (یادونه: د هیڅ حد لپاره دا ساحه خالي نه پریږدئ یا 0 ټاکل) @@ -2920,6 +3020,7 @@ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,ن apps/frappe/frappe/model/db_query.py,Illegal SQL Query,غیرقانوني SQL پوښتنه apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,اجباري: DocType: Chat Message,Mentions,مغزونه +apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Modules,{0} انډولونه DocType: Chat Room,Chat Room,چیٹ روم DocType: Chat Profile,Conversation Tones,د خبرو اترو ټون DocType: Property Setter,New value to be set,نوی ارزښت جوړ شي @@ -2930,6 +3031,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP نه لګول apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,سره د معلوماتو دانلود apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},د {0} {1} لپاره بدل شوي ارزښتونه +DocType: Server Script,Before Cancel,د لغوه کیدو دمخه DocType: Workflow State,hand-right,لاس-حق DocType: Website Settings,Subdomain,ډومېن DocType: S3 Backup Settings,Region,Region @@ -2976,12 +3078,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,زوړ پټ نوم DocType: S3 Backup Settings,us-east-1,us-ختیځ -1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ليکنې له خوا د {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",ته بڼه ستنې، په دپوښتنی کالم لیبلونه ورکړي. +DocType: Onboarding Slide,Slide Fields,د سلایډ ساحې DocType: Has Domain,Has Domain,لري ډومېن DocType: User,Allowed In Mentions,په ذکرونو کې اجازه ورکړل شوي apps/frappe/frappe/www/login.html,Don't have an account? Sign up,مونږ سره حساب نه لري؟ ګډون کول apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,د ID ساحه نه لیرې کولی شي apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: جوړ نشي دمکپاین راولی که Submittable نه DocType: Address,Bihar,په بیهار +DocType: Notification Settings,Subscribed Documents,ګډون شوي سندونه apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,د کارن امستنې DocType: Report,Reference Report,د سرچینې راپور DocType: Activity Log,Link DocType,لینک DocType @@ -2999,6 +3103,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,د ګوګل کیلنر apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,د مخ د تاسو لپاره په لټه کې دي ورک دی. دا کیدای شي، ځکه چې دا انتقال يا په تړنه يوه غلطي نه شته. apps/frappe/frappe/www/404.html,Error Code: {0},د تېروتنې کوډ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",په لست مخ، په ساده متن، يوازې د يو څو کرښو Description. (max 140 تورو) +DocType: Server Script,DocType Event,د ډیک ټایپ پیښه DocType: Workflow,Allow Self Approval,د ځان تایید اجازه ورکړئ DocType: Event,Event Category,د پېښې کتګورۍ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,جان دو @@ -3014,6 +3119,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ستاسو نوم apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,د پیوستون بریالیتوب DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,د سالیډ ډول ادامه ورکولو یوه روانه تخته لا دمخه موجوده ده. DocType: DocType,Default Sort Field,د ډیفالټ ترتیب کولو ډګر DocType: File,Is Folder,ده پوښی DocType: Document Follow,DocType,DocType @@ -3050,8 +3156,10 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ارزښتونه بدله DocType: Workflow State,arrow-up,غشی-up DocType: Dynamic Link,Link Document Type,د لینک سند ډول +DocType: Server Script,Server Script,سرور سکریپټ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",د آٹو تکرار تنظیم کولو لپاره ، له {0} څخه "د ځان تکرار اجازه ورکړئ" وړ کړئ. DocType: OAuth Bearer Token,Expires In,ته رسیږي په +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",د هغه وخت اندازه چې تاسو غواړئ د ساحو سیټ تکرار کړئ (د بیلګې په توګه: که تاسو په سلایډ کې 3 پیرودونکي غواړئ ، نو دا ساحه یې 3 ته تنظیم کړئ. یوازې د ځمکې لومړی سیټ په سلایډ کې لازمي ښودل شوی) DocType: DocField,Allow on Submit,اجازه پر سپارل DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,استثنا ډول @@ -3061,6 +3169,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,سرلیکونه apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,راتلونکې پېښې apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,لورينه وکړئ د ددفتروسایل لاسرسی لپاره عمده او ددفتروسایل پټې او مهمو ارزښتونو ته ننوځي +DocType: Email Account,Append Emails to Sent Folder,لیږل شوي فولډر ته بریښنالیکونه اضافه کړئ DocType: Web Form,Accept Payment,قطعا د منلو ته apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,د لیست توکی غوره کړئ apps/frappe/frappe/config/core.py,A log of request errors,د غوښتنې غلطيو يادښت @@ -3079,7 +3188,7 @@ DocType: Translation,Contributed,مرسته وشوه apps/frappe/frappe/config/customization.py,Form Customization,ب Customه غوره کول apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,هیڅ فعاله ناسته DocType: Web Form,Route to Success Link,بریالیتوب ته لار -DocType: Top Bar Item,Right,حق +DocType: Onboarding Slide Field,Right,حق apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,راتلونکي پیښې نه DocType: User,User Type,کارن ډول DocType: Prepared Report,Ref Report DocType,د راپور راپور ډاټا ډول @@ -3097,6 +3206,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,لطفا بیا apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL باید د 'http: //' یا 'https: //' سره پیل شي apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,انتخاب 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,دا ناکړی کیدی نشي DocType: Workflow State,Edit,سمول DocType: Website Settings,Chat Operators,چیٹ چلونکي DocType: S3 Backup Settings,ca-central-1,ca-مرکزي -1 @@ -3108,7 +3218,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,د {0} باید یو انتخاب وي Default -DocType: Tag Doc Category,Tag Doc Category,Tag Doc کټه ګورۍ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,له 10 څخه زیاتو کالمونو سره راپور د لید لید حالت کې ښه ښکاري. apps/frappe/frappe/database/database.py,Invalid field name: {0},د ساحې ناباوره نوم: {0} DocType: Milestone,Milestone,مایل @@ -3117,7 +3226,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} ته لاړشئ apps/frappe/frappe/email/queue.py,Emails are muted,برېښناليک دي سلبول apps/frappe/frappe/config/integrations.py,Google Services,ګوګل خدمتونه apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 اوونۍ دمخه +DocType: Onboarding Slide,Slide Description,د سلایډ توضیحات DocType: Communication,Error,تېروتنه apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,مهرباني وکړئ لومړی پیغام ولیکئ DocType: Auto Repeat,End Date,د پای نیټه @@ -3138,10 +3247,12 @@ DocType: Footer Item,Group Label,ګروپ نښه د DocType: Kanban Board,Kanban Board,Kanban بورډ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,د ګوګل اړیکې تنظیم شوي. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ریکارډ به صادر شي +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,د کارونکي سره هیڅ کوم بریښنالیک نه دی تړلی. مهرباني وکړئ د کارن> بریښنالیک ان باکس کې لاندې حساب اضافه کړئ. DocType: DocField,Report Hide,راپور پټول apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},د ونو محتویات لپاره نه {0} DocType: DocType,Restrict To Domain,د ډومېن اړه اندیښمن دي DocType: Domain,Domain,Domain +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,د دوتنې ناباوره URL. مهرباني وکړئ د سیسټم مدیر سره اړیکه ونیسئ. DocType: Custom Field,Label Help,نښه د مرسته DocType: Workflow State,star-empty,ستوري-تش apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,نیټی دي، زياتره اسانه فکر. @@ -3165,6 +3276,7 @@ DocType: Workflow State,hand-left,لاس پاتې DocType: Data Import,If you are updating/overwriting already created records.,که تاسو تازه یا اضافه کول یاست نو بیا د مخه جوړ شوي ریکارډونه. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ګلوبل دی DocType: Email Account,Use SSL,ایس ایس استعمال +DocType: Webhook,HOOK-.####,هک -. #### DocType: Workflow State,play-circle,play-کړۍ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,سند په سمه توګه نه دی ټاکل شوی apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",غلط "depends_on" بیان @@ -3181,6 +3293,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,وروستی تازه شوی apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,د لاسوند ډول لپاره DocType: Workflow State,arrow-right,غشی-حق +DocType: Server Script,API Method,د API میتود DocType: Workflow State,Workflow state represents the current state of a document.,ننګولې دي د دولت د يو سند د روان حالت استازيتوب کوي. DocType: Letter Head,Letter Head Based On,د لیک پر بنسټ apps/frappe/frappe/utils/oauth.py,Token is missing,د نښې ورک دی @@ -3218,6 +3331,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,د تړون د قالب چاپ DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Redirect URL +DocType: Onboarding Slide Field,Placeholder,ځای لرونکی DocType: SMS Settings,Enter url parameter for receiver nos,د ترلاسه وځيري url عوامل وليکئ DocType: Chat Profile,Online,په آنلاین توګه DocType: Email Account,Always use Account's Name as Sender's Name,د حساب نوم د لیږونکي نوم په توګه تل کاروئ @@ -3227,7 +3341,6 @@ DocType: Workflow State,Home,کور DocType: OAuth Provider Settings,Auto,د موټرونو DocType: System Settings,User can login using Email id or User Name,کاروونکي کولی شي د بریښناليک د ایمیل یا کارن نوم کارولو سره وکاروي DocType: Workflow State,question-sign,پوښتنه-نښه -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} نافعال دی apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ساحه "لاره" د ویب نظریاتو لپاره لازمي ده apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} مخکې د کالم داخل کړئ DocType: Energy Point Rule,The user from this field will be rewarded points,د دې برخې څخه کارونکي به د جایزې وړ ټکي وي @@ -3252,6 +3365,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,که خاوند DocType: Data Migration Mapping,Push,ټیله کول apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,دلته فایلونه غورځول DocType: OAuth Authorization Code,Expiration time,له کاره وتنې وخت +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,خلاص لاسوندونه DocType: Web Page,Website Sidebar,وېب پاڼه د پټې DocType: Web Form,Show Sidebar,خپرونه د پټې apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,تاسو ته په غونډال کې د دې لاسرسی {0}. @@ -3267,6 +3381,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,نړېوال DocType: Desktop Icon,Page,Page apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},نه پیدا {0} د {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,پخپله نومونه او تخلصونه دي اسانه فکر. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},لاسوند له {0} څخه {1} ته بدل شو apps/frappe/frappe/config/website.py,Knowledge Base,پوهې بنسټ DocType: Workflow State,briefcase,لايک apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ارزښت نه شي بدل شي {0} @@ -3302,6 +3417,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,چاپ شکل apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,د ټریګل لید لید apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,راتلونکي ریکارډ ته لاړشئ +DocType: System Settings,Time Format,د وخت بmatه apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,باطلې پیسو ورننوتلو باورلیک ومانه DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,دا د ټایپ فايل دی چې یوازې د قطارونو سره پیدا کیږي ځینې تېروتنه لري. تاسو باید دا دوتنه د اصلاح او واردولو لپاره وکاروي. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,په سند ډولونه او رولونه د ټولګې حلال @@ -3344,12 +3460,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Reply apps/frappe/frappe/config/core.py,Pages in Desk (place holders),په ميشتو د پاڼو (ځای لرونکو) DocType: DocField,Collapsible Depends On,پرېوتونکې پورې تړلی دی د DocType: Print Style,Print Style Name,د چاپ ډول نوم +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,ګروپ په ساحه کې د ډشبورډ چارټ رامینځته کولو لپاره اړین دی DocType: Print Settings,Allow page break inside tables,مخ جدولونو په دننه کې د وقفې اجازه DocType: Email Account,SMTP Server,SMTP سرور DocType: Print Format,Print Format Help,چاپ شکل مرسته apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} خونه باید نږدې یو کارن ولري. DocType: DocType,Beta,بيتا DocType: Dashboard Chart,Count,شمېرل +DocType: Dashboard Chart,Group By Type,ډله په ډول apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},بېرته {0} په توګه {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",که تاسو د تازه کوي، لطفا غوره "ځاېناستول" بل موجوده قطارونه به ړنګ نه شي. DocType: DocField,Translatable,ژباړه @@ -3359,8 +3477,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,کارن DocType: Web Form,Web Form,ويب فورمه apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},نېټه {0} باید په بڼه کې وي: {1} DocType: About Us Settings,Org History Heading,دپوهنتون تاریخ مدعي دی +DocType: Scheduled Job Type,Scheduled Job Type,د مهالویش ډول ډول DocType: Print Settings,Allow Print for Cancelled,چاپ اجازه لپاره ردشوي DocType: Communication,Integrations can use this field to set email delivery status,مربوط کولای شي دې برخه کې وکاروي ایمیل وړاندې کولو حالت ټاکل +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,تاسو د ټولو تړل شوي سندونو لغوه کولو اجازه نلرئ. DocType: Web Form,Web Page Link Text,ګورت پاڼه لینک متن DocType: Page,System Page,سیستم پاڼه DocType: Page,System Page,سیستم پاڼه @@ -3368,6 +3488,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},د <b>{0}</b> صادر ته خپلخوښی: <br> {1} DocType: Website Settings,Include Search in Top Bar,په غوره مدافع وکیالنو د لټون شامل دي +DocType: Scheduled Job Type,Daily Long,ورځنۍ اوږده DocType: GSuite Settings,Allow GSuite access,GSuite د لاسرسي اجازه DocType: DocType,DESC,نزولی DocType: DocType,Naming,نوم @@ -3457,6 +3578,7 @@ DocType: Notification,Send days before or after the reference date,ورځې مخ DocType: User,Allow user to login only after this hour (0-24),اجازه د کارونکي يوازې وروسته له دې ساعت login (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",یو په یو ترتیب ، تسلسل کړئ DocType: Integration Request,Subscription Notification,د ګډون سپارل +DocType: Customize Form Field, Allow in Quick Entry ,په ګړندي ننوتلو کې اجازه ورکړئ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,یا ضمیمه کړئ a DocType: Auto Repeat,Start Date,پیل نېټه apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,ارزښت @@ -3471,6 +3593,7 @@ DocType: Google Drive,Backup Folder ID,د بیک اپ فولډر ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,نه په پراختیا د په اکر کې! جوړ په site_config.json یا د 'ګمرک' DocType کړي. DocType: Workflow State,globe,نړۍ DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ویډیو DocType: Assignment Rule,Priority,د لومړیتوب DocType: Email Queue,Unsubscribe Param,د ګډون د Param DocType: DocType,Hide Sidebar and Menu,سائډبار او مینو پټول @@ -3482,6 +3605,7 @@ DocType: DocType,Allow Import (via Data Import Tool),اجازه وارداتو ( apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,SR DocType: DocField,Float,ثاب DocType: Print Settings,Page Settings,د پاڼې ترتیبات +DocType: Notification Settings,Notification Settings,د خبرتیا امستنې apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,خوندي ساتل ... apps/frappe/frappe/www/update-password.html,Invalid Password,بې اعتباره پټنوم apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,په بریالیتوب سره د {1} څخه {0} ریکارډ وارد شو. @@ -3497,6 +3621,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,د Gmail DocType: Letter Head,Letter Head Image,د خط سر انځور DocType: Address,Party GSTIN,ګوند GSTIN +DocType: Scheduled Job Type,Cron Format,د کرون شکل apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} راپور DocType: SMS Settings,Use POST,پوسټ څخه کار واخلئ DocType: Communication,SMS,پیغامونه @@ -3541,18 +3666,20 @@ DocType: Workflow,Allow approval for creator of the document,د سند د پید apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,راپور خوندي کړئ DocType: Webhook,on_cancel,په DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,د پالنګر عمل apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,د مدیر رسی {0} د {1} IP پته له لارې د {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,اصلي ساحه باید یو معتبر نوم وي apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,د ګډون تمدید په وخت کې ناکام شو DocType: LDAP Settings,LDAP Group Field,د LDAP ګروپ ډګر +DocType: Notification Subscribed Document,Notification Subscribed Document,د خبرتیا ګډون شوی سند apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,مساوی apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,باطلې CSV شکل -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","د QZ ټری کاریال سره په پیوستولو کې تېروتنه ... <br><br> تاسو اړتیا لرئ د QZ ټری غوښتنلیک نصب او چلئ ، د خامو چاپ ب featureه کارولو لپاره. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">د QZ ټری ډاونلوډ او نصبولو لپاره دلته کلیک وکړئ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">د را چاپولو په اړه د نورو معلوماتو لپاره دلته کلیک وکړئ</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,د ټاکلو په موخه د Backups شمېر DocType: DocField,Do not allow user to change after set the first time,مه د لومړي ځل اجازه نه ورکوي د کارونکي بدلون وروسته رامنځته شوی apps/frappe/frappe/utils/data.py,1 year ago,1 کال وړاندې د +DocType: DocType,Links Section,د لینکونو برخه apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",د ټولو چاپ ، ډاونلوډ او صادراتو پیښو لاګ وګورئ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 مياشت DocType: Contact,Contact,تماس @@ -3583,11 +3710,12 @@ DocType: Dropbox Settings,Dropbox Settings,Dropbox امستنې DocType: About Us Settings,More content for the bottom of the page.,د پاڼې په پای کې نور محتوا. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,دا لاسوند بېرته وګرځول شو apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,د ګوګل ډرایو بیک اپ بریالی. +DocType: Webhook,Naming Series,نوم لړۍ DocType: Workflow,DocType on which this Workflow is applicable.,DocType چې دغه ننګولې ده د تطبيق وړ. DocType: User,Enabled,وتوانول شوه apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,د غونډال بشپړولو کې ناکام شو apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},نوی {0}: {1} -DocType: Tag Category,Category Name,کټه ګورۍ نوم +DocType: Blog Category,Category Name,کټه ګورۍ نوم apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,مور او پلار اړین دی چې د ماشوم میز ډاټا ترلاسه کړي apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,د وارداتو پېرودونکي DocType: Print Settings,PDF Settings,د PDF امستنې @@ -3623,6 +3751,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,جنتري apps/frappe/frappe/client.py,No document found for given filters,هیڅ سند موندل لپاره ورکړل چاڼګرونه apps/frappe/frappe/config/website.py,A user who posts blogs.,یو کارن چې بلاګونه پوسټ کوي. +DocType: DocType Action,DocType Action,د ډیک ټایپ عمل apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",بل {0} سره نوم {1} موجود دی، بل نوم غوره DocType: DocType,Custom?,د ګمرکونو؟ DocType: Website Settings,Website Theme Image,وېب پاڼه موضوع د انځور @@ -3632,6 +3761,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},د پور apps/frappe/frappe/config/integrations.py,Backup,شاتړ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,د ډشبورډ چارټ جوړولو لپاره د سند ډول اړین دی DocType: DocField,Read Only,صرف د لوست وړ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,د ریزر پای امر نه شو جوړولی apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,نوي خبر پاڼه DocType: Energy Point Log,Energy Point Log,د بریښنا نښې لوښه DocType: Print Settings,Send Print as PDF,چاپ PDF په وليږئ @@ -3657,16 +3787,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ت apps/frappe/frappe/www/login.html,Or login with,او یا د login DocType: Error Snapshot,Locals,ځايي خلک apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},افهام له لارې د {0} د {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} په نظر ذکر تاسو د {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ګروپ وټاکئ د ... لخوا apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,د بيلګې په توګه / 4 (+ 434 55) یا = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ته اړتيا ده DocType: Integration Request,Integration Type,ادغام ډول DocType: Newsletter,Send Attachements,Attachements وليږئ +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,فلټر ونه موندل شو apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,د ګوګل اړیکو ادغام. DocType: Transaction Log,Transaction Log,د راکړې ورکړې نښه apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),ارقام د تیرې میاشتې د کړنو پراساس (له {0} څخه تر {1} پورې) DocType: Contact Us Settings,City,ښار +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,د ټولو کارونکو لپاره کارتونه پټول apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,د دودیز ډول {0} لپاره په دودیز فارم کې د آټو تکرار اجازه ورکړئ DocType: DocField,Perm Level,Perm د ليول apps/frappe/frappe/www/confirm_workflow_action.html,View document,سند وګورئ @@ -3678,6 +3809,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'په Global د لټون لپاره ډول نه اجازه {0} په قطار {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'په Global د لټون لپاره ډول نه اجازه {0} په قطار {1} DocType: Energy Point Log,Appreciation,قدرداني +DocType: Dashboard Chart,Number of Groups,د ډلو شمېر apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,محتویات بشپړفهرست DocType: Workflow,Don't Override Status,مه حالت نه واوړې apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,د لټون شرايط @@ -3710,6 +3842,7 @@ DocType: Print Settings,Print with letterhead,سره د ليک دچاپ apps/frappe/frappe/public/js/frappe/file_uploader/WebLink.vue,Attach a web link,ویب لینک ضمیمه کړئ DocType: Unhandled Email,Raw Email,خام ليک apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select records for assignment,د دنده انتخاب سوابق +apps/frappe/frappe/www/printview.py,{0} is not a raw printing format.,{0} د چاپ کولو ب rawه نده. DocType: ToDo,Assigned By,ګمارل شوي By apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,You can use Customize Form to set levels on fields.,تاسو کولای دتنظيمولو په فورمه کې کاروي ترڅو کروندو په کچه ټاکل. DocType: Dashboard Chart Source,Timeseries,د وخت لړۍ @@ -3718,7 +3851,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn - شمال لویدیز -1 DocType: Dropbox Settings,Limit Number of DB Backups,د DB بیک اپونو محدودیت DocType: Custom DocPerm,Level,د ليول -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,وروستی 30 ورځې DocType: Custom DocPerm,Report,راپور apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,اندازه بايد په پرتله 0 ډيره وي. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,د QZ ټرې سره وصل شو! @@ -3735,6 +3867,7 @@ DocType: S3 Backup Settings,us-west-2,us-West-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,د ماشوم جدول غوره کړئ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,لومړنی عمل پیل کړئ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,د بدلون +DocType: Social Login Key,User ID Property,د کارونکي پېژند ID ملکیت DocType: Email Domain,domain name,ډومېن نوم DocType: Contact Email,Contact Email,تماس دبرېښنا ليک DocType: Kanban Board Column,Order,نظم @@ -3757,7 +3890,7 @@ DocType: Contact,Last Name,کورنۍ نوم DocType: Event,Private,د خصوصي apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,د نن نه خبرتياوي DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),د PDF په وليږئ بريښناليک چاپ ضم (وړانديز) -DocType: Web Page,Left,کيڼ +DocType: Onboarding Slide Field,Left,کيڼ DocType: Event,All Day,ټوله ورځ apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ښکاري چې څه غلط سره د دې ځای د پیسو ليدونکی سازونې ده. نه ورکړې شوی دی. DocType: GCalendar Settings,State,د بهرنیو چارو @@ -3788,7 +3921,6 @@ DocType: Workflow State,User,کارن DocType: Website Settings,"Show title in browser window as ""Prefix - title""",خپرونه د سرليک په لټونګر په توګه کړکۍ »مختاړی - لقب" DocType: Payment Gateway,Gateway Settings,د ګيټ و سیسټمونه apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,د متن په لاسوند ډول -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,چلول ازموینې apps/frappe/frappe/handler.py,Logged Out,غونډال کې له جملې څخه apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,نور ... DocType: System Settings,User can login using Email id or Mobile number,کارن کولای بريښناليک ID یا د موبايل په شمېر په کارولو سئ @@ -3805,6 +3937,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,لنډیز DocType: Event,Event Participants,د غونډې ګډون کوونکي DocType: Auto Repeat,Frequency,د فریکونسۍ +DocType: Onboarding Slide,Slide Order,سلایډ آرډر DocType: Custom Field,Insert After,وروسته ورننويستل DocType: Event,Sync with Google Calendar,د ګوګل کیلنڈر سره همغږي DocType: Access Log,Report Name,راپور نوم @@ -3832,6 +3965,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},د ډول د اسعارو Max سور دی 100px په قطار {0} apps/frappe/frappe/config/website.py,Content web page.,منځپانګه ګورت پاڼه د. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,یو نوی رول ورزیات کړئ +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ویب پا Visitه وګورئ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,نوې دنده DocType: Google Contacts,Last Sync On,وروستنۍ هممهال DocType: Deleted Document,Deleted Document,ړنګ سند apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! کومه تیروتنه وشوه @@ -3842,7 +3977,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,منظره apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,په Javascript د مراجع لوري سکرېپټ د پراخونې DocType: Webhook,on_trash,په apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,د لاندې عقایدو لپاره ریکارډونه به فلټر شي -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,مهالویش غیر فعال +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,مهالویش غیر فعال DocType: Blog Settings,Blog Introduction,Blog پېژندنه DocType: Global Search Settings,Search Priorities,لومړیتوبونه وپلټئ DocType: Address,Office,دفتر @@ -3852,13 +3987,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,د ډشبورډ چارت لی DocType: User,Email Settings,Email امستنې apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,دلته غورځول DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",که چیرې فعال شوي ، کارنان کولی شي د دوه فکتور استنال په کارولو سره د هرډول IP پتې څخه ننوځي ، دا د سیسټم ترتیباتو کې ټولو کارونکو لپاره هم تنظیم کیدی شي -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,د چاپګر امستنې ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,لطفا د دوام رمز مو وليکئ apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,لطفا د دوام رمز مو وليکئ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,زه apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} نه یو باوري د بهرنیو چارو apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,د اسنادو ټولو ډولونو باندې تطبیق کړئ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,د انرژي ټکي تازه +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,د انرژي ټکي تازه +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),یوازې ورځنۍ دندې پرمخ وړئ که چیرې د ورځو لپاره غیر فعال وي apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',لطفا بل طریقه ټاکي. وی.دا په اسعارو د راکړې ورکړې ملاتړ نه کوي '{0}' DocType: Chat Message,Room Type,د خونې ډول DocType: Data Import Beta,Import Log Preview,د خبرونې مخکتنه وارد کړئ @@ -3867,6 +4002,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,سمه ده-کړۍ DocType: LDAP Settings,LDAP User Creation and Mapping,د LDAP کارن جوړول او نقشه کول apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',تاسو کولای شيان له خوا غوښتنه په مشتريان نارنج پیدا 'پیدا +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,د نن ورځې پیښې apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,اوبخښه! کارن بايد د خپل ریکارډ بشپړ لاسرسی ولري. ,Usage Info,د استفادی پيژندنه apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,د کی بورډ شارټ کټونه وښیه @@ -3883,6 +4019,7 @@ DocType: DocField,Unique,بې سارې apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} په {1} تعریف شوی apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,جزایی بریالیتوب DocType: Email Account,Service,خدمت +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,جوړول> کارن DocType: File,File Name,د دوسیې نوم apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),نه پیدا {0} د {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ریس: {0} @@ -3896,6 +4033,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,بشپړ DocType: GCalendar Settings,Enable,په توانول DocType: Google Maps Settings,Home Address,کور پته apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),تاسو يوازې په يو ترمړوندونو 5000 اسنادو له سختولو. (ښايي په ځینو مواردو کې کمه وي) +DocType: Report,"output in the form of `data = [columns, result]`",محصول د `ډیټا = [کالمونو ، پایله] of په ب`ه apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,د پلي کیدو وړ سند ډولونه apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,د کارونکي مقرراتو لپاره مقررات تنظیم کړئ. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},لپاره ناکافي د اجازې د {0} @@ -3912,7 +4050,6 @@ DocType: Communication,To and CC,او د CC DocType: SMS Settings,Static Parameters,Static Parameters DocType: Chat Message,Room,کوټه apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},تازه د {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,د شالید دندې روانې ندي. مهرباني وکړئ له مدیر سره اړیکه ونیسئ DocType: Portal Settings,Custom Menu Items,د ګمرکونو Menu سامان apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ټولې ویب پاڼې چې د ویب پاڼې سلائیډ شو سره تړلې وي باید عامه وي DocType: Workflow State,chevron-right,chevron-حق @@ -3925,11 +4062,13 @@ DocType: Website Settings,Brand HTML,دتوليد HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,بیک اپ واخلئ DocType: DocType,Allow Auto Repeat,د بیا تکرار اجازه ورکړه apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,د ښودلو لپاره هیڅ ارزښت نشته +DocType: DocType,URL for documentation or help,د لاسوندونو یا مرستې لپاره URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,د برېښلیک ایمیل apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,په بریالیتوب سره د {0} ریکارډ تازه شو. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},کارن {0} د سند {1} لپاره د نقش اجازه لیک له لارې ډاټا ډول لاسرسی نلري apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,د ننوتو دواړه او پټنوم اړتیا +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,پرېږده \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,لطفا تازه د وروستیو سند تر لاسه کړي. DocType: User,Security Settings,امنیت امستنې apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Add کالم @@ -3938,6 +4077,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},د صادراتو د راپور: {0} DocType: Auto Email Report,Filter Meta,چاڼ ميتاکارډونه DocType: Web Page,Set Meta Tags,میټا ټاګونه تنظیم کړئ +DocType: Email Account,Use SSL for Outgoing,د وتلو لپاره ایس ایس ایل وکاروئ 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: S3 Backup Settings,Backup Limit,د بیک اپ محدودیت DocType: Dashboard Chart,Line,کرښه @@ -3970,4 +4110,3 @@ DocType: DocField,Ignore User Permissions,کارن حلال پامه apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,په بریالیتوب خوندي شو apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,لورينه وکړئ خپل د پازوال نه غوښتنه وکړۍ چې ستاسو د راجستر د تایید کړي DocType: Domain Settings,Active Domains,د فعالو ډومېن -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,انکړپټه ښودل ننوتنه diff --git a/frappe/translations/pt.csv b/frappe/translations/pt.csv index b5af90c7f2..db07bfab0c 100644 --- a/frappe/translations/pt.csv +++ b/frappe/translations/pt.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Por favor seleccione um campo Montante. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Carregando arquivo de importação ... DocType: Assignment Rule,Last User,Último usuário -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","{1}. {2} atribui-lhe uma nova tarefa, {0}." apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Padrões de sessão salvos apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Recarregar arquivo DocType: Email Queue,Email Queue records.,Registos de Fila Email . @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,Organograma {0} DocType: User,User Emails,E-mails de utilizadores DocType: User,Username,Nome do utilizador apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Criar log apps/frappe/frappe/model/base_document.py,Value too big,Valor muito grande DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Execute teste de script @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Mensal DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Ativar Receber apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Perigo -DocType: Address,Email Address,Endereço De Email +apps/frappe/frappe/www/login.py,Email Address,Endereço De Email DocType: Workflow State,th-large,ª-grande DocType: Communication,Unread Notification Sent,Notificação não lida Enviados apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Não é permitido efetuar a exportação. Necessita ter a função {0} para poder efetuar a exportação. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Canc DocType: DocType,Is Published Field,É Publicado campo DocType: GCalendar Settings,GCalendar Settings,Configurações do GCalendar DocType: Email Group,Email Group,Grupo de Email +apps/frappe/frappe/__init__.py,Only for {},Apenas para {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Não foi possível excluir o Evento {0} do Google Agenda, código de erro {1}." DocType: Event,Pulled from Google Calendar,Extraído do Google Agenda DocType: Note,Seen By,Visto por apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Adicionar Múltiplos -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Você ganhou alguns pontos de energia apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Não é uma imagem de usuário válida. DocType: Energy Point Log,Reverted,Revertido DocType: Success Action,First Success Message,Primeira mensagem de sucesso @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Não Gostar apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valor incorreto: {0} deve ser {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (ocultar, só de leitur , permissão etc )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apreciar +DocType: Notification Settings,Document Share,Partilha de Documentos DocType: Workflow State,lock,bloquear apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Configurações para página Fale conosco. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrador com Sessão Iniciada @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Se ativado, o documento é marcado como visto, a primeira vez que um usuário o abre" DocType: Auto Repeat,Repeat on Day,Repita no dia DocType: DocField,Color,Cor +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Marcar tudo como lido DocType: Data Migration Run,Log,Registo DocType: Workflow State,indent-right,travessão-direito DocType: Has Role,Has Role,tem Papel @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostrar Traceback DocType: DocType,Default Print Format,Formato de Impressão Padrão DocType: Workflow State,Tags,Tag +DocType: Onboarding Slide,Slide Type,Tipo de slide apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nenhum: Fim do Fluxo de Trabalho apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","O campo {0} não pode ser definido como único em {1}, pois existem valores não exclusivos" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipos de Documento @@ -136,7 +139,6 @@ DocType: Language,Guest,Convidado DocType: DocType,Title Field,campo Título DocType: Error Log,Error Log,Log de erro apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL inválida -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Últimos 7 dias apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Repetições como ""abcabcabc"" são somente um pouco mais difícil de adivinhar que ""abc""" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Se acha que isto não foi autorizado, por favor altere a senha de Administrador." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Cliente apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Selecione a coluna apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Este formulário foi modificado depois de ter carregado ele DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Registro de Notificação 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,In apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Enviar DocType: Workflow Action Master,Workflow Action Name,Nome da ação de fluxo de trabalho apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,O DocType não pode ser unido -DocType: Web Form Field,Fieldtype,Tipo de Campo +DocType: Onboarding Slide Field,Fieldtype,Tipo de Campo apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Não é um arquivo zip DocType: Global Search DocType,Global Search DocType,DocType de pesquisa global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Email Enviado? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Tabela de alternância apps/frappe/frappe/desk/form/save.py,Did not cancel,Não cancelou DocType: Social Login Key,Client Information,Informação ao cliente +DocType: Energy Point Rule,Apply this rule only once per document,Aplique esta regra apenas uma vez por documento DocType: Workflow State,plus,mais +DocType: DocField,Read Only Depends On,Somente leitura depende apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Conectado como Convidado ou Administrador DocType: Email Account,UNSEEN,Por Ler apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Gestor de Ficheiros @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Motivo 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Nenhuma atividade +DocType: Server Script,Script Manager,Gerenciador de scripts +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nenhuma atividade apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplicativos de terceiros apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Hoje não há eventos apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Você não pode dar pontos de avaliação para si mesmo apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType deve ser enviado para o Evento de Doc selecionado DocType: Workflow State,circle-arrow-up,círculo de seta para cima @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Não permitido para {0}: {1}. Campo restrito: {2} 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,You are not allowed to delete a standard Website Theme,Você não tem permissão para excluir um site Tema padrão +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Crie seu primeiro {0} DocType: Data Import,Log Details,Detalhes do registro DocType: Workflow Transition,Example,Exemplo DocType: Webhook Header,Webhook Header,Cabeçalho Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Fundo de bate-papo apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marcar como Lido apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Atualizando {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Um slide integrado <b>{0}</b> com a mesma ordem de slide já existe apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Desativar Relatório DocType: Translation,Contributed Translation Doctype Name,Nome do Documento de Tradução Contribuído +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar formulário DocType: PayPal Settings,Redirect To,redirecionar para DocType: Data Migration Mapping,Pull,Puxar DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},"Formato JavaScript: @@ -267,6 +277,7 @@ DocType: DocShare,Internal record of document shares,Registo interno de ações DocType: Energy Point Settings,Review Levels,Revisar Níveis DocType: Workflow State,Comment,Comentário DocType: Data Migration Plan,Postprocess Method,Método de pós-processamento +DocType: DocType Action,Action Type,Tipo de acão apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Tirar fotos DocType: Assignment Rule,Round Robin,Robin Redondo apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Você pode alterar documentos apresentados por cancelá-los e , em seguida , altera-los." @@ -280,6 +291,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salvar como DocType: Comment,Seen,Visto apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Mostrar mais detalhes +DocType: Server Script,Before Submit,Antes de enviar 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,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,Archive,Arquivo @@ -292,10 +304,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Tecla de Acesso à Dropbox apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Nome de campo errado <b>{0}</b> na configuração add_fetch do script personalizado apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Selecione Contatos do Google aos quais o contato deve ser sincronizado. DocType: Web Page,Main Section (HTML),Seção Principal (HTML) +DocType: Scheduled Job Type,Annual,Anual DocType: Workflow State,headphones,auscultadores apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Senha é necessária ou selecione Aguardando senha DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ex: respostas@suaempresa.com. Todas as respostas virão a esta caixa de entrada. DocType: Slack Webhook URL,Slack Webhook URL,URL do Webhook da folga +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Determina a ordem do slide no assistente. Se o slide não for exibido, a prioridade deve ser definida como 0." DocType: Data Migration Run,Current Mapping,Mapeamento atual apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,E-mail e nome válidos necessários apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Tornar todos os anexos privados @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Regras de transição apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Mostrando apenas as primeiras {0} linhas na visualização apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemplo: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Restrições DocType: Workflow,Defines workflow states and rules for a document.,Define o status do fluxo de trabalho e as regras para um documento. DocType: Workflow State,Filter,Filtro apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Verifique o log de erros para mais informações: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Trabalho apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} desconectado: {1} DocType: Address,West Bengal,Bengala Ocidental +DocType: Onboarding Slide,Information,Em formação apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível Atribuir o Envio se não poder ser Enviado DocType: Transaction Log,Row Index,Índice de linhas DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,botão Ajuda DocType: Kanban Board Column,purple,roxa DocType: About Us Settings,Team Members,Membros da Equipe +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Executará trabalhos agendados apenas uma vez por dia para sites inativos. O padrão é 4 dias, se definido como 0." DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Trabalho agendado DocType: Custom DocPerm,Permissions,Permissões apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Webhooks frouxos para integração interna DocType: Dropbox Settings,Allow Dropbox Access,Permitir à Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scan DocType: Email Flag Queue,Email Flag Queue,Bandeira Queue Email DocType: Access Log,Columns / Fields,Colunas / Campos apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Folhas de estilos para formatos de impressão +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,O campo Função Agregada é necessário para criar um gráfico de painel apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Não é possível identificar {0} aberto/a. Experimente algo diferente. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Sua informação foi enviada apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,O utilizador {0} não pode ser excluído @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Nome do Campo DocType: Assignment Rule,Assign To Users,Atribuir aos usuários apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ou apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nome do módulo... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continuar +DocType: Onboarding Slide,Continue,Continuar apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,A integração do Google está desativada. DocType: Custom Field,Fieldname,Nome de Campo DocType: Workflow State,certificate,certificado apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verificando ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Sua tarefa em {0} {1} foi removida apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,A primeira coluna de dados deve estar em branco. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Mostrar todas as versões apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Ver comentário @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Restringir IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,painel de controle apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Não é possível enviar e-mails a esta hora apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Não foi possível atualizar o Evento {0} no Google Agenda, código de erro {1}." +DocType: Notification Log,Email Content,Conteúdo de E-mail apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Pesquisar ou digite um comando DocType: Activity Log,Timeline Name,Nome Timeline apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Somente um {0} pode ser definido como primário. DocType: Email Account,e.g. smtp.gmail.com,ex: smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Adicionar uma Nova Regra DocType: Contact,Sales Master Manager,Gestor de Vendas Master +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Você precisa habilitar o JavaScript para que seu aplicativo funcione. DocType: User Permission,For Value,Por valor DocType: Event,Google Calendar ID,ID do calendário do Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Um Último Passo @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Campo de nome do meio LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importando {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Permitir acesso ao GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} é um campo obrigatório +DocType: DocType,Documentation Link,Link da documentação apps/frappe/frappe/templates/includes/login/login.js,Login token required,É necessário o token de login apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Classificação Mensal: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selecione vários itens da lista @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL do Ficheiro DocType: Version,Table HTML,Tabela HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Adicionar Assinantes +DocType: Notification Log,Energy Point,Ponto de energia apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Próximos Eventos para Hoje DocType: Google Calendar,Push to Google Calendar,Enviar para o Google Agenda DocType: Notification Recipient,Email By Document Field,Email por Campo de Documento @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Longe DocType: Currency,Fraction Units,Unidades de Fração apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} a partir de {1} a {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marque como feito DocType: Chat Message,Type,Tipo DocType: Google Settings,OAuth Client ID,ID do cliente OAuth DocType: Auto Repeat,Subject,Assunto apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,De volta à mesa DocType: Web Form,Amount Based On Field,Montante baseado em campo +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} não possui versões controladas. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,"Por favor, verifique seu e-mail para verificação" apps/frappe/frappe/core/doctype/doctype/doctype.py,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 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,do DocType: Deleted Document,Deleted Name,Nome eliminado apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Utilizadores Sistema e Website DocType: Workflow Document State,Doc Status,Status do Doc @@ -526,6 +551,7 @@ DocType: Language,Language Code,Código de Idioma DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Nota: Por padrão, os e-mails para backups com falha são enviados." apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Adicionar Filtro apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS enviado a seguintes números: {0} +DocType: Notification Settings,Assignments,atribuições apps/frappe/frappe/utils/data.py,{0} and {1},{0} e {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Comece uma conversa. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sempre adicionar "Rascunho" Direcção para projectos de impressão de documentos @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,Início do mapeamento atual apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,O email foi marcado como spam DocType: Comment,Website Manager,Site Gerente apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Carregamento de arquivos desconectado. Por favor, tente novamente." +DocType: Data Import Beta,Show Failed Logs,Mostrar logs com falha apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Traduções apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Você selecionou documentos preliminares ou cancelados apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},O documento {0} foi definido para declarar {1} por {2} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Documento em Fila de Espera DocType: GSuite Templates,Destination ID,ID do destino DocType: Desktop Icon,List,Lista DocType: Activity Log,Link Name,Nome do Link +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Você não tem \ DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa +DocType: Onboarding Slide,Onboarding Slide,Slide de integração apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Anterior @@ -602,6 +631,7 @@ DocType: Kanban Board Column,darkgrey,cinza escuro apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Bem-sucedida: {0} para {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Solta +DocType: Dashboard Chart,Aggregate Function Based On,Função agregada com base em apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Por favor, duplique isto para efetuar alterações" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Pressione Enter para salvar apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Geração de PDF falhou por causa de links de imagens quebradas @@ -615,7 +645,9 @@ DocType: Notification,Days Before,Dias Antes apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Os eventos diários devem terminar no mesmo dia. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Editar... DocType: Workflow State,volume-down,volume baixo +DocType: Onboarding Slide,Help Links,Links de Ajuda apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Acesso não permitido deste endereço IP +DocType: Notification Settings,Enable Email Notifications,Ativar notificações por email apps/frappe/frappe/desk/reportview.py,No Tags,não há tags DocType: Email Account,Send Notification to,Enviar Notificação de DocType: DocField,Collapsible,Comprimíveis @@ -644,6 +676,7 @@ DocType: Google Drive,Last Backup On,Último backup ativado DocType: Customize Form Field,Customize Form Field,Personalizar Campo de Formulário DocType: Energy Point Rule,For Document Event,Para evento de documento DocType: Website Settings,Chat Room Name,Nome da sala de bate-papo +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Inalterado DocType: OAuth Client,Grant Type,Tipo Grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Confira que documentos podem ser lidos por um Utilizador DocType: Deleted Document,Hub Sync ID,Identificação da Sincronização do Hub @@ -651,6 +684,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,usar DocType: Auto Repeat,Quarterly,Trimestral apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Tempo todo apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status ilegal do documento para {0} DocType: Email Account,Enable Auto Reply,Ativar Resposta Automática apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Não Visto @@ -663,6 +697,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Mensa DocType: Email Account,Notify if unreplied,Notificar se não for respondido apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Digitalize o Código QR e insira o código resultante exibido. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Ativar gradientes +DocType: Scheduled Job Type,Hourly Long,Por hora DocType: System Settings,Minimum Password Score,Minimum Password Score DocType: DocType,Fields,Campos DocType: System Settings,Your organization name and address for the email footer.,Seu nome da organização e endereço de e-mail para o rodapé. @@ -670,11 +705,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabela Prin apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup completo! apps/frappe/frappe/config/desktop.py,Developer,Desenvolvedor apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Criado +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Para habilitá-lo, siga as instruções no seguinte link: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} na linha {1} não pode ter ao mesmo tempo URL e subitens apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Deve haver pelo menos uma linha para as seguintes tabelas: {0} DocType: Print Format,Default Print Language,Idioma de impressão padrão apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Antepassados De apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,A fonte {0} não pode ser eliminada +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nenhum registro com falha apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Ainda não há comentários apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Configure o SMS antes de configurá-lo como um método de autenticação, por meio de Configurações de SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,É obrigatório ter o DocType e Nome @@ -698,6 +735,7 @@ DocType: Website Settings,Footer Items,Itens do Rodapé apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Valor Padrão DocType: Auto Repeat,Daily,Diário +DocType: Onboarding Slide,Max Count,Contagem máxima apps/frappe/frappe/config/users_and_permissions.py,User Roles,Funções do utilizador DocType: Property Setter,Property Setter overrides a standard DocType or Field property,O Fixador de Propriedade substitui um DocType padrão ou uma propriedade de Campo apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Não é Possivel Atualizar: Link Incorreto / Expirado. @@ -716,6 +754,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,Disco Rígido DocType: Integration Request,Host,Anfitrião DocType: Data Import Beta,Import File,Importar arquivo +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Erro de modelo apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Coluna <b>{0}</b> já existe. DocType: ToDo,High,Alto apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Novo evento @@ -731,6 +770,7 @@ DocType: Web Form Field,Show in filter,Mostrar no filtro DocType: Address,Daman and Diu,Daman e Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projeto DocType: Address,Personal,Pessoal +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Configurações de impressão bruta ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Consulte https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region para obter detalhes. apps/frappe/frappe/config/settings.py,Bulk Rename,Alterar Nome em Massa DocType: Email Queue,Show as cc,Mostrar como cc @@ -740,6 +780,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Tire Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informação introdutória para a página Fale Connosco DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,polegares para baixo +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Cancelando documentos DocType: User,Send Notifications for Email threads,Envie notificações para encadeamentos de e-mail apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Não Está no Modo de Desenvolvedor @@ -747,7 +788,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,O backup do DocType: DocField,In Global Search,Em Global Search DocType: System Settings,Brute Force Security,Segurança da força bruta DocType: Workflow State,indent-left,travessão-esquerdo -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"É arriscado eliminar este ficheiro: {0}. Por favor, contate o administrador do sistema." DocType: Currency,Currency Name,Nome da Moeda apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,não há e-mails @@ -762,10 +802,12 @@ DocType: Energy Point Rule,User Field,Campo do usuário DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Pressione Excluir apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} já foi cancelado por {1} {2} +DocType: Scheduled Job Type,Stopped,Parado apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Não removeu apps/frappe/frappe/desk/like.py,Liked,Curtido apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Enviar agora apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Permitir convidado DocType: Report,Query,Consulta DocType: Customize Form,Sort Order,Ordem de classificação apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'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} @@ -787,10 +829,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Método de autenticação de dois fatores apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"Primeiro, defina o nome e salve o registro." apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 registros +DocType: DocType Link,Link Fieldname,Nome do campo do link apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Compartilhado com {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Cancelar subscrição DocType: View Log,Reference Name,Nome de Referência apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Mudar usuário +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primeiro apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Atualizar Traduções DocType: Error Snapshot,Exception,Exceção DocType: Email Account,Use IMAP,Use IMAP @@ -804,6 +848,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,As regras que definem a transição de status do fluxo de trabalho. DocType: File,Folder,Pasta DocType: Website Route Meta,Website Route Meta,Rota do site Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Campo de slide integrado DocType: DocField,Index,Índice DocType: Email Group,Newsletter Manager,Gestor de Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opção 1 @@ -830,7 +875,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Def apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurar Gráficos DocType: User,Last IP,Último IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Por favor, adicione um assunto ao seu email" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Um novo documento {0} foi compartilhado com você {1}. DocType: Data Migration Connector,Data Migration Connector,Conector de migração de dados apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} revertido {1} DocType: Email Account,Track Email Status,Acompanhar status de e-mail @@ -883,6 +927,7 @@ DocType: Email Account,Default Outgoing,Saída Padrão DocType: Workflow State,play,reproduzir apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Clique no link abaixo para completar o seu registo e definir uma nova senha apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Não adicionou +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ganhou {1} pontos por {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Não há contas de email Assigned DocType: S3 Backup Settings,eu-west-2,eu-oeste-2 DocType: Contact Us Settings,Contact Us Settings,Definições de Contacte-nos @@ -891,6 +936,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Procurand DocType: Workflow State,text-width,texto de largura apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Foi atingido o Limite Máximo de Anexo para este registo. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Pesquisar por nome de arquivo ou extensão +DocType: Onboarding Slide,Slide Title,Título do slide DocType: Notification,View Properties (via Customize Form),Exibir propriedades (via Personalizar formulário) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Clique em um arquivo para selecioná-lo. DocType: Note Seen By,Note Seen By,Nota Visto por @@ -917,13 +963,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL de compartilhamento DocType: System Settings,Allow Consecutive Login Attempts ,Permitir tentativas de login consecutivas apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,"Ocorreu um erro durante o processo de pagamento. Por favor, entre em contato conosco." +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Se o Tipo de slide for Criar ou Configurações, deve haver um método 'create_onboarding_docs' no arquivo {ref_doctype} .py vinculado à execução após a conclusão do slide." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dias atrás DocType: Email Account,Awaiting Password,aguardando senha DocType: Address,Address Line 1,Endereço Linha 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Não Descendentes De DocType: Contact,Company Name,Nome da Empresa DocType: Custom DocPerm,Role,Função -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Configurações... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,para o seu navegador apps/frappe/frappe/utils/data.py,Cent,Cêntimo ,Recorder,Gravador @@ -983,6 +1029,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Acompanhe se o seu email foi aberto pelo destinatário. <br> Observação: se você estiver enviando para vários destinatários, mesmo que um destinatário leia o e-mail, ele será considerado "Aberto"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,São Necessários os Valores em Falta apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permitir acesso aos Contatos do Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Restrito DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Marcar como não lido DocType: Activity Log,Operation,Operação @@ -1035,6 +1082,7 @@ DocType: Web Form,Allow Print,permitir impressão DocType: Communication,Clicked,Clicado apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Deixar de seguir apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Sem permissão para '{0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de email padrão em Configuração> Email> Conta de email apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Programado para enviar DocType: DocType,Track Seen,Registar Visualizações DocType: Dropbox Settings,File Backup,Backup de arquivos @@ -1043,12 +1091,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Não foi enco apps/frappe/frappe/config/customization.py,Add custom forms.,Adicione formulários personalizados. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} em {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,apresentou este documento -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do Usuário apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,O sistema proporciona várias funções pré - definidas . Você pode adicionar novas funções para definir as permissões mais finos. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Nome do Disparador -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domínios +DocType: Onboarding Slide,Domains,Domínios DocType: Blog Category,Blog Category,Categoria de Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Não é possível efetuar um mapa porque há uma falha na seguinte condição: DocType: Role Permission for Page and Report,Roles HTML,HTML de Funções @@ -1089,7 +1136,6 @@ DocType: Assignment Rule Day,Saturday,Sábado DocType: User,Represents a User in the system.,Representa um Utilizador no sistema. DocType: List View Setting,Disable Auto Refresh,Desativar atualização automática DocType: Comment,Label,Rótulo -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","A tarefa {0}, que você atribuiu a {1}, foi fechada." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Por favor, feche esta janela" DocType: Print Format,Print Format Type,Tipo de Formato de Impressão DocType: Newsletter,A Lead with this Email Address should exist,A Lead com este endereço de email deve existir @@ -1106,6 +1152,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Configurações de SMTP apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,escolha um DocType: Data Export,Filter List,Lista de filtros DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Responder a Mensagem Automaticamente DocType: Data Migration Mapping,Condition,Condição apps/frappe/frappe/utils/data.py,{0} hours ago,{0} horas atrás @@ -1124,12 +1171,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Contributor DocType: Communication,Sent Read Receipt,Enviado o recibo de leitura DocType: Email Queue,Unsubscribe Method,Método unsubscribe +DocType: Onboarding Slide,Add More Button,Botão Adicionar mais DocType: GSuite Templates,Related DocType,DocType relacionado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Edite para adicionar conteúdo apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,selecionar idiomas apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detalhes do cartão apps/frappe/frappe/__init__.py,No permission for {0},Sem permissão para {0} DocType: DocType,Advanced,Avançado +DocType: Onboarding Slide,Slide Image Source,Fonte da imagem do slide apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referência: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Sra @@ -1146,6 +1195,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mestre DocType: DocType,User Cannot Create,Utilizador não pode criar apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Feito com sucesso apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Acesso Dropbox é aprovado! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Tem certeza de que deseja mesclar {0} com {1}? DocType: Customize Form,Enter Form Type,Insira o Tipo de Formulário DocType: Google Drive,Authorize Google Drive Access,Autorizar acesso ao Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parâmetro faltando Kanban Board Name @@ -1155,7 +1205,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",Está a permitir DocType. Tenha cuidado ! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formatos Personalizados para Impressão, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Soma de {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Atualizado para a versão nova DocType: Custom Field,Depends On,Depende De DocType: Kanban Board Column,Green,Verde DocType: Custom DocPerm,Additional Permissions,Permissões Adicionais @@ -1183,6 +1232,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Agenda - Não foi possível criar a Agenda para {0}, código de erro {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Linha de Edição DocType: Workflow Action Master,Workflow Action Master,Fluxo de Trabalho de Acção Mestre +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Excluir tudo DocType: Custom Field,Field Type,Tipo de campo apps/frappe/frappe/utils/data.py,only.,só. DocType: Route History,Route History,História da rota @@ -1219,11 +1269,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Esqueceu a Senha? DocType: System Settings,yyyy-mm-dd,aaaa-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,erro de servidor +DocType: Server Script,After Delete,Após Excluir apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Veja todos os relatórios anteriores. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,É necessário Colocar a ID de Início de Sessão DocType: Website Slideshow,Website Slideshow,Slideshow site apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Sem Dados DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","O link que é a página inicial do website. Os links padrão (índice, início de sessão, produtos , blog, sobre , contacto )" +DocType: Server Script,After Submit,Após o envio apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},A autenticação falhou ao receber emails da Conta de Email {0}. Mensagem do servidor: {1} DocType: User,Banner Image,Imagem de Banner DocType: Custom Field,Custom Field,Campo Personalizado @@ -1264,15 +1316,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Se o utilizador tiver alguma função selecionada, então o utilizador torna-se um ""Utilizador do Sistema"". Um ""Utilizador do Sistema"" tem acesso à área de trabalho" DocType: System Settings,Date and Number Format,Data e Formato de Número apps/frappe/frappe/model/document.py,one of,um dos -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar formulário apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Verificando um momento apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Mostrar as tags DocType: DocField,HTML Editor,Editor de HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário +DocType: DocType,Actions,Ações DocType: Workflow State,align-justify,alinhar justificado DocType: User,Middle Name (Optional),Nome do Meio (Opcional) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Não Permitido @@ -1287,6 +1337,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Sem Resulta DocType: System Settings,Security,segurança apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Programado para enviar para {0} destinatários apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cortar +DocType: Server Script,After Save,Após salvar apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},renomeado de {0} para {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} de {1} ({2} linhas com crianças) DocType: Currency,**Currency** Master,Definidor de **Moeda** @@ -1313,16 +1364,19 @@ DocType: Prepared Report,Filter Values,Valores de filtro DocType: Communication,User Tags,Etiquetas de utilizador DocType: Data Migration Run,Fail,Falhou DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Última Execução DocType: Data Migration Run,Pull Failed,Puxar falhou apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Mostrar / ocultar cartões DocType: Communication,Feedback Request,feedback Request apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importar dados de arquivos CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Seguintes campos estão faltando: +DocType: Notification Log,From User,Do usuário apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Cancelando {0} DocType: Web Page,Main Section,Seção Principal DocType: Page,Icon,Ícone apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Dica: Inclua símbolos, números e letras maiúsculas na senha" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Dica: Inclua símbolos, números e letras maiúsculas na senha" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configure notificações para menções, atribuições, pontos de energia e muito mais." DocType: DocField,Allow in Quick Entry,Permitir na entrada rápida apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/aaaa @@ -1354,7 +1408,6 @@ DocType: Website Theme,Theme URL,URL do tema DocType: Customize Form,Sort Field,Ordenar campo DocType: Razorpay Settings,Razorpay Settings,Configurações Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Editar Filtro -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Adicione mais DocType: System Settings,Session Expiry Mobile,Sessão de validade Móvel apps/frappe/frappe/utils/password.py,Incorrect User or Password,Usuário ou Senha Incorreta apps/frappe/frappe/templates/includes/search_box.html,Search results for,Buscar resultados para @@ -1370,8 +1423,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Regra do ponto de energia DocType: Communication,Delayed,Atrasado apps/frappe/frappe/config/settings.py,List of backups available for download,Lista de backups disponíveis para download +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Experimente a nova importação de dados apps/frappe/frappe/www/login.html,Sign up,inscrever-se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Linha {0}: Não é permitido desativar Obrigatório para campos padrão +DocType: Webhook,Enable Security,Ativar segurança apps/frappe/frappe/config/customization.py,Dashboards,Dashboards DocType: Test Runner,Output,Saída DocType: Milestone,Track Field,Trilha de corrida @@ -1379,6 +1434,7 @@ DocType: Notification,Set Property After Alert,Definir propriedade após o alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Adicione campos aos formulários. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Parece que algo está errado com a configuração do Paypal deste site. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Adicione uma avaliação +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} atribuiu uma nova tarefa {1} {2} a você apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Tamanho da fonte (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Somente DocTypes padrão podem ser personalizados no Custom Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1390,8 +1446,10 @@ DocType: Portal Menu Item,Portal Menu Item,Item do Menu do Portal apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Definir filtros DocType: Contact Us Settings,Email ID,ID de Email DocType: Energy Point Rule,Multiplier Field,Campo Multiplicador +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Não foi possível criar o pedido Razorpay. Entre em contato com o administrador DocType: Dashboard Chart,Time Interval,Intervalo de tempo DocType: Activity Log,Keep track of all update feeds,Acompanhe todos os feeds de atualização +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} compartilhou um documento {1} {2} com você DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Uma lista de recursos que o aplicativo cliente terá acesso a depois que o usuário permita. <br> por exemplo, do projeto" DocType: Translation,Translated Text,Texto traduzido DocType: Contact Us Settings,Query Options,Opções de Consulta @@ -1410,6 +1468,7 @@ DocType: DefaultValue,Key,Tecla DocType: Address,Contacts,Contactos DocType: System Settings,Setup Complete,Instalação concluída apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Relatório de todas as partilhas de documentos +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","O modelo de importação deve ser do tipo .csv, .xlsx ou .xls" apps/frappe/frappe/www/update-password.html,New Password,Nova Senha apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Falta o filtro {0} apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Desculpa! Você não pode excluir comentários gerados automaticamente @@ -1426,6 +1485,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Corre DocType: Blog Post,Content (HTML),Conteúdo (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Configuração para DocType: Personal Data Download Request,User Name,Nome de usuário DocType: Workflow State,minus-sign,sinal-de-menos apps/frappe/frappe/public/js/frappe/request.js,Not Found,Não Encontrado @@ -1433,11 +1493,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Sem permissão {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportação permissões personalizadas apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nenhum item encontrado. DocType: Data Export,Fields Multicheck,Campos Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Completo DocType: Activity Log,Login,Iniciar Sessão DocType: Web Form,Payments,Pagamentos apps/frappe/frappe/www/qrcode.html,Hi {0},Oi {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integração com o Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} reverteu seus pontos em {1} {2} DocType: System Settings,Enable Scheduled Jobs,Ativar Trabalhos Agendados apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notas: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inativo @@ -1462,6 +1522,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modelo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Erro de permissão apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},O nome de {0} não pode ser {1} DocType: User Permission,Applicable For,Aplicável Para +DocType: Dashboard Chart,From Date,Data De apps/frappe/frappe/core/doctype/version/version_view.html,Success,Sucesso apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessão expirada apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessão expirada @@ -1474,7 +1535,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Não está permitido na condição DocType: Async Task,Async Task,Tarefa Assíncrona DocType: Workflow State,picture,imagem -apps/frappe/frappe/www/complete_signup.html,Complete,Concluído +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Concluído DocType: DocType,Image Field,Campo de Imagem DocType: Print Format,Custom HTML Help,Ajuda de HTML Personalizada DocType: LDAP Settings,Default Role on Creation,Função Padrão na Criação @@ -1482,6 +1543,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Próximo Status DocType: User,Block Modules,Bloquear Módulos DocType: Print Format,Custom CSS,CSS Personalizada +DocType: Energy Point Rule,Apply Only Once,Aplicar apenas uma vez apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Adicionar um comentário DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorados: {0} a {1} @@ -1493,6 +1555,7 @@ DocType: Email Account,Default Incoming,Entrada Padrão DocType: Workflow State,repeat,repetir DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},O valor deve ser um dos {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Cancelar todos os documentos 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Ir para a {0} lista apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ajuda na Pesquisa @@ -1501,6 +1564,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrado apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,A repetição automática para este documento foi desativada. DocType: DocType,Hide Copy,Ocultar Copiar apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Desselecionar todas as funções +DocType: Server Script,Before Save,Antes de salvar apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} deve ser exclusivo apps/frappe/frappe/model/base_document.py,Row,Linha apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC e modelo de e-mail" @@ -1511,7 +1575,6 @@ DocType: Chat Profile,Offline,Off-line apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} importado com sucesso DocType: User,API Key,Key API DocType: Email Account,Send unsubscribe message in email,Enviar mensagem de cancelamento de inscrição no e-mail -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Editar Título apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,O Nome de Campo em que estará o DocType para este campo de link. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documentos atribuídos a si por si próprio. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Você também pode copiar e colar @@ -1543,8 +1606,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Anexar Imagem DocType: Workflow State,list-alt,alt-lista apps/frappe/frappe/www/update-password.html,Password Updated,Senha Atualizada +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do Usuário apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Etapas para verificar seu login apps/frappe/frappe/utils/password.py,Password not found,Senha não encontrada +DocType: Webhook,Webhook Secret,Segredo do Webhook DocType: Data Migration Mapping,Page Length,Comprimento da página DocType: Email Queue,Expose Recipients,expor Destinatários apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,É obrigatório Anexar A para os emails recebidos @@ -1572,6 +1637,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Max tamanho do anexo (em MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ter uma conta? Entrar +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Configurações de impressão ... DocType: Workflow State,arrow-down,seta-para-baixo apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Linha {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},O Utilizador não tem permissão para remover {0}: {1} @@ -1593,6 +1659,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Insira a DocType: Dropbox Settings,Dropbox Access Secret,Segredo de Acesso à Dropbox DocType: Tag Link,Document Title,Título do documento apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obrigatório) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás DocType: Social Login Key,Social Login Provider,Provedor de acesso social apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Adicionar Outro Comentário apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nenhum dado encontrado no arquivo. Recoloque o novo arquivo com dados. @@ -1607,11 +1674,12 @@ DocType: Workflow State,hand-down,mão-para-baixo apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Nenhum campo encontrado que possa ser usado como uma coluna Kanban. Use o formulário Personalizar para adicionar um campo personalizado do tipo "Selecionar". DocType: Address,GST State,Estado GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Não é possível Cancelar sem Enviar +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Usuário ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redirecionamento Bound To Código Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Abra a Ajuda DocType: DocType,Is Submittable,É Enviável -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova menção +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nova menção apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nenhum novo Google Contacts sincronizado. DocType: File,Uploaded To Google Drive,Carregado no Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Valor para um campo de verificação pode ser 0 ou 1 @@ -1623,7 +1691,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Caixa de Entrada DocType: Kanban Board Column,Red,Vermelho DocType: Workflow State,Tag,Etiqueta -DocType: Custom Script,Script,Escrita +DocType: Report,Script,Escrita apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,O documento não pode ser salvo. DocType: Energy Point Rule,Maximum Points,Pontos Máximos apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Minhas Definições @@ -1653,9 +1721,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} pontos de apreciação para {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,As funções de utilizadores podem ser definidas na sua página de Utilizador. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Adicionar Comentário +DocType: Dashboard Chart,Select Date Range,Selecionar período DocType: DocField,Mandatory,Obrigatório apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Módulo para Exportar +DocType: Scheduled Job Type,Monthly Long,Mensalmente Longo apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Sem permissões básicas definidas +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Envie um email para {0} para vinculá-lo aqui apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Significado de Enviar, Cancelar, Alterar" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,para Fazer @@ -1664,7 +1735,6 @@ DocType: Milestone Tracker,Track milestones for any document,Acompanhe os marcos DocType: Social Login Key,Identity Details,Detalhes da identidade apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Transição do estado do fluxo de trabalho não permitida de {0} para {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostrar painel -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nova mensagem DocType: File,Preview HTML,Pré-visualizar HTML DocType: Desktop Icon,query-report,relatório-de-consulta DocType: Data Import Beta,Template Warnings,Avisos do modelo @@ -1675,18 +1745,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Ligado Com apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Editar configurações de relatório automático de e-mail DocType: Chat Room,Message Count,Contagem de mensagens DocType: Workflow State,book,livro +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} está vinculado aos seguintes documentos enviados: {2} DocType: Communication,Read by Recipient,Ler por destinatário DocType: Website Settings,Landing Page,Página de Destino apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Erro no script personalizado apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,Nome de {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Sem Permissões definidas para este critério. DocType: Auto Email Report,Auto Email Report,Relatório por Email Automático +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Novo documento compartilhado apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Deletar comentário? DocType: Address Template,This format is used if country specific format is not found,Este formato é utilizado no caso do formato específico do país não for encontrado DocType: System Settings,Allow Login using Mobile Number,Permitir login usando o número de celular apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Se ativado, os usuários que fizerem login a partir do Endereço IP restrito não serão solicitados para autenticação de dois fatores" +DocType: Server Script,After Cancel,Após Cancelar DocType: Auto Repeat,Get Contacts,Obter contatos apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posts arquivados em {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Ignorando coluna sem título @@ -1697,6 +1770,7 @@ 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 +DocType: Notification Log,Mention,Menção DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fontes apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,A precisão deve estar entre 1 e 6 @@ -1704,7 +1778,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,e apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Este relatório foi gerado em {0} DocType: Error Snapshot,Frames,Frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Atribuição +DocType: Notification Log,Assignment,Atribuição DocType: Notification,Slack Channel,Canal de folga DocType: About Us Team Member,Image Link,Link da Imagem DocType: Auto Email Report,Report Filters,Filtros de relatório @@ -1721,7 +1795,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Não é possível atualizar evento apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,O código de verificação foi enviado para o seu endereço de e-mail registrado. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Seu objetivo apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","O filtro deve ter 4 valores (doctype, fieldname, operador, valor): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nenhum nome especificado para {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Aplicar regra de atribuição apps/frappe/frappe/utils/bot.py,show,exposição apps/frappe/frappe/utils/data.py,Invalid field name {0},Nome do campo inválido {0} @@ -1731,7 +1807,6 @@ DocType: Workflow State,text-height,texto de altura DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapeamento do Plano de Migração de Dados apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Iniciando Frappé ... DocType: Web Form Field,Max Length,Comprimento máximo -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Para {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,marcador-de-mapa apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Enviar um Incidente @@ -1767,6 +1842,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Página em falta ou movida apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Rever DocType: DocType,Route,Rota apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,configurações de gateway de pagamento Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ganhou {1} ponto por {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Buscar imagens anexadas do documento DocType: Chat Room,Name,Nome DocType: Contact Us Settings,Skype,Skype @@ -1777,7 +1853,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Abrir Link apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Seu idioma DocType: Dashboard Chart,Average,Média apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Adicionar linha -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Impressora apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,A consulta deve ser SELECIONAR DocType: Auto Repeat,Completed,Concluído @@ -1837,6 +1912,7 @@ DocType: GCalendar Account,Next Sync Token,Próximo token de sincronização DocType: Energy Point Settings,Energy Point Settings,Configurações de ponto de energia DocType: Async Task,Succeeded,Sucedido apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Os campos obrigatórios exigidos em {0} +DocType: Onboarding Slide Field,Align,Alinhar apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Repor permissões para {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utilizadores e Permissões DocType: S3 Backup Settings,S3 Backup Settings,Configurações de backup S3 @@ -1853,7 +1929,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo nome do formato de impressão apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Clique no link abaixo para aprovar o pedido DocType: Workflow State,align-left,alinhar-à-esquerda +DocType: Onboarding Slide,Action Settings,Configurações de ação DocType: User,Defaults,Padrões +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10)." DocType: Energy Point Log,Revert Of,Reverter apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unir com existente DocType: User,Birth Date,Data de Nascimento @@ -1909,6 +1987,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Em DocType: Notification,Value Change,Valor Variação DocType: Google Contacts,Authorize Google Contacts Access,Autorizar o acesso dos Contatos do Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostrando apenas campos numéricos do relatório +apps/frappe/frappe/utils/data.py,1 week ago,1 semana atrás DocType: Data Import Beta,Import Type,Tipo de Importação DocType: Access Log,HTML Page,Página HTML DocType: Address,Subsidiary,Subsidiário @@ -1918,7 +1997,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Com timbrado apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Servidor ou Porta de Saída de Emails Inválidos DocType: Custom DocPerm,Write,Escrever -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Só o Administrador é que está autorizado a criar Consultas / Relatórios de Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualização DocType: Data Import Beta,Preview,Pré-visualização apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","O campo "valor" é obrigatória. Por favor, especifique o valor a ser atualizado" @@ -1928,6 +2006,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Convidar c DocType: Data Migration Run,Started,Começado apps/frappe/frappe/permissions.py,User {0} does not have access to this document,O usuário {0} não tem acesso a este documento DocType: Data Migration Run,End Time,Data de Término +DocType: Dashboard Chart,Group By Based On,Agrupar por Com base em apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selecione Anexos apps/frappe/frappe/model/naming.py, for {0},para {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Você não tem permissão para imprimir este documento @@ -1969,6 +2048,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verificar DocType: Workflow Document State,Update Field,Atualizar campo DocType: Chat Profile,Enable Chat,Ativar conversa DocType: LDAP Settings,Base Distinguished Name (DN),Base de dados de nome distinto (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Sair desta conversa apps/frappe/frappe/model/base_document.py,Options not set for link field {0},As opções não estão definida para o campo de link {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Fila / Trabalhador @@ -2037,12 +2117,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Neste momento não é permitido iniciar sessão DocType: Data Migration Run,Current Mapping Action,Ação de Mapeamento atual DocType: Dashboard Chart Source,Source Name,Nome da Fonte -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nenhuma conta de email associada ao usuário. Adicione uma conta em Usuário> Caixa de entrada de email. DocType: Email Account,Email Sync Option,Sincronizar e-mail Opção apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Row No DocType: Async Task,Runtime,Tempo de Execução DocType: Post,Is Pinned,Está preso DocType: Contact Us Settings,Introduction,Introdução +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Preciso de ajuda? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Fixar globalmente apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguido por DocType: LDAP Settings,LDAP Email Field,LDAP Campo Email @@ -2052,7 +2132,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Já está DocType: User Email,Enable Outgoing,Ativar Enviar DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Etiquetas personalizadas -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail não configurada. Crie uma nova conta de email em Configuração> Email> Conta de email DocType: Comment,Submitted,Enviado DocType: Contact,Pulled from Google Contacts,Extraído dos Contatos do Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Pedido inválido @@ -2073,9 +2152,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Início/Pas apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Atribuir a mim DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pressione a tecla Alt para acionar atalhos adicionais no menu e na barra lateral +DocType: Dashboard Chart,To Date,Até à Data DocType: List View Setting,List View Setting,Configuração de exibição de lista apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Mostrar trabalhos em segundo plano falhados -DocType: Event,Details,Dados +DocType: Scheduled Job Log,Details,Dados DocType: Property Setter,DocType or Field,DocType ou Campo apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Você deixou de seguir este documento apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Cor primária @@ -2084,7 +2164,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Parece publicado chave ou secret key está errado !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Parece publicado chave ou secret key está errado !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Ajuda Rápida para as Permissões de Definições -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype para atribuir marcas apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Mostrar Relapses apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,O e-mail foi movido para o lixo DocType: Report,Report Builder,Criador de Relatórios @@ -2100,6 +2179,7 @@ DocType: Workflow State,Upload,Enviar DocType: User Permission,Advanced Control,Controle Avançado DocType: System Settings,Date Format,Formato de Data apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Não Publicado +apps/frappe/frappe/contacts/doctype/address/address.py,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 em Configuração> Impressão e identidade visual> Modelo de endereço. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Ações para o fluxo de trabalho (ex: Aprovar, Cancelar) ." DocType: Data Import,Skip rows with errors,Ignorar linhas com erros DocType: Workflow State,flag,bandeira @@ -2109,7 +2189,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Impr apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Ir para o campo DocType: Contact Us Settings,Forward To Email Address,Encaminhar para o Email DocType: Contact Phone,Is Primary Phone,É o telefone principal -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envie um e-mail para {0} para vinculá-lo aqui. DocType: Auto Email Report,Weekdays,Dias da semana apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} registros serão exportados apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Campo Título deve ser um nome de campo válido @@ -2117,7 +2196,7 @@ DocType: Post Comment,Post Comment,Publicar comentário apps/frappe/frappe/config/core.py,Documents,Documentos apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Log de atividades por DocType: Social Login Key,Custom Base URL,URL Base Base -DocType: Email Flag Queue,Is Completed,Está completo +DocType: Onboarding Slide,Is Completed,Está completo apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Obter campos apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Editar Perfil DocType: Kanban Board Column,Archived,Arquivada @@ -2128,11 +2207,12 @@ 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 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hoje +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Hoje apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Enviar após importação DocType: Error Log,Log of Scheduler Errors,Registo de Erros de Programador DocType: User,Bio,Biografia +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Link de ajuda do slide integrado DocType: OAuth Client,App Client Secret,App Cliente secreto apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Submeter apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Pai é o nome do documento ao qual os dados serão adicionados. @@ -2140,7 +2220,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,MAIÚSCULAS apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML Personalizada apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Insira o nome da pasta -apps/frappe/frappe/contacts/doctype/address/address.py,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 em Configuração> Impressão e identidade visual> Modelo de endereço. apps/frappe/frappe/auth.py,Unknown User,Usuário desconhecido apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Selecione Papel DocType: Comment,Deleted,Eliminados @@ -2156,7 +2235,7 @@ DocType: Chat Token,Chat Token,Token de bate-papo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Criar gráfico apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Não importe -DocType: Web Page,Center,Centro +DocType: Onboarding Slide Field,Center,Centro DocType: Notification,Value To Be Set,Valor a ser definido apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edite {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primeiro Nível @@ -2164,7 +2243,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nome do banco de dados apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Recarregar Formulário DocType: DocField,Select,Seleção -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Visualizar log completo +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Visualizar log completo DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expressão Python Simples, Exemplo: status == 'Open' e digite == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Ficheiro não anexado apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Conexão perdida. Alguns recursos podem não funcionar. @@ -2196,6 +2275,7 @@ DocType: Web Page,HTML for header section. Optional,O HTML da seção de cabeça apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Este recurso é novo e ainda em fase experimental apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,É permitido um máximo de {0} linhas DocType: Dashboard Chart Link,Chart,Gráfico +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Anular Inscrição Global apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Esta é uma senha muito comum. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Visão @@ -2212,6 +2292,7 @@ DocType: Data Migration Connector,Hostname,nome de anfitrião DocType: Data Migration Mapping,Condition Detail,Detalhe da condição apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Para a moeda {0}, o valor mínimo da transação deve ser {1}" DocType: DocField,Print Hide,Ocultar na Impressão +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Ao usuário apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Insira o Valor DocType: Workflow State,tint,matiz @@ -2279,6 +2360,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Código QR par apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Adicionar à Lista de Tarefas DocType: Footer Item,Company,Empresa apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Média de {0} +DocType: Scheduled Job Log,Scheduled,Programado DocType: User,Logout from all devices while changing Password,Sair de todos os dispositivos ao mudar a senha apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifique A Senha apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ocorreram erros @@ -2304,7 +2386,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,A permissão do usuário já existe apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapeando a coluna {0} para o campo {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ver {0} -DocType: User,Hourly,De hora em hora +DocType: Scheduled Job Type,Hourly,De hora em hora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registar OAuth da aplicação cliente DocType: DocField,Fetch If Empty,Buscar se vazio DocType: Data Migration Connector,Authentication Credentials,Credenciais de Autenticação @@ -2315,10 +2397,10 @@ DocType: SMS Settings,SMS Gateway URL,URL de Portal de SMS apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ganho por {0} via regra automática {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ou {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Você está pronto! DocType: Workflow State,trash,reciclagem DocType: System Settings,Older backups will be automatically deleted,Cópias de segurança mais antigos serão apagados automaticamente apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID de chave de acesso inválido ou chave de acesso secreto. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Você perdeu alguns pontos de energia DocType: Post,Is Globally Pinned,É fixado globalmente apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Atividade recente DocType: Workflow Transition,Conditions,Condições @@ -2327,6 +2409,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confirmado DocType: Event,Ends on,Termina em DocType: Payment Gateway,Gateway,Portal DocType: LDAP Settings,Path to Server Certificate,Caminho para o certificado do servidor +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript está desativado em seu navegador apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Não há permissão suficiente para ver links apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Não há permissão suficiente para ver links apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,É obrigatório colocar o Título do Endereço. @@ -2346,7 +2429,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Se isso estiver marcado, linhas com dados válidos serão importadas e linhas inválidas serão despejadas em um novo arquivo para você importar mais tarde." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,O Documento só pode ser editado pelos utilizadores com a função -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","A tarefa {0}, que você atribuiu a {1}, foi fechada por {2}." DocType: Print Format,Show Line Breaks after Sections,Mostrar quebras de linha após Secções DocType: Communication,Read by Recipient On,Ler por destinatário ativado DocType: Blogger,Short Name,Nome Curto @@ -2378,6 +2460,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Atri DocType: Translation,PR sent,PR enviado DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Somente Enviar Registros Atualizados em Últimas X Horas DocType: Communication,Feedback,Comentários +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Atualizado para uma nova versão 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Open Translation apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Este e-mail é gerado automaticamente DocType: Workflow State,Icon will appear on the button,O Ícone aparecerá no botão @@ -2416,6 +2499,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Página n DocType: DocField,Precision,Precisão DocType: Website Slideshow,Slideshow Items,Itens slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Tente evitar palavras repetidas e personagens +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Notificações desativadas +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Tem certeza de que deseja excluir todas as linhas? DocType: Workflow Action,Workflow State,Status do Fluxo de Trabalho apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,linhas adicionadas apps/frappe/frappe/www/list.py,My Account,Minha Conta @@ -2424,6 +2509,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dias Depois apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Conexão da Bandeja QZ Ativo! DocType: Contact Us Settings,Settings for Contact Us Page,Definições para a página Fale Conosco +DocType: Server Script,Script Type,Tipo de roteiro DocType: Print Settings,Enable Print Server,Ativar servidor de impressão apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,há {0} semanas atrás DocType: Email Account,Footer,Rodapé @@ -2449,8 +2535,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Aviso apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Isso pode ser impresso em várias páginas DocType: Data Migration Run,Percent Complete,Percentagem completa -DocType: Tag Category,Tag Category,tag Categoria -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10)." DocType: Google Calendar,Pull from Google Calendar,Puxe do Google Agenda apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Ajuda DocType: User,Login Before,Iniciar Sessão Antes @@ -2460,17 +2544,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ocultar finais de semana apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automaticamente gera documentos recorrentes. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,É +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,sinal-de-informações apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valor para {0} não pode ser uma lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Como é que a moeda deve ser formatada? Se isto não for definido, será utilizado o padrão do sistema" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Envie {0} documentos? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Erro ao conectar ao aplicativo da bandeja QZ ... <br><br> Você precisa ter o aplicativo QZ Tray instalado e em execução, para usar o recurso Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Clique aqui para baixar e instalar a bandeja QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Clique aqui para saber mais sobre a impressão em bruto</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapeamento de Impressora apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Por favor, guarde antes de anexar." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Deseja cancelar todos os documentos vinculados? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Adicionado {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Permissões da Função DocType: Help Article,Intermediate,Intermediário +apps/frappe/frappe/config/settings.py,Email / Notifications,Email / Notificações apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} mudou {1} para {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Documento Cancelado restaurado como Rascunho DocType: Data Migration Run,Start Time,Hora de início @@ -2487,6 +2575,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Po apps/frappe/frappe/email/smtp.py,Invalid recipient address,Endereço de destinatário inválido DocType: Workflow State,step-forward,passo- DocType: System Settings,Allow Login After Fail,Permitir login após falha +DocType: DocType Link,DocType Link,Link DocType DocType: Role Permission for Page and Report,Set Role For,Definir papel para DocType: GCalendar Account,The name that will appear in Google Calendar,O nome que aparecerá no Google Agenda apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Sala direta com {0} já existe. @@ -2503,6 +2592,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Criar um DocType: Contact,Google Contacts,Contatos do Google DocType: GCalendar Account,GCalendar Account,Conta do GCalendar DocType: Email Rule,Is Spam,é Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Último apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Relatório {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Abrir {0} DocType: Data Import Beta,Import Warnings,Avisos de importação @@ -2514,6 +2604,7 @@ DocType: Workflow State,ok-sign,sinal-ok apps/frappe/frappe/config/settings.py,Deleted Documents,Documentos excluídos apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,O formato CSV diferencia maiúsculas de minúsculas apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ícone da área de trabalho já existe +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Especifique em que todos os domínios os slides devem aparecer. Se nada for especificado, o slide será mostrado em todos os domínios por padrão." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: o campo {1} na linha {2} não pode ser oculto e obrigatório sem padrão DocType: Newsletter,Create and Send Newsletters,Criar e Enviar Newsletters @@ -2524,6 +2615,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID do evento do Google Agenda apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Principal"" significa a a tabela principal na qual deve ser acrescentada esta linha" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Pontos de Revisão: +DocType: Scheduled Job Log,Scheduled Job Log,Registro de trabalho agendado +DocType: Server Script,Before Delete,Antes de excluir apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Compartilhado com apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Anexe arquivos / URLs e adicione na tabela. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Mensagem não configurada @@ -2547,19 +2640,21 @@ DocType: About Us Settings,Settings for the About Us Page,Definições para a p apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Configurações do gateway de pagamento Stripe apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Configurações do gateway de pagamento Stripe apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imprimir Enviado para a impressora! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Pontos de energia +DocType: Notification Settings,Energy Points,Pontos de energia +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},A hora {0} deve estar no formato: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ex: pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Gerar Chaves apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Isso removerá permanentemente seus dados. DocType: DocType,View Settings,Ver Definições +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nova notificação DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Estrutura da solicitação +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Falta o método get_razorpay_order do controlador DocType: Personal Data Deletion Request,Pending Verification,verificação pendente DocType: Website Meta Tag,Website Meta Tag,Tag Meta do Site DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Se não porta padrão (por exemplo, 587). Se no Google Cloud, tente a porta 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Apagar data de término, como não pode ser no passado para páginas publicadas." DocType: User,Send Me A Copy of Outgoing Emails,Envie-me uma cópia dos e-mails de saída -DocType: System Settings,Scheduler Last Event,Scheduler Última Evento DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Adicione a identificação de Google Analytics: ex: UA-89XXX57-1. Para obter mais informações por favor vá à ajuda do Google Analytics . apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,A senha não pode ter mais do que 100 caracteres DocType: OAuth Client,App Client ID,App Cliente ID @@ -2588,6 +2683,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,É necessári apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} partilhou este documento com {1} DocType: Website Settings,Brand Image,Imagem de marca DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,"O modelo de importação deve conter um cabeçalho e, pelo menos, uma linha." apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,O Google Agenda foi configurado. apps/frappe/frappe/config/website.py,"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 @@ -2597,6 +2693,7 @@ DocType: User Social Login,User Social Login,Login Social do Usuário apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} criticou seu trabalho em {1} com {2} ponto DocType: Contact,All,Tudo DocType: Email Queue,Recipient,Destinatário +DocType: Webhook,Webhook Security,Segurança Webhook DocType: Communication,Has Attachment,possui anexo DocType: Address,Sales User,Utilizador de Vendas apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,A ferramenta Arrastar e Soltar para criar e personalizar Formatos de Impressão. @@ -2663,7 +2760,6 @@ DocType: Data Migration Mapping,Migration ID Field,Campo de Identificação de M DocType: Dashboard Chart,Last Synced On,Última sincronização em DocType: Comment,Comment Type,Tipo de Comentário DocType: OAuth Client,OAuth Client,Cliente OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} criticou seu trabalho em {1} {2} DocType: Assignment Rule,Users,Utilizadores DocType: Address,Odisha,Odisha DocType: Report,Report Type,Tipo de Relatório @@ -2689,14 +2785,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Item Slideshow site apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Auto-aprovação não é permitida DocType: GSuite Templates,Template ID,ID do modelo apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Combinação de Tipo de Subsídio ( <code>{0}</code> ) e Tipo de Resposta ( <code>{1}</code> ) não permitido -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nova mensagem de {0} DocType: Portal Settings,Default Role at Time of Signup,Papel padrão em tempo de Inscrição DocType: DocType,Title Case,Caso título apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Clique no link abaixo para baixar seus dados apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Caixa de entrada de e-mail ativada para o usuário {0} DocType: Data Migration Run,Data Migration Run,Execução de migração de dados DocType: Blog Post,Email Sent,Email Enviado -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Mais velho DocType: DocField,Ignore XSS Filter,Ignorar Filtro XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,removido apps/frappe/frappe/config/integrations.py,Dropbox backup settings,configurações de cópias de segurança para o Dropbox @@ -2751,6 +2845,7 @@ DocType: Async Task,Queued,Em Fila DocType: Braintree Settings,Use Sandbox,Use Sandbox apps/frappe/frappe/utils/goal.py,This month,Este mês apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novo Formato de Impressão Personalizado +DocType: Server Script,Before Save (Submitted Document),Antes de salvar (documento enviado) DocType: Custom DocPerm,Create,Criar apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Não há mais itens para exibir apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Ir para o registro anterior @@ -2808,6 +2903,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Mover para lixeira DocType: Web Form,Web Form Fields,Campos de formulário Web DocType: Data Import,Amended From,Alterado De +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Adicione um link de vídeo de ajuda, caso o usuário não tenha idéia do que preencher no slide." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Aviso: Não é possível localizar {0} em qualquer tabela relacionada a {1} DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Este documento está em fila para execução. Por favor, tente novamente" @@ -2830,6 +2926,7 @@ DocType: Blog Post,Blog Post,Post do Blog DocType: Access Log,Export From,Exportar de apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Pesquisa Avançada apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Você não tem permissão para visualizar o boletim informativo. +DocType: Dashboard Chart,Group By,Agrupar Por DocType: User,Interests,Juros apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,As instruções de redefinição de senha foram enviadas para o seu email DocType: Energy Point Rule,Allot Points To Assigned Users,Atribuir pontos aos usuários atribuídos @@ -2845,6 +2942,7 @@ DocType: Assignment Rule,Assignment Rule,Regra de Atribuição apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Nome de utilizador sugerido: {0} DocType: Assignment Rule Day,Day,Dia apps/frappe/frappe/public/js/frappe/desk.js,Modules,Módulos +DocType: DocField,Mandatory Depends On,Obrigatório Depende apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Sucesso de pagamento apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Nenhum {0} correio DocType: OAuth Bearer Token,Revoked,revogada @@ -2852,6 +2950,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar e Comentários apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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 ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Não é permitido anexar o documento {0}, por favor, ative a opção Permitir impressão para {0} em Configurações de impressão" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail não configurada. Crie uma nova conta de email em Configuração> Email> Conta de email apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Veja o documento em {0} DocType: Stripe Settings,Publishable Key,Chave publicável DocType: Stripe Settings,Publishable Key,Chave publicável @@ -2867,13 +2966,13 @@ DocType: Currency,Fraction,Fração apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Evento sincronizado com o Google Agenda. DocType: LDAP Settings,LDAP First Name Field,LDAP Nome Campo DocType: Contact,Middle Name,Nome do Meio +DocType: DocField,Property Depends On,Propriedade depende DocType: Custom Field,Field Description,Descrição de Campo apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nome não definido através de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Atualizando {0} de {1}, {2}" DocType: Auto Email Report,Filters Display,filtros de exibição apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",O campo "alterado_de" deve estar presente para fazer uma alteração. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} apreciou seu trabalho em {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salvar filtros DocType: Address,Plant,Planta apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Responder todos @@ -2914,11 +3013,11 @@ DocType: Workflow State,folder-close,fechar-pasta apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Relatório: DocType: Print Settings,Print taxes with zero amount,Imprima impostos com montante zero apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,Não é permitido alterar o nome de {0} +DocType: Server Script,Before Insert,Antes da inserção DocType: Custom Script,Custom Script,Script Personalizado DocType: Address,Address Line 2,Endereço Linha 2 DocType: Address,Reference,Referência apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Atribuído A -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de email padrão em Configuração> Email> Conta de email DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalhes do mapeamento de migração de dados DocType: Data Import,Action,Ação DocType: GSuite Settings,Script URL,URL do script @@ -2944,11 +3043,13 @@ DocType: User,Api Access,Acesso Api DocType: DocField,In List View,Na Vista de Lista DocType: Email Account,Use TLS,Usar TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Login ou Senha Inválidos +DocType: Scheduled Job Type,Weekly Long,Semanalmente Longo apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Transferir Modelo apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Adicione javascript personalizado aos formulários. ,Role Permissions Manager,Permissões da Função de Gestor apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nome do novo Formato de Impressão apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar +DocType: Server Script,After Save (Submitted Document),Após salvar (documento enviado) DocType: Data Migration Run,Pull Insert,Inserir puxar DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Número máximo de pontos permitido após a multiplicação de pontos pelo valor multiplicador (Nota: para sem limite, deixe este campo vazio ou defina 0)" @@ -2968,6 +3069,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP não instalado apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Transferir com dados apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valores alterados para {0} {1} +DocType: Server Script,Before Cancel,Antes de Cancelar DocType: Workflow State,hand-right,mão-direita DocType: Website Settings,Subdomain,Subdomínio DocType: S3 Backup Settings,Region,Região @@ -3014,12 +3116,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Senha Antiga DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posts publicados por {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Para formatar colunas, dar rótulos de coluna na consulta." +DocType: Onboarding Slide,Slide Fields,Campos do slide DocType: Has Domain,Has Domain,Tem domínio DocType: User,Allowed In Mentions,Permitido nas menções apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Não tem uma conta? inscrever-se apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Não é possível remover o campo ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Não é possível Alterar se não Enviar DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Documentos Inscritos apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Configurações do Usuário DocType: Report,Reference Report,Relatório de referência DocType: Activity Log,Link DocType,Ligar DocType @@ -3037,6 +3141,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizar acesso ao Go apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,A página que você está procurando está faltando. Isto poderia ser porque ele é movido ou se houver um erro de digitação no link. apps/frappe/frappe/www/404.html,Error Code: {0},Código de erro: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descrição da página de anúncios, em texto simples, somente algumas linhas. (max. 140 caracteres)" +DocType: Server Script,DocType Event,Evento DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} são campos obrigatórios DocType: Workflow,Allow Self Approval,Permitir auto-aprovação DocType: Event,Event Category,Categoria do Evento @@ -3053,6 +3158,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Seu nome apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Sucesso de conexão DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Um slide integrado do tipo slide continua já existe. DocType: DocType,Default Sort Field,Campo de classificação padrão DocType: File,Is Folder,É Pasta DocType: Document Follow,DocType,DocType @@ -3090,8 +3196,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Os valo DocType: Workflow State,arrow-up,seta-para-cima DocType: Dynamic Link,Link Document Type,Tipo de Documento de Link apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Deve haver pelo menos uma linha para a tabela {0} +DocType: Server Script,Server Script,Script do servidor apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Para configurar a repetição automática, ative "Permitir repetição automática" de {0}." DocType: OAuth Bearer Token,Expires In,Expira em +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","A quantidade de vezes que você deseja repetir o conjunto de campos (por exemplo: se você deseja 3 clientes no slide, defina esse campo como 3. Somente o primeiro conjunto de campos é mostrado como obrigatório no slide)" DocType: DocField,Allow on Submit,Permitir ao Enviar DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Tipo de Exceção @@ -3101,6 +3209,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Cabeçalhos apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,próximos eventos apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Por favor insira os valores para acesso App Key e App chave secreta +DocType: Email Account,Append Emails to Sent Folder,Anexar emails à pasta enviada DocType: Web Form,Accept Payment,Aceite o pagamento apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selecione o item da lista apps/frappe/frappe/config/core.py,A log of request errors,Um registo de erros de solicitados @@ -3119,7 +3228,7 @@ DocType: Translation,Contributed,Contribuído apps/frappe/frappe/config/customization.py,Form Customization,Personalização de formulário apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sem sessões activas DocType: Web Form,Route to Success Link,Rota para o Link de Sucesso -DocType: Top Bar Item,Right,Direita +DocType: Onboarding Slide Field,Right,Direita apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Não há eventos futuros DocType: User,User Type,Tipo de Utilizador DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3137,6 +3246,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Por favor, tent apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',O URL deve começar com "http: //" ou "https: //" apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opção 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Isto não pode ser desfeito DocType: Workflow State,Edit,Editar DocType: Website Settings,Chat Operators,Operadores de bate-papo DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3148,7 +3258,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Relatório com mais de 10 colunas parece melhor no modo Paisagem. apps/frappe/frappe/database/database.py,Invalid field name: {0},Nome do campo inválido: {0} DocType: Milestone,Milestone,Marco miliário @@ -3157,7 +3266,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Vá para {0} apps/frappe/frappe/email/queue.py,Emails are muted,Os emails estão sem som apps/frappe/frappe/config/integrations.py,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Para Cima -apps/frappe/frappe/utils/data.py,1 weeks ago,1 semana atrás +DocType: Onboarding Slide,Slide Description,Descrição do slide DocType: Communication,Error,Erro apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,"Por favor, configure uma mensagem primeiro" DocType: Auto Repeat,End Date,Data de Término @@ -3178,10 +3287,12 @@ DocType: Footer Item,Group Label,Designação de Grupo DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,O Contatos do Google foi configurado. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 registro será exportado +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nenhuma conta de email associada ao usuário. Adicione uma conta em Usuário> Caixa de entrada de email. DocType: DocField,Report Hide,Ocultar Relatório apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},exibição de árvore não está disponível para {0} DocType: DocType,Restrict To Domain,Restringir ao domínio DocType: Domain,Domain,Domínio +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL de arquivo inválido. Entre em contato com o administrador do sistema. DocType: Custom Field,Label Help,Ajuda de Rótulo DocType: Workflow State,star-empty,estrelas vazio apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,As datas são muitas vezes mais fáceis de adivinhar. @@ -3206,6 +3317,7 @@ DocType: Workflow State,hand-left,mão-esquerda DocType: Data Import,If you are updating/overwriting already created records.,Se você está atualizando / substituindo registros já criados. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,É global DocType: Email Account,Use SSL,Usar SSL +DocType: Webhook,HOOK-.####,GANCHO-.#### DocType: Workflow State,play-circle,círculo-de-reprodução apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,O documento não pôde ser atribuído corretamente apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Expressão "dependente" dependente inválida @@ -3222,6 +3334,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Última atualização apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Para o tipo de documento DocType: Workflow State,arrow-right,seta-para-a-direita +DocType: Server Script,API Method,Método API DocType: Workflow State,Workflow state represents the current state of a document.,Estado de fluxo de trabalho representa o estado atual de um documento. DocType: Letter Head,Letter Head Based On,Carta de cabeça com base em apps/frappe/frappe/utils/oauth.py,Token is missing,Token está ausente @@ -3261,6 +3374,7 @@ DocType: Comment,Relinked,relinked DocType: Print Settings,Compact Item Print,Cópia de Item Compacta DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Redirecionar URL +DocType: Onboarding Slide Field,Placeholder,Placeholder DocType: SMS Settings,Enter url parameter for receiver nos,Insira o parâmetro de url para os números de recetores DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Sempre use o nome da conta como nome do remetente @@ -3270,7 +3384,6 @@ DocType: Workflow State,Home,Início DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,O usuário pode fazer login usando o ID de e-mail ou o Nome de usuário DocType: Workflow State,question-sign,ponto-de-interrogação -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} está desativado apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",O campo "rota" é obrigatório para Web Views apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inserir coluna antes de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,O usuário deste campo será recompensado pontos @@ -3295,6 +3408,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Se o Dono DocType: Data Migration Mapping,Push,Empurrar apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Solte arquivos aqui DocType: OAuth Authorization Code,Expiration time,Data de validade +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Documentos abertos DocType: Web Page,Website Sidebar,Sidebar site DocType: Web Form,Show Sidebar,Mostrar barra lateral apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Você precisa estar logado para acessar esta {0}. @@ -3310,6 +3424,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Atalhos Glob DocType: Desktop Icon,Page,Página apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Não foi possível localizar {0} em {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Os nomes e sobrenomes são fáceis de adivinhar. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Documento renomeado de {0} para {1} apps/frappe/frappe/config/website.py,Knowledge Base,base de Conhecimento DocType: Workflow State,briefcase,pasta apps/frappe/frappe/model/document.py,Value cannot be changed for {0},O valor não pode ser alterado para {0} @@ -3346,6 +3461,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Formato de Impressão apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Grid View apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Vai para o próximo registro +DocType: System Settings,Time Format,Formato da hora apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,credenciais de gateway de pagamento inválidos DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Este é o arquivo de modelo gerado com apenas as linhas com algum erro. Você deve usar esse arquivo para corrigir e importar. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Definir permissões em Tipos e Funções de documentos @@ -3389,12 +3505,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Responder apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Páginas na Secretária (caracteres de preenchimento) DocType: DocField,Collapsible Depends On,O Comprimível Depende De DocType: Print Style,Print Style Name,Nome do estilo de impressão +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,O campo Agrupar por é necessário para criar um gráfico de painel DocType: Print Settings,Allow page break inside tables,Permitir quebra de página dentro de tabelas DocType: Email Account,SMTP Server,Servidor SMTP DocType: Print Format,Print Format Help,Ajuda de Formato de Impressão apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} sala deve ter no máximo um usuário. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Contagem +DocType: Dashboard Chart,Group By Type,Agrupar por tipo apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Novo comentário em {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurado {0} como {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Se estiver a atualizar, por favor selecione ""Substituir"", ou então as linhas existentes não serão eliminadas." @@ -3405,8 +3523,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Perfil de DocType: Web Form,Web Form,Formulário Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},A data {0} deve estar no formato: {1} DocType: About Us Settings,Org History Heading,Cabeçalho da Hist. da Org. +DocType: Scheduled Job Type,Scheduled Job Type,Tipo de trabalho agendado DocType: Print Settings,Allow Print for Cancelled,Permitir Impressão para Cancelado DocType: Communication,Integrations can use this field to set email delivery status,As Integrações podem utilizar este campo para definir o status de entrega do email +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Você não tem permissão para cancelar todos os documentos vinculados. DocType: Web Form,Web Page Link Text,Página Web Link Text DocType: Page,System Page,Página do sistema DocType: Page,System Page,Página do sistema @@ -3414,6 +3534,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Personalizações para <b>{0}</b> exportadas para: <br> {1} DocType: Website Settings,Include Search in Top Bar,Incluem a busca no Top Bar +DocType: Scheduled Job Type,Daily Long,Diário Longo DocType: GSuite Settings,Allow GSuite access,Permitir acesso GSuite DocType: DocType,DESC,DEC DocType: DocType,Naming,A Atribuir Nome @@ -3517,6 +3638,7 @@ DocType: Notification,Send days before or after the reference date,Enviar dias a DocType: User,Allow user to login only after this hour (0-24),Permitir que o utilizador inicie sessão somente após esta hora (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Atribuir um por um, em seqüência" DocType: Integration Request,Subscription Notification,Notificação de Subscrição +DocType: Customize Form Field, Allow in Quick Entry ,Permitir entrada rápida apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ou anexar um DocType: Auto Repeat,Start Date,Data de Início apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Valor @@ -3531,6 +3653,7 @@ DocType: Google Drive,Backup Folder ID,ID da pasta de backup apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Não Está no Modo de Desenvolvedor! Defina em site_config.json ou 'Personalize' o DocType . DocType: Workflow State,globe,globo DocType: System Settings,dd.mm.yyyy,dd.mm.aaaa +DocType: Onboarding Slide Help Link,Video,Vídeo DocType: Assignment Rule,Priority,Prioridade DocType: Email Queue,Unsubscribe Param,unsubscribe Param DocType: DocType,Hide Sidebar and Menu,Ocultar barra lateral e menu @@ -3542,6 +3665,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Permitir Importação (via apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Vírgula Flutuante DocType: Print Settings,Page Settings,Configurações da página +DocType: Notification Settings,Notification Settings,Configurações de notificação apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Salvando ... apps/frappe/frappe/www/update-password.html,Invalid Password,senha inválida apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Registro {0} importado com sucesso de {1}. @@ -3557,6 +3681,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,Gmail DocType: Letter Head,Letter Head Image,Carta cabeça imagem DocType: Address,Party GSTIN,Festa GSTIN +DocType: Scheduled Job Type,Cron Format,Formato Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,Relatório {0} DocType: SMS Settings,Use POST,Use POST DocType: Communication,SMS,SMS @@ -3602,18 +3727,20 @@ DocType: Workflow,Allow approval for creator of the document,Permitir aprovaçã apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salvar o relatorio DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Ação do Servidor apps/frappe/frappe/core/doctype/user/user.py,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/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,O campo pai deve ser um nome de campo válido apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Falha ao alterar a assinatura DocType: LDAP Settings,LDAP Group Field,Campo do Grupo LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Documento assinado de notificação apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Iguais apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Formato CSV Inválido -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Erro ao conectar ao aplicativo da bandeja QZ ... <br><br> Você precisa ter o aplicativo QZ Tray instalado e em execução, para usar o recurso Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Clique aqui para baixar e instalar a bandeja QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Clique aqui para saber mais sobre a impressão em bruto</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Definir número de cópias de segurança DocType: DocField,Do not allow user to change after set the first time,Não permitir que o utilizador altere após definir o primeiro período apps/frappe/frappe/utils/data.py,1 year ago,1 ano atrás +DocType: DocType,Links Section,Seção de Links apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Visualizar o log de todos os eventos de impressão, download e exportação" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mês DocType: Contact,Contact,Contacto @@ -3640,16 +3767,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Novo Email DocType: Custom DocPerm,Export,Exportar apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Para usar o Google Agenda, ative {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Incluindo também o campo de dependência do status {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} atualizado com sucesso apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Tray Failed: DocType: Dropbox Settings,Dropbox Settings,Configurações Dropbox DocType: About Us Settings,More content for the bottom of the page.,Mais conteúdo para o fundo da página. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Este documento foi revertido apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Backup do Google Drive bem-sucedido. +DocType: Webhook,Naming Series,Série de Atrib. de Nomes DocType: Workflow,DocType on which this Workflow is applicable.,O DocType em que este Fluxo de Trabalho é aplicável. DocType: User,Enabled,Ativado apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Falha ao concluir a configuração apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Novo {0}: {1} -DocType: Tag Category,Category Name,Nome da Categoria +DocType: Blog Category,Category Name,Nome da Categoria apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Pai é necessário para obter dados da tabela filho apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importar Assinantes DocType: Print Settings,PDF Settings,Definições de PDF @@ -3685,6 +3815,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Calendário apps/frappe/frappe/client.py,No document found for given filters,Nenhum documento encontrado para determinados filtros apps/frappe/frappe/config/website.py,A user who posts blogs.,Um usuário que posta blogs. +DocType: DocType Action,DocType Action,Ação DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Já existe outro {0} com o nome {1}, Por favor, selecione outro nome" DocType: DocType,Custom?,Personalizado? DocType: Website Settings,Website Theme Image,Site Tema da imagem @@ -3694,6 +3825,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Incapaz d apps/frappe/frappe/config/integrations.py,Backup,Cópia de segurança apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,O tipo de documento é necessário para criar um gráfico de painel DocType: DocField,Read Only,Só de Leitura +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Não foi possível criar a ordem razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nova Newsletter DocType: Energy Point Log,Energy Point Log,Log de ponto de energia DocType: Print Settings,Send Print as PDF,Enviar Imprimir como PDF @@ -3719,16 +3851,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con apps/frappe/frappe/www/login.html,Or login with,Ou inície sessão com DocType: Error Snapshot,Locals,Locais apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicado através de {0} em {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} mencionou-o num comentário em {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Selecione Agrupar por ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex: (55 + 434) / 4 ou = Math.sin(Math.PI/2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} é necessário DocType: Integration Request,Integration Type,Tipo de Integração DocType: Newsletter,Send Attachements,Enviar Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nenhum filtro encontrado apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integração de Contatos do Google. DocType: Transaction Log,Transaction Log,Log de transações apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Estatísticas com base no desempenho do último mês (de {0} a {1}) DocType: Contact Us Settings,City,Cidade +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ocultar cartões para todos os usuários apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Ativar Permitir repetição automática para o tipo de documento {0} em Personalizar formulário DocType: DocField,Perm Level,Nível de Perm. apps/frappe/frappe/www/confirm_workflow_action.html,View document,Ver documento @@ -3740,6 +3873,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},'Na Pesquisa Global' não é permitido para o tipo {0} na linha {1} DocType: Energy Point Log,Appreciation,Apreciação +DocType: Dashboard Chart,Number of Groups,Número de Grupos apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Ver lista DocType: Workflow,Don't Override Status,Não Sobrescrever o Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Termo de pesquisa @@ -3781,7 +3915,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-northwest-1 DocType: Dropbox Settings,Limit Number of DB Backups,Número limite de backups de banco de dados DocType: Custom DocPerm,Level,Nível -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Últimos 30 dias DocType: Custom DocPerm,Report,Relatório apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Montante deve ser maior que 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Conectado ao QZ Tray! @@ -3798,6 +3931,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Selecionar tabela infantil apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Ação principal do acionador apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Mudança +DocType: Social Login Key,User ID Property,Propriedade de ID do usuário DocType: Email Domain,domain name,nome do domínio DocType: Contact Email,Contact Email,Email de Contacto DocType: Kanban Board Column,Order,Ordem @@ -3820,7 +3954,7 @@ DocType: Contact,Last Name,Sobrenome DocType: Event,Private,Privado apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Esquerda DocType: Event,All Day,Dia Inteiro apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Parece que algo está errado com a configuração de gateway de pagamento deste site. Nenhum pagamento foi feito. DocType: GCalendar Settings,State,Estado @@ -3852,7 +3986,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Configurações do Gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,texto em tipo de documento -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Executar Testes apps/frappe/frappe/handler.py,Logged Out,Desconectado apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mais... DocType: System Settings,User can login using Email id or Mobile number,O usuário pode efetuar login usando a ID do e-mail ou o número do celular @@ -3869,6 +4002,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resumo DocType: Event,Event Participants,Participantes do Evento DocType: Auto Repeat,Frequency,Frequência +DocType: Onboarding Slide,Slide Order,Ordem dos slides DocType: Custom Field,Insert After,Inserir Depois DocType: Event,Sync with Google Calendar,Sincronize com o Google Agenda DocType: Access Log,Report Name,Nome do Relatório @@ -3896,6 +4030,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Página web de conteúdo. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Adicionar uma Nova Função +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visitar página da Web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova atribuição DocType: Google Contacts,Last Sync On,Última sincronização em DocType: Deleted Document,Deleted Document,Documento eliminado apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Uups! Aconteceu algo de errado @@ -3906,7 +4042,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Panorama apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensões de script laterais do cliente em Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Registros para seguir doctypes serão filtrados -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Agendador inativo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Agendador inativo DocType: Blog Settings,Blog Introduction,Introdução do Blog DocType: Global Search Settings,Search Priorities,Prioridades de pesquisa DocType: Address,Office,Escritório @@ -3916,12 +4052,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Link de gráfico do painel DocType: User,Email Settings,Definições de Email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Solta aqui DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Se ativado, o usuário pode efetuar login a partir de qualquer endereço IP usando a autenticação de dois fatores, isso também pode ser definido para todos os usuários nas configurações do sistema" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Configurações da Impressora ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Por favor, digite sua senha para continuar" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Eu apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} não é um estado válido apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Aplicar a todos os tipos de documentos -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Atualização do ponto de energia +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Atualização do ponto de energia +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Executar trabalhos apenas diariamente se inativo por (dias) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tipo de sala DocType: Data Import Beta,Import Log Preview,Visualização do registro de importação @@ -3930,6 +4066,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,círculo-ok DocType: LDAP Settings,LDAP User Creation and Mapping,Criação e Mapeamento de Usuários LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Você pode encontrar as coisas, pedindo "encontrar laranja em clientes '" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Eventos de hoje apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,É proibido compartilhar com o utilizador de website. ,Usage Info,Informações de uso apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Mostrar atalhos de teclado @@ -3946,6 +4083,7 @@ DocType: DocField,Unique,Único apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apreciado em {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Sucesso parcial DocType: Email Account,Service,serviço +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário DocType: File,File Name,Nome do Ficheiro apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Não encontrou {0} para {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3959,6 +4097,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registo DocType: GCalendar Settings,Enable,permitir DocType: Google Maps Settings,Home Address,Endereço Residencial apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Você só pode fazer upload de até 5.000 registros de uma só vez. (Pode ser inferior em alguns casos) +DocType: Report,"output in the form of `data = [columns, result]`","saída na forma de `data = [colunas, resultado]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipos de documentos aplicáveis apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Configurar regras para atribuições de usuários. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permissão insuficiente para {0} @@ -3976,7 +4115,6 @@ DocType: Communication,To and CC,Para e CC DocType: SMS Settings,Static Parameters,Parâmetros Estáticos DocType: Chat Message,Room,Quarto apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},atualizado para {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Os trabalhos em segundo plano não estão em execução. Entre em contato com o administrador DocType: Portal Settings,Custom Menu Items,Itens de menu personalizado apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Todas as imagens anexadas à apresentação de slides do site devem ser públicas DocType: Workflow State,chevron-right,Chevron para a dir. @@ -3991,11 +4129,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valores selecionados DocType: DocType,Allow Auto Repeat,Permitir repetição automática apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nenhum valor para mostrar +DocType: DocType,URL for documentation or help,URL para documentação ou ajuda DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Modelo de email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Registro {0} atualizado com sucesso. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},O usuário {0} não tem acesso ao tipo de documento via permissão de função para o documento {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,É necessário colocar o nome e a senha +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Deixei\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Por favor, efetue uma atualização para obter os documentos mais recentes." DocType: User,Security Settings,Configurações de Segurança apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Adicionar Coluna @@ -4005,6 +4145,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,filtrar Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},"Por favor, encontre em anexo {0}: {1}" DocType: Web Page,Set Meta Tags,Definir meta tags +DocType: Email Account,Use SSL for Outgoing,Use SSL para saída 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: S3 Backup Settings,Backup Limit,Limite de backup DocType: Dashboard Chart,Line,Linha @@ -4037,4 +4178,3 @@ DocType: DocField,Ignore User Permissions,Ignorar Permissões de Utilizador apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvo com sucesso apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Por favor, pergunte ao seu administrador para verificar a sua inscrição" DocType: Domain Settings,Active Domains,Domínios ativos -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Mostrar Log diff --git a/frappe/translations/pt_br.csv b/frappe/translations/pt_br.csv index 93fb38a351..c9fd9e4c4a 100644 --- a/frappe/translations/pt_br.csv +++ b/frappe/translations/pt_br.csv @@ -12,7 +12,6 @@ apps/frappe/frappe/config/website.py,Javascript to append to the head section of DocType: Chat Profile,Enable Chat,Ativar Chat DocType: Address,Address Line 2,Complemento apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,É necessário email válido e nome -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Atualizado para uma Nova Versão DocType: Activity Log,Activity Log,Log de Atividade DocType: Notification,Days Before or After,Dias Antes ou Após apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Atualizando @@ -159,6 +158,7 @@ apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Não é apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabela {0} não pode ser vazio apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Linhas Excluídas apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Não Definido +DocType: Server Script,Script Type,Tipo de Script DocType: Workflow State,chevron-left,divisa-esquerda apps/frappe/frappe/templates/includes/contact.js,"Please enter both your email and message so that we \ can get back to you. Thanks!","Digite seu email e tanto mensagem para que nós \ @@ -186,7 +186,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} DocType: Email Unsubscribe,Email Unsubscribe,Cancelar inscrição de email DocType: Blogger,User ID of a Blogger,ID do usuário de um Blogger DocType: LDAP Settings,LDAP Email Field,Campo do Email LDAP -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tarefa +DocType: Notification Log,Assignment,Tarefa apps/frappe/frappe/config/settings.py,Create and manage newsletter,Criar e gerir newsletter DocType: Email Account,Enable Incoming,Ativar Entrada apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Thank you for your interest in subscribing to our updates,Agradecemos seu interesse em assinar a newsletter do site @@ -218,7 +218,6 @@ DocType: Help Article,Likes,Likes DocType: DocField,"Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field","Não etiquetas HTML Encode HTML como <script> ou apenas caracteres como <ou>, uma vez que poderia ser usado intencionalmente neste campo" apps/frappe/frappe/core/doctype/data_import/importer.py,Please do not change the rows above {0},"Por favor, não alterar as linhas acima {0}" apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Selecionar Tudo -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Adicionar mais apps/frappe/frappe/public/js/frappe/ui/sort_selector.js,Most Used,Mais Usados apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nenhuma sessão ativa DocType: Workflow State,Tag,Tag @@ -278,7 +277,6 @@ DocType: Translation,Translated Text,Texto Traduzido DocType: Email Flag Queue,Email Flag Queue,Flag Fila de Email apps/frappe/frappe/utils/backups.py,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} DocType: Email Unsubscribe,Global Unsubscribe,Cancelar Inscrição Global -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Somente o Administrador pode criar Consulta / Relatórios de Script apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Reference DocType and Reference Name are required,Referência DocType e nome de referência são necessários apps/frappe/frappe/utils/password_strength.py,Better add a few more letters or another word,Recomenda-se adicionar mais algumas letras ou colocar uma palavra adicional DocType: Notification,View Properties (via Customize Form),Exibir Propriedades (via Personalizar Formulário) @@ -343,6 +341,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit apps/frappe/frappe/config/desk.py,"Newsletters to contacts, leads.","Email Marketing para Contatos, Leads." apps/frappe/frappe/config/website.py,Categorize blog posts.,Categorizar posts. apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} deslogado: {1} +DocType: Webhook,Naming Series,Código dos Documentos DocType: Auto Repeat,Accounts User,Usuário de Contas DocType: Contact Us Settings,Email ID,Email ID apps/frappe/frappe/templates/emails/upcoming_events.html,Daily Event Digest is sent for Calendar Events where reminders are set.,O resumo de eventos diário é enviado para o Calendário de eventos onde os lembretes são definidos. @@ -447,12 +446,11 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,O usuár apps/frappe/frappe/core/doctype/user/user.py,Already Registered,Já está registrado apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Intervalo entre datas apps/frappe/frappe/public/js/frappe/list/base_list.js,Nothing to show,Nada para mostrar -DocType: Tag Category,Tag Category,Categoria da Tag apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},"Você não pode desabilitar ""Somente leitura"" para o campo {0}" DocType: DocShare,Document Name,Nome do documento apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} minutes ago,{0} minutos atrás DocType: Workflow,Transitions,Transições -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova Menção +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nova Menção DocType: Website Settings,Disable Signup,Desativar Registre-se apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Usuário é obrigatória para Partilhar apps/frappe/frappe/contacts/doctype/address_template/address_template.py,Setting this Address Template as default as there is no other default,"A definição desse modelo de endereço como padrão, pois não há outro padrão" @@ -560,7 +558,6 @@ DocType: User Permission,Applicable For,Aplicável apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Por favor de atualização para obter os últimos documentos. DocType: User,Bio,Bio apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Cabeçalho da Seção -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype para Atribuir Tags DocType: User,System User,Usuário do Sistema apps/frappe/frappe/email/doctype/email_account/email_account.js,"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\ @@ -606,7 +603,7 @@ DocType: Workflow State,resize-small,redimensionamento pequeno DocType: Workflow,"If checked, all other workflows become inactive.","Se marcada, todos os outros fluxos de trabalho tornam-se inativos." apps/frappe/frappe/workflow/doctype/workflow/workflow.py,Cannot cancel before submitting. See Transition {0},Não pode cancelar antes de enviar. DocType: Workflow,Workflow State Field,Campo do Status do Fluxo de Trabalho -DocType: Web Form Field,Fieldtype,FieldType +DocType: Onboarding Slide Field,Fieldtype,FieldType apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Não é possível identificar aberto {0}. Tente outra coisa. apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Linhas Adicionadas apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search Help,Procure Ajuda @@ -627,7 +624,6 @@ DocType: Workflow,Rules defining transition of state in the workflow.,Regras que DocType: DocType,Editable Grid,Grid Editável apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colunas baseadas em DocType: Chat Token,Chat Token,Token do bate-papo -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nova Mensagem de {0} apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Restaurar DocType: Workflow State,Refresh,Atualizar DocType: Help Article,Knowledge Base Contributor,Colaborador da Base de Conhecimento @@ -666,7 +662,6 @@ DocType: DocShare,Everyone,Todos apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Single types,Relatório não pode ser ajustada para os modelos únicos apps/frappe/frappe/geo/doctype/currency/currency.js,This Currency is disabled. Enable to use in transactions,Esta moeda é desativado. Ativar para usar em transações apps/frappe/frappe/templates/includes/search_box.html,Search results for,Pesquisar resultados para -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} mencionou você em um comentário em {1} ,Addresses And Contacts,Endereços e Contatos apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Ferramenta de segure e arraste para construir e personalizar formatos de impressão. DocType: Web Page,Website Sidebar,Menu Lateral do Site @@ -696,6 +691,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Convidar c apps/frappe/frappe/email/queue.py,Emails are muted,Emails são silenciados DocType: Portal Settings,Portal Settings,Configurações do Portal DocType: Portal Settings,Custom Menu Items,Itens de Menu Personalizado +DocType: Scheduled Job Log,Scheduled,Agendado DocType: User Email,Enable Outgoing,Ativar Saída apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Users with role {0}:,Os usuários com a função {0}: apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Seta para cima @@ -751,7 +747,7 @@ DocType: Contact Us Settings,Contact Us Settings,Configurações do Fale Conosco DocType: Print Format,Monospace,Monospace DocType: Property Setter,Property Setter,Configurador de Propriedades apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Igual -DocType: Web Page,Left,Saiu +DocType: Onboarding Slide Field,Left,Saiu DocType: Workflow State,Tags,Tags DocType: User,Change Password,Alterar a senha DocType: Auto Email Report,Day of Week,Dia da Semana @@ -768,13 +764,12 @@ apps/frappe/frappe/www/third_party_apps.html,Logged in,Logado apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Não há registros marcados. apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Somente o Administrador pode editar apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info: -DocType: Custom Script,Script,Script +DocType: Report,Script,Script DocType: Print Settings,Send document web view link in email,Enviar link no email para visualizar o documento online apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Não adicionado DocType: SMS Settings,Enter url parameter for receiver nos,Digite o parâmetro da url para os números de receptores DocType: DocField,Collapsible,Desmontável apps/frappe/frappe/public/js/frappe/views/communication.js,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/desk/form/assign_to.py,New Message,Nova Mensagem apps/frappe/frappe/www/login.py,Invalid Login Token,Inválido símbolo de logon apps/frappe/frappe/core/doctype/doctype/doctype.py,For {0} at level {1} in {2} in row {3},Por {0} a nível {1} em {2} na linha {3} DocType: Web Form,Sidebar Items,Itens da barra lateral @@ -904,6 +899,7 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please select D DocType: Website Settings,Hide Footer Signup,Esconder Link de Inscrição do Rodapé apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Não tem uma conta? Se inscreva apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Inválido Outgoing Mail Server ou Porto +DocType: Dashboard Chart,To Date,Até a Data apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Campo de imagem deve ser um nome de campo válido DocType: Workflow State,Stop,Parar DocType: User,Enabled,Habilitado @@ -948,7 +944,7 @@ DocType: SMS Settings,Enter url parameter for message,Digite o parâmetro da url DocType: Website Script,Website Script,Script do Site apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permitindo DocType , DocType . Tenha cuidado !" apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Half Day,Meio Período -DocType: Event,Details,Detalhes +DocType: Scheduled Job Log,Details,Detalhes apps/frappe/frappe/handler.py,Logged Out,Deslogado apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Verifique se o seu perfil tem um endereço de email apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Options for select. Each option on a new line.,Opções para selecionar. Cada opção em uma nova linha. @@ -968,11 +964,13 @@ DocType: Desktop Icon,Reverse Icon Color,Inverter Cor do Ícone apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to enable Allow on Submit for standard fields,Linha {0}: Não é permitido habilitar Permitir ao Enviar para campos padrão DocType: Workflow State,warning-sign,sinal de alerta DocType: User,Allow user to login only after this hour (0-24),Permitir que o usuário faça o login somente após este horário (0-24) +DocType: Dashboard Chart,From Date,A Partir da Data DocType: DocField,Collapsible Depends On,Depende dobrável DocType: Social Login Key,Access Token URL,URL do Token de Acesso DocType: Letter Head,Default Letter Head,Cabeçalho Padrão 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/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (esconder , readonly , permissão etc )" +DocType: Dashboard Chart,Group By,Agrupar por DocType: Print Settings,Allow Print for Cancelled,Permitir impressão para cancelado apps/frappe/frappe/core/doctype/communication/communication.js,Relink,Relinkar DocType: Data Export,Select DocType,Selecione o DocType @@ -1105,7 +1103,7 @@ DocType: Email Account,Check this to pull emails from your mailbox,Marque para b DocType: System Settings,yyyy-mm-dd,dd/mm/yyyy DocType: OAuth Client, Advanced Settings,Configurações Avançadas apps/frappe/frappe/config/website.py,Settings for About Us Page.,Configurações para a Página Sobre Nós. -DocType: Address,Email Address,Endereço de Email +apps/frappe/frappe/www/login.py,Email Address,Endereço de Email DocType: Address,Purchase User,Usuário de Compras apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Erro conjunto aninhado . Entre em contato com o administrador. DocType: Report,Report Builder,Criar/Editar Relatório @@ -1219,7 +1217,6 @@ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking t DocType: Custom Field,Depends On,Depende de apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datas são frequentemente fáceis de adivinhar. DocType: Comment,Relinked,Relinkado -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/__init__.py,App {0} is not installed,App {0} não está instalado DocType: Print Format,Custom HTML Help,Ajuda HTML Personalizado apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifique a Senha @@ -1281,7 +1278,7 @@ DocType: DocType,Naming,Nomeação DocType: Workflow,Defines workflow states and rules for a document.,Define o status de fluxo de trabalho e regras para um documento. apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Não é Possível Remover DocType: Workflow State,hand-up,mão acima -DocType: Top Bar Item,Right,À direita +DocType: Onboarding Slide Field,Right,À direita apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Selecione a Função apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Selecione um nó de grupo primeiro. apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Exportação não é permitido. Você precisa da função {0} para exportar. @@ -1313,7 +1310,6 @@ DocType: Chat Room,Owner,Proprietário apps/frappe/frappe/config/core.py,Errors in Background Events,Erros em Eventos em Segundo Plano DocType: File,Is Attachments Folder,É Pasta de Anexos apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Ações para o fluxo de trabalho (por exemplo, Aprovar , Cancelar) ." -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Uma nova tarefa, {0}, foi atribuída a você por {1}. {2}" apps/frappe/frappe/config/core.py,Background Email Queue,Fila de Email em Segundo Plano DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","ex: ""Pós-Venda"", "" Vendas "", ""Edmilson""" apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Suas informações foram enviadas diff --git a/frappe/translations/ro.csv b/frappe/translations/ro.csv index de98429598..8ee9b30c39 100644 --- a/frappe/translations/ro.csv +++ b/frappe/translations/ro.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vă rugăm să selectați o Suma de câmp. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Se încarcă fișierul de import ... DocType: Assignment Rule,Last User,Ultimul utilizator -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","O nouă sarcină, {0}, v-a fost atribuită de catre {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Salvarea implicită a sesiunii apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Reîncărcați fișierul DocType: Email Queue,Email Queue records.,înregistrări de e-mail coadă. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} arbore DocType: User,User Emails,E-mailurile utilizator DocType: User,Username,Nume de utilizator apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importați zip +DocType: Scheduled Job Type,Create Log,Creați jurnal apps/frappe/frappe/model/base_document.py,Value too big,Valoare prea mare DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Executați testul Script @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Lunar DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Activați intrare apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Pericol -DocType: Address,Email Address,Adresa De E-Mail +apps/frappe/frappe/www/login.py,Email Address,Adresa De E-Mail DocType: Workflow State,th-large,th-mare DocType: Communication,Unread Notification Sent,Notificare necitit Trimis apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export nu este permisă. Ai nevoie de {0} rolul de a exporta. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Anul DocType: DocType,Is Published Field,Este publicat Câmp DocType: GCalendar Settings,GCalendar Settings,Setări GCalendar DocType: Email Group,Email Group,E-mail grup +apps/frappe/frappe/__init__.py,Only for {},Doar pentru {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - Nu s-a putut șterge Evenimentul {0} din Google Calendar, codul de eroare {1}." DocType: Event,Pulled from Google Calendar,Extras din Google Calendar DocType: Note,Seen By,Văzut de apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Adăugați mai multe -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Ai câștigat câteva puncte de energie apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nu este o imagine validă a utilizatorului. DocType: Energy Point Log,Reverted,Reluat DocType: Success Action,First Success Message,Primul mesaj de succes @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nu ca apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valoare incorectă: {0} trebuie sa fie {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Proprietățile schimbare de câmp (ascunde, readonly, permisiunea etc)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,A aprecia +DocType: Notification Settings,Document Share,Partajarea documentelor DocType: Workflow State,lock,blocare apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Setări pentru Contacteaza-ne. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administratorul a fost autentificat @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Dacă este activat, documentul este marcat ca văzut, prima dată când un utilizator îl deschide" DocType: Auto Repeat,Repeat on Day,Repetați în Ziua DocType: DocField,Color,Culoare +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Marcheaza totul ca fiind citit DocType: Data Migration Run,Log,Buturuga DocType: Workflow State,indent-right,liniuța-dreapta DocType: Has Role,Has Role,are rol @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Afișare Traceback DocType: DocType,Default Print Format,Implicit Print Format DocType: Workflow State,Tags,Etichete +DocType: Onboarding Slide,Slide Type,Tip diapozitiv apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nici una: Sfârșitul de flux de lucru apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} câmpul nu poate fi setat ca unic în {1}, deoarece sunt valori existente non-unice" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipuri de Documente @@ -136,7 +139,6 @@ DocType: Language,Guest,Oaspete DocType: DocType,Title Field,Titlu de câmp DocType: Error Log,Error Log,eroare Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL invalid -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Ultimele 7 zile apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Repetări, cum ar fi "abcabcabc" sunt doar puțin mai greu de ghicit decât "abc"" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Dacă credeți că acest lucru este neautorizată, vă rugăm să schimbați parola de administrator." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Client apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Selectați Coloana apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Această formă a fost modificat după ce ați încărcat DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Jurnalul de notificări 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Deschideți Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Sl apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Trimiteți DocType: Workflow Action Master,Workflow Action Name,Flux de lucru Acțiune Nume apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType nu se pot uni -DocType: Web Form Field,Fieldtype,Tip câmp +DocType: Onboarding Slide Field,Fieldtype,Tip câmp apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nu este un fișier zip DocType: Global Search DocType,Global Search DocType,Căutare globală DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Email Trimis? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Comutare Diagramă apps/frappe/frappe/desk/form/save.py,Did not cancel,Nu a anula DocType: Social Login Key,Client Information,Informații despre client +DocType: Energy Point Rule,Apply this rule only once per document,Aplicați această regulă o singură dată pe document DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Citește doar Citește apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Autentificat ca invitat sau Administrator DocType: Email Account,UNSEEN,NEVĂZUT apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Manager de fișiere @@ -202,9 +207,11 @@ DocType: Communication,BCC,CCA DocType: Unhandled Email,Reason,Motiv 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Fără activitate +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Fără activitate apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplicații terță parte apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nu există evenimente astăzi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nu puteți da puncte de recenzie pentru dvs. apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType trebuie să fie transmisibil pentru Evenimentul Doc selectat DocType: Workflow State,circle-arrow-up,cerc-săgeată-up @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nu este permis pentru {0}: {1}. Câmp restricționat: {2} 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,You are not allowed to delete a standard Website Theme,Nu vi se permite să ștergeți o temă Website standard de +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Creați primul dvs. {0} DocType: Data Import,Log Details,Detaliile jurnalelor DocType: Workflow Transition,Example,Exemplu DocType: Webhook Header,Webhook Header,Antetul Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Context de chat apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Marcheaza ca citit apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Actualizarea {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Există deja o diapozitivă de bord <b>{0}</b> cu aceeași ordine de diapozitive apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Dezactivați Raport DocType: Translation,Contributed Translation Doctype Name,Traducere contribuită Nume Doctype +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Formularizare personalizare DocType: PayPal Settings,Redirect To,Redirectionare catre DocType: Data Migration Mapping,Pull,Trage DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Rezultatele intern de acți DocType: Energy Point Settings,Review Levels,Niveluri de revizuire DocType: Workflow State,Comment,Comentariu DocType: Data Migration Plan,Postprocess Method,Metoda postproces +DocType: DocType Action,Action Type,Tipul de acțiune apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fa o poza DocType: Assignment Rule,Round Robin,Robin rotund apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Puteți schimba documentele prezentate de anularea lor și apoi, de modificare a acestora." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salvează ca DocType: Comment,Seen,Văzut apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Arată mai multe detalii +DocType: Server Script,Before Submit,Înainte de Trimitere 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,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,Archive,Arhiva @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Cheie de Acces Dropbox apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Adresă greșită <b>{0}</b> în configurația add_fetch a scriptului personalizat apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Selectați Contacte Google la care contact trebuie sincronizat. DocType: Web Page,Main Section (HTML),Secțiunea principală (HTML) +DocType: Scheduled Job Type,Annual,Anual DocType: Workflow State,headphones,căști apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Parola este necesară sau selectați Asteptand parolă DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,"de exemplu, replies@yourcomany.com. Toate răspunsurile vor veni la acest inbox." DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Determină ordinea diapozitivului în vrăjitor. Dacă diapozitivul nu este afișat, prioritatea trebuie să fie setată pe 0." DocType: Data Migration Run,Current Mapping,Cartografiere Curentă apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Este necesar un nume și un email valid apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Faceți toate atașamentele private @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Reguli de tranziție apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Se afișează doar primele {0} rânduri în previzualizare apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemplu: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,restricţii DocType: Workflow,Defines workflow states and rules for a document.,Definește state flux de lucru și reguli de un document. DocType: Workflow State,Filter,filtru apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Verificați jurnalul de erori pentru mai multe informații: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Loc de munca apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} logged out: {1} DocType: Address,West Bengal,Bengalul de Vest +DocType: Onboarding Slide,Information,informație apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nu se poate seta Alocați Introducere dacă nu există posibilitate de introducere DocType: Transaction Log,Row Index,Indicele rândului DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,butonul Ajutor DocType: Kanban Board Column,purple,Violet DocType: About Us Settings,Team Members,Membrii echipei +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Va rula lucrări programate doar o dată pe zi pentru site-uri inactive. Implicit 4 zile dacă este setat la 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Job programat DocType: Custom DocPerm,Permissions,Permisiuni apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pentru integrarea interna DocType: Dropbox Settings,Allow Dropbox Access,Permiteţi accesul Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scane DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Coadă DocType: Access Log,Columns / Fields,Coloane / Câmpuri apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stiluri pentru formate de tipărire +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Câmpul Funcție agregată este necesar pentru a crea o diagramă de bord apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Nu se poate identifica deschis {0}. Încercați altceva. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Informațiile dvs. au fost depuse apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Utilizatorul {0} nu poate fi ștearsă @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Nume câmp DocType: Assignment Rule,Assign To Users,Alocare utilizatorilor apps/frappe/frappe/public/js/frappe/utils/utils.js,or,sau apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,nume de modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Continua +DocType: Onboarding Slide,Continue,Continua apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integrarea Google este dezactivată. DocType: Custom Field,Fieldname,Nume câmp DocType: Workflow State,certificate,certificat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Se verifică ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Sarcina dvs. din {0} {1} a fost eliminată apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Coloană în prima date trebuie să fie gol. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Afișați toate versiunile apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Vezi comentariu @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Restricționeaza IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Tablou de Bord apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nu s-au putut trimite email-uri în acest moment apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - Nu s-a putut actualiza Evenimentul {0} în Google Calendar, codul de eroare {1}." +DocType: Notification Log,Email Content,Conținut prin e-mail apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Căutare sau tastați o comandă DocType: Activity Log,Timeline Name,Nume cronologie apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Doar unul {0} poate fi setat ca principal. DocType: Email Account,e.g. smtp.gmail.com,"de exemplu, smtp.gmail.com" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Adăuga o regulă nouă DocType: Contact,Sales Master Manager,Vânzări Maestru de Management +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Trebuie să activați JavaScript pentru ca aplicația dvs. să funcționeze. DocType: User Permission,For Value,Pentru valoare DocType: Event,Google Calendar ID,Codul Google Calendar apps/frappe/frappe/www/complete_signup.html,One Last Step,Unul ultim pas @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Câmpul Nume mediu LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importarea {0} din {1} DocType: GCalendar Account,Allow GCalendar Access,Permiteți accesul GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} este un câmp obligatoriu +DocType: DocType,Documentation Link,Link de documentare apps/frappe/frappe/templates/includes/login/login.js,Login token required,Este necesar un jeton de conectare apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rang lunar: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selectați mai multe articole din listă @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL fișier DocType: Version,Table HTML,Tabelul HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Adăugaţi Abonați +DocType: Notification Log,Energy Point,Punctul de energie apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Evenimente viitoare de azi DocType: Google Calendar,Push to Google Calendar,Apăsați pe Google Calendar DocType: Notification Recipient,Email By Document Field,E-mail prin documentul de câmp @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Departe DocType: Currency,Fraction Units,Unități de Fractiune apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} de la {1} pana la {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Marcați ca terminat DocType: Chat Message,Type,Tip DocType: Google Settings,OAuth Client ID,ID client OAuth DocType: Auto Repeat,Subject,Subiect apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Înapoi la birou DocType: Web Form,Amount Based On Field,Suma bazată pe câmp +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nu a urmărit versiuni. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Utilizatorul este obligatorie pentru cota DocType: DocField,Hidden,ascuns DocType: Web Form,Allow Incomplete Forms,Permiteţi Formulare Incomplete @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,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,Fold can not be at the end of the form,Fold nu poate fi la sfârșitul formularului DocType: Communication,Bounced,Returnate +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,de DocType: Deleted Document,Deleted Name,Nume șters apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,De sistem și site Utilizatori DocType: Workflow Document State,Doc Status,Doc Starea @@ -526,6 +551,7 @@ DocType: Language,Language Code,Codul de limbă DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Notă: În mod prestabilit, e-mailurile pentru copii de siguranță eșuate sunt trimise." apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Adăugați filtru apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS expediat la următoarele numere: {0} +DocType: Notification Settings,Assignments,Alocări apps/frappe/frappe/utils/data.py,{0} and {1},{0} și {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Începeți o conversație. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Întotdeauna adăugați Rubrica ""Schiţă"" pentru schiţa de imprimare documente" @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,Înregistrarea curentă a cart apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mailul a fost marcat ca spam DocType: Comment,Website Manager,Site-ul Manager de apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Încărcarea fișierului este deconectată. Vă rugăm să încercați din nou. +DocType: Data Import Beta,Show Failed Logs,Afișează jurnalele eșuate apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Traduceri apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Ați selectat documente de tip Proiect sau anulate apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Documentul {0} a fost setat la starea {1} până la {2} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,documentul Queued DocType: GSuite Templates,Destination ID,ID-ul destinației DocType: Desktop Icon,List,Listă DocType: Activity Log,Link Name,link Nume +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Nu ai \ DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa +DocType: Onboarding Slide,Onboarding Slide,Diapozitiv de bord apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Parolă Invalidă: apps/frappe/frappe/core/doctype/user/user.py,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 @@ -603,6 +632,7 @@ DocType: Kanban Board Column,darkgrey,gri inchis apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},De succes: {0} {1} la apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,cădere brusca +DocType: Dashboard Chart,Aggregate Function Based On,Funcție agregată bazată pe apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Vă rugăm să duplicat acest lucru pentru a face schimbări apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Apăsați Enter pentru a salva apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generație PDF a eșuat din cauza link-uri imagine rupte @@ -616,7 +646,9 @@ DocType: Notification,Days Before,Zilele Înainte de apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Evenimentele zilnice ar trebui să termine în aceeași zi. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Editați | ×... DocType: Workflow State,volume-down,volum-jos +DocType: Onboarding Slide,Help Links,Link-uri de ajutor apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accesul nu este permis de la această adresă IP +DocType: Notification Settings,Enable Email Notifications,Activați notificările prin e-mail apps/frappe/frappe/desk/reportview.py,No Tags,Fără Etichete DocType: Email Account,Send Notification to,Trimite Notificarea DocType: DocField,Collapsible,Rabatabil @@ -645,6 +677,7 @@ DocType: Google Drive,Last Backup On,Ultima copie de rezervă activată DocType: Customize Form Field,Customize Form Field,Particularizare Câmp Formular DocType: Energy Point Rule,For Document Event,Pentru evenimentul documentului DocType: Website Settings,Chat Room Name,Numele camerei de chat +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Neschimbat DocType: OAuth Client,Grant Type,Tipul de grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Verificați care Documentele sunt ușor de citit de către un utilizator DocType: Deleted Document,Hub Sync ID,Hub ID de sincronizare @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,util DocType: Auto Repeat,Quarterly,Trimestrial apps/frappe/frappe/email/doctype/email_account/email_account.js,"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,Resetează Cheie Parolă +DocType: Dashboard Chart,All Time,Tot timpul apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Starea documentului ilegal pentru {0} DocType: Email Account,Enable Auto Reply,Activați Auto Raspunde apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nu a vazut @@ -664,6 +698,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Mesaj DocType: Email Account,Notify if unreplied,Anunta dacă fara raspuns apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Scanați codul QR și introduceți codul rezultat afișat. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Activați Gradienți +DocType: Scheduled Job Type,Hourly Long,Pe oră lungă DocType: System Settings,Minimum Password Score,Scorul minim al parolei DocType: System Settings,Minimum Password Score,Scorul minim al parolei DocType: DocType,Fields,Câmpuri @@ -672,11 +707,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tabe apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup complet! apps/frappe/frappe/config/desktop.py,Developer,Dezvoltator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creat +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Pentru ao activa, urmați instrucțiunile din următorul link: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} din rândul {1} nu poate avea atât URL cât și articole copil apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Trebuie să existe cel puțin un rând pentru următoarele tabele: {0} DocType: Print Format,Default Print Language,Limbă de imprimare implicită apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Strămoșii din apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Rădăcină {0} nu poate fi ștearsă +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Nu există jurnalele eșuate apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Nu există comentarii încă apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Configurați SMS-ul înainte de al seta ca metodă de autentificare, prin intermediul setărilor SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Atât tipul de document cât și denumirea sunt necesare @@ -700,6 +737,7 @@ DocType: Website Settings,Footer Items,Subsol Articole apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meniu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Zilnic +DocType: Onboarding Slide,Max Count,Contele Max apps/frappe/frappe/config/users_and_permissions.py,User Roles,Roluri de utilizator DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Proprietatea Setter suprascrie un DocType standard sau proprietate teren apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nu pot actualiza: incorectă / expirat Link. @@ -718,6 +756,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Gazdă DocType: Data Import Beta,Import File,Fișier de import +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Model de eroare apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Coloana <b>{0}</b> există deja. DocType: ToDo,High,Ridicat apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Eveniment nou @@ -733,6 +772,7 @@ DocType: Web Form Field,Show in filter,Afișați în filtru DocType: Address,Daman and Diu,Daman și Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Proiect DocType: Address,Personal,Trader +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Setări de imprimare brute ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Consultați https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region pentru detalii. apps/frappe/frappe/config/settings.py,Bulk Rename,Redenumire în masă DocType: Email Queue,Show as cc,Arată ca cc @@ -742,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Luați video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informații introductive pentru Contactati-ne Pagina DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,degetele-jos +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Anularea documentelor DocType: User,Send Notifications for Email threads,Trimiteți notificări pentru subiectele de e-mail apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nu în modul Developer @@ -749,7 +790,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Suportul de DocType: DocField,In Global Search,În căutare globală DocType: System Settings,Brute Force Security,Siguranța Forței de Securitate DocType: Workflow State,indent-left,liniuța-stânga -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} an (i) în urmă apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Este riscant să ștergeți acest fișier: {0}. Vă rugăm să contactați Managerul de sistem. DocType: Currency,Currency Name,Denumire valută apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Niciun e-mail @@ -764,11 +804,13 @@ DocType: Energy Point Rule,User Field,Câmpul utilizator DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Apăsați Ștergeți apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} deja dezabonat de la {1} {2} +DocType: Scheduled Job Type,Stopped,Oprita apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nu a eliminat apps/frappe/frappe/desk/like.py,Liked,Apreciate apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Trimite Acum apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType nu poate avea format de imprimare implicit, utilizați Customize Form" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType nu poate avea format de imprimare implicit, utilizați Customize Form" +DocType: Server Script,Allow Guest,Permiteți oaspeților DocType: Report,Query,Interogare DocType: Customize Form,Sort Order,Ordine de sortare apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""În vizualizare listă"" nu este permisã pentru tipul {0} în rândul {1}" @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Două metode de autentificare a factorilor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Mai întâi setați numele și salvați înregistrarea. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 înregistrări +DocType: DocType Link,Link Fieldname,Numele câmpului de legătură apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},În comun cu {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Dezabonare DocType: View Log,Reference Name,Nume Referință apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Schimbă utilizatorul +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primul apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Actualizați traducerile DocType: Error Snapshot,Exception,Excepţie DocType: Email Account,Use IMAP,Utilizarea IMAP @@ -808,6 +852,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Normele care definesc tranziție de stat în fluxul de lucru. DocType: File,Folder,Dosar DocType: Website Route Meta,Website Route Meta,Website Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Câmp de diapozitive la bord DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Director apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opțiunea 1 @@ -834,7 +879,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurează Diagrame DocType: User,Last IP,Ultima adresă IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Adăugă un subiect la adresa e-mail-ul tău -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Un nou document {0} a fost împărtășit cu dvs. {1}. DocType: Data Migration Connector,Data Migration Connector,Conector Migrație Date apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} inversat {1} DocType: Email Account,Track Email Status,Urmăriți starea e-mailului @@ -887,6 +931,7 @@ DocType: Email Account,Default Outgoing,Implicit ieșire DocType: Workflow State,play,Joacă apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Faceți clic pe linkul de mai jos pentru a finaliza înregistrarea și setați o parolă nouă apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nu a adăuga +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} a câștigat {1} puncte pentru {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nu există conturi e-mail atribuite DocType: S3 Backup Settings,eu-west-2,UE-vest-2 DocType: Contact Us Settings,Contact Us Settings,Contactati-ne Setări @@ -894,6 +939,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,In cautar DocType: Workflow State,text-width,text cu lățime apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Limita maxima Anexa pentru acest record atins. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Căutare după nume de fișier sau extensie +DocType: Onboarding Slide,Slide Title,Titlu de prezentare DocType: Notification,View Properties (via Customize Form),Vezi Properties (prin Customize Formular) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Faceți clic pe un fișier pentru a-l selecta. DocType: Note Seen By,Note Seen By,Notă văzut de @@ -920,13 +966,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Distribuiți adresa URL DocType: System Settings,Allow Consecutive Login Attempts ,Permiteți încercări de conectare consecutive apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,A apărut o eroare în timpul procesului de plată. Va rog sa ne contactati. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Dacă tipul de diapozitiv este Creat sau Setări, ar trebui să existe o metodă 'create_onboarding_docs' în fișierul {ref_doctype} .py care trebuie executat după finalizarea diapozitivului." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} zile în urmă DocType: Email Account,Awaiting Password,Asteapta parola DocType: Address,Address Line 1,Adresă Linie 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nu sunt urmașii DocType: Contact,Company Name,Denumire Furnizor DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Setări ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,la browserul dvs. apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Recorder @@ -986,6 +1032,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Urmăriți dacă e-mailul dvs. a fost deschis de către destinatar. <br> Notă: dacă trimiteți la mai mulți destinatari, chiar dacă un destinatar citește e-mailul, acesta va fi considerat "Deschis"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Valorile lipsă necesare apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permiteți accesul contactelor Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,restricționat DocType: Data Migration Connector,Frappe,Frappé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Marcheaza ca necitit DocType: Activity Log,Operation,Operație @@ -1039,6 +1086,7 @@ DocType: Web Form,Allow Print,Se permite Print DocType: Communication,Clicked,Clic pe apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nu mai urmări apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Permisiunea de a '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vă rugăm să configurați contul de e-mail implicit din Configurare> Email> Cont de e-mail apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Programată pentru a trimite DocType: DocType,Track Seen,Văzut pe șenile DocType: Dropbox Settings,File Backup,File Backup @@ -1047,12 +1095,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Nr {0} găsit apps/frappe/frappe/config/customization.py,Add custom forms.,Adăugaţi formulare personalizate. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} din {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,a prezentat acest document -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisii utilizator apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistemul oferă multe roluri predefinite. Puteți adăuga noi roluri pentru a seta permisiuni fine. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Numele de declanșare -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domenii +DocType: Onboarding Slide,Domains,Domenii DocType: Blog Category,Blog Category,Categorie Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: , DocType: Role Permission for Page and Report,Roles HTML,Roluri HTML @@ -1093,7 +1140,6 @@ DocType: Assignment Rule Day,Saturday,Sâmbătă DocType: User,Represents a User in the system.,Reprezintă un Utilizator în sistem. DocType: List View Setting,Disable Auto Refresh,Dezactivați actualizarea automată DocType: Comment,Label,Etichetă -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Sarcina {0}, care atribuit {1}, a fost închis." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Închideți această fereastră DocType: Print Format,Print Format Type,Print Format Tip DocType: Newsletter,A Lead with this Email Address should exist,Ar trebui să existe o Pistă cu această adresă de E-mail @@ -1110,6 +1156,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Setări SMTP pentru e-m apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,alege un DocType: Data Export,Filter List,Filtrați lista DocType: Data Export,Excel,excela +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Mesaj Răspuns Automat DocType: Data Migration Mapping,Condition,Condiție apps/frappe/frappe/utils/data.py,{0} hours ago,Cu {0} ore in urma @@ -1128,12 +1175,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Baza de cunoștințe Colaborator DocType: Communication,Sent Read Receipt,Trimis Citire Chitanță DocType: Email Queue,Unsubscribe Method,Metoda de dezabonare +DocType: Onboarding Slide,Add More Button,Adaugă butonul Mai mult DocType: GSuite Templates,Related DocType,DocType asociat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Editează pentru a adăuga conținut apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,selectaţi limba apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detaliile cardului apps/frappe/frappe/__init__.py,No permission for {0},Nu permisiune pentru {0} DocType: DocType,Advanced,Avansat +DocType: Onboarding Slide,Slide Image Source,Slide Image Source apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referință: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,doamna @@ -1150,6 +1199,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Utilizatorul nu poate crea apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Realizat cu succes apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,acces Dropbox este aprobat! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Sigur doriți să îmbinați {0} cu {1}? DocType: Customize Form,Enter Form Type,Introduceți tip formular DocType: Google Drive,Authorize Google Drive Access,Autorizați Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Lipsește parametrul Kanban Board Name @@ -1159,7 +1209,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permiterea Tip Document, Tip Document. Fiți atent!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formate personalizate pentru imprimare, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Actualizat la noua versiune DocType: Custom Field,Depends On,Depinde DocType: Kanban Board Column,Green,Verde DocType: Custom DocPerm,Additional Permissions,Permisiuni suplimentare @@ -1187,6 +1236,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar - Nu s-a putut crea Calendar pentru {0}, cod de eroare {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Editarea Row DocType: Workflow Action Master,Workflow Action Master,Workflow Acțiune Masterat +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Sterge tot DocType: Custom Field,Field Type,Tip de câmp apps/frappe/frappe/utils/data.py,only.,numai. DocType: Route History,Route History,Istoric Traseu @@ -1223,11 +1273,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Aţi uitat parola? DocType: System Settings,yyyy-mm-dd,aaaa-ll-zz apps/frappe/frappe/desk/report/todo/todo.py,ID,ID-ul apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Eroare de server +DocType: Server Script,After Delete,După Ștergere apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Vedeți toate rapoartele anterioare. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Este necesară autentificare Id DocType: Website Slideshow,Website Slideshow,Site-ul Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, care este pagina de start site-ul web. Link-uri standard (index, autentificare, produse, blog, despre, contact)" +DocType: Server Script,After Submit,După Trimitere apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentificarea a eșuat în timp ce a primit e-mailuri de la e-mail Contul {0}. Mesaj de pe server: {1} DocType: User,Banner Image,Imagine banner DocType: Custom Field,Custom Field,Câmp personalizat @@ -1268,15 +1320,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","În cazul în care utilizatorul are nici un rol verificat, atunci utilizatorul devine un "sistem de utilizatori". "Utilizator System" are acces la spațiul de lucru" DocType: System Settings,Date and Number Format,Format Dată și Număr apps/frappe/frappe/model/document.py,one of,unul dintre -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Formularizare personalizare apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Verificarea un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Arată Etichete DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator +DocType: DocType,Actions,Acțiuni DocType: Workflow State,align-justify,aliniați-justify DocType: User,Middle Name (Optional),Al Doilea Nume (Opțional) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nu este permisă @@ -1291,6 +1341,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nici un rez DocType: System Settings,Security,Securitate apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Programat pentru a trimite la {0} destinatari apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,A taia +DocType: Server Script,After Save,După Salvare apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},redenumit de la {0} la {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} din {1} ({2} rânduri cu copii) DocType: Currency,**Currency** Master,Master **Monedă** @@ -1317,16 +1368,19 @@ DocType: Prepared Report,Filter Values,Valoarea filtrului DocType: Communication,User Tags,Etichete Utilizator DocType: Data Migration Run,Fail,eșua DocType: Workflow State,download-alt,descarcati-alt +DocType: Scheduled Job Type,Last Execution,Ultima executie DocType: Data Migration Run,Pull Failed,Trageți eșuat apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Afișați / Ascundeți cărțile DocType: Communication,Feedback Request,Feedback cerere apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importați date din fișiere CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Următoarele câmpuri lipsește: +DocType: Notification Log,From User,De la Utilizator apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Anulează {0} DocType: Web Page,Main Section,Secțiune Principală DocType: Page,Icon,icoană apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Sugestie: Includeți simboluri, numere și majuscule în parolă" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Sugestie: Includeți simboluri, numere și majuscule în parolă" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Configurați notificările pentru mențiuni, atribuții, puncte de energie și multe altele." DocType: DocField,Allow in Quick Entry,Permiteți înregistrarea rapidă apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,zz / ll / aaaa @@ -1358,7 +1412,6 @@ DocType: Website Theme,Theme URL,URL temă DocType: Customize Form,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,Edit Filter,Editare filtru -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Adăugă Mai Mult DocType: System Settings,Session Expiry Mobile,Sesiune de expirare Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Utilizator incorect sau parolă apps/frappe/frappe/templates/includes/search_box.html,Search results for,cauta rezultate pentru @@ -1374,8 +1427,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Regula punctului energetic DocType: Communication,Delayed,Întârziat apps/frappe/frappe/config/settings.py,List of backups available for download,Listă de backup disponibile pentru descărcare +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Încercați noul Import de date apps/frappe/frappe/www/login.html,Sign up,Inscrie-te apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rând {0}: Nu este permisă dezactivarea obligatorie pentru câmpurile standard +DocType: Webhook,Enable Security,Activați securitatea apps/frappe/frappe/config/customization.py,Dashboards,Tablourile de bord DocType: Test Runner,Output,producție DocType: Milestone,Track Field,Pista de alergat @@ -1383,6 +1438,7 @@ DocType: Notification,Set Property After Alert,Setați proprietatea după alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Adăugați câmpuri în formulare. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Adăugați recenzia +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} v-a atribuit o nouă sarcină {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Dimensiunea fontului (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Doar DocTypes standard este permis să fie personalizat din Formularizare personalizată. DocType: Email Account,Sendgrid,Sendgrid @@ -1394,8 +1450,10 @@ DocType: Portal Menu Item,Portal Menu Item,Meniu portal Articol apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Setați filtrele DocType: Contact Us Settings,Email ID,Id Email DocType: Energy Point Rule,Multiplier Field,Câmp multiplicator +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nu s-a putut crea o comandă Razorpay. Vă rugăm să contactați administratorul DocType: Dashboard Chart,Time Interval,Interval de timp DocType: Activity Log,Keep track of all update feeds,Urmăriți toate feedurile de actualizare +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} a distribuit un document {1} {2} cu tine DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"O listă de resurse pe care App Clientul va avea acces la după ce utilizatorul permite acest lucru. <br> de exemplu, proiect" DocType: Translation,Translated Text,Textul tradus DocType: Contact Us Settings,Query Options,Opțiuni de interogare @@ -1414,6 +1472,7 @@ DocType: DefaultValue,Key,Cheie DocType: Address,Contacts,Persoane de Contact DocType: System Settings,Setup Complete,Configurare completă apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raportul de toate acțiunile de documente +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Modelul de import trebuie să fie de tipul .csv, .xlsx sau .xls" apps/frappe/frappe/www/update-password.html,New Password,Parola nouă apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtru {0} lipsă apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Ne pare rău! Nu puteți șterge comentariile generate automat @@ -1430,6 +1489,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Rulează DocType: Blog Post,Content (HTML),Conținut (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Configurare pentru DocType: Personal Data Download Request,User Name,Nume de utilizator DocType: Workflow State,minus-sign,minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nu a fost găsit @@ -1437,11 +1497,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Nu {0} permisiunea apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export personalizate Permisiuni apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nu au fost gasite articolele. DocType: Data Export,Fields Multicheck,Câmpurile Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Complet DocType: Activity Log,Login,Conectare DocType: Web Form,Payments,Plăți apps/frappe/frappe/www/qrcode.html,Hi {0},Bună {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integrare Google Drive -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} a revenit punctele tale în {1} {2} DocType: System Settings,Enable Scheduled Jobs,Activați Jobs programate apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Observații: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inactiv @@ -1466,6 +1526,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Șablo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Eroare de permisiune apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Numele de {0} nu poate fi {1} DocType: User Permission,Applicable For,Aplicabil pentru +DocType: Dashboard Chart,From Date,Din data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Succes apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesiunea a expirat apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesiunea a expirat @@ -1478,7 +1539,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nu este permis în stare DocType: Async Task,Async Task,Asincron Sarcina DocType: Workflow State,picture,poză -apps/frappe/frappe/www/complete_signup.html,Complete,Complet +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Complet DocType: DocType,Image Field,Imagine Câmp DocType: Print Format,Custom HTML Help,Personalizat HTML Help DocType: LDAP Settings,Default Role on Creation,Rolul implicit la creație @@ -1486,6 +1547,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,State următor DocType: User,Block Modules,Module de blocare DocType: Print Format,Custom CSS,CSS personalizat +DocType: Energy Point Rule,Apply Only Once,Aplicați o singură dată apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Adăugaţi un comentariu DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorat: {0} {1} la @@ -1497,6 +1559,7 @@ DocType: Email Account,Default Incoming,Implicit intrare DocType: Workflow State,repeat,repetă DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Valoarea trebuie să fie una dintre {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Anulați toate documentele 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Accesați lista {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ajutor pe Cautare @@ -1505,6 +1568,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Înregistra apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Repetarea automată pentru acest document a fost dezactivată. DocType: DocType,Hide Copy,Ascunde Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Șterge toate rolurile +DocType: Server Script,Before Save,Înainte de a salva apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} trebuie să fie unic apps/frappe/frappe/model/base_document.py,Row,Rând apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC și e-mail" @@ -1515,7 +1579,6 @@ DocType: Chat Profile,Offline,Deconectat apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importat cu succes {0} DocType: User,API Key,Cheie API DocType: Email Account,Send unsubscribe message in email,Trimite mesajul dezabonare de e-mail -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Editează Titlu apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Nume câmp care va fi DocType.Referinta pentru acest domeniu link. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Documente atribuite pentru tine si de tine. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,"Puteți, de asemenea, copia-lipiți acest lucru" @@ -1547,8 +1610,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Atașați imagine DocType: Workflow State,list-alt,Lista-alt apps/frappe/frappe/www/update-password.html,Password Updated,Parola Actualizat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisii utilizator apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Pași pentru a vă verifica datele de conectare apps/frappe/frappe/utils/password.py,Password not found,Parola nu a fost găsit +DocType: Webhook,Webhook Secret,Secret Webhook DocType: Data Migration Mapping,Page Length,Lungime Pagină DocType: Email Queue,Expose Recipients,Expose Destinatari apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Adăugare Pentru a este obligatorie pentru mail-uri primite @@ -1576,6 +1641,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Dimensiunea maximă a atașamentului (în MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ai un cont? Conecta +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Setări tipărire ... DocType: Workflow State,arrow-down,săgeată-în jos apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rândul {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Utilizatorul nu este permis pentru a șterge {0}: {1} @@ -1597,6 +1663,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Introduce DocType: Dropbox Settings,Dropbox Access Secret,Secret pentru Acces Dropbox DocType: Tag Link,Document Title,Titlul documentului apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatoriu) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} an (i) în urmă DocType: Social Login Key,Social Login Provider,Furnizor de conectare socială apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Adaugă alt Comentariu apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nu există date în fișier. Reatașați noul fișier cu date. @@ -1611,11 +1678,12 @@ DocType: Workflow State,hand-down,mână-jos apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Nu au fost găsite câmpuri care să poată fi utilizate ca o coloană Kanban. Folosiți Formularul de personalizare pentru a adăuga un câmp personalizat de tip „Selectați”. DocType: Address,GST State,Statul GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Nu se poate seta Anulați fără sa transmiteți +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Utilizator ({0}) DocType: Website Theme,Theme,Temă DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI legat la Codul Aut apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Deschideți ajutorul DocType: DocType,Is Submittable,Este Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Mențiune nouă +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Mențiune nouă apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nu s-au sincronizat noi contacte Google. DocType: File,Uploaded To Google Drive,Încărcat pe Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Valoarea pentru un câmp de verificare poate fi 0 sau 1 @@ -1627,7 +1695,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Roșu DocType: Workflow State,Tag,Etichetă -DocType: Custom Script,Script,Scenariu +DocType: Report,Script,Scenariu apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Documentul nu poate fi salvat. DocType: Energy Point Rule,Maximum Points,Puncte maxime apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Setările mele @@ -1657,9 +1725,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} puncte de apreciere pentru {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolurile pot fi setate pentru utilizatorii de la pagina lor de utilizare. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Adăugă Comentariu +DocType: Dashboard Chart,Select Date Range,Selectați intervalul de date DocType: DocField,Mandatory,Obligatoriu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul de a exporta +DocType: Scheduled Job Type,Monthly Long,Lunar lunga apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Nici o permisiune de bază nu a fost configurată +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Trimiteți un e-mail la {0} pentru a-l lega aici apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Înțeles Trimiteti, anula, modifică" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Sarcină de îndeplinit @@ -1668,7 +1739,6 @@ DocType: Milestone Tracker,Track milestones for any document,Urmăriți repere p DocType: Social Login Key,Identity Details,Detalii de identitate apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Tranziția statului de lucru nu este permisă de la {0} la {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Show Dashboard -apps/frappe/frappe/desk/form/assign_to.py,New Message,Mesaj Nou DocType: File,Preview HTML,Previzualizare HTML DocType: Desktop Icon,query-report,interogare raport DocType: Data Import Beta,Template Warnings,Avertismente șablon @@ -1679,18 +1749,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Inlănțuit apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Editați setările raportului automat de e-mail DocType: Chat Room,Message Count,Numărătoarea mesajelor DocType: Workflow State,book,carte +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} este legat de următoarele documente trimise: {2} DocType: Communication,Read by Recipient,Citiți de către destinatar DocType: Website Settings,Landing Page,Landing Page apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Eroare în script personalizat apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nume apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Permisiuni stabilit pentru acest criteriu. DocType: Auto Email Report,Auto Email Report,Raport E-mail automat +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nou document partajat apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Ștergeți comentariul? DocType: Address Template,This format is used if country specific format is not found,Acest format este utilizat în cazul în format specific țării nu este găsit DocType: System Settings,Allow Login using Mobile Number,Permiteți conectarea utilizând numărul de telefon mobil apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Dacă este activată, utilizatorii care se conectează la adresa IP restricționată nu vor fi înștiințați pentru Two Factor Auth" +DocType: Server Script,After Cancel,După anulare DocType: Auto Repeat,Get Contacts,Obțineți contacte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posturile de depusă în conformitate cu {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Sărind coloana fără titlu @@ -1701,6 +1774,7 @@ 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 +DocType: Notification Log,Mention,Menţiune DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonturi apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precizie trebuie să fie între 1 și 6 @@ -1708,7 +1782,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,și apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Acest raport a fost generat la {0} DocType: Error Snapshot,Frames,Rame -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Misiune +DocType: Notification Log,Assignment,Misiune DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Imagine Link DocType: Auto Email Report,Report Filters,Filtre raport @@ -1725,7 +1799,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Imposibil de a actualiza eveniment apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Codul de verificare a fost trimis la adresa dvs. de e-mail înregistrată. apps/frappe/frappe/core/doctype/user/user.py,Throttled,gâtuit +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Ținta ta apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtrul trebuie să aibă 4 valori (doctype, nume de câmp, operator, valoare): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Nicio denumire specificată pentru {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Aplicați norma de atribuire apps/frappe/frappe/utils/bot.py,show,spectacol apps/frappe/frappe/utils/data.py,Invalid field name {0},Numele câmpului nevalid {0} @@ -1735,7 +1811,6 @@ DocType: Workflow State,text-height,text-înălțime DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapare Plan de Migrare a Datelor apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Incepand cu Frappe ... DocType: Web Form Field,Max Length,Lungime maxima -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Pentru {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,marcator-hartă apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Prezenta eroare @@ -1771,6 +1846,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Pagina lipsește sau a fos apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,opinii DocType: DocType,Route,Traseu apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Setări gateway de plată Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} a câștigat {1} punct pentru {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Descărcați imagini atașate din document DocType: Chat Room,Name,Nume DocType: Contact Us Settings,Skype,Skype @@ -1781,7 +1857,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Deschide lin apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Limba ta DocType: Dashboard Chart,Average,In medie apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Adăugă Rând -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Imprimanta apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Interogare trebuie să fie un SELECT DocType: Auto Repeat,Completed,Finalizat @@ -1841,6 +1916,7 @@ DocType: GCalendar Account,Next Sync Token,Următorul cod de sincronizare DocType: Energy Point Settings,Energy Point Settings,Setări punct de energie DocType: Async Task,Succeeded,Reușit apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Campuri obligatorii prevăzute în {0} +DocType: Onboarding Slide Field,Align,Alinia apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Resetați Permisiunile pentru {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utilizatori și permisiuni DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1857,7 +1933,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nume format format nou apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Faceți clic pe linkul de mai jos pentru a aproba solicitarea DocType: Workflow State,align-left,aliniați-stânga +DocType: Onboarding Slide,Action Settings,Setări de acțiune DocType: User,Defaults,Implicite +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pentru comparație, utilizați> 5, <10 sau = 324. Pentru intervale, utilizați 5:10 (pentru valori cuprinse între 5 și 10)." DocType: Energy Point Log,Revert Of,Revenire apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merge cu existente DocType: User,Birth Date,Dată naștere @@ -1912,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Î DocType: Notification,Value Change,Valoarea variației DocType: Google Contacts,Authorize Google Contacts Access,Autorizați Accesul Google Contacte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Se afișează numai câmpurile Numeric din raport +apps/frappe/frappe/utils/data.py,1 week ago,1 săptămână în urmă DocType: Data Import Beta,Import Type,Tip import DocType: Access Log,HTML Page,Pagina HTML DocType: Address,Subsidiary,Filială @@ -1921,7 +2000,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Cu antet apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invalid server de mail de ieșire sau Port DocType: Custom DocPerm,Write,Scrie -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Numai Administrator permis de a crea Cautare / Script Rapoarte apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualizarea DocType: Data Import Beta,Preview,Previzualizați apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Câmp "Valoarea" este obligatorie. Vă rugăm să specificați o valoare care urmează să fie actualizată @@ -1931,6 +2009,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Invitați DocType: Data Migration Run,Started,A început apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Utilizatorul {0} nu are acces la acest document DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,În funcție de grup apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selectați atașate apps/frappe/frappe/model/naming.py, for {0},pentru {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nu vi se permite să imprimați acest document @@ -1972,6 +2051,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verifica DocType: Workflow Document State,Update Field,Actualizare câmp DocType: Chat Profile,Enable Chat,Activați Chat DocType: LDAP Settings,Base Distinguished Name (DN),Baza de numele distinctiv (DN) +DocType: Server Script,API,API-ul apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lasă această conversație apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opțiuni nu este setat pentru câmp legătură {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Coadă / lucrător @@ -2039,12 +2119,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Autentificare nu este permis în acest moment DocType: Data Migration Run,Current Mapping Action,Acțiune actuală de cartografiere DocType: Dashboard Chart Source,Source Name,sursa Nume -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Niciun cont de e-mail asociat cu Utilizatorul. Vă rugăm să adăugați un cont în User> Inbox. DocType: Email Account,Email Sync Option,E-mail Opțiunea de sincronizare apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rândul nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Este fixat DocType: Contact Us Settings,Introduction,Introducere +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Nevoie de ajutor? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin la nivel global apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Urmat de DocType: LDAP Settings,LDAP Email Field,LDAP E-mail Câmp @@ -2054,7 +2134,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Există d DocType: User Email,Enable Outgoing,Activați ieșire DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Etichete Personalizate -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Contul de e-mail nu este configurat. Vă rugăm să creați un nou cont de e-mail din Configurare> Email> Cont de e-mail DocType: Comment,Submitted,Inscrisa DocType: Contact,Pulled from Google Contacts,Extras din Contacte Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Cerere invalida @@ -2075,9 +2154,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Prima / Fol apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Alocare la mine DocType: DocField,Dynamic Link,Link dinamic apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Apăsați Tasta Altă pentru a declanșa comenzi rapide suplimentare în Meniu și Bara laterală +DocType: Dashboard Chart,To Date,La Data DocType: List View Setting,List View Setting,Setare vizualizare listă apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Afișați locuri de muncă nu a reușit -DocType: Event,Details,Detalii +DocType: Scheduled Job Log,Details,Detalii DocType: Property Setter,DocType or Field,DocType sau câmp apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ați desfășurat acest document apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Culoare primară @@ -2086,7 +2166,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Se pare că cheia publicabilă sau cheia secretă este greșită! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Se pare că cheia publicabilă sau cheia secretă este greșită! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Ajutor Rapid pentru Setare Permisiuni -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype pentru a atribui etichete apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Arată Recidivele apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mailul a fost mutat în coșul de gunoi DocType: Report,Report Builder,Constructor Raport @@ -2102,6 +2181,7 @@ DocType: Workflow State,Upload,încărcați DocType: User Permission,Advanced Control,Control avansat DocType: System Settings,Date Format,Format Dată apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nu Publicat +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit un șablon de adresă implicit. Vă rugăm să creați unul nou din Setare> Tipărire și Branding> Șablon adresă. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Acțiuni pentru flux de lucru (de exemplu, Aprobaţi, Anulaţi)." DocType: Data Import,Skip rows with errors,Ștergeți rândurile cu erori DocType: Workflow State,flag,Semnalizare @@ -2111,7 +2191,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Impr apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Salt la câmp DocType: Contact Us Settings,Forward To Email Address,Mai departe la adresa de email DocType: Contact Phone,Is Primary Phone,Este telefon primar -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Trimiteți un e-mail la {0} pentru a-l lega aici. DocType: Auto Email Report,Weekdays,Zilele saptamanii apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Înregistrările {0} vor fi exportate apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Câmp titlu trebuie să fie un fieldname valid @@ -2119,7 +2198,7 @@ DocType: Post Comment,Post Comment,posteaza comentariu apps/frappe/frappe/config/core.py,Documents,Documente apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Jurnal de activitate DocType: Social Login Key,Custom Base URL,Adresa URL de bază personalizată -DocType: Email Flag Queue,Is Completed,Este gata +DocType: Onboarding Slide,Is Completed,Este gata apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Obțineți câmpuri apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Editează profilul DocType: Kanban Board Column,Archived,Arhivat @@ -2130,11 +2209,12 @@ 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 DocType: Social Login Key,Office 365,Biroul 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Astăzi +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Astăzi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Trimiteți după import DocType: Error Log,Log of Scheduler Errors,Log de erori Scheduler DocType: User,Bio,Biografie +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Link de ajutor pentru diapozitive la bord DocType: OAuth Client,App Client Secret,Aplicația Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Inscrierea apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parentul este numele documentului la care vor fi adăugate datele. @@ -2142,7 +2222,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,MAJUSCULE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Personalizat HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Introduceți numele folderului -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit un șablon de adresă implicit. Vă rugăm să creați unul nou din Setare> Tipărire și Branding> Model de adrese. apps/frappe/frappe/auth.py,Unknown User,Utilizator necunoscut apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Selectați Rolul DocType: Comment,Deleted,Șters @@ -2158,7 +2237,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Creați grafic apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Nu importați -DocType: Web Page,Center,Centru +DocType: Onboarding Slide Field,Center,Centru DocType: Notification,Value To Be Set,Valoare de setat apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Editați {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primul nivel @@ -2166,7 +2245,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Nume Bază de Date apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Actualizează Forma DocType: DocField,Select,Selectează -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Vizualizare jurnal complet +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vizualizare jurnal complet DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Exprimare simplă Python, Exemplu: status == 'Deschis' și tastați == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Nu fișier atașat apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Conexiunea a fost pierdută. Este posibil ca unele funcții să nu funcționeze. @@ -2198,6 +2277,7 @@ DocType: Web Page,HTML for header section. Optional,HTML pentru secțiunea antet apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Această caracteristică este brand nou și încă experimental apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maxime {0} rânduri permis DocType: Dashboard Chart Link,Chart,Diagramă +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Global Dezabonare apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Aceasta este o parolă foarte frecvente. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Vedere @@ -2214,6 +2294,7 @@ DocType: Data Migration Connector,Hostname,Numele gazdei DocType: Data Migration Mapping,Condition Detail,Detaliile condiției apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Pentru valuta {0}, suma minimă a tranzacției ar trebui să fie {1}" DocType: DocField,Print Hide,Imprimare Ascunde +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Utilizatorului apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Introduceți valoarea DocType: Workflow State,tint,tentă @@ -2281,6 +2362,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Cod QR pentru apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Adăugați Sarcină de îndeplinit DocType: Footer Item,Company,Compania apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Media de {0} +DocType: Scheduled Job Log,Scheduled,Programat DocType: User,Logout from all devices while changing Password,Deconectați-vă de la toate dispozitivele în timp ce modificați parola apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifică Parola apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Au fost erori @@ -2306,7 +2388,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Permisiunea utilizatorului există deja apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Maparea coloanei {0} în câmpul {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Vizualizați {0} -DocType: User,Hourly,ore +DocType: Scheduled Job Type,Hourly,ore apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Înregistrează Aplicație client OAuth DocType: DocField,Fetch If Empty,Fetch Dacă gol DocType: Data Migration Connector,Authentication Credentials,Acreditări autentificare @@ -2317,10 +2399,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},câștigat de {0} prin regula automată {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} sau {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Sunteți cu toții înființați! DocType: Workflow State,trash,gunoi DocType: System Settings,Older backups will be automatically deleted,backup-uri mai vechi vor fi șterse automat apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Codul cheie de acces invalid sau cheia de acces secret. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Ai pierdut câteva puncte de energie DocType: Post,Is Globally Pinned,Este conectat la nivel global apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,activitate recenta DocType: Workflow Transition,Conditions,Condiții @@ -2329,6 +2411,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Confirmat DocType: Event,Ends on,Se termină pe DocType: Payment Gateway,Gateway,Portal DocType: LDAP Settings,Path to Server Certificate,Path to Certificate Server +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript este dezactivat pe browserul dvs. apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nu este suficientă permisiunea de a vedea legături apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nu este suficientă permisiune pentru a vedea legături apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Titlul adresei este obligatoriu. @@ -2348,7 +2431,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,UE-vest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Dacă aceasta este bifată, vor fi importate rânduri cu date valide și rândurile nevalide vor fi aruncate într-un fișier nou pentru a le importa mai târziu." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Documentul este editabil doar de către utilizatorii de rol -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Sarcina {0}, care atribuit {1}, a fost închis de {2}." DocType: Print Format,Show Line Breaks after Sections,Afișează sfârșiturile de linie după secțiunile DocType: Communication,Read by Recipient On,Citiți de către destinatari activat DocType: Blogger,Short Name,Numele scurt @@ -2381,6 +2463,7 @@ DocType: Translation,PR sent,PR trimis DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Trimiteți doar înregistrările actualizate în ultimele X ore DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Trimiteți doar înregistrările actualizate în ultimele X ore DocType: Communication,Feedback,Reactie +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Actualizat la o nouă versiune 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Traducerea deschisă apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Acest e-mail este generat automat DocType: Workflow State,Icon will appear on the button,Pictograma va apărea pe butonul @@ -2419,6 +2502,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Pagina nu DocType: DocField,Precision,Precizie DocType: Website Slideshow,Slideshow Items,Prezentarea Articole apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Încercați să evitați cuvinte și caractere repetate +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Notificări dezactivate +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Sigur doriți să ștergeți toate rândurile? DocType: Workflow Action,Workflow State,Stare flux de lucru apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rânduri Adăugate apps/frappe/frappe/www/list.py,My Account,Contul Meu @@ -2427,6 +2512,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Zilele După apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Conexiune tavă QZ activă! DocType: Contact Us Settings,Settings for Contact Us Page,Setări pentru Contactați-ne Pagina +DocType: Server Script,Script Type,Script-ul de tip DocType: Print Settings,Enable Print Server,Activați serverul de imprimare apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Acum {0} săptămâni DocType: Email Account,Footer,Subsol @@ -2452,8 +2538,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Avertisment apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Aceasta poate fi tipărită pe mai multe pagini DocType: Data Migration Run,Percent Complete,Procentul complet -DocType: Tag Category,Tag Category,Etichetă Categorie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pentru comparație, utilizați> 5, <10 sau = 324. Pentru intervale, utilizați 5:10 (pentru valori cuprinse între 5 și 10)." DocType: Google Calendar,Pull from Google Calendar,Trageți din Google Calendar apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Ajutor DocType: User,Login Before,Înainte de conectare @@ -2463,17 +2547,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ascundeți sfârșitul săptămânii apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Generează automat documente recurente. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Este +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-semn apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valoare pentru {0} nu poate fi o listă DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Cum ar trebui să fie formatata aceasta valuta? Dacă este setat, se vor folosi valorile implicite de sistem" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Trimiteți {0} documente? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Eroare la conectarea la aplicația de tavă QZ ... <br><br> Trebuie să aveți aplicația QZ Tray instalată și rulată, pentru a utiliza caracteristica Print Raw. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Faceți clic aici pentru a descărca și instala QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Faceți clic aici pentru a afla mai multe despre tipărirea brută</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Maparea imprimantei apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vă rugăm să salvați înainte de a atașa. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Doriți să anulați toate documentele legate? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Adăugat {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Permisiuni Rol DocType: Help Article,Intermediate,Intermediar +apps/frappe/frappe/config/settings.py,Email / Notifications,Notificări prin email apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} schimbat {1} în {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Documentul anularizat restaurat ca schiță DocType: Data Migration Run,Start Time,Ora de începere @@ -2490,6 +2578,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Po apps/frappe/frappe/email/smtp.py,Invalid recipient address,Adresa destinatarului invalid DocType: Workflow State,step-forward,pas înainte DocType: System Settings,Allow Login After Fail,Permiteți conectarea după eșec +DocType: DocType Link,DocType Link,Link DocType DocType: Role Permission for Page and Report,Set Role For,Set Rol pentru DocType: GCalendar Account,The name that will appear in Google Calendar,Numele care va apărea în Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Camera directă cu {0} există deja. @@ -2507,6 +2596,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Creează DocType: Contact,Google Contacts,Contacte Google DocType: GCalendar Account,GCalendar Account,Contul GCalendar DocType: Email Rule,Is Spam,este Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Ultimul apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raport {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Deschide {0} DocType: Data Import Beta,Import Warnings,Importați avertismente @@ -2518,6 +2608,7 @@ DocType: Workflow State,ok-sign,ok-semn apps/frappe/frappe/config/settings.py,Deleted Documents,Documente șterse apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Formatul CSV este sensibil la minuscule apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon există deja +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specificați în ce domenii ar trebui să apară diapozitivele. Dacă nu este specificat nimic, în mod implicit, diapozitivul este afișat în toate domeniile." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Câmpul {1} din rândul {2} nu poate fi ascuns și obligatoriu fără implicit DocType: Newsletter,Create and Send Newsletters,A crea și trimite Buletine @@ -2528,6 +2619,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Cod eveniment Google Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Părinte"" semnifică tabelul părinte în care trebuie să se adauge acestă înregistrare" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Puncte de recenzie: +DocType: Scheduled Job Log,Scheduled Job Log,Registrul de lucru planificat +DocType: Server Script,Before Delete,Înainte de Ștergere apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,În comun cu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Atașați fișiere / url-uri și adăugați-le în tabel. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Mesajul nu este setat @@ -2550,19 +2643,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Setări pentru Pagina Despre Noi. apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Setări pentru gateway-ul de plată apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imprimare Trimisă imprimantei! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Puncte de energie +DocType: Notification Settings,Energy Points,Puncte de energie +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Ora {0} trebuie să fie în format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,"de exemplu, pop.gmail.com / imap.gmail.com" DocType: User,Generate Keys,Generați chei apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Acest lucru vă va elimina definitiv datele. DocType: DocType,View Settings,Setări de vizualizare +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nouă notificare DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Structura solicitării +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Metoda controlorului get_razorpay_order lipsește DocType: Personal Data Deletion Request,Pending Verification,Verificare in Asteptare DocType: Website Meta Tag,Website Meta Tag,Eticheta site-ului web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",Dacă port non-standard (de ex. 587). Dacă în Google Cloud încercați portul 2525. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Ștergerea datei de încheiere, deoarece nu poate fi în trecut pentru paginile publicate." DocType: User,Send Me A Copy of Outgoing Emails,Trimiteți-mi o copie a e-mailurilor trimise -DocType: System Settings,Scheduler Last Event,Scheduler pentru ultimul eveniment DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Adaugaţi Google Analytics ID: de ex. UA-89XXX57-1. Vă rugăm să căutați ajutor la Google Analytics pentru mai multe informații. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Parola nu poate fi mai mult de 100 de caractere DocType: OAuth Client,App Client ID,Aplicatia Client ID @@ -2591,6 +2686,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Parola nouă apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} a partajat acest document cu {1} DocType: Website Settings,Brand Image,Imaginea marcii DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Șablonul de importare ar trebui să conțină un antet și cel puțin un rând. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Calendar a fost configurat. apps/frappe/frappe/config/website.py,"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ă @@ -2600,6 +2696,7 @@ DocType: User Social Login,User Social Login,Conectare socială utilizator apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} a criticat munca ta din {1} cu {2} punct DocType: Contact,All,Tot DocType: Email Queue,Recipient,Destinatar +DocType: Webhook,Webhook Security,Securitate Webhook DocType: Communication,Has Attachment,are Atașament DocType: Address,Sales User,Vânzări de utilizare apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and drop instrument pentru a construi și personaliza formate de imprimare. @@ -2666,7 +2763,6 @@ DocType: Data Migration Mapping,Migration ID Field,Câmp ID de migrare DocType: Dashboard Chart,Last Synced On,Ultima sincronizare activată DocType: Comment,Comment Type,Comentariu Tip DocType: OAuth Client,OAuth Client,Client OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} v-a criticat munca pe {1} {2} DocType: Assignment Rule,Users,Utilizatori DocType: Address,Odisha,Odisha DocType: Report,Report Type,Tip Raport @@ -2692,14 +2788,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Site-ul Slideshow Articol apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Nu este permisă auto-aprobarea DocType: GSuite Templates,Template ID,ID-ul șablonului apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Nu este permisă combinarea tipului de finanțare ( <code>{0}</code> ) și a tipului de răspuns ( <code>{1}</code> ) -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Mesaj nou de la {0} DocType: Portal Settings,Default Role at Time of Signup,Rolul implicit la Ora Înscriere DocType: DocType,Title Case,Denumirea dosarului apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Faceți clic pe linkul de mai jos pentru a descărca datele dvs. apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Mesajele primite ale poștei pentru utilizatorul {0} DocType: Data Migration Run,Data Migration Run,Execută Migrarea Datelor DocType: Blog Post,Email Sent,E-mail trimis -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Mai in varsta DocType: DocField,Ignore XSS Filter,Ignore XSS Filtru apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,eliminat apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Setări Dropbox de rezervă @@ -2754,6 +2848,7 @@ DocType: Async Task,Queued,Coada de așteptare DocType: Braintree Settings,Use Sandbox,utilizare Sandbox apps/frappe/frappe/utils/goal.py,This month,Luna aceasta apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nou format personalizat Print +DocType: Server Script,Before Save (Submitted Document),Înainte de a salva (documentul trimis) DocType: Custom DocPerm,Create,Creează apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nu mai există articole de afișat apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Accesați înregistrarea anterioară @@ -2811,6 +2906,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Aruncă la gunoi DocType: Web Form,Web Form Fields,Câmpuri formular Web DocType: Data Import,Amended From,Modificat din +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Adăugați un link video de ajutor doar în cazul în care utilizatorul nu are idee despre ce să completeze diapozitivul. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Avertizare: Imposibil de găsit {0} în orice masă legată de {1} DocType: S3 Backup Settings,eu-north-1,ue-nord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Acest document este în prezent în coada de așteptare pentru execuție. Vă rugăm să încercați din nou @@ -2833,6 +2929,7 @@ DocType: Blog Post,Blog Post,Postare blog DocType: Access Log,Export From,Exportă din apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Cautare avansată apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nu aveți permisiunea de a vizualiza buletinul informativ. +DocType: Dashboard Chart,Group By,Grupul De DocType: User,Interests,interese apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instrucțiuni de resetare a parolei au fost trimise la adresa dvs. de email DocType: Energy Point Rule,Allot Points To Assigned Users,Alocați puncte utilizatorilor alocați @@ -2848,6 +2945,7 @@ DocType: Assignment Rule,Assignment Rule,Regula de atribuire apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Utilizator Sugestii: {0} DocType: Assignment Rule Day,Day,Zi apps/frappe/frappe/public/js/frappe/desk.js,Modules,modulele +DocType: DocField,Mandatory Depends On,Obligatoriu depinde apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Succesul de plată apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Nu {0} e-mail DocType: OAuth Bearer Token,Revoked,Revocat @@ -2855,6 +2953,7 @@ DocType: Web Page,Sidebar and Comments,Bara laterală și Comentarii apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nu este permisă atașarea documentului {0}, vă rugăm să activați Permiteți tipărirea pentru {0} în Setări de imprimare" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Contul de e-mail nu este configurat. Vă rugăm să creați un nou cont de e-mail din Configurare> Email> Cont de e-mail apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vedeți documentul la {0} DocType: Stripe Settings,Publishable Key,Cheia publicabilă DocType: Stripe Settings,Publishable Key,Cheia publicabilă @@ -2870,13 +2969,13 @@ DocType: Currency,Fraction,Fracțiune apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Eveniment sincronizat cu Google Calendar. DocType: LDAP Settings,LDAP First Name Field,LDAP Nume câmp DocType: Contact,Middle Name,Al doilea nume +DocType: DocField,Property Depends On,Proprietatea depinde de DocType: Custom Field,Field Description,Descriere câmp apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nume nu a stabilit prin Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox E-mail apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Actualizarea {0} din {1}, {2}" DocType: Auto Email Report,Filters Display,filtre de afișare apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Câmpul „amendat_de la„ trebuie să fie prezent pentru a face o modificare. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} a apreciat munca ta în {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salvați filtrele DocType: Address,Plant,Instalarea apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Răspunde Tuturor @@ -2917,11 +3016,11 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Raport: DocType: Print Settings,Print taxes with zero amount,Imprimă taxele cu suma zero apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} nu este permisă redenumirea +DocType: Server Script,Before Insert,Înainte de a introduce DocType: Custom Script,Custom Script,Script personalizat DocType: Address,Address Line 2,Adresă Linie 2 DocType: Address,Reference,Referință apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Atribuit pentru -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vă rugăm să configurați contul de e-mail implicit din Configurare> Email> Cont de e-mail DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalii de Mapare a Migrării Datelor DocType: Data Import,Action,Acțiune: DocType: GSuite Settings,Script URL,Script URL @@ -2947,11 +3046,13 @@ DocType: User,Api Access,Api Acces DocType: DocField,In List View,În Vizualizare listă DocType: Email Account,Use TLS,Utilizați TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Autentificare invalid sau parola +DocType: Scheduled Job Type,Weekly Long,Săptămânal lung apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Descărcați Sablon apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Adăugaţi javascript personalizat în formulare. ,Role Permissions Manager,Manager Permisiuni Rol apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Numele de noul format de imprimare apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Comutați bara laterală +DocType: Server Script,After Save (Submitted Document),După salvare (document trimis) DocType: Data Migration Run,Pull Insert,Trageți inserați DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Puncte maxime permise după înmulțirea punctelor cu valoarea multiplicatorului (Notă: Pentru nicio limită nu lăsați acest câmp gol sau setați 0) @@ -2971,6 +3072,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nu este instalat apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Descarcă cu date apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valori modificate pentru {0} {1} +DocType: Server Script,Before Cancel,Înainte de a anula DocType: Workflow State,hand-right,mana-dreapta DocType: Website Settings,Subdomain,Subdomeniu DocType: S3 Backup Settings,Region,Regiune @@ -3017,12 +3119,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Parola Veche DocType: S3 Backup Settings,us-east-1,ne-est-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Mesajele de {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Pentru a formata coloanele, da etichete de coloană în interogare." +DocType: Onboarding Slide,Slide Fields,Slide Fields DocType: Has Domain,Has Domain,Are domeniu DocType: User,Allowed In Mentions,Permise în mențiuni apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nu ai cont? Inscrie apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nu se poate elimina câmpul ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Nu se poate seta Alocați Modificare dacă nu există posibilitate de introducere DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Documente abonate apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Setarile utilizatorului DocType: Report,Reference Report,Raport de referință DocType: Activity Log,Link DocType,link DocType @@ -3040,6 +3144,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizați Google Cal apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Pagina pe care o căutați lipsesc. Acest lucru ar putea fi, pentru că este mutat sau există o greșeală de scriere în link-ul." apps/frappe/frappe/www/404.html,Error Code: {0},Cod de eroare: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descriere pentru pagina de listare, în text simplu, doar o pereche de linii. (Maxim 140 de caractere)" +DocType: Server Script,DocType Event,Eveniment DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sunt câmpuri obligatorii DocType: Workflow,Allow Self Approval,Permiteți aprobarea de sine DocType: Event,Event Category,Categorie Eveniment @@ -3056,6 +3161,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Numele dumneavoastră apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Succesul conexiunii DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Există deja o prezentare la bord de tip diapozitiv. DocType: DocType,Default Sort Field,Câmpul de sortare implicit DocType: File,Is Folder,Este Folder DocType: Document Follow,DocType,DocType @@ -3094,8 +3200,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,valori DocType: Workflow State,arrow-up,săgeată-în sus DocType: Dynamic Link,Link Document Type,Tip de document de legătură apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Ar trebui să existe cel puțin un rând pentru tabela {0} +DocType: Server Script,Server Script,Script de server apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Pentru a configura repetarea automată, activați „Permite repetarea automată” de la {0}." DocType: OAuth Bearer Token,Expires In,Expira in +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Cantitatea de ori pe care doriți să o repetați setul de câmpuri (de exemplu: dacă doriți 3 clienți în diapozitiv, setați acest câmp pe 3. Doar primul set de câmpuri este afișat ca obligatoriu în diapozitiv)" DocType: DocField,Allow on Submit,Permiteţi după introducere DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Excepție de tip @@ -3105,6 +3213,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Cap apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,evenimente viitoare apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Vă rugăm să introduceți valori pentru App Cheie de acces și App Secret Key +DocType: Email Account,Append Emails to Sent Folder,Adăugați e-mailuri la folderul trimis DocType: Web Form,Accept Payment,Accept Plata apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selectați elementul listei apps/frappe/frappe/config/core.py,A log of request errors,Un jurnal cu erorile de cerere @@ -3123,7 +3232,7 @@ DocType: Translation,Contributed,Contribuit apps/frappe/frappe/config/customization.py,Form Customization,Personalizare formular apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nu există sesiuni active DocType: Web Form,Route to Success Link,Traseul spre succes -DocType: Top Bar Item,Right,Dreapta +DocType: Onboarding Slide Field,Right,Dreapta apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Nu există evenimente viitoare DocType: User,User Type,Tip utilizator DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3141,6 +3250,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Vă rugăm să apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL trebuie să înceapă cu „http: //” sau „https: //” apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opțiunea 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Acest lucru nu poate fi anulat DocType: Workflow State,Edit,Editare DocType: Website Settings,Chat Operators,Operatori de chat DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3152,7 +3262,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Raportul cu mai mult de 10 coloane arată mai bine în modul Peisaj. apps/frappe/frappe/database/database.py,Invalid field name: {0},Numele câmpului nevalid: {0} DocType: Milestone,Milestone,Milestone @@ -3161,7 +3270,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Accesați {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-mailuri sunt dezactivate apps/frappe/frappe/config/integrations.py,Google Services,Serviciile Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Sus -apps/frappe/frappe/utils/data.py,1 weeks ago,saptamana trecuta +DocType: Onboarding Slide,Slide Description,Descrierea diapozitivei DocType: Communication,Error,Eroare apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Vă rugăm să configurați mai întâi un mesaj DocType: Auto Repeat,End Date,Dată finalizare @@ -3182,10 +3291,12 @@ DocType: Footer Item,Group Label,Etichetă de grup DocType: Kanban Board,Kanban Board,Consiliul de Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts a fost configurat. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 înregistrare va fi exportată +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Niciun cont de e-mail asociat cu Utilizatorul. Vă rugăm să adăugați un cont în User> Inbox. DocType: DocField,Report Hide,Ascunde raportul apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},arborescentă nu este disponibilă pentru {0} DocType: DocType,Restrict To Domain,Limitează la Domeniu DocType: Domain,Domain,Domeniu +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Adresa URL a fișierului este nevalidă. Vă rugăm să contactați administratorul de sistem. DocType: Custom Field,Label Help,Eticheta Ajutor DocType: Workflow State,star-empty,stele gol apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datele sunt adesea ușor de ghicit. @@ -3210,6 +3321,7 @@ DocType: Workflow State,hand-left,mână-stânga DocType: Data Import,If you are updating/overwriting already created records.,Dacă actualizați / suprascrieți înregistrările deja create. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Este Global DocType: Email Account,Use SSL,Utilizați SSL +DocType: Webhook,HOOK-.####,CÂRLIG-.#### DocType: Workflow State,play-circle,play-cerc apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Documentul nu a putut fi atribuit corect apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Expresia "dependent_on" nu este validă @@ -3226,6 +3338,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Ultima reîmprospătare apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pentru tipul de document DocType: Workflow State,arrow-right,săgeată-în dreapta +DocType: Server Script,API Method,Metoda API DocType: Workflow State,Workflow state represents the current state of a document.,De stat Workflow reprezintă starea actuală a unui document. DocType: Letter Head,Letter Head Based On,Cap de scrisoare bazat pe apps/frappe/frappe/utils/oauth.py,Token is missing,Token lipsește @@ -3265,6 +3378,7 @@ DocType: Comment,Relinked,Reconectat DocType: Print Settings,Compact Item Print,Compact Postul de imprimare DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Redirecționare URL-ul +DocType: Onboarding Slide Field,Placeholder,Substitut DocType: SMS Settings,Enter url parameter for receiver nos,Introduceți parametru url pentru receptor nos DocType: Chat Profile,Online,Pe net DocType: Email Account,Always use Account's Name as Sender's Name,Utilizați întotdeauna numele contului ca nume al expeditorului @@ -3274,7 +3388,6 @@ DocType: Workflow State,Home,Acasă DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Utilizatorul se poate conecta utilizând id-ul de e-mail sau numele de utilizator DocType: Workflow State,question-sign,întrebare-semn -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} este dezactivat apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Calea "traseu" este obligatorie pentru vizualizările Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inserați o coloană înainte de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Utilizatorul din acest câmp va primi puncte recompensate @@ -3299,6 +3412,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Dacă Proprietar DocType: Data Migration Mapping,Push,Apăsaţi apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Aruncați fișierele aici DocType: OAuth Authorization Code,Expiration time,timp de expirare +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Documente deschise DocType: Web Page,Website Sidebar,Bară Laterală Site Web DocType: Web Form,Show Sidebar,Afișează Bară Laterală apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Aveți nevoie pentru a fi conectat pentru a accesa acest {0}. @@ -3314,6 +3428,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Comenzi rapi DocType: Desktop Icon,Page,Pagină apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Nu s-au găsit {0} în {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,"Numele și prenumele, prin ele însele sunt ușor de ghicit." +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Document redenumit de la {0} la {1} apps/frappe/frappe/config/website.py,Knowledge Base,Bază de cunoștințe DocType: Workflow State,briefcase,servietă apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Valoare nu poate fi schimbat pentru {0} @@ -3350,6 +3465,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Comutați afișarea în grila apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Accesați înregistrarea următoare +DocType: System Settings,Time Format,Format de timp apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,acreditările gateway de plată nevalide DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Acesta este fișierul șablon generat numai cu rânduri care au o eroare. Ar trebui să utilizați acest fișier pentru corecție și import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Setează Permisiuni pe Tipuri de Documente și Roluri @@ -3393,12 +3509,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Răspunde apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Articole din birou (titularii loc) DocType: DocField,Collapsible Depends On,Pliabile Depinde DocType: Print Style,Print Style Name,Tipul stilului de imprimare +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Grupul Pe câmp este necesar pentru a crea un grafic de bord DocType: Print Settings,Allow page break inside tables,Se lasă de pagină în interiorul tabele DocType: Email Account,SMTP Server,Server SMTP DocType: Print Format,Print Format Help,Print Format Ajutor apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} camera trebuie să aibă cel puțin un utilizator. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,Numara +DocType: Dashboard Chart,Group By Type,Grup după tip apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Comentariu nou pentru {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurat {0} {1} ca apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Dacă actualizați, vă rugăm să selectați ""Overwrite"" rânduri altfel existente nu vor fi șterse." @@ -3409,8 +3527,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profil de DocType: Web Form,Web Form,Formular Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} trebuie să fie în format: {1} DocType: About Us Settings,Org History Heading,Org Istorie rubrica +DocType: Scheduled Job Type,Scheduled Job Type,Tip de lucru programat DocType: Print Settings,Allow Print for Cancelled,Print pentru a permite Anulată DocType: Communication,Integrations can use this field to set email delivery status,Integrări poate folosi acest câmp pentru a seta starea de livrare e-mail +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nu aveți permisiuni pentru a anula toate documentele legate. DocType: Web Form,Web Page Link Text,Text Legătură Pagină Web DocType: Page,System Page,Pagină Sistem DocType: Page,System Page,Pagină Sistem @@ -3418,6 +3538,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Personalizările pentru <b>{0}</b> exportate către: <br> {1} DocType: Website Settings,Include Search in Top Bar,Căutare în Top Include Bar +DocType: Scheduled Job Type,Daily Long,Zilnic lung DocType: GSuite Settings,Allow GSuite access,Permiteți accesul GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming @@ -3521,6 +3642,7 @@ DocType: Notification,Send days before or after the reference date,Trimite zile DocType: User,Allow user to login only after this hour (0-24),Permiteţi utilizatorului sa se poată loga doar după această oră (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Alocați unul câte unul, în secvență" DocType: Integration Request,Subscription Notification,Notificare privind abonamentul +DocType: Customize Form Field, Allow in Quick Entry ,Permiteți introducerea rapidă apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,sau atașați o DocType: Auto Repeat,Start Date,Data începerii apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Valoare @@ -3535,6 +3657,7 @@ DocType: Google Drive,Backup Folder ID,ID dosar copie de rezervă apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nu în modul Developer! Amplasat în site_config.json sau face DocType ""personalizat""." DocType: Workflow State,globe,glob DocType: System Settings,dd.mm.yyyy,zz.ll.aaaa +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioritate DocType: Email Queue,Unsubscribe Param,dezabonare de Param DocType: DocType,Hide Sidebar and Menu,Ascundeți Bara laterală și meniul @@ -3546,6 +3669,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Permite Import (prin instru apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Plutitor DocType: Print Settings,Page Settings,Setări Pagină +DocType: Notification Settings,Notification Settings,Setări de notificare apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Economisire... apps/frappe/frappe/www/update-password.html,Invalid Password,Parolă Invalidă apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importă cu succes {0} înregistrare din {1}. @@ -3561,6 +3685,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Imaginea capului literei DocType: Address,Party GSTIN,Partidul GSTIN +DocType: Scheduled Job Type,Cron Format,Format Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Raportează DocType: SMS Settings,Use POST,Utilizați POST DocType: Communication,SMS,mesaj @@ -3606,18 +3731,20 @@ DocType: Workflow,Allow approval for creator of the document,Permiteți aprobare apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salvează raportul DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Server Action apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administratorul a accesat {0} în data de {1} prin adresa IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Câmpul părinte trebuie să fie un nume de câmp valabil apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Eroare la modificarea abonamentului DocType: LDAP Settings,LDAP Group Field,Câmpul grupului LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Notificare Document subscris apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Egal apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Format CSV nevalid -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Eroare la conectarea la aplicația de tavă QZ ... <br><br> Trebuie să aveți aplicația QZ Tray instalată și rulată, pentru a utiliza caracteristica Print Raw. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Faceți clic aici pentru a descărca și instala QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Faceți clic aici pentru a afla mai multe despre tipărirea brută</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Număr set de Backupurile DocType: DocField,Do not allow user to change after set the first time,Nu permite utilizatorului să se schimbe după seta prima dată apps/frappe/frappe/utils/data.py,1 year ago,anul trecut +DocType: DocType,Links Section,Secțiunea Linkuri apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Vizualizați Jurnalul tuturor evenimentelor de tipărire, descărcare și export" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 lună DocType: Contact,Contact,Persoana de Contact @@ -3644,16 +3771,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Email nou DocType: Custom DocPerm,Export,Exportă apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Pentru a utiliza Google Calendar, activați {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Adăugarea de asemenea a câmpului de dependență de stare {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Actualizate cu succes {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Tava QZ a eșuat: DocType: Dropbox Settings,Dropbox Settings,Setări Dropbox DocType: About Us Settings,More content for the bottom of the page.,Mai mult conținut pentru partea de jos a paginii. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Acest document a fost inversat apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Backup Google Drive de succes. +DocType: Webhook,Naming Series,Naming Series DocType: Workflow,DocType on which this Workflow is applicable.,DocType pe care acest flux de lucru este aplicabil. DocType: User,Enabled,Activat apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Setarea nu a reușit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nou {0}: {1} -DocType: Tag Category,Category Name,Nume Categorie +DocType: Blog Category,Category Name,Nume Categorie apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Părinții trebuie să obțină date de tabel pentru copii apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Abonații de import DocType: Print Settings,PDF Settings,Setări PDF @@ -3689,6 +3819,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Calendar apps/frappe/frappe/client.py,No document found for given filters,Nu sa găsit niciun document pentru filtrele date apps/frappe/frappe/config/website.py,A user who posts blogs.,Un utilizator care postează bloguri. +DocType: DocType Action,DocType Action,Acțiune DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Există un alt {0} cu numele {1}, selectați un alt nume" DocType: DocType,Custom?,Personalizat? DocType: Website Settings,Website Theme Image,Site-ul Theme Image @@ -3698,6 +3829,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Imposibil apps/frappe/frappe/config/integrations.py,Backup,Backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Tipul de document este necesar pentru a crea o diagramă de bord DocType: DocField,Read Only,Doar Citire +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nu s-a putut crea o comandă razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Noi Newsletter DocType: Energy Point Log,Energy Point Log,Jurnalul punctelor energetice DocType: Print Settings,Send Print as PDF,Trimite Printeaza ca PDF @@ -3723,16 +3855,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con apps/frappe/frappe/www/login.html,Or login with,Sau Login cu DocType: Error Snapshot,Locals,Localnicii apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicate prin intermediul {0} pe {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{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/group_by/group_by.html,Select Group By...,Selectați grupul după ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex (55 + 434) / 4 sau = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} este necesar DocType: Integration Request,Integration Type,Tipul de integrare DocType: Newsletter,Send Attachements,Trimite Accesorii si atașamente +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nu s-au găsit filtre apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrare Google Contacte. DocType: Transaction Log,Transaction Log,Jurnal de tranzacții apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistici bazate pe performanța de luna trecută (de la {0} la {1}) DocType: Contact Us Settings,City,Oraș +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ascundeți cardurile pentru toți utilizatorii apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Activați Permiterea repetării automate pentru doctype {0} în Formularizare personalizată DocType: DocField,Perm Level,Nivelul Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Vizualizați documentul @@ -3744,6 +3877,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'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}" DocType: Energy Point Log,Appreciation,Apreciere +DocType: Dashboard Chart,Number of Groups,Număr de grupuri apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Vizualizare Listă DocType: Workflow,Don't Override Status,Nu Override Stare apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Termen de căutare @@ -3785,7 +3919,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-NV-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limitați numărul de copii de rezervă DB DocType: Custom DocPerm,Level,Nivel -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Ultimele 30 de zile DocType: Custom DocPerm,Report,Raport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Suma trebuie să fie mai mare decât 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Conectat la tava QZ! @@ -3802,6 +3935,7 @@ DocType: S3 Backup Settings,us-west-2,ne-vest-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Selectați tabelul copilului apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Declanșarea acțiunii primare apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Schimbă +DocType: Social Login Key,User ID Property,Proprietate ID utilizator DocType: Email Domain,domain name,numele domeniului DocType: Contact Email,Contact Email,Email Persoana de Contact DocType: Kanban Board Column,Order,Ordin @@ -3824,7 +3958,7 @@ DocType: Contact,Last Name,Nume DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Stânga DocType: Event,All Day,Toată ziua apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Se pare că ceva este în neregulă cu configurația gateway de plată a acestui site. Nici plata a fost făcută. DocType: GCalendar Settings,State,Stat @@ -3856,7 +3990,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Setările gateway-ului apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text de tip de document -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Executați teste apps/frappe/frappe/handler.py,Logged Out,Delogat apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mai Mult... DocType: System Settings,User can login using Email id or Mobile number,Utilizatorul se poate conecta utilizând ID-ul de e-mail sau numărul de telefon mobil @@ -3873,6 +4006,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Rezumat DocType: Event,Event Participants,Participanții la eveniment DocType: Auto Repeat,Frequency,Frecvență +DocType: Onboarding Slide,Slide Order,Comanda de diapozitive DocType: Custom Field,Insert After,Introduceți După DocType: Event,Sync with Google Calendar,Sincronizare cu Google Calendar DocType: Access Log,Report Name,Nume Raport @@ -3900,6 +4034,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Pagina web de conținut. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Adăugaţi un nou rol +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Accesați pagina web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nou atribuire DocType: Google Contacts,Last Sync On,Ultima sincronizare activată DocType: Deleted Document,Deleted Document,Documentul a fost șters apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hopa! Ceva a mers prost @@ -3910,7 +4046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Peisaj apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensii script partea de client în Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Înregistrările pentru următoarele doctypes vor fi filtrate -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planificator inactiv +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planificator inactiv DocType: Blog Settings,Blog Introduction,Introducere blog DocType: Global Search Settings,Search Priorities,Priorități de căutare DocType: Address,Office,Birou @@ -3920,13 +4056,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Dashboard Chart Link DocType: User,Email Settings,Setări e-mail apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Aruncați aici DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Dacă este activat, utilizatorul se poate autentifica de pe orice adresă IP folosind Autorul cu doi factori, aceasta poate fi setată și pentru toți utilizatorii din Setările sistemului" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Setări imprimantă ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Introduceți parola pentru a continua apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Introduceți parola pentru a continua apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Pe mine apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nu este un stat valid apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Aplicați la toate tipurile de documente -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualizare punct energetic +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Actualizare punct energetic +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Rulați locuri de muncă numai zilnic dacă sunt inactive timp de (zile) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}“ DocType: Chat Message,Room Type,Tip Cameră DocType: Data Import Beta,Import Log Preview,Importați previzualizarea jurnalului @@ -3935,6 +4071,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-cerc DocType: LDAP Settings,LDAP User Creation and Mapping,Creare și mapare utilizator LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Poti gasi lucruri întrebând "găsi portocaliu în clienți" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Evenimente de astăzi apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Ne pare rău! Utilizatorul trebuie să aibă acces complet la propriul record. ,Usage Info,Informații de utilizare apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Afișează comenzi rapide de la tastatură @@ -3951,6 +4088,7 @@ DocType: DocField,Unique,Unic apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apreciat la {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Succesul parțial DocType: Email Account,Service,Servicii +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator DocType: File,File Name,Nume fişier apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nu am gasit {0} pentru {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Rez .: {0} @@ -3964,6 +4102,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Finalize DocType: GCalendar Settings,Enable,Activare DocType: Google Maps Settings,Home Address,Adresa de acasa apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Puteți încărca doar pana la 5000 de înregistrări într-o singură. (Poate fi mai puțin în unele cazuri) +DocType: Report,"output in the form of `data = [columns, result]`","ieșire sub forma „date = [coloane, rezultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipuri de documente aplicabile apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Setați reguli pentru atribuirile utilizatorilor. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permisă insuficientă pentru {0} @@ -3981,7 +4120,6 @@ DocType: Communication,To and CC,Către și CC DocType: SMS Settings,Static Parameters,Parametrii statice DocType: Chat Message,Room,Cameră apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},actualizat la {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Joburile de fond nu se execută. Vă rugăm să contactați administratorul DocType: Portal Settings,Custom Menu Items,Meniu personalizat Articole apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Toate imaginile atașate site-ului Slideshow ar trebui să fie publice DocType: Workflow State,chevron-right,Chevron-dreapta @@ -3996,11 +4134,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Valorile {0} selectate DocType: DocType,Allow Auto Repeat,Permiteți repetarea automată apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nu există valori de afișat +DocType: DocType,URL for documentation or help,URL pentru documentare sau ajutor DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Șablon de e-mail apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Înregistrare actualizată cu succes {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Utilizatorul {0} nu are acces doctype prin permisiunea rolului pentru documentul {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Atât logarea cât și parola sunt necesare +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Lăsa\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vă rugăm să reîmprospătați pentru a obține cel mai recent document. DocType: User,Security Settings,Setări de securitate apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Adăugaţi Coloană @@ -4010,6 +4150,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtru Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Vă rugăm să găsiți atașat {0}: {1} DocType: Web Page,Set Meta Tags,Setați etichete meta +DocType: Email Account,Use SSL for Outgoing,Utilizați SSL pentru ieșire 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: S3 Backup Settings,Backup Limit,Limita de rezervă DocType: Dashboard Chart,Line,Linia @@ -4042,4 +4183,3 @@ DocType: DocField,Ignore User Permissions,Ignora Permisiunile utilizatorului apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvat cu succes apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Vă rugăm să întrebați administratorul dvs. pentru a verifica înregistrarea în vederea DocType: Domain Settings,Active Domains,Domenii active -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Arată jurnal diff --git a/frappe/translations/ru.csv b/frappe/translations/ru.csv index fd10ddcdfb..7f6c2ac6dc 100644 --- a/frappe/translations/ru.csv +++ b/frappe/translations/ru.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Пожалуйста, выберите поле Сумма." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Загрузка файла импорта ... DocType: Assignment Rule,Last User,Последний пользователь -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Новая задача, {0}, была назначена Вам {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Сеансы по умолчанию сохранены apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Перезагрузить файл DocType: Email Queue,Email Queue records.,Записи очереди электронной почты @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Дерево DocType: User,User Emails,Письма пользователя DocType: User,Username,Имя пользователя apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Импорт Zip +DocType: Scheduled Job Type,Create Log,Создать журнал apps/frappe/frappe/model/base_document.py,Value too big,Слишком большое значение DocType: DocField,DocField,Поле документа DocType: GSuite Settings,Run Script Test,Проверка сценария запуска @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Ежемесячно DocType: Address,Uttarakhand,Уттаракханд DocType: Email Account,Enable Incoming,Включение входящей apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасность -DocType: Address,Email Address,Адрес Электронной Почты +apps/frappe/frappe/www/login.py,Email Address,Адрес Электронной Почты DocType: Workflow State,th-large,й по величине DocType: Communication,Unread Notification Sent,Не читать уведомления об отправке apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Экспорт не допускается. Вам нужно {0} роль для экспорта. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От DocType: DocType,Is Published Field,Есть Опубликовано поле DocType: GCalendar Settings,GCalendar Settings,Настройки GCalendar DocType: Email Group,Email Group,Группа электронной почты +apps/frappe/frappe/__init__.py,Only for {},Только для {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Календарь Google - не удалось удалить событие {0} из календаря Google, код ошибки {1}." DocType: Event,Pulled from Google Calendar,Вытащил из Календаря Google DocType: Note,Seen By,Виденный apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Добавить несколько -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Вы получили несколько очков энергии apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Недействительный образ пользователя. DocType: Energy Point Log,Reverted,Отменено DocType: Success Action,First Success Message,Первое сообщение о успехе @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не как apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неверное значение: {0} должно быть {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Изменение свойств поля (скрыть, только для чтения, доступ и т.д.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,понимать +DocType: Notification Settings,Document Share,Поделиться документом DocType: Workflow State,lock,запирать apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Настройки для Контакты Page. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Администратор Записан В @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Если этот параметр включен, документ помечается как видимый, когда пользователь впервые открывает его" DocType: Auto Repeat,Repeat on Day,Повторить в День DocType: DocField,Color,Цвет +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Отметить все как прочитанное DocType: Data Migration Run,Log,Запись в журнале DocType: Workflow State,indent-right,отступ правом DocType: Has Role,Has Role,Имеет роль @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Показать трассировку DocType: DocType,Default Print Format,Печатная форма по умолчанию DocType: Workflow State,Tags,теги +DocType: Onboarding Slide,Slide Type,Тип слайда apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ни один: Конец потока apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поле {0} не может быть установлено как уникальное в {1}, так как не являются уникальными существующие значения" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Типы документов @@ -136,7 +139,6 @@ DocType: Language,Guest,Гость DocType: DocType,Title Field,Название поля DocType: Error Log,Error Log,Журнал ошибок apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,неправильный адрес -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Последние 7 дней apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Повторы, как "abcabcabc" лишь немного труднее угадать, чем "Азбуки"" DocType: Notification,Channel,канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Если вы думаете, что это несанкционированное, пожалуйста, измените пароль администратора." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Клиент apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Выберите колонку apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Эта форма была изменена после загрузки его DocType: Address,Himachal Pradesh,Химачал-Прадеш +DocType: Notification Log,Notification Log,Журнал уведомлений DocType: System Settings,"If not set, the currency precision will depend on number format","Если не установлено, точность валюты будет зависеть от формата числа" DocType: System Settings,"If not set, the currency precision will depend on number format","Если не установлено, точность валюты будет зависеть от формата числа" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Открыть Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,К apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Отправить DocType: Workflow Action Master,Workflow Action Name,Название Действий бизнес-процесса apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType не могут быть объединены -DocType: Web Form Field,Fieldtype,Тип поля +DocType: Onboarding Slide Field,Fieldtype,Тип поля apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не архивный файл DocType: Global Search DocType,Global Search DocType,Глобальный поиск DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Письмо отправлено? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Переключить диаграмму apps/frappe/frappe/desk/form/save.py,Did not cancel,Не отменить DocType: Social Login Key,Client Information,Информация о клиенте +DocType: Energy Point Rule,Apply this rule only once per document,Применять это правило только один раз для каждого документа DocType: Workflow State,plus,А ТАКЖЕ +DocType: DocField,Read Only Depends On,Только чтение зависит от apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Вы вошли как Гость или Administrator DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Файловый менеджер @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Причина 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Нет активности +DocType: Server Script,Script Manager,Диспетчер скриптов +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Нет активности apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Приложения сторонних разработчиков apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Первый пользователь станет менеджером системы (можно изменить это позже). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Сегодня нет событий apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Вы не можете давать оценки себе apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType должен быть подчинен для выбранного события Doc DocType: Workflow State,circle-arrow-up,Круг со стрелкой вверх @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Не допускается для {0}: {1}. Запрещенное поле: {2} 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,You are not allowed to delete a standard Website Theme,Вы не можете удалить стандартную тему сайта +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Создайте свой первый {0} DocType: Data Import,Log Details,Сведения о журнале DocType: Workflow Transition,Example,Пример DocType: Webhook Header,Webhook Header,Заголовок Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,История чата apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,"Пометить, как прочитанное" apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Обновление {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Входящий слайд <b>{0}</b> с таким же порядком слайдов уже существует apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Отключить отчет DocType: Translation,Contributed Translation Doctype Name,Предоставленный перевод Doctype Name +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы DocType: PayPal Settings,Redirect To,Перенаправить DocType: Data Migration Mapping,Pull,Тянуть DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Формат JavaScript: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Внутренняя зап DocType: Energy Point Settings,Review Levels,Уровни обзора DocType: Workflow State,Comment,Комментарий DocType: Data Migration Plan,Postprocess Method,Метод постпроцесса +DocType: DocType Action,Action Type,Тип действия apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Фотографировать DocType: Assignment Rule,Round Robin,По-круговой apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Вы можете изменить Проведенные (Submitted) документы, отменив их, а затем изменив их." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Сохранить как DocType: Comment,Seen,Посещение apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Показать больше информации +DocType: Server Script,Before Submit,Перед отправкой DocType: System Settings,Run scheduled jobs only if checked,"Запуск запланированных заданий, только если проверяются" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,"Будет показано, только если заголовки разделов включены" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Архив @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Ключ доступа apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Неверное имя поля <b>{0}</b> в конфигурации add_fetch пользовательского скрипта apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Выберите Google Контакты, с которыми контакт должен быть синхронизирован." DocType: Web Page,Main Section (HTML),Основной раздел (HTML) +DocType: Scheduled Job Type,Annual,За год DocType: Workflow State,headphones,наушники apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Пароль требуется или выбрать Впредь пароль DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,например replies@yourcomany.com. Все ответы будут приходить на этот почтовый ящик. DocType: Slack Webhook URL,Slack Webhook URL,Неверный URL веб-хостинга +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Определяет порядок слайдов в мастере. Если слайд не должен отображаться, приоритет должен быть установлен на 0." DocType: Data Migration Run,Current Mapping,Текущее сопоставление apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Требуются действительные email и имя apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Сделайте все вложения приватными @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Переходные правила apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Отображение только первых {0} строк в предварительном просмотре apps/frappe/frappe/core/doctype/report/report.js,Example:,Пример: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ограничения DocType: Workflow,Defines workflow states and rules for a document.,Определяет статусы бизнес-процесса и правила их перехода для документа. DocType: Workflow State,Filter,фильтр apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Проверьте журнал ошибок для получения дополнительной информации: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,работа apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} вышел: {1} DocType: Address,West Bengal,Западная Бенгалия +DocType: Onboarding Slide,Information,Информация apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Не удается установить Назначить проведение, если не подлежит проведению" DocType: Transaction Log,Row Index,Индекс строк DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Кнопка Помощь DocType: Kanban Board Column,purple,пурпурный DocType: About Us Settings,Team Members,Члены команды +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Запланированные задания будут запускаться только один раз в день для неактивных сайтов. По умолчанию 4 дня, если установлено значение 0." DocType: Assignment Rule,System Manager,Менеджер системы +DocType: Scheduled Job Log,Scheduled Job,Запланированная работа DocType: Custom DocPerm,Permissions,Разрешения apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks для внутренней интеграции DocType: Dropbox Settings,Allow Dropbox Access,Разрешить доступ Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Ск DocType: Email Flag Queue,Email Flag Queue,Очередь флагов электронной почты DocType: Access Log,Columns / Fields,Колонны / Поля apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Таблицы стилей для печатных форматов +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Поле Aggregate Function необходимо для создания диаграммы панели мониторинга. apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Не удается идентифицировать открытое {0}. Попробуйте что-нибудь другое. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ваша информация была представлена apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Пользователь {0} не может быть удален @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Имя поля DocType: Assignment Rule,Assign To Users,Назначить пользователям apps/frappe/frappe/public/js/frappe/utils/utils.js,or,или apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Модуль имя ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Продолжать +DocType: Onboarding Slide,Continue,Продолжать apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Интеграция с Google отключена. DocType: Custom Field,Fieldname,Имя поля DocType: Workflow State,certificate,сертификат apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Проверка ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Ваше назначение {0} {1} удалено apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Первая колонка данных должна быть пустой. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Показать все версии apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Посмотреть комментарий @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Ограничения IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Панель приборов apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Невозможно отправить письма в это время apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Календарь Google - не удалось обновить событие {0} в Календаре Google, код ошибки {1}." +DocType: Notification Log,Email Content,Содержимое электронной почты apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Поиск либо введите команду DocType: Activity Log,Timeline Name,Сроки Имя apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Только один {0} может быть установлен в качестве основного. DocType: Email Account,e.g. smtp.gmail.com,например smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Добавить новое правило DocType: Contact,Sales Master Manager,Руководитель продаж +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Вам нужно включить JavaScript для вашего приложения для работы. DocType: User Permission,For Value,Для ценности DocType: Event,Google Calendar ID,Идентификатор Google Calendar apps/frappe/frappe/www/complete_signup.html,One Last Step,Последний шаг @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Поле второго имени apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Импорт {0} из {1} DocType: GCalendar Account,Allow GCalendar Access,Разрешить доступ к GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} является обязательным полем +DocType: DocType,Documentation Link,Документация Ссылка apps/frappe/frappe/templates/includes/login/login.js,Login token required,Требуется токен входа apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Ежемесячный рейтинг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Выберите несколько элементов списка @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL файла DocType: Version,Table HTML,Таблица HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Добавить Подписчики +DocType: Notification Log,Energy Point,Энергетическая точка apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Предстоящие события на сегодня DocType: Google Calendar,Push to Google Calendar,Нажмите на Google Calendar DocType: Notification Recipient,Email By Document Field,Электронная почта по полю документа @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Далеко DocType: Currency,Fraction Units,Количество единиц apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} с {1} на {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Отметить как выполненное DocType: Chat Message,Type,Тип DocType: Google Settings,OAuth Client ID,Идентификатор клиента OAuth DocType: Auto Repeat,Subject,Тема apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Вернуться к списку DocType: Web Form,Amount Based On Field,Сумма На основании поле +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} не отслеживает версии. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Пользователь является обязательным для Поделиться DocType: DocField,Hidden,Скрытый DocType: Web Form,Allow Incomplete Forms,Разрешить Неполные формы @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,"Пожалуйста, проверьте свою электронную почту для подтверждения" apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold не может быть в конце виде DocType: Communication,Bounced,Возвращенные +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,из DocType: Deleted Document,Deleted Name,Удаляется Имя apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Пользователи сайта и системы DocType: Workflow Document State,Doc Status,Статус документа @@ -527,6 +552,7 @@ DocType: Language,Language Code,таблица условных сигналов DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Примечание. По умолчанию отправляются сообщения электронной почты о неудачных резервных копиях. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Добавить фильтр apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},СМС отправлено следующим номерам: {0} +DocType: Notification Settings,Assignments,Назначения apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Начните разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Всегда добавляйте "Черновик" Заголовок для печати проектов документов @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Текущий запуск к apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Электронная почта отмечена как спам DocType: Comment,Website Manager,Менеджер сайта apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Отправка файла отключена. Пожалуйста, попробуйте еще раз." +DocType: Data Import Beta,Show Failed Logs,Показать ошибочные журналы apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Переводы apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Вы выбрали черновик или отмененные документы apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} установлен в состояние {1} на {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Документ Queued DocType: GSuite Templates,Destination ID,Идентификатор назначения DocType: Desktop Icon,List,список DocType: Activity Log,Link Name,Ссылка Имя +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,У вас есть \ DocType: System Settings,mm/dd/yyyy,мм/дд/гггг +DocType: Onboarding Slide,Onboarding Slide,Бортовой слайд apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неверный пароль: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неверный пароль: DocType: Print Settings,Send document web view link in email,Отправить ссылку на веб-просмотр документа по электронной почте @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,темно-серый apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Успешное: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Невозможно изменить данные пользователя в демо. Подпишитесь на новую учетную запись на https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Капля +DocType: Dashboard Chart,Aggregate Function Based On,"Агрегатная функция, основанная на" apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Пожалуйста, дублировать это внести изменения" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Нажмите «Ввод», чтобы сохранить" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Поколение PDF удалось из-за битых ссылок изображения @@ -617,7 +647,9 @@ DocType: Notification,Days Before,Дней до apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Ежедневные события должны заканчиваться в тот же день. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Редактировать... DocType: Workflow State,volume-down,Объем вниз +DocType: Onboarding Slide,Help Links,Справочные ссылки apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Доступ с этого IP-адреса запрещен +DocType: Notification Settings,Enable Email Notifications,Включить уведомления по электронной почте apps/frappe/frappe/desk/reportview.py,No Tags,Нет меток DocType: Email Account,Send Notification to,Отправить уведомление DocType: DocField,Collapsible,Складной @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Последнее резервное ко DocType: Customize Form Field,Customize Form Field,Настроить поля формы DocType: Energy Point Rule,For Document Event,Для события документа DocType: Website Settings,Chat Room Name,Имя в чате +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,без изменений DocType: OAuth Client,Grant Type,Тип гранта apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Проверьте, какие документы могут быть прочитаны Пользователем" DocType: Deleted Document,Hub Sync ID,Идентификатор синхронизации концентратора @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ис DocType: Auto Repeat,Quarterly,Ежеквартально apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Домен электронной почты не настроен для этой учетной записи, создать?" DocType: User,Reset Password Key,Сброс пароля ключ +DocType: Dashboard Chart,All Time,Все время apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Недопустимый статус документа для {0} DocType: Email Account,Enable Auto Reply,Включить автоматический ответ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не Видел @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Со DocType: Email Account,Notify if unreplied,Уведомить при отсутствии ответа apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Сканируйте QR-код и введите полученный код. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Включить градиенты +DocType: Scheduled Job Type,Hourly Long,Почасовая DocType: System Settings,Minimum Password Score,Минимальный балл пароля DocType: DocType,Fields,Поля DocType: System Settings,Your organization name and address for the email footer.,Название вашей организации и адрес для нижнего колонтитула электронной почты @@ -672,11 +707,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Родит apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,Резервное копирование S3 завершено! apps/frappe/frappe/config/desktop.py,Developer,Разработчик apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Созданный +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Чтобы включить его, следуйте инструкциям по следующей ссылке: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} в строке {1} не может содержаться URL и дочерние продукты apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Должна быть как минимум одна строка для следующих таблиц: {0} DocType: Print Format,Default Print Language,Язык печати по умолчанию apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предки apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корневая {0} не может быть удален +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Нет неудачных логов apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Комментариев нет apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Пожалуйста, настройте SMS, прежде чем устанавливать его как метод аутентификации, с помощью настроек SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,И DocType и имя требуется @@ -700,6 +737,7 @@ DocType: Website Settings,Footer Items,Элементы колонтитула apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Меню DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Ежедневно +DocType: Onboarding Slide,Max Count,Максимальное количество apps/frappe/frappe/config/users_and_permissions.py,User Roles,Роли пользователей DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Недвижимость сеттер отменяет стандартный DOCTYPE или свойств поля apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Невозможно обновить: Неверная / просроченная ссылка. @@ -718,6 +756,7 @@ DocType: Footer Item,"target = ""_blank""","целевых = ""_blank""" DocType: Workflow State,hdd,жесткий диск DocType: Integration Request,Host,Хозяин DocType: Data Import Beta,Import File,Импортировать файл +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Ошибка шаблона apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Столбец <b>{0}</b> уже существует. DocType: ToDo,High,Высокий apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Новое событие @@ -733,6 +772,7 @@ DocType: Web Form Field,Show in filter,Показать в фильтре DocType: Address,Daman and Diu,Даман и Диу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Проект DocType: Address,Personal,Личное +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Настройки сырой печати ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,См. Https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region для получения подробной информации. apps/frappe/frappe/config/settings.py,Bulk Rename,Массовое переименование DocType: Email Queue,Show as cc,Показать в кубических сантиметрах @@ -742,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Возьмите в DocType: Contact Us Settings,Introductory information for the Contact Us Page,Вводная информация для страницы контактов DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,несогласие +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Отмена документов DocType: User,Send Notifications for Email threads,Отправлять уведомления для тем электронной почты apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Проф. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не в режиме разработчика @@ -749,7 +790,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Готов DocType: DocField,In Global Search,В глобальном поиске DocType: System Settings,Brute Force Security,Защита от Брутфорса DocType: Workflow State,indent-left,отступ левого -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Это рискованно, чтобы удалить этот файл: {0}. Пожалуйста, обратитесь к менеджеру системы." DocType: Currency,Currency Name,Название валюты apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Нет сообщений электронной почты @@ -764,11 +804,13 @@ DocType: Energy Point Rule,User Field,Поле пользователя DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Нажмите Удалить apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} уже отписан от {1} {2} +DocType: Scheduled Job Type,Stopped,Приостановлено apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Не удален apps/frappe/frappe/desk/like.py,Liked,Понравилось apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Отправить Сейчас apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандартный DocType не может иметь формат печати по умолчанию, используйте Настроить форму" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандартный DocType не может иметь формат печати по умолчанию, используйте Настроить форму" +DocType: Server Script,Allow Guest,Разрешить гость DocType: Report,Query,Запрос DocType: Customize Form,Sort Order,Порядок сортировки apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""Режим Просмотра Списком"" не допускается для типа {0} в строке {1}" @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Двухфакторный метод проверки подлинности apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Сначала задайте имя и сохраните запись. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 записей +DocType: DocType Link,Link Fieldname,Имя поля ссылки apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Общий с {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Отказаться от подписки DocType: View Log,Reference Name,Имя ссылки apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Сменить пользователя +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Первый apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Обновление переводов DocType: Error Snapshot,Exception,Исключение DocType: Email Account,Use IMAP,Использование IMAP @@ -808,6 +852,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, определяющие переход этапов в потоке." DocType: File,Folder,Папка DocType: Website Route Meta,Website Route Meta,Сайт Маршрут Мета +DocType: Onboarding Slide Field,Onboarding Slide Field,Слайд-поле DocType: DocField,Index,индекс DocType: Email Group,Newsletter Manager,Менеджер рассылки apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Опция 1 @@ -834,7 +879,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,У apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Настроить графики DocType: User,Last IP,Последний IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Пожалуйста, укажите тему вашего письма" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Новый документ {0} бы отправлен вам {1}. DocType: Data Migration Connector,Data Migration Connector,Разделитель данных apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} вернул {1} DocType: Email Account,Track Email Status,Статус отслеживания электронной почты @@ -887,6 +931,7 @@ DocType: Email Account,Default Outgoing,По умолчанию Исходящи DocType: Workflow State,play,играть apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Нажмите на ссылку ниже, чтобы завершить регистрацию и задать новый пароль" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Не добавить +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} набрал {1} баллов за {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Аккаунты электронной почты не установлены DocType: S3 Backup Settings,eu-west-2,ес-запад-2 DocType: Contact Us Settings,Contact Us Settings,Контакты Настройки @@ -895,6 +940,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Поис DocType: Workflow State,text-width,Текст ширины apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Максимальная Приложение Лимит на этой записи достигли. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Поиск по имени файла или расширению +DocType: Onboarding Slide,Slide Title,Название слайда DocType: Notification,View Properties (via Customize Form),Просмотр свойств (через Настроить форме) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Нажмите на файл, чтобы выбрать его." DocType: Note Seen By,Note Seen By,Примечание увиденных @@ -921,13 +967,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Поделиться URL DocType: System Settings,Allow Consecutive Login Attempts ,Разрешить последовательные попытки авторизации apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,В процессе оплаты произошла ошибка. Пожалуйста свяжитесь с нами. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Если тип слайда - «Создать» или «Настройки», то в файле {ref_doctype} .py должен быть указан метод create_onboarding_docs, который должен быть выполнен после завершения слайда." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} дней назад DocType: Email Account,Awaiting Password,Ожидание пароля DocType: Address,Address Line 1,Адрес (1-я строка) apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Не потомки DocType: Contact,Company Name,Название компании DocType: Custom DocPerm,Role,Роль -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Настройки ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,в ваш браузер apps/frappe/frappe/utils/data.py,Cent,Цент ,Recorder,самописец @@ -987,6 +1033,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Отслеживайте, если ваш адрес электронной почты был открыт получателем. <br> Примечание. Если вы отправляете нескольким получателям, даже если один получатель читает электронное письмо, он будет считаться «открытым»," apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Не заполнены обязательные поля apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Разрешить доступ к контактам Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ограниченный DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Отметить как непрочитанные DocType: Activity Log,Operation,Операция @@ -1039,6 +1086,7 @@ DocType: Web Form,Allow Print,Разрешить печать DocType: Communication,Clicked,Нажал apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Отписаться apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нет доступа для '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Пожалуйста, настройте учетную запись электронной почты по умолчанию из меню «Настройка»> «Электронная почта»>" apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Планируется отправить DocType: DocType,Track Seen,Трек посещение DocType: Dropbox Settings,File Backup,Архивирование файлов @@ -1047,12 +1095,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} не на apps/frappe/frappe/config/customization.py,Add custom forms.,Добавить пользовательские формы. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} в {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,представил этот документ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Система предоставляет множество заранее определенных ролей. Вы можете добавить новые роли, чтобы установить более тонкие разрешения." DocType: Communication,CC,CC DocType: Country,Geo,Гео DocType: Data Migration Run,Trigger Name,Имя триггера -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Домены +DocType: Onboarding Slide,Domains,Домены DocType: Blog Category,Blog Category,Категория Блога apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: , DocType: Role Permission for Page and Report,Roles HTML,Роли HTML @@ -1093,7 +1140,6 @@ DocType: Assignment Rule Day,Saturday,Суббота DocType: User,Represents a User in the system.,Представляет пользователя в системе. DocType: List View Setting,Disable Auto Refresh,Отключить автоматическое обновление DocType: Comment,Label,Имя поля -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Задача {0}, которую вы назначили {1}, была закрыта." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Пожалуйста, закройте это окно" DocType: Print Format,Print Format Type,Тип Печатной формы DocType: Newsletter,A Lead with this Email Address should exist,Обращение с этим адресом электронной почты должно существовать @@ -1110,6 +1156,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Настройки SMTP apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,выбрать DocType: Data Export,Filter List,Список фильтров DocType: Data Export,Excel,превосходить +DocType: System Settings,HH:mm,HH: мм DocType: Email Account,Auto Reply Message,Автоматический ответ DocType: Data Migration Mapping,Condition,Условия apps/frappe/frappe/utils/data.py,{0} hours ago,{0} часов назад @@ -1128,12 +1175,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Пользователь базы знаний DocType: Communication,Sent Read Receipt,Направлено прочтение DocType: Email Queue,Unsubscribe Method,Метод Отказаться +DocType: Onboarding Slide,Add More Button,Кнопка «Добавить еще» DocType: GSuite Templates,Related DocType,Связанный DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,"Изменить, чтобы добавить содержание" apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Выберите Языки apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Детали карты apps/frappe/frappe/__init__.py,No permission for {0},Нет доступа для {0} DocType: DocType,Advanced,Продвинутый +DocType: Onboarding Slide,Slide Image Source,Слайд Источник изображения apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,"Кажется, ключ API или API Секрет неправильно !!!" apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Ссылка: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Г-жа @@ -1150,6 +1199,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Магис DocType: DocType,User Cannot Create,Пользователь не может создавать apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно сделано apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,доступ Dropbox утвержден! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,"Вы уверены, что хотите объединить {0} с {1}?" DocType: Customize Form,Enter Form Type,Введите Form Тип DocType: Google Drive,Authorize Google Drive Access,Авторизовать Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Отсутствует параметр Наименование канбан-доски @@ -1159,7 +1209,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешение DocType, DocType. Осторожно!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Индивидуальные форматы для печати, электронной почты" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Сумма {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Обновлено до новой версии DocType: Custom Field,Depends On,Зависит от DocType: Kanban Board Column,Green,Зеленый DocType: Custom DocPerm,Additional Permissions,Дополнительные разрешения @@ -1187,6 +1236,7 @@ DocType: Energy Point Log,Social,Социальное apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Календарь Google. Не удалось создать календарь для {0}, код ошибки {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Редактирование строк DocType: Workflow Action Master,Workflow Action Master,Настройка Действий бизнес-процесса +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Удалить все DocType: Custom Field,Field Type,Тип поля apps/frappe/frappe/utils/data.py,only.,только. DocType: Route History,Route History,История маршрута @@ -1223,11 +1273,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Забыли пароль? DocType: System Settings,yyyy-mm-dd,гггг-мм-дд apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Ошибка сервера +DocType: Server Script,After Delete,После удаления apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Посмотреть все прошлые отчеты. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Войти Id требуется DocType: Website Slideshow,Website Slideshow,Сайт Слайд-шоу apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Нет данных DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Ссылка, что находитесь на сайте домашняя страница. Стандартные ссылки (индекс, логин, продукты, блог, о, контакт)" +DocType: Server Script,After Submit,После отправки apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ошибка аутентификации при получении писем от учетной записи электронной почты {0}. Сообщение от сервера: {1} DocType: User,Banner Image,Изображение баннера DocType: Custom Field,Custom Field,Пользовательские поля @@ -1268,15 +1320,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Если пользователь имеет какую-либо роль, то он становится «Пользователем системы». Пользователем системы имеет доступ к рабочему столу" DocType: System Settings,Date and Number Format,Настройки времени и валюты apps/frappe/frappe/model/document.py,one of,Один из -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Проверка одного момента apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Показать метки DocType: DocField,HTML Editor,Редактор HTML 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,Действия -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь +DocType: DocType,Actions,Действия DocType: Workflow State,align-justify,выровнять-оправдать DocType: User,Middle Name (Optional),Отчество (необязательно) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Не Допустимая @@ -1291,6 +1341,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Нет ре DocType: System Settings,Security,Безопасность apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Планируется отправить {0} получателей apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Порез +DocType: Server Script,After Save,После сохранения apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},переименован из {0} до {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} из {1} ({2} строк с дочерними элементами) DocType: Currency,**Currency** Master,**Валютный** Мастер @@ -1317,16 +1368,19 @@ DocType: Prepared Report,Filter Values,Значение фильтра DocType: Communication,User Tags,Метки пользователя DocType: Data Migration Run,Fail,Потерпеть неудачу DocType: Workflow State,download-alt,скачать-альт +DocType: Scheduled Job Type,Last Execution,Последнее исполнение DocType: Data Migration Run,Pull Failed,Не удалось выполнить Pull apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Показать / Скрыть Карты DocType: Communication,Feedback Request,Запросить оставить отзыв apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Импорт данных из файлов CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Эти поля отсутствуют: +DocType: Notification Log,From User,От пользователя apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Отмена {0} DocType: Web Page,Main Section,Основной раздел DocType: Page,Icon,значок apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Подсказка: укажите в пароле символы, цифры и прописные буквы" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Подсказка: укажите в пароле символы, цифры и прописные буквы" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Настройте уведомления для упоминаний, назначений, энергетических очков и многое другое." DocType: DocField,Allow in Quick Entry,Разрешить в быстрой записи apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,дд / мм / гггг @@ -1358,7 +1412,6 @@ DocType: Website Theme,Theme URL,URL темы DocType: Customize Form,Sort Field,Сортировать поле DocType: Razorpay Settings,Razorpay Settings,Настройки Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Изменить фильтр -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Добавить больше DocType: System Settings,Session Expiry Mobile,Сессия Срок Мобильная apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неверный пользователь или пароль apps/frappe/frappe/templates/includes/search_box.html,Search results for,Результаты поиска @@ -1374,8 +1427,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Правило энергетической точки DocType: Communication,Delayed,Задерживается apps/frappe/frappe/config/settings.py,List of backups available for download,"Список резервных копий, доступных для загрузки" +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Попробуйте новый импорт данных apps/frappe/frappe/www/login.html,Sign up,зарегистрироваться apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Строка {0}: не разрешено отключать обязательные для стандартных полей +DocType: Webhook,Enable Security,Включить безопасность apps/frappe/frappe/config/customization.py,Dashboards,Сводки DocType: Test Runner,Output,Вывод DocType: Milestone,Track Field,Трек Поле @@ -1383,6 +1438,7 @@ DocType: Notification,Set Property After Alert,Задать свойство п apps/frappe/frappe/config/customization.py,Add fields to forms.,Добавление полей в формах. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Похоже, что что-то не так с конфигурацией Paypal этого сайта." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Добавить отзыв +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} назначил вам новое задание {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Размер шрифта (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Только стандартные типы документов могут быть настроены из формы настройки. DocType: Email Account,Sendgrid,Sendgrid @@ -1394,8 +1450,10 @@ DocType: Portal Menu Item,Portal Menu Item,Портал Пункт меню apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Установить фильтры DocType: Contact Us Settings,Email ID,Идентификатор электронной почты DocType: Energy Point Rule,Multiplier Field,Поле множителя +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,"Не удалось создать заказ Razorpay. Пожалуйста, свяжитесь с администратором" DocType: Dashboard Chart,Time Interval,Интервал времени DocType: Activity Log,Keep track of all update feeds,Следите за всеми фидами обновлений +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} поделился с вами документом {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Список ресурсов, которые Клиент App будет иметь доступ к после того, как пользователь позволяет. <br> например, проект" DocType: Translation,Translated Text,Переведенный текст DocType: Contact Us Settings,Query Options,Параметры запроса @@ -1414,6 +1472,7 @@ DocType: DefaultValue,Key,Ключ DocType: Address,Contacts,Контакты DocType: System Settings,Setup Complete,Завершение установки apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Сообщить всех акций документов +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблон импорта должен иметь тип .csv, .xlsx или .xls" apps/frappe/frappe/www/update-password.html,New Password,Новый пароль apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Фильтр {0} отсутствует apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Сожалею! Вы не можете удалять автоматически генерируемые комментарии @@ -1430,6 +1489,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Бег DocType: Blog Post,Content (HTML),Контент (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Настройка для DocType: Personal Data Download Request,User Name,Имя пользователя DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не найдено @@ -1437,11 +1497,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Нет {0} разреше apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Разрешения Экспорт пользовательских apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ничего не найдено. DocType: Data Export,Fields Multicheck,Поле Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Завершено DocType: Activity Log,Login,Войти DocType: Web Form,Payments,Оплата apps/frappe/frappe/www/qrcode.html,Hi {0},Привет {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Интеграция с Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} вернул ваши очки на {1} {2} DocType: System Settings,Enable Scheduled Jobs,Включить запланированных заданий apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Заметки: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Неактивный @@ -1466,6 +1526,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаб apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Ошибка разрешения apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Название {0} не может быть {1} DocType: User Permission,Applicable For,Применимо для +DocType: Dashboard Chart,From Date,С apps/frappe/frappe/core/doctype/version/version_view.html,Success,Успешно apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Сеанс истек DocType: Kanban Board Column,Kanban Board Column,Колонка канбан-доски @@ -1477,7 +1538,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Не допускается в состоянии DocType: Async Task,Async Task,Не связанная задача DocType: Workflow State,picture,картинка -apps/frappe/frappe/www/complete_signup.html,Complete,Полный +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Полный DocType: DocType,Image Field,Поле изображения DocType: Print Format,Custom HTML Help,Особый HTML Помощь DocType: LDAP Settings,Default Role on Creation,Роль по умолчанию при создании @@ -1485,6 +1546,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Следующее состояние DocType: User,Block Modules,Блок модули DocType: Print Format,Custom CSS,Свой CSS +DocType: Energy Point Rule,Apply Only Once,Применить только один раз apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Добавить комментарий DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Игнорируется: {0} до {1} @@ -1496,6 +1558,7 @@ DocType: Email Account,Default Incoming,По умолчанию Входящий DocType: Workflow State,repeat,повторить DocType: Website Settings,Banner,Баннер apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Значение должно быть одним из {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Отменить все документы DocType: Role,"If disabled, this role will be removed from all users.","Если эта функция отключена, эта роль будет удалена от всех пользователей." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Перейти к списку {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помощь в Поиске @@ -1504,6 +1567,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Зарег apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоповтор для этого документа был отключен. DocType: DocType,Hide Copy,Скрыть копирование apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Очистите все роли +DocType: Server Script,Before Save,Перед сохранением apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} должен быть уникальным apps/frappe/frappe/model/base_document.py,Row,Строка apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC и шаблон электронной почты" @@ -1514,7 +1578,6 @@ DocType: Chat Profile,Offline,Не в сети apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Успешно импортировано {0} DocType: User,API Key,API Ключ DocType: Email Account,Send unsubscribe message in email,Отправить сообщение об отказе от подписки на электронную почту -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Редактировать apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,"Имя поля, которое будет Типом документа для этого поля связи." apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,"Документы, присвоенные вами и вас." apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Вы также можете скопировать и вставить это @@ -1546,8 +1609,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Прикрепить изображение DocType: Workflow State,list-alt,Список-альт apps/frappe/frappe/www/update-password.html,Password Updated,Пароль обновлён +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Шаги по проверке вашего логина apps/frappe/frappe/utils/password.py,Password not found,Пароль не найден +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Длина страницы DocType: Email Queue,Expose Recipients,Expose Получатели apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Добавить к является обязательным для входящих сообщений @@ -1575,6 +1640,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимальный размер вложения (в МБ) apps/frappe/frappe/www/login.html,Have an account? Login,Иметь аккаунт? Авторизоваться +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Настройки печати ... DocType: Workflow State,arrow-down,Стрелка вниз apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ряд {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Пользователь не имеет права удалить {0}: {1} @@ -1596,6 +1662,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Секретный ключ DocType: Tag Link,Document Title,Заголовок документа apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обязательное) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад DocType: Social Login Key,Social Login Provider,Социальный провайдер apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Добавить еще один комментарий apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,В файле нет данных. Перезагрузите новый файл данными. @@ -1610,11 +1677,12 @@ DocType: Workflow State,hand-down,ручной вниз apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Не найдено полей, которые можно использовать в качестве столбца Канбана. Используйте форму настройки, чтобы добавить настраиваемое поле типа «Выбрать»." DocType: Address,GST State,Государство GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Не удается установить Отмена без отправки +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Пользователь ({0}) DocType: Website Theme,Theme,Тема DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,"Перенаправление URI, связанного с Auth кодекса" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Открыть справку DocType: DocType,Is Submittable,подлежит проведению -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Новое упоминание +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Новое упоминание apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Новые контакты Google не синхронизированы. DocType: File,Uploaded To Google Drive,Загружено на Google Диск apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,"Значение для поля проверки может быть либо 0, либо 1" @@ -1626,7 +1694,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Входящие DocType: Kanban Board Column,Red,Красный DocType: Workflow State,Tag,Тэг -DocType: Custom Script,Script,Скрипт +DocType: Report,Script,Скрипт apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Документ не может быть сохранен. DocType: Energy Point Rule,Maximum Points,Максимум очков apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мои настройки @@ -1656,9 +1724,12 @@ DocType: Address,Haryana,Харьяны apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} баллы за {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Роли могут быть установлены для пользователей со страницы пользователя. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Добавить комментарий +DocType: Dashboard Chart,Select Date Range,Выберите диапазон дат DocType: DocField,Mandatory,Обязательный apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модуль для экспорта +DocType: Scheduled Job Type,Monthly Long,Ежемесячно долго apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Не установлен базовый набор разрешений +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Отправьте письмо на {0}, чтобы связать его здесь" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Значение Провести, Отменить, Изменить" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Список дел @@ -1667,7 +1738,6 @@ DocType: Milestone Tracker,Track milestones for any document,Отслежива DocType: Social Login Key,Identity Details,Сведения о личности apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Переход состояния рабочего процесса не разрешен из {0} в {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Показать панель инструментов -apps/frappe/frappe/desk/form/assign_to.py,New Message,Новое сообщение DocType: File,Preview HTML,Предварительный HTML DocType: Desktop Icon,query-report,запрос-отчет DocType: Data Import Beta,Template Warnings,Шаблон предупреждений @@ -1678,18 +1748,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Связан apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Изменить настройки отчета по электронной почте DocType: Chat Room,Message Count,Количество сообщений DocType: Workflow State,book,книга +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} связан со следующими представленными документами: {2} DocType: Communication,Read by Recipient,Читать Получатель DocType: Website Settings,Landing Page,Страница входа apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Ошибка в пользовательской Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Имя apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Разрешения не установлен для этого критериев. DocType: Auto Email Report,Auto Email Report,Автоотчет по электронной почте +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Новый документ опубликован apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Удалить комментарий? DocType: Address Template,This format is used if country specific format is not found,"Этот формат используется, когда формат конкретной страна не найден" DocType: System Settings,Allow Login using Mobile Number,Разрешить вход в систему с помощью мобильного номера apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,"У вас нет достаточных прав для доступа к этому ресурсу. Пожалуйста, обратитесь к своему менеджеру, чтобы получить доступ." DocType: Custom Field,Custom,Пользовательские DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Если включено, пользователи, которые подключаются с ограниченным IP-адресом, не будут запрашиваться для Two Factor Auth" +DocType: Server Script,After Cancel,После отмены DocType: Auto Repeat,Get Contacts,Получить контакты apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},"Сообщения, поданные в соответствии с {0}" apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Пропуск столбца без названия @@ -1700,6 +1773,7 @@ DocType: User,Login After,Входить после DocType: Print Format,Monospace,Моноширинный DocType: Letter Head,Printing,Печать DocType: Workflow State,thumbs-up,палец вверх +DocType: Notification Log,Mention,Упоминание DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Шрифты apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Точность должна быть между 1 и 6 @@ -1707,7 +1781,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,и apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Этот отчет был создан в {0} DocType: Error Snapshot,Frames,Рамки -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,назначение +DocType: Notification Log,Assignment,назначение DocType: Notification,Slack Channel,Слабый канал DocType: About Us Team Member,Image Link,Ссылка на изображение DocType: Auto Email Report,Report Filters,Фильтры отчетов @@ -1724,7 +1798,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Не удалось обновить событие apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Код подтверждения отправлен на ваш адрес электронной почты регистрации. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Ваша цель apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Фильтр должен иметь 4 значения (doctype, имя поля, оператор, значение): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Имя не указано для {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Применить правило назначения apps/frappe/frappe/utils/bot.py,show,показать apps/frappe/frappe/utils/data.py,Invalid field name {0},Недопустимое имя поля {0} @@ -1734,7 +1810,6 @@ DocType: Workflow State,text-height,Текст-высота DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Составление карт переноса данных apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Запуск Frappé ... DocType: Web Form Field,Max Length,Максимальная длина -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Для {0} {1} DocType: Print Format,Jinja,дзиндзя DocType: Workflow State,map-marker,Карта-маркер apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Отправить вопрос @@ -1770,6 +1845,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Страница отсу apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Отзывы DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Настройки шлюза оплаты Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} набрал {1} очко за {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Получение прикрепленных изображений из документа DocType: Chat Room,Name,Имя DocType: Contact Us Settings,Skype,Skype @@ -1780,7 +1856,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Открыт apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ваш язык DocType: Dashboard Chart,Average,Средний apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Добавить ряд -DocType: Tag Category,Doctypes,DOCTYPEs apps/frappe/frappe/public/js/frappe/form/print.js,Printer,принтер apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Запрос должен быть ВЫБОР DocType: Auto Repeat,Completed,Завершено @@ -1840,6 +1915,7 @@ DocType: GCalendar Account,Next Sync Token,Следующий токен син DocType: Energy Point Settings,Energy Point Settings,Настройки энергетической точки DocType: Async Task,Succeeded,Преемник apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Обязательные поля, необходимые в {0}" +DocType: Onboarding Slide Field,Align,Align apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Сброс разрешений для {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Пользователи и разрешения DocType: S3 Backup Settings,S3 Backup Settings,Настройки резервного копирования S3 @@ -1856,7 +1932,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Название нового формата печати apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Нажмите на ссылку ниже, чтобы подтвердить запрос" DocType: Workflow State,align-left,выровнять левый +DocType: Onboarding Slide,Action Settings,Настройки действий DocType: User,Defaults,Значения по Умолчанию +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для сравнения используйте> 5, <10 или = 324. Для диапазонов используйте 5:10 (для значений от 5 до 10)." DocType: Energy Point Log,Revert Of,Возврат Из apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Слияние с существующими DocType: User,Birth Date,Дата рождения @@ -1912,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,В DocType: Notification,Value Change,Стоимость Изменение DocType: Google Contacts,Authorize Google Contacts Access,Авторизовать доступ к контактам Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Отображение только числовых полей из отчета +apps/frappe/frappe/utils/data.py,1 week ago,1 неделю назад DocType: Data Import Beta,Import Type,Тип импорта DocType: Access Log,HTML Page,HTML-страница DocType: Address,Subsidiary,Филиал @@ -1921,7 +2000,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,На фирменном бланке apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Неверный Сервер исходящей почты или порт DocType: Custom DocPerm,Write,Написать -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Только администратор может создавать отчёт-выборку / программируемый отчёт apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Обновление DocType: Data Import Beta,Preview,Просмотр apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Поле ""Значение"" является обязательным. Пожалуйста, укажите значение, чтобы обновить" @@ -1931,6 +2009,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Пригл DocType: Data Migration Run,Started,Начал apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Пользователь {0} не имеет доступа к этому документу DocType: Data Migration Run,End Time,Время окончания +DocType: Dashboard Chart,Group By Based On,Группировать по на основе apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Выберите Вложения apps/frappe/frappe/model/naming.py, for {0},для {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Вы не можете распечатать этот документ @@ -1972,6 +2051,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Проверить DocType: Workflow Document State,Update Field,Обновляемое поле DocType: Chat Profile,Enable Chat,Включить чат DocType: LDAP Settings,Base Distinguished Name (DN),Основание различающееся имя (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Оставьте этот разговор apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Опции не установлен поля связи {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Очередь / Рабочий @@ -2040,12 +2120,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Войти не допускается в это время DocType: Data Migration Run,Current Mapping Action,Текущие действия по составлению карт DocType: Dashboard Chart Source,Source Name,Имя источника -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нет учетной записи электронной почты, связанной с пользователем. Пожалуйста, добавьте учетную запись под User> Email Inbox." DocType: Email Account,Email Sync Option,Опция синхронизации электронной почты apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Строка Нет DocType: Async Task,Runtime,Продолжительность DocType: Post,Is Pinned,Прикреплено DocType: Contact Us Settings,Introduction,Введение +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Нужна помощь? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin глобально apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,С последующим DocType: LDAP Settings,LDAP Email Field,LDAP Email Поле @@ -2055,7 +2135,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Уже в DocType: User Email,Enable Outgoing,Включить исходящие DocType: Address,Fax,Факс apps/frappe/frappe/config/customization.py,Custom Tags,Пользовательские теги -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»." DocType: Comment,Submitted,Проведенный DocType: Contact,Pulled from Google Contacts,Вытащено из контактов Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Неверный запрос @@ -2076,9 +2155,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Главн apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Назначить мне DocType: DocField,Dynamic Link,Динамическая ссылка apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Нажмите клавишу Alt, чтобы вызвать дополнительные ярлыки в меню и боковой панели" +DocType: Dashboard Chart,To Date,До DocType: List View Setting,List View Setting,Настройка просмотра списка apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Показывать не удалось рабочих мест -DocType: Event,Details,Подробности +DocType: Scheduled Job Log,Details,Подробности DocType: Property Setter,DocType or Field,DocType или поле apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Вы отписались от этого документа apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Основной цвет @@ -2087,7 +2167,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Кажется, что ключ для публикации или секретный ключ неправильный !!!" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Кажется, что ключ для публикации или секретный ключ неправильный !!!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Быстрая помощь при настройки прав доступа -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype Назначение метки apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Показать Рецидивы apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Электронная почта была перемещена в корзину DocType: Report,Report Builder,Конструктор отчетов @@ -2103,6 +2182,7 @@ DocType: Workflow State,Upload,загружать DocType: User Permission,Advanced Control,Расширенный контроль DocType: System Settings,Date Format,Формат даты apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Не опубликовано +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»" apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Действия для потока (например: утвердить, отменить)." DocType: Data Import,Skip rows with errors,Пропустить строки с ошибками DocType: Workflow State,flag,помечать @@ -2112,7 +2192,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Пе apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Перейти к полю DocType: Contact Us Settings,Forward To Email Address,Переслать на адрес электронной почты DocType: Contact Phone,Is Primary Phone,Основной телефон -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Отправьте письмо на {0}, чтобы связать его здесь." DocType: Auto Email Report,Weekdays,Будни apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} записей будут экспортированы apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля @@ -2120,7 +2199,7 @@ DocType: Post Comment,Post Comment,Оставьте комментарий apps/frappe/frappe/config/core.py,Documents,Документы apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Активность Журнал по DocType: Social Login Key,Custom Base URL,Пользовательский базовый URL -DocType: Email Flag Queue,Is Completed,Выполнен +DocType: Onboarding Slide,Is Completed,Выполнен apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Получить поля apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Редактировать профиль DocType: Kanban Board Column,Archived,Архивные @@ -2131,11 +2210,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18","Это поле появляется только в случае, если имя_поля определено здесь имеет значение или правила являются истинными (примеры): MyField Eval: doc.myfield == 'My Value' Eval: doc.age> 18" DocType: Social Login Key,Office 365,Офис 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Cегодня +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Cегодня apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","После такой установки, пользователи получат доступ только к документам (например, сообщениям в блоге), связанным с этими разрешениями пользователя (например, блоггера)." DocType: Data Import Beta,Submit After Import,Отправить после импорта DocType: Error Log,Log of Scheduler Errors,Журнал ошибок Scheduler DocType: User,Bio,Биография +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Ссылка на справку по слайду DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Проведение apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Родитель - это имя документа, к которому будут добавлены данные." @@ -2143,7 +2223,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ВЕРХНИЙ РЕГИСТР apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Особый HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Введите имя папки -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»." apps/frappe/frappe/auth.py,Unknown User,Неизвестный пользователь apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Выберите Роль DocType: Comment,Deleted,Удаленный @@ -2159,7 +2238,7 @@ DocType: Chat Token,Chat Token,Чат-токен apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Создать диаграмму apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не импортировать -DocType: Web Page,Center,Центр +DocType: Onboarding Slide Field,Center,Центр DocType: Notification,Value To Be Set,"Значение, которое должно быть установлено" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Изменить {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Первый уровень @@ -2167,7 +2246,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Имя базы данных apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Обновить Форма DocType: DocField,Select,Выбрать -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Посмотреть полный журнал +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Посмотреть полный журнал DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Простое выражение Python, пример: status == 'Open' и тип == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Файл не прикреплен apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Соединение потеряно. Некоторые функции могут не работать. @@ -2199,6 +2278,7 @@ DocType: Web Page,HTML for header section. Optional,HTML для секции hea apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Эта функция является новой и до сих пор экспериментальная apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Максимальные {0} строк разрешено DocType: Dashboard Chart Link,Chart,Диаграмма +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Глобальный Отказаться apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Это очень общий пароль. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Посмотреть @@ -2215,6 +2295,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Детализация условий apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Для валюты {0} минимальная сумма транзакции должна быть {1} DocType: DocField,Print Hide,Распечатать Свернуть +DocType: System Settings,HH:mm:ss,HH: мм: сс apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Пользователю apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Введите значение DocType: Workflow State,tint,оттенок @@ -2282,6 +2363,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-код дл apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Добавить в список дел DocType: Footer Item,Company,Организация apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Среднее из {0} +DocType: Scheduled Job Log,Scheduled,Запланированно DocType: User,Logout from all devices while changing Password,Выход из всех устройств при смене пароля apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Подтвердите Пароль apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Были ошибки @@ -2307,7 +2389,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Пользовательское разрешение уже существует apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Отображение столбца {0} в поле {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Просмотреть {0} -DocType: User,Hourly,почасовой +DocType: Scheduled Job Type,Hourly,почасовой apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрация OAuth Client App DocType: DocField,Fetch If Empty,"Получить, если пусто" DocType: Data Migration Connector,Authentication Credentials,Аутентификационные учетные данные @@ -2318,10 +2400,10 @@ DocType: SMS Settings,SMS Gateway URL,URL СМС-шлюза apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не может быть ""{2}"". Это должно быть одним из ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},получено {0} через автоматическое правило {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} или {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Вы все настроены! DocType: Workflow State,trash,мусор DocType: System Settings,Older backups will be automatically deleted,Более старые резервные копии будут автоматически удалены apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Недействительный ключ ключа доступа или секретный ключ доступа. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Вы потеряли несколько очков энергии DocType: Post,Is Globally Pinned,Глобально закреплено apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Недавняя активность DocType: Workflow Transition,Conditions,Условия @@ -2330,6 +2412,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Подтве DocType: Event,Ends on,Заканчивается на DocType: Payment Gateway,Gateway,Шлюз DocType: LDAP Settings,Path to Server Certificate,Путь к сертификату сервера +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript отключен в вашем браузере apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Недостаточно прав для просмотра ссылок apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Недостаточно прав для просмотра ссылок apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Название адреса является обязательным. @@ -2349,7 +2432,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,ес-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Если этот флажок установлен, строки с достоверными данными будут импортированы, а недопустимые строки будут сбрасываться в новый файл для последующего импорта." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ может редактироваться только пользователями роли -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,Прочитать Получатель DocType: Blogger,Short Name,Короткое Имя @@ -2382,6 +2464,7 @@ DocType: Translation,PR sent,Пиар отправлен DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Отправлять записи, обновленные за последние X часов" DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Отправлять записи, обновленные за последние X часов" DocType: Communication,Feedback,Обратная связь +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Обновлено до новой версии 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Открыть перевод apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Это письмо сгенерировано автоматически DocType: Workflow State,Icon will appear on the button,Иконка появится на кнопке @@ -2420,6 +2503,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Стран DocType: DocField,Precision,Точность DocType: Website Slideshow,Slideshow Items,Продукты слайд-шоу apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Старайтесь избегать повторяющихся слов и символов +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Уведомления отключены +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,"Вы уверены, что хотите удалить все строки?" DocType: Workflow Action,Workflow State,Состояние потока apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Ряды Добавлено apps/frappe/frappe/www/list.py,My Account,Мой аккаунт @@ -2428,6 +2513,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Дней после apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Подключение к лотку QZ активно! DocType: Contact Us Settings,Settings for Contact Us Page,Настройки для контакт мы страница +DocType: Server Script,Script Type,Тип скрипта DocType: Print Settings,Enable Print Server,Включить сервер печати apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} недель назад DocType: Email Account,Footer,Низ страницы @@ -2453,8 +2539,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Предупреждение apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Это может быть напечатано на нескольких страницах DocType: Data Migration Run,Percent Complete,Процент завершен -DocType: Tag Category,Tag Category,Тэг Категория -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для сравнения используйте> 5, <10 или = 324. Для диапазонов используйте 5:10 (для значений от 5 до 10)." DocType: Google Calendar,Pull from Google Calendar,Вытащить из календаря Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Помощь DocType: User,Login Before,Входить до @@ -2464,17 +2548,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Скрыть выходные apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматически генерирует повторяющиеся документы. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Является +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,Информация-знак apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Значение {0} не может быть списком DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как следует отображать числа в этой валюте? Если не указано, то будут использоваться системные значения" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Отправить {0} документы? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему (и иметь роль менеджера системы), чтобы иметь доступ к резервным копиям." +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Ошибка подключения к приложению QZ Tray ... <br><br> Вам необходимо установить и запустить приложение QZ Tray, чтобы использовать функцию Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Нажмите здесь, чтобы загрузить и установить QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Нажмите здесь, чтобы узнать больше о Raw Printing</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Отображение принтера apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Пожалуйста, сохраните перед установкой." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Вы хотите отменить все связанные документы? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Добавлено {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Тип поля не может быть изменен с {0} на {1} в строке {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Разрешения роли DocType: Help Article,Intermediate,промежуточный +apps/frappe/frappe/config/settings.py,Email / Notifications,Уведомления по электронной почте apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} изменено {1} на {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Отмененный документ восстановлен как черновик DocType: Data Migration Run,Start Time,Время @@ -2491,6 +2579,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,М apps/frappe/frappe/email/smtp.py,Invalid recipient address,Неверный адрес получателя DocType: Workflow State,step-forward,шаг вперед DocType: System Settings,Allow Login After Fail,Разрешить авторизацию после неудачной попытки +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,Установить роль для DocType: GCalendar Account,The name that will appear in Google Calendar,"Имя, которое появится в Календаре Google" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Прямая комната с {0} уже существует. @@ -2508,6 +2597,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Созд DocType: Contact,Google Contacts,Контакты Google DocType: GCalendar Account,GCalendar Account,Аккаунт GCalendar DocType: Email Rule,Is Spam,Спам +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Последний apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Сообщить {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Открыть {0} DocType: Data Import Beta,Import Warnings,Импорт предупреждений @@ -2519,6 +2609,7 @@ DocType: Workflow State,ok-sign,в порядке-знак apps/frappe/frappe/config/settings.py,Deleted Documents,Удаленные документы apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Формат CSV чувствителен к регистру apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Значок рабочего стола уже существует +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Укажите, в каких доменах должны отображаться слайды. Если ничего не указано, по умолчанию показывается слайд во всех доменах." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дублировать apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: поле {1} в строке {2} не может быть скрыто и является обязательным без значения по умолчанию DocType: Newsletter,Create and Send Newsletters,Создание и отправка рассылки @@ -2529,6 +2620,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Идентификатор события Календаря Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","«Родитель» означает родительскую таблицу, в которую должна быть добавлена эта строка" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Очки обзора: +DocType: Scheduled Job Log,Scheduled Job Log,Журнал запланированных работ +DocType: Server Script,Before Delete,Перед удалением apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Совместно с apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Прикрепить файлы / URL-адреса и добавить в таблицу. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Сообщение не установлено @@ -2552,19 +2645,21 @@ DocType: About Us Settings,Settings for the About Us Page,Установки д apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Настройки платежного шлюза apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Настройки платежного шлюза apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Печать отправлена на принтер! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Энергетические точки +DocType: Notification Settings,Energy Points,Энергетические точки +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Время {0} должно быть в формате: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,например pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Создать ключи apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Это навсегда удалит ваши данные. DocType: DocType,View Settings,Просмотр параметров +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Новое уведомление DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Структура запроса +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Метод контроллера get_razorpay_order отсутствует DocType: Personal Data Deletion Request,Pending Verification,ожидает подтвержения DocType: Website Meta Tag,Website Meta Tag,Метатег веб-сайта DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Если нестандартный порт (например, 587). Если в Google Cloud, попробуйте порт 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Очистка даты окончания, поскольку она не может быть в прошлом для опубликованных страниц." DocType: User,Send Me A Copy of Outgoing Emails,Отправить мне копию исходящих писем -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.,"Добавить Google Analytics ID: например. UA-89XXX57-1. Пожалуйста, посмотрите помощь по Google Analytics для получения дополнительной информации." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Пароль не может быть длиннее 100 символов DocType: OAuth Client,App Client ID,App ID клиента @@ -2593,6 +2688,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Требуе apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} поделился этим документом с {1} DocType: Website Settings,Brand Image,Изображение бренда DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Шаблон импорта должен содержать заголовок и не менее одной строки. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Календарь Google был настроен. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Настройка верхней панели, навигации, подвала и логотипа." DocType: Web Form Field,Max Value,Максимальное значение @@ -2602,6 +2698,7 @@ DocType: User Social Login,User Social Login,Пользовательский с apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} подверг критике вашу работу с {1} баллом {2} DocType: Contact,All,Все DocType: Email Queue,Recipient,Сторона-реципиент +DocType: Webhook,Webhook Security,Безопасность Webhook DocType: Communication,Has Attachment,Имеет Вложения DocType: Address,Sales User,Продавец apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Перетащите и инструмент Интерактивная построить и настроить форматы печати. @@ -2668,7 +2765,6 @@ DocType: Data Migration Mapping,Migration ID Field,Поле идентифика DocType: Dashboard Chart,Last Synced On,Последняя синхронизация включена DocType: Comment,Comment Type,Комментарий Тип DocType: OAuth Client,OAuth Client,Клиент OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} подверг критике вашу работу над {1} {2} DocType: Assignment Rule,Users,Пользователи DocType: Address,Odisha,Odisha DocType: Report,Report Type,Тип отчета @@ -2694,14 +2790,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Сайт Слайд-шо apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Самоподтверждение не допускается DocType: GSuite Templates,Template ID,Идентификатор шаблона apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Сочетание типа гранта ( <code>{0}</code> ) и типа ответа ( <code>{1}</code> ) не допускается -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Новое сообщение от {0} DocType: Portal Settings,Default Role at Time of Signup,По умолчанию Роль Время в Signup DocType: DocType,Title Case,Название дела apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Нажмите на ссылку ниже, чтобы загрузить ваши данные" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Включен почтовый ящик для пользователя {0} DocType: Data Migration Run,Data Migration Run,Запуск миграции данных DocType: Blog Post,Email Sent,Письмо отправлено -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Старшая DocType: DocField,Ignore XSS Filter,Игнорировать XSS-фильтр apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,удален apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Настройки резервного копирования Dropbox @@ -2756,6 +2850,7 @@ DocType: Async Task,Queued,В очереди DocType: Braintree Settings,Use Sandbox,Использовать «песочницу» apps/frappe/frappe/utils/goal.py,This month,Этот месяц apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Новый пользовательский Формат печати +DocType: Server Script,Before Save (Submitted Document),Перед сохранением (отправленный документ) DocType: Custom DocPerm,Create,Создать apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Нет больше элементов для отображения apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Перейти к предыдущей записи @@ -2813,6 +2908,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Переместить в корзину DocType: Web Form,Web Form Fields,Web Form Поля DocType: Data Import,Amended From,Измененный С +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Добавьте ссылку на справочное видео на тот случай, если пользователь не знает, что заполнять слайд." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},"Предупреждение: Не удалось найти {0} в любой таблице, связанной с {1}" DocType: S3 Backup Settings,eu-north-1,ес-северо-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Этот документ в настоящее время в очередь на выполнение. Пожалуйста, попробуйте еще раз" @@ -2835,6 +2931,7 @@ DocType: Blog Post,Blog Post,Пост блога DocType: Access Log,Export From,Экспорт из apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Расширенный поиск apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,У Вас нет прав для просмотра данной новостной ленты +DocType: Dashboard Chart,Group By,Group By DocType: User,Interests,интересы apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции по восстановлению пароля были отправлены на ваш email DocType: Energy Point Rule,Allot Points To Assigned Users,Выделить очки назначенным пользователям @@ -2850,6 +2947,7 @@ DocType: Assignment Rule,Assignment Rule,Правило назначения apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Похожие Имя пользователя: {0} DocType: Assignment Rule Day,Day,День apps/frappe/frappe/public/js/frappe/desk.js,Modules,Модули +DocType: DocField,Mandatory Depends On,Обязательный Зависит от apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Оплата успеха apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Нет {0} почта DocType: OAuth Bearer Token,Revoked,Revoked @@ -2857,6 +2955,7 @@ DocType: Web Page,Sidebar and Comments,Боковая панель и комме apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Когда вы Измените (Amend) документ после Отмены (Cancel) и сохраните его, он получит новый номер, который является версией старого номера." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Не разрешено прикреплять документ {0}, включите параметр Разрешить печать для {0} в настройках печати" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»." apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},См. Документ в {0} DocType: Stripe Settings,Publishable Key,Ключ для публикации apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Начать импорт @@ -2870,13 +2969,13 @@ DocType: Currency,Fraction,Дробные единицы apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Событие синхронизировано с календарем Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Имя поля DocType: Contact,Middle Name,Второе имя +DocType: DocField,Property Depends On,Недвижимость зависит от DocType: Custom Field,Field Description,Описание Поля apps/frappe/frappe/model/naming.py,Name not set via Prompt,Имя не установлено через строки apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Входящая почта apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Обновление {0} из {1}, {2}" DocType: Auto Email Report,Filters Display,Фильтры Показать apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Поле "amend_from" должно присутствовать для внесения изменений. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} оценил вашу работу по {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Сохранить фильтры DocType: Address,Plant,Завод apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Ответить всем @@ -2917,11 +3016,11 @@ DocType: Workflow State,folder-close,папка-закрыть apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Доклад: DocType: Print Settings,Print taxes with zero amount,Печать налогов с нулевой суммой apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} не могут быть переименованы +DocType: Server Script,Before Insert,Перед вставкой DocType: Custom Script,Custom Script,Специального сценария DocType: Address,Address Line 2,Адрес (2-я строка) DocType: Address,Reference,Справка apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Назначено -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Настройте учетную запись электронной почты по умолчанию в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты». DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Подробное описание миграции данных DocType: Data Import,Action,Действие DocType: GSuite Settings,Script URL,URL-адрес сценария @@ -2947,11 +3046,13 @@ DocType: User,Api Access,Доступ к API DocType: DocField,In List View,В виде списка DocType: Email Account,Use TLS,Использовать TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Неверный логин или пароль +DocType: Scheduled Job Type,Weekly Long,Еженедельно Лонг apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Скачать шаблон apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Добавить пользовательские JavaScript в формах. ,Role Permissions Manager,Менеджер разрешений на роль apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Название новой печатной формы apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Переключить боковую панель +DocType: Server Script,After Save (Submitted Document),После сохранения (отправленный документ) DocType: Data Migration Run,Pull Insert,Вставить вкладыш DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Максимальное количество баллов, допустимое после умножения баллов на значение множителя (Примечание: для ограничения не оставляйте это поле пустым или установите 0)" @@ -2971,6 +3072,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP не установлен apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Скачать с данными apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},измененные значения для {0} {1} +DocType: Server Script,Before Cancel,Перед отменой DocType: Workflow State,hand-right,ручной право DocType: Website Settings,Subdomain,Субдомен DocType: S3 Backup Settings,Region,Область @@ -3017,12 +3119,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Старый Парол DocType: S3 Backup Settings,us-east-1,мы-восток-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Сообщений {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Для форматирования столбцов, дать заголовки столбцов в запросе." +DocType: Onboarding Slide,Slide Fields,Слайд Поля DocType: Has Domain,Has Domain,Имеет домен DocType: User,Allowed In Mentions,Разрешено в упоминаниях apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Не зарегистрированы? зарегистрироваться apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Не удается удалить поле ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0}: Не удается установить Назначить изменение, если не подлежит проведению" DocType: Address,Bihar,Бихар +DocType: Notification Settings,Subscribed Documents,Подписные документы apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Пользовательские настройки DocType: Report,Reference Report,Справочный отчет DocType: Activity Log,Link DocType,Ссылка DocType @@ -3040,6 +3144,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Авторизоват apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Страница, которую вы ищете, не найдена. Возможно, она перемещена, или в ссылке допущена опечатка" apps/frappe/frappe/www/404.html,Error Code: {0},Код ошибки: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание для листинга странице, в виде обычного текста, только пару строк. (Макс. 140 символов)" +DocType: Server Script,DocType Event,Событие DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} обязательные поля DocType: Workflow,Allow Self Approval,Разрешить самостоятельное утверждение DocType: Event,Event Category,Категория события @@ -3056,6 +3161,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ваше имя apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успех подключения DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Входящий слайд с типом слайда Продолжить уже существует. DocType: DocType,Default Sort Field,Поле сортировки по умолчанию DocType: File,Is Folder,Папка DocType: Document Follow,DocType,DocType @@ -3094,8 +3200,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Зна DocType: Workflow State,arrow-up,Стрелка вверх DocType: Dynamic Link,Link Document Type,Тип документа ссылки apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Должна быть хотя бы одна строка для таблицы {0} +DocType: Server Script,Server Script,Серверный скрипт apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Чтобы настроить автоматический повтор, включите «Разрешить автоматический повтор» из {0}." DocType: OAuth Bearer Token,Expires In,Истекает +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Сколько раз вы хотите повторить набор полей (например, если вы хотите, чтобы на слайде было 3 клиента, установите для этого поля значение 3. Только первый набор полей будет показан как обязательный на слайде)" DocType: DocField,Allow on Submit,Разрешить проведение DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Тип исключения @@ -3105,6 +3213,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Заголовки apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Предстоящие События apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Пожалуйста, введите ключ доступа и секретный ключ приложения" +DocType: Email Account,Append Emails to Sent Folder,Добавить электронные письма в отправленную папку DocType: Web Form,Accept Payment,Подтвердить платеж apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Выберите элемент списка apps/frappe/frappe/config/core.py,A log of request errors,Журнал ошибок запроса @@ -3123,7 +3232,7 @@ DocType: Translation,Contributed,Внесенный apps/frappe/frappe/config/customization.py,Form Customization,Настройка формы apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нет активных сеансов DocType: Web Form,Route to Success Link,Ссылка маршрута к успеху -DocType: Top Bar Item,Right,Справа +DocType: Onboarding Slide Field,Right,Справа apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Нет предстоящих событий DocType: User,User Type,Тип пользователя DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3141,6 +3250,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Пожалуй apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL должен начинаться с «http: //» или «https: //» apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Вариант 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Это не может быть отменено DocType: Workflow State,Edit,Редактировать DocType: Website Settings,Chat Operators,Операторы чата DocType: S3 Backup Settings,ca-central-1,ча-центрально-1 @@ -3152,7 +3262,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Есть несохранённые изменения в этой форме. Пожалуйста, сохраните прежде чем продолжить." DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,По умолчанию для {0} должен быть вариант -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Отчет с более чем 10 столбцами выглядит лучше в ландшафтном режиме. apps/frappe/frappe/database/database.py,Invalid field name: {0},Неверное имя поля: {0} DocType: Milestone,Milestone,Этап @@ -3161,7 +3270,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Перейти к { apps/frappe/frappe/email/queue.py,Emails are muted,Письма отключены apps/frappe/frappe/config/integrations.py,Google Services,Службы Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + -apps/frappe/frappe/utils/data.py,1 weeks ago,1 неделю назад +DocType: Onboarding Slide,Slide Description,Описание слайда DocType: Communication,Error,Ошибка apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Сначала настройте сообщение DocType: Auto Repeat,End Date,Дата окончания @@ -3182,10 +3291,12 @@ DocType: Footer Item,Group Label,Группа Этикетка DocType: Kanban Board,Kanban Board,Канбан-доска apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контакты Google настроены. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 запись будет экспортирована +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нет учетной записи электронной почты, связанной с пользователем. Пожалуйста, добавьте учетную запись под User> Email Inbox." DocType: DocField,Report Hide,Сообщить Свернуть apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Представление в виде дерева не доступен для {0} DocType: DocType,Restrict To Domain,Ограничить доступ к домену DocType: Domain,Domain,Домен +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,"Неверный URL файла. Пожалуйста, свяжитесь с системным администратором." DocType: Custom Field,Label Help,Этикетка Помощь DocType: Workflow State,star-empty,звезды пусто apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Даты часто легко угадать. @@ -3210,6 +3321,7 @@ DocType: Workflow State,hand-left,ручной левый DocType: Data Import,If you are updating/overwriting already created records.,Если вы обновляете или перезаписываете уже созданные записи. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Является глобальным DocType: Email Account,Use SSL,Использовать SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,играть круга apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документ не может быть правильно назначен apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Недопустимое выражение "depends_on" @@ -3226,6 +3338,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Последнее обновление apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Для типа документа DocType: Workflow State,arrow-right,стрелка направо +DocType: Server Script,API Method,Метод API DocType: Workflow State,Workflow state represents the current state of a document.,Состояние потока представлено текущим состоянием документа. DocType: Letter Head,Letter Head Based On,Письмо на основе apps/frappe/frappe/utils/oauth.py,Token is missing,Маркер отсутствует @@ -3265,6 +3378,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Компактный товара печати DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Перенаправление URL +DocType: Onboarding Slide Field,Placeholder,Заполнитель DocType: SMS Settings,Enter url parameter for receiver nos,Введите URL-параметр для получателя сообщения DocType: Chat Profile,Online,В сети DocType: Email Account,Always use Account's Name as Sender's Name,Всегда используйте имя учетной записи в качестве имени отправителя @@ -3274,7 +3388,6 @@ DocType: Workflow State,Home,Главная DocType: OAuth Provider Settings,Auto,Авто DocType: System Settings,User can login using Email id or User Name,Пользователь может войти в систему с использованием Email-идентификатора или имени пользователя DocType: Workflow State,question-sign,Вопрос-знак -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} отключен apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Поле «маршрут» обязательно для веб-представлений apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вставить столбец до {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Пользователь из этого поля будет вознагражден баллами @@ -3299,6 +3412,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Если Владе DocType: Data Migration Mapping,Push,От себя apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Перетащите файлы сюда DocType: OAuth Authorization Code,Expiration time,Время истечения +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Открытые документы DocType: Web Page,Website Sidebar,Боковая панель Веб-сайт DocType: Web Form,Show Sidebar,Показать боковую панель apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Вы должны войти, чтобы получить доступ к {0}." @@ -3314,6 +3428,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобал DocType: Desktop Icon,Page,Страница apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Не удалось найти {0} в {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имена и фамилии сами по себе легко угадать. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Документ переименован из {0} в {1} apps/frappe/frappe/config/website.py,Knowledge Base,База знаний DocType: Workflow State,briefcase,портфель apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Значение не может быть изменено для {0} @@ -3350,6 +3465,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Формат печати apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Просмотр сетки apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Перейти к следующей записи +DocType: System Settings,Time Format,Формат времени apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Неверные учетные данные платежный шлюз DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Это файл шаблона, сгенерированный только строками с некоторой ошибкой. Вы должны использовать этот файл для исправления и импорта." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Установить разрешения на типов документов и роли @@ -3393,12 +3509,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Ответ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Страницы-заглушки DocType: DocField,Collapsible Depends On,Складные Зависит от DocType: Print Style,Print Style Name,Название стиля печати +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Поле «По группам» необходимо для создания диаграммы панели инструментов DocType: Print Settings,Allow page break inside tables,Разрешить разрыв страницы внутри таблиц DocType: Email Account,SMTP Server,SMTP-сервер DocType: Print Format,Print Format Help,Помощь по Печатным формам apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} номер должен иметь самого одного пользователя. DocType: DocType,Beta,Бета DocType: Dashboard Chart,Count,подсчитывать +DocType: Dashboard Chart,Group By Type,Группировать по типу apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Новый комментарий к {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},восстановлено {0} как {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Если вы обновляете, пожалуйста, выберите ""Заменить"" еще существующие строки не будут удалены." @@ -3409,8 +3527,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Проф DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Дата {0} должна быть в формате: {1} DocType: About Us Settings,Org History Heading,Org История Заголовок +DocType: Scheduled Job Type,Scheduled Job Type,Запланированный тип работы DocType: Print Settings,Allow Print for Cancelled,Разрешить печать для Отменено DocType: Communication,Integrations can use this field to set email delivery status,Интеграция может использовать это поле для установки статуса доставки электронной почты +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,У вас нет прав для отмены всех связанных документов. DocType: Web Form,Web Page Link Text,Web Текст Ссылка на страницу DocType: Page,System Page,Страница системы DocType: Page,System Page,Страница системы @@ -3418,6 +3538,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Настройки для <b>{0}</b> экспортированы в: <br> {1} DocType: Website Settings,Include Search in Top Bar,Включить поиск в верхней панели +DocType: Scheduled Job Type,Daily Long,Ежедневно DocType: GSuite Settings,Allow GSuite access,Разрешить доступ GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Название @@ -3521,6 +3642,7 @@ DocType: Notification,Send days before or after the reference date,Отправ DocType: User,Allow user to login only after this hour (0-24),Разрешить пользователю входить только после этого часа (0—24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Назначить по одному, в последовательности" DocType: Integration Request,Subscription Notification,Уведомление о подписке +DocType: Customize Form Field, Allow in Quick Entry ,Разрешить в быстром входе apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,или прикрепить DocType: Auto Repeat,Start Date,Дата Начала apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Значение @@ -3535,6 +3657,7 @@ DocType: Google Drive,Backup Folder ID,Идентификатор резервн apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Не в режиме разработчика! Расположенный в site_config.json или сделать DOCTYPE ""Custom""." DocType: Workflow State,globe,глобус DocType: System Settings,dd.mm.yyyy,дд.мм.гггг +DocType: Onboarding Slide Help Link,Video,видео DocType: Assignment Rule,Priority,Приоритет DocType: Email Queue,Unsubscribe Param,Отказаться от Param DocType: DocType,Hide Sidebar and Menu,Скрыть боковую панель и меню @@ -3546,6 +3669,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Разрешить импо apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Сплавы DocType: Print Settings,Page Settings,Настройки страницы +DocType: Notification Settings,Notification Settings,Настройки уведомлений apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Сохранение ... apps/frappe/frappe/www/update-password.html,Invalid Password,Неверный пароль apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Успешно импортирована запись {0} из {1}. @@ -3561,6 +3685,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Изображение головы письма DocType: Address,Party GSTIN,Партия ГСИТАН +DocType: Scheduled Job Type,Cron Format,Крон Формат apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Отчет DocType: SMS Settings,Use POST,Использовать POST DocType: Communication,SMS,СМС @@ -3606,18 +3731,20 @@ DocType: Workflow,Allow approval for creator of the document,Разрешает apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Сохранить отчет DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Действие сервера apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Администратор обращались {0} {1} с помощью IP-адреса {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Родительское поле должно быть допустимым именем поля apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Ошибка при внесении изменений в подписку DocType: LDAP Settings,LDAP Group Field,Поле группы LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Уведомление о подписке документа apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Равно apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Неверный формат CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Ошибка подключения к приложению QZ Tray ... <br><br> Для использования функции Raw Print необходимо установить и запустить приложение QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Нажмите здесь, чтобы загрузить и установить QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Нажмите здесь, чтобы узнать больше о Raw Printing</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Установить количество резервных копий DocType: DocField,Do not allow user to change after set the first time,Не позволяйте пользователю изменять после установить в первый раз apps/frappe/frappe/utils/data.py,1 year ago,1 год назад +DocType: DocType,Links Section,Раздел ссылок apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Просмотр журнала всех событий печати, загрузки и экспорта" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месяц DocType: Contact,Contact,Контакты @@ -3644,16 +3771,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Новая электронная почта DocType: Custom DocPerm,Export,Экспорт apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Чтобы использовать Календарь Google, включите {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Также добавляем поле зависимости статуса {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Успешно обновлено {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Tray Failed: DocType: Dropbox Settings,Dropbox Settings,Настройки Dropbox DocType: About Us Settings,More content for the bottom of the page.,Более контент для нижней части страницы. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Этот документ был возвращен apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Резервное копирование на Google Диске успешно. +DocType: Webhook,Naming Series,Идентификация по Имени DocType: Workflow,DocType on which this Workflow is applicable.,"DocType, на котором этот поток применяется." DocType: User,Enabled,Включено apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Не удалось завершить настройку apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Новый {0}: {1} -DocType: Tag Category,Category Name,Название категории +DocType: Blog Category,Category Name,Название категории apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Родитель обязан получать данные дочерней таблицы apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Импорт подписчиков DocType: Print Settings,PDF Settings,Настройки PDF @@ -3689,6 +3819,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Календарь apps/frappe/frappe/client.py,No document found for given filters,Документ не найден для данных фильтров apps/frappe/frappe/config/website.py,A user who posts blogs.,"Пользователь, который публикует блоги." +DocType: DocType Action,DocType Action,DocType Action apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Еще {0} с именем {1} существует, выберите другое имя" DocType: DocType,Custom?,Пользовательские? DocType: Website Settings,Website Theme Image,Сайт Тема изображения @@ -3698,6 +3829,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Нево apps/frappe/frappe/config/integrations.py,Backup,Резервное копирование apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Тип документа необходим для создания диаграммы панели инструментов DocType: DocField,Read Only,Только чтения +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Не удалось создать заказ на бритву apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Новый бюллетень DocType: Energy Point Log,Energy Point Log,Журнал Energy Point DocType: Print Settings,Send Print as PDF,Отправить Печать в формате PDF @@ -3723,16 +3855,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П apps/frappe/frappe/www/login.html,Or login with,Или войти в систему с DocType: Error Snapshot,Locals,Локальные переменные apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Сообщается через {0} {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} упомянул вас в комментарии в {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Выбрать группу по ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"например, (55 + 434) / 4 = или Math.sin (Math.PI / 2) ..." apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} требуется DocType: Integration Request,Integration Type,Тип интеграции DocType: Newsletter,Send Attachements,Отправить отсоединяемые +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Фильтры не найдены apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграция с контактами Google. DocType: Transaction Log,Transaction Log,Журнал транзакций apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Статистика на основе результатов прошлого месяца (от {0} до {1}) DocType: Contact Us Settings,City,Город +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Скрыть карты для всех пользователей apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Разрешить автоматическое повторение для типа документа {0} в форме настройки DocType: DocField,Perm Level,Уровень разрешения apps/frappe/frappe/www/confirm_workflow_action.html,View document,Просмотр документа @@ -3744,6 +3877,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},«В глобальном поиске» не допускается тип {0} в строке {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},«В глобальном поиске» не допускается тип {0} в строке {1} DocType: Energy Point Log,Appreciation,Признательность +DocType: Dashboard Chart,Number of Groups,Количество групп apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Просмотр списка DocType: Workflow,Don't Override Status,Не отменять статус apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Искать термин @@ -3785,7 +3919,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,сп-северо-запад-1 DocType: Dropbox Settings,Limit Number of DB Backups,Ограничение количества резервных копий БД DocType: Custom DocPerm,Level,Уровень -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Последние 30 дней DocType: Custom DocPerm,Report,Отчет apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Сумма должна быть больше 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Подключен к QZ Tray! @@ -3802,6 +3935,7 @@ DocType: S3 Backup Settings,us-west-2,мы-запад-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Выберите дочерний стол apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Триггер Основное действие apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Изменение +DocType: Social Login Key,User ID Property,Свойство ID пользователя DocType: Email Domain,domain name,доменное имя DocType: Contact Email,Contact Email,Эл.почта для связи DocType: Kanban Board Column,Order,порядок @@ -3824,7 +3958,7 @@ DocType: Contact,Last Name,Фамилия DocType: Event,Private,Личные apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Нет предупреждений на сегодня DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Отправлять Email-вложения в формате PDF (рекомендуется) -DocType: Web Page,Left,Слева +DocType: Onboarding Slide Field,Left,Слева DocType: Event,All Day,Весь день apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Похоже, что-то не так с конфигурацией платежного шлюза этого сайта. Платеж не был достигнут." DocType: GCalendar Settings,State,Состояние @@ -3856,7 +3990,6 @@ DocType: Workflow State,User,Пользователь DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Показать название в окне браузера как "префикс - название" DocType: Payment Gateway,Gateway Settings,Настройки шлюза apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Текст в документе типа -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Запуск тестов apps/frappe/frappe/handler.py,Logged Out,Вышли из apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Больше... DocType: System Settings,User can login using Email id or Mobile number,"Пользователь может войти в систему, используя идентификатор электронной почты или номер мобильного телефона" @@ -3873,6 +4006,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резюме DocType: Event,Event Participants,Участники мероприятия DocType: Auto Repeat,Frequency,частота +DocType: Onboarding Slide,Slide Order,Заказ слайдов DocType: Custom Field,Insert After,Вставьте После DocType: Event,Sync with Google Calendar,Синхронизировать с календарем Google DocType: Access Log,Report Name,Название отчета @@ -3900,6 +4034,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0} apps/frappe/frappe/config/website.py,Content web page.,Содержимое веб-страницы. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Добавить новую роль +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетить веб-страницу +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Новое назначение DocType: Google Contacts,Last Sync On,Последняя синхронизация DocType: Deleted Document,Deleted Document,Удаляется документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Что-то пошло не так. @@ -3910,7 +4046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пейзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Расширения клиентский сценарий в Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Записи для следующих доктринов будут отфильтрованы -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Планировщик неактивен +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Планировщик неактивен DocType: Blog Settings,Blog Introduction,Блог Введение DocType: Global Search Settings,Search Priorities,Приоритеты поиска DocType: Address,Office,Офис @@ -3920,13 +4056,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Ссылка на панел DocType: User,Email Settings,Настройки Электронной Почты apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Падение здесь DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Если включено, пользователь может войти в систему с любого IP-адреса, используя двухфакторную аутентификацию, это также можно установить для всех пользователей в настройках системы." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Настройки принтера ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Пожалуйста, введите Ваш пароль чтобы продолжить" apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Пожалуйста, введите Ваш пароль чтобы продолжить" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,мне apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} не является допустимым состоянием apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Применить ко всем типам документов -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Обновление энергетической точки +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Обновление энергетической точки +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Запускать задания только ежедневно, если неактивен в течение (дней)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Пожалуйста, выберите другой способ оплаты. PayPal не поддерживает транзакции в валюте «{0}»" DocType: Chat Message,Room Type,Тип номера DocType: Data Import Beta,Import Log Preview,Предварительный просмотр журнала импорта @@ -3935,6 +4071,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,в порядке круга DocType: LDAP Settings,LDAP User Creation and Mapping,Создание и сопоставление пользователей LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Моно искать что-либо написав «найти апельсин у клиентов» +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Сегодняшние события apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Извините! Пользователь должен иметь полный доступ к своей записи. ,Usage Info,Использование Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Показать сочетания клавиш @@ -3951,6 +4088,7 @@ DocType: DocField,Unique,Уникальный apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} оценили {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Частичный успех DocType: Email Account,Service,Услуги +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь DocType: File,File Name,Имя файла apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не нашли {0} {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3964,6 +4102,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Полн DocType: GCalendar Settings,Enable,Автоматическое обновление DocType: Google Maps Settings,Home Address,Домашний адрес apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),"Вы можете загружать одновременно до 5000 записей. (Возможно меньше, в некоторых случаях)" +DocType: Report,"output in the form of `data = [columns, result]`","вывод в виде `data = [колонки, результат]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Применимые типы документов apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Установите правила для пользовательских назначений. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостаточное разрешение для {0} @@ -3981,7 +4120,6 @@ DocType: Communication,To and CC,Чтобы и CC DocType: SMS Settings,Static Parameters,Статические параметры DocType: Chat Message,Room,Комната apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},обновлен до {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,"Фоновые задания не работают. Пожалуйста, свяжитесь с администратором" DocType: Portal Settings,Custom Menu Items,Пользовательские пункты меню apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Все изображения, прикрепленные к Слайд-шоу веб-сайта, должны быть общедоступными" DocType: Workflow State,chevron-right,шеврона право @@ -3996,11 +4134,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Выбрано {0} значений DocType: DocType,Allow Auto Repeat,Разрешить автоматическое повторение apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нет значений для отображения +DocType: DocType,URL for documentation or help,URL для документации или помощи DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Шаблон электронной почты apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Успешно обновлена запись {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Пользователь {0} не имеет доступа к типу документа через разрешение роли для документа {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Необходимо ввести логин и пароль +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Позволять\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Обновите, чтобы получить последнюю документ." DocType: User,Security Settings,Настройки безопасности apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Добавить столбец @@ -4010,6 +4150,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Фильтр Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},"Пожалуйста, найдите прикрепленный {0}: {1}" DocType: Web Page,Set Meta Tags,Установить метатеги +DocType: Email Account,Use SSL for Outgoing,Использовать SSL для исходящих 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: S3 Backup Settings,Backup Limit,Ограничение резервного копирования DocType: Dashboard Chart,Line,Линия @@ -4042,4 +4183,3 @@ DocType: DocField,Ignore User Permissions,Игнорировать разреш apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Успешно сохранено apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Пожалуйста, обратитесь к администратору, для подтверждения регистрации" DocType: Domain Settings,Active Domains,Активные домены -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Показать журнал diff --git a/frappe/translations/si.csv b/frappe/translations/si.csv index 58ceb80aec..64061c1cd5 100644 --- a/frappe/translations/si.csv +++ b/frappe/translations/si.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,කරුණාකර මුදල ක්ෂේත්ර තෝරන්න. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ආයාත ගොනුව පූරණය වෙමින් ... DocType: Assignment Rule,Last User,අවසන් පරිශීලකයා -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","නව කාර්ය, {0}, ඔබට {1} විසින් පවරා තිබේ. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,සැසි පෙරනිමි සුරකින ලදි apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ගොනුව නැවත පූරණය කරන්න DocType: Email Queue,Email Queue records.,විද්යුත් පෝලිමේ වාර්තා. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} රුක් DocType: User,User Emails,පරිශීලක විද්යුත් තැපැල් පණිවුඩ DocType: User,Username,පරිශීලක නාමය apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ආයාත කිරීම සිපයක් +DocType: Scheduled Job Type,Create Log,ලොග් සාදන්න apps/frappe/frappe/model/base_document.py,Value too big,අගය ඉතා විශාල DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ධාවනය කේත රචනය ටෙස්ට් @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,මාසික DocType: Address,Uttarakhand,උත්තරාකන්ඩ් DocType: Email Account,Enable Incoming,එන සබල කරන්න apps/frappe/frappe/core/doctype/version/version_view.html,Danger,අනතුර -DocType: Address,Email Address,විද්යුත් තැපැල් ලිපිනය +apps/frappe/frappe/www/login.py,Email Address,විද්යුත් තැපැල් ලිපිනය DocType: Workflow State,th-large,වන-විශාල DocType: Communication,Unread Notification Sent,නොකියවූ නිවේදනය යැවූ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,අපනයන ඉඩ දෙනු නොලැබේ. ඔබ {0} අපනයනය කිරීමට භූමිකාව අවශ්යයි. @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,ක්ෂේත්ර Published ඇත DocType: GCalendar Settings,GCalendar Settings,GCalendar සැකසීම් DocType: Email Group,Email Group,විද්යුත් සමූහ +apps/frappe/frappe/__init__.py,Only for {},{For සඳහා පමණි DocType: Event,Pulled from Google Calendar,ගූගල් දින දර්ශනයෙන් අදින ලදි DocType: Note,Seen By,වන විට දැක apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,බහු එකතු -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,ඔබ ශක්ති ලකුණු කිහිපයක් ලබා ගත්තා apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,වලංගු පරිශීලක අනුරුවක් නොවේ. DocType: Energy Point Log,Reverted,ආපසු හරවන ලදි DocType: Success Action,First Success Message,පළමු සාර්ථක පණිවුඩය @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,වගේ න apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},වැරදි අගය: {0} {1} {2} විය යුතුය apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","වෙනස් ක්ෂේත්ර ගුණ (සැඟවීමට, කියවීම පමණයි, අවසර ආදිය)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,අගය කරන්න +DocType: Notification Settings,Document Share,ලේඛන බෙදාගැනීම DocType: Workflow State,lock,අගුලු apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,සඳහා අප අමතන්න පිටුව සැකසුම් තොරන්න. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,පරිපාලක ලොගින් වී දී @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","සක්‍රිය කර ඇත්නම්, ලේඛනය පෙනෙන පරිදි සලකුණු කර ඇත, පළමු වරට පරිශීලකයෙකු එය විවෘත කරයි" DocType: Auto Repeat,Repeat on Day,දිනපතා නැවත සිදු කරන්න DocType: DocField,Color,වර්ණ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,සියල්ල කියවන්න ලෙස සලකුණු කරන්න DocType: Data Migration Run,Log,ලඝු DocType: Workflow State,indent-right,ඉන්ඩෙන්ට් දක්ෂිනාංශික DocType: Has Role,Has Role,කාර්යභාරය ඇත @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ලුහුබැඳීම පෙන්වන්න DocType: DocType,Default Print Format,පෙරනිමි මුද්රණය ආකෘතිය DocType: Workflow State,Tags,ඇමිණුම් +DocType: Onboarding Slide,Slide Type,විනිවිදක වර්ගය apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,කිසිවක් නැත: කාර්ය ප්රවාහ අවසානය apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ක්ෂේත්ර සුවිශේෂී නොවන පවතින වටිනාකම් පවතින ලෙස, {1} තුළ අද්විතීය ලෙස සැකසීම කළ නොහැකි" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ලේඛන වර්ග @@ -134,7 +137,6 @@ DocType: Language,Guest,අමුත්තන්ගේ DocType: DocType,Title Field,මාතෘකාව ක්ෂේත්ර DocType: Error Log,Error Log,දෝෂ ලොග් apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,වලංගු නැති URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,පසුගිය දින 7 apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" පමණක් තරමක් "ඒබීසී" වඩා අනුමාන කිරීමට අපහසු වැනි දරුවා DocType: Notification,Channel,නාලිකාව apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ඔබ මෙම අනවසර හිතන්නේ නම්, පරිපාලක මුරපදය වෙනස් කරන්න." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,සේවාලාභියා apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,තීරුව තෝරන්න apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,මෙම ආකෘති පත්රය ඔබ එය පැටවූ පසු විකරණය කොට තිබේ DocType: Address,Himachal Pradesh,හිමාචල් ප්රදේශ් +DocType: Notification Log,Notification Log,දැනුම්දීම් ලොගය DocType: System Settings,"If not set, the currency precision will depend on number format","පිහිටුවා නැත නම්, මුදල් නිරවද්යතාවයකින් අංකය ආකෘතිය මත රඳා පවතී" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,පුදුමාකාර තීරුව විවෘත කරන්න apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","සර්වරයේ තීරු වින්යාසය සමඟ ගැටළුවක් පවතින බව පෙනේ. අසාර්ථකත්වයේ දී, එම මුදල ඔබේ ගිණුමට නැවත ලබා දෙනු ඇත." @@ -162,7 +165,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,යවන්න DocType: Workflow Action Master,Workflow Action Name,කාර්ය ප්රවාහ ක්රියාකාරී නම apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ඒකාබද්ධ කළ නොහැකි -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,නොව zip ගොනුව DocType: Global Search DocType,Global Search DocType,ගෝලීය සෙවුම් ඩොක්ටයිප් DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -175,7 +178,9 @@ DocType: Newsletter,Email Sent?,ඊ-තැපැල් යැවූ? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart apps/frappe/frappe/desk/form/save.py,Did not cancel,අවලංගු කළේ නැහැ DocType: Social Login Key,Client Information,සේවාදායක තොරතුරු +DocType: Energy Point Rule,Apply this rule only once per document,මෙම රීතිය එක් ලේඛනයකට එක් වරක් පමණක් යොදන්න DocType: Workflow State,plus,ප්ලස් +DocType: DocField,Read Only Depends On,කියවීමට පමණක් රඳා පවතී apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,ආරාධිත අමුත්තා හෝ පරිපාලක ලෙස ලොගින් DocType: Email Account,UNSEEN,ගුප්ත ඥාණය apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ගොනුව කළමනාකරු @@ -199,9 +204,11 @@ DocType: Communication,BCC,බීසීඩී DocType: Unhandled Email,Reason,හේතුව 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,ක්‍රියාකාරකමක් නැත +DocType: Server Script,Script Manager,පිටපත් කළමනාකරු +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ක්‍රියාකාරකමක් නැත apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,තුන්වන පාර්ශවීය යෙදුම් apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,පළමු පරිශීලක පද්ධතිය කළමනාකරු (පසුව ඔබට මෙය වෙනස් කල හැක) බවට පත් වනු ඇත. +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,අද සිදුවීම් නැත apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,ඔබට සමාලෝචන ලකුණු ඔබටම ලබා දිය නොහැක apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,තෝරාගත් ලේඛන සිද්ධි සඳහා DocType ඉදිරිපත් කල යුතුය DocType: Workflow State,circle-arrow-up,රවුම-ඊතලය-අප් @@ -249,6 +256,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},යාවත්කාලීන කිරීම {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ආබාධිත වාර්තාව DocType: Translation,Contributed Translation Doctype Name,දායක වූ පරිවර්තන ඩොක්ටයිප් නම +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න DocType: PayPal Settings,Redirect To,වෙත යළි යොමු DocType: Data Migration Mapping,Pull,අදින්න DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ජාවාස්ක්රිප්ට් ආකෘතිය: frappe.query_reports [ 'REPORTNAME'] = {} @@ -262,6 +270,7 @@ DocType: DocShare,Internal record of document shares,ලියවිල්ල DocType: Energy Point Settings,Review Levels,මට්ටම් සමාලෝචනය කරන්න DocType: Workflow State,Comment,පරිකථනය DocType: Data Migration Plan,Postprocess Method,පසුකාලීන ක්රමය +DocType: DocType Action,Action Type,ක්‍රියා වර්ගය apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ඡායාරූප ගන්න DocType: Assignment Rule,Round Robin,රවුන්ඩ් රොබින් apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","ඔබ ඔවුන් සංශෝධනය, ඔවුන් පසුව අවලංගු කර විසින් ඉදිරිපත් ලේඛන වෙනස් කළ හැක." @@ -275,6 +284,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,සුරකින්න ලෙස DocType: Comment,Seen,දැක apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,වැඩි විස්තර පෙන්වන්න +DocType: Server Script,Before Submit,ඉදිරිපත් කිරීමට පෙර DocType: System Settings,Run scheduled jobs only if checked,නියමිත රැකියා ක්රියාත්මක පරීක්ෂා නම් පමණක් apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,"කොටස, ශීර්ෂ සක්රීය කරන්නේ නම් පමණි පෙන්වනු ලැබේ" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,සංරක්ෂිත @@ -287,10 +297,12 @@ DocType: Dropbox Settings,Dropbox Access Key,නාමාවලි එකක් apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,වැරදි ක්ෂේත්ර නාමයේ <b>{0}</b> අභිමත ස්ක්රිප්ට් එකේ add_fetch මානකරනය apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,සම්බන්ධතා සමමුහුර්ත කළ යුතු Google සම්බන්ධතා තෝරන්න. DocType: Web Page,Main Section (HTML),ප්‍රධාන අංශය (HTML) +DocType: Scheduled Job Type,Annual,වාර්ෂික DocType: Workflow State,headphones,සියළු කරුණූ හෙළිදරවි apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,රහස් පදය රහස් පදය අපේක්ෂාවෙන් අවශ්ය හෝ තෝරා ඇත DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,උදා: replies@yourcomany.com. සියලු පිළිතුරු මෙම එන පෙට්ටිය වෙත පැමිණ ඇත. DocType: Slack Webhook URL,Slack Webhook URL,Slack වෙබ්ක්රමය URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","විශාරදයේ විනිවිදකයේ අනුපිළිවෙල තීරණය කරයි. විනිවිදකය දර්ශනය නොවන්නේ නම්, ප්‍රමුඛතාවය 0 ලෙස සැකසිය යුතුය." DocType: Data Migration Run,Current Mapping,වත්මන් සිතියම්කරණය apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,වලංගු ඊ-නම අවශ්ය apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,සියලුම ඇමුණුම් පුද්ගලික කරන්න @@ -314,6 +326,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,සංක්රමණය රීති apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,පෙරදසුනේ පළමු {0} පේළි පමණක් පෙන්වයි apps/frappe/frappe/core/doctype/report/report.js,Example:,උදාහරණයක්: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,සීමා DocType: Workflow,Defines workflow states and rules for a document.,ලියවිල්ලක් සඳහා කාර්ය ප්රවාහ රාජ්යයන් හා නීති සහ කොන්දේසි සකසයි. DocType: Workflow State,Filter,පෙරහන apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},වැඩි විස්තර සඳහා දෝෂ ලොගය පරීක්ෂා කරන්න: {0} @@ -325,6 +338,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,රැකියා apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} වරනය: {1} DocType: Address,West Bengal,බටහිර බෙංගාල +DocType: Onboarding Slide,Information,විස්තර apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable නොවේ නම් අනුයුක්ත ඉදිරිපත් සිටුවම් කල නොහැක DocType: Transaction Log,Row Index,පේළි දර්ශකය DocType: Social Login Key,Facebook,ෆේස්බුක් @@ -342,7 +356,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,විස DocType: Web Form,Button Help,බොත්තම සහාය DocType: Kanban Board Column,purple,"පාට, දම් පාට" DocType: About Us Settings,Team Members,කණ්ඩායම් සාමාජිකයින් +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,අක්‍රීය අඩවි සඳහා දිනකට එක් වරක් පමණක් නියමිත රැකියා ක්‍රියාත්මක කරනු ඇත. පෙරනිමි 0 ලෙස සකසා ඇත්නම් දින 4 ක්. DocType: Assignment Rule,System Manager,පද්ධතිය කළමනාකරු +DocType: Scheduled Job Log,Scheduled Job,උපලේඛනගත රැකියාව DocType: Custom DocPerm,Permissions,අවසර apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,අභ්යන්තර ඒකාබද්ධ කිරීම සඳහා Slab Webkooks DocType: Dropbox Settings,Allow Dropbox Access,නාමාවලි එකක් ප්රවේශ ඉඩ දෙන්න @@ -395,6 +411,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ත DocType: Email Flag Queue,Email Flag Queue,ඊ-තැපැල් ධජ පෝලිමේ DocType: Access Log,Columns / Fields,තීරු / ක්ෂේත්‍ර apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,මුද්රණ ආකෘති සඳහා ස්ටේෂීෂීට් +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,උපකරණ පුවරුව ප්‍රස්ථාරයක් නිර්මාණය කිරීම සඳහා සමස්ත ක්‍රියාකාරී ක්ෂේත්‍රය අවශ්‍ය වේ apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,{0} විවෘත හඳුනා ගැනීමට නොහැකි. වෙන දෙයක් කරන්න. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ඔබේ තොරතුරු ඉදිරිපත් කර ඇති බවත් apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,පරිශීලක {0} ඉවත් කල නොහැක @@ -411,7 +428,7 @@ DocType: Property Setter,Field Name,ක්ෂේත්ර නාමය DocType: Assignment Rule,Assign To Users,පරිශීලකයින්ට පවරන්න apps/frappe/frappe/public/js/frappe/utils/utils.js,or,හෝ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,මොඩියුලය නම ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,දිගටම +DocType: Onboarding Slide,Continue,දිගටම apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,ගූගල් ඒකාබද්ධ කිරීම අක්‍රීය කර ඇත. DocType: Custom Field,Fieldname,ක්ෂේත්ර නාමය DocType: Workflow State,certificate,සහතිකය @@ -424,11 +441,13 @@ DocType: Energy Point Log,Review,සමාලෝචනය DocType: User,Restrict IP,IP සීමා apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,උපකරණ පුවරුව apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,මේ කාලය වන විට ඊ-තැපැල් යැවීමට නොහැකි විය +DocType: Notification Log,Email Content,ඊමේල් අන්තර්ගතය apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,විධාන සෙවීම හෝ ටයිප් DocType: Activity Log,Timeline Name,කාල නියමය නම DocType: Email Account,e.g. smtp.gmail.com,උදා: smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,නව පාලනය එකතු කරන්න DocType: Contact,Sales Master Manager,විකුණුම් මාස්ටර් කළමනාකරු +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,ඔබගේ යෙදුම ක්‍රියාත්මක වීමට ඔබට ජාවාස්ක්‍රිප්ට් සක්‍රීය කළ යුතුය. DocType: User Permission,For Value,වටිනාකම සඳහා DocType: Event,Google Calendar ID,ගූගල් කැලැන්ඩර ID apps/frappe/frappe/www/complete_signup.html,One Last Step,එක් පසුගිය පියවර @@ -443,6 +462,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP මැද නම ක්ෂේත්‍රය DocType: GCalendar Account,Allow GCalendar Access,GCalendar ප්රවේශය සඳහා ඉඩ දෙන්න apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} අනිවාර්ය ක්ෂේත්රයකි +DocType: DocType,Documentation Link,ප්‍රලේඛන සබැඳිය apps/frappe/frappe/templates/includes/login/login.js,Login token required,අවශ්ය ටෝකනය අවශ්යයි apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,මාසික ශ්‍රේණිය: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,බහු ලැයිස්තු අයිතම තෝරන්න @@ -464,6 +484,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ගොනුව URL එක DocType: Version,Table HTML,මේසය HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,පැකේජය එක් කරන්න +DocType: Notification Log,Energy Point,ශක්ති ලක්ෂ්‍යය apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,අද දින ඉදිරියට එන සිද්ධීන් DocType: Google Calendar,Push to Google Calendar,ගූගල් දින දර්ශනයට තල්ලු කරන්න DocType: Notification Recipient,Email By Document Field,විද්යුත් ලේඛන ක්ෂේත්ර කිරීම @@ -479,7 +500,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,එතකොට DocType: Currency,Fraction Units,භාගය ඒකක apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} {1} සිට {2} වෙත -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,අවසානය සලකුණු කරන්න DocType: Chat Message,Type,වර්ගය DocType: Google Settings,OAuth Client ID,OAuth සේවාලාභී හැඳුනුම්පත DocType: Auto Repeat,Subject,විෂය @@ -507,6 +527,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,සත්යාපනය සඳහා ඔබගේ ඊ-තැපැල් ලිපිනය පරික්ෂා කර බලන්න apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ගුණයකින් ස්වරූපයෙන් අවසානයේ විය නොහැකි DocType: Communication,Bounced,ගගනගාමියකු +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,වල DocType: Deleted Document,Deleted Name,මකා දමන ලදී නම apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,පද්ධතිය සහ වෙබ් අඩවිය භාවිතා කරන්නන්ට DocType: Workflow Document State,Doc Status,ලේඛය තත්ත්වය @@ -517,6 +538,7 @@ DocType: Language,Language Code,භාෂා සංග්රහයේ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,සටහන: අසාර්ථක ලෙස බැකප් සඳහා ඊ-තැපෑලෙන් එවනු ලැබේ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,පෙරහන් එකතු කරන්න apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},පහත දුරකථන අංක වෙත යොමු කෙටි පණිවුඩ: {0} +DocType: Notification Settings,Assignments,පැවරුම් apps/frappe/frappe/utils/data.py,{0} and {1},{0} සහ {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,සංවාදය ආරම්භ කරන්න. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",සෑම විටම මුද්රණය කෙටුම්පත ලේඛන සඳහා ගමන් "කෙටුම්පත්" එකතු @@ -525,6 +547,7 @@ DocType: Data Migration Run,Current Mapping Start,වර්තමාන සි apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ඊ-තැපැල් ස්පෑම් ලෙස සලකුණු කර ඇත DocType: Comment,Website Manager,වෙබ් අඩවිය කළමනාකරු apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ගොනු පැටවීම විසන්ධි විය. කරුණාකර නැවත උත්සාහ කරන්න. +DocType: Data Import Beta,Show Failed Logs,අසාර්ථක ලොග් පෙන්වන්න apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,පරිවර්තන apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,ඔබ තෝරාගත් කෙටුම්පත් හෝ අවලංගු කරන ලදී ලේඛන apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ලේඛනය {0} විසින් {1} ප්රකාශයට පත් කර ඇත්තේ {2} @@ -532,7 +555,9 @@ apps/frappe/frappe/model/document.py,Document Queued,ලේඛන පෙළි DocType: GSuite Templates,Destination ID,ගමනාන්තය හැඳුනුම්පත DocType: Desktop Icon,List,ලැයිස්තුව DocType: Activity Log,Link Name,ලින්ක් නම +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,ඔබ \ DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY +DocType: Onboarding Slide,Onboarding Slide,යතුරු පුවරුව විනිවිදකය apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,වලංගු නොවන මුරපදය: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,වලංගු නොවන මුරපදය: DocType: Print Settings,Send document web view link in email,ඊ-තැපැල් ලියවිල්ල වෙබ් දැක්ම සබැඳිය යවන්න @@ -591,6 +616,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},සාර්ථක: {0} {1} වෙත apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,demo දී පරිශීලක විස්තර වෙනස් කළ නොහැක. https://erpnext.com නව ගිණුම සඳහා ලියාපදිංචි වීමේ කරුණාකර apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,අතහරින්න +DocType: Dashboard Chart,Aggregate Function Based On,සමස්ත ක්‍රියාකාරිත්වය මත පදනම්ව apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,වෙනස්කම් කිරීමට මෙම අනුපිටපත් කරුණාකර apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,සුරැකීමට Enter ඇතුළත් කරන්න apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF පරම්පරාව නිසා කැඩී ගොනු සබැඳි අසාර්ථක @@ -604,7 +630,9 @@ DocType: Notification,Days Before,පෙර දින apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,දෛනික සිදුවීම් එකම දිනයකින් අවසන් කළ යුතුය. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,සංස්කරණය කරන්න... DocType: Workflow State,volume-down,පරිමාව පහළ +DocType: Onboarding Slide,Help Links,උදව් සබැඳි apps/frappe/frappe/auth.py,Access not allowed from this IP Address,මෙම IP ලිපිනයෙන් ප්‍රවේශ වීමට අවසර නැත +DocType: Notification Settings,Enable Email Notifications,විද්‍යුත් තැපැල් දැනුම්දීම් සක්‍රීය කරන්න apps/frappe/frappe/desk/reportview.py,No Tags,කිසිදු ඇමිණුම් DocType: Email Account,Send Notification to,කිරීමට නිවේදනය යවන්න DocType: DocField,Collapsible,කොටසේ @@ -633,6 +661,7 @@ DocType: Google Drive,Last Backup On,අවසන් උපස්ථය සක DocType: Customize Form Field,Customize Form Field,ආකෘතිය ක්ෂේත්ර රිසිකරණය DocType: Energy Point Rule,For Document Event,ලේඛන සිදුවීම සඳහා DocType: Website Settings,Chat Room Name,කථා කාමරයේ නම +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,නොවෙනස්ව DocType: OAuth Client,Grant Type,ප්රදාන වර්ගය apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,කරන ලියවිලි පරිශීලකයා විසින් කියවිය හැකි වේ පරීක්ෂා කරන්න DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -640,6 +669,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ආ DocType: Auto Repeat,Quarterly,කාර්තුමය apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","මෙම ගිණුම සඳහා විද්යුත් වසම් සකසා නැත, එක් සාදන්න?" DocType: User,Reset Password Key,මුරපදය කී යළි පිහිටුවන්න +DocType: Dashboard Chart,All Time,සර්වකාලීන apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} සඳහා නීත්යානුකූල ලේඛන තත්ත්වය DocType: Email Account,Enable Auto Reply,වාහන ඊ-මේල් මගින් පිලිතුරු දෙන්න සක්රිය කරන්න apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,දැක නැත @@ -652,6 +682,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ප DocType: Email Account,Notify if unreplied,unreplied නම් දැනුම් දෙන්න apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR කේතය පරිලෝකනය කර ප්රතිඵල දර්ශනය කරන්න. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ශ්‍රේණි ක්‍රියාත්මක කරන්න +DocType: Scheduled Job Type,Hourly Long,පැය දිගු DocType: System Settings,Minimum Password Score,අවම මුරපදය ලකුණු DocType: System Settings,Minimum Password Score,අවම මුරපදය ලකුණු DocType: DocType,Fields,ක්ෂේත්ර @@ -660,11 +691,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,මව් apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 බැකප් සම්පූර්ණ! apps/frappe/frappe/config/desktop.py,Developer,සංවර්ධක apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,නිර්මාණය +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},එය සක්‍රීය කිරීම සඳහා පහත සබැඳියේ ඇති උපදෙස් අනුගමනය කරන්න: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} පේළියේ {1} දෙකම URL එක සහ ළමා භාණ්ඩ ලබා ගත නොහැකි apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},පහත වගු සඳහා අවම වශයෙන් එක් පේළියක් තිබිය යුතුය: {0} DocType: Print Format,Default Print Language,පෙරනිමි මුද්‍රණ භාෂාව apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,මුතුන් මිත්තන් apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,මූල {0} ඉවත් කල නොහැක +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,අසාර්ථක ලොග් නොමැත apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,තවමත් ප්රතිචාර නොමැත apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",කරුණාකර SMS සත්යාපනය හරහා එය සත්යාපන ක්රමයක් ලෙස සැකසීම සඳහා SMS කරන්න apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,DocType හා නම අවශ්ය දෙකම @@ -687,6 +720,7 @@ DocType: Website Settings,Footer Items,පාදකය අයිතම apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,මෙනු DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,දිනපතා +DocType: Onboarding Slide,Max Count,උපරිම ගණන apps/frappe/frappe/config/users_and_permissions.py,User Roles,පරිශීලක භූමිකා DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ඉඩකඩම් පන්දු ඔසවන්නා සම්මත DocType හෝ ක්ෂේත්ර දේපල පාගා දමයි apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,යාවත්කාලීන කරන්න නොහැක: වැරදි / කල්ඉකුත්වු ලින්ක්. @@ -705,6 +739,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,සත්කාරක රට DocType: Data Import Beta,Import File,ගොනුව ආයාත කරන්න +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,ආකෘති දෝෂයකි apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,තීරුව <b>{0}</b> දැනටමත් පවතී. DocType: ToDo,High,අධි apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,අලුත් සිදුවීමක් @@ -720,6 +755,7 @@ DocType: Web Form Field,Show in filter,පෙරණය තුළ පෙන්ව DocType: Address,Daman and Diu,Daman හා Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,ව්යාපෘති DocType: Address,Personal,පුද්ගලික +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,අමු මුද්‍රණ සැකසුම් ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,වැඩි විස්තර සඳහා https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region බලන්න. apps/frappe/frappe/config/settings.py,Bulk Rename,තොග ප්රතිනම්කෙරුම් DocType: Email Queue,Show as cc,cc ලෙස පෙන්වන්න @@ -729,6 +765,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,වීඩියෝ DocType: Contact Us Settings,Introductory information for the Contact Us Page,මෙම අප අමතන්න පිටුව සඳහා හඳුන්වාදීමේ තොරතුරු DocType: Print Style,CSS,CSS වේ DocType: Workflow State,thumbs-down,අත්පාවල පහළ +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,ලේඛන අවලංගු කිරීම DocType: User,Send Notifications for Email threads,ඊමේල් නූල් සඳහා දැනුම් දීම් යවන්න apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,මහාචාර්ය apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,නෑ සංවර්ධක ප්රකාරය @@ -736,7 +773,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ගොන DocType: DocField,In Global Search,ගෝලීය සොයන්න දී DocType: System Settings,Brute Force Security,බලවත් හමුදා ආරක්ෂාව DocType: Workflow State,indent-left,ඉන්ඩෙන්ට් වාම -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,{0}: මෙම ගොනුව මකා දමන්න කිරීම අවදානම් හගත. ඔබේ පද්ධතිය කළමනාකරු හා සම්බන්ධ වන්න. DocType: Currency,Currency Name,ව්යවහාර මුදල් නම apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,කිසිදු විද්යුත් තැපැල් පණිවුඩ @@ -751,11 +787,13 @@ DocType: Energy Point Rule,User Field,පරිශීලක ක්ෂේත් DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} {1} {2} සඳහා දැනටමත් දායකත්වයෙන් ඉවත් +DocType: Scheduled Job Type,Stopped,නතර apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ඉවත් කළේ නැහැ apps/frappe/frappe/desk/like.py,Liked,කැමති apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,දැන් යවන්න apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","සම්මත DocType, පෙරනිමි මුද්රිත ආකෘතිය නොහැකි Customize ආකෘති පත්රය භාවිතා කරන්න" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","සම්මත DocType, පෙරනිමි මුද්රිත ආකෘතිය නොහැකි Customize ආකෘති පත්රය භාවිතා කරන්න" +DocType: Server Script,Allow Guest,අමුත්තන්ට ඉඩ දෙන්න DocType: Report,Query,විමසුම් DocType: Customize Form,Sort Order,වර්ග නියමය apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'ලැයිස්තුව දැක්වීම' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} @@ -777,10 +815,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,සාධක සහතික කිරීමේ ක්රම දෙකක් apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"පළමුවෙන්ම නම තබන්න, වාර්තාව තබා ගන්න." apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 වාර්තා +DocType: DocType Link,Link Fieldname,ක්ෂේත්‍ර නාමය සම්බන්ධ කරන්න apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} සමඟ බෙදාහදා apps/frappe/frappe/email/queue.py,Unsubscribe,"වනවාද," DocType: View Log,Reference Name,විමර්ශන නම apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,පරිශීලකයා වෙනස් කරන්න +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,පළමු apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,පරිවර්තන යාවත්කාලීන කරන්න DocType: Error Snapshot,Exception,ව්යතිරේක DocType: Email Account,Use IMAP,IMAP භාවිතා කරන්න @@ -795,6 +835,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,මෙම කාර්ය ප්රවාහ රාජ්ය සංක්රමණය නිර්වචනය නීති. DocType: File,Folder,ෆෝල්ඩරය DocType: Website Route Meta,Website Route Meta,වෙබ් අඩවි මාර්ගය මෙටා +DocType: Onboarding Slide Field,Onboarding Slide Field,යතුරු පුවරුව විනිවිදක ක්ෂේත්‍රය DocType: DocField,Index,දර්ශකය DocType: Email Group,Newsletter Manager,පුවත් ලිපි කළමනාකරු apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,විකල්ප 1 @@ -820,7 +861,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ග apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ප්රස්ථාර සටහන් DocType: User,Last IP,පසුගිය IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,කරුණාකර ඔබගේ ඊමේල් විෂයයට එක් කරන්න -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,නව ලියවිල්ල {0} ඔබ විසින් {1} සමඟ බෙදාගෙන ඇත. DocType: Data Migration Connector,Data Migration Connector,දත්ත සංක්රමණ සම්බන්ධකය apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ආපසු හරවන ලදි {1} DocType: Email Account,Track Email Status,ඊ-මේල් තත්වය බලන්න @@ -878,6 +918,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,සොය DocType: Workflow State,text-width,පෙළ-පළල apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,මෙම වාර්තාව සඳහා උපරිම ඇමුණුම් සීමාව විය. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ගොනු නාමයෙන් හෝ දිගුවකින් සොයන්න +DocType: Onboarding Slide,Slide Title,විනිවිදක මාතෘකාව DocType: Notification,View Properties (via Customize Form),දැක්ම Properties (Customize ආකෘතිය හරහා) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ගොනුවක් තේරීමට එය මත ක්ලික් කරන්න. DocType: Note Seen By,Note Seen By,සටහන මගින් දැක @@ -904,13 +945,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,බෙදාගන්න URL DocType: System Settings,Allow Consecutive Login Attempts ,අනුගාමී පිවිසුම් අත්හදා බලන්න apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,ගෙවීම් ක්රියාවලියේදී දෝශයක් ඇති විය. කරුණාකර අපව අමතන්න. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,විනිවිදක වර්ගය සාදන්න හෝ සැකසීම් නම් {ref_doctype} .py ගොනුවේ 'create_onboarding_docs' ක්‍රමයක් තිබිය යුතුය. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,දින {0} කට පෙර DocType: Email Account,Awaiting Password,මුරපදය තෙක් බලා DocType: Address,Address Line 1,ලිපින පේළි 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,පැවත එන්නන් නොවේ DocType: Contact,Company Name,සමාගම් නාමය DocType: Custom DocPerm,Role,කාර්යභාරය -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,සැකසුම්... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ඔබගේ බ්‍රව්සරයට apps/frappe/frappe/utils/data.py,Cent,සියයට ,Recorder,රෙකෝඩරය @@ -969,6 +1010,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","ඔබගේ විද්යුත් තැපැල් ලිපිනය ලබන්නා විසින් විවෘත කර ඇත්නම් එය හසුරවන්න. <br> සටහන: ඔබ ලබන්නන් කිහිප දෙනෙකුට යැවීමක් නම්, 1 ලබන්නා විසින් විද්යුත් තැපැල් ලිපිය කියවා ඇත්නම්, එය විවෘත කරනු ලැබේ." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,අවශ්ය අතුරුදහන් වටිනාකම් apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,ගූගල් සම්බන්ධතා ප්‍රවේශයට ඉඩ දෙන්න +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,සීමා කර ඇත DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,නොකියවූ ලෙස ලකුණු කරන්න DocType: Activity Log,Operation,මෙහෙයුම් @@ -1022,6 +1064,7 @@ DocType: Web Form,Allow Print,මුද්රණය ඉඩ දෙන්න DocType: Communication,Clicked,මත ක්ලික් apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,අනුගමනය නොකරන්න apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},අවසර නැත කිරීමට '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> ඊමේල්> විද්‍යුත් තැපැල් ගිණුමෙන් සකසන්න apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,යැවීමට නියමිත DocType: DocType,Track Seen,ධාවන දැක DocType: Dropbox Settings,File Backup,ගොනු බැකප් @@ -1030,12 +1073,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0} සොය apps/frappe/frappe/config/customization.py,Add custom forms.,අභිරුචි ආකාර එකතු කරන්න. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} තුළ {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,මෙම ලියවිල්ල ඉදිරිපත් -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,මෙම පද්ධතිය බොහෝ පෙර අර්ථ චරිත සපයයි. ඔබට ඇත්තේ හොඳ අවසර ඇති කිරීමට නව කාර්යභාරයන් එක් කළ හැකිය. DocType: Communication,CC,CC DocType: Country,Geo,භූ DocType: Data Migration Run,Trigger Name,ව්යාජ නම -apps/frappe/frappe/public/js/frappe/desk.js,Domains,වසම් +DocType: Onboarding Slide,Domains,වසම් DocType: Blog Category,Blog Category,බ්ලොග් ප්රවර්ගය apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,සිතියම්ගත නොහැකි නම් පහත සඳහන් කොන්දේසි අසමත් නිසා: DocType: Role Permission for Page and Report,Roles HTML,භූමිකා HTML @@ -1076,7 +1118,6 @@ DocType: Assignment Rule Day,Saturday,සෙනසුරාදා DocType: User,Represents a User in the system.,පද්ධතිය තුළ පරිශීලක නියෝජනය කරයි. DocType: List View Setting,Disable Auto Refresh,ස්වයංක්‍රීය නැවුම්බව අක්‍රීය කරන්න DocType: Comment,Label,ලේබලය -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","ඔබ {1} පවරා දෙන කර්තව්යය {0}, වසා දමා තිබේ." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,මෙම වින්ඩෝව වසා කරුණාකර DocType: Print Format,Print Format Type,මුද්රණය ආකෘතිය වර්ගය DocType: Newsletter,A Lead with this Email Address should exist,මෙම ඊ-තැපැල් ලිපිනය සහිත ඊයම් පැවතිය යුතුය @@ -1092,6 +1133,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,පිටතට යන apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,එකක් තෝරන්න DocType: Data Export,Filter List,පෙරහන් ලැයිස්තුව DocType: Data Export,Excel,එක්සෙල් +DocType: System Settings,HH:mm,HH: මි.මී. DocType: Email Account,Auto Reply Message,වාහන ඊ-මේල් මගින් පිලිතුරු දෙන්න පණිවුඩය DocType: Data Migration Mapping,Condition,තත්වය apps/frappe/frappe/utils/data.py,{0} hours ago,පැය {0} කට පෙර @@ -1110,12 +1152,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,දැනුම මූලික දායකත්වය DocType: Communication,Sent Read Receipt,එවා රිසිට්පත කියවන්න DocType: Email Queue,Unsubscribe Method,"වනවාද, ක්රමය" +DocType: Onboarding Slide,Add More Button,තවත් බොත්තම එක් කරන්න DocType: GSuite Templates,Related DocType,සම්බන්ධ DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,සංස්කරණය කරන්න අන්තර්ගත එක් කිරීමට apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,භාෂා තෝරන්න apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,කාඩ් විස්තර apps/frappe/frappe/__init__.py,No permission for {0},{0} සඳහා කිසිදු අවසරයක් DocType: DocType,Advanced,උසස් +DocType: Onboarding Slide,Slide Image Source,විනිවිදක රූප ප්‍රභවය apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API යතුර හෝ API රහස් වැරදි පෙනේ !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},විමර්ශන: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,මහත්මිය @@ -1132,6 +1176,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ස්ව DocType: DocType,User Cannot Create,පරිශීලක නිර්මාණය කළ නොහැක apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,සාර්ථකව සිදු විය apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,නාමාවලි එකක් ප්රවේශ අනුමත කරයි! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,ඔබට විශ්වාසද {0} {1} සමඟ ඒකාබද්ධ කිරීමට ඔබට අවශ්‍යද? DocType: Customize Form,Enter Form Type,වර්ගය ආකෘතිය ඇතුලත් කරන්න DocType: Google Drive,Authorize Google Drive Access,ගූගල් ඩ්‍රයිව් ප්‍රවේශයට අවසර දෙන්න apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,නැති පරාමිතිය Kanban Board Name @@ -1140,7 +1185,6 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Re apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,ඔබ අන්තර්ජාලයට සම්බන්ධ නොවේ. ටිකකට පසු නැවත උත්සාහ කරන්න. apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType ඉඩ. පරෙස්සම් වෙන්න!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","මුද්රණ, විද්යුත් පාරිභෝගිකයාට ආකෘති" -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,නව වෙළුමට යාවත් DocType: Custom Field,Depends On,මත රඳා පවතී DocType: Kanban Board Column,Green,හරිත DocType: Custom DocPerm,Additional Permissions,අතිරේක අවසර @@ -1167,6 +1211,7 @@ DocType: Address,Is Your Company Address,ඔබේ සමාගම ලිපි DocType: Energy Point Log,Social,සමාජ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,සංස්කරණය ෙරෝ DocType: Workflow Action Master,Workflow Action Master,කාර්ය ප්රවාහ ක්රියාකාරී මාස්ටර් +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,සියල්ල මකන්න DocType: Custom Field,Field Type,ක්ෂේත්ර වර්ගය apps/frappe/frappe/utils/data.py,only.,එකම. DocType: Route History,Route History,මාර්ග ඉතිහාසය @@ -1201,11 +1246,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,මුරපදය අමත DocType: System Settings,yyyy-mm-dd,දැ ෙ-MM-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,හැඳුනුම්පත apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,සේවාදායක දෝෂය +DocType: Server Script,After Delete,මකා දැමීමෙන් පසු apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,සියලුම අතීත වාර්තා බලන්න. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ලොගින් වන්න අංකය අවශ්ය වේ DocType: Website Slideshow,Website Slideshow,වෙබ් අඩවිය විනිවිදක දර්ශනය apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,දත්ත නැත DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","මෙම වෙබ් අඩවිය මුල් පිටුව බව ලින්ක් එක. සම්මත වෙබ් අඩවි (දර්ශකය, පිවිසුම්, නිෂ්පාදන, බ්ලොග් ගැන, සබඳතා)" +DocType: Server Script,After Submit,ඉදිරිපත් කිරීමෙන් පසු apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ඊ-තැපැල් ගිණුම {0} ඊ-තැපැල් ලබමින් සිටියදී තහවුරු කරගැනීමේ අසාර්ථක විය. සේවාදායකය වෙතින් පණිවුඩය: {1} DocType: User,Banner Image,බැනරය රූප DocType: Custom Field,Custom Field,රේගු ක්ෂේත්ර @@ -1245,15 +1292,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","පරිශීලක පරීක්ෂා ඕනෑම කාර්යභාරයක් නම්, පරිශීලකයා "පද්ධති පරිශීලක" බවට පත් වෙයි. "පද්ධති පරිශීලක" ඩෙස්ක්ටොප් ප්රවේශය ඇත" DocType: System Settings,Date and Number Format,දිනය හා අංකය ආකෘතිය apps/frappe/frappe/model/document.py,one of,එක් -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,එක් මොහොතක පරීක්ෂා apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,ඇමිණුම් පෙන්වන්න DocType: DocField,HTML Editor,HTML සංස්කාරකය 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,ක්රියා -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා +DocType: DocType,Actions,ක්රියා DocType: Workflow State,align-justify,සන්ධානගත-සාධාරණීකරණය DocType: User,Middle Name (Optional),මැද නම (විකල්ප) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,අවසර නැත @@ -1267,6 +1312,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,කිස DocType: System Settings,Security,ආරක්ෂක apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} නිවාසලාභීන් වෙත යැවීමට නියමිත apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,කපන්න +DocType: Server Script,After Save,සුරකින්න පසු apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},{0} සිට {1} නම වෙනස් කරන apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} හි {0} (දරුවන් සමඟ {2} පේළි) DocType: Currency,**Currency** Master,** ව්යවහාර මුදල් ** මාස්ටර් @@ -1292,16 +1338,19 @@ DocType: Prepared Report,Filter Values,පෙරහන් අගයන් DocType: Communication,User Tags,පරිශීලක ඇමිණුම් DocType: Data Migration Run,Fail,අසමත් විය DocType: Workflow State,download-alt,බාගත-alt +DocType: Scheduled Job Type,Last Execution,අවසන් ක්‍රියාත්මක කිරීම DocType: Data Migration Run,Pull Failed,ඉවරයි apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,කාඩ්පත් පෙන්වන්න / සඟවන්න DocType: Communication,Feedback Request,ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය ඉල්ලීම් apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel ගොනුවෙන් ආනයනය කරන්න. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,පහත සඳහන් ක්ෂේත්ර අතුරුදහන් කර ඇත: +DocType: Notification Log,From User,පරිශීලකයාගෙන් apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} අවලංගු කිරීම DocType: Web Page,Main Section,ප්රධාන වගන්තිය DocType: Page,Icon,icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","ඉඟිය: මුරපදය දී සංකේත, ඉලක්කම් සහ ප්රාග්ධන ලිපි ඇතුළත්" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","ඉඟිය: මුරපදය දී සංකේත, ඉලක්කම් සහ ප්රාග්ධන ලිපි ඇතුළත්" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","සඳහන් කිරීම්, පැවරුම්, බලශක්ති ලකුණු සහ තවත් බොහෝ දේ සඳහා දැනුම්දීම් වින්‍යාස කරන්න." DocType: DocField,Allow in Quick Entry,ඉක්මන් පිවිසුමට ඉඩ දෙන්න apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / දැ ෙ @@ -1333,7 +1382,6 @@ DocType: Website Theme,Theme URL,තේමා URL DocType: Customize Form,Sort Field,වර්ග ක්ෂේත්ර DocType: Razorpay Settings,Razorpay Settings,Razorpay සැකසුම් apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,සංස්කරණය කරන්න පෙරහන් -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,තව එකතු කරන්න DocType: System Settings,Session Expiry Mobile,සැසිය කල් ඉකුත් ජංගම apps/frappe/frappe/utils/password.py,Incorrect User or Password,වැරදි පරිශීලක හෝ මුරපදය apps/frappe/frappe/templates/includes/search_box.html,Search results for,සඳහා ගවේෂණ ප්රතිඵල @@ -1349,8 +1397,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,ශක්ති ලක්ෂ්‍ය රීතිය DocType: Communication,Delayed,ප්රමාද apps/frappe/frappe/config/settings.py,List of backups available for download,බාගත හැකි රක්ෂිත ඇති ලැයිස්තුව +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,නව දත්ත ආයාත කිරීමට උත්සාහ කරන්න apps/frappe/frappe/www/login.html,Sign up,ලියාපදිංචි වන්න apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,පේළිය {0}: සම්මත ක්ෂේත්ර සඳහා අනිවාර්යය අක්රිය කිරීමට අවසර නැත +DocType: Webhook,Enable Security,ආරක්ෂාව සබල කරන්න apps/frappe/frappe/config/customization.py,Dashboards,උපකරණ පුවරු DocType: Test Runner,Output,නිමැවුම DocType: Milestone,Track Field,ධාවන පථය @@ -1369,6 +1419,7 @@ DocType: Portal Menu Item,Portal Menu Item,ද්වාරය මෙනු අ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,පෙරහන් සකසන්න DocType: Contact Us Settings,Email ID,ඊ-තැපැල් හැඳුනුම්පත DocType: Energy Point Rule,Multiplier Field,ගුණක ක්ෂේත්‍රය +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,රේසර්පේ ඇණවුම නිර්මාණය කිරීමට නොහැකි විය. කරුණාකර පරිපාලක අමතන්න DocType: Dashboard Chart,Time Interval,කාල විරාමය DocType: Activity Log,Keep track of all update feeds,සියලුම යාවත්කාලීන පෝෂක ලුහුබැඳීම DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,පරිශීලක ඉඩ සලසන පසු සේවාලාභියා යෙදුම හැකියාව ලැබේ වන සම්පත් පිළිබඳ ලැයිස්තුවක්. <br> උදා: ව්යාපෘතිය @@ -1388,6 +1439,7 @@ DocType: DefaultValue,Key,යතුර DocType: Address,Contacts,අප අමතන්න DocType: System Settings,Setup Complete,setup සම්පූර්ණ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,සියලු ලේඛන කොටස් වාර්තාව +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ආනයන අච්චුව .csv, .xlsx හෝ .xls වර්ගයේ විය යුතුය" apps/frappe/frappe/www/update-password.html,New Password,නව මුරපදය apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,පෙරහන් {0} අතුරුදහන් apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,සමාවන්න! ඔබ ස්වයංක්රීය-ජනනය අදහස් මකා දැමිය නොහැකි @@ -1403,6 +1455,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,දුවන්න DocType: Blog Post,Content (HTML),අන්තර්ගතය (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,සඳහා පිහිටුම DocType: Personal Data Download Request,User Name,පරිශීලක නාමය DocType: Workflow State,minus-sign,ඍණ-ලකුණක් apps/frappe/frappe/public/js/frappe/request.js,Not Found,සොයා ගත නොහැක @@ -1410,6 +1463,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,කිසිදු {0} අ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,අපනයන රේගු අවසර apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,අයිතම හමු නොවිනි. DocType: Data Export,Fields Multicheck,ෆීල්ස් බහුචෙක් +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,.} සම්පූර්ණයි DocType: Activity Log,Login,ඇතුල් වන්න DocType: Web Form,Payments,ගෙවීම apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} @@ -1438,6 +1492,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,පො apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,අවසර දීමේ දෝෂයකි apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} නම විය නොහැකි {1} DocType: User Permission,Applicable For,සඳහා අදාළ +DocType: Dashboard Chart,From Date,දින සිට apps/frappe/frappe/core/doctype/version/version_view.html,Success,සාර්ථකත්වය apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,සැසිය කල් ඉකුත්වී apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,සැසිය කල් ඉකුත්වී @@ -1450,7 +1505,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ස apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; තත්ත්වය ඉඩ නොදෙන DocType: Async Task,Async Task,අසමකාලීක කාර්ය සාධක DocType: Workflow State,picture,පින්තූරය -apps/frappe/frappe/www/complete_signup.html,Complete,සම්පූර්ණ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,සම්පූර්ණ DocType: DocType,Image Field,රූප ක්ෂේත්ර DocType: Print Format,Custom HTML Help,රේගු HTML උදවු DocType: LDAP Settings,Default Role on Creation,නිර්මාණයේ පෙරනිමි භූමිකාව @@ -1458,6 +1513,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,ඊළඟ රාජ්ය DocType: User,Block Modules,වාරණ මොඩියුල DocType: Print Format,Custom CSS,රේගු CSS වේ +DocType: Energy Point Rule,Apply Only Once,එක් වරක් පමණක් අයදුම් කරන්න apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,අදහසක් එක් කරන්න DocType: Webhook,on_update,මත ක්ලික් කරන්න apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},නොසලකා: {0} {1} වෙත @@ -1468,6 +1524,7 @@ DocType: Address,Postal,තැපැල් DocType: Email Account,Default Incoming,පෙරනිමි දියවී DocType: Workflow State,repeat,නැවත DocType: Website Settings,Banner,බැනරය +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,සියලුම ලේඛන අවලංගු කරන්න DocType: Role,"If disabled, this role will be removed from all users.","ආබාධිත නම්, මෙම භූමිකාව සියළු පරිශීලකයන් ඉවත් කරනු ඇත." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} ලැයිස්තුවට යන්න apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,සොයන්න උදවු @@ -1476,6 +1533,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ලිය apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,මෙම ලේඛනය සඳහා ස්වයංක්‍රීය පුනරාවර්තනය අක්‍රීය කර ඇත. DocType: DocType,Hide Copy,පිටපත් සඟවන්න apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,සියලුම භූමිකා ඉවත් +DocType: Server Script,Before Save,සුරැකීමට පෙර apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} අනන්ය විය යුතුය apps/frappe/frappe/model/base_document.py,Row,ෙරෝ apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC සහ ඊමේල් සැකිල්ල" @@ -1486,7 +1544,6 @@ DocType: Chat Profile,Offline,නොබැඳි apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},සාර්ථකව ආනයනය කළ {0} DocType: User,API Key,API යතුර DocType: Email Account,Send unsubscribe message in email,"විද්යුත් තැපැල් වනවාද, ට පණිවුඞයක් යවන්න" -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,සංස්කරණය කරන්න හිමිකම් apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,මෙම ලින්ක් එක ක්ෂේත්ර සඳහා DocType වනු ඇත Fieldname. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,ඔබ සහ ඔබ විසින් පවරනු ලියවිලි. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,ඔබට මෙය පිටපත් කර ඇලවිය හැකිය @@ -1516,8 +1573,10 @@ DocType: Data Migration Run,Total Pages,සම්පූර්ණ පිටු DocType: DocField,Attach Image,රූප අමුණන්න DocType: Workflow State,list-alt,ලැයිස්තුව-alt apps/frappe/frappe/www/update-password.html,Password Updated,මුරපදය යාවත්කාලීන කිරීම +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ඔබගේ පිවිසුම සත්යාපනය කිරීමට පියවර apps/frappe/frappe/utils/password.py,Password not found,මුරපදය සොයා ගැනීමට නොහැකි +DocType: Webhook,Webhook Secret,වෙබ්හුක් රහස DocType: Data Migration Mapping,Page Length,පිටුව දිග DocType: Email Queue,Expose Recipients,ලබන්නන් හෙළිදරව් apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,එකතු කිරීම සඳහා ලැබෙන මේල් සඳහා අනිවාර්ය වේ @@ -1544,6 +1603,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,පද්ධතිය DocType: Web Form,Max Attachment Size (in MB),මැක්ස් ඇමුණුම් ප්රමාණය (MB දී) apps/frappe/frappe/www/login.html,Have an account? Login,ගිණුමක් තිබේද? ඇතුල් වන්න +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,සැකසුම් මුද්‍රණය කරන්න ... DocType: Workflow State,arrow-down,ඊතල පහළ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},පේළිය {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},{1}: පරිශීලක {0} මැකීමට අවසර නැත @@ -1565,6 +1625,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ඔබග DocType: Dropbox Settings,Dropbox Access Secret,නාමාවලි එකක් ප්රවේශ රහස් DocType: Tag Link,Document Title,ලේඛන මාතෘකාව apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(අනිවාර්ය) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර DocType: Social Login Key,Social Login Provider,සමාජ ආරක්ෂණ සැපයුම්කරු apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,එකතු කරන්න තවත් පරිකථනය apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ගොනුව තුල දත්ත නොමැත. කරුණාකර නව ගොනුවක් දත්ත සමඟ ප්රතිස්ථාපනය කරන්න. @@ -1579,11 +1640,12 @@ DocType: Workflow State,hand-down,උරුම කරනවා apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",කන්බන් තීරුවක් ලෙස භාවිතා කළ හැකි ක්ෂේත්‍ර කිසිවක් හමු නොවීය. "තෝරන්න" වර්ගයේ අභිරුචි ක්ෂේත්‍රයක් එක් කිරීමට අභිරුචිකරණ පෝරමය භාවිතා කරන්න. DocType: Address,GST State,GST රාජ්ය apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: ඉදිරිපත් තොරව අවලංගු කරන්න සිටුවම් කල නොහැක +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),පරිශීලක ({0}) DocType: Website Theme,Theme,තේමාව DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Auth සංග්රහයේ බැඳී URI අන්වර්ථයන් apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,උදව් විවෘත කරන්න DocType: DocType,Is Submittable,Submittable වේ -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,නව ලිපියක් +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,නව ලිපියක් apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,නව Google සම්බන්ධතා සමමුහුර්ත කර නැත. DocType: File,Uploaded To Google Drive,ගූගල් ඩ්‍රයිව් වෙත උඩුගත කරන ලදි apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,චෙක්පතක් ක්ෂේත්රයේ අගය 0 හෝ 1 ක් විය හැකි @@ -1593,7 +1655,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,ශ්රේණි DocType: Workflow State,Inbox,එන ලිපි DocType: Kanban Board Column,Red,රතු DocType: Workflow State,Tag,ටැග -DocType: Custom Script,Script,කේත රචනය +DocType: Report,Script,කේත රචනය apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ලේඛනය සුරැකිය නොහැක. DocType: Energy Point Rule,Maximum Points,උපරිම කරුණු apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,මගේ සැකසුම් @@ -1621,8 +1683,10 @@ DocType: Email Queue,Email Queue,විද්යුත් පෝලිමේ DocType: Address,Haryana,හර්යානා apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,භූමිකා ඔවුන්ගේ පරිශීලක පිටුව භාවිතා කරන්නන් සඳහා සකස් කළ හැකි ය. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,පරිකථනය එකතු කරන්න +DocType: Dashboard Chart,Select Date Range,දිනය පරාසය තෝරන්න DocType: DocField,Mandatory,අනිවාර්ය apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,අපනයන කිරීමට මොඩියුලය +DocType: Scheduled Job Type,Monthly Long,මාසික දිගු apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: මෙයට මූලික අවසර කට්ටලයක් apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","අර්ථය පිළිබඳ ඉදිරිපත් කිරීම, අවලංගු කරන්න, සංශෝධනය කරමි" @@ -1631,7 +1695,6 @@ DocType: Test Runner,Module Path,මොඩියුලය පාත් DocType: Milestone Tracker,Track milestones for any document,ඕනෑම ලේඛනයක් සඳහා සන්ධිස්ථාන සොයා ගන්න DocType: Social Login Key,Identity Details,අනන්යතා තොරතුරු apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,උපකරණ පුවරුව පෙන්වන්න -apps/frappe/frappe/desk/form/assign_to.py,New Message,නව පණිවිඩය DocType: File,Preview HTML,පෙරදසුන HTML DocType: Desktop Icon,query-report,විමසුම-වාර්තාව DocType: Data Import Beta,Template Warnings,ආකෘති අනතුරු ඇඟවීම් @@ -1642,18 +1705,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,හා ස apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,ස්වයං විද්යුත් තැපැල් වාර්තා සැකසීම් සංස්කරණය කරන්න DocType: Chat Room,Message Count,පණිවුඩ සංඛ්යාව DocType: Workflow State,book,පොත +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},ඉදිරිපත් කළ ලේඛන සමඟ {0} {1} සම්බන්ධ වේ: {2} DocType: Communication,Read by Recipient,ලබන්නා විසින් කියවන්න DocType: Website Settings,Landing Page,ගොඩ පිටුව apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,රේගු කේත රචනය දෝශයක් apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} නම apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,කිසිදු අවසර මෙම නිර්ණායකයන් සඳහා තැබුවා. DocType: Auto Email Report,Auto Email Report,වාහන විද්යුත් වාර්තාව +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,නව ලේඛනය බෙදාගෙන ඇත apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,අදහස් මකා දමන්න ද? DocType: Address Template,This format is used if country specific format is not found,රටේ විශේෂ හැඩතල දක්නට නොලැබේ නම් මෙම ආකෘතිය භාවිතා කරයි DocType: System Settings,Allow Login using Mobile Number,ලොගින් වන්න ජංගම දුරකතන අංකය භාවිතා ඉඩ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,ඔබ මෙම සම්පත් ප්රවේශ කිරීමට තරම් අවසර නොමැත. ප්රවේශ ලබා ගැනීමට ඔබගේ කළමනාකරු හා සම්බන්ධ වන්න. DocType: Custom Field,Custom,රේගු DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","සක්රිය නම්, සීමාසහිත IP ලිපින වලින් පිවිසෙන පරිශීලකයින් සඳහා, ෆයිටරර් ෆෝට් දෙකක් සඳහා විමසනු නොලැබේ" +DocType: Server Script,After Cancel,අවලංගු කිරීමෙන් පසු DocType: Auto Repeat,Get Contacts,සබඳතා ලබා ගන්න apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} යටතේ නඩු තැපැල් apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,නම් නොකළ තීරුව මඟ හැරීම @@ -1664,6 +1730,7 @@ DocType: User,Login After,ලොගින් වන්න පසු DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,මුද්රණ DocType: Workflow State,thumbs-up,තම්බ්ස් අප් +DocType: Notification Log,Mention,සඳහන් කරන්න DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ෆොන්ට් apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,නිරවද්යතාවයකින් 1 සහ 6 ත් අතර විය යුතුය @@ -1671,7 +1738,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,සහ apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},මෙම වාර්තාව {0} DocType: Error Snapshot,Frames,රාමු -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,පැවරුම +DocType: Notification Log,Assignment,පැවරුම DocType: Notification,Slack Channel,ස්ලක් චැනල් DocType: About Us Team Member,Image Link,රූප ලින්ක් DocType: Auto Email Report,Report Filters,වාර්තාව පෙරහන් @@ -1688,6 +1755,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,අවස්ථාවට යාවත්කාල කිරීමට නොහැකි apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,සත්යාපන කේතය ඔබගේ ලියාපදිංචි ඊමේල් ලිපිනය වෙත යවන ලදි. apps/frappe/frappe/core/doctype/user/user.py,Throttled,යොදන ලදී +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,ඔබේ ඉලක්කය apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","{0}: පෙරහන් 4 අගයන් (doctype, fieldname, ක්රියාකරු, වටිනාකම) තිබිය යුතුය" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,පැවරුම් රීතිය යොදන්න apps/frappe/frappe/utils/bot.py,show,පෙන්වන්න @@ -1741,7 +1809,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,විවෘ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,ඔබගේ භාෂාව DocType: Dashboard Chart,Average,සාමාන්‍යය apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,ෙරෝ එකතු කරන්න -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,මුද්‍රණ යන්ත්‍රය apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,විමසුම් සඳහා තේරීම් විය යුතුය DocType: Auto Repeat,Completed,සම්පූර්ණ කරන ලද @@ -1799,6 +1866,7 @@ DocType: GCalendar Account,Next Sync Token,ඊළඟ සින්ක් ටෙ DocType: Energy Point Settings,Energy Point Settings,ශක්ති ලක්ෂ්‍ය සැකසුම් DocType: Async Task,Succeeded,අනුප්රාප්තිකයා apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} අවශ්ය අනිවාර්ය ක්ෂේත්ර +DocType: Onboarding Slide Field,Align,පෙළගස්වන්න apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} සඳහා නැවත සකසන්න අවසර? apps/frappe/frappe/config/desktop.py,Users and Permissions,පරිශීලකයන් හා අවසර DocType: S3 Backup Settings,S3 Backup Settings,S3 බැකප් සැකසුම් @@ -1815,7 +1883,9 @@ DocType: DocType,ASC,ආරෝ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,නව මුද්‍රණ ආකෘතියේ නම apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ඉල්ලීම අනුමත කිරීම සඳහා පහත සබැඳිය ක්ලික් කරන්න DocType: Workflow State,align-left,සන්ධානගත වාම +DocType: Onboarding Slide,Action Settings,ක්‍රියා සැකසුම් DocType: User,Defaults,පෙරනිමි +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","සංසන්දනය සඳහා,> 5, <10 හෝ = 324 භාවිතා කරන්න. පරාසයන් සඳහා, 5:10 භාවිතා කරන්න (5 සහ 10 අතර අගයන් සඳහා)." DocType: Energy Point Log,Revert Of,ආපසු හරවන්න apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,දැනට පවතින සමඟ ඒකාබද්ධ වීමේ DocType: User,Birth Date,උපන්දිනය @@ -1870,6 +1940,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,තුළ DocType: Notification,Value Change,අගය වෙනස් DocType: Google Contacts,Authorize Google Contacts Access,ගූගල් සම්බන්ධතා ප්‍රවේශයට අවසර දෙන්න apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,වාර්තාවෙන් සංඛ්යාත්මක ක්ෂේත්ර පමණක් පෙන්වයි +apps/frappe/frappe/utils/data.py,1 week ago,සතියකට පෙර DocType: Data Import Beta,Import Type,ආනයන වර්ගය DocType: Access Log,HTML Page,HTML පිටුව DocType: Address,Subsidiary,අනුබද්ධිත සමාගමක් @@ -1879,7 +1950,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,ලිපි සමඟ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,වලංගු නොවන ඇමතුම් තැපැල් සේවාදායකය හෝ වරාය DocType: Custom DocPerm,Write,ලියන්න -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,පරිපාලක පමණක් විමසුම් / කේත රචනය වාර්තා නිර්මාණය කිරීමට අවසර apps/frappe/frappe/public/js/frappe/form/save.js,Updating,යාවත්කාලීන කිරීම DocType: Data Import Beta,Preview,පෙරදසුන apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ක්ෂේත්ර "අගය" අනිවාර්ය වේ. යාවත්කාලීන කළ යුතු අගය නියම කරන්න @@ -1888,6 +1958,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From, apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,පරිශීලක ලෙස ආරාධනා DocType: Data Migration Run,Started,ආරම්භ විය DocType: Data Migration Run,End Time,අවසන් කාල +DocType: Dashboard Chart,Group By Based On,මත පදනම්ව සමූහ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ඇමුණුම් තෝරන්න apps/frappe/frappe/model/naming.py, for {0},{0} සඳහා apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ඔබ මෙම ලියවිල්ල මුද්රණය කිරීමට අවසර නැත @@ -1929,6 +2000,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,තහවුරු ක DocType: Workflow Document State,Update Field,යාවත්කාලීන ක්ෂේත්ර DocType: Chat Profile,Enable Chat,චැට් කරන්න DocType: LDAP Settings,Base Distinguished Name (DN),මූලික අග්රගණ්ය නම (ඩී.එන්) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,මේ සංවාදය තබන්න apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ලින්ක් ක්ෂේත්රයේ {0} සඳහා පිහිටුවා නැත විකල්ප apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,පෝලිම් / සේවකයා @@ -1996,12 +2068,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,ලොගින් වන්න මෙම කාලයේ දී අවසර නැත DocType: Data Migration Run,Current Mapping Action,වත්මන් සිතියම් ක්රියාවලිය DocType: Dashboard Chart Source,Source Name,මූලාශ්රය නම -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,පරිශීලකයා හා සම්බන්ධ ඊමේල් ගිණුමක් නොමැත. කරුණාකර පරිශීලක> විද්‍යුත් තැපැල් එන ලිපි යටතේ ගිණුමක් එක් කරන්න. DocType: Email Account,Email Sync Option,ඊ-තැපැල් සමමුහුර්ත කරන්න ඔප්ෂන් apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,පේළි අංක DocType: Async Task,Runtime,runtime DocType: Post,Is Pinned,නියමයි DocType: Contact Us Settings,Introduction,හැදින්වීම +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,උදව් අවශ්යයි? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ගෝලීයව පින් කරන්න apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,අනුගත DocType: LDAP Settings,LDAP Email Field,LDAP විද්යුත් ක්ෂේත්ර @@ -2011,7 +2083,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,දැන DocType: User Email,Enable Outgoing,ඇමතුම් සක්රිය කරන්න DocType: Address,Fax,ෆැක්ස් apps/frappe/frappe/config/customization.py,Custom Tags,රේගු ඇමිණුම් -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්‍යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්‍යුත් තැපැල් ගිණුමක් සාදන්න DocType: Comment,Submitted,ඉදිරිපත් DocType: Contact,Pulled from Google Contacts,ගූගල් සම්බන්ධතා වලින් අදින ලදි apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,වලංගු ඉල්ලීම් වලදී @@ -2032,9 +2103,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,මුල apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,මට අනුයුක්ත DocType: DocField,Dynamic Link,ගතික ලින්ක් apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,මෙනුවේ සහ පැති තීරුවේ අමතර කෙටිමං ක්‍රියාත්මක කිරීමට Alt Key ඔබන්න +DocType: Dashboard Chart,To Date,අදට DocType: List View Setting,List View Setting,ලැයිස්තු දර්ශන සැකසුම apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,අසාර්ථක පෙන්වන්න රැකියා -DocType: Event,Details,විස්තර +DocType: Scheduled Job Log,Details,විස්තර DocType: Property Setter,DocType or Field,DocType හෝ ක්ෂේත්ර apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,ඔබ මෙම ලේඛනය අනුගමනය නොකළේය apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,ප්‍රාථමික වර්ණය @@ -2043,7 +2115,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publishable යතුර හෝ රහස් යතුර වැරදි පෙනේ !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Publishable යතුර හෝ රහස් යතුර වැරදි පෙනේ !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,අවසර ඇති කිරීම සඳහා ඉක්මන් උදවු -DocType: Tag Doc Category,Doctype to Assign Tags,ඇමිණුම් සදනන කිරීමට Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,ඇදී යාමක් පෙන්වන්න apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ඊ-තැපැල් කුණු කූඩයට මාරු කර ඇත DocType: Report,Report Builder,වාර්තාව Builder @@ -2059,6 +2130,7 @@ DocType: Workflow State,Upload,උඩුගත DocType: User Permission,Advanced Control,උසස් පාලනය DocType: System Settings,Date Format,දිනය ආකෘතිය apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Published නෑ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපින සැකිල්ලක් හමු නොවීය. සැකසුම> මුද්‍රණය සහ වෙළඳ නාම> ලිපින සැකිල්ලෙන් කරුණාකර නව එකක් සාදන්න. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","කාර්ය ප්රවාහ ක්රියාවන් (උදා: අනුමත, අවලංගු කරන්න)." DocType: Data Import,Skip rows with errors,දෝෂ සහිත පේළි සංවාද කරන්න DocType: Workflow State,flag,ධජ @@ -2075,7 +2147,7 @@ DocType: Post Comment,Post Comment,අදහස් දක්වන්න apps/frappe/frappe/config/core.py,Documents,ලිපි ලේඛන apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,ක්‍රියාකාරකම් ලොග් විසින් DocType: Social Login Key,Custom Base URL,අභිමත මූලික ලිපිනය -DocType: Email Flag Queue,Is Completed,අවසන් වේ +DocType: Onboarding Slide,Is Completed,අවසන් වේ apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ක්ෂේත්ර ලබා ගන්න apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,සංස්කරණය කරන්න නරඹන්න DocType: Kanban Board Column,Archived,සංරක්ෂණය @@ -2086,12 +2158,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield eval: doc.myfield == '' මාගේ අගය 'eval: doc.age> 18 මෙතන අර්ථ fieldname වටිනාකමක් නම් පමණක් හෝ නීති රීති (උදාහරණ) සැබෑ මෙම ක්ෂේත්රය දිස් වනු ඇත DocType: Social Login Key,Office 365,කාර්යාලය 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,අද -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,අද +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,අද +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,අද apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ඔබ මෙම තබා ඇත පසු, එම පරිශීලකයන් පමණක් හැකි ප්රවේශ ලේඛන (උදා. බ්ලොග් පෝස්ට්) සබැඳිය පවතී කොතැන (උදා. Blogger)." DocType: Data Import Beta,Submit After Import,ආයාත කිරීමෙන් පසු ඉදිරිපත් කරන්න DocType: Error Log,Log of Scheduler Errors,නියමාකාරකය පත්රයක වරදක් ලඝු-සටහන DocType: User,Bio,ජෛව +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,යතුරු පුවරුව විනිවිදක උදව් සබැඳිය DocType: OAuth Client,App Client Secret,යෙදුම සේවාදායක රහස apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ඉදිරිපත් apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,දෙමව්පියන්ට දත්ත එකතු කරනු ලබන ලේඛනයේ නම වේ. @@ -2099,7 +2172,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ඉෙළ CASE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,රේගු HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ෆෝල්ඩරය නම ඇතුලත් කරන්න -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපින සැකිල්ලක් හමු නොවීය. සැකසුම> මුද්‍රණය සහ වෙළඳ නාම> ලිපින සැකිල්ලෙන් කරුණාකර නව එකක් සාදන්න. apps/frappe/frappe/auth.py,Unknown User,නොදන්නා පරිශීලක apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,කාර්යභාරය තෝරන්න DocType: Comment,Deleted,මකා දමන ලදී @@ -2115,7 +2187,7 @@ DocType: Chat Token,Chat Token,කථාබහ ටෝකනය apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,වගුව සාදන්න apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ආයාත නොකරන්න -DocType: Web Page,Center,මධ්යස්ථානය +DocType: Onboarding Slide Field,Center,මධ්යස්ථානය DocType: Notification,Value To Be Set,අගය සකස් කළ යුතු apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},සංස්කරණය කරන්න {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,පළමු පෙළ @@ -2123,7 +2195,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,දත්ත සමුදාය නම apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ආකෘතිය refresh කරන්න DocType: DocField,Select,තෝරන්න -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,සම්පූර්ණ ලොගය බලන්න +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,සම්පූර්ණ ලොගය බලන්න DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","සරල පයිතන් ප්‍රකාශනය, උදාහරණය: තත්වය == 'විවෘත' සහ == 'දෝෂය' ටයිප් කරන්න" apps/frappe/frappe/utils/csvutils.py,File not attached,ගොනුව සම්බන්ධ නැති apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,සම්බන්ධතාවය අහිමි විය. සමහර ලක්ෂණ වැඩ නොකරයි. @@ -2155,6 +2227,7 @@ DocType: Web Page,HTML for header section. Optional,ශීර්ෂ අංශය apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,මෙම ලක්ෂණය අළුත් හා තවමත් පර්යේෂණාත්මක වේ apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,උපරිම {0} පේළි ඉඩ DocType: Dashboard Chart Link,Chart,සටහන +DocType: Scheduled Job Type,Cron,ක්‍රෝන් DocType: Email Unsubscribe,Global Unsubscribe,"ගෝලීය වනවාද," apps/frappe/frappe/utils/password_strength.py,This is a very common password.,මෙය ඉතා පොදු මුරපදයකි. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,දැක්ම @@ -2171,6 +2244,7 @@ DocType: Data Migration Connector,Hostname,සත්කාරක නාමය DocType: Data Migration Mapping,Condition Detail,තත්වය පිළිබඳ විස්තර apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","මුදල් සඳහා {0}, අවම ගනුදෙනුව ප්රමාණය {1}" DocType: DocField,Print Hide,මුද්රණය සඟවන්න +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,පරිශීලකයාට apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,අගය ඇතුලත් කරන්න DocType: Workflow State,tint,පැහැයක් ගනී @@ -2235,6 +2309,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ලොගි apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,එක්කෙනාගේ එකතු කරන්න DocType: Footer Item,Company,සමාගම apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},සාමාන්‍ය {0} +DocType: Scheduled Job Log,Scheduled,නියමිත DocType: User,Logout from all devices while changing Password,මුරපදය වෙනස් කිරීමේදී සියලු උපාංග වලින් ඉවත්ව යාම apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,මුරපදය තහවුරු කරන්න apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,දෝෂ ඇතිවිය @@ -2259,7 +2334,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,පරිශීලක අවසරය දැනටමත් පවතී apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},බලන්න {0} -DocType: User,Hourly,පැය +DocType: Scheduled Job Type,Hourly,පැය apps/frappe/frappe/config/integrations.py,Register OAuth Client App,රෙජිස්ටර් OAuth සේවාලාභියා යෙදුම DocType: DocField,Fetch If Empty,හිස් නම් ලබා ගන්න DocType: Data Migration Connector,Authentication Credentials,සත්යාපන අක්තපත්ර @@ -2269,10 +2344,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,ලක්ෂ්‍ DocType: SMS Settings,SMS Gateway URL,කෙටි පණිවුඩ ගේට්වේ URL එක apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" විය නොහැක. එය "{3}" එකක් විය යුතුය apps/frappe/frappe/utils/data.py,{0} or {1},{0} හෝ {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,ඔබ සියල්ලම සකසා ඇත! DocType: Workflow State,trash,කුණු කූඩයට DocType: System Settings,Older backups will be automatically deleted,"පැරණි භාවිතා කලද, ස්වයංක්රීයව මකා දමනු ඇත" apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,අවලංගු ප්රවේශ යතුර හෝ රහස් ප්රවේශ යතුර. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,ඔබට බලශක්ති ලකුණු කිහිපයක් අහිමි විය DocType: Post,Is Globally Pinned,ග්ලෝබිටි නියතයි apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,මෑත ක්‍රියාකාරකම DocType: Workflow Transition,Conditions,කොන්දේසි @@ -2281,6 +2356,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,තහවු DocType: Event,Ends on,අවසන් වේ DocType: Payment Gateway,Gateway,දොරටුව DocType: LDAP Settings,Path to Server Certificate,සේවාදායක සහතිකයට මාවත +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,ඔබගේ බ්‍රව්සරයේ Javascript අක්‍රීය කර ඇත apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,සබැඳි බලන්න තරම් අවසර නෑ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,සබැඳි බලන්න තරම් අවසර නෑ apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,ලිපිනය හිමිකම් අනිවාර්ය වේ. @@ -2299,7 +2375,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","මෙය පරික්ෂා කර ඇත්නම්, වලංගු දත්ත සහිත පේළි ආනයනය කරනු ලබන අතර පසුව ආයාත කිරීමට ඔබට නව ගොනුවක් තුළදී වලංගු පේළි අළුත් කරනු ලැබේ." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ලේඛන භූමිකාව පරිශීලකයන් විසින් පමණක් සංස්කරණය වේ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","ඔබ {1}, {2} විසින් වසා දමා ඇති පවරා බව, කාර්ය {0}." DocType: Print Format,Show Line Breaks after Sections,අංශ පසු පෙන්වන්න ලයින් DocType: Communication,Read by Recipient On,ලබන්නා විසින් කියවන්න DocType: Blogger,Short Name,කෙටි නම @@ -2332,6 +2407,7 @@ DocType: Translation,PR sent,PR යවන ලදි DocType: Auto Email Report,Only Send Records Updated in Last X Hours,පසුගිය X පැය යාවත්කාලීන වාර්තා පමණක් යවන්න DocType: Auto Email Report,Only Send Records Updated in Last X Hours,පසුගිය X පැය යාවත්කාලීන වාර්තා පමණක් යවන්න DocType: Communication,Feedback,ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,නව අනුවාදයකට යාවත්කාලීන කරන ලදි apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,පරිවර්තන විවෘත කරන්න apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,මෙම ඊමේල් ස්වයංක්රීයව නිර්මාණය වේ DocType: Workflow State,Icon will appear on the button,Icon බොත්තම මත දිස් වනු ඇත @@ -2369,6 +2445,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,පිට DocType: DocField,Precision,නිරවද්යතාවයකින් DocType: Website Slideshow,Slideshow Items,විනිවිදක දර්ශනය අයිතම apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,යළි යළිත් වචන සහ අක්ෂර වැළකීමට උත්සාහ කරන්න +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,දැනුම්දීම් අක්‍රීය කර ඇත +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,සියලුම පේළි මකා දැමීමට ඔබට අවශ්‍යද? DocType: Workflow Action,Workflow State,කාර්ය ප්රවාහ රාජ්ය apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,පේළි එකතු apps/frappe/frappe/www/list.py,My Account,මගේ ගිණුම @@ -2377,6 +2455,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,පසු දින apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ තැටි සම්බන්ධතාවය සක්‍රීයයි! DocType: Contact Us Settings,Settings for Contact Us Page,සඳහා අප අමතන්න පිටුව සැකසුම් +DocType: Server Script,Script Type,කේත රචනය වර්ගය DocType: Print Settings,Enable Print Server,මුද්රණ සේවාදායකය සක්රිය කරන්න apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,සති {0}ට පෙර DocType: Email Account,Footer,පාදකය @@ -2401,8 +2480,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,අවවාදයයි apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,මෙය පිටු කිහිපයක මුද්‍රණය වීමට ඉඩ ඇත DocType: Data Migration Run,Percent Complete,සම්පූර්ණයි -DocType: Tag Category,Tag Category,ටැග ප්රවර්ගය -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","සංසන්දනය සඳහා,> 5, <10 හෝ = 324 භාවිතා කරන්න. පරාසයන් සඳහා, 5:10 භාවිතා කරන්න (5 සහ 10 අතර අගයන් සඳහා)." DocType: Google Calendar,Pull from Google Calendar,ගූගල් දින දර්ශනයෙන් අදින්න apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,උදව් DocType: User,Login Before,පෙර ලොගින් වන්න @@ -2412,17 +2489,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,සති අන්ත සඟවන්න apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,පුනරාවර්තන ලේඛන ස්වයංක්‍රීයව ජනනය කරයි. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ය +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,තොරතුරු-ලකුණක් apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} සඳහා අගය ලැයිස්තුවක් විය නොහැකි DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","කොහොමද මේ මුදල් සංයුති කල යුත්තේ කුමක්ද? පිහිටුවා නැත නම්, පද්ධතිය පෙරනිමි භාවිතා කරනු ඇත" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ලේඛන {0} ඉදිරිපත් කරන්නද? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ඔබ ලොගින් වී කළ යුතු සහ System කළමනාකරු කාර්යභාරය රක්ෂිත ඇති ප්රවේශ වීමට හැකි විය යුතුයි. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ තැටි යෙදුමට සම්බන්ධ වීමේ දෝෂයකි ... <br><br> අමු මුද්‍රණ විශේෂාංගය භාවිතා කිරීම සඳහා ඔබට QZ තැටි යෙදුම ස්ථාපනය කර ක්‍රියාත්මක කළ යුතුය. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ තැටි බාගත කර ස්ථාපනය කිරීමට මෙතන ක්ලික් කරන්න</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">අමු මුද්‍රණය පිළිබඳ වැඩිදුර දැන ගැනීමට මෙහි ක්ලික් කරන්න</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,මුද්‍රණ සිතියම්කරණය apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,අනුයුක්ත පෙර සුරකින්න. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,සම්බන්ධිත සියලුම ලේඛන අවලංගු කිරීමට ඔබට අවශ්‍යද? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),එකතු {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} පේළියේ {1} දක්වා වෙනස් කළ නොහැකි apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,කාර්යභාරය අවසර DocType: Help Article,Intermediate,මධ්යම +apps/frappe/frappe/config/settings.py,Email / Notifications,විද්‍යුත් තැපැල් / දැනුම්දීම් apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} සිට {2} දක්වා වෙනස් කර ඇත apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,අවලංගු කරන ලද ලේඛනය කෙටුම්පත ලෙස ප්රතිස්ථාපනය විය DocType: Data Migration Run,Start Time,ආරම්භක වේලාව @@ -2438,6 +2519,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Sh apps/frappe/frappe/email/smtp.py,Invalid recipient address,වලංගු නොවන ලබන්නා ලිපිනය DocType: Workflow State,step-forward,පියවරක් ඉදිරියට DocType: System Settings,Allow Login After Fail,අසාර්ථක වීමෙන් පසු අවසර දෙන්න +DocType: DocType Link,DocType Link,DocType Link DocType: Role Permission for Page and Report,Set Role For,සඳහා Set කාර්යභාරය DocType: GCalendar Account,The name that will appear in Google Calendar,ගූගල් දින දර්ශනයේ දිස්වන නම apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} සමඟ සෘජු කාමරයක් දැනටමත් පවතී. @@ -2454,6 +2536,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},නව {0 DocType: Contact,Google Contacts,ගූගල් සම්බන්ධතා DocType: GCalendar Account,GCalendar Account,GCalendar ගිණුම DocType: Email Rule,Is Spam,අයාචිත තැපැල් වේ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,අවසන් apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},වාර්තාව {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},විවෘත {0} DocType: Data Import Beta,Import Warnings,ආනයන අනතුරු ඇඟවීම් @@ -2465,6 +2548,7 @@ DocType: Workflow State,ok-sign,හරි-ලකුණක් apps/frappe/frappe/config/settings.py,Deleted Documents,මකා දමන ලදී ලේඛන apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ආකෘතිය සංවේදී වේ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ඩෙස්ක්ටොප් අයිකන දැනටමත් පවතී +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"විනිවිදක පෙන්විය යුතු සියලුම වසම්වල සඳහන් කරන්න. කිසිවක් නිශ්චිතව දක්වා නොමැති නම්, විනිවිදකය පෙරනිමියෙන් සියලු වසම්වල පෙන්වනු ලැබේ." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,අනුපිටපත් DocType: Newsletter,Create and Send Newsletters,පුවත් පත්රිකා නිර්මාණය හා යවන්න apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,ඔබගේ අදහස් දැක්වීමට ස්තූතියි. අනුමැතියෙන් පසු එය ප්‍රකාශයට පත් කෙරේ @@ -2474,6 +2558,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ගූගල් දින දර්ශන සිදුවීම් හැඳුනුම්පත apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","දෙමාපියන්" මෙම පේළිය එකතු කල යුතුය ඇති මව් වගුව සනිටුහන් apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,සමාලෝචන කරුණු: +DocType: Scheduled Job Log,Scheduled Job Log,උපලේඛනගත රැකියා ලොගය +DocType: Server Script,Before Delete,මකා දැමීමට පෙර apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,සමඟ හවුල් apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ලිපිගොනු / urls ඇමිණීම සහ වගුව එකතු කරන්න. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,පණිවිඩයක් සැකසිය නොහැක @@ -2497,19 +2583,20 @@ DocType: About Us Settings,Settings for the About Us Page,මෙම අප ග apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe ගෙවීම් සැකසුම් apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe ගෙවීම් සැකසුම් apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,මුද්‍රණය මුද්‍රණ යන්ත්‍රයට යවන ලදි! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,ශක්ති ස්ථාන +DocType: Notification Settings,Energy Points,ශක්ති ස්ථාන DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,උදා: pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,යතුරු උත්පාදනය කරන්න apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,මෙය ඔබගේ දත්ත ස්ථිරවම ඉවත් කරයි. DocType: DocType,View Settings,සැකසුම් බලන්න +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,නව දැනුම්දීම DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,ව්‍යුහය ඉල්ලන්න +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,පාලක ක්‍රමය get_razorpay_order අස්ථානගත වී ඇත DocType: Personal Data Deletion Request,Pending Verification,සත්‍යාපනය අපේක්ෂිතය DocType: Website Meta Tag,Website Meta Tag,වෙබ් අඩවිය මෙටා ටැගය DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","සම්මත නොවන වරාය (උදා. 587). Google වළාකුල මත නම්, port 2525 උත්සාහ කරන්න." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",ප්රකාශිත පිටු සඳහා අතීතය විය නොහැකි බැවින් අවසාන දිනය පිරිසිදු කිරීම. DocType: User,Send Me A Copy of Outgoing Emails,පිටතට යන විද්යුත් තැපැල් පිටපතක් මට එවන්න -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.,Google Analytics හැඳුනුම්පත එකතු කරන්න: උදා. යුනියන් ඇෂුවරන්ස්-89XXX57-1. වැඩි විස්තර සඳහා Google Analytics මත උපකාර සොයන්න කරන්න. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,රහස් පදය අක්ෂර 100 කට වඩා වැඩි කාලයක් ගත නොහැකි DocType: OAuth Client,App Client ID,යෙදුම සේවාලාභී ID @@ -2538,6 +2625,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,නව මු apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} මෙම ලියවිල්ල {1} සමඟ බෙදාහදා DocType: Website Settings,Brand Image,වෙළඳ නාමය රූප DocType: Print Settings,A4,A4 ප්රමාණයේ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,ආනයන අච්චුවේ ශීර්ෂයක් සහ අවම වශයෙන් එක් පේළියක් තිබිය යුතුය. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,ගූගල් දින දර්ශනය වින්‍යාස කර ඇත. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","ඉහළ සංචලනය බාර්, පාදකය සහ ලාංඡනය Setup." DocType: Web Form Field,Max Value,මැක්ස් අගය @@ -2546,6 +2634,7 @@ DocType: Auto Repeat,Preview Message,පෙරදසුන පණිවිඩය DocType: User Social Login,User Social Login,පරිශීලක සමාජ ලොගින්වීම DocType: Contact,All,සියලු DocType: Email Queue,Recipient,පලමු වරට පිරිනැමු +DocType: Webhook,Webhook Security,වෙබ්හුක් ආරක්ෂාව DocType: Communication,Has Attachment,ඇමුණුම් ඇත DocType: Address,Sales User,විකුණුම් පරිශීලක apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ඇද බිම දානවා මුද්රණය ආකෘති ගොඩනැගීම හා රිසිකරණය මෙවලමකි. @@ -2637,14 +2726,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,වෙබ් අඩවි apps/frappe/frappe/model/workflow.py,Self approval is not allowed,ස්වයං අනුමැතිය සඳහා අවසර නැත DocType: GSuite Templates,Template ID,සැකිල්ල හැඳුනුම්පත apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,ප්රදාන වර්ගය ( <code>{0}</code> ) ඒකාබද්ධ කිරීම සහ ප්රතිචාර වර්ගය ( <code>{1}</code> ) අවසර නොදේ -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} සිට නව පණිවිඩය DocType: Portal Settings,Default Role at Time of Signup,ගොණුව අවස්ථාවේ පෙරනිමි භූමිකාව DocType: DocType,Title Case,හිමිකම් නඩු apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,ඔබගේ දත්ත බාගත කිරීම සඳහා පහත සබැඳිය ක්ලික් කරන්න apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},පරිශිලකයෙකු සඳහා ඊ-තැපැල් එන ලිපි යැවීමට {0} DocType: Data Migration Run,Data Migration Run,දත්ත සංක්රමණ ධාවනය DocType: Blog Post,Email Sent,ඊ-තැපැල් යවනු -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,පැරණි DocType: DocField,Ignore XSS Filter,වු XSS පෙරහන් නොසලකා apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ඉවත් කළා apps/frappe/frappe/config/integrations.py,Dropbox backup settings,නාමාවලි එකක් උපස්ථ සැකසුම් @@ -2697,6 +2784,7 @@ DocType: Async Task,Queued,පේළි DocType: Braintree Settings,Use Sandbox,වැලිපිල්ල භාවිතා apps/frappe/frappe/utils/goal.py,This month,මේ මාසයේ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,නව රේගු මුද්රණය ආකෘතිය +DocType: Server Script,Before Save (Submitted Document),සුරැකීමට පෙර (ඉදිරිපත් කළ ලේඛනය) DocType: Custom DocPerm,Create,නිර්මාණය apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,පෙන්වීමට තවත් අයිතම නොමැත apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,පෙර වාර්තාවට යන්න @@ -2752,6 +2840,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,කුණු කූඩයට දැමීමට ගෙන යන්න DocType: Web Form,Web Form Fields,වෙබ් ආකෘති පත්රය ෆීල්ඩ්ස් DocType: Data Import,Amended From,සංශෝධිත වන සිට +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,විනිවිදකයේ පිරවිය යුතු දේ ගැන පරිශීලකයා නොදැන සිටියහොත් උදව් වීඩියෝ සබැඳියක් එක් කරන්න. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},අවවාදයයි: {1} අදාළ ඕනෑම වගුවේ {0} සොයාගත නොහැකි විය DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,මෙම ලේඛනය දැනට ක්රියාත්මක කිරීම සඳහා පෙළ ගැසෙනු ඇත. කරුණාකර නැවත උත්සාහ කරන්න @@ -2773,6 +2862,7 @@ DocType: Blog Post,Blog Post,බ්ලොග් පෝස්ට් DocType: Access Log,Export From,සිට අපනයනය කරන්න apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ගැඹුරින් සොයන්න apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ඔබට පුවත් ලිපි බැලීමට අවසර නොමැත. +DocType: Dashboard Chart,Group By,පිරිසක් විසින් DocType: User,Interests,උනන්දුව දක්වන ක්ෂෙත්ර: apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,මුරපද යළි උපදෙස් ඔබගේ ඊ-තැපැල් ලිපිනය වෙත යොමු කර ඇති DocType: Energy Point Rule,Allot Points To Assigned Users,පවරා ඇති පරිශීලකයින්ට ලකුණු ලබා දෙන්න @@ -2788,6 +2878,7 @@ DocType: Assignment Rule,Assignment Rule,පැවරුම් රීතිය apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},මාසයට නියමිත පරිශීලක නාමය: {0} DocType: Assignment Rule Day,Day,දවස apps/frappe/frappe/public/js/frappe/desk.js,Modules,මොඩියුල +DocType: DocField,Mandatory Depends On,අනිවාර්යය රඳා පවතී apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ගෙවීම් සාර්ථකත්වය apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,කිසිදු {0} තැපැල් DocType: OAuth Bearer Token,Revoked,අවලංගු @@ -2795,6 +2886,7 @@ DocType: Web Page,Sidebar and Comments,පැති තීරුවේ සහ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ඔබට පසු එය අවලංගු කරන්න සහ ඉතිරි ලියවිල්ලක් සංශෝධනය කරමි විට, එය පරණ අංකය වෙළුමක් වන බව නව අංකයක් ලැබෙනු ඇත." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} ලේඛනයක් ඇමිණීමට ඉඩ නොදේ, කරුණාකර මුද්රණ සැකසුම් තුළ {0} මුද්රණය කරන්න අවසර දෙන්න" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්‍යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්‍යුත් තැපැල් ගිණුමක් සාදන්න apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} බලන්න. DocType: Stripe Settings,Publishable Key,Publishable කී DocType: Stripe Settings,Publishable Key,Publishable කී @@ -2809,6 +2901,7 @@ DocType: Currency,Fraction,භාගය apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,සිදුවීම ගූගල් දින දර්ශනය සමඟ සමමුහුර්ත කර ඇත. DocType: LDAP Settings,LDAP First Name Field,LDAP මුල් නම ක්ෂේත්ර DocType: Contact,Middle Name,මැද නම +DocType: DocField,Property Depends On,දේපල රඳා පවතී DocType: Custom Field,Field Description,ක්ෂේත්ර විස්තරය apps/frappe/frappe/model/naming.py,Name not set via Prompt,නම ප්රොම්ප්ට් හරහා පිහිටුවා නැත apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ඊ-තැපැල් එන ලිපි @@ -2854,11 +2947,11 @@ DocType: Workflow State,folder-close,ෆෝල්ඩරය-සමීප apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,වාර්තාව: DocType: Print Settings,Print taxes with zero amount,ශුන්ය මුදල සමඟ බදු අය කරන්න apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} නම වෙනස් කිරීමට ඉඩ දෙනු නොලැබේ +DocType: Server Script,Before Insert,ඇතුළු කිරීමට පෙර DocType: Custom Script,Custom Script,රේගු කේත රචනය DocType: Address,Address Line 2,ලිපින පේළිය 2 DocType: Address,Reference,විමර්ශන apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,කිරීම සඳහා පවරා -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් සකසන්න DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,දත්ත සංක්රමණ සිත සටහන් කිරීම DocType: Data Import,Action,කටයුතු DocType: GSuite Settings,Script URL,තිර රචනය URL එක @@ -2884,11 +2977,13 @@ DocType: User,Api Access,අපි ප්රවේශය DocType: DocField,In List View,ලැයිස්තුව දැක්වීම DocType: Email Account,Use TLS,TLS භාවිතා කරන්න apps/frappe/frappe/email/smtp.py,Invalid login or password,වලංගු නොවන පිවිසුම් හෝ මුරපදය +DocType: Scheduled Job Type,Weekly Long,සතිපතා දිගු apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,බාගත සැකිල්ල apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ආකෘති වෙත අභිරුචි ජාවාස්ක්රිප්ට් එකතු කරන්න. ,Role Permissions Manager,කාර්යභාරය අවසර කළමනාකරු apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,නව මුද්රණය ආකෘතිය නම apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Sidebar ටොගලනය කරන්න +DocType: Server Script,After Save (Submitted Document),සුරැකීමෙන් පසු (ඉදිරිපත් කළ ලේඛනය) DocType: Data Migration Run,Pull Insert,අදින්න ඇතුල් කරන්න DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ගුණක අගය සමඟ ලකුණු ගුණ කිරීමෙන් පසු උපරිම ලකුණු ලබා ගත හැක (සටහන: සීමාවක් නොමැතිව මෙම ක්ෂේත්‍රය හිස්ව තබන්න හෝ 0 සකසන්න) @@ -2906,6 +3001,7 @@ DocType: User Permission,User Permission,පරිශීලක අවසරය apps/frappe/frappe/templates/includes/blog/blog.html,Blog,බ්ලොග් apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ස්ථාපනය කර නැත apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,දත්ත සමඟ බාගත +DocType: Server Script,Before Cancel,අවලංගු කිරීමට පෙර DocType: Workflow State,hand-right,අතින් දකුණු DocType: Website Settings,Subdomain,අමානුෂිකය DocType: S3 Backup Settings,Region,කලාපයේ @@ -2951,12 +3047,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,පැරණි මු DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} විසින් තැපැල් apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","ආකෘතිය තීරු ලිපි, විමසුම දී තීරුව ලේබල් දෙන්න." +DocType: Onboarding Slide,Slide Fields,විනිවිදක ක්ෂේත්‍ර DocType: Has Domain,Has Domain,වසම් ඇත DocType: User,Allowed In Mentions,සඳහන් කිරීමට අවසර ඇත apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ඔබ හට ගිණුමක් නොමැතිද? ලියාපදිංචි වන්න apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID ක්ෂේත්රය ඉවත් කළ නොහැක apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable නොවේ නම් අනුයුක්ත සංශෝධනය කරමි සිටුවම් කල නොහැක DocType: Address,Bihar,බිහාර් +DocType: Notification Settings,Subscribed Documents,දායක වූ ලේඛන apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,පරිශීලක සැකසුම් DocType: Report,Reference Report,විමර්ශන වාර්තාව DocType: Activity Log,Link DocType,ලින්ක් DocType @@ -2974,6 +3072,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google දින ද apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ඔබ සොයන පිටුව අතුරුදහන් කර ඇත. එය චලනය හෝ මෙම සබැඳිය මුද්රණ දෝෂයක් නොමැති නිසා මෙම විය හැක. apps/frappe/frappe/www/404.html,Error Code: {0},දෝෂ කේතය: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","පාඨ, රේඛා කිහිපයක් පමණක්, පිටුව ලැයිස්තුගත වීම පිළිබඳව විස්තරය. (උපරිම අක්ෂර 140)" +DocType: Server Script,DocType Event,DocType සිද්ධිය apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} අනිවාර්ය ක්ෂේත්‍ර වේ DocType: Workflow,Allow Self Approval,ස්වයං අනුමැතිය සඳහා ඉඩ දෙන්න DocType: Event,Event Category,සිදුවීම් වර්ගය @@ -2990,6 +3089,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ඔබගේ නම apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,සම්බන්ධතා සාර්ථකත්වය DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,විනිවිදක වර්ගයේ ඔන්බෝර්ඩිං විනිවිදකයක් අඛණ්ඩව පවතී. DocType: DocType,Default Sort Field,පෙරනිමි වර්ග කිරීමේ ක්ෂේත්‍රය DocType: File,Is Folder,ෆෝල්ඩරය වේ DocType: Document Follow,DocType,DocType @@ -3026,7 +3126,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,වෙ DocType: Workflow State,arrow-up,ඊතලය-අප් DocType: Dynamic Link,Link Document Type,සම්බන්ධක ලේඛන වර්ගය apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} වගුව සඳහා අවම වශයෙන් එක් පේළියක් තිබිය යුතුය +DocType: Server Script,Server Script,සේවාදායක පිටපත DocType: OAuth Bearer Token,Expires In,දී කල් ඉකුත් +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","ඔබට ක්ෂේත්‍ර සමූහය පුනරාවර්තනය කිරීමට අවශ්‍ය වාර ගණන (උදා: ඔබට විනිවිදකයේ ගනුදෙනුකරුවන් 3 දෙනෙකු අවශ්‍ය නම්, මෙම ක්ෂේත්‍රය 3 ලෙස සකසන්න. විනිවිදකයේ අනිවාර්ය ලෙස පෙන්වන්නේ පළමු ක්ෂේත්‍ර කට්ටලය පමණි)" DocType: DocField,Allow on Submit,ඉදිරිපත් මත ඉඩ දෙන්න DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,ව්යතිරේක වර්ගය @@ -3036,6 +3138,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,ශීර්ෂක apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,ඉදිරියට එන සිද්ධීන් apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,යෙදුම් ප්රවේශ යතුර හා යෙදුම් රහස් යතුර සඳහා අගයන් ඇතුලත් කරන්න +DocType: Email Account,Append Emails to Sent Folder,යවන ලද ෆෝල්ඩරයට ඊමේල් එකතු කරන්න DocType: Web Form,Accept Payment,ගෙවීම් පිළිගැනීමට apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ලැයිස්තු අයිතමය තෝරන්න apps/frappe/frappe/config/core.py,A log of request errors,ඉල්ලීම වැරදි ඒ ලඝු-සටහන @@ -3054,7 +3157,7 @@ DocType: Translation,Contributed,දායක විය apps/frappe/frappe/config/customization.py,Form Customization,ආකෘති අභිරුචිකරණය apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,සක්රීය සැසි නැත DocType: Web Form,Route to Success Link,සාර්ථකත්වයට මඟ -DocType: Top Bar Item,Right,අයිතිය +DocType: Onboarding Slide Field,Right,අයිතිය apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,ඉදිරියට එන සිදුවීම් නැත DocType: User,User Type,පරිශීලක වර්ගය DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3072,6 +3175,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,කරුණා apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' හෝ 'https: //' සමඟ ආරම්භ විය යුතුය. apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,x විකල්ප 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,මෙය අහෝසි කළ නොහැක DocType: Workflow State,Edit,සංස්කරණය කරන්න DocType: Website Settings,Chat Operators,චැට් ක්රියාකරුවන් DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3083,7 +3187,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,මෙම ආකෘති පත්රය තුළ වෙනස්කිරීම් සුරැකීම ඇත. ඔබ ඉදිරියට යාමට පෙර සුරකින්න. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} සඳහා පෙරනිමි විකල්පයක් විය යුතුය -DocType: Tag Doc Category,Tag Doc Category,ටැග ඩොක් ප්රවර්ගය apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,තීරු 10 කට වඩා ඇති වාර්තා භූ දර්ශන ප්‍රකාරයේදී වඩා හොඳ පෙනුමක්. apps/frappe/frappe/database/database.py,Invalid field name: {0},වලංගු නොවන ක්ෂේත්‍ර නාමය: {0} DocType: Milestone,Milestone,සන්ධිස්ථානය @@ -3092,7 +3195,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} වෙත ය apps/frappe/frappe/email/queue.py,Emails are muted,විද්යුත් තැපැල් පණිවුඩ ඇල් මැරුනු වේ apps/frappe/frappe/config/integrations.py,Google Services,Google සේවා apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,සති 1 කට පෙර +DocType: Onboarding Slide,Slide Description,විනිවිදක විස්තරය DocType: Communication,Error,දෝෂ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,කරුණාකර ප්රථමයෙන් පණිවිඩයක් සකසන්න DocType: Auto Repeat,End Date,අවසාන දිනය @@ -3113,10 +3216,12 @@ DocType: Footer Item,Group Label,සමූහ ලේබල් DocType: Kanban Board,Kanban Board,Kanban මණ්ඩලය apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ගූගල් සම්බන්ධතා වින්‍යාස කර ඇත. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 වාර්තාවක් අපනයනය කෙරේ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,පරිශීලකයා හා සම්බන්ධ ඊමේල් ගිණුමක් නොමැත. කරුණාකර පරිශීලක> විද්‍යුත් තැපැල් එන ලිපි යටතේ ගිණුමක් එක් කරන්න. DocType: DocField,Report Hide,වාර්තාව සඟවන්න apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0} සඳහා රුක් දැක්ම ලබා ගත නොහැකි DocType: DocType,Restrict To Domain,වසම් සීමා DocType: Domain,Domain,වසම් +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,අවලංගු ගොනු URL. කරුණාකර පද්ධති පරිපාලක අමතන්න. DocType: Custom Field,Label Help,ලේබලය උදවු DocType: Workflow State,star-empty,"තරු, හිස්-" apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,දින බොහෝ විට අනුමාන කිරීමට පහසුය. @@ -3140,6 +3245,7 @@ DocType: Workflow State,hand-left,අත වාම DocType: Data Import,If you are updating/overwriting already created records.,ඔබ දැනටමත් නිර්මාණය කරන ලද වාර්තා යාවත්කාලීන කිරීම / අධිලේඛන. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,ගෝලීය වේ DocType: Email Account,Use SSL,SSL භාවිතා කරන්න +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,නාට්යයේ-රවුම apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ලේඛනය නිවැරදිව පැවරිය නොහැක apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",අවලංගු "depend_on" ප්රකාශනයකි @@ -3156,6 +3262,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,අවසන් වරට නැවුම් විය apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ලේඛන වර්ගය සඳහා DocType: Workflow State,arrow-right,ඊතලය දක්ෂිනාංශික +DocType: Server Script,API Method,API ක්‍රමය DocType: Workflow State,Workflow state represents the current state of a document.,කාර්ය ප්රවාහ රාජ්ය ලියවිල්ලක් වත්මන් රාජ්ය නියෝජනය කරයි. DocType: Letter Head,Letter Head Based On,ලිපි ශීර්ෂය මත පදනම්ව apps/frappe/frappe/utils/oauth.py,Token is missing,සංකේත අතුරුදහන් @@ -3194,6 +3301,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,සංයුක්ත අයිතමය මුද්රණය DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,නැවත යොමු කිරීමේ URL +DocType: Onboarding Slide Field,Placeholder,ස්ථාන දරන්නා DocType: SMS Settings,Enter url parameter for receiver nos,ලබන්නා අංක සඳහා url එක පරාමිතිය ඇතුලත් කරන්න DocType: Chat Profile,Online,සමඟ අමුත්තන් DocType: Email Account,Always use Account's Name as Sender's Name,සෑම විටම ගිණුමේ නම යවන්නාගේ නම ලෙස භාවිතා කරන්න @@ -3227,6 +3335,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,අයිතික DocType: Data Migration Mapping,Push,තල්ලුව apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ලිපිගොනු මෙහි දමන්න DocType: OAuth Authorization Code,Expiration time,කල් ඉකුත් වීම් කාලය +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,ලේඛන විවෘත කරන්න DocType: Web Page,Website Sidebar,වෙබ් අඩවිය වැඩේටත් DocType: Web Form,Show Sidebar,වැඩේටත් පෙන්වන්න apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,ඔබ {0} මෙම ප්රවේශ පළමුව වෙබ් අඩවියට ඇතුල් වී සිටිය යුතුය. @@ -3275,6 +3384,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,මුද්රණය ආකෘතිය apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ජාලක දර්ශනය ටොගල කරන්න apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ඊළඟ වාර්තාවට යන්න +DocType: System Settings,Time Format,කාල ආකෘතිය apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,වලංගු නොවන ගෙවීම් ක්රම අක්තපත්ර DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,මෙය යම් දෝෂයක් ඇති පේළි පමණි. ඔබ විසින් මෙම ගොනුව නිවැරදි කිරීම සහ ආයාත කිරීම සඳහා භාවිතා කළ යුතුය. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ලේඛන වර්ග හා භූමිකා මත Set අවසර @@ -3317,12 +3427,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,පිල apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ඩෙස්ක් පිටු (ස්ථානය හිමි) DocType: DocField,Collapsible Depends On,කොටසේ මත රඳා පවතී DocType: Print Style,Print Style Name,මුද්රණය විලා නාමය +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,උපකරණ පුවරුව ප්‍රස්ථාරයක් නිර්මාණය කිරීම සඳහා කණ්ඩායම් අනුව ක්ෂේත්‍රය අවශ්‍ය වේ DocType: Print Settings,Allow page break inside tables,වගු ඇතුල් පිටුවට විවේකයක් ඉඩ DocType: Email Account,SMTP Server,SMTP සේවාදායකය DocType: Print Format,Print Format Help,මුද්රණය ආකෘතිය උදවු apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} කාමරය එක් පරිශීලකයෙකුට තිබිය යුතුය. DocType: DocType,Beta,බීටා DocType: Dashboard Chart,Count,ගණන් කරන්න +DocType: Dashboard Chart,Group By Type,වර්ගය අනුව සමූහය apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},නැවත {0} {1} ලෙස apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","ඔබ යාවත්කාලීන කරන්නේ නම්, කරුණාකර ගස් පේලි මකාදැමිය නොහැකි වනු ඇත වෙන "උඩින්" තෝරන්න." DocType: DocField,Translatable,පරිවර්තනය කළ හැක @@ -3331,8 +3443,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,පරි DocType: Web Form,Web Form,වෙබ් ආකෘති පත්රය apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},දිනය {0} ආකෘතියෙහි තිබිය යුතුය: {1} DocType: About Us Settings,Org History Heading,Org ඉතිහාසය ශීර්ෂය +DocType: Scheduled Job Type,Scheduled Job Type,උපලේඛනගත රැකියා වර්ගය DocType: Print Settings,Allow Print for Cancelled,අහෝසි කිරීම සඳහා මුද්රණය ඉඩ දෙන්න DocType: Communication,Integrations can use this field to set email delivery status,මනුෂ්යත්වයක් ඊ-තැපැල් බෙදාහැරීම තත්ත්වය ඇති කිරීමට මෙම ක්ෂේත්රය භාවිතා කළ හැකිය +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,සම්බන්ධිත සියලුම ලේඛන අවලංගු කිරීමට ඔබට අවසර නොමැත. DocType: Web Form,Web Page Link Text,වෙබ් පිටු ලින්ක් පෙළ DocType: Page,System Page,පද්ධතිය පිටුව DocType: Page,System Page,පද්ධතිය පිටුව @@ -3340,6 +3454,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,පිට වීම apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}</b> අපනයනය සඳහා අභිමතකරණය: <br> {1} DocType: Website Settings,Include Search in Top Bar,Top නීතිඥ සොයන්න ඇතුළත් +DocType: Scheduled Job Type,Daily Long,ඩේලි ලෝන්ග් DocType: GSuite Settings,Allow GSuite access,GSuite පිවිසීමට අවසර දෙන්න DocType: DocType,DESC,DESC DocType: DocType,Naming,නම් කිරීම @@ -3429,6 +3544,7 @@ DocType: Notification,Send days before or after the reference date,දින ස DocType: User,Allow user to login only after this hour (0-24),පරිශීලක පමණක් මෙම පැයට පසු ගිණුමට ප්රවිෂ්ට වීමට ඉඩ (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",අනුපිළිවෙලින් එකින් එක යොදන්න DocType: Integration Request,Subscription Notification,දායකත්ව දැනුම්දීම +DocType: Customize Form Field, Allow in Quick Entry ,ඉක්මන් ප්‍රවේශයට ඉඩ දෙන්න apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,හෝ අමුණන්න DocType: Auto Repeat,Start Date,ආරම්භක දිනය apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,වටිනාකම @@ -3443,6 +3559,7 @@ DocType: Google Drive,Backup Folder ID,උපස්ථ ෆෝල්ඩර හැ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,නෑ සංවර්ධක ප්රකාරය! site_config.json දී සකස් කිරීම හෝ 'අභිරුචි' DocType කරන්න. DocType: Workflow State,globe,ලොව DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,වීඩියෝ DocType: Assignment Rule,Priority,ප්රමුඛ DocType: Email Queue,Unsubscribe Param,"වනවාද, Param" DocType: DocType,Hide Sidebar and Menu,පැති තීරුව සහ මෙනුව සඟවන්න @@ -3454,6 +3571,7 @@ DocType: DocType,Allow Import (via Data Import Tool),ආනයන (දත්ත apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,එස්ආර් DocType: DocField,Float,පාවෙන DocType: Print Settings,Page Settings,පිටු සැකසීම් +DocType: Notification Settings,Notification Settings,දැනුම්දීම් සැකසුම් apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,සුරකින්න ... apps/frappe/frappe/www/update-password.html,Invalid Password,වැරදි මුරපදය DocType: Contact,Purchase Master Manager,මිලදී ගැනීම මාස්ටර් කළමනාකරු @@ -3467,6 +3585,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,ජීමේල් DocType: Letter Head,Letter Head Image,ලිපි ශීර්ෂ රූපය DocType: Address,Party GSTIN,පක්ෂය GSTIN +DocType: Scheduled Job Type,Cron Format,ක්‍රෝන් ආකෘතිය apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} වාර්තාව DocType: SMS Settings,Use POST,POST භාවිතා කරන්න DocType: Communication,SMS,කෙටි පණිවිඩ @@ -3512,18 +3631,20 @@ DocType: Workflow,Allow approval for creator of the document,ලේඛනයේ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,වාර්තාව සුරකින්න DocType: Webhook,on_cancel,මත ක්ලික් කරන්න DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,සේවාදායක ක්‍රියාව apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,පරිපාලක IP ලිපිනය {2} හරහා {0} පිවිස {1} මත. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,දෙමාපිය ක්ෂේත්‍රය වලංගු ක්ෂේත්‍ර නාමයක් විය යුතුය apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,දායක මුදල් සංශෝධනය කිරීමේදී අසමත් විය DocType: LDAP Settings,LDAP Group Field,LDAP සමූහ ක්ෂේත්‍රය +DocType: Notification Subscribed Document,Notification Subscribed Document,දැනුම්දීම් දායක ලේඛනය apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,සමාන apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,වලංගු නොවන CSV ආකෘතිය -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ තැටි යෙදුමට සම්බන්ධ වීමේ දෝෂයකි ... <br><br> අමු මුද්‍රණ විශේෂාංගය භාවිතා කිරීම සඳහා ඔබට QZ තැටි යෙදුම ස්ථාපනය කර ක්‍රියාත්මක කළ යුතුය. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ තැටි බාගත කර ස්ථාපනය කිරීමට මෙතැන ක්ලික් කරන්න</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">අමු මුද්‍රණය පිළිබඳ වැඩිදුර දැන ගැනීමට මෙහි ක්ලික් කරන්න</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,අමතර පිටපත් පිහිටුවන අංකය DocType: DocField,Do not allow user to change after set the first time,පරිශීලක පසුව පළමු වරට සකස් වෙනස් කිරීමට ඉඩ දෙන්න එපා apps/frappe/frappe/utils/data.py,1 year ago,1 වසරකට පෙර +DocType: DocType,Links Section,සබැඳි අංශය apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","සියලුම මුද්‍රණ, බාගැනීම් සහ අපනයන සිදුවීම් වල ලොගය බලන්න" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,මාස 1 යි DocType: Contact,Contact,අමතන්න @@ -3554,11 +3675,12 @@ DocType: Dropbox Settings,Dropbox Settings,නාමාවලි එකක් DocType: About Us Settings,More content for the bottom of the page.,පිටුවේ පහළ සඳහා වැඩි අන්තර්ගතය. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,මෙම ලේඛනය ආපසු හරවා ඇත apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,ගූගල් ඩ්‍රයිව් උපස්ථය සාර්ථකයි. +DocType: Webhook,Naming Series,ශ්රේණි අනුප්රාප්තිකයා නම් කිරීම DocType: Workflow,DocType on which this Workflow is applicable.,මෙම කාර්ය ප්රවාහ අදාළ වන මත DocType. DocType: User,Enabled,සක්රීය apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,සැකසුම සම්පූර්ණ කිරීමට අපොහොසත් විය apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},නව {0}: {1} -DocType: Tag Category,Category Name,ප්රවර්ගය නම +DocType: Blog Category,Category Name,ප්රවර්ගය නම apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,ළමා වගු දත්ත ලබා ගැනීම සඳහා දෙමාපියන් අවශ්‍ය වේ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ආනයන පැකේජය DocType: Print Settings,PDF Settings,PDF සැකසුම් @@ -3594,6 +3716,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,දින දසුන apps/frappe/frappe/client.py,No document found for given filters,ලබා දී පෙරහන් සඳහා ලිපියක් සොයා ගත්තේ නැත apps/frappe/frappe/config/website.py,A user who posts blogs.,බ්ලොග් පළ කරන පරිශීලකයෙක්. +DocType: DocType Action,DocType Action,DocType ක්‍රියාව apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","තවත් {0} නම සමඟ {1}, තවත් නමක් තෝරා පවතී" DocType: DocType,Custom?,රේගු? DocType: Website Settings,Website Theme Image,වෙබ් අඩවිය තේමාව රූප @@ -3603,6 +3726,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},{0}: ප apps/frappe/frappe/config/integrations.py,Backup,උපස්ථ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,උපකරණ පුවරුවක් සෑදීම සඳහා ලේඛන වර්ගය අවශ්‍ය වේ DocType: DocField,Read Only,පමණක් කියවන්න +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,රේසර්පේ ඇණවුමක් නිර්මාණය කිරීමට නොහැකි විය apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,නව පුවත් DocType: Energy Point Log,Energy Point Log,ශක්ති ලක්ෂ්‍ය ලොගය DocType: Print Settings,Send Print as PDF,PDF ලෙස මුද්රණය යවන්න @@ -3627,15 +3751,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ඔ apps/frappe/frappe/www/login.html,Or login with,"නැත්නම්," DocType: Error Snapshot,Locals,වාසීන් apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{1} මත {0} හරහා සන්නිවේදනය: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} {1} තුළ ප්රතිචාරයක් ඔබ සඳහන් apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,සමූහය තෝරන්න ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,උදා: (55 + 434) / 4 හෝ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} අවශ්ය වේ DocType: Integration Request,Integration Type,ඒකාබද්ධතා වර්ගය DocType: Newsletter,Send Attachements,Attachements යවන්න +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,පෙරහන් කිසිවක් හමු නොවීය apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ගූගල් සම්බන්ධතා ඒකාබද්ධ කිරීම. DocType: Transaction Log,Transaction Log,ගනුදෙනු ලොග් DocType: Contact Us Settings,City,නගරය +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,සියලුම පරිශීලකයින් සඳහා කාඩ්පත් සඟවන්න DocType: DocField,Perm Level,Perm පෙළ apps/frappe/frappe/www/confirm_workflow_action.html,View document,දත්තගොනුව බලන්න apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,අද දින දසුන දී සිදුවීම් @@ -3646,6 +3771,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ගෝලීය සොයන්න දී' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ගෝලීය සොයන්න දී' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} DocType: Energy Point Log,Appreciation,අගය කිරීම +DocType: Dashboard Chart,Number of Groups,කණ්ඩායම් ගණන apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,දැක්ම ලැයිස්තුව DocType: Workflow,Don't Override Status,තත්ත්වය ඉක්මවා යන්න එපා apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,සොයන්න කාලීන @@ -3681,10 +3807,10 @@ DocType: ToDo,Assigned By,විසින් පවරනු apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,You can use Customize Form to set levels on fields.,ඔබ ක්ෂේත්රවල මට්ටම් ඇති කිරීමට Customize ආකෘතිය භාවිතා කළ හැක. DocType: Dashboard Chart Source,Timeseries,ටයිමරීස් apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,ඔබේ ප්රදේශය තෝරා +apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation point for {1} {2},{0} අගය අගය {1} {2} DocType: S3 Backup Settings,cn-northwest-1,cn-වයඹ -1 DocType: Dropbox Settings,Limit Number of DB Backups,DB Backups ගණන සීමා කරන්න DocType: Custom DocPerm,Level,මට්ටමින් -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,පසුගිය දින 30 යි DocType: Custom DocPerm,Report,වාර්තාව apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,"මුදල, 0 ට වඩා වැඩි විය යුතුය." apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ තැටියට සම්බන්ධයි! @@ -3701,6 +3827,7 @@ DocType: S3 Backup Settings,us-west-2,us-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,ළමා වගුව තෝරන්න apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ප්‍රාථමික ක්‍රියාව ආරම්භ කරන්න apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,වෙනස් +DocType: Social Login Key,User ID Property,පරිශීලක හැඳුනුම්පත් දේපල DocType: Email Domain,domain name,ඩොමේන් නාමය DocType: Contact Email,Contact Email,අප අමතන්න විද්යුත් DocType: Kanban Board Column,Order,නියෝග @@ -3722,7 +3849,7 @@ DocType: Contact,Last Name,අවසන් නම DocType: Event,Private,පුද්ගලික apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,අද ඇඟවීම් කිසිදු DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ලෙස විද්යුත් මුද්රණය ඇමුණුම් යවන්න (නිර්දේශිත) -DocType: Web Page,Left,වම් +DocType: Onboarding Slide Field,Left,වම් DocType: Event,All Day,සියලු දිනය apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,යමක් මෙම අඩවියේ ගෙවීම් ක්රම වින්යාස වැරැද්ද වගේ. කිසිදු ගෙවීමක් සිදු කර ඇත. DocType: GCalendar Settings,State,රජයේ @@ -3753,7 +3880,6 @@ DocType: Workflow State,User,පරිශීලක DocType: Website Settings,"Show title in browser window as ""Prefix - title""",බ්රව්සර් කවුළුවක මාතෘකාව ලෙස පෙන්වන්න "උපසර්ගය - මාතෘකාව" DocType: Payment Gateway,Gateway Settings,ගේට්වේ සැකසුම් apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ලිපි වර්ගය පෙළ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,ධාවනය ටෙස්ට් තරග apps/frappe/frappe/handler.py,Logged Out,න් ලොගින් වී apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,තව... DocType: System Settings,User can login using Email id or Mobile number,පරිශීලක විද්යුත් id හෝ ජංගම දුරකතන අංකය භාවිතා එහෙමවත් @@ -3770,6 +3896,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,සාරාංශය DocType: Event,Event Participants,සහභාගී වන්නන් DocType: Auto Repeat,Frequency,සංඛ්යාත +DocType: Onboarding Slide,Slide Order,විනිවිදක ඇණවුම DocType: Custom Field,Insert After,ඇතුළු කරන්න පසු DocType: Event,Sync with Google Calendar,ගූගල් දින දර්ශනය සමඟ සමමුහුර්ත කරන්න DocType: Access Log,Report Name,වාර්තාව නම @@ -3797,6 +3924,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},වර්ගය ව්යවහාර මුදල් සඳහා උපරිම පළල පේළියේ 100px {0} වේ apps/frappe/frappe/config/website.py,Content web page.,අන්තර්ගත වෙබ් පිටුව. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,නව කාර්යභාරය එකතු කරන්න +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,වෙබ් පිටුවට පිවිසෙන්න +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,නව පැවරුම DocType: Google Contacts,Last Sync On,අවසාන සමමුහුර්ත කිරීම DocType: Deleted Document,Deleted Document,මකා දමන ලදී ලේඛන apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,අපොයි! මොකක්හරි වැරද්දක් වෙලා @@ -3807,7 +3936,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,භූ දර්ශ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,කරුණාකර Javascript අනුග්රාහකයෙක් පැත්තේ තිර රචනය දිගු DocType: Webhook,on_trash,මත ක්ලික් කරන්න apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,පහත දැක්වෙන කරුණු සඳහා ලේඛන පිරික්සා ඇත -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,උපලේඛන අක්‍රීයයි +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,උපලේඛන අක්‍රීයයි DocType: Blog Settings,Blog Introduction,බ්ලොග් හැඳින්වීම DocType: Global Search Settings,Search Priorities,ප්‍රමුඛතා සොයන්න DocType: Address,Office,කාර්යාල @@ -3817,13 +3946,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,උපකරණ පුවර DocType: User,Email Settings,ඊ-තැපැල් සැකසුම් apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,මෙතන අතහරින්න DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","සක්‍රිය කර ඇත්නම්, ද්වි සාධක සාධක සත්‍යාපනය භාවිතා කර පරිශීලකයාට ඕනෑම IP ලිපිනයකින් ප්‍රවේශ විය හැකිය, මෙය පද්ධති සැකසීම්වල සිටින සියලුම පරිශීලකයින් සඳහාද සැකසිය හැකිය." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,මුද්‍රණ සැකසුම් ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,දිගටම කිරීමට ඔබේ මුර පදය ඇතුලත් කරන්න කරුණාකර apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,දිගටම කිරීමට ඔබේ මුර පදය ඇතුලත් කරන්න කරුණාකර apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,මට apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} වලංගු රාජ්ය නොවේ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,සියලුම ලේඛන වර්ග වලට අයදුම් කරන්න -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ශක්ති ලක්ෂ්‍ය යාවත්කාලීන කිරීම +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,ශක්ති ලක්ෂ්‍ය යාවත්කාලීන කිරීම +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),(දින) අක්‍රිය නම් දිනපතා පමණක් රැකියා ධාවනය කරන්න apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',කරුණාකර වෙනත් ගෙවීමේ ක්රමයක් තෝරාගන්න. පේපෑල් මුදල් ගනුදෙනු සඳහා පහසුකම් සපයන්නේ නැත '{0}' DocType: Chat Message,Room Type,කාමර වර්ගය DocType: Data Import Beta,Import Log Preview,ලොග් පෙරදසුන ආයාත කරන්න @@ -3832,6 +3961,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,හරි-රවුම DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP පරිශීලක නිර්මාණය සහ සිතියම්කරණය apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',ඔබ 'පාරිභෝගිකයින් තැඹිලි සොයා' අසමින් දේවල් සොයා ගත හැකි +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,අද සිදුවීම් apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,සමාවන්න! පරිශීලක සිය වාර්තාවම වෙත ප්රවේශ විය යුතුය. ,Usage Info,භාවිතය තොරතුරු apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,යතුරුපුවරු කෙටිමං පෙන්වන්න @@ -3847,6 +3977,7 @@ DocType: Communication,Communication Type,සන්නිවේදන වර් DocType: DocField,Unique,අද්විතීය apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,අර්ධ වශයෙන් සාර්ථක වීම DocType: Email Account,Service,සේවය +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා DocType: File,File Name,ගොනුවේ නම apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} {0} සඳහා සොයා ගත්තේ නැහැ ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3860,6 +3991,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,සම DocType: GCalendar Settings,Enable,සක්රිය කරන්න DocType: Google Maps Settings,Home Address,නිවසේ ලිපිනය apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),ඔබ සතුව ඇත්තේ එක් අතක වාර්තා 5000 දක්වා උඩුගත කළ හැකිය. (සමහර අවස්ථාවල දී අඩු විය හැක) +DocType: Report,"output in the form of `data = [columns, result]`","ප්‍රතිදානය `දත්ත = [තීරු, ප්‍රති result ලය]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,අදාළ ලේඛන වර්ග apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,පරිශීලක පැවරුම් සඳහා නීති සකසන්න. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} සඳහා ප්රමාණවත් අවසර @@ -3877,7 +4009,6 @@ DocType: Communication,To and CC,කිරීමට සහ සීසී DocType: SMS Settings,Static Parameters,ස්ථිතික පරාමිතීන් DocType: Chat Message,Room,කාමරය apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} යාවත්කාලීන -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,පසුබිම් රැකියා ක්‍රියාත්මක නොවේ. කරුණාකර පරිපාලක අමතන්න DocType: Portal Settings,Custom Menu Items,රේගු මෙනු අයිතම apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,වෙබ් අඩවි සැහැල්ලු වෙබ් අඩවිවලට සම්බන්ධ සියලු රූපයන් පොදු විය යුතුය DocType: Workflow State,chevron-right,Chevron දක්ෂිනාංශික @@ -3891,9 +4022,11 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} අගයන් තෝරා ඇත DocType: DocType,Allow Auto Repeat,ස්වයංක්‍රීයව නැවත කිරීමට ඉඩ දෙන්න apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,පෙන්වීමට අගයන් නොමැත +DocType: DocType,URL for documentation or help,ප්‍රලේඛනය හෝ උදව් සඳහා URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ඊමේල් සැකිල්ල apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,පිවිසුම් හා මුර පදය ද අවශ්ය +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,ඉඩ\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,නවතම ලියවිල්ල ලබා ගැනීමට නැවුම් කරන්න. DocType: User,Security Settings,ආරක්ෂක සැකසුම් apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,වැනි තීරුෙවහි එකතු කරන්න @@ -3902,6 +4035,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},අපනයන වාර්තාව: {0} DocType: Auto Email Report,Filter Meta,මෙටා පෙරහන් DocType: Web Page,Set Meta Tags,මෙටා ටැග් සකසන්න +DocType: Email Account,Use SSL for Outgoing,පිටතට යාම සඳහා SSL භාවිතා කරන්න 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: S3 Backup Settings,Backup Limit,බැකප් සීමාව DocType: Dashboard Chart,Line,රේඛාව @@ -3933,4 +4067,3 @@ DocType: DocField,Ignore User Permissions,පරිශීලක අවසර න apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,සාර්ථකව සුරකින ලදි apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,ඔබගේ සංඥා දක්වා තහවුරු කිරීමට ඔබගේ පරිපාලක කරුණාකර DocType: Domain Settings,Active Domains,ක්රියාකාරී වසම් -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,ඇතුළුවන්න පෙන්වන්න diff --git a/frappe/translations/sk.csv b/frappe/translations/sk.csv index 8ad31ac648..0703ba31ad 100644 --- a/frappe/translations/sk.csv +++ b/frappe/translations/sk.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vyberte pole Hodnota. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Načítava sa importovaný súbor ... DocType: Assignment Rule,Last User,Posledný užívateľ -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nová úloha, {0}, bola priradená k vám od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Predvolené hodnoty relácie boli uložené apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Znovu načítať súbor DocType: Email Queue,Email Queue records.,Email fronty záznamov. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Strom DocType: User,User Emails,užívateľské e-maily DocType: User,Username,Užívateľské meno apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Vytvoriť denník apps/frappe/frappe/model/base_document.py,Value too big,Hodnota príliš veľká DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Spustiť test skriptov @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Měsíčně DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Povolení příchozích apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nebezpečie -DocType: Address,Email Address,E-mailová adresa +apps/frappe/frappe/www/login.py,Email Address,E-mailová adresa DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Neprečítané oznámenia Odoslané apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export není povolen. Potřebujete roli {0} pro exportování. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Zru DocType: DocType,Is Published Field,Je publikovaný Field DocType: GCalendar Settings,GCalendar Settings,Nastavenia služby GCalendar DocType: Email Group,Email Group,email Group +apps/frappe/frappe/__init__.py,Only for {},Len pre {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendár Google - Nepodarilo sa odstrániť udalosť {0} z Kalendára Google, kód chyby {1}." DocType: Event,Pulled from Google Calendar,Spúšťané z Kalendára Google DocType: Note,Seen By,Videné kým apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Pridať viacero -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Získali ste nejaké energetické body apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nie je platný obrázok používateľa. DocType: Energy Point Log,Reverted,vrátené DocType: Success Action,First Success Message,Prvá správa o úspechu @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nie ako apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, jen pro čtení, práva atd.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,oceniť +DocType: Notification Settings,Document Share,Zdieľanie dokumentov DocType: Workflow State,lock,zámek apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nastavenie stránky Kontaktujte nás. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrátor prihlásený @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ak je povolený, dokument sa označí ako videný pri prvom otvorení dokumentu používateľom" DocType: Auto Repeat,Repeat on Day,Opakujte v deň DocType: DocField,Color,Farba +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Označiť všetko ako prečítané DocType: Data Migration Run,Log,log DocType: Workflow State,indent-right,indent-right DocType: Has Role,Has Role,má role @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Zobraziť Traceback DocType: DocType,Default Print Format,Predvolený formát tlače DocType: Workflow State,Tags,tagy +DocType: Onboarding Slide,Slide Type,Typ snímky apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nič: Koniec toku apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nemôže byť nastavené ako jedinečné v {1}, pretože obsahuje nejedinečné hodnoty" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Typy dokumentů @@ -136,7 +139,6 @@ DocType: Language,Guest,Host DocType: DocType,Title Field,Nadpis poľa DocType: Error Log,Error Log,error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,neplatná URL adresa -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Posledných 7 dní apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Opakuje ako "abcabcabc" sú len o niečo ťažšie odhadnúť, ako "abc"" DocType: Notification,Channel,Kanál apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ak si myslíte, že to je oprávnené, prosím, zmeňte heslo správcu." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Vyberte stĺpec apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Tento formulár bol zmenený potom, čo ste naložil" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Protokol oznámení 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otvorte Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Vl apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Odoslať DocType: Workflow Action Master,Workflow Action Name,Název akce toku (workflow) apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DokTyp nemôže byť zlúčený -DocType: Web Form Field,Fieldtype,Typ pole +DocType: Onboarding Slide Field,Fieldtype,Typ pole apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nejedná sa o súbor zip DocType: Global Search DocType,Global Search DocType,Typ globálneho vyhľadávania DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,E-mail odoslaný? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Prepnúť graf apps/frappe/frappe/desk/form/save.py,Did not cancel,Nebolo zrušené DocType: Social Login Key,Client Information,Informácie o klientovi +DocType: Energy Point Rule,Apply this rule only once per document,Toto pravidlo platí iba pre jeden dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Iba na čítanie závisí od apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Prihlásení ako hosť alebo správca DocType: Email Account,UNSEEN,nevidený apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Správca súborov @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Dôvod 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Žiadna aktivita +DocType: Server Script,Script Manager,Správca skriptov +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Žiadna aktivita apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikácie tretích strán apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Dnes nie sú žiadne udalosti apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nemôžete si dať body na preskúmanie apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType musí byť predložiteľný pre vybranú udalosť Doc DocType: Workflow State,circle-arrow-up,circle-arrow-up @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nie je povolené pre {0}: {1}. Obmedzené pole: {2} 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,You are not allowed to delete a standard Website Theme,Nemáte povolenie vymazať štandardnú Tému webstránky +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Vytvorte si prvý {0} DocType: Data Import,Log Details,Podrobnosti denníka DocType: Workflow Transition,Example,Příklad DocType: Webhook Header,Webhook Header,Hlavička Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,pozadie četu apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Označiť ako prečítané apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aktualizácia {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Palubná snímka <b>{0}</b> s rovnakým poradím snímok už existuje apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Vypnout Report DocType: Translation,Contributed Translation Doctype Name,Názov dodaného prekladu doctype +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár DocType: PayPal Settings,Redirect To,Ak chcete presmerovať DocType: Data Migration Mapping,Pull,SEM DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formát: frappe.query_reports['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Interní záznam akcií dok DocType: Energy Point Settings,Review Levels,Skontrolujte úrovne DocType: Workflow State,Comment,Komentár DocType: Data Migration Plan,Postprocess Method,Postprocess Metóda +DocType: DocType Action,Action Type,Typ akcie apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Odfoť DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",Můžete upravit Odeslané dokumenty jejich zrušením a následovnou změnou. @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Uložiť ako DocType: Comment,Seen,Zhliadnuté apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Zobraziť viac podrobností +DocType: Server Script,Before Submit,Pred odoslaním 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,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,Archive,Archív @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Nesprávne názov poľa <b>{0}</b> v add_fetch konfigurácii vlastného skriptu apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Vyberte Kontakty Google, s ktorými sa má synchronizovať kontakt." DocType: Web Page,Main Section (HTML),Hlavná sekcia (HTML) +DocType: Scheduled Job Type,Annual,Roční DocType: Workflow State,headphones,sluchátka apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Je potrebné heslo alebo vyberte Čaká heslo DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,napríklad odpovede@vasafirma.com. Všetky odpovede prídu do tejto schránky. DocType: Slack Webhook URL,Slack Webhook URL,Smažte webovú adresu URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Určuje poradie snímky v sprievodcovi. Ak sa snímka nemá zobraziť, mala by byť nastavená priorita 0." DocType: Data Migration Run,Current Mapping,Aktuálne mapovanie apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Je vyžadovaný platný email a meno apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Nastaviť všetky prílohy ako súkromné @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Pravidla transakce apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,V ukážke sa zobrazuje iba prvých {0} riadkov apps/frappe/frappe/core/doctype/report/report.js,Example:,Příklad: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,obmedzenia DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků. DocType: Workflow State,Filter,filtr apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Ďalšie informácie nájdete v protokole chýb: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,zamestnania apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} odhlásený: {1} DocType: Address,West Bengal,Západný Bengálsko +DocType: Onboarding Slide,Information,informácie apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nie je možné nastaviť Pridelené odoslanie, ak nie je Odoslateľné" DocType: Transaction Log,Row Index,Riadkový index DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,tlačidlo Pomocník DocType: Kanban Board Column,purple,Fialová DocType: About Us Settings,Team Members,Členové týmu +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Pre neaktívne weby sa budú spúšťať naplánované úlohy iba raz denne. Predvolené 4 dni, ak je nastavené na 0." DocType: Assignment Rule,System Manager,Správca systému +DocType: Scheduled Job Log,Scheduled Job,Naplánovaná práca DocType: Custom DocPerm,Permissions,Oprávnenia apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pre vnútornú integráciu DocType: Dropbox Settings,Allow Dropbox Access,Povolit přístup Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Naske DocType: Email Flag Queue,Email Flag Queue,Email Flag fronty DocType: Access Log,Columns / Fields,Stĺpce / polia apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Štýlové listy pre tlačové formáty +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Na vytvorenie tabuľky dashboardov je potrebné pole Agregovaná funkcia apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Nemožno určiť otvorené {0}. Skúsiť niečo iné. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaše informácie boli predložené apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Nie je možné zmazať používateľa {0} @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Názov poľa DocType: Assignment Rule,Assign To Users,Priradiť používateľom apps/frappe/frappe/public/js/frappe/utils/utils.js,or,alebo apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,názov modulu ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Pokračovať +DocType: Onboarding Slide,Continue,Pokračovať apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integrácia Google je zakázaná. DocType: Custom Field,Fieldname,Názov poľa DocType: Workflow State,certificate,certifikát apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Overovanie ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Vaša úloha dňa {0} {1} bola odstránená apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,První sloupec dat musí být prázdný. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Zobraziť všetky verzie apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Zobraziť komentár @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Omezit IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Nástenka apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendár Google - Nepodarilo sa aktualizovať udalosť {0} v Kalendári Google, kód chyby {1}." +DocType: Notification Log,Email Content,Obsah e-mailu apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vyhľadávajte alebo zadajte príkaz DocType: Activity Log,Timeline Name,Časová os Name apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Ako primárne je možné nastaviť iba jedno {0}. DocType: Email Account,e.g. smtp.gmail.com,např. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Pridať nové pravidlo DocType: Contact,Sales Master Manager,Nadriadený manažér predaja +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Aby vaša aplikácia fungovala, musíte povoliť JavaScript." DocType: User Permission,For Value,Pre hodnotu DocType: Event,Google Calendar ID,ID služby Kalendár Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Jeden Posledný krok @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Pole stredného názvu LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importuje sa {0} z {1} DocType: GCalendar Account,Allow GCalendar Access,Povoliť prístup GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je povinné pole +DocType: DocType,Documentation Link,Odkaz na dokumentáciu apps/frappe/frappe/templates/includes/login/login.js,Login token required,Požadovaný token prihlásenia apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mesačné hodnotenie: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vyberte viac položiek zoznamu @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Adresa URL souboru DocType: Version,Table HTML,Tabuľka HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Pridať predplatitelia +DocType: Notification Log,Energy Point,Energy Point apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Nadcházející události pro dnešek DocType: Google Calendar,Push to Google Calendar,Push to Kalendár Google DocType: Notification Recipient,Email By Document Field,Email od pole dokumentu @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,preč DocType: Currency,Fraction Units,Zlomkové jednotky apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} z {1} až {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Označiť ako hotovo DocType: Chat Message,Type,Typ DocType: Google Settings,OAuth Client ID,ID klienta OAuth DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Späť na pracovnú plochu DocType: Web Form,Amount Based On Field,Suma z terénneho +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nemá sledované verzie. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Skontrolujte svoj e-mail pre overenie apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold nemůže být na konci formuláře DocType: Communication,Bounced,Odrazené +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,z DocType: Deleted Document,Deleted Name,Vymazaný názov apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Systémový a veřejní uživatelé DocType: Workflow Document State,Doc Status,Doc Status @@ -527,6 +552,7 @@ DocType: Language,Language Code,kód jazyka DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Poznámka: V predvolenom nastavení sa odosielajú e-maily pre neúspešné zálohy. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Pridať filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS poslal do nasledujúcich čísel: {0} +DocType: Notification Settings,Assignments,priradenie apps/frappe/frappe/utils/data.py,{0} and {1},{0} a {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Začnite konverzáciu. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vždy pridať "Koncept" Okruh pre tlač konceptov dokumentov @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Aktualizácia aktuálneho mapo apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail bol označený ako spam DocType: Comment,Website Manager,Správce webu apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Odovzdanie súboru odpojené. Prosím skúste znova. +DocType: Data Import Beta,Show Failed Logs,Zobraziť neúspešné protokoly apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,preklady apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Vybrali ste si Koncept alebo Zrušené dokumenty apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} bol nastavený na stav {1} do {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokument vo fronte DocType: GSuite Templates,Destination ID,ID miesta určenia DocType: Desktop Icon,List,Zoznam DocType: Activity Log,Link Name,link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Nemáte \ DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr +DocType: Onboarding Slide,Onboarding Slide,Palubný posúvač apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nesprávne heslo: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nesprávne heslo: DocType: Print Settings,Send document web view link in email,Odoslať dokument odkaz web zobraziť v e-mailu @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,tmavošedý apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Úspešný: {0} až {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Pokles +DocType: Dashboard Chart,Aggregate Function Based On,Agregovaná funkcia založená na apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Prosím, kopírovat to, aby se změny" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Stlačením klávesu Enter uložte apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,"Generovanie PDF zlyhalo, pretože zlomených obrázkové odkazy" @@ -617,7 +647,9 @@ DocType: Notification,Days Before,Dni pred apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Denné udalosti by sa mali skončiť v ten istý deň. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Upraviť ... DocType: Workflow State,volume-down,volume-down +DocType: Onboarding Slide,Help Links,Odkazy pomoci apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Prístup z tejto adresy IP nie je povolený +DocType: Notification Settings,Enable Email Notifications,Povoliť e-mailové upozornenia apps/frappe/frappe/desk/reportview.py,No Tags,žiadne tagy DocType: Email Account,Send Notification to,Odoslať oznámenia na DocType: DocField,Collapsible,Skladacie @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Posledná záloha zapnutá DocType: Customize Form Field,Customize Form Field,Prispôsobiť formulárové pole DocType: Energy Point Rule,For Document Event,Pre udalosť dokumentu DocType: Website Settings,Chat Room Name,Názov izba chatu +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,nezmenený DocType: OAuth Client,Grant Type,grant Type apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Podívejte se, které dokumenty jsou čitelné uživatelem" DocType: Deleted Document,Hub Sync ID,ID synchronizácie Hubu @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,pou DocType: Auto Repeat,Quarterly,Čtvrtletně apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Vždy apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Neplatný stav dokumentu pre {0} DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nie Seen @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Sprá DocType: Email Account,Notify if unreplied,"Upozorniť, ak Nezodpovedaná" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skenujte kód QR a zadajte zobrazený výsledný kód. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Povoliť prechody +DocType: Scheduled Job Type,Hourly Long,Každú hodinu DocType: System Settings,Minimum Password Score,Minimálne skóre hesla DocType: System Settings,Minimum Password Score,Minimálne skóre hesla DocType: DocType,Fields,Pole @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,nadřazená apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 zálohovanie dokončené! apps/frappe/frappe/config/desktop.py,Developer,Vývojár apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Vytvorené +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Ak ju chcete povoliť, postupujte podľa pokynov v nasledujúcom odkaze: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} v riadku {1} nemôžu byť zároveň URL a podriadené položky apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},V nasledujúcich tabuľkách by mal byť aspoň jeden riadok: {0} DocType: Print Format,Default Print Language,Predvolený jazyk tlače apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predkovia apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Kořen (nejvyšší úroveň): {0} nelze smazat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Žiadne neúspešné protokoly apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Zatiaľ bez komentárov apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Prosím nastavte SMS pred nastavením metódy autentifikácie pomocou SMS Settings apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Jak DOCTYPE tak Jméno je vyžadováno @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,Položky zápätia apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,Predvolená hodnota DocType: Auto Repeat,Daily,Denne +DocType: Onboarding Slide,Max Count,Max apps/frappe/frappe/config/users_and_permissions.py,User Roles,Uživatelské role DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Konfigurátor vlastností přepisuje standardní DocType nebo vlastnosti pole apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nie je možné obnoviť: Neplatný / expirovaný odkaz. @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hostiteľ DocType: Data Import Beta,Import File,Importovať súbor +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Chyba šablóny apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Stĺpec <b>{0}</b> už existujú. DocType: ToDo,High,Vysoké apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nová udalosť @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,Zobraziť vo filtri DocType: Address,Daman and Diu,Daman a Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Osobné +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Nespracované nastavenia tlače ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Podrobnosti nájdete na stránke https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Hromadné premenovanie DocType: Email Queue,Show as cc,Zobraziť ako cc @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Take Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Úvodní informace na stránce kontaktujte nás DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Zrušenie dokumentov DocType: User,Send Notifications for Email threads,Odoslať upozornenia pre e-mailové vlákna apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,profesor apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nie v režime pre vývojárov @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Zálohovani DocType: DocField,In Global Search,V globálnom vyhľadávaní DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-left -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pred {0} rokmi apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Je to riskantné zmazať tento súbor: {0}. Prosím, obráťte sa na správcu systému." DocType: Currency,Currency Name,Názov meny apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,žiadne e-maily @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,Pole používateľa DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Stlačte tlačidlo Odstrániť apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} už odhlásený pre {1} {2} +DocType: Scheduled Job Type,Stopped,Zastavené apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Nebylo odebráno apps/frappe/frappe/desk/like.py,Liked,Páčil apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Odoslať teraz apps/frappe/frappe/core/doctype/doctype/doctype.py,"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" apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Povoliť hosťa DocType: Report,Query,Dotaz DocType: Customize Form,Sort Order,Zoradenie apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'V zozname' nie je dovolené pre typ {0} na riadku {1} @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Metóda overovania dvoch faktorov apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprv nastavte názov a uložte záznam. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 záznamov +DocType: DocType Link,Link Fieldname,Názov poľa odkazu apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Spoločná pracovisko s {0} apps/frappe/frappe/email/queue.py,Unsubscribe,odhlásiť DocType: View Log,Reference Name,Názov referencie apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Zmeniť používateľa +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,najprv apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Aktualizácia prekladov DocType: Error Snapshot,Exception,Výnimka DocType: Email Account,Use IMAP,Použiť IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Pravidla definující přechod stavů v tocích (workflow). DocType: File,Folder,Priečinok DocType: Website Route Meta,Website Route Meta,Webová stránka Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Pole snímania na palube DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Manažér apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Možnosť 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nas apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Nakonfigurujte grafy DocType: User,Last IP,Posledná IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Pridajte do e-mailu predmet -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Nový dokument {0} bol s vami zdieľaný {1}. DocType: Data Migration Connector,Data Migration Connector,Konektor pre migráciu údajov apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vrátený {1} DocType: Email Account,Track Email Status,Sledovať stav e-mailu @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,Predvolené na odchádzajúce DocType: Workflow State,play,play apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Kliknite na odkaz nižšie pre dokončenie Vašej registrácie a nastavenie nového hesla apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Nebylo přidáno +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} získal {1} bodov za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Žiadne e-mailové kontá Účelovo DocType: S3 Backup Settings,eu-west-2,eu-západ-2 DocType: Contact Us Settings,Contact Us Settings,Nastavenie - Kontaktujte nás @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Vyhľadá DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,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/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Vyhľadávanie podľa názvu súboru alebo prípony +DocType: Onboarding Slide,Slide Title,Názov snímky DocType: Notification,View Properties (via Customize Form),Zobrazenie vlastností (cez Vlastné forma) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknutím na súbor ho vyberte. DocType: Note Seen By,Note Seen By,Poznámka videný @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Zdieľajte adresu URL DocType: System Settings,Allow Consecutive Login Attempts ,Povoliť pokusy o konsolidované prihlásenie apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Pri platobnom procese sa vyskytla chyba. Prosím kontaktuj nás. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ak je typ snímky Vytvoriť alebo Nastavenia, mala by existovať metóda 'create_onboarding_docs' v súbore {ref_doctype} .py, ktorá sa má vykonať po dokončení snímky." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dni DocType: Email Account,Awaiting Password,čaká sa Heslo DocType: Address,Address Line 1,Riadok adresy 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nie potomkovia DocType: Contact,Company Name,Názov spoločnosti DocType: Custom DocPerm,Role,Role -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Nastavenie... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,do prehliadača apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,zapisovač @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Sledujte, či váš e-mail otvoril príjemca. <br> Poznámka: Ak odosielate viacerým príjemcom, aj keď 1 príjemca prečíta e-mail, bude to považované za "Otvorené"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Chybějící hodnoty vyžadovány apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Povoliť prístup Google Contacts +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,restricted DocType: Data Migration Connector,Frappe,frapé apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Označiť ako neprečítané DocType: Activity Log,Operation,Operace @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,umožňujú tlač DocType: Communication,Clicked,Kliknuté apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,nesledovať apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte predvolený e-mailový účet z časti Nastavenie> E-mail> E-mailový účet apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,naplánované odosielať DocType: DocType,Track Seen,track Videné DocType: Dropbox Settings,File Backup,Zálohovanie súborov @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,{0}: nenájde apps/frappe/frappe/config/customization.py,Add custom forms.,Pridať vlastné formuláre. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} na {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,predložený tento dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Používateľské oprávnenia apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systém poskytuje mnoho preddefinovaných rolí. Môžete pridať vlastné nové role pre detailnejšie nastavenie oprávnení. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Spúšťací názov -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domény +DocType: Onboarding Slide,Domains,Domény DocType: Blog Category,Blog Category,Kategorie blogu apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Nelze namapovat jelikož následující podmínka selhala: DocType: Role Permission for Page and Report,Roles HTML,Role HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,Sobota DocType: User,Represents a User in the system.,Představuje uživatele v systému DocType: List View Setting,Disable Auto Refresh,Zakázať automatické obnovenie DocType: Comment,Label,Popis -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Úloha {0}, ktoré ste priradili k {1}, bol uzavretý." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zatvorte prosím toto okno DocType: Print Format,Print Format Type,Typ formátu tisku DocType: Newsletter,A Lead with this Email Address should exist,by mal existovať rozhodujúcich s touto e-mailovú adresu @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP nastavenie pre odc apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vyberte si DocType: Data Export,Filter List,Zoznam filtrov DocType: Data Export,Excel,vynikať +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Správa automatickej odpovede DocType: Data Migration Mapping,Condition,Podmienka apps/frappe/frappe/utils/data.py,{0} hours ago,Pred {0} hodín @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base prispievateľ DocType: Communication,Sent Read Receipt,Potvrdenie o prečítaní odoslané DocType: Email Queue,Unsubscribe Method,metóda aktuality +DocType: Onboarding Slide,Add More Button,Tlačidlo Pridať ďalšie DocType: GSuite Templates,Related DocType,Súvisiaci DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Upravit pro přidání obsahu apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,zvoľte jazyky apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Podrobnosti o kartách apps/frappe/frappe/__init__.py,No permission for {0},Nemáte oprávnenie pre {0} DocType: DocType,Advanced,Pokročilé +DocType: Onboarding Slide,Slide Image Source,Zdroj obrázka snímky apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referencie: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Pani @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Hlavné DocType: DocType,User Cannot Create,Uživatel nemůže Vytvořit apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Úspešne hotovo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Prístup Dropbox je schválený! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Naozaj chcete zlúčiť {0} s {1}? DocType: Customize Form,Enter Form Type,Vložte typ formuláře DocType: Google Drive,Authorize Google Drive Access,Autorizujte prístup na Disk Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Chýba parameter Kanban Board Name @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Upravené formáty pre tlač, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Súčet {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Aktualizované na novú verziu DocType: Custom Field,Depends On,Závisí na DocType: Kanban Board Column,Green,Zelená DocType: Custom DocPerm,Additional Permissions,Rozšířená oprávnění @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,Sociálnej apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Kalendár Google - Nepodarilo sa vytvoriť kalendár pre {0}, kód chyby {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Upravujete riadok DocType: Workflow Action Master,Workflow Action Master,Akce hlavních toků +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Vymazať všetko DocType: Custom Field,Field Type,Typ pole apps/frappe/frappe/utils/data.py,only.,pouze. DocType: Route History,Route History,História trasy @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Zabudli ste heslo? DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Chyba servera +DocType: Server Script,After Delete,Po odstránení apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Zobraziť všetky minulé správy. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Je požadované prihlasovacie ID DocType: Website Slideshow,Website Slideshow,Promítání obrázků na www stránce apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Odkaz na domovskú www stránku. Štandardné odkazy (index, prihlásenie, produkty, blog, o nás, kontakt)" +DocType: Server Script,After Submit,Po odoslaní apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Overovanie pri prijímaní e-mailov z e-mailového konta {0} zlyhalo. Správa zo servera: {1} DocType: User,Banner Image,Obrázok banneru DocType: Custom Field,Custom Field,Vlastné pole @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","V prípade, že používateľ nemá žiadnu úlohu skontrolovať, užívateľ sa stáva "System User". "System User" má prístup k ploche" DocType: System Settings,Date and Number Format,Formát čísel a dátumu apps/frappe/frappe/model/document.py,one of,jeden z -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontrola jeden okamih apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Zobrazit štítky DocType: DocField,HTML Editor,Editor HTML 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,Fakturácia DocType: Email Queue,Not Sent,Neodoslané -DocType: Web Form,Actions,Akcie -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ +DocType: DocType,Actions,Akcie DocType: Workflow State,align-justify,zarovnat-vyplnit DocType: User,Middle Name (Optional),Druhé meno (voliteľné) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nepovolené @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Žiadne vý DocType: System Settings,Security,Bezpečnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Plánované poslat na {0} příjemci apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,rez +DocType: Server Script,After Save,Po uložení apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},premenovaná z {0} až {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} z {1} ({2} riadkov s deťmi) DocType: Currency,**Currency** Master,** Mena ** Hlavná @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,Hodnoty filtra DocType: Communication,User Tags,Uživatelské štítky DocType: Data Migration Run,Fail,zlyhať DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Posledné vykonanie DocType: Data Migration Run,Pull Failed,Pull sa nepodarilo apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Zobraziť / skryť karty DocType: Communication,Feedback Request,Spätná väzba Request apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importovanie údajov z súborov CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Nasledujúce polia chýba: +DocType: Notification Log,From User,Od používateľa apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Rušenie {0} DocType: Web Page,Main Section,Hlavná sekcia DocType: Page,Icon,ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Tip: Zahrňte do hesla symboly, čísla a veľké písmená" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Tip: Zahrňte do hesla symboly, čísla a veľké písmená" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Nakonfigurujte oznámenia pre zmienky, priradenia, energetické body a ďalšie." DocType: DocField,Allow in Quick Entry,Povoliť v rýchlom zadaní apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd/mm/rrrr @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,Adresa URL témy DocType: Customize Form,Sort Field,Pole zoradenia DocType: Razorpay Settings,Razorpay Settings,nastavenie Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Upraviť filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Pridať viac DocType: System Settings,Session Expiry Mobile,Vypršanie platnosti mobilnej relácie apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nesprávny používateľ alebo heslo apps/frappe/frappe/templates/includes/search_box.html,Search results for,Výsledky vyhľadávania pre @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Pravidlo energetického bodu DocType: Communication,Delayed,Oneskorené apps/frappe/frappe/config/settings.py,List of backups available for download,Zoznam záloh k dispozícii na stiahnutie +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Vyskúšajte nový import údajov apps/frappe/frappe/www/login.html,Sign up,Zaregistrovať sa apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Riadok {0}: Nemožno zakázať povinné pre štandardné polia +DocType: Webhook,Enable Security,Povoliť zabezpečenie apps/frappe/frappe/config/customization.py,Dashboards,dashboardy DocType: Test Runner,Output,Výkon DocType: Milestone,Track Field,Pole sledovania @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,Nastaviť vlastnosť po upozornen apps/frappe/frappe/config/customization.py,Add fields to forms.,Pridať polia do formulárov apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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é." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Pridať recenziu +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} vám priradil novú úlohu {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Veľkosť písma (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Z štandardného formulára môžu byť upravené iba štandardné typy dokumentov. DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,Položka menu na portáli apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Nastavte filtre DocType: Contact Us Settings,Email ID,Email ID DocType: Energy Point Rule,Multiplier Field,Multiplikačné pole +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Objednávku Razorpay sa nepodarilo vytvoriť. Obráťte sa na správcu DocType: Dashboard Chart,Time Interval,Časový interval DocType: Activity Log,Keep track of all update feeds,Sledujte všetky informačné kanály +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} s vami zdieľa dokument {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Zoznam zdrojov, ktoré Klient App bude mať prístup k potom, čo ho užívateľ dovolí. <br> napríklad projekt" DocType: Translation,Translated Text,preložený Text DocType: Contact Us Settings,Query Options,Možnosti dotazu @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,Kľúč DocType: Address,Contacts,Kontakty DocType: System Settings,Setup Complete,Nastavenie dokončené apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Zpráva ze všech akcií dokumentů +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importovaná šablóna by mala byť typu .csv, .xlsx alebo .xls" apps/frappe/frappe/www/update-password.html,New Password,Nové heslo apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} chýba apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Je nám ľúto! Nemožno odstrániť automaticky generovaná komentáre @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,beh DocType: Blog Post,Content (HTML),Obsah (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Nastavenie pre DocType: Personal Data Download Request,User Name,Meno používateľa DocType: Workflow State,minus-sign,znaménko mínus apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nenájdené @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Bez oprávnenia: {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export užívateľských oprávnení apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nenašli sa žiadne položky. DocType: Data Export,Fields Multicheck,Polia Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Dokončené DocType: Activity Log,Login,Prihlásenie DocType: Web Form,Payments,Platby apps/frappe/frappe/www/qrcode.html,Hi {0},Ahoj {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integrácia služby Disk Google. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} vrátil vaše body k {1} {2} DocType: System Settings,Enable Scheduled Jobs,Zapnout plánované operace (cron) apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Poznámky: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,neaktívne @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Šabl apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Chyba povolenia apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Názov {0} nemôže byť {1} DocType: User Permission,Applicable For,Použitelné pro +DocType: Dashboard Chart,From Date,Od data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Podarilo sa apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Platnosť relácie uplynula DocType: Kanban Board Column,Kanban Board Column,Stĺpec Kanban steny @@ -1479,7 +1540,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ús apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Nie je povolený v stave DocType: Async Task,Async Task,Asynchrónne Task DocType: Workflow State,picture,obrázok -apps/frappe/frappe/www/complete_signup.html,Complete,Hotovo +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Hotovo DocType: DocType,Image Field,image Field DocType: Print Format,Custom HTML Help,Vlastné HTML nápovedy DocType: LDAP Settings,Default Role on Creation,Predvolená úloha pri vytvorení @@ -1487,6 +1548,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Příští stav DocType: User,Block Modules,Moduly Blokové DocType: Print Format,Custom CSS,Prispôsobené CSS +DocType: Energy Point Rule,Apply Only Once,Prihláste sa iba raz apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Pridať komentár DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignorovať: {0} až {1} @@ -1498,6 +1560,7 @@ DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,repeat DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Hodnota musí byť jedna z {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Zrušiť všetky dokumenty 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Prejdite na zoznam {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoc s vyhľadávaním @@ -1506,6 +1569,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrova apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatické opakovanie pre tento dokument bolo zakázané. DocType: DocType,Hide Copy,Skrýt kopii apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Odebrat všechny role +DocType: Server Script,Before Save,Pred uložením apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} musí byť jedinečný apps/frappe/frappe/model/base_document.py,Row,Řádek apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC a e-mailová šablóna" @@ -1516,7 +1580,6 @@ DocType: Chat Profile,Offline,offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Úspešne importované {0} DocType: User,API Key,kľúč API DocType: Email Account,Send unsubscribe message in email,Odoslať odhlásiť správu do e-mailu -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Upraviť názov apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Název pole který bude DocType pro toto provázané pole. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumenty s vami a vami. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Môžete to tiež skopírovať a prilepiť @@ -1548,8 +1611,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Pripojiť obrázok DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Heslo bolo aktualizované +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Používateľské oprávnenia apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kroky na overenie vašich prihlasovacích údajov apps/frappe/frappe/utils/password.py,Password not found,Heslo nebol nájdený +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Dĺžka stránky DocType: Email Queue,Expose Recipients,vystaviť príjemcovi apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pripojiť k je povinné pre prichádzajúce e-maily @@ -1577,6 +1642,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Systém DocType: Web Form,Max Attachment Size (in MB),Maximálna veľkosť príloh (v MB) apps/frappe/frappe/www/login.html,Have an account? Login,Máte účet? Prihlásiť sa +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Nastavenia tlače ... DocType: Workflow State,arrow-down,šipka-dolů apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Riadok {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} @@ -1598,6 +1664,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadajte h DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret DocType: Tag Link,Document Title,Názov dokumentu apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Povinné) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pred {0} rokmi DocType: Social Login Key,Social Login Provider,Poskytovateľ sociálneho prihlásenia apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Pridať ďalší komentár apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,V súbore sa nenašli žiadne údaje. Znova pripojte nový súbor s údajmi. @@ -1612,11 +1679,12 @@ DocType: Workflow State,hand-down,hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Nenašli sa žiadne polia, ktoré by bolo možné použiť ako stĺpec Kanban. Pomocou formulára Prispôsobiť môžete pridať vlastné pole typu „Vybrať“." DocType: Address,GST State,Štát GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Nie je možné nastaviť Zrušiť bez odoslania +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Používateľ ({0}) DocType: Website Theme,Theme,Téma DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Presmerovanie URI Bound auth zákonníka apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Otvorte Nápovedu DocType: DocType,Is Submittable,Je Odeslatelné -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nové zmienky +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nové zmienky apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Neboli synchronizované žiadne nové kontakty Google. DocType: File,Uploaded To Google Drive,Odovzdané na Disk Google apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Hodnota pro zaškrtávací pole může být 0 nebo 1 @@ -1628,7 +1696,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,Červená DocType: Workflow State,Tag,Štítek -DocType: Custom Script,Script,Skript +DocType: Report,Script,Skript apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokument sa nedá uložiť. DocType: Energy Point Rule,Maximum Points,Maximálny počet bodov apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje nastavenia @@ -1658,9 +1726,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} bodov za hodnotenie {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Role uživatelů mohou být nastaveny z jejich uživatelské stránky. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Pridať komentár +DocType: Dashboard Chart,Select Date Range,Vyberte rozsah dátumov DocType: DocField,Mandatory,Povinné apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul pre export +DocType: Scheduled Job Type,Monthly Long,Mesačne dlho apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}:Žiadne základné oprávnenia nastavené +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Pošlite e-mail na adresu {0} a prepojte ho tu apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Význam pojmů Vložit, Zrušit, Změnit" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Úkoly @@ -1669,7 +1740,6 @@ DocType: Milestone Tracker,Track milestones for any document,Sledujte míľniky DocType: Social Login Key,Identity Details,Podrobnosti o totožnosti apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Prechod stavu workflow nie je povolený z {0} na {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Zobraziť informačný panel -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nová správa DocType: File,Preview HTML,Náhľad HTML DocType: Desktop Icon,query-report,query-report DocType: Data Import Beta,Template Warnings,Varovania šablóny @@ -1680,18 +1750,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Provázáno apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Upraviť nastavenia automatického prehľadu e-mailov DocType: Chat Room,Message Count,Počet správ DocType: Workflow State,book,kniha +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} je prepojený s nasledujúcimi predloženými dokumentmi: {2} DocType: Communication,Read by Recipient,Prečítané adresátom DocType: Website Settings,Landing Page,Úvodná stránka apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Chyba vo vlastnej skript apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Meno apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Žádná oprávnění nastavena pro toto kritérium. DocType: Auto Email Report,Auto Email Report,Auto Email Report +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nový zdieľaný dokument apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Zmazať komentár? DocType: Address Template,This format is used if country specific format is not found,"Tento formát se používá, když specifický formát země není nalezen" DocType: System Settings,Allow Login using Mobile Number,Povoliť prihlásenie pomocou čísla mobilného telefónu apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ak je táto možnosť povolená, používatelia, ktorí sa prihlásia z obmedzenej IP adresy, nebudú vyzvaní na povolenie Two Factor Auth" +DocType: Server Script,After Cancel,Po zrušení DocType: Auto Repeat,Get Contacts,Získajte kontakty apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Príspevky podané v rámci {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskočenie stĺpca bez názvu @@ -1702,6 +1775,7 @@ DocType: User,Login After,Přihlášení po DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tlačenie DocType: Workflow State,thumbs-up,thumbs-up +DocType: Notification Log,Mention,zmienka DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Písma apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 @@ -1709,7 +1783,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,a apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Tento prehľad bol vytvorený na {0} DocType: Error Snapshot,Frames,Rámy -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,úloha +DocType: Notification Log,Assignment,úloha DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Odkaz na obrázok DocType: Auto Email Report,Report Filters,správa Filtre @@ -1726,7 +1800,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Nie je možné aktualizovať udalosť apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Overovací kód bol odoslaný na vašu registrovanú e-mailovú adresu. apps/frappe/frappe/core/doctype/user/user.py,Throttled,škrtil +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Váš cieľ apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter musí mať 4 hodnoty (doctype, názov poľa, operátor, hodnota): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Pre {0} nie je uvedené žiadne meno apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Použiť pravidlo priradenia apps/frappe/frappe/utils/bot.py,show,zobraziť apps/frappe/frappe/utils/data.py,Invalid field name {0},Neplatný názov poľa {0} @@ -1736,7 +1812,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapovanie plánu migrácie údajov apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Spúšťam Frappé ... DocType: Web Form Field,Max Length,Maximálna dĺžka -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Za {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-marker apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Vložit případ podpory @@ -1772,6 +1847,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Stránka neexistuje alebo apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,recenzia DocType: DocType,Route,trasa apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay nastavenie platobná brána +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} získal {1} bod za {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Načítajte priložené obrázky z dokumentu DocType: Chat Room,Name,Meno DocType: Contact Us Settings,Skype,skype @@ -1782,7 +1858,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Otvoriť odk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tvoj jazyk DocType: Dashboard Chart,Average,priemerný apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Pridať riadok -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,tlačiareň apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Dotaz musí být SELECT DocType: Auto Repeat,Completed,Dokončeno @@ -1842,6 +1917,7 @@ DocType: GCalendar Account,Next Sync Token,Ďalší symbol synchronizácie DocType: Energy Point Settings,Energy Point Settings,Nastavenia bodu energie DocType: Async Task,Succeeded,Uspel apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Povinné pole vyžadované pre {0} +DocType: Onboarding Slide Field,Align,align apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Obnoviť oprávnenia pre: {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Uživatelé a oprávnění DocType: S3 Backup Settings,S3 Backup Settings,Nastavenia zálohovania S3 @@ -1858,7 +1934,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Názov nového formátu tlače apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kliknutím na odkaz nižšie žiadosť schválite DocType: Workflow State,align-left,zarovnat-vlevo +DocType: Onboarding Slide,Action Settings,Nastavenia akcie DocType: User,Defaults,Predvolené +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Na porovnanie použite> 5, <10 alebo = 324. Pre rozsahy použite 5:10 (pre hodnoty medzi 5 a 10)." DocType: Energy Point Log,Revert Of,Vrátiť späť apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Zlúčiť s existujúcim DocType: User,Birth Date,Dátum narodenia @@ -1913,6 +1991,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,V DocType: Notification,Value Change,Změnit hodnotu DocType: Google Contacts,Authorize Google Contacts Access,Autorizujte prístup Google Contacts apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zobrazuje sa len polia Numeric z reportu +apps/frappe/frappe/utils/data.py,1 week ago,Pred 1 týždňom DocType: Data Import Beta,Import Type,Typ importu DocType: Access Log,HTML Page,HTML stránka DocType: Address,Subsidiary,Dceřiný @@ -1922,7 +2001,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,šířka Letterhead apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neplatný odchozí Mail Server nebo Port DocType: Custom DocPerm,Write,Zapsat -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Pouze administrátor má povoleno vytvářet Dotazy (query) / skriptované výpisy (script reports) apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualizácie DocType: Data Import Beta,Preview,Náhľad apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Pole "hodnota" je povinná. Prosím, uveďte hodnotu, ktorá sa aktualizuje" @@ -1932,6 +2010,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Pozvať ak DocType: Data Migration Run,Started,zahájená apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Používateľ {0} nemá prístup k tomuto dokumentu DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Zoskupiť podľa apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Vyberte prílohy apps/frappe/frappe/model/naming.py, for {0},pre {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nemáte povolené tlačiť tento dokument @@ -1973,6 +2052,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Overiť DocType: Workflow Document State,Update Field,Aktualizovat pole DocType: Chat Profile,Enable Chat,Povoliť rozhovor DocType: LDAP Settings,Base Distinguished Name (DN),Základňa Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Opustiť túto konverzáciu apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Fronta / pracovník @@ -2041,12 +2121,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: Data Migration Run,Current Mapping Action,Aktuálna mapová akcia DocType: Dashboard Chart Source,Source Name,Názov zdroja -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,S používateľom nie je spojený žiadny e-mailový účet. Pridajte účet do sekcie Používateľ> Doručená pošta. DocType: Email Account,Email Sync Option,E-mail Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Riadok č DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Je pripnutý DocType: Contact Us Settings,Introduction,Úvod +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Potrebujete pomoc? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Globálne pripnúť apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Nasledovaný DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2056,7 +2136,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Je již v DocType: User Email,Enable Outgoing,Povolit odchozí DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,vlastné Tagy -apps/frappe/frappe/email/smtp.py,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 časti Nastavenia> E-mail> E-mailový účet DocType: Comment,Submitted,Potvrdené DocType: Contact,Pulled from Google Contacts,Spúšťané z Kontaktov Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Neplatná požiadavka @@ -2077,9 +2156,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Home / Test apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Priradiť mne DocType: DocField,Dynamic Link,Dynamický odkaz apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Stlačením klávesu Alt spustíte ďalšie skratky v ponuke a bočnom paneli +DocType: Dashboard Chart,To Date,To Date DocType: List View Setting,List View Setting,Nastavenie zobrazenia zoznamu apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show sa nepodarilo pracovných miest -DocType: Event,Details,Podrobnosti +DocType: Scheduled Job Log,Details,Podrobnosti DocType: Property Setter,DocType or Field,DocType nebo pole apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Zrušili ste zrušenie tohto dokumentu apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primárna farba @@ -2088,7 +2168,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Zdá sa, že zverejniteľný kľúč alebo tajný kľúč je nesprávny!" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Zdá sa, že zverejniteľný kľúč alebo tajný kľúč je nesprávny!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Rychlá Nápověda pro nastavení oprávnění -DocType: Tag Doc Category,Doctype to Assign Tags,Typ_dokumentu priradiť tagy apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Zobraziť Relapsy apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail bol presunutý do koša DocType: Report,Report Builder,Konfigurátor Reportu @@ -2104,6 +2183,7 @@ DocType: Workflow State,Upload,Nahrať DocType: User Permission,Advanced Control,Rozšírené ovládanie DocType: System Settings,Date Format,Formát dátumu apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Není publikováno +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenašla sa žiadna predvolená šablóna adresy. Vytvorte nový z ponuky Nastavenia> Tlač a branding> Šablóna adresy. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Akce toků jako např.: schválit, zrušit." DocType: Data Import,Skip rows with errors,Preskočte riadky s chybami DocType: Workflow State,flag,flag @@ -2113,7 +2193,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Tla apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skočiť na pole DocType: Contact Us Settings,Forward To Email Address,Preposlať na emailovú adresu DocType: Contact Phone,Is Primary Phone,Je primárny telefón -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošlite e-mail na adresu {0} a prepojte ho tu. DocType: Auto Email Report,Weekdays,Dni v týždni apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Exportuje sa {0} záznamov apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Nadpis musí obsahovať správny názov poľa @@ -2121,7 +2200,7 @@ DocType: Post Comment,Post Comment,Odoslať komentár apps/frappe/frappe/config/core.py,Documents,Dokumenty apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Prihlásiť sa na aktivitu DocType: Social Login Key,Custom Base URL,Adresa vlastnej základne -DocType: Email Flag Queue,Is Completed,je dokončené +DocType: Onboarding Slide,Is Completed,je dokončené apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Získajte polia apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Upraviť profil DocType: Kanban Board Column,Archived,Archivovaných @@ -2132,11 +2211,12 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,dnes +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,dnes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Odoslať po importe DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Odkaz Pomocníka na palubnej doske DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Potvrdzované apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Rodič je názov dokumentu, ku ktorému sa údaje pridajú." @@ -2144,7 +2224,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,VEĽKÉ PÍSMENÁ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Vlastné HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Zadajte názov zložky -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenašla sa žiadna predvolená šablóna adresy. Vytvorte nový z ponuky Nastavenia> Tlač a branding> Šablóna adresy. apps/frappe/frappe/auth.py,Unknown User,Neznámy používateľ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Vyberte rolu DocType: Comment,Deleted,Vymazané @@ -2160,7 +2239,7 @@ DocType: Chat Token,Chat Token,Chatový tok apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Vytvoriť graf apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportovať -DocType: Web Page,Center,Stred +DocType: Onboarding Slide Field,Center,Stred DocType: Notification,Value To Be Set,"Hodnota, ktorú chcete nastaviť" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Upraviť {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prvá úroveň @@ -2168,7 +2247,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Názov databázy apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Obnoviť formulár DocType: DocField,Select,Vybrať -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Zobraziť celý denník +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Zobraziť celý denník DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Jednoduchý výraz Python, príklad: status == 'Open' a napíšte == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Soubor není příložen apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Prerušené spojenie. Niektoré funkcie nemusia fungovať. @@ -2200,6 +2279,7 @@ DocType: Web Page,HTML for header section. Optional,HTML kód pro záhlaví. Vol apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,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,Maximum {0} rows allowed,Maximálně {0} řádků povoleno DocType: Dashboard Chart Link,Chart,Graf +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Globálne aktuality apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Jedná sa o veľmi časté hesla. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Pohľad @@ -2216,6 +2296,7 @@ DocType: Data Migration Connector,Hostname,Meno hosťa DocType: Data Migration Mapping,Condition Detail,Detail podmienky apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Pri mene {0} by minimálna suma transakcie mala byť {1} DocType: DocField,Print Hide,Skryť tlač +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Pre používateľa apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Zadejte hodnotu DocType: Workflow State,tint,tint @@ -2283,6 +2364,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kód na ove apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pridať medzi úlohy DocType: Footer Item,Company,Spoločnosť apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Priemer {0} +DocType: Scheduled Job Log,Scheduled,Plánované DocType: User,Logout from all devices while changing Password,Odhlásenie zo všetkých zariadení pri zmene hesla apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Potvrďte Heslo apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Vyskytly se chyby @@ -2308,7 +2390,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Používateľské oprávnenie už existuje apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapujúci stĺpec {0} do poľa {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Zobraziť {0} -DocType: User,Hourly,hodinový +DocType: Scheduled Job Type,Hourly,hodinový apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrovať OAuth klienta App DocType: DocField,Fetch If Empty,Načítať ak je prázdny DocType: Data Migration Connector,Authentication Credentials,Autentifikačné poverenia @@ -2319,10 +2401,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS brána URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},získané {0} automatickým pravidlom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} alebo {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Všetci ste pripravení! DocType: Workflow State,trash,koš DocType: System Settings,Older backups will be automatically deleted,Staršie zálohy budú automaticky zmazané apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Neplatný identifikátor prístupového kľúča alebo tajný prístupový kľúč. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Stratili ste nejaké energetické body DocType: Post,Is Globally Pinned,Je globálne pripnutá apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Posledná aktivita DocType: Workflow Transition,Conditions,Podmienky @@ -2331,6 +2413,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Potvrdené DocType: Event,Ends on,Končí DocType: Payment Gateway,Gateway,Brána DocType: LDAP Settings,Path to Server Certificate,Certifikát cesty k serveru +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Vo vašom prehliadači je zakázaný Javascript apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nedostatok povolenia na zobrazenie odkazov apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Nedostatok povolenia na zobrazenie odkazov apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Názov adresy je povinný. @@ -2350,7 +2433,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-západ-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ak je začiarknuté, budú importované riadky s platnými údajmi a neplatné riadky budú odstránené do nového súboru, aby ste mohli neskôr importovať." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document je upravovatelný pouze pro uživatele s rolí -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Úloha {0}, ktoré ste priradili k {1}, bolo uzavreté {2}." DocType: Print Format,Show Line Breaks after Sections,Show konce riadkov po oddieloch DocType: Communication,Read by Recipient On,Prečítané adresátom dňa DocType: Blogger,Short Name,Skrátené meno @@ -2383,6 +2465,7 @@ DocType: Translation,PR sent,PR bolo odoslané DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Iba odoslané záznamy boli aktualizované v posledných X hodinách DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Iba odoslané záznamy boli aktualizované v posledných X hodinách DocType: Communication,Feedback,Zpětná vazba +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Aktualizované na novú verziu 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Otvorte Preklad apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Tento e-mail je automaticky generovaný DocType: Workflow State,Icon will appear on the button,Ikona sa zobrazí na tlačítku @@ -2421,6 +2504,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Stránka n DocType: DocField,Precision,Presnosť DocType: Website Slideshow,Slideshow Items,Položky premietania obrázkov apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Snažte sa vyhnúť opakovaným slová a znaky +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Upozornenia sú zakázané +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Naozaj chcete odstrániť všetky riadky? DocType: Workflow Action,Workflow State,Stav toků apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,riadky pridané apps/frappe/frappe/www/list.py,My Account,Môj Účet @@ -2429,6 +2514,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dní po apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Pripojenie zásobníka QZ aktívne! DocType: Contact Us Settings,Settings for Contact Us Page,Nastavenie stránky Kontaktujte nás +DocType: Server Script,Script Type,Typ skriptu DocType: Print Settings,Enable Print Server,Povoliť tlačový server apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Pred {0} týždne DocType: Email Account,Footer,Zápätie @@ -2454,8 +2540,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Upozornění apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Môže sa to vytlačiť na viacerých stranách DocType: Data Migration Run,Percent Complete,Percento dokončené -DocType: Tag Category,Tag Category,tag Kategórie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Na porovnanie použite> 5, <10 alebo = 324. Pre rozsahy použite 5:10 (pre hodnoty medzi 5 a 10)." DocType: Google Calendar,Pull from Google Calendar,Vytiahnite z Kalendára Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Nápoveda DocType: User,Login Before,Přihlášení před @@ -2465,17 +2549,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skryť víkendy apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automaticky generuje opakujúce sa dokumenty. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Pomer {0} nemôže byť zoznam DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak by se to měna naformátovat? Pokud není nastavena, použije výchozí nastavení systému" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Odoslať {0} dokumenty? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Chyba pri pripájaní k aplikácii QZ Tray ... <br><br> Aby ste mohli používať funkciu Raw Print, musíte mať nainštalovanú a spustenú aplikáciu QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Kliknutím sem prevezmete a nainštalujete zásobník QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Kliknutím sem sa dozviete viac o surovej tlači</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapovanie tlačiarne apps/frappe/frappe/public/js/frappe/form/form.js,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/form.js,Do you want to cancel all linked documents?,Chcete zrušiť všetky súvisiace dokumenty? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Pridané: {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Oprávnění rolí DocType: Help Article,Intermediate,prechodný +apps/frappe/frappe/config/settings.py,Email / Notifications,E-mail / Upozornenia apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} zmenil {1} na {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Zrušený dokument bol obnovený ako koncept DocType: Data Migration Run,Start Time,Start Time @@ -2492,6 +2580,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,M apps/frappe/frappe/email/smtp.py,Invalid recipient address,Neplatná adresa příjemce DocType: Workflow State,step-forward,step-forward DocType: System Settings,Allow Login After Fail,Povoliť prihlásenie po zlyhaní +DocType: DocType Link,DocType Link,Odkaz typu DocType DocType: Role Permission for Page and Report,Set Role For,Nastaviť role DocType: GCalendar Account,The name that will appear in Google Calendar,"Názov, ktorý sa zobrazí v Kalendári Google" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Priama miestnosť s {0} už existuje. @@ -2509,6 +2598,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Vytvoriť DocType: Contact,Google Contacts,Kontakty Google DocType: GCalendar Account,GCalendar Account,Účet GCalendar DocType: Email Rule,Is Spam,je Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,posledná apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Správa {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otvoriť {0} DocType: Data Import Beta,Import Warnings,Upozornenia na import @@ -2520,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Odstránené dokumenty apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Formát CSV rozlišuje veľké a malé písmená apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona plochy už existuje +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Určite, v ktorých doménach sa majú snímky zobraziť. Ak nie je zadané nič, snímka sa predvolene zobrazuje vo všetkých doménach." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikát apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Pole {1} v riadku {2} nemôže byť v predvolenom nastavení skryté a povinné DocType: Newsletter,Create and Send Newsletters,Vytváranie a zasielanie Newsletterov @@ -2530,6 +2621,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID udalosti Kalendára Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Nadradené"" označuje tabuľku, do ktorej musí byť tento riadok pridaný" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Kontrolné body: +DocType: Scheduled Job Log,Scheduled Job Log,Plánovaný denník úloh +DocType: Server Script,Before Delete,Pred zmazaním apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Zdieľané S apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Pripojte súbory / adresy URL a pridajte ich do tabuľky. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Správa nie je nastavená @@ -2553,19 +2646,21 @@ DocType: About Us Settings,Settings for the About Us Page,Nastavenie stránky O apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe nastavenia platobnej brány apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe nastavenia platobnej brány apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Print Odoslaná do tlačiarne! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energetické body +DocType: Notification Settings,Energy Points,Energetické body +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Čas {0} musí byť vo formáte: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,napr pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generovanie kľúčov apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Vaše údaje sa tým natrvalo odstránia. DocType: DocType,View Settings,nastavenie zobrazenia +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Nové oznámenie DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Štruktúra žiadosti +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Chýba metóda kontroléra get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Čaká sa na overenie DocType: Website Meta Tag,Website Meta Tag,Značka metadat webu DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ak je neštandardný port (napr. 587). Ak máte v službe Google Cloud, skúste port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Vymazanie dátumu ukončenia, pretože v publikovaných stránkach nemôže byť v minulosti." DocType: User,Send Me A Copy of Outgoing Emails,Pošlite mi kópiu odchádzajúcich e-mailov -DocType: System Settings,Scheduler Last Event,Scheduler Posledné preteky DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Pridať Google Analytics ID: napr.: UA-89XXX57-1. Pre viac informácií prosím vyhľadajte nápovedu na stránkach Google Analytics. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Heslo nemôže byť viac ako 100 znakov dlhé DocType: OAuth Client,App Client ID,ID aplikácie klienta @@ -2594,6 +2689,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Vyžaduje sa apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} zdieľalo tento dokument s {1} DocType: Website Settings,Brand Image,Logo značky DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importovaná šablóna by mala obsahovať hlavičku a aspoň jeden riadok. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalendár Google bol nakonfigurovaný. apps/frappe/frappe/config/website.py,"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 @@ -2603,6 +2699,7 @@ DocType: User Social Login,User Social Login,Prihlásenie používateľa pre soc apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritizoval vašu prácu v {1} bodom {2} DocType: Contact,All,Vše DocType: Email Queue,Recipient,Príjemca +DocType: Webhook,Webhook Security,Webhook Security DocType: Communication,Has Attachment,má prílohu DocType: Address,Sales User,Používateľ predaja apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop nástroj k vytvoření a přizpůsobit tiskové formáty. @@ -2669,7 +2766,6 @@ DocType: Data Migration Mapping,Migration ID Field,Pole Migration ID DocType: Dashboard Chart,Last Synced On,Posledná synchronizácia dňa DocType: Comment,Comment Type,Typ komentára DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritizoval vašu prácu na {1} {2} DocType: Assignment Rule,Users,Uživatelé DocType: Address,Odisha,Urísa DocType: Report,Report Type,Typ výpisu @@ -2694,14 +2790,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Položka promítání obr apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Samostatné schválenie nie je povolené DocType: GSuite Templates,Template ID,ID šablóny apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kombinácia typu grantu ( <code>{0}</code> ) a typu odpovede ( <code>{1}</code> ) nie je povolená -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nová správa od {0} DocType: Portal Settings,Default Role at Time of Signup,Predvolené Úloha v dobe SIGNUP DocType: DocType,Title Case,Nadpis prípadu apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Kliknutím na odkaz nižšie si stiahnete svoje údaje apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Povolená e-mailová schránka pre používateľa {0} DocType: Data Migration Run,Data Migration Run,Prebieha migrácia údajov DocType: Blog Post,Email Sent,Email odoslaný -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,staršie DocType: DocField,Ignore XSS Filter,Ignorovať XSS filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,odstránený apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Nastavenie zálohovania Dropbox @@ -2756,6 +2850,7 @@ DocType: Async Task,Queued,Vo fronte DocType: Braintree Settings,Use Sandbox,použitie Sandbox apps/frappe/frappe/utils/goal.py,This month,Tento mesiac apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format +DocType: Server Script,Before Save (Submitted Document),Pred uložením (predložený dokument) DocType: Custom DocPerm,Create,Vytvoriť apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Žiadne ďalšie položky na zobrazenie apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Prejsť na predchádzajúci záznam @@ -2813,6 +2908,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Presunúť do koša DocType: Web Form,Web Form Fields,Pole webových formulářů DocType: Data Import,Amended From,Platném znění +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Odkaz na video pomocníka pridajte iba v prípade, že používateľ nemá predstavu o tom, čo vyplniť na snímke." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Varovanie: Nedá sa nájsť {0} v tabuľke vzťahujúcej sa k {1} DocType: S3 Backup Settings,eu-north-1,eu-sever-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Tento dokument je v súčasnosti zaradený do fronty na vykonanie. Prosím skúste znova @@ -2835,6 +2931,7 @@ DocType: Blog Post,Blog Post,Příspěvek blogu DocType: Access Log,Export From,Exportovať z apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Rozšírené vyhľadávanie apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nemáte povolenie prezerať si newsletter. +DocType: Dashboard Chart,Group By,Seskupit podle DocType: User,Interests,záujmy apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email DocType: Energy Point Rule,Allot Points To Assigned Users,Pridelte body priradeným používateľom @@ -2850,6 +2947,7 @@ DocType: Assignment Rule,Assignment Rule,Pravidlo priradenia apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Navrhovaná Užívateľské meno: {0} DocType: Assignment Rule Day,Day,Deň apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduly +DocType: DocField,Mandatory Depends On,Povinné závisí od apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,platba Úspech apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} pošty DocType: OAuth Bearer Token,Revoked,zrušená @@ -2857,6 +2955,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar a Komentáre apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nie je povolené pripevňovať dokument {0}, povolte povolenie Tlačiť pre {0} v nastaveniach tlače" +apps/frappe/frappe/email/smtp.py,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 časti Nastavenia> E-mail> E-mailový účet apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Pozrite si dokument na {0} DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie @@ -2871,13 +2970,13 @@ DocType: Currency,Fraction,Zlomek apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Udalosť synchronizovaná s Kalendárom Google. DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field DocType: Contact,Middle Name,Stredné meno +DocType: DocField,Property Depends On,Nehnuteľnosť závisí od DocType: Custom Field,Field Description,Popis poľa apps/frappe/frappe/model/naming.py,Name not set via Prompt,Název není nastaven pomocí prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mailová schránka apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aktualizuje sa {0} z {1}, {2}" DocType: Auto Email Report,Filters Display,filtre Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Na vykonanie zmeny a doplnenia musí byť k dispozícii pole „zmenené a doplnené“. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ocenil vašu prácu na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Uložte filtre DocType: Address,Plant,Rostlina apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpovedať všetkým @@ -2918,11 +3017,11 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Správa: DocType: Print Settings,Print taxes with zero amount,Tlačiť dane s nulovou čiastkou apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0}: nie je povolené premenovanie +DocType: Server Script,Before Insert,Pred vložením DocType: Custom Script,Custom Script,Přizpůsobený skript DocType: Address,Address Line 2,Riadok adresy 2 DocType: Address,Reference,Referencia apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Priradené (komu) -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte predvolený e-mailový účet z časti Nastavenie> E-mail> E-mailový účet DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detail mapovania migrácie údajov DocType: Data Import,Action,Akce DocType: GSuite Settings,Script URL,Adresa URL skriptu @@ -2948,11 +3047,13 @@ DocType: User,Api Access,Prístup Api DocType: DocField,In List View,V zozname DocType: Email Account,Use TLS,Použít TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Neplatné heslo či používateľské meno +DocType: Scheduled Job Type,Weekly Long,Týždenne dlho apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Stiahnuť šablónu apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů. ,Role Permissions Manager,Správce rolí a oprávnění apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Názov nového tlačového formátu apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Prepnúť bočný panel +DocType: Server Script,After Save (Submitted Document),Po uložení (predložený dokument) DocType: Data Migration Run,Pull Insert,Vytiahnite Vložiť DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maximálny povolený počet bodov po vynásobení bodov multiplikátorom (Poznámka: Toto pole nesmie byť prázdne alebo nastavené na 0) @@ -2972,6 +3073,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nie je nainštalovaný apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ke stažení s daty apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},zmenené hodnoty pre {0} {1} +DocType: Server Script,Before Cancel,Pred zrušením DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Sub doména DocType: S3 Backup Settings,Region,Kraj @@ -3017,12 +3119,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Staré heslo DocType: S3 Backup Settings,us-east-1,us-east-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Príspevky od {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Pro formátování sloupců, zadejte označení sloupců v dotazu." +DocType: Onboarding Slide,Slide Fields,Polia snímky DocType: Has Domain,Has Domain,Má doménu DocType: User,Allowed In Mentions,Povolené v správach apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ešte nemáte svoj účet? Zaregistrujte sa apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nie je možné odstrániť pole ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Predplatené dokumenty apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Používateľské nastavenia DocType: Report,Reference Report,Referenčná správa DocType: Activity Log,Link DocType,link DOCTYPE @@ -3040,6 +3144,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizujte prístup d apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stránka, ktorú hľadáte, nebola nájdená. Mohla byť presunutá alebo je preklep v adrese." apps/frappe/frappe/www/404.html,Error Code: {0},Kód chyby: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Popis pro stránku výpisů, v čistém textu, pouze pár řádek. (max 140 znaků)" +DocType: Server Script,DocType Event,Udalosť DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sú povinné polia DocType: Workflow,Allow Self Approval,Povolenie vlastného schválenia DocType: Event,Event Category,Kategória udalosti @@ -3056,6 +3161,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje meno apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Úspešné pripojenie DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Palubná snímka typu snímky Pokračovať už existuje. DocType: DocType,Default Sort Field,Predvolené pole zoradenia DocType: File,Is Folder,Je Folder DocType: Document Follow,DocType,DocType @@ -3094,8 +3200,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,hodnoty DocType: Workflow State,arrow-up,šipka-nahoru DocType: Dynamic Link,Link Document Type,Typ prepojeného dokumentu apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Pre {0} tabuľku by mal byť aspoň jeden riadok +DocType: Server Script,Server Script,Serverový skript apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Ak chcete nakonfigurovať automatické opakovanie, povoľte možnosť „Povoliť automatické opakovanie“ od {0}." DocType: OAuth Bearer Token,Expires In,V vyprší +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Počet opakovaní sady polí (napr .: ak chcete na snímke 3 zákazníkov, nastavte toto pole na 3. Na snímke sa ako povinná zobrazí iba prvá sada polí)" DocType: DocField,Allow on Submit,Povolit při Odeslání DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Typ výnimky @@ -3105,6 +3213,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,hlavičky apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Pripravované akcie apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Prosím, zadajte hodnoty pre App prístupový kľúč a tajný kľúč App" +DocType: Email Account,Append Emails to Sent Folder,Pripojte e-maily k odoslanému priečinku DocType: Web Form,Accept Payment,prijímame platby apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Vyberte položku zoznamu apps/frappe/frappe/config/core.py,A log of request errors,Protokol o požiadavke chýb @@ -3123,7 +3232,7 @@ DocType: Translation,Contributed,Prispel apps/frappe/frappe/config/customization.py,Form Customization,Prispôsobenie formulára apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Žiadne aktívne relácie DocType: Web Form,Route to Success Link,Cesta k úspešnému odkazu -DocType: Top Bar Item,Right,V pravo +DocType: Onboarding Slide Field,Right,V pravo apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Žiadne nadchádzajúce udalosti DocType: User,User Type,Typ uživatele DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3141,6 +3250,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prosím skúste apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',Adresa URL musí začínať reťazcom „http: //“ alebo „https: //“ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Variant 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,To nie je možné vrátiť späť DocType: Workflow State,Edit,Upraviť DocType: Website Settings,Chat Operators,Chat Operators DocType: S3 Backup Settings,ca-central-1,ca-stredná-1 @@ -3152,7 +3262,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Prehľad s viac ako 10 stĺpcami vyzerá lepšie v režime na šírku. apps/frappe/frappe/database/database.py,Invalid field name: {0},Neplatný názov poľa: {0} DocType: Milestone,Milestone,Mezník @@ -3161,7 +3270,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Prejsť na {0} apps/frappe/frappe/email/queue.py,Emails are muted,Emaily jsou potlačené (muted) apps/frappe/frappe/config/integrations.py,Google Services,Služby Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,Pred 1 týždne +DocType: Onboarding Slide,Slide Description,Popis snímky DocType: Communication,Error,Chyba apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Najprv nastavte správu DocType: Auto Repeat,End Date,Datum ukončení @@ -3182,10 +3291,12 @@ DocType: Footer Item,Group Label,skupina Label DocType: Kanban Board,Kanban Board,Kanban Stena apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google boli nakonfigurované. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Bude exportovaný 1 záznam +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,S používateľom nie je spojený žiadny e-mailový účet. Pridajte účet do sekcie Používateľ> Doručená pošta. DocType: DocField,Report Hide,Skrýt výpis apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Stromové zobrazenie nie je k dispozícii pre {0} DocType: DocType,Restrict To Domain,Obmedziť na doménu DocType: Domain,Domain,Doména +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Neplatná adresa URL súboru. Obráťte sa na správcu systému. DocType: Custom Field,Label Help,Nápomoc k popisu DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Termíny sú často ľahko uhádnuť. @@ -3210,6 +3321,7 @@ DocType: Workflow State,hand-left,hand-left DocType: Data Import,If you are updating/overwriting already created records.,Ak aktualizujete / prepíšete už vytvorené záznamy. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Je Global DocType: Email Account,Use SSL,Použít SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument sa nedá správne priradiť apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Neplatný výraz "depends_on" @@ -3226,6 +3338,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Naposledy aktualizované apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pre typ dokumentu DocType: Workflow State,arrow-right,šipka-vpravo +DocType: Server Script,API Method,Metóda API DocType: Workflow State,Workflow state represents the current state of a document.,Stav toku představuje aktuální stav dokumentu DocType: Letter Head,Letter Head Based On,Hlavica na základe apps/frappe/frappe/utils/oauth.py,Token is missing,Token chýba @@ -3265,6 +3378,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Tlačiť položku kompaktne DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,presmerovanie URL +DocType: Onboarding Slide Field,Placeholder,zástupný DocType: SMS Settings,Enter url parameter for receiver nos,Zadejte url parametr pro přijímače nos DocType: Chat Profile,Online,online DocType: Email Account,Always use Account's Name as Sender's Name,Ako meno odosielateľa používajte vždy názov účtu @@ -3274,7 +3388,6 @@ DocType: Workflow State,Home,Domov DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,Používateľ sa môže prihlásiť pomocou ID e-mailu alebo User Name DocType: Workflow State,question-sign,question-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je zakázaný apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Pole "trasa" je povinná pre webové zobrazenia apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Vložiť stĺpec pred {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Užívateľovi z tohto poľa budú pridelené body @@ -3299,6 +3412,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ak majiteľom DocType: Data Migration Mapping,Push,TAM apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Sem presuňte súbory DocType: OAuth Authorization Code,Expiration time,doba expirácie +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Otvorte Dokumenty DocType: Web Page,Website Sidebar,Webové stránky Sidebar DocType: Web Form,Show Sidebar,show Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Musíte byť prihlásený pre prístup k tejto {0}. @@ -3314,6 +3428,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globálne sk DocType: Desktop Icon,Page,Stránka apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Nemožno nájsť {0} v {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Mená a priezviská samy o sebe sú ľahko uhádnuť. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument bol premenovaný z {0} na {1} apps/frappe/frappe/config/website.py,Knowledge Base,Vedomostná základňa DocType: Workflow State,briefcase,kufřík apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Hodnota {0} nemôže byť zmenená @@ -3350,6 +3465,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Formát tlače apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Prepnúť zobrazenie mriežky apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Prejdite na ďalší záznam +DocType: System Settings,Time Format,Formát času apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Neplatná poverenia platobná brána DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Toto je súbor šablóny vygenerovaný iba s riadkami s nejakou chybou. Tento súbor by ste mali použiť na opravu a import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nastavit oprávnenia na typy dokumentov a role @@ -3393,12 +3509,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Odpoveď apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Stránky v Desk (držiaky miesto) DocType: DocField,Collapsible Depends On,Skladacie závisí na DocType: Print Style,Print Style Name,Názov štýlu tlače +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Na vytvorenie tabuľky dashboardov je potrebné pole Group By DocType: Print Settings,Allow page break inside tables,Dovoliť koniec stránky vnútri tabuľky DocType: Email Account,SMTP Server,SMTP server DocType: Print Format,Print Format Help,Nápověda formát tisku apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} miestnosť musí mať najviac jedného používateľa. DocType: DocType,Beta,beta DocType: Dashboard Chart,Count,počítať +DocType: Dashboard Chart,Group By Type,Zoskupiť podľa typu apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nový komentár k {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovená {0} ako {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Pakliže aktualizujete, zvolte prosím ""Přepsat"" jinak nebudou existující řádky vymazány." @@ -3409,8 +3527,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Užívate DocType: Web Form,Web Form,Webový formulář apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dátum {0} musí byť vo formáte: {1} DocType: About Us Settings,Org History Heading,Záhlaví historie organizace +DocType: Scheduled Job Type,Scheduled Job Type,Plánovaný typ úlohy DocType: Print Settings,Allow Print for Cancelled,Umožňujú tlač pre Vypustený DocType: Communication,Integrations can use this field to set email delivery status,Integrácia môžete použiť toto pole na nastavenie stavu doručenia e-mailu +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nemáte oprávnenie na zrušenie všetkých prepojených dokumentov. DocType: Web Form,Web Page Link Text,Text odkazu www stránky DocType: Page,System Page,Systémová stránka DocType: Page,System Page,Systémová stránka @@ -3418,6 +3538,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Prispôsobenia pre <b>{0} boli</b> exportované do: <br> {1} DocType: Website Settings,Include Search in Top Bar,Zaradiť vyhľadávanie do hornej lišty +DocType: Scheduled Job Type,Daily Long,Denne dlho DocType: GSuite Settings,Allow GSuite access,Povoliť prístup GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Pomenovanie @@ -3521,6 +3642,7 @@ DocType: Notification,Send days before or after the reference date,Poslať dní DocType: User,Allow user to login only after this hour (0-24),Povolit uživateli se přihlásit pouze po této hodině (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Postupne ich prideľujte DocType: Integration Request,Subscription Notification,Upozornenie na odber +DocType: Customize Form Field, Allow in Quick Entry ,Povoliť v rýchlom zadaní apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,alebo pripojte a DocType: Auto Repeat,Start Date,Dátum začiatku apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Hodnota @@ -3535,6 +3657,7 @@ DocType: Google Drive,Backup Folder ID,ID záložnej zložky apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Není v režimu pro vývojáře! Nachází se v site_config.json nebo učinit 'custom' DocType. DocType: Workflow State,globe,glóbus DocType: System Settings,dd.mm.yyyy,dd.mm.rrrr +DocType: Onboarding Slide Help Link,Video,video DocType: Assignment Rule,Priority,Priorita DocType: Email Queue,Unsubscribe Param,aktuality Param DocType: DocType,Hide Sidebar and Menu,Skryť bočný panel a ponuku @@ -3546,6 +3669,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Umožniť import (pomocou I apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,staršie DocType: DocField,Float,Desetinné číslo DocType: Print Settings,Page Settings,Nastavenia stránky +DocType: Notification Settings,Notification Settings,Nastavenia upozornení apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Úsporné ... apps/frappe/frappe/www/update-password.html,Invalid Password,nesprávne heslo apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} záznam z {1} bol úspešne importovaný. @@ -3561,6 +3685,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Obrázok hlavičky listu DocType: Address,Party GSTIN,Strana GSTIN +DocType: Scheduled Job Type,Cron Format,Formát Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Správa DocType: SMS Settings,Use POST,Použite POST DocType: Communication,SMS,SMS @@ -3606,18 +3731,20 @@ DocType: Workflow,Allow approval for creator of the document,Povoliť schváleni apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Uložiť prehľad DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Akcia servera apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Správca prístupné {0} na {1} pomocou IP adresy {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Rodičovské pole musí byť platným názvom poľa apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Nepodarilo sa pri zmene predplatného DocType: LDAP Settings,LDAP Group Field,Pole skupiny LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Dokument podpísaný notifikáciou apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Je rovno apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Neplatný formáte CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Chyba pri pripájaní k aplikácii QZ Tray ... <br><br> Aby ste mohli používať funkciu Raw Print, musíte mať nainštalovanú a spustenú aplikáciu QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Kliknutím sem prevezmete a nainštalujete zásobník QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Kliknutím sem sa dozviete viac o surovej tlači</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Nastaviť počet záloh DocType: DocField,Do not allow user to change after set the first time,Nepovolit uživateli změnu po prvním nastavení apps/frappe/frappe/utils/data.py,1 year ago,1 rokom +DocType: DocType,Links Section,Odkazy apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Zobraziť denník všetkých udalostí tlače, sťahovania a exportu" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mesiac DocType: Contact,Contact,Kontakt @@ -3644,16 +3771,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Nový email DocType: Custom DocPerm,Export,Exportovat apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Ak chcete používať Kalendár Google, povoľte {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Tiež pridávate pole závislosti na stave {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Úspešne aktualizovaná {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Zásobník QZ zlyhal: DocType: Dropbox Settings,Dropbox Settings,nastavenie Dropbox DocType: About Us Settings,More content for the bottom of the page.,Více obsahu na spodek stránky. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Tento dokument bol vrátený späť apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Zálohovanie Disku Google bolo úspešné. +DocType: Webhook,Naming Series,Číselné rady DocType: Workflow,DocType on which this Workflow is applicable.,DocType na který je aplikovatelný tento tok (workflow). DocType: User,Enabled,Zapnuto apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Nepodarilo sa dokončiť inštaláciu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nové {0}: {1} -DocType: Tag Category,Category Name,Názov kategórie +DocType: Blog Category,Category Name,Názov kategórie apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Na získanie údajov o podradenej tabuľke sa vyžaduje rodič apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importovať Odberatelia DocType: Print Settings,PDF Settings,Nastavenie PDF @@ -3689,6 +3819,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendár apps/frappe/frappe/client.py,No document found for given filters,Pre dané filtre sa nenašiel žiadny dokument apps/frappe/frappe/config/website.py,A user who posts blogs.,"Používateľ, ktorý uverejňuje blogy." +DocType: DocType Action,DocType Action,Akcia DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Iné {0} s názvom {1} už existuje, vyberte iný názov" DocType: DocType,Custom?,Prispôsobené? DocType: Website Settings,Website Theme Image,Internetové stránky Téma Image @@ -3698,6 +3829,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Nepodaril apps/frappe/frappe/config/integrations.py,Backup,Zálohovanie apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Na vytvorenie tabuľky dashboardov je potrebný typ dokumentu DocType: DocField,Read Only,Len na čítanie +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Objednávku razorpay sa nepodarilo vytvoriť apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New Newsletter DocType: Energy Point Log,Energy Point Log,Denník energetických bodov DocType: Print Settings,Send Print as PDF,Odoslať tlač ako PDF @@ -3723,16 +3855,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot apps/frappe/frappe/www/login.html,Or login with,Alebo sa prihláste DocType: Error Snapshot,Locals,Miestne apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Odovzdávané prostredníctvom {0} z {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{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/group_by/group_by.html,Select Group By...,Vyberte skupinu podľa ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} je potrebné DocType: Integration Request,Integration Type,integrácia Type DocType: Newsletter,Send Attachements,odoslať prílohy +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nenašli sa žiadne filtre apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrácia kontaktov Google. DocType: Transaction Log,Transaction Log,Denník transakcií apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Štatistiky založené na výkonnosti za posledný mesiac (od {0} do {1}) DocType: Contact Us Settings,City,Mesto +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Skryť karty pre všetkých používateľov apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Povoľte povoliť automatické opakovanie pre doctype {0} vo formulári Prispôsobiť DocType: DocField,Perm Level,úroveň oprávnenia apps/frappe/frappe/www/confirm_workflow_action.html,View document,Zobraziť dokument @@ -3744,6 +3877,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'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} DocType: Energy Point Log,Appreciation,ocenenie +DocType: Dashboard Chart,Number of Groups,Počet skupín apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,zobraziť zoznam DocType: Workflow,Don't Override Status,nepotlačí Stav apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Hľadaný výraz @@ -3785,7 +3919,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-severozápad-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limit počet záloh DB DocType: Custom DocPerm,Level,Úroveň -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Posledných 30 dní DocType: Custom DocPerm,Report,Report apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Množstvo musí byť väčšia ako 0 ° C. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Pripojené k zásobníku QZ! @@ -3802,6 +3935,7 @@ DocType: S3 Backup Settings,us-west-2,us-západ-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Vyberte podradenú tabuľku apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Spustiť primárnu akciu apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Zmena +DocType: Social Login Key,User ID Property,Vlastnosť ID používateľa DocType: Email Domain,domain name,doménové meno DocType: Contact Email,Contact Email,Kontaktný e-mail DocType: Kanban Board Column,Order,objednať @@ -3824,7 +3958,7 @@ DocType: Contact,Last Name,Priezvisko DocType: Event,Private,Súkromné apps/frappe/frappe/email/doctype/notification/notification.js,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,Vľavo +DocType: Onboarding Slide Field,Left,Vľavo DocType: Event,All Day,Celý den apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Vyzerá to, že niečo, čo je s konfiguráciou platobnú bránu pre tento web v poriadku. Žiadna platba bola vykonaná." DocType: GCalendar Settings,State,Stav @@ -3856,7 +3990,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Nastavenia brány apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text v type dokumentu -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Spustiť testy apps/frappe/frappe/handler.py,Logged Out,Odhlasený apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Viac ... DocType: System Settings,User can login using Email id or Mobile number,Používateľ sa môže prihlásiť pomocou čísla e-mailu alebo mobilného čísla @@ -3873,6 +4006,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,zhrnutie DocType: Event,Event Participants,Účastníci podujatia DocType: Auto Repeat,Frequency,Frekvencia +DocType: Onboarding Slide,Slide Order,Poradie snímok DocType: Custom Field,Insert After,Vložit za DocType: Event,Sync with Google Calendar,Synchronizácia s Kalendárom Google DocType: Access Log,Report Name,Názov reportu @@ -3900,6 +4034,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0} apps/frappe/frappe/config/website.py,Content web page.,Obsah www stránky. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Pridať novú rolu +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Navštívte webovú stránku +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nové priradenie DocType: Google Contacts,Last Sync On,Posledná synchronizácia zapnutá DocType: Deleted Document,Deleted Document,Vymazaný dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Jejda! Něco nevyšlo dobře :( @@ -3910,7 +4046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,krajina apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Rozšírenie na strane klienta skriptu v jazyku JavaScript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Záznamy pre nasledujúce doctypes budú filtrované -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Plánovač neaktívny +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Plánovač neaktívny DocType: Blog Settings,Blog Introduction,Představení blogu DocType: Global Search Settings,Search Priorities,Priority vyhľadávania DocType: Address,Office,Kancelář @@ -3920,13 +4056,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Odkaz na informačný panel DocType: User,Email Settings,Nastavenia emailu apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Drop sem DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ak je povolený, používateľ sa môže prihlásiť z ľubovoľnej adresy IP pomocou funkcie Two Factor Auth, čo sa dá nastaviť aj pre všetkých používateľov v systémových nastaveniach" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Nastavenia tlačiarne ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Zadajte svoje heslo na pokračovanie apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Zadajte svoje heslo na pokračovanie apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ma apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nie je platný stav apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Použiť na všetky typy dokumentov -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizácia bodu energie +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Aktualizácia bodu energie +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Spúšťajte úlohy iba denne, ak sú neaktívne (dni)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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} '" DocType: Chat Message,Room Type,Typ izby DocType: Data Import Beta,Import Log Preview,Import protokolu ukážok @@ -3935,6 +4071,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,Vytvorenie a mapovanie používateľov LDAP apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Dnešné udalosti apps/frappe/frappe/core/doctype/user/user.py,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. ,Usage Info,využitie Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Zobraziť klávesové skratky @@ -3951,6 +4088,7 @@ DocType: DocField,Unique,Jedinečný apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ocenené dňa {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Čiastočný úspech DocType: Email Account,Service,Služba +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ DocType: File,File Name,Názov súboru apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nenájdené {0} pre {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3964,6 +4102,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Dokonči DocType: GCalendar Settings,Enable,Zapnout DocType: Google Maps Settings,Home Address,Adresa bydliska apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Môžete nahrať najviac 5000 záznamov naraz. (niekedy i menej) +DocType: Report,"output in the form of `data = [columns, result]`","výstup vo forme `data = [stĺpce, výsledok ]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Uplatniteľné typy dokladov apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nastavte pravidlá pre priradenia používateľov. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedostatočné povolenie pre {0} @@ -3981,7 +4120,6 @@ DocType: Communication,To and CC,To a CC DocType: SMS Settings,Static Parameters,Statické parametry DocType: Chat Message,Room,izbu apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aktualizovaný na {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Úlohy na pozadí nie sú spustené. Obráťte sa na správcu DocType: Portal Settings,Custom Menu Items,Položky menu Custom apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Všetky obrázky pripojené k prezentácii webových stránok by mali byť verejné DocType: Workflow State,chevron-right,chevron-right @@ -3996,11 +4134,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Vybraté sú {0} hodnoty DocType: DocType,Allow Auto Repeat,Povoliť automatické opakovanie apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Žiadne hodnoty na zobrazenie +DocType: DocType,URL for documentation or help,URL pre dokumentáciu alebo pomoc DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Šablóna e-mailu apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Úspešne aktualizovaný záznam {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Používateľ {0} nemá oprávnenie na prístup k typu prostredníctvom oprávnenia role pre dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Oboje, prihlasovacie meno a heslo je vyžadované" +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,nech \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Prosím kliknite na obnoviť pre získanie najnovšej verzie dokumentu. DocType: User,Security Settings,Bezpečnostné nastavenia apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Pridať stĺpec @@ -4010,6 +4150,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Nájdete v prílohe {0}: {1} DocType: Web Page,Set Meta Tags,Nastavte značky meta +DocType: Email Account,Use SSL for Outgoing,Na odosielanie použite SSL 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: S3 Backup Settings,Backup Limit,Záložný limit DocType: Dashboard Chart,Line,riadok @@ -4042,4 +4183,3 @@ DocType: DocField,Ignore User Permissions,Ignorovat uživatelská oprávnění apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Úspešne uložené apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Požiadajte správcu overiť vaše znamenie-up DocType: Domain Settings,Active Domains,Aktívne domény -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,show Log diff --git a/frappe/translations/sl.csv b/frappe/translations/sl.csv index 8b8548055a..5043a1aeb2 100644 --- a/frappe/translations/sl.csv +++ b/frappe/translations/sl.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Izberite Znesek polje. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Nalaganje datoteke za uvoz ... DocType: Assignment Rule,Last User,Zadnji uporabnik -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nova naloga, {0}, je bila dodeljena vam jo {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Privzete nastavitve seje shranjene apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Ponovno naloži datoteko DocType: Email Queue,Email Queue records.,Email Queue evidence. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Drevo DocType: User,User Emails,Uporabniške E-pošta DocType: User,Username,Uporabniško ime apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Uvoz Zip +DocType: Scheduled Job Type,Create Log,Ustvari dnevnik apps/frappe/frappe/model/base_document.py,Value too big,Vrednost prevelika DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script test @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Mesečni DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Omogoči Dohodni apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nevarnost -DocType: Address,Email Address,Email naslov +apps/frappe/frappe/www/login.py,Email Address,Email naslov DocType: Workflow State,th-large,th-velika DocType: Communication,Unread Notification Sent,Neprebrano Obvestilo Poslano apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Izvoz ni dovoljeno. Morate {0} vlogo izvoz. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Prek DocType: DocType,Is Published Field,Je Objavljeno Polje DocType: GCalendar Settings,GCalendar Settings,Nastavitve GCalendar DocType: Email Group,Email Group,Email Group +apps/frappe/frappe/__init__.py,Only for {},Samo za {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Koledar - dogodka {0} iz Google Koledarja ni bilo mogoče izbrisati, koda napake {1}." DocType: Event,Pulled from Google Calendar,Potegnjeno iz Google Koledarja DocType: Note,Seen By,Videno od apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj več -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Pridobili ste nekaj energijskih točk apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ni veljavna uporabniška slika. DocType: Energy Point Log,Reverted,Odpravljeno DocType: Success Action,First Success Message,Prvo sporočilo o uspehu @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,"Ni všeč," apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nepravilno vrednost: {0} mora biti {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Lastnosti sprememba polj (hide, samo za branje, dovoljenje itd)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cenite +DocType: Notification Settings,Document Share,Skupna raba dokumentov DocType: Workflow State,lock,zaklepanje apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nastavitve Kontakt strani. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator prijavljeni @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Če je omogočen, je dokument označen kot viden, ko ga uporabnik prvič odpre" DocType: Auto Repeat,Repeat on Day,Ponovi na dan DocType: DocField,Color,Barva +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Označi vse kot prebrano DocType: Data Migration Run,Log,dnevnik DocType: Workflow State,indent-right,alinea-desno DocType: Has Role,Has Role,Ima vlogo @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Pokaži sled DocType: DocType,Default Print Format,Privzeto Print Format DocType: Workflow State,Tags,Oznake +DocType: Onboarding Slide,Slide Type,Vrsta diapozitiva apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Brez: Konec Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polje ne more biti edinstveno v {1}, ker obstajajo podvojene vrednosti" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Vrste dokumentov @@ -136,7 +139,6 @@ DocType: Language,Guest,Gost DocType: DocType,Title Field,Naslov Field DocType: Error Log,Error Log,Error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Neveljaven URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Zadnjih 7 dni apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Ponavljanja kot ""abcabcabc"" je le nekoliko težje uganiti kot ""abc""" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Če menite, da je nedovoljena, prosimo spremenite skrbniško geslo." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Client apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Izberite stolpec apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Ta formular je bil spremenjen, ko ste ga naložili" DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Dnevnik obvestil DocType: System Settings,"If not set, the currency precision will depend on number format","Če ni nastavljeno, bo natančnost valute odvisna od oblike števil" DocType: System Settings,"If not set, the currency precision will depend on number format","Če ni nastavljeno, bo natančnost valute odvisna od oblike števil" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Odprite Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Em apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Pošlji DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ni mogoče združiti -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ni datoteka zip DocType: Global Search DocType,Global Search DocType,DocType globalnega iskanja DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Email Sent? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart apps/frappe/frappe/desk/form/save.py,Did not cancel,Ni preklicati DocType: Social Login Key,Client Information,Informacije o strankah +DocType: Energy Point Rule,Apply this rule only once per document,To pravilo uporabite samo enkrat na dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Samo za branje je odvisno apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Prijavljen kot gost ali skrbnik DocType: Email Account,UNSEEN,Unseen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Upravitelj datotek @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Razlog 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Brez aktivnosti +DocType: Server Script,Script Manager,Script Manager +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Brez aktivnosti apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacije tretjih oseb apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Danes ni dogodkov apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ne morete sami dati ocene apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mora biti predložen za izbrani dokument o dogodkih DocType: Workflow State,circle-arrow-up,Krog-arrow-up @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ni dovoljeno za {0}: {1}. Polje z omejitvami: {2} 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,You are not allowed to delete a standard Website Theme,Niste dovoljeno izbrisati standardnem spletišču Theme +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Ustvari svoj prvi {0} DocType: Data Import,Log Details,Podrobnosti dnevnika DocType: Workflow Transition,Example,Primer DocType: Webhook Header,Webhook Header,Glava spletnega ure @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Ozadje klepeta apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Označi kot Prebrano apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Posodabljanje {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Drsnik na krovu <b>{0}</b> z istim vrstnim redom diapozitivov že obstaja apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Onemogoči Poročilo DocType: Translation,Contributed Translation Doctype Name,Ime prispevanega prevodnega dotipa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodite obrazec DocType: PayPal Settings,Redirect To,Preusmeritev Da DocType: Data Migration Mapping,Pull,Potegni DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript obliko: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Notranji zapis delnic dokum DocType: Energy Point Settings,Review Levels,Pregled ravni DocType: Workflow State,Comment,Komentar DocType: Data Migration Plan,Postprocess Method,Postprocesna metoda +DocType: DocType Action,Action Type,Vrsta akcije apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fotografirajte DocType: Assignment Rule,Round Robin,Okrogli robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Lahko spremenite predložil listine, ki so jih odpovedi in nato njihovo spremembo." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Shrani kot DocType: Comment,Seen,Seen apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Prikaži več podrobnosti +DocType: Server Script,Before Submit,Pred oddajo 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,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,Archive,Arhiv @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Dostop Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Napačna polja <b>{0}</b> v add_fetch konfiguraciji skripta po meri apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Izberite Googlove stike, s katerimi naj bo stik sinhroniziran." DocType: Web Page,Main Section (HTML),Glavni razdelek (HTML) +DocType: Scheduled Job Type,Annual,Letno DocType: Workflow State,headphones,slušalke apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Geslo je potrebno ali izberite Čakanje geslo DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,npr replies@yourcomany.com. Vsi odgovori bodo prišli do tega Prejeto. DocType: Slack Webhook URL,Slack Webhook URL,Slack spletni naslov URL-ja +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Določi vrstni red diapozitiva v čarovniku. Če diapozitiva ne bo prikazano, je treba nastaviti na 0." DocType: Data Migration Run,Current Mapping,Trenutna kartiranje apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Veljaven email in ime obvezna apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Naj bodo vse priloge zasebne @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Prehodna pravila apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Prikažejo se samo prve {0} vrstice v predogledu apps/frappe/frappe/core/doctype/report/report.js,Example:,Primer: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Omejitve DocType: Workflow,Defines workflow states and rules for a document.,Definira države potek dela in pravila za dokument. DocType: Workflow State,Filter,Filter apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Za več informacij preverite dnevnik napak: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Job apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} odjavljeni: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Informacije apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Ne morem nastaviti če ni za vročanje DocType: Transaction Log,Row Index,Indeks vrstice DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,gumb Pomoč DocType: Kanban Board Column,purple,vijolična DocType: About Us Settings,Team Members,Člani ekipe +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Začela bo redna opravila le enkrat na dan za neaktivna spletna mesta. Privzeto 4 dni, če je nastavljeno na 0." DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Načrtovano delovno mesto DocType: Custom DocPerm,Permissions,Dovoljenja apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks za notranje povezovanje DocType: Dropbox Settings,Allow Dropbox Access,Dovoli Dropbox dostop @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skeni DocType: Email Flag Queue,Email Flag Queue,E-pošta Flag čakalne vrste DocType: Access Log,Columns / Fields,Stolpci / polja apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets za oblike tiskanja +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Za izdelavo grafikona nadzorne plošče je potrebno polje zbrano funkcijo apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ne morejo identificirati odprta {0}. Poskusi kaj drugega. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,je bil predložen Vaše informacije apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Uporabnik {0} ni mogoče izbrisati @@ -417,11 +436,12 @@ DocType: Property Setter,Field Name,Ime polja DocType: Assignment Rule,Assign To Users,Dodelite uporabnikom apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ali apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Ime modula ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Naprej +DocType: Onboarding Slide,Continue,Naprej apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integracija je onemogočena DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,Potrdilo apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Preverjanje ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Vaša naloga dne {0} {1} je bila odstranjena apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Prvi stolpec podatkov mora biti prazna. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Prikaži vse različice apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Prikaži komentar @@ -431,12 +451,14 @@ DocType: User,Restrict IP,Omeji IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Nadzorna plošča apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,"Ne morem poslati e-pošto, v tem času" apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Koledar - Dogodka {0} v Google Koledarju ni bilo mogoče posodobiti, koda napake {1}." +DocType: Notification Log,Email Content,Vsebina e-pošte apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Iskanje ali vnesite ukaz DocType: Activity Log,Timeline Name,Časovnica Ime apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Samo eno {0} lahko nastavite kot primarno. DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Prodaja Master Manager +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Za delovanje aplikacije morate omogočiti JavaScript. DocType: User Permission,For Value,Za vrednost DocType: Event,Google Calendar ID,ID Google Koledarja apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Polje z imenom srednjega imena LDA apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: GCalendar Account,Allow GCalendar Access,Dovoli dostop do GCalendarja apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je obvezno polje +DocType: DocType,Documentation Link,Dokumentacijska povezava apps/frappe/frappe/templates/includes/login/login.js,Login token required,Prijava žetona je obvezna apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mesečna uvrstitev: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Izberite več elementov seznama @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Datoteka URL DocType: Version,Table HTML,Tabela HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Dodaj naročnikov +DocType: Notification Log,Energy Point,Energetska točka apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Prihajajoči dogodki za danes DocType: Google Calendar,Push to Google Calendar,Odprite Google Koledar DocType: Notification Recipient,Email By Document Field,Email z dokumentom Field @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Gremo DocType: Currency,Fraction Units,Frakcija enote apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} od {1} do {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Označi kot Končano DocType: Chat Message,Type,Tip DocType: Google Settings,OAuth Client ID,ID stranke OAuth DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Nazaj na Desk DocType: Web Form,Amount Based On Field,"Znesek, ki temelji na terenskem" +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nima sledljivih različic. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Uporabnik je obvezna za delnico DocType: DocField,Hidden,Skrito DocType: Web Form,Allow Incomplete Forms,Dovoli Nepopolne Obrazci @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Preverite e-pošto za potrditev apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Kratno ne more biti na koncu obliki DocType: Communication,Bounced,Odskočila +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,od DocType: Deleted Document,Deleted Name,izbrisan Ime apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistemske in uporabniki spletne strani DocType: Workflow Document State,Doc Status,Doc Status @@ -526,6 +551,7 @@ DocType: Language,Language Code,Koda Jezika DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Opomba: privzeto so poslana e-poštna sporočila za neuspele varnostne kopije. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Dodaj filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS poslan na naslednjih številkah: {0} +DocType: Notification Settings,Assignments,Naloge apps/frappe/frappe/utils/data.py,{0} and {1},{0} in {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Začnite pogovor. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Vedno dodati "osnutek", razdelek za tiskanje osnutkov dokumentov" @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,Začni načrtovanje zemljevido apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pošta je bila označena kot spam DocType: Comment,Website Manager,Spletna stran Manager apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Prenos datoteke je bil prekinjen. Prosim poskusite ponovno. +DocType: Data Import Beta,Show Failed Logs,Prikaži neuspele dnevnike apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Prevodi apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Izbrali ste Osnutek ali Preklicane dokumente apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} je nastavljen na {1} za {2} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokument v vrsti DocType: GSuite Templates,Destination ID,destinacija ID DocType: Desktop Icon,List,Seznam DocType: Activity Log,Link Name,Link Name +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Še niste \ DocType: System Settings,mm/dd/yyyy,mm / dd / llll +DocType: Onboarding Slide,Onboarding Slide,Drsnik na krovu apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neveljavno geslo: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neveljavno geslo: DocType: Print Settings,Send document web view link in email,Pošlji dokument web pogled povezavo v e-pošti @@ -603,6 +632,7 @@ DocType: Kanban Board Column,darkgrey,temno siva apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Uspešna: {0} do {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Spusti +DocType: Dashboard Chart,Aggregate Function Based On,Funkcija strnjena na osnovi apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Prosimo podvojite dokument da ustvarite spremembe apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Pritisnite Enter za shranjevanje apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Generacija PDF propadla zaradi napačno sliko povezave @@ -616,7 +646,9 @@ DocType: Notification,Days Before,Dni pred apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dnevni dogodki naj bi se končali na isti dan. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Uredi... DocType: Workflow State,volume-down,Obseg navzdol +DocType: Onboarding Slide,Help Links,Povezave pomoči apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Dostop ni dovoljen s tega naslova IP +DocType: Notification Settings,Enable Email Notifications,Omogoči obvestila po e-pošti apps/frappe/frappe/desk/reportview.py,No Tags,Ni oznak DocType: Email Account,Send Notification to,Pošlji obvestilo na DocType: DocField,Collapsible,Zložljiva @@ -645,6 +677,7 @@ DocType: Google Drive,Last Backup On,Zadnja varnostna kopija vklopljena DocType: Customize Form Field,Customize Form Field,Prilagodite Form Field DocType: Energy Point Rule,For Document Event,Za Document Dogodek DocType: Website Settings,Chat Room Name,Ime sobe +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Nespremenjena DocType: OAuth Client,Grant Type,Vrsta Grant apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Preverite, kateri dokumenti so berljive uporabnik" DocType: Deleted Document,Hub Sync ID,Sync ID vozlišča @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,upor DocType: Auto Repeat,Quarterly,Četrtletno apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Ves čas apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status nezakonite dokumentacije za {0} DocType: Email Account,Enable Auto Reply,Omogoči Auto Odgovori apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ni videl @@ -664,6 +698,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Sporo DocType: Email Account,Notify if unreplied,Obvesti če Neodgovorjeni apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Preglejte kodo QR in vnesite prikazano kodo. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Omogoči Gradiente +DocType: Scheduled Job Type,Hourly Long,Vsako uro dolgo DocType: System Settings,Minimum Password Score,Najnižja ocena Geslo DocType: DocType,Fields,Polja DocType: System Settings,Your organization name and address for the email footer.,Vaše ime in naslov organizacije za email nogi. @@ -671,11 +706,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Tabe apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 varnostno kopiranje končano! apps/frappe/frappe/config/desktop.py,Developer,Razvijalec apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Ustvarjeno +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Če ga želite omogočiti, sledite navodilom na naslednji povezavi: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} v vrstici {1} ne more imeti URL in podrejene elemente apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Za naslednje tabele mora biti vsaj ena vrstica: {0} DocType: Print Format,Default Print Language,Privzeti jezik tiskanja apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predniki Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} ni mogoče izbrisati +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Brez neuspešnih dnevnikov apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Ni komentarjev apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Prosimo, da nastavite SMS, preden ga nastavite kot način overjanja, prek nastavitev SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Oba DOCTYPE in Ime potrebna @@ -699,6 +736,7 @@ DocType: Website Settings,Footer Items,Noga Items apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meni DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Dnevno +DocType: Onboarding Slide,Max Count,Maks Število apps/frappe/frappe/config/users_and_permissions.py,User Roles,Uporabniške Vloge DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Nepremičnine Setter preglasi standardni DOCTYPE ali Field nepremičnine apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ne more posodobitev: Napačen / potekel link. @@ -717,6 +755,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,trdi disk DocType: Integration Request,Host,Gostitelj DocType: Data Import Beta,Import File,Uvozi datoteko +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Napaka predloge apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Stolpec <b>{0}</b> že obstaja. DocType: ToDo,High,Visoka apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nov dogodek @@ -732,6 +771,7 @@ DocType: Web Form Field,Show in filter,Prikaži v filtru DocType: Address,Daman and Diu,Daman in Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Osebni +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Nastavitve surovega tiskanja ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Za podrobnosti glejte https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Prikaži kot cc @@ -741,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Vzemi video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Uvodne informacije za Kontakt Stran DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Preklic dokumentov DocType: User,Send Notifications for Email threads,Pošlji obvestila za teme e-pošte apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ni v načinu za razvijalce @@ -748,7 +789,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Varnostno k DocType: DocField,In Global Search,Globalno iskanje DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alinea-levo -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} leto nazaj apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,To je tvegano izbrisati to datoteko: {0}. Obrnite se na upravitelja sistema. DocType: Currency,Currency Name,Valuta Ime apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ni e-poštna sporočila @@ -763,11 +803,13 @@ DocType: Energy Point Rule,User Field,Uporabniško polje DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} že odjavljen za {1} {2} +DocType: Scheduled Job Type,Stopped,Ustavljen apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Niso odpravili apps/frappe/frappe/desk/like.py,Liked,Všeč apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Pošlji Zdaj apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standardna DOCTYPE ne more imeti privzeti format tiskanja, uporabite Prilagodi obrazec" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standardna DOCTYPE ne more imeti privzeti format tiskanja, uporabite Prilagodi obrazec" +DocType: Server Script,Allow Guest,Dovoli gost DocType: Report,Query,Poizvedba DocType: Customize Form,Sort Order,Sort Order apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"V pogledu seznama" ni dovoljen za tip {0} v vrstici {1} @@ -789,10 +831,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Dve metodi za avtentifikacijo faktorjev apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprej nastavite ime in shranite zapis. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Zapisi +DocType: DocType Link,Link Fieldname,Ime polja povezave apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delijo z {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Odjava DocType: View Log,Reference Name,Referenca Ime apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Spremeni uporabnika +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Najprej apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Posodobi prevode DocType: Error Snapshot,Exception,Izjema DocType: Email Account,Use IMAP,Uporaba IMAP @@ -807,6 +851,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Pravila, ki določajo prehod države v delovni proces." DocType: File,Folder,Mapa DocType: Website Route Meta,Website Route Meta,Spletna stran Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Drsno polje na krovu DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Upravljalec glasil apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Možnost 1 @@ -833,7 +878,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nas apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurirajte grafikone DocType: User,Last IP,Zadnji IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Prosimo, dodajte predmet vašega e-poštnega naslova" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Nov dokument {0} je bil v skupni rabi z vami {1}. DocType: Data Migration Connector,Data Migration Connector,Konektor za prenos podatkov apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vrnjeno {1} DocType: Email Account,Track Email Status,Sledi stanju e-pošte @@ -886,6 +930,7 @@ DocType: Email Account,Default Outgoing,Privzeto Odhodni DocType: Workflow State,play,igrajo apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Kliknite na spodnjo povezavo, da dokončate vašo registracijo in nastavite novo geslo" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Ni dodala +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} pridobil {1} točke za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ni E-poštni računi Namenski DocType: S3 Backup Settings,eu-west-2,eu-zahod-2 DocType: Contact Us Settings,Contact Us Settings,Nastavitve kontakta @@ -893,6 +938,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Iskanje . DocType: Workflow State,text-width,text-širina apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Največja Limit Attachment za ta zapis je dosegel. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Iskanje po imenu datoteke ali končnici +DocType: Onboarding Slide,Slide Title,Naslov diapozitiva DocType: Notification,View Properties (via Customize Form),Poglejte nepremičnine (via Prilagajanje obliki) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Kliknite datoteko, da jo izberete." DocType: Note Seen By,Note Seen By,Opomba vidijo @@ -919,13 +965,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL za skupno rabo DocType: System Settings,Allow Consecutive Login Attempts ,Dovoli zaporedne poskuse prijave apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Pri plačilnem postopku je prišlo do napake. Pišite nam. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Če je vrsta diapozitiva Ustvari ali Nastavitve, mora biti v datoteki {ref_doctype} .py, ki jo je treba izvesti po končanem diapozitivu, obstajati metoda 'create_onboarding_docs'." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dni nazaj DocType: Email Account,Awaiting Password,Čakanje geslo DocType: Address,Address Line 1,Naslov Line 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Ni potomci DocType: Contact,Company Name,ime podjetja DocType: Custom DocPerm,Role,Vloga -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Nastavitve ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,v vaš brskalnik apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Snemalnik @@ -985,6 +1031,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Sledite, če je prejemnik odprl vaš e-poštni naslov. <br> Opomba: če pošiljate več prejemnikom, četudi 1 prejemnik prebere e-poštno sporočilo, se bo štelo za »odprto«," apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Manjkajoče vrednosti Obvezno apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Dovoli dostop do Google Stikov +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Omejeno DocType: Data Migration Connector,Frappe,frape apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Označi kot neprebrano DocType: Activity Log,Operation,Delovanje @@ -1038,6 +1085,7 @@ DocType: Web Form,Allow Print,Dovoli Natisni DocType: Communication,Clicked,Kliknil apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Brez spremljanja apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},"Ne dovolite, da '{0}' {1}" +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavite privzeti e-poštni račun iz programa Setup> Email> Email account apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Načrtovano za pošiljanje DocType: DocType,Track Seen,Track Seen DocType: Dropbox Settings,File Backup,Varnostno kopiranje datotek @@ -1046,12 +1094,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,"Ni {0} za pr apps/frappe/frappe/config/customization.py,Add custom forms.,Dodaj oblike po meri. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} v {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,predložen ta dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitev> Uporabniška dovoljenja apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistem ponuja veliko vnaprej določeno vlogo. Dodate lahko nove vloge za nastavitev plemenitejše dovoljenja. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Ime sprožilca -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domene +DocType: Onboarding Slide,Domains,Domene DocType: Blog Category,Blog Category,Blog kategorije apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Ne more karto, ker naslednji pogoj ne:" DocType: Role Permission for Page and Report,Roles HTML,Vloge HTML @@ -1091,7 +1138,6 @@ DocType: Assignment Rule Day,Saturday,Sobota DocType: User,Represents a User in the system.,Predstavlja uporabnik v sistemu. DocType: List View Setting,Disable Auto Refresh,Onemogoči samodejno osvežitev DocType: Comment,Label,Label -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Naloga {0}, ki jo dodeli {1}, je bila zaprta." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Prosimo, da zaprete to okno" DocType: Print Format,Print Format Type,Print Vrsta Format DocType: Newsletter,A Lead with this Email Address should exist,Sled s tem e-poštnim naslom bi morala že obstajati @@ -1101,12 +1147,14 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zahtevajte potekla apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Omogoči / onemogoči domene DocType: Role Permission for Page and Report,Allow Roles,Dovoli vlog +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} uvoženih zapisov od {1} uspešno. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Preprosta ekspresija Python-a, primer: stanje v ("Neveljavno")" DocType: User,Last Active,Zadnja aktivnost DocType: Email Account,SMTP Settings for outgoing emails,Nastavitve SMTP za odhodne e-pošte apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izberi DocType: Data Export,Filter List,Seznam filtrov DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Odgovori Sporočilo DocType: Data Migration Mapping,Condition,Pogoj apps/frappe/frappe/utils/data.py,{0} hours ago,{0} urami @@ -1125,12 +1173,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Znanje Osnovna Contributor DocType: Communication,Sent Read Receipt,Poslano Preberite Prejem DocType: Email Queue,Unsubscribe Method,Odjava Metoda +DocType: Onboarding Slide,Add More Button,Dodaj več gumba DocType: GSuite Templates,Related DocType,Podobni DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Uredite dodati vsebino apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,izberite jezik apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Podatki o kartici apps/frappe/frappe/__init__.py,No permission for {0},Ni dovoljenja za {0} DocType: DocType,Advanced,Napredno +DocType: Onboarding Slide,Slide Image Source,Vir slike slide apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Zdi ključ API ali API Secret je narobe !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Reference: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,gospa @@ -1147,6 +1197,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Uporabnik ne more ustvariti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspešno končano apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dostop Dropbox je odobril! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,"Ali ste prepričani, da želite {0} združiti z {1}?" DocType: Customize Form,Enter Form Type,Vnesite Form Type DocType: Google Drive,Authorize Google Drive Access,Pooblastite dostop do Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Manjka parameter Ime kanala Kanban @@ -1156,7 +1207,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuščanje DOCTYPE, DOCTYPE. Bodi previden!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Prilagojene Formati za tiskanje, e-pošte" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Vsota {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Posodobljeno Za novo različico DocType: Custom Field,Depends On,Odvisno od DocType: Kanban Board Column,Green,Green DocType: Custom DocPerm,Additional Permissions,Dodatne Dovoljenja @@ -1184,6 +1234,7 @@ DocType: Energy Point Log,Social,Družabno apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Koledar - Koledarja ni bilo mogoče ustvariti za {0}, koda napake {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Urejanje Row DocType: Workflow Action Master,Workflow Action Master,Workflow Action Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Izbriši vse DocType: Custom Field,Field Type,Polje Tip apps/frappe/frappe/utils/data.py,only.,samo. DocType: Route History,Route History,Zgodovina poti @@ -1220,11 +1271,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Ste pozabili geslo? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Napaka strežnika +DocType: Server Script,After Delete,Po brisanju apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Oglejte si vsa pretekla poročila. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Je potrebna prijava Id DocType: Website Slideshow,Website Slideshow,Spletna stran Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ni podatkov DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, da je spletna stran domača stran. Standardne povezave (indeks, login, izdelki, blog, o tem, kontakt)" +DocType: Server Script,After Submit,Po oddaji apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Preverjanje pristnosti ni uspelo, medtem ko prejemanje e-pošte iz e-poštni račun {0}. Sporočilo s strežnika: {1}" DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Meri Field @@ -1265,15 +1318,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Če ima uporabnik nobene vloge preveri, nato pa uporabnik postane "System User". "System User" ima dostop do namizja" DocType: System Settings,Date and Number Format,Datum in številka Format apps/frappe/frappe/model/document.py,one of,eden od -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodite obrazec apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Preverjanje en trenutek apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Prikaži oznake DocType: DocField,HTML Editor,HTML Editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik +DocType: DocType,Actions,Dejanja DocType: Workflow State,align-justify,"poravnati, upravičujejo" DocType: User,Middle Name (Optional),Middle Name (po želji) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ni dovoljeno @@ -1288,6 +1339,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ni rezultat DocType: System Settings,Security,Varnost apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Načrtovano poslati {0} prejemnikov apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cut +DocType: Server Script,After Save,Po Shrani apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},preimenovan iz {0} in {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} od {1} ({2} vrstice z otroki) DocType: Currency,**Currency** Master,Glavna **Valuta** @@ -1314,16 +1366,19 @@ DocType: Prepared Report,Filter Values,Vrednosti filtrov DocType: Communication,User Tags,Uporabniške Tags DocType: Data Migration Run,Fail,Ne uspe DocType: Workflow State,download-alt,Download-alt +DocType: Scheduled Job Type,Last Execution,Zadnja izvršitev DocType: Data Migration Run,Pull Failed,Pull Failed apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Prikaži / skrij kartice DocType: Communication,Feedback Request,povratne informacije Zahteva apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Uvozite podatke iz datotek CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Naslednja polja manjkajo: +DocType: Notification Log,From User,Od uporabnika apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Preklic {0} DocType: Web Page,Main Section,Glavni oddelek DocType: Page,Icon,Ikona apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Namig: vključite simbole, številke in velike črke v geslu" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Namig: Vključitev simbole, številke in velike črke v geslu" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurirajte obvestila za omembe, naloge, energetske točke in drugo." DocType: DocField,Allow in Quick Entry,Dovolite v hitri vpisu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / llll @@ -1355,7 +1410,6 @@ DocType: Website Theme,Theme URL,URL teme DocType: Customize Form,Sort Field,Razvrsti Field DocType: Razorpay Settings,Razorpay Settings,Nastavitve Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Urejanje Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Dodaj Več DocType: System Settings,Session Expiry Mobile,Potek mobilne seje apps/frappe/frappe/utils/password.py,Incorrect User or Password,Napačen uporabnik ali geslo apps/frappe/frappe/templates/includes/search_box.html,Search results for,Rezultati iskanja @@ -1371,8 +1425,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Pravilo energijske točke DocType: Communication,Delayed,Zapoznelo apps/frappe/frappe/config/settings.py,List of backups available for download,Seznam varnostnih kopij na voljo za prenos +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Poskusite nov uvoz podatkov apps/frappe/frappe/www/login.html,Sign up,Prijavite se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Vrstica {0}: Ni dovoljeno onemogočiti Obvezno za standardna polja +DocType: Webhook,Enable Security,Omogoči varnost apps/frappe/frappe/config/customization.py,Dashboards,Nadzorne plošče DocType: Test Runner,Output,izhod DocType: Milestone,Track Field,Sledilno polje @@ -1380,6 +1436,7 @@ DocType: Notification,Set Property After Alert,Nastavite Nepremičnine Po Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj polj na obrazcih. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Izgleda, da je nekaj narobe s konfiguracijo Paypal te spletne strani." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Dodaj pregled +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} vam je dodal novo nalogo {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Velikost pisave (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Iz Prilagoditve obrazca je dovoljeno prilagajanje samo standardnih DocTypes. DocType: Email Account,Sendgrid,Sendgrid @@ -1391,8 +1448,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Nastavite filtre DocType: Contact Us Settings,Email ID,E-pošta ID DocType: Energy Point Rule,Multiplier Field,Polje množitelja +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Naloga Razorpay ni bilo mogoče ustvariti. Obrnite se na skrbnika DocType: Dashboard Chart,Time Interval,Časovni interval DocType: Activity Log,Keep track of all update feeds,Sledite vsem posodobitvam +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} je z vami delil dokument {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Seznam virov, ki jih bo imela stranka App dostop do ko uporabnik to dovoli. <br> na primer projekt" DocType: Translation,Translated Text,Prevedeno Besedilo DocType: Contact Us Settings,Query Options,Možnosti poizvedbe @@ -1411,6 +1470,7 @@ DocType: DefaultValue,Key,Ključ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Poročilo o vseh delnic dokumentov +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Uvozna predloga mora biti v obliki .csv, .xlsx ali .xls" apps/frappe/frappe/www/update-password.html,New Password,Novo geslo apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} manjka apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,"Žal! Ne, ne moreš brisati samodejno ustvarjena komentarje" @@ -1427,6 +1487,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Run DocType: Blog Post,Content (HTML),Vsebina (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Namestitev za DocType: Personal Data Download Request,User Name,Uporabniško ime DocType: Workflow State,minus-sign,minus-znak apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ni najdeno @@ -1434,11 +1495,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Ne {0} dovoljenje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz meri Dovoljenja apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ni elementov. DocType: Data Export,Fields Multicheck,Polja za večkratno preverjanje +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Končano DocType: Activity Log,Login,Vpiši se DocType: Web Form,Payments,Plačila apps/frappe/frappe/www/qrcode.html,Hi {0},Živjo {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Integracija Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} je vaše točke preusmeril na {1} {2} DocType: System Settings,Enable Scheduled Jobs,Omogoči Scheduled Jobs apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Opombe: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Neaktivno @@ -1463,6 +1524,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Predlo apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Dovoljena napaka apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Ime {0} ne more biti {1} DocType: User Permission,Applicable For,Velja za +DocType: Dashboard Chart,From Date,Od datuma apps/frappe/frappe/core/doctype/version/version_view.html,Success,Uspeh apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,seja je potekla apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,seja je potekla @@ -1475,7 +1537,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,"Us apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ni dovoljeno v stanju DocType: Async Task,Async Task,Async Task DocType: Workflow State,picture,slika -apps/frappe/frappe/www/complete_signup.html,Complete,Končaj +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Končaj DocType: DocType,Image Field,Slika Field DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: LDAP Settings,Default Role on Creation,Privzeta vloga pri ustvarjanju @@ -1483,6 +1545,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Naslednja država DocType: User,Block Modules,Block Moduli DocType: Print Format,Custom CSS,Meri CSS +DocType: Energy Point Rule,Apply Only Once,Prijavite se samo enkrat apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Prezreti: {0} do {1} @@ -1494,6 +1557,7 @@ DocType: Email Account,Default Incoming,Privzeto Dohodni DocType: Workflow State,repeat,Ponavljanje DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vrednost mora biti ena od {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Prekliči vse dokumente 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Pojdite na {0} Seznam apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoč pri iskanju @@ -1502,6 +1566,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrira apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Samodejna ponovitev tega dokumenta je onemogočena. DocType: DocType,Hide Copy,Skrij kopijo apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Počistite vse vloge +DocType: Server Script,Before Save,Pred shranjevanjem apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} mora biti edinstven apps/frappe/frappe/model/base_document.py,Row,Row apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC in Email Template" @@ -1512,7 +1577,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Uvoženo {0} DocType: User,API Key,ključ API DocType: Email Account,Send unsubscribe message in email,Pošlji odjavo sporočilo v e-pošto -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Uredi naslov apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname ki bo DOCTYPE za to povezavo področju. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,"Dokumenti, ki so jim dodeljene za vas in z vami." apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,To lahko tudi kopirate in prilepite @@ -1544,8 +1608,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Priložite sliko DocType: Workflow State,list-alt,seznam-alt apps/frappe/frappe/www/update-password.html,Password Updated,Geslo Posodobljeno +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitev> Uporabniška dovoljenja apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Koraki za preverjanje prijave apps/frappe/frappe/utils/password.py,Password not found,Geslo ni bilo mogoče najti +DocType: Webhook,Webhook Secret,Spletna skrivnost DocType: Data Migration Mapping,Page Length,Dolžina strani DocType: Email Queue,Expose Recipients,Expose prejemnikov apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pripni Da je obvezna za dohodne pošte @@ -1573,6 +1639,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Attachment Size (v MB) apps/frappe/frappe/www/login.html,Have an account? Login,Imate račun? Prijava +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Nastavitve tiskanja ... DocType: Workflow State,arrow-down,Puščica navzdol apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Vrstica {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Uporabnik ne sme izbrisati {0}: {1} @@ -1594,6 +1661,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Vnesite g DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Dostop Secret DocType: Tag Link,Document Title,Naslov dokumenta apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obvezno) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} leto nazaj DocType: Social Login Key,Social Login Provider,Ponudnik socialnih prijav apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodaj še en komentar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"V datoteki ni podatkov. Prosimo, ponovno vstavite novo datoteko s podatki." @@ -1608,11 +1676,12 @@ DocType: Workflow State,hand-down,ročno navzdol apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Ni najdenih polj, ki bi se lahko uporabljala kot Kanban stolpec. Če želite dodati polje po meri vrste "Izberi", uporabite obrazec Prilagodi." DocType: Address,GST State,DDV država apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Ne morem preklicati brez vročitve +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Uporabnik ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmerjeni URI vezani na avtorizacijski zakonika apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Odprite pomoč DocType: DocType,Is Submittable,Je Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova omemba +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nova omemba apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Ni sinhroniziranih novih Google Stikov. DocType: File,Uploaded To Google Drive,Naloženo v Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Vrednost za polje prijavi je lahko 0 ali 1 @@ -1624,7 +1693,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Prejeto DocType: Kanban Board Column,Red,Red DocType: Workflow State,Tag,Oznaka -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumenta ni mogoče shraniti. DocType: Energy Point Rule,Maximum Points,Največje točke apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje nastavitve @@ -1654,9 +1723,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} ocene točk za {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Vloge je mogoče nastaviti za uporabnike iz njihovega uporabniških strani. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Dodaj komentar +DocType: Dashboard Chart,Select Date Range,Izberite Časovno obdobje DocType: DocField,Mandatory,Obvezno apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul za Izvoz +DocType: Scheduled Job Type,Monthly Long,Mesečno dolgo apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Pravice niso nastavljene +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Pošljite e-poštno sporočilo {0}, da ga povežete tukaj" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Pomen Submit Cancel, Spremeni" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Narediti @@ -1665,7 +1737,6 @@ DocType: Milestone Tracker,Track milestones for any document,Sledite mejnikom za DocType: Social Login Key,Identity Details,Podrobnosti o osebnosti apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Prehod stanja delovnega toka ni dovoljen iz {0} na {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Pokaži nadzorno ploščo -apps/frappe/frappe/desk/form/assign_to.py,New Message,Novo sporočilo DocType: File,Preview HTML,Predogled HTML DocType: Desktop Icon,query-report,poizvedba-poročilo DocType: Data Import Beta,Template Warnings,Opozorila predloge @@ -1676,18 +1747,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Povezan z apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Urejanje samodejnih e-poštnih nastavitev DocType: Chat Room,Message Count,Število sporočil DocType: Workflow State,book,knjiga +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} je povezan z naslednjimi predloženimi dokumenti: {2} DocType: Communication,Read by Recipient,Preberite od Prejemnika DocType: Website Settings,Landing Page,Ciljna stran apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Napaka v Script meri apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Ime apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,"Ni Pravice, določene za ta merila." DocType: Auto Email Report,Auto Email Report,Auto Email poročilo +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nov dokument v skupni rabi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Izbriši komentar? DocType: Address Template,This format is used if country specific format is not found,"Ta oblika se uporablja, če je ni mogoče najti poseben format državo" DocType: System Settings,Allow Login using Mobile Number,Dovoli Prijava z uporabo mobilnih številk apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Če je omogočeno, se uporabniki, ki se prijavijo iz omejenega naslova IP, ne bodo pozvani k dvema dejavnikoma faktorja" +DocType: Server Script,After Cancel,Po preklicu DocType: Auto Repeat,Get Contacts,Get Contacts apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Prispevkov vložene po {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskok brez stolpca brez naslova @@ -1698,6 +1772,7 @@ 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 +DocType: Notification Log,Mention,Omeniti DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Pisave apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Natančnost mora biti med 1 in 6 @@ -1705,7 +1780,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,in apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},To poročilo je bilo ustvarjeno na {0} DocType: Error Snapshot,Frames,Okvirji -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Naloga +DocType: Notification Log,Assignment,Naloga DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Povezava slike DocType: Auto Email Report,Report Filters,poročilo Filtri @@ -1722,7 +1797,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Ne morem posodobiti dogodek apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Koda za preverjanje je bila poslana na vaš registrirani e-poštni naslov. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Utrujen +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Vaš cilj apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter mora imeti 4 vrednosti (DOCTYPE, fieldname, operater, vrednost): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Za ime {0} ni določeno ime apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Uporabi pravilo dodelitve apps/frappe/frappe/utils/bot.py,show,oddaja apps/frappe/frappe/utils/data.py,Invalid field name {0},Neveljavno ime polja {0} @@ -1732,7 +1809,6 @@ DocType: Workflow State,text-height,text-višina DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapiranje načrta migracij podatkov apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Začetek Frappéja ... DocType: Web Form Field,Max Length,Max dolžina -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Za {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,Oznaka na zemljevidu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Predloži vprašanje @@ -1768,6 +1844,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Page manjka ali premaknjen apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Ocene DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay nastavitve vplačilo +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} pridobil {1} točko za {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Pridobite priložene slike iz dokumenta DocType: Chat Room,Name,Name DocType: Contact Us Settings,Skype,Skype @@ -1778,7 +1855,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Odpri poveza apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tvoj jezik DocType: Dashboard Chart,Average,Povprečna apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Dodaj vrstico -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Tiskalnik apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Vprašanje mora biti SELECT DocType: Auto Repeat,Completed,Končano @@ -1838,6 +1914,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Nastavitve energijske točke DocType: Async Task,Succeeded,Naslednik apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Obvezna polja, ki se zahtevajo v {0}" +DocType: Onboarding Slide Field,Align,Poravnajte apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Ponastavi Dovoljenja za {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Uporabniki in dovoljenja DocType: S3 Backup Settings,S3 Backup Settings,S3 varnostne nastavitve @@ -1854,7 +1931,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo ime oblike tiskanja apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Za potrditev zahteve kliknite spodnjo povezavo DocType: Workflow State,align-left,poravnajte levo +DocType: Onboarding Slide,Action Settings,Nastavitve dejanj DocType: User,Defaults,Privzete +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za primerjavo uporabite> 5, <10 ali = 324. Za obsege uporabite 5:10 (za vrednosti med 5 in 10)." DocType: Energy Point Log,Revert Of,Vrnitev apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Združi z obstoječo DocType: User,Birth Date,Datum rojstva @@ -1909,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,V DocType: Notification,Value Change,Vrednost Spremeni DocType: Google Contacts,Authorize Google Contacts Access,Pooblastite dostop do Google Stikov apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazujejo samo številčna polja iz poročila +apps/frappe/frappe/utils/data.py,1 week ago,Pred 1 tednom DocType: Data Import Beta,Import Type,Vrsta uvoza DocType: Access Log,HTML Page,Stran HTML DocType: Address,Subsidiary,Hčerinska družba @@ -1918,7 +1998,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,S pisemsko glavo apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neveljavna Outgoing Mail Server ali Port DocType: Custom DocPerm,Write,Napišite -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,"Le administrator dovoli, da ustvarite poizvedbe / script Poročila" apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Posodabljanje DocType: Data Import Beta,Preview,Predogled apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Polje "vrednost" je obvezna. Prosimo, navedite vrednost, je treba posodobiti" @@ -1928,6 +2007,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Povabi kot DocType: Data Migration Run,Started,Začelo se je apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Uporabnik {0} nima dostopa do tega dokumenta DocType: Data Migration Run,End Time,Končni čas +DocType: Dashboard Chart,Group By Based On,Skupina glede na apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Izberite priponke apps/frappe/frappe/model/naming.py, for {0},za {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Niste dovoljeno natisniti dokument @@ -1969,6 +2049,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Preveri DocType: Workflow Document State,Update Field,Update Field DocType: Chat Profile,Enable Chat,Omogoči klepet DocType: LDAP Settings,Base Distinguished Name (DN),Osnovna razločevalno ime (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Pusti ta pogovor apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Možnosti ni nastavljen za povezavo področju {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Čakalna vrsta / delavec @@ -2037,12 +2118,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Prijava ni dovoljeno v tem času DocType: Data Migration Run,Current Mapping Action,Trenutna kartografska akcija DocType: Dashboard Chart Source,Source Name,Source Name -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Z uporabnikom ni nobenega e-poštnega računa. Dodajte račun pod Uporabnik> Prejeto po e-pošti. DocType: Email Account,Email Sync Option,E-pošta Sync Možnost apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Vrstica št DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Je vezan DocType: Contact Us Settings,Introduction,Predstavitev +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Rabim pomoč? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pripnite globalno apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Sledi DocType: LDAP Settings,LDAP Email Field,LDAP E-Polje @@ -2052,7 +2133,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Že v upo DocType: User Email,Enable Outgoing,Omogoči Odhodni DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Oznake po meri -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-poštnega računa ni nastavljeno. Ustvarite nov e-poštni račun iz programa Setup> Email> Email Account DocType: Comment,Submitted,Predložen DocType: Contact,Pulled from Google Contacts,Potegnjeno iz Google Stikov apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Neveljavna Zahteva @@ -2073,9 +2153,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Domov/Testn apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Dodeli se mi DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Pritisnite tipko Alt, da sprožite dodatne bližnjice v meniju in stranski vrstici" +DocType: Dashboard Chart,To Date,Če želite Datum DocType: List View Setting,List View Setting,Nastavitev pogleda seznama apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Prikaži ni delovnih mest -DocType: Event,Details,Podrobnosti +DocType: Scheduled Job Log,Details,Podrobnosti DocType: Property Setter,DocType or Field,DOCTYPE ali Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Odstranjevali ste ta dokument apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Primarna barva @@ -2084,7 +2165,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Zdi se za objavo ključ ali Secret Key je narobe !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Zdi se za objavo ključ ali Secret Key je narobe !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Hitra pomoč za nastavitev pravic -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE da dodelite oznake apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Prikaži zagonov apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-pošta je bila premaknjena v koš DocType: Report,Report Builder,Gradnik poročil @@ -2100,6 +2180,7 @@ DocType: Workflow State,Upload,Pošiljanje DocType: User Permission,Advanced Control,Napredni nadzor DocType: System Settings,Date Format,Oblika datuma apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ne Objavljeno +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Predloga ni bila privzeta. Ustvarite novo iz Nastavitve> Tiskanje in trženje blagovne znamke> Predloga naslova. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Ukrepi za potek dela (npr odobri Cancel). DocType: Data Import,Skip rows with errors,Preskoči vrstice z napakami DocType: Workflow State,flag,zastava @@ -2109,7 +2190,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Nati apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skoči na polje DocType: Contact Us Settings,Forward To Email Address,Posreduj na elektronski naslov DocType: Contact Phone,Is Primary Phone,Je primarni telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Pošljite e-poštno sporočilo {0}, da ga povežete tukaj." DocType: Auto Email Report,Weekdays,Delovni dnevi apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} bodo izvoženi zapisi apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Naslov polje mora biti veljaven fieldname @@ -2117,7 +2197,7 @@ DocType: Post Comment,Post Comment,Objavi komentar apps/frappe/frappe/config/core.py,Documents,Dokumenti apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Prijava dejavnosti DocType: Social Login Key,Custom Base URL,URL baze po meri -DocType: Email Flag Queue,Is Completed,je končan +DocType: Onboarding Slide,Is Completed,je končan apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Pridobi polja apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Uredi profil DocType: Kanban Board Column,Archived,Arhivirano @@ -2128,12 +2208,13 @@ 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" DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,danes -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,danes +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,danes +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,danes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Pošlji po uvozu DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Napake DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Povezava za pomoč na drsnem vozilu DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Pošiljanje apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Matično ime je dokument, na katerega bodo podatki dodani." @@ -2141,7 +2222,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ZGORNJI CASE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Vnesite ime mape -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Predloga privzetega naslova ni bila najdena. Ustvarite novega iz nastavitve> Tiskanje in trženje blagovne znamke> Predloga naslova. apps/frappe/frappe/auth.py,Unknown User,Neznan uporabnik apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Izberite Role DocType: Comment,Deleted,Izbrisan @@ -2157,7 +2237,7 @@ DocType: Chat Token,Chat Token,Tok klepeta apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Ustvari grafikon apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne uvažaj -DocType: Web Page,Center,Center +DocType: Onboarding Slide Field,Center,Center DocType: Notification,Value To Be Set,"Vrednost, ki jo določi" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Uredi {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prva raven @@ -2165,7 +2245,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Ime baze podatkov apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Osveži Form DocType: DocField,Select,Izberite -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Ogled celotnega dnevnika +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Ogled celotnega dnevnika DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Preprosta Python Expression, Primer: status == 'Open' in vnesite == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Datoteka ni priložena apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Povezava izgubljena. Nekatere funkcije morda ne bodo delovale. @@ -2197,6 +2277,7 @@ DocType: Web Page,HTML for header section. Optional,HTML glava. Neobvezno apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ta funkcija je popolnoma nov in še vedno eksperimentalni apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Največje {0} vrstice dovoljeno DocType: Dashboard Chart Link,Chart,Graf +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Globalno Odjavi apps/frappe/frappe/utils/password_strength.py,This is a very common password.,To je zelo pogost geslo. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Poglej @@ -2213,6 +2294,7 @@ DocType: Data Migration Connector,Hostname,Ime gostitelja (hostname) DocType: Data Migration Mapping,Condition Detail,Pogojno stanje apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Za valuto {0} mora biti najmanjša vsota transakcije {1} DocType: DocField,Print Hide,Print Skrij +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Uporabniku apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Vnesite vrednost DocType: Workflow State,tint,odtenek @@ -2280,6 +2362,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR koda za pre apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj Opravilo DocType: Footer Item,Company,Podjetje apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Povprečje {0} +DocType: Scheduled Job Log,Scheduled,Načrtovano DocType: User,Logout from all devices while changing Password,Odjava iz vseh naprav med spreminjanjem gesla apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,potrdi geslo apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Tam so bile napake @@ -2305,7 +2388,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Uporabniško dovoljenje že obstaja apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Preslikava stolpca {0} v polje {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ogled {0} -DocType: User,Hourly,Na uro +DocType: Scheduled Job Type,Hourly,Na uro apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Vnos OAuth Client aplikacijo DocType: DocField,Fetch If Empty,"Pridobi, če je prazno" DocType: Data Migration Connector,Authentication Credentials,Potrdila za preverjanje pristnosti @@ -2316,10 +2399,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},pridobljeno z {0} z avtomatskim pravilom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ali {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Vsi ste pripravljeni! DocType: Workflow State,trash,smeti DocType: System Settings,Older backups will be automatically deleted,Starejši varnostne kopije bodo samodejno izbrisani apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Neveljaven ID ključa za dostop ali tajni dostopni ključ. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Izgubili ste nekaj energijskih točk DocType: Post,Is Globally Pinned,Je globalno vezan apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Nedavne dejavnosti DocType: Workflow Transition,Conditions,Pogoji @@ -2328,6 +2411,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Potrjen DocType: Event,Ends on,Konča na DocType: Payment Gateway,Gateway,Prehod DocType: LDAP Settings,Path to Server Certificate,Pot do strežniškega potrdila +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,V vašem brskalniku je JavaScript onemogočen apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ni dovolj dovoljenja za ogled povezav apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ni dovolj dovoljenja za ogled povezav apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Naslov Naslov je obvezen. @@ -2347,7 +2431,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-zahod-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Če je to označeno, bodo vrstice z veljavnimi podatki uvožene in neveljavne vrstice bodo dane v novo datoteko, ki jo boste kasneje uvozili." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument je mogoče urejati le uporabniki vloge -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Naloga {0}, ki jo dodeli {1}, je bil zaprt z {2}." DocType: Print Format,Show Line Breaks after Sections,Prikaži Prelomi vrstic po oddelkih DocType: Communication,Read by Recipient On,Preberite ga prejemnik DocType: Blogger,Short Name,Kratko ime @@ -2380,6 +2463,7 @@ DocType: Translation,PR sent,PR poslan DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Samo Pošlji Records Posodobljeno v zadnjih X ur DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Samo Pošlji Records Posodobljeno v zadnjih X ur DocType: Communication,Feedback,Povratne informacije +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Posodobljeno z novo različico 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Odpri prevajanje apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,To e-poštno sporočilo je samodejno generirano DocType: Workflow State,Icon will appear on the button,Ikona so bo pojavila na gumbu @@ -2418,6 +2502,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Stran ni b DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Slideshow Items apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,"Poskusi, da bi se izognili večkratnim besede in znake" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Obvestila so onemogočena +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,"Ali ste prepričani, da želite izbrisati vse vrstice?" DocType: Workflow Action,Workflow State,Workflow država apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Vrstice dodane apps/frappe/frappe/www/list.py,My Account,Moj račun @@ -2426,6 +2512,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dnevi Po apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ povezava s pladnji je aktivna! DocType: Contact Us Settings,Settings for Contact Us Page,Nastavitve Kontakt Stran +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Omogoči tiskalniški strežnik apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} tednov nazaj DocType: Email Account,Footer,Noga @@ -2451,8 +2538,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Opozorilo apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,To se lahko natisne na več straneh DocType: Data Migration Run,Percent Complete,Percent Complete -DocType: Tag Category,Tag Category,tag Kategorija -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za primerjavo uporabite> 5, <10 ali = 324. Za obsege uporabite 5:10 (za vrednosti med 5 in 10)." DocType: Google Calendar,Pull from Google Calendar,Potegnite iz Google Koledarja apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Pomoč DocType: User,Login Before,Prijava Pred @@ -2462,17 +2547,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skrij vikende apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Samodejno ustvari ponavljajoče se dokumente. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-znak apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vrednost za {0} ne more biti seznam DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako se oblikuje valuto? Če ni nastavljeno, bo uporabljena privzete sistemska nastavitev" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pošljite {0} dokumente? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Napaka pri povezovanju z aplikacijo QZ Tray ... <br><br> Za uporabo funkcije Raw Print morate imeti nameščeno in zagnano aplikacijo QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Kliknite tukaj, če želite prenesti in namestiti QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Kliknite tukaj, če želite izvedeti več o surovem tisku</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Preslikava tiskalnika apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Prosimo, shranite pred namestitvijo." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ali želite preklicati vse povezane dokumente? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodana {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype se ne more spremeniti od {0} do {1} v vrstici {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Role Dovoljenja DocType: Help Article,Intermediate,vmesna +apps/frappe/frappe/config/settings.py,Email / Notifications,E-pošta / obvestila apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} spremenjen {1} v {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Preklican dokument je bil obnovljen kot osnutek DocType: Data Migration Run,Start Time,Začetni čas @@ -2489,6 +2578,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,La apps/frappe/frappe/email/smtp.py,Invalid recipient address,Neveljaven naslov prejemnika DocType: Workflow State,step-forward,korak naprej DocType: System Settings,Allow Login After Fail,Dovoli prijavo po izpadu +DocType: DocType Link,DocType Link,DocType povezava DocType: Role Permission for Page and Report,Set Role For,Nastavite Vloga Za DocType: GCalendar Account,The name that will appear in Google Calendar,"Ime, ki se bo prikazalo v Google Koledarju" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Neposredna soba s {0} že obstaja. @@ -2505,6 +2595,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Ustvari n DocType: Contact,Google Contacts,Google Stiki DocType: GCalendar Account,GCalendar Account,GCalendar račun DocType: Email Rule,Is Spam,je Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Zadnji apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Poročilo {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Odpri {0} DocType: Data Import Beta,Import Warnings,Uvozna opozorila @@ -2516,6 +2607,7 @@ DocType: Workflow State,ok-sign,ok-znak apps/frappe/frappe/config/settings.py,Deleted Documents,Izbrisani Dokumenti apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Oblika CSV je občutljiva na velike in male črke apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon že obstaja +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Določite, v katerih vseh domenah naj se prikazujejo diapozitivi. Če nič ni določeno, je diapozitiv privzeto prikazan v vseh domenah." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Podvajati apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Polja {1} v vrstici {2} brez privzetega ni mogoče skriti in obvezno DocType: Newsletter,Create and Send Newsletters,Ustvarjanje in pošiljanje glasila @@ -2526,6 +2618,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID dogodka v Google Koledarju apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Nadrejeni"" pomeni nadrejeno tabelo, v kateri je treba dodati to vrstico" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Pregledne točke: +DocType: Scheduled Job Log,Scheduled Job Log,Načrtovani dnevnik opravil +DocType: Server Script,Before Delete,Pred brisanjem apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Deljena Z apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Priložite datoteke / URL-je in jih dodajte v tabelo. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Sporočilo ni nastavljeno @@ -2549,19 +2643,21 @@ DocType: About Us Settings,Settings for the About Us Page,Nastavitve za O podjet apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Trak nastavitve plačilo gateway apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Trak nastavitve plačilo gateway apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Tiskanje poslano tiskalniku! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energetske točke +DocType: Notification Settings,Energy Points,Energetske točke +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Čas {0} mora biti v obliki: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Ustvari ključe apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,To bo trajno odstranilo vaše podatke. DocType: DocType,View Settings,Ogled nastavitev +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Novo obvestilo DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Zahtevna struktura +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Manjka metoda get_razorpay_order regulatorja DocType: Personal Data Deletion Request,Pending Verification,Čaka na preverjanje DocType: Website Meta Tag,Website Meta Tag,Meta oznaka spletnega mesta DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Če so nestandardna vrata (npr. 587). Če je v storitvi Google Cloud, poskusite vrata 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Čiščenje končnega datuma, saj za objavljene strani ne more biti v preteklosti." DocType: User,Send Me A Copy of Outgoing Emails,Pošljite mi kopijo odhajajočih e-poštnih sporočil -DocType: System Settings,Scheduler Last Event,Scheduler Zadnji dogodek DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Dodaj Google Analytics ID: npr. UA-89XXX57-1. Prosimo, da poiščete pomoč na Google Analytics za več informacij." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Geslo ne sme biti daljši od 100 znakov DocType: OAuth Client,App Client ID,App Client ID @@ -2590,6 +2686,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Novo geslo Za apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delijo ta dokument z {1} DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Predloga za uvoz mora vsebovati glavo in najmanj eno vrstico. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Koledar je konfiguriran. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Postavitev zgornji vrstici za krmarjenje, noge in logotip." DocType: Web Form Field,Max Value,Max Vrednost @@ -2599,6 +2696,7 @@ DocType: User Social Login,User Social Login,Uporabniško socialno prijavo apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} je kritiziral vaše delo {1} s točko {2} DocType: Contact,All,Vsi DocType: Email Queue,Recipient,Prejemnik +DocType: Webhook,Webhook Security,Varnost spletnega kuka DocType: Communication,Has Attachment,Ima prilogo DocType: Address,Sales User,Prodaja Uporabnik apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Povleci in spusti orodje za gradnjo in prilagodite Print formatih. @@ -2665,7 +2763,6 @@ DocType: Data Migration Mapping,Migration ID Field,Polje ID prenosa DocType: Dashboard Chart,Last Synced On,Nazadnje sinhronizirano DocType: Comment,Comment Type,Tip komentarja DocType: OAuth Client,OAuth Client,OAuth Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritiziral vaše delo {1} {2} DocType: Assignment Rule,Users,Uporabniki DocType: Address,Odisha,Odisha DocType: Report,Report Type,Poročilo Type @@ -2691,14 +2788,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Spletna stran Slideshow P apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Samozaklepanje ni dovoljeno DocType: GSuite Templates,Template ID,Predloga ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kombinacija vrste podpore ( <code>{0}</code> ) in vrste odziva ( <code>{1}</code> ) ni dovoljena -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Novo sporočilo iz {0} DocType: Portal Settings,Default Role at Time of Signup,Privzeti Vloga v času od prijave DocType: DocType,Title Case,Naslov Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Za prenos podatkov kliknite spodnjo povezavo apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Omogočeno e-poštno mapo za uporabnika {0} DocType: Data Migration Run,Data Migration Run,Premikanje podatkov DocType: Blog Post,Email Sent,Email Sent -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Starejši DocType: DocField,Ignore XSS Filter,Ignoriraj XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,odstrani apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Nastavitve Dropbox backup @@ -2753,6 +2848,7 @@ DocType: Async Task,Queued,V čakalni vrsti DocType: Braintree Settings,Use Sandbox,uporaba Sandbox apps/frappe/frappe/utils/goal.py,This month,Ta mesec apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New meri Print Format +DocType: Server Script,Before Save (Submitted Document),Pred shranjevanjem (oddan dokument) DocType: Custom DocPerm,Create,Ustvari apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Ni več elementov za prikaz apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Pojdi na prejšnji zapis @@ -2810,6 +2906,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Premakni v Smeti DocType: Web Form,Web Form Fields,Spletni obrazec Polja DocType: Data Import,Amended From,Spremenjeni Od +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Dodajte video povezavo za pomoč samo v primeru, da uporabnik nima pojma o tem, kaj mora izpolniti diapozitiv." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Opozorilo: Ni mogoče najti {0} v kateri koli tabeli v zvezi s {1} DocType: S3 Backup Settings,eu-north-1,eu-sever-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ta dokument je trenutno v čakalni vrsti za izvedbo. Prosim poskusite ponovno @@ -2832,6 +2929,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Izvozi iz apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,napredno iskanje apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nimate dovoljenja za ogled glasila. +DocType: Dashboard Chart,Group By,Skupina S DocType: User,Interests,Zanima apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Navodila za ponastavitev gesla so bila poslana na vaš email DocType: Energy Point Rule,Allot Points To Assigned Users,Dodelite točke dodeljenim uporabnikom @@ -2847,6 +2945,7 @@ DocType: Assignment Rule,Assignment Rule,Pravilo dodelitve apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Predlagal ime: {0} DocType: Assignment Rule Day,Day,Dan apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduli +DocType: DocField,Mandatory Depends On,Obvezna je odvisna apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Uspeh plačilo apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ni {0} pošta DocType: OAuth Bearer Token,Revoked,prekliče @@ -2854,6 +2953,7 @@ DocType: Web Page,Sidebar and Comments,Stranska vrstica in Komentarji apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ni dovoljeno pritrditi {0} dokumenta, prosimo, omogočite Dovoli tiskanje za {0} v nastavitvah tiskanja" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-poštnega računa ni nastavljeno. Ustvarite nov e-poštni račun iz programa Setup> Email> Email account apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Oglejte si dokument na {0} DocType: Stripe Settings,Publishable Key,za objavo Key DocType: Stripe Settings,Publishable Key,za objavo Key @@ -2868,13 +2968,13 @@ DocType: Currency,Fraction,Frakcija apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Dogodek sinhroniziran z Google Koledarjem. DocType: LDAP Settings,LDAP First Name Field,LDAP Ime polja DocType: Contact,Middle Name,Srednje ime +DocType: DocField,Property Depends On,Lastnina je odvisna od DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ime ni nastavljena prek Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-pošta Prejeto apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Posodobitev {0} od {1}, {2}" DocType: Auto Email Report,Filters Display,filtri Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Za spremembo mora biti prisotno polje "spremenjeno od". -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} cenil je vaše delo {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Shranite filtre DocType: Address,Plant,Rastlina apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori vsem @@ -2915,11 +3015,11 @@ DocType: Workflow State,folder-close,Mapa-blizu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Poročilo: DocType: Print Settings,Print taxes with zero amount,Natisni davke z ničelnim zneskom apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,"{0} ni dovoljeno, da se preimenuje" +DocType: Server Script,Before Insert,Pred Vstaviti DocType: Custom Script,Custom Script,Meri Script DocType: Address,Address Line 2,Naslov Line 2 DocType: Address,Reference,Sklicevanje apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Dodeljeno -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavite privzeti račun e-pošte iz programa Setup> Email> Email account DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Podatki o preseljevanju podatkov DocType: Data Import,Action,Dejanje DocType: GSuite Settings,Script URL,URL skripta @@ -2945,11 +3045,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,V pogledu seznama DocType: Email Account,Use TLS,Uporabi TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Neveljavna ali geslo +DocType: Scheduled Job Type,Weekly Long,Tedensko dolgo apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Prenesi predlogo apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj custom javascript za oblike. ,Role Permissions Manager,Role Dovoljenja Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ime novega Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Preklopite stransko vrstico +DocType: Server Script,After Save (Submitted Document),Po shrani (oddan dokument) DocType: Data Migration Run,Pull Insert,Pull Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Največje dovoljene točke po množenju točk z množiteljsko vrednostjo (Opomba: Če ni omejitve, pustite to polje prazno ali nastavite 0)" @@ -2969,6 +3071,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ni nameščen apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Prenesete s podatki apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},spremenjene vrednosti za {0} {1} +DocType: Server Script,Before Cancel,Pred Prekliči DocType: Workflow State,hand-right,ročno desno DocType: Website Settings,Subdomain,Poddomena DocType: S3 Backup Settings,Region,Regija @@ -3015,12 +3118,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,staro geslo DocType: S3 Backup Settings,us-east-1,us-vzhod-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Objav od {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Do formata stolpcev, dobimo oznake stolpcev v poizvedbi." +DocType: Onboarding Slide,Slide Fields,Drsna polja DocType: Has Domain,Has Domain,Ima domeno DocType: User,Allowed In Mentions,Dovoljeno v omembah apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Še nimate računa? Prijava apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Ni mogoče odstraniti polja ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Ne morem nastaviti če ni za vročanje DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Naročeni dokumenti apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Uporabniške nastavitve DocType: Report,Reference Report,Referenčno poročilo DocType: Activity Log,Link DocType,Link DOCTYPE @@ -3038,6 +3143,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Pooblastite dostop do apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stran, ki jo iščete, manjka. To bi lahko bilo, ker se je preselil ali pa je tipkarska napaka v povezavi." apps/frappe/frappe/www/404.html,Error Code: {0},Koda napake: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za uvrstitev stran, v golo besedilo, le nekaj vrstic. (največ 140 znakov)" +DocType: Server Script,DocType Event,DocType Dogodek apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} so obvezna polja DocType: Workflow,Allow Self Approval,Dovoli samozavest DocType: Event,Event Category,Kategorija dogodka @@ -3054,6 +3160,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje ime apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Uspeh povezave DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Drsni trak tipa Drsnik Nadaljuj že obstaja. DocType: DocType,Default Sort Field,Privzeto polje za razvrščanje DocType: File,Is Folder,Je Folder DocType: Document Follow,DocType,DOCTYPE @@ -3091,8 +3198,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vrednos DocType: Workflow State,arrow-up,arrow-up DocType: Dynamic Link,Link Document Type,Vrsta dokumenta povezave apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Za tabelo {0} mora biti vsaj ena vrstica +DocType: Server Script,Server Script,Skript strežnika apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Če želite konfigurirati samodejno ponovitev, omogočite "Dovoli samodejno ponovitev" od {0}." DocType: OAuth Bearer Token,Expires In,poteče v +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Kolikokrat želite ponoviti nabor polj (npr. Če na diapozitivu želite 3 stranke, to polje nastavite na 3. Na diapozitivu je obvezen le prvi niz polj)" DocType: DocField,Allow on Submit,Dovoli na Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Izjema Type @@ -3102,6 +3211,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Glave apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Prihajajoči dogodki apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Vnesite vrednosti za App tipka za dostop in App Secret Key +DocType: Email Account,Append Emails to Sent Folder,Dodajte e-pošto v poslano mapo DocType: Web Form,Accept Payment,Sprejmi plačilo apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Izberite element seznama apps/frappe/frappe/config/core.py,A log of request errors,Dnevnik zahtevo napak @@ -3120,7 +3230,7 @@ DocType: Translation,Contributed,Prispeval apps/frappe/frappe/config/customization.py,Form Customization,Prilagoditev obrazca apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ni aktivnih sej DocType: Web Form,Route to Success Link,Povezava poti do uspeha -DocType: Top Bar Item,Right,Prav +DocType: Onboarding Slide Field,Right,Prav apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Ni prihajajočih dogodkov DocType: User,User Type,Uporabnik Type DocType: Prepared Report,Ref Report DocType,Poročilo o povratnem sporočilu DocType @@ -3138,6 +3248,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prosim poskusite apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL se mora začeti z „http: //“ ali „https: //“ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Možnost 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Tega ni mogoče razveljaviti DocType: Workflow State,Edit,Uredi DocType: Website Settings,Chat Operators,Klepetalnice DocType: S3 Backup Settings,ca-central-1,ca-centralna-1 @@ -3149,7 +3260,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,Default for {0} must be an option,Privzeto za {0} mora biti možnost -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Poročilo z več kot 10 stolpci je v načinu Landscape videti bolje. apps/frappe/frappe/database/database.py,Invalid field name: {0},Neveljavno ime polja: {0} DocType: Milestone,Milestone,Mejnik @@ -3158,7 +3268,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Pojdite na {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-pošta utišani apps/frappe/frappe/config/integrations.py,Google Services,Googlove storitve apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Gor -apps/frappe/frappe/utils/data.py,1 weeks ago,pred 1 tednom +DocType: Onboarding Slide,Slide Description,Opis diapozitiva DocType: Communication,Error,Napaka apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Najprej nastavite sporočilo DocType: Auto Repeat,End Date,Končni datum @@ -3179,10 +3289,12 @@ DocType: Footer Item,Group Label,Oznaka skupine DocType: Kanban Board,Kanban Board,Kanban svet apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Stiki so konfigurirani. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Izvozi se 1 zapis +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Z uporabnikom ni nobenega e-poštnega računa. Dodajte račun pod Uporabnik> Prejeta pošta. DocType: DocField,Report Hide,Poročilo Skrij apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Drevesni pogled ni na voljo za {0} DocType: DocType,Restrict To Domain,Omeji Za domeno DocType: Domain,Domain,Domena +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Neveljaven URL datoteke. Obrnite se na sistemskega administratorja. DocType: Custom Field,Label Help,Label Pomoč DocType: Workflow State,star-empty,zvezda-prazna apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datumi pogosto težko uganiti. @@ -3207,6 +3319,7 @@ DocType: Workflow State,hand-left,ročno levo DocType: Data Import,If you are updating/overwriting already created records.,Če posodabljate / prepisujete že ustvarjene zapise. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Je globalno DocType: Email Account,Use SSL,Uporabi SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,play-krog apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumenta ni bilo mogoče pravilno dodeliti apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Neveljaven izraz "depends_on" je neveljaven @@ -3223,6 +3336,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Nazadnje osveženo apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Za vrsto dokumenta DocType: Workflow State,arrow-right,arrow-desno +DocType: Server Script,API Method,Metoda API DocType: Workflow State,Workflow state represents the current state of a document.,Workflow stanje predstavlja trenutno stanje dokumenta. DocType: Letter Head,Letter Head Based On,Pismo na podlagi apps/frappe/frappe/utils/oauth.py,Token is missing,Žeton manjka @@ -3262,6 +3376,7 @@ DocType: Comment,Relinked,ponovno povezani DocType: Print Settings,Compact Item Print,Compact Točka Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Preusmeritev URL +DocType: Onboarding Slide Field,Placeholder,Rezervirano mesto DocType: SMS Settings,Enter url parameter for receiver nos,Vnesite url parameter za sprejemnik nos DocType: Chat Profile,Online,Na zalogi DocType: Email Account,Always use Account's Name as Sender's Name,Vedno uporabite ime računa kot pošiljateljevo ime @@ -3271,7 +3386,6 @@ DocType: Workflow State,Home,Domov DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Uporabnik se lahko prijavite z uporabo e-poštnega naslova ali uporabniškega imena DocType: Workflow State,question-sign,Vprašanje-znak -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je onemogočen apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Polje »pot« je obvezno za spletne oglede apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Vstavi stolpec pred {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Uporabnik iz tega polja bo prejel točke @@ -3296,6 +3410,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Če lastnika DocType: Data Migration Mapping,Push,Pritisni apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Tu spusti datoteke DocType: OAuth Authorization Code,Expiration time,izteka čas +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Odprite dokumente DocType: Web Page,Website Sidebar,Spletna stran stranska vrstica DocType: Web Form,Show Sidebar,Prikaži stransko vrstico apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Morate biti prijavljeni za dostop do tega {0}. @@ -3305,11 +3420,13 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,Nastavitve tiskanja DocType: Page,Yes,Da DocType: DocType,Max Attachments,Največ priponk +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Še približno {0} sekund DocType: Calendar View,End Date Field,Polje končnega datuma apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne bližnjice DocType: Desktop Icon,Page,Stran apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Ni bilo mogoče najti {0} v {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imena in priimki po sebi je lahko uganiti. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument je preimenovan iz {0} v {1} apps/frappe/frappe/config/website.py,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,aktovka apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vrednost se ne more spremeniti za {0} @@ -3346,6 +3463,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Print Format apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Mrežni pogled apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pojdi na naslednji zapis +DocType: System Settings,Time Format,Časovna oblika apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Neveljavni podatki za plačilo gateway DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"To je datoteka predloge, ustvarjena samo z vrsticami, ki imajo nekaj napake. To datoteko uporabite za popravek in uvoz." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nastavljanje dovoljenj o vrstah dokumentov in vloge @@ -3389,12 +3507,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Odgovori apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Strani v Desk (imetniki mesto) DocType: DocField,Collapsible Depends On,Zložljiva odvisen DocType: Print Style,Print Style Name,Ime stila za tiskanje +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Za ustvarjanje grafikona nadzorne plošče je potrebno za vsako skupino DocType: Print Settings,Allow page break inside tables,Dovoli prelom strani znotraj tabel DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Print Format Pomoč apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} soba mora imeti največ enega uporabnika. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Štet +DocType: Dashboard Chart,Group By Type,Skupina po vrsti apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nov komentar o {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovljena {0} kot {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Če posodabljate, izberite "Prepiši" drug obstoječe vrstice ne bodo izbrisani." @@ -3405,14 +3525,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Uporabni DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} mora biti v formatu: {1} DocType: About Us Settings,Org History Heading,Org Zgodovina Postavka +DocType: Scheduled Job Type,Scheduled Job Type,Načrtovana vrsta zaposlitve DocType: Print Settings,Allow Print for Cancelled,Dovoli Print za Preklicana DocType: Communication,Integrations can use this field to set email delivery status,"Integracije, lahko uporabite to polje za nastavitev stanja dostave email" +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Nimate dovoljenj za preklic vseh povezanih dokumentov. DocType: Web Form,Web Page Link Text,Spletna stran Besedilo povezave DocType: Page,System Page,sistem Stran apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Nastavi privzeti format, velikost strani, print slog itd" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Prilagoditve za <b>{0} so bile</b> izvožene v: <br> {1} DocType: Website Settings,Include Search in Top Bar,Vključi Iskanje v zgornji vrstici +DocType: Scheduled Job Type,Daily Long,Dnevno dolgo DocType: GSuite Settings,Allow GSuite access,Dovoli GSuite dostop DocType: DocType,DESC,DESC DocType: DocType,Naming,Poimenovanje @@ -3505,6 +3628,7 @@ DocType: Notification,Send days before or after the reference date,Pošlji dni p DocType: User,Allow user to login only after this hour (0-24),"Dovoli uporabniku, da se prijavite le po tej uri (0-24)" apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Dodelite enega po enega v zaporedju DocType: Integration Request,Subscription Notification,Obvestilo o naročnini +DocType: Customize Form Field, Allow in Quick Entry ,Dovoli hiter vnos apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ali priložite a DocType: Auto Repeat,Start Date,Datum začetka apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Vrednost @@ -3519,6 +3643,7 @@ DocType: Google Drive,Backup Folder ID,ID za varnostno kopijo mape apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ni v načinu za razvijalce! Postavljena je v site_config.json ali pa 'po meri' DOCTYPE. DocType: Workflow State,globe,globus DocType: System Settings,dd.mm.yyyy,dd.mm.llll +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prednost DocType: Email Queue,Unsubscribe Param,Odjava Param DocType: DocType,Hide Sidebar and Menu,Skrij stransko vrstico in meni @@ -3530,6 +3655,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Dovoli uvoz (s pomočjo Dat apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Nastavitve strani +DocType: Notification Settings,Notification Settings,Nastavitve obvestil apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Shranjevanje ... apps/frappe/frappe/www/update-password.html,Invalid Password,Neveljavno geslo apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} uspešno uvožen zapis od {1}. @@ -3545,6 +3671,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Slika glave črke DocType: Address,Party GSTIN,stranka GSTIN +DocType: Scheduled Job Type,Cron Format,Oblika krone apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Poročilo DocType: SMS Settings,Use POST,Uporabite POST DocType: Communication,SMS,SMS @@ -3590,18 +3717,20 @@ DocType: Workflow,Allow approval for creator of the document,Dovoli dovoljenje z apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Shrani poročilo DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,Končne točke API +DocType: DocType Action,Server Action,Dejanje strežnika apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pogledali {0} od {1} preko IP naslov {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Starševsko polje mora biti veljavno ime polja apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Med spreminjanjem naročnine ni uspelo DocType: LDAP Settings,LDAP Group Field,LDAP Group Field +DocType: Notification Subscribed Document,Notification Subscribed Document,Obvestilo Naročen dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Enako apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Neveljavna oblika CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Napaka pri povezovanju z aplikacijo QZ Tray ... <br><br> Za uporabo funkcije Raw Print morate imeti nameščeno in zagnano aplikacijo QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Kliknite tukaj, če želite prenesti in namestiti QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Kliknite tukaj, če želite izvedeti več o surovem tisku</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Set Število varnostne kopije DocType: DocField,Do not allow user to change after set the first time,"Ne dovolite, da uporabnik spremeni, da po tem, ko nastavite prvič" apps/frappe/frappe/utils/data.py,1 year ago,pred 1 letom +DocType: DocType,Links Section,Oddelek za povezave apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Ogled dnevnika vseh dogodkov za tiskanje, prenos in izvoz" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mesec DocType: Contact,Contact,Kontakt @@ -3628,16 +3757,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,New Email DocType: Custom DocPerm,Export,Izvoz apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Če želite uporabljati Google Koledar, omogočite {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Dodajanje polja statusne odvisnosti {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Uspešno posodobljeno {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ pladenj ni uspel: DocType: Dropbox Settings,Dropbox Settings,Nastavitve Dropbox DocType: About Us Settings,More content for the bottom of the page.,Več vsebine za dnu strani. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ta dokument je bil razveljavljen apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Varnostno kopiranje za Google Drive uspešno. +DocType: Webhook,Naming Series,Poimenovanje zaporedja DocType: Workflow,DocType on which this Workflow is applicable.,"DOCTYPE, na katerih se uporablja ta Workflow." DocType: User,Enabled,Omogočeno apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Nastavitve ni bilo mogoče dokončati apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Novo {0}: {1} -DocType: Tag Category,Category Name,Ime kategorije +DocType: Blog Category,Category Name,Ime kategorije apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Starš mora pridobiti podatke otroške tabele apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Uvozna Naročniki DocType: Print Settings,PDF Settings,Nastavitve PDF @@ -3673,6 +3805,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Koledar apps/frappe/frappe/client.py,No document found for given filters,Ni vnosov za določene filtre apps/frappe/frappe/config/website.py,A user who posts blogs.,"Uporabnik, ki objavlja bloge." +DocType: DocType Action,DocType Action,Dejanje docType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Drug {0} z {1} obstaja ime, izberite drugo ime" DocType: DocType,Custom?,Po meri? DocType: Website Settings,Website Theme Image,Spletna stran Tema slike @@ -3682,6 +3815,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Ne morem apps/frappe/frappe/config/integrations.py,Backup,Rezerva apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Za oblikovanje grafikona nadzorne plošče je potrebna vrsta dokumenta DocType: DocField,Read Only,Le za branje +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Ni mogoče ustvariti razveljavitvenega naročila apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New Newsletter DocType: Energy Point Log,Energy Point Log,Evidenca energetskih točk DocType: Print Settings,Send Print as PDF,Pošlji Print kot PDF @@ -3707,16 +3841,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot apps/frappe/frappe/www/login.html,Or login with,Ali pa se prijavite z DocType: Error Snapshot,Locals,Domačini apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Posredujejo preko {0} od {1} {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} vas je omenil v komentarju v {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Izberi skupino po ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ali = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} je zahtevano DocType: Integration Request,Integration Type,integracija Type DocType: Newsletter,Send Attachements,Pošlji priponke +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nobenega filtra ni mogoče najti apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracija Google Stikov. DocType: Transaction Log,Transaction Log,Dnevnik transakcij apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistika na podlagi uspešnosti prejšnjega meseca (od {0} do {1}) DocType: Contact Us Settings,City,Mesto +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Skrij kartice za vse uporabnike apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,V načinu Prilagodi obrazec omogoči Dovoli samodejno ponovitev za doktype {0} DocType: DocField,Perm Level,Perm Raven apps/frappe/frappe/www/confirm_workflow_action.html,View document,Prikaži dokument @@ -3728,6 +3863,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""V globalnem iskanju 'ni dovoljeno za tip {0} v vrstici {1}" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""V globalnem iskanju' ni dovoljeno za tip {0} v vrstici {1}" DocType: Energy Point Log,Appreciation,Vrednotenje +DocType: Dashboard Chart,Number of Groups,Število skupin apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,pogled seznama DocType: Workflow,Don't Override Status,Ne Prepiši Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Iskalni izraz @@ -3769,7 +3905,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-severozahod-1 DocType: Dropbox Settings,Limit Number of DB Backups,Omejite število varnostnih kopij DB DocType: Custom DocPerm,Level,Stopnja -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Zadnjih 30 dni DocType: Custom DocPerm,Report,Poročilo apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Znesek mora biti večja od 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Povezana s pladnjem QZ! @@ -3786,6 +3921,7 @@ DocType: S3 Backup Settings,us-west-2,nas-zahod-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Izberite Otroška tabela apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Sproži primarno dejanje apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Spremeni +DocType: Social Login Key,User ID Property,Lastnost ID-ja uporabnika DocType: Email Domain,domain name,domena DocType: Contact Email,Contact Email,Kontakt E-pošta DocType: Kanban Board Column,Order,Vrstni red @@ -3808,7 +3944,7 @@ DocType: Contact,Last Name,Priimek DocType: Event,Private,Zasebno apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Levo DocType: Event,All Day,Cel dan apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Izgleda, da je nekaj narobe s konfiguracijo vplačilo te spletne strani. Ne plačila je bil dosežen." DocType: GCalendar Settings,State,Država @@ -3840,7 +3976,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Nastavitve vrat apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Besedilo v vrsti dokumenta -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,preizkuse apps/frappe/frappe/handler.py,Logged Out,odjavljeni apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Več ... DocType: System Settings,User can login using Email id or Mobile number,Uporabnik lahko prijavite preko e-id ali mobilne številke @@ -3857,6 +3992,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Povzetek DocType: Event,Event Participants,Udeleženci prireditve DocType: Auto Repeat,Frequency,frekvenca +DocType: Onboarding Slide,Slide Order,Diapozitiv DocType: Custom Field,Insert After,Vstavite Po DocType: Event,Sync with Google Calendar,Sinhronizacija z Google Koledarjem DocType: Access Log,Report Name,Ime poročila @@ -3884,6 +4020,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max širina za tip valuta je 100px v vrstici {0} apps/frappe/frappe/config/website.py,Content web page.,Vsebina spletne strani. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj novo vlogo +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Obiščite spletno stran +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova dodelitev DocType: Google Contacts,Last Sync On,Zadnja sinhronizacija je vključena DocType: Deleted Document,Deleted Document,izbrisan dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Nekaj je šlo narobe @@ -3894,7 +4032,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pokrajina apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Razširitve Client stran skript Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Zapisi za naslednje doktipe bodo filtrirani -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Planer neaktiven +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Planer neaktiven DocType: Blog Settings,Blog Introduction,Blog Uvod DocType: Global Search Settings,Search Priorities,Prioritete iskanja DocType: Address,Office,Pisarna @@ -3904,13 +4042,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Povezava grafikona nadzorne p DocType: User,Email Settings,Nastavitve e-pošte apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Spusti se sem DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Če je omogočeno, se lahko uporabnik prijavi s katerega koli naslova IP z uporabo dveh faktorjev Auth, to lahko nastavi tudi za vse uporabnike v sistemskih nastavitvah" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Nastavitve tiskalnika ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vnesite geslo za nadaljevanje apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vnesite geslo za nadaljevanje apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Jaz apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ni veljavna država apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Uporabi se za vse vrste dokumentov -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Posodobitev energijske točke +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Posodobitev energijske točke +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Dela zaganjajte samo vsak dan, če so neaktivni (dni)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}"" DocType: Chat Message,Room Type,Tip sobe DocType: Data Import Beta,Import Log Preview,Uvozi predogled dnevnika @@ -3919,6 +4057,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-krog DocType: LDAP Settings,LDAP User Creation and Mapping,Ustvarjanje in preslikava uporabnikov LDAP apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Današnji dogodki apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Žal nam je! Uporabnik mora imeti popoln dostop do lastne evidence. ,Usage Info,uporaba Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Pokaži bližnjice na tipkovnici @@ -3935,6 +4074,7 @@ DocType: DocField,Unique,Unique apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} cenjen {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delni uspeh DocType: Email Account,Service,Storitev +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik DocType: File,File Name,Ime datoteke apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Ni našel {0} za {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3948,6 +4088,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Končaj DocType: GCalendar Settings,Enable,Omogoči DocType: Google Maps Settings,Home Address,Domači naslov apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Naložiš lahko stanuje 5000 zapisov v eni potezi. (sme biti manjša v nekaterih primerih) +DocType: Report,"output in the form of `data = [columns, result]`","izhod v obliki `podatki = [stolpci, rezultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Veljavne vrste dokumentov apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nastavite pravila za uporabniške naloge. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nezadostno dovoljenje za {0} @@ -3965,7 +4106,6 @@ DocType: Communication,To and CC,Da in CC DocType: SMS Settings,Static Parameters,Statični Parametri DocType: Chat Message,Room,soba apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},posodobljen na {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Opravila v ozadju se ne izvajajo. Obrnite se na skrbnika DocType: Portal Settings,Custom Menu Items,Meri z elementi menija apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Vse slike, priložene na diaprojekcijo spletnega mesta, morajo biti javne" DocType: Workflow State,chevron-right,Chevron-desno @@ -3980,11 +4120,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Izbrane vrednosti {0} DocType: DocType,Allow Auto Repeat,Dovoli samodejno ponovitev apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ni vrednosti za prikaz +DocType: DocType,URL for documentation or help,URL za dokumentacijo ali pomoč DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Predloga za e-pošto apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Posnetek {0} je uspešno posodobljen. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Uporabnik {0} nima dostopa doctype z dovoljenjem za vlogo dokumenta {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Oba ime in geslo potrebno +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Pustiti\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Osvežite, da bi dobili najnovejši dokument." DocType: User,Security Settings,Varnostne Nastavitve apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Dodaj stolpec @@ -3994,6 +4136,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Poiščite priloženi {0}: {1} DocType: Web Page,Set Meta Tags,Nastavite Meta oznake +DocType: Email Account,Use SSL for Outgoing,Uporabite SSL za odhodne 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: S3 Backup Settings,Backup Limit,Varnostno kopiranje DocType: Dashboard Chart,Line,Vrstica @@ -4026,4 +4169,3 @@ DocType: DocField,Ignore User Permissions,Ignoriraj dovoljenja uporabnika apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Uspešno shranjeno apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Prosite skrbnika, da preverite svojo prijavo za" DocType: Domain Settings,Active Domains,Aktivne domene -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Pokaži dnevnik diff --git a/frappe/translations/sq.csv b/frappe/translations/sq.csv index 08270f51c0..d494a8b14b 100644 --- a/frappe/translations/sq.csv +++ b/frappe/translations/sq.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Ju lutem zgjidhni një terren shumë. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Po ngarkon skedarin e importit ... DocType: Assignment Rule,Last User,Përdoruesi i fundit -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Një detyrë e re, {0}, ka qenë e caktuar për ju nga {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sesioni i parazgjedhur i ruajtur apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Rifreskoni skedarin DocType: Email Queue,Email Queue records.,Të dhënat Email Radhë. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Tree DocType: User,User Emails,Emails përdoruesit DocType: User,Username,Emri i përdoruesit apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip +DocType: Scheduled Job Type,Create Log,Krijoni Log apps/frappe/frappe/model/base_document.py,Value too big,Vlera shumë të mëdha DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mujor DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktivizo hyrëse apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Rrezik -DocType: Address,Email Address,Email Adresa +apps/frappe/frappe/www/login.py,Email Address,Email Adresa DocType: Workflow State,th-large,-të-mëdha DocType: Communication,Unread Notification Sent,Njoftimi palexuar dërguar apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksporti nuk lejohet. Ju duhet {0} rol për eksport. @@ -83,10 +83,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Anul DocType: DocType,Is Published Field,Publikohet Fusha DocType: GCalendar Settings,GCalendar Settings,Cilësimet e GCalendar DocType: Email Group,Email Group,Email Group +apps/frappe/frappe/__init__.py,Only for {},Vetëm për {} DocType: Event,Pulled from Google Calendar,U tërhoq nga Kalendari Google DocType: Note,Seen By,E pare nga apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Shto Multiple -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Keni fituar disa pikë energjie apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nuk është një përdorues i vlefshëm. DocType: Energy Point Log,Reverted,rikthyer DocType: Success Action,First Success Message,Mesazhi i parë i suksesit @@ -94,6 +94,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Jo si apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Vlera e pasaktë: {0} duhet të jetë {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Pronat ndryshim në terren (të fshehur, Readonly, leje, etj)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,vlerësoj +DocType: Notification Settings,Document Share,Ndarja e dokumenteve DocType: Workflow State,lock,bllokohet apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Cilësimet për Na Kontaktoni Page. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administratori i loguar @@ -107,6 +108,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Nëse aktivizohet, dokumenti shënohet siç shihet, herën e parë që një përdorues e hap atë" DocType: Auto Repeat,Repeat on Day,Përsëriteni Ditën DocType: DocField,Color,Ngjyrë +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Shënoni të gjitha si Lexo DocType: Data Migration Run,Log,Identifikohu DocType: Workflow State,indent-right,indent djathtë DocType: Has Role,Has Role,ka rolin @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Shfaq gjurmimin DocType: DocType,Default Print Format,Gabim Format Print DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Lloji i rrëshqitjes apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Asnjë: Fundi i Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} fushë nuk mund të vendosen si unike në {1}, pasi ka vlera jo-unike ekzistuese" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Llojet dokument @@ -134,7 +137,6 @@ DocType: Language,Guest,Mysafir DocType: DocType,Title Field,Titulli Fusha DocType: Error Log,Error Log,Error Log apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL e pavlefshme -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 ditët e fundit apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Përsërit si "abcabcabc" janë vetëm pak më e vështirë të mendoj se "abc" DocType: Notification,Channel,kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Nëse ju mendoni se kjo është e pa autorizuar, ju lutem ndryshoni Administrator fjalëkalimin." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Zgjidh kolonën apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Kjo formë është ndryshuar pasi që e keni ngarkuar atë DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Regjistri i njoftimeve 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Hapni Shiritin mbresëlënës apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Duket se ka një problem me konfigurimin e shiritit të serverit. Në rast të dështimit, shuma do të kthehet në llogarinë tuaj." @@ -162,7 +165,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Sl apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Dërgoj DocType: Workflow Action Master,Workflow Action Name,Emri Workflow Veprimit apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE nuk mund të bashkohen -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nuk është një skedar zip DocType: Global Search DocType,Global Search DocType,DocType Kërkimi Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -175,7 +178,9 @@ DocType: Newsletter,Email Sent?,Email dërguar? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart apps/frappe/frappe/desk/form/save.py,Did not cancel,A nuk anuloj DocType: Social Login Key,Client Information,Informacioni i Klientit +DocType: Energy Point Rule,Apply this rule only once per document,Aplikoni këtë rregull vetëm një herë në dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Lexoni vetëm varet nga apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Loguar si Vizitor apo Administrator DocType: Email Account,UNSEEN,i padukshëm apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager @@ -198,9 +203,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Arsye 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Asnjë veprimtari +DocType: Server Script,Script Manager,Menaxher i Skenarit +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Asnjë veprimtari apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacionet e palës së tretë apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Asnjë Ngjarje Sot apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ju nuk mund t'i jepni vetes pikat e rishikimit apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType duhet të jetë Submittable për Eventin e zgjedhur të Doc DocType: Workflow State,circle-arrow-up,rrethi-shigjetë-up @@ -247,6 +254,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Përditësimi i {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Raport DocType: Translation,Contributed Translation Doctype Name,Kontribuar Emri Doctype i Përkthimit +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Rregulloje formularin DocType: PayPal Settings,Redirect To,Redirect To DocType: Data Migration Mapping,Pull,Tërhiqe DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formati: frappe.query_reports ['REPORTNAME'] = {} @@ -260,6 +268,7 @@ DocType: DocShare,Internal record of document shares,Rekord i brendshëm i aksio DocType: Energy Point Settings,Review Levels,Nivelet e Rishikimit DocType: Workflow State,Comment,Koment DocType: Data Migration Plan,Postprocess Method,Metoda e Postprocesit +DocType: DocType Action,Action Type,Lloji i veprimit apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Bëj foto DocType: Assignment Rule,Round Robin,Robin e rrumbullakët apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Ju mund ta ndryshoni dokumenteve të paraqitura nga anulimi tyre dhe pastaj, ndryshimin e tyre." @@ -272,6 +281,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,Parë apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Trego më shumë detaje +DocType: Server Script,Before Submit,Para dorëzimit 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,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,Archive,Arkivi @@ -284,10 +294,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Qasja kryesore apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Emri i gabuar fieldname <b>{0}</b> në konfigurimin add_fetch të skriptit personal apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Zgjidhni Kontaktet Google me të cilat kontakti duhet të sinkronizohet. DocType: Web Page,Main Section (HTML),Seksioni kryesor (HTML) +DocType: Scheduled Job Type,Annual,Vjetor DocType: Workflow State,headphones,kufje apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Fjalëkalimi është e nevojshme ose zgjidhni pritje Password DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,p.sh. replies@yourcomany.com. Të gjitha përgjigjet do të vijnë në këtë postë. DocType: Slack Webhook URL,Slack Webhook URL,URL e hithëzuar e Webhook +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Përcakton renditjen e rrëshqitjes në magjistar. Nëse rrëshqitja nuk do të shfaqet, përparësia duhet të vendoset në 0." DocType: Data Migration Run,Current Mapping,Mapping aktuale apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Mail të vlefshme dhe emrin e nevojshme apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Bëni të gjitha bashkëngjitjet private @@ -310,6 +322,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nuk lej apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Reset për standarte DocType: Workflow,Transition Rules,Rregullat e tranzicionit apps/frappe/frappe/core/doctype/report/report.js,Example:,Shembull: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,kufizimet DocType: Workflow,Defines workflow states and rules for a document.,Përcakton shtetet workflow dhe rregullat për një dokument. DocType: Workflow State,Filter,Filtër apps/frappe/frappe/database/schema.py,Fieldname {0} cannot have special characters like {1},Fieldname {0} nuk mund të ketë karaktere të veçanta si {1} @@ -319,6 +332,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,punë apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} regjistrohet nga: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,informacion apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nuk mund të vënë Cakto Submit nëse nuk Submittable DocType: Transaction Log,Row Index,Indeksi i rreshtave DocType: Social Login Key,Facebook,Facebook @@ -336,7 +350,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"nuk mund DocType: Web Form,Button Help,Button Ndihmë DocType: Kanban Board Column,purple,vjollcë DocType: About Us Settings,Team Members,Anëtarët e ekipit +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Do të kryejë punë të planifikuar vetëm një herë në ditë për faqet joaktive. Default 4 ditë nëse vendoset në 0. DocType: Assignment Rule,System Manager,Sistemi Menaxher +DocType: Scheduled Job Log,Scheduled Job,Punë e planifikuar DocType: Custom DocPerm,Permissions,Permissions apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Webhooks i ngathët për integrimin e brendshëm DocType: Dropbox Settings,Allow Dropbox Access,Lejo Dropbox Qasja @@ -389,6 +405,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skano DocType: Email Flag Queue,Email Flag Queue,Email Flag Queue DocType: Access Log,Columns / Fields,Kolonat / fushat apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Formatet e stilet për formatet e printimit +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Fusha e Funksionit Agregate është e nevojshme për të krijuar një tabelë pulti apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,nuk mund të identifikojë të hapur {0}. Provoni diçka tjetër. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Informacioni juaj është dorëzuar apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Përdoruesi {0} nuk mund të fshihet @@ -405,11 +422,12 @@ DocType: Property Setter,Field Name,Emri Fusha DocType: Assignment Rule,Assign To Users,Cakto Përdoruesit apps/frappe/frappe/public/js/frappe/utils/utils.js,or,ose apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Emri modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Vazhdoj +DocType: Onboarding Slide,Continue,Vazhdoj apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Integrimi Google është i çaktivizuar. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,certifikatë apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Duke verifikuar ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Detyra juaj në {0} {1} është hequr apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Kolona të dhënat e parë duhet të jetë bosh. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Trego të gjitha versionet apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Shiko komentin @@ -418,11 +436,13 @@ DocType: Energy Point Log,Review,rishikim DocType: User,Restrict IP,Kufizo IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,baltëpritëse apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Në pamundësi për të dërguar postë elektronike në këtë kohë +DocType: Notification Log,Email Content,Përmbajtja e postës elektronike apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Kërko ose shkruani një komandë DocType: Activity Log,Timeline Name,Emri Timeline DocType: Email Account,e.g. smtp.gmail.com,p.sh. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Shto një rregull të ri DocType: Contact,Sales Master Manager,Sales Master Menaxher +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Ju duhet të aktivizoni JavaScript që aplikacioni juaj të funksionojë. DocType: User Permission,For Value,Për vlerën DocType: Event,Google Calendar ID,ID e Google Kalendarit apps/frappe/frappe/www/complete_signup.html,One Last Step,Një hap i fundit @@ -438,6 +458,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Fusha e emrit të mesëm LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importimi i {0} nga {1} DocType: GCalendar Account,Allow GCalendar Access,Lejo hyrjen në GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} është një fushë e detyrueshme +DocType: DocType,Documentation Link,Lidhje dokumentacioni apps/frappe/frappe/templates/includes/login/login.js,Login token required,Kërkohet shenjë identifikimi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rendi Mujor: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Zgjidhni artikuj të listave të shumta @@ -459,6 +480,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Fotografi URL DocType: Version,Table HTML,Tabela HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Shto abonentë +DocType: Notification Log,Energy Point,Pika e energjisë apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Ngjarjet e ardhshme për Sot DocType: Google Calendar,Push to Google Calendar,Shtyni tek Kalendari Google DocType: Notification Recipient,Email By Document Field,Email me dokument Field @@ -473,12 +495,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,larg DocType: Currency,Fraction Units,Njësitë pjesë apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} nga {1} për të {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Shënoji si të Bërë DocType: Chat Message,Type,Lloj DocType: Google Settings,OAuth Client ID,ID e Klientit OAuth DocType: Auto Repeat,Subject,Subjekt apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Kthehu tek Desk DocType: Web Form,Amount Based On Field,Shuma bazë On Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} nuk ka asnjë version të ndjekur. apps/frappe/frappe/core/doctype/docshare/docshare.py,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ë @@ -501,6 +523,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Ju lutem kontrolloni email tuaj për verifikim apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fish nuk mund të jetë në fund të formularit DocType: Communication,Bounced,Mori veten +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,të DocType: Deleted Document,Deleted Name,Emri i fshirë apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistemit dhe Website Përdoruesit DocType: Workflow Document State,Doc Status,Doc Statusi @@ -511,6 +534,7 @@ DocType: Language,Language Code,Kodi Gjuha DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Shënim: Me anë të postës elektronike dërgohen email për dështimet e dështuara. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Shto Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS dërguar në numrat e mëposhtëm: {0} +DocType: Notification Settings,Assignments,Detyrat apps/frappe/frappe/utils/data.py,{0} and {1},{0} dhe {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Filloni një bisedë. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Gjithmonë shtoni "Draft" Shkon për të printuar dokumente draft @@ -519,6 +543,7 @@ DocType: Data Migration Run,Current Mapping Start,Fillimi i hartës aktuale apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email është shënuar si spam DocType: Comment,Website Manager,Website Menaxher apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Ngarkimi i dokumentit është i shkyçur. Ju lutemi provoni përsëri. +DocType: Data Import Beta,Show Failed Logs,Shfaqni Shkrimet e Dështuara apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,përkthime apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Ju Draft zgjedhur ose dokumente Anullohen apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumenti {0} është caktuar për të deklaruar {1} nga {2} @@ -526,7 +551,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumenti në radhë DocType: GSuite Templates,Destination ID,ID destinacion DocType: Desktop Icon,List,Listë DocType: Activity Log,Link Name,Link Emri +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Nuk keni \ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,Rrëshqitje në bord apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Fjalëkalim i pavlefshëm: apps/frappe/frappe/core/doctype/user/user.py,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 @@ -586,6 +613,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},I suksesshëm: {0} në {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Drop +DocType: Dashboard Chart,Aggregate Function Based On,Funksioni i përgjithshëm bazuar në apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Ju lutemi të kopjuar këtë për të bërë ndryshime apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Shtypni Enter për ta ruajtur apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Gjenerata PDF dështuar për shkak të thyer lidhjet e imazhit @@ -599,7 +627,9 @@ DocType: Notification,Days Before,Ditët e Para apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Ngjarjet ditore duhet të përfundojnë në të njëjtën ditë. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ... DocType: Workflow State,volume-down,vëllimit-down +DocType: Onboarding Slide,Help Links,Ndihmë Lidhje apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Qasja nuk lejohet nga kjo Adresë IP +DocType: Notification Settings,Enable Email Notifications,Aktivizo njoftimet me postë elektronike apps/frappe/frappe/desk/reportview.py,No Tags,Asnjë Tags DocType: Email Account,Send Notification to,Dërgo Njoftimi për DocType: DocField,Collapsible,Që paloset @@ -628,6 +658,7 @@ DocType: Google Drive,Last Backup On,Rikthimi i fundit i aktivizuar DocType: Customize Form Field,Customize Form Field,Customize Form Field DocType: Energy Point Rule,For Document Event,Për Ngjarjen e Dokumentit DocType: Website Settings,Chat Room Name,Emri i dhomës së bisedës +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,i pandryshuar DocType: OAuth Client,Grant Type,Grant Lloji apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Kontrolloni cilat Dokumentet janë të lexueshme për anëtarët DocType: Deleted Document,Hub Sync ID,ID e sinkronizimit të Hub @@ -635,6 +666,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,për DocType: Auto Repeat,Quarterly,Tremujor apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Gjithe kohes apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Statusi i dokumentit ilegal për {0} DocType: Email Account,Enable Auto Reply,Aktivizo Auto Përgjigje apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nuk shihet @@ -647,6 +679,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Mesaz DocType: Email Account,Notify if unreplied,Të njoftojë nëse unreplied apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skano QR Code dhe futni kodin që rezulton të shfaqet. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktivizoni gradientët +DocType: Scheduled Job Type,Hourly Long,Ore gjate DocType: System Settings,Minimum Password Score,Minimum Password Score DocType: DocType,Fields,Fushat DocType: System Settings,Your organization name and address for the email footer.,Emri juaj organizimi dhe adresa për futboll email. @@ -658,6 +691,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in r DocType: Print Format,Default Print Language,Gjuha e printuar e paracaktuar apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Paraardhësit e apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nuk mund të fshihet +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Asnjë regjistër i dështuar apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Nuk ka komente ende apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Ju lutemi të konfiguroni SMS përpara se ta vendosni atë si një metodë vërtetimi, nëpërmjet SMS Settings" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Dy DOCTYPE dhe Emri nevojshme @@ -681,6 +715,7 @@ DocType: Website Settings,Footer Items,Items Footer apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,I përditshëm +DocType: Onboarding Slide,Max Count,Numërimi maksimal apps/frappe/frappe/config/users_and_permissions.py,User Roles,Rolet User DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Pronës Setter refuzon një DOCTYPE standarde ose pronë Field apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nuk mund Update: Keni gabuar / Link skaduar. @@ -699,6 +734,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Mikpritës DocType: Data Import Beta,Import File,Dosja e importit +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Gabimi në shabllon apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Kolonë <b>{0}</b> ekzistojnë. DocType: ToDo,High,I lartë apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ngjarje e re @@ -714,6 +750,7 @@ DocType: Web Form Field,Show in filter,Trego në filtër DocType: Address,Daman and Diu,Daman dhe Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Personal +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Cilësimet e shtypjes së papërpunuara ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Shikoni https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region për detaje. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Rename DocType: Email Queue,Show as cc,Tregoje si cc @@ -723,6 +760,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Merrni video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Informacioni hyrës për Na Kontaktoni Page DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-poshtë +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Anulimi i dokumenteve DocType: User,Send Notifications for Email threads,Dërgoni njoftime për temat e postës elektronike apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Jo në modë Zhvilluesish @@ -730,7 +768,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Rezervimi i DocType: DocField,In Global Search,Global Kërko DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-majtë -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit më parë apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Kjo është e rrezikshme për të fshirë këtë skedë: {0}. Ju lutemi të kontaktoni Sistemit Soccer tuaj. DocType: Currency,Currency Name,Valuta Emri apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nuk Emails @@ -745,11 +782,13 @@ DocType: Energy Point Rule,User Field,Fusha e përdoruesit DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} tashmë c'regjistruar për {1} {2} +DocType: Scheduled Job Type,Stopped,U ndal apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,A nuk heqë apps/frappe/frappe/desk/like.py,Liked,Pëlqente apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Dërgo Tani apps/frappe/frappe/core/doctype/doctype/doctype.py,"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" apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Lejoni Vizitorin DocType: Report,Query,Pyetje DocType: Customize Form,Sort Order,Rendit apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"Në Lista View" nuk lejohet për llojin {0} në rresht {1} @@ -771,10 +810,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Dy metoda Authentication Factor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Së pari vendosni emrin dhe ruani të dhënat. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 rekorde +DocType: DocType Link,Link Fieldname,Lidhje Emri Fusha apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Ndahen me {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Unsubscribe DocType: View Log,Reference Name,Referenca Emri apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Ndrysho përdoruesin +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,i parë apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Përditësimi i përkthimeve DocType: Error Snapshot,Exception,Përjashtim DocType: Email Account,Use IMAP,Përdorimi IMAP @@ -789,6 +830,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Rregullat përcaktojnë kalimin e shtetit në workflow. DocType: File,Folder,Dosje DocType: Website Route Meta,Website Route Meta,Rruga e internetit Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Fusha e rrëshqitjes në bord DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Menaxher apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Opsioni 1 @@ -814,7 +856,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfiguro tabelat DocType: User,Last IP,IP e fundit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Ju lutemi shtoni një subjekt në email-in tuaj -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Një dokument i ri {0} është ndarë nga ju me {1}. DocType: Data Migration Connector,Data Migration Connector,Lidhësi i Migracionit të të Dhënave apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} u kthye {1} DocType: Email Account,Track Email Status,Gjurmoni statusin e emailit @@ -865,6 +906,7 @@ DocType: Email Account,Default Outgoing,Gabim largohet DocType: Workflow State,play,luaj apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klikoni në linkun e mëposhtëm për të përfunduar regjistrimin tuaj dhe të vendosur një fjalëkalim të ri apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,A nuk e shtuar +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} fitoi {1} pikë për {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Asnjë Email Llogaritë Assigned DocType: S3 Backup Settings,eu-west-2,eu-west-2 DocType: Contact Us Settings,Contact Us Settings,Na Kontaktoni Settings @@ -873,6 +915,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Duke kër DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,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/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Kërkoni sipas emrit ose skedarit shtesë +DocType: Onboarding Slide,Slide Title,Titulli i rrëshqitjes DocType: Notification,View Properties (via Customize Form),Shiko Prona (nëpërmjet Customize Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klikoni në një skedar për ta zgjedhur atë. DocType: Note Seen By,Note Seen By,Shënim Seen By @@ -899,13 +942,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Ndaje URL-në DocType: System Settings,Allow Consecutive Login Attempts ,Lejo përpjekjet e hyrjes në rradhë apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Ndodhi një gabim gjatë procesit të pagesës. Ju lutem na kontaktoni. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Nëse Slide Type është Krijimi ose Cilësimet, duhet të ketë një metodë 'create_onboarding_docs' në skedarin {ref_doctype} .py i cili duhet të ekzekutohet pas përfundimit të rrëshqitjes." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ditë më parë DocType: Email Account,Awaiting Password,Në pritje Password DocType: Address,Address Line 1,Adresa Line 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Nuk ka pasardhës të DocType: Contact,Company Name,Emri i kompanisë DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Cilësimet ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,te shfletuesi juaj apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,regjistrues @@ -964,6 +1007,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Vini në pah nëse emaili juaj është hapur nga marrësi. <br> Shënim: Nëse po dërgoni tek marrësit e shumtë, edhe nëse 1 marrësi lexon emailin, do të konsiderohet "Hapur"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Vlerave të zhdukur kërkuar apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Lejo Qasjen e Kontakteve të Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,E kufizuar DocType: Data Migration Connector,Frappe,frape apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Mark si të palexuara DocType: Activity Log,Operation,Operacion @@ -1017,6 +1061,7 @@ DocType: Web Form,Allow Print,Lejo Printo DocType: Communication,Clicked,Klikuar apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nuk ka leje për të '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi konfiguroni llogarinë e paracaktuar të postës elektronike nga Konfigurimi> Email> Llogari Email apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planifikuar për të dërguar DocType: DocType,Track Seen,Track Parë DocType: Dropbox Settings,File Backup,Rikthim i dokumentit @@ -1025,12 +1070,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Asnjë {0} gj apps/frappe/frappe/config/customization.py,Add custom forms.,Shto forma doganore. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} në {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,dorëzuar këtë dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Lejet e Përdoruesit apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistemi ofron shumë para-përcaktuar rolet. Ju mund të shtoni role të reja për të vendosur lejet finer. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Emri i shkyçjes -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Fushat +DocType: Onboarding Slide,Domains,Fushat DocType: Blog Category,Blog Category,Blog Kategoria apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Nuk mund të hartë sepse gjendja pas dështon: DocType: Role Permission for Page and Report,Roles HTML,Rolet HTML @@ -1071,7 +1115,6 @@ DocType: Assignment Rule Day,Saturday,E shtunë DocType: User,Represents a User in the system.,Përfaqëson një përdoruesin në sistemin. DocType: List View Setting,Disable Auto Refresh,Disaktivizoni rifreskimin automatik DocType: Comment,Label,Etiketë -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Detyra {0}, që ju caktuar për {1}, ka qenë e mbyllur." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Ju lutemi mbyllni këtë dritare DocType: Print Format,Print Format Type,Printo Format Type DocType: Newsletter,A Lead with this Email Address should exist,Një Lead me këtë adresë email duhet të ekzistojë @@ -1087,6 +1130,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP Parametrat për em apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,zgjidhni një DocType: Data Export,Filter List,Lista e filtrave DocType: Data Export,Excel,shquhem +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Përgjigju Mesazh DocType: Data Migration Mapping,Condition,Kusht apps/frappe/frappe/utils/data.py,{0} hours ago,{0} orëve @@ -1105,12 +1149,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Knowledge Base Kontribues DocType: Communication,Sent Read Receipt,Sent Read Receipt DocType: Email Queue,Unsubscribe Method,Metoda Unsubscribe +DocType: Onboarding Slide,Add More Button,Shtoni butonin më shumë DocType: GSuite Templates,Related DocType,Faqet DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Edit për të shtuar përmbajtje apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Zgjidh Gjuha apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Detajet e Kartës apps/frappe/frappe/__init__.py,No permission for {0},Nuk ka leje për {0} DocType: DocType,Advanced,I përparuar +DocType: Onboarding Slide,Slide Image Source,Burimi i figurës së rrëshqitjes apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referenca: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,mrs @@ -1127,6 +1173,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mjeshtër DocType: DocType,User Cannot Create,Përdoruesi nuk mund të krijoni apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,U krye me sukses apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Qasje Dropbox është aprovuar! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Jeni i sigurt që doni të bashkoni {0} me {1}? DocType: Customize Form,Enter Form Type,Shkruani Form Lloji DocType: Google Drive,Authorize Google Drive Access,Autorizoni Qasjen e Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parametri i humbur Emri i bordit Kanban @@ -1135,7 +1182,6 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Re apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Ju nuk jeni të lidhur në Internet. Përpiquni pas diku. apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lejimi DOCTYPE, DOCTYPE. Të jenë të kujdesshëm!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formate përshtatur për printim, Email" -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Përditësuar për versionin e ri DocType: Custom Field,Depends On,Varet nga DocType: Kanban Board Column,Green,E gjelbër DocType: Custom DocPerm,Additional Permissions,Lejet shtesë @@ -1160,6 +1206,7 @@ DocType: Address,Is Your Company Address,Është kompania juaj Adresa DocType: Energy Point Log,Social,social apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Editing Row DocType: Workflow Action Master,Workflow Action Master,Workflow Veprimi Master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Fshij te gjitha DocType: Custom Field,Field Type,Fusha Type apps/frappe/frappe/utils/data.py,only.,vetëm. DocType: Route History,Route History,Historia e Rrugës @@ -1194,11 +1241,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Keni harruar fjalëkalimin? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,server Error +DocType: Server Script,After Delete,Pas Fshirjes apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Shihni të gjitha raportet e kaluara. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Identifikohu Id është e nevojshme DocType: Website Slideshow,Website Slideshow,Website Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nuk ka të dhëna DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Lidhje që është faqja e internetit në shtëpi. Lidhjet standarde (indeksi, login, produktet, blog, lidhje, kontakt)" +DocType: Server Script,After Submit,Pas Paraqitjes apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Authentication dështuar duke marrë email nga Email llogarisë {0}. Mesazh nga serveri: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Custom Field @@ -1239,15 +1288,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Në qoftë se përdoruesi ka ndonjë rol kontrolluar, atëherë përdoruesi bëhet një "User System". "User System" ka qasje në desktop" DocType: System Settings,Date and Number Format,Data dhe numri Format apps/frappe/frappe/model/document.py,one of,një nga -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Rregulloje formularin apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontrolluar një moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Shfaq Tags DocType: DocField,HTML Editor,Editor HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfigurimi> Përdoruesi +DocType: DocType,Actions,Veprimet DocType: Workflow State,align-justify,lidhur-justifikojnë DocType: User,Middle Name (Optional),Emri e Mesme (Fakultativ) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Nuk lejohet @@ -1262,6 +1309,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nuk Rezulta DocType: System Settings,Security,Siguri apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planifikuar për të dërguar për {0} marrësit apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Prerje +DocType: Server Script,After Save,Pas Ruajtjes apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},emërtuar nga {0} në {1} DocType: Currency,**Currency** Master,** Valuta ** Master DocType: Email Account,No of emails remaining to be synced,Nr i email mbetura të synced @@ -1287,16 +1335,19 @@ DocType: Prepared Report,Filter Values,Vlerat e filtrit DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,dështoj DocType: Workflow State,download-alt,Shkarko-alt +DocType: Scheduled Job Type,Last Execution,Ekzekutimi i fundit DocType: Data Migration Run,Pull Failed,Tërhiqe dështuar apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Trego / fshih kartat DocType: Communication,Feedback Request,Feedback Kërkesë apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importo të dhënat nga dosjet CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,fushat në vijim mungojnë: +DocType: Notification Log,From User,Nga Përdoruesi apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Anulimi i {0} DocType: Web Page,Main Section,Pjesa kryesore DocType: Page,Icon,Ikonë apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: përfshin simbole, numra dhe shkronja kapitale në fjalëkalimin" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: përfshin simbole, numra dhe shkronja kapitale në fjalëkalimin" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfiguroni njoftimet për përmendjet, caktimet, pikat e energjisë dhe më shumë." DocType: DocField,Allow in Quick Entry,Lejo hyrjen e shpejtë apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / vvvv @@ -1328,7 +1379,6 @@ DocType: Website Theme,Theme URL,URL e temës DocType: Customize Form,Sort Field,Rendit Fusha DocType: Razorpay Settings,Razorpay Settings,Cilësimet Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Ndrysho Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Shto Më shumë DocType: System Settings,Session Expiry Mobile,Sesioni Expiry Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Përdorues i pasaktë ose fjalëkalim apps/frappe/frappe/templates/includes/search_box.html,Search results for,Rezultatet e kerkimit per @@ -1344,8 +1394,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Rregulla e pikës së energjisë DocType: Communication,Delayed,I vonuar apps/frappe/frappe/config/settings.py,List of backups available for download,Lista e backups në dispozicion për shkarkim +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Provoni Importin e ri të të Dhënave apps/frappe/frappe/www/login.html,Sign up,Regjistrohu apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rresht {0}: Nuk lejohet çaktivizimi i detyrueshëm për fushat standarde +DocType: Webhook,Enable Security,Aktivizoni sigurinë apps/frappe/frappe/config/customization.py,Dashboards,dashboards DocType: Test Runner,Output,prodhim DocType: Milestone,Track Field,Fusha e pista @@ -1364,6 +1416,7 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Vendosni filtrat DocType: Contact Us Settings,Email ID,Email ID DocType: Energy Point Rule,Multiplier Field,Fusha shumëzuese +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Nuk mund të krijonte rendin Razorpay. Ju lutemi kontaktoni administratorin DocType: Dashboard Chart,Time Interval,Interval kohor DocType: Activity Log,Keep track of all update feeds,Mbani gjurmët e të gjitha ushqimeve të përditësuara DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Një listë e burimeve të cilat Klienti App do të kenë qasje për të, pasi përdoruesit e lejon atë. <br> p.sh. projekti" @@ -1384,6 +1437,7 @@ DocType: DefaultValue,Key,Kyç DocType: Address,Contacts,Kontaktet DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raporti i të gjitha aksioneve dokument +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Modeli i importit duhet të jetë i llojit .csv, .xlsx ose .xls" apps/frappe/frappe/www/update-password.html,New Password,New Fjalëkalimi apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} zhdukur apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Na vjen keq! Ju nuk mund të fshini auto-generated komente @@ -1400,6 +1454,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,run DocType: Blog Post,Content (HTML),Përmbajtja (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Konfigurimi për DocType: Personal Data Download Request,User Name,Emri i përdoruesit DocType: Workflow State,minus-sign,minus-shenjë apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found @@ -1407,6 +1462,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Asnjë {0} leje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksportit Custom Permissions apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Asnjë artikull nuk u gjet. DocType: Data Export,Fields Multicheck,Fushat Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Përfundoni DocType: Activity Log,Login,Hyrje DocType: Web Form,Payments,Pagesat apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} @@ -1434,6 +1490,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modele apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Gabim në Leje apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Emri i {0} nuk mund të jetë i {1} DocType: User Permission,Applicable For,Të zbatueshme për +DocType: Dashboard Chart,From Date,Nga Data apps/frappe/frappe/core/doctype/version/version_view.html,Success,Sukses apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesioni skaduar apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesioni skaduar @@ -1446,7 +1503,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suk apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nuk lejohet në gjendje DocType: Async Task,Async Task,Asinkron Task DocType: Workflow State,picture,foto -apps/frappe/frappe/www/complete_signup.html,Complete,I plotë +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,I plotë DocType: DocType,Image Field,Image Field DocType: Print Format,Custom HTML Help,Custom HTML Ndihmë DocType: LDAP Settings,Default Role on Creation,Roli i paracaktuar në krijim @@ -1454,6 +1511,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Shteti tjetër DocType: User,Block Modules,Modulet Blloku DocType: Print Format,Custom CSS,Custom CSS +DocType: Energy Point Rule,Apply Only Once,Aplikoni vetëm një herë apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Shto një koment DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Injoruar: {0} në {1} @@ -1464,6 +1522,7 @@ DocType: Address,Postal,Postar DocType: Email Account,Default Incoming,Gabim hyrëse DocType: Workflow State,repeat,përsëritje DocType: Website Settings,Banner,Flamur +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Anuloni të gjitha dokumentet 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Shkoni te {0} Lista apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Të ndihmojë në Kërko @@ -1472,6 +1531,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Regjistruar apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Përsëritja automatike për këtë dokument është çaktivizuar. DocType: DocType,Hide Copy,Fshih Copy apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Qartë të gjitha rolet +DocType: Server Script,Before Save,Para Ruajtjes apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} duhet të jetë unik apps/frappe/frappe/model/base_document.py,Row,Rresht apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Email Template" @@ -1481,7 +1541,6 @@ DocType: Workflow State,Check,Kontrollo DocType: Chat Profile,Offline,në linjë DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Dërgo mesazh unsubscribe në email -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Titulli apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname i cili do të jetë DOCTYPE për këtë fushë link. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Dokumentet caktuar për ju dhe nga ju. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Ju gjithashtu mund të kopjoni-ngjitur këtë @@ -1511,8 +1570,10 @@ DocType: Data Migration Run,Total Pages,Totali i faqeve DocType: DocField,Attach Image,Bashkangjit Image DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Fjalëkalimi Përditësuar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Lejet e Përdoruesit apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Hapat për të verifikuar hyrjen tënde apps/frappe/frappe/utils/password.py,Password not found,Password nuk u gjet +DocType: Webhook,Webhook Secret,Sekreti i faqes në internet DocType: Data Migration Mapping,Page Length,Gjatësia e faqes DocType: Email Queue,Expose Recipients,Expose Recipients apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append Për të është e detyrueshme për mesazhet hyrëse @@ -1539,6 +1600,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Attachment Size (në MB) apps/frappe/frappe/www/login.html,Have an account? Login,Keni një llogari? Hyrje +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Printo Cilësimet ... DocType: Workflow State,arrow-down,shigjetë-down apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Përdoruesi nuk lejohet të fshini {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} e {1} @@ -1558,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Fusni fja DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Qasja Sekret DocType: Tag Link,Document Title,Titulli i dokumentit apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Detyrueshëm) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit më parë DocType: Social Login Key,Social Login Provider,Ofruesi i Identifikimit Social apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Shto Një tjetër koment apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nuk gjenden të dhëna në skedar. Ju lutemi ri-vendosni skedarin e ri me të dhëna. @@ -1572,11 +1635,12 @@ DocType: Workflow State,hand-down,dorë poshtë apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Asnjë fushë nuk u gjet që mund të përdoret si kolonë Kanban. Përdorni Formularin Rregulloje për të shtuar një Fushë Custom të tipit "Zgjidh". DocType: Address,GST State,GST State apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Nuk mund të vënë Cancel pa Submit +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Përdoruesi ({0}) DocType: Website Theme,Theme,Temë DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI detyruar të Kodit Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Ndihmë e Hapur DocType: DocType,Is Submittable,Është Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Përmendja e re +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Përmendja e re apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Asnjë kontakte të reja të Google nuk u sinkronizua. DocType: File,Uploaded To Google Drive,Të ngarkuar në Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Vlerë të një fushë kontroll mund të jetë 0 ose 1 @@ -1586,7 +1650,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,Emërtimi Seria detyr DocType: Workflow State,Inbox,Inbox DocType: Kanban Board Column,Red,I kuq DocType: Workflow State,Tag,Etiketë -DocType: Custom Script,Script,Dorëshkrim +DocType: Report,Script,Dorëshkrim apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumenti nuk mund të ruhet. DocType: Energy Point Rule,Maximum Points,Pikët maksimale apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Cilësimet e mia @@ -1615,9 +1679,12 @@ DocType: Email Queue,Email Queue,Email Queue DocType: Address,Haryana,Haryana apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolet mund të vendosen për përdoruesit nga faqja e tyre të përdoruesit. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Shto koment +DocType: Dashboard Chart,Select Date Range,Zgjidhni Gama e datave DocType: DocField,Mandatory,I detyrueshëm apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module të eksportit +DocType: Scheduled Job Type,Monthly Long,Gjatësia mujore apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Jo lejet themelore set +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Dërgoni një email në {0} për ta lidhur këtu apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Kuptimi i Submit, Cancel Ndreqni" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Për të bërë @@ -1625,7 +1692,6 @@ DocType: Test Runner,Module Path,Path Module DocType: Milestone Tracker,Track milestones for any document,Ndiqni piketa për çdo dokument DocType: Social Login Key,Identity Details,Detajet e Identitetit apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Shfaq pultin -apps/frappe/frappe/desk/form/assign_to.py,New Message,Mesazh i ri DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-raporti DocType: Data Import Beta,Template Warnings,Paralajmërimet e shablloneve @@ -1642,12 +1708,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Emri apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nuk ka leje të vendosur për këtë kriter. DocType: Auto Email Report,Auto Email Report,Auto Email Raporti +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Dokumenti i ri i përbashkët apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Fshij koment? DocType: Address Template,This format is used if country specific format is not found,Ky format përdoret në qoftë se format specifik i vendit nuk është gjetur DocType: System Settings,Allow Login using Mobile Number,Lejo Login duke përdorur Numri Mobile apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Nëse aktivizohet, përdoruesit që hyjnë nga adresa IP e kufizuar, nuk do të nxiten për Auth Auth Two Factor" +DocType: Server Script,After Cancel,Pas Anulimit DocType: Auto Repeat,Get Contacts,Merrni kontaktet apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Postimet e ngritur nën {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kaloni kolonën pa titull @@ -1658,6 +1726,7 @@ DocType: User,Login After,Identifikohu Pas DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Shtypje DocType: Workflow State,thumbs-up,thumbs-up +DocType: Notification Log,Mention,Përmendja DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision duhet të jetë midis 1 dhe 6 @@ -1665,7 +1734,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,dhe apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ky raport është krijuar në {0} DocType: Error Snapshot,Frames,Frames -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,detyrë +DocType: Notification Log,Assignment,detyrë DocType: Notification,Slack Channel,Kanali i lirshëm DocType: About Us Team Member,Image Link,Image Link DocType: Auto Email Report,Report Filters,Raporti Filters @@ -1682,6 +1751,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Në pamundësi për të rinovuar ngjarje apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Kodi i verifikimit është dërguar në adresën tuaj të postës elektronike. apps/frappe/frappe/core/doctype/user/user.py,Throttled,i mbytur +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Synimi juaj apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtri duhet 4 vlerat (DOCTYPE, fieldname, operatori, vlera): {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Zbatoni rregullën e caktimit apps/frappe/frappe/utils/bot.py,show,shfaqje @@ -1725,6 +1795,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Faqe zhdukur ose lëvizur apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Shqyrtime DocType: DocType,Route,rrugë apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay settings Pagesa Gateway +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} fitoi {1} pikë për {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Fetch imazhet e bashkangjitura nga dokumenti DocType: Chat Room,Name,Emër DocType: Contact Us Settings,Skype,skype @@ -1735,7 +1806,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Lidhje të h apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Gjuha jote DocType: Dashboard Chart,Average,mesatare apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Shto Row -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Query duhet të jetë një SELECT DocType: Auto Repeat,Completed,I përfunduar @@ -1793,6 +1863,7 @@ DocType: GCalendar Account,Next Sync Token,Toka e ardhshme e sinkronizimit DocType: Energy Point Settings,Energy Point Settings,Cilësimet e pikës së energjisë DocType: Async Task,Succeeded,Sukses apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Fushat e detyrueshme të kërkuara në {0} +DocType: Onboarding Slide Field,Align,Align apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Lejet reset për {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Përdoruesit dhe Lejet DocType: S3 Backup Settings,S3 Backup Settings,S3 Cilësimet e Ruajtjes @@ -1809,7 +1880,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Emri i formatit të ri të shtypjes apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klikoni në lidhjen më poshtë për të aprovuar kërkesën DocType: Workflow State,align-left,lidhur-la +DocType: Onboarding Slide,Action Settings,Cilësimet e veprimit DocType: User,Defaults,Defaults +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Për krahasim, përdorni> 5, <10 ose = 324. Për vargjet, përdorni 5:10 (për vlerat midis 5 dhe 10)." DocType: Energy Point Log,Revert Of,Kthehu apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Përziej me ekzistuese DocType: User,Birth Date,Data e lindjes @@ -1864,6 +1937,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Në DocType: Notification,Value Change,Vlera Ndryshimi DocType: Google Contacts,Authorize Google Contacts Access,Autorizoni Qasjen e Kontakteve të Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Shfaq vetëm fusha Numerike nga Raporti +apps/frappe/frappe/utils/data.py,1 week ago,1 javë më parë DocType: Data Import Beta,Import Type,Lloji i importit DocType: Access Log,HTML Page,Faqe HTML DocType: Address,Subsidiary,Ndihmës @@ -1872,7 +1946,6 @@ DocType: System Settings,In Hours,Në orët apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Me letër me kokë apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invalid Mail Server po largohet ose Port DocType: Custom DocPerm,Write,Shkruaj -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Vetëm Administrator lejuar për të krijuar Query / script Raportet apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Përditësimi DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "vlera" është e detyrueshme. Ju lutemi specifikoni vlerë të përditësuar @@ -1882,6 +1955,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Fto si Pë DocType: Data Migration Run,Started,Started apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Përdoruesi {0} nuk ka qasje në këtë dokument DocType: Data Migration Run,End Time,Fundi Koha +DocType: Dashboard Chart,Group By Based On,Grupi Bazuar Në apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Zgjidhni Attachments apps/frappe/frappe/model/naming.py, for {0},për {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Ju nuk jeni i lejuar për të shtypur këtë dokument @@ -1923,6 +1997,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verifikoj DocType: Workflow Document State,Update Field,Update Fusha DocType: Chat Profile,Enable Chat,Aktivizo Chat DocType: LDAP Settings,Base Distinguished Name (DN),Base nderuar Emri (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lënë këtë bisedë apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Opsione nuk është caktuar për fushën Lidhje {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Radhë / punëtor @@ -1991,12 +2066,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Hyr nuk lejohet në këtë kohë DocType: Data Migration Run,Current Mapping Action,Veprimi i Hartave aktuale DocType: Dashboard Chart Source,Source Name,burimi Emri -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Asnjë llogari emaili e lidhur me Përdoruesin. Ju lutemi shtoni një llogari nën Përdoruesin> Kutia e postës elektronike. DocType: Email Account,Email Sync Option,Email Option Sync apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rreshti Nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Është mbështjellë DocType: Contact Us Settings,Introduction,Paraqitje +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Kam nevojë për ndihmë? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin në nivel global apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Ndjekur nga DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2005,7 +2080,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Tashmë n DocType: User Email,Enable Outgoing,Aktivizo largohet DocType: Address,Fax,Faks apps/frappe/frappe/config/customization.py,Custom Tags,Custom Tags -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Llogaria e postës elektronike nuk është konfiguruar. Ju lutemi krijoni një llogari të re Email nga Konfigurimi> Email> Llogaria e postës elektronike DocType: Comment,Submitted,Dërguar DocType: Contact,Pulled from Google Contacts,Tërhequr nga Kontaktet Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Kërkesë e pavlefshme @@ -2026,9 +2100,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Faqja Kryes apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Cakto për mua DocType: DocField,Dynamic Link,Link Dinamik apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Shtypni tastin Alt për të shkaktuar shkurtore shtesë në menu dhe sidebar +DocType: Dashboard Chart,To Date,Deri më sot DocType: List View Setting,List View Setting,Vendosja e shikimit të listës apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Shfaq dështuar Punë -DocType: Event,Details,Detalet +DocType: Scheduled Job Log,Details,Detalet DocType: Property Setter,DocType or Field,DOCTYPE apo Fusha apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ju nuk e hapët këtë dokument apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Ngjyra primare @@ -2037,7 +2112,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Duket Key publikueshme ose Secret Key është e gabuar !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Duket Key publikueshme ose Secret Key është e gabuar !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Ndihmë e shpejtë për vendosjen e lejeve -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE të caktojë Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Trego rifillimi apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Email është zhvendosur në plehra DocType: Report,Report Builder,Raporti Builder @@ -2053,6 +2127,7 @@ DocType: Workflow State,Upload,Ngarko DocType: User Permission,Advanced Control,Kontroll i avancuar DocType: System Settings,Date Format,Data Format apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Jo Publikuar +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nuk u gjet asnjë shabllon i adresës së paracaktuar. Ju lutemi krijoni një të re nga Setup> Printimi dhe Markimi> Modeli i Adresave. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Veprimet për workflow (p.sh. miratojë, Cancel)." DocType: Data Import,Skip rows with errors,Kalo rreshta me gabime DocType: Workflow State,flag,flamur @@ -2062,14 +2137,13 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Doku apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hidhen në fushë DocType: Contact Us Settings,Forward To Email Address,Forward Për Email Adresa DocType: Contact Phone,Is Primary Phone,.Shtë telefon primar -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Dërgoni një email në {0} për ta lidhur këtu. DocType: Auto Email Report,Weekdays,gjatë ditëve të javës apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titulli fushë duhet të jetë një fieldname vlefshme DocType: Post Comment,Post Comment,Postoni koment apps/frappe/frappe/config/core.py,Documents,Dokumentet apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktiviteti Log nga DocType: Social Login Key,Custom Base URL,URL e Bazës Custom -DocType: Email Flag Queue,Is Completed,është e përfunduar +DocType: Onboarding Slide,Is Completed,është e përfunduar apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Merr Fushat apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Ndrysho Profilin DocType: Kanban Board Column,Archived,Arkivuar @@ -2080,19 +2154,19 @@ 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 DocType: Social Login Key,Office 365,Zyra 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,sot -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,sot +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,sot +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,sot apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Paraqisni pas importit DocType: Error Log,Log of Scheduler Errors,Identifikohu i Gabimet scheduler DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Lidhje Ndihme për Slide në bord DocType: OAuth Client,App Client Secret,App Klienti Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Dorëzimi apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Prindi është emri i dokumentit në të cilin do të shtohen të dhënat. DocType: DocType,UPPER CASE,ME SHKRONJA KAPITALE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Custom HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Shkruani emrin dosje -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Asnjë model i adresës së paracaktuar nuk u gjet. Ju lutemi krijoni një të re nga Setup> Printimi dhe Markimi> Modeli i Adresave. apps/frappe/frappe/auth.py,Unknown User,Përdorues i panjohur apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Zgjidh Roli DocType: Comment,Deleted,Deleted @@ -2108,7 +2182,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Krijoni grafikun apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Mos importo -DocType: Web Page,Center,Qendër +DocType: Onboarding Slide Field,Center,Qendër DocType: Notification,Value To Be Set,Vlera të jetë vendosur apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Ndrysho {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Niveli i parë @@ -2116,7 +2190,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Emri i bazës së të dhënave apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh Form DocType: DocField,Select,Përzgjedh -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Shikoni Regjistrin e plotë +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Shikoni Regjistrin e plotë DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Shprehje e thjeshtë e Pythonit, Shembull: statusi == 'Hapni' dhe shkruani == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Paraqesë jo bashkangjitur apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Lidhja ka humbur. Disa veçori mund të mos funksionojnë. @@ -2147,6 +2221,7 @@ DocType: Web Page,HTML for header section. Optional,HTML për header seksion. Fa apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ky tipar është markë e re dhe ende eksperimentale apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimale {0} rreshtave lejohen DocType: Dashboard Chart Link,Chart,tabelë +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Kjo është një fjalëkalim shumë e zakonshme. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Pikëpamje @@ -2163,6 +2238,7 @@ DocType: Data Migration Connector,Hostname,hostname DocType: Data Migration Mapping,Condition Detail,Detajet e gjendjes apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Për monedhën {0}, shuma minimale e transaksionit duhet të jetë {1}" DocType: DocField,Print Hide,Printo Hide +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Përdoruesit apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Shkruani Vlera DocType: Workflow State,tint,ngjyrë @@ -2226,6 +2302,7 @@ DocType: GSuite Settings,Google Credentials,Kredenciale të Google apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Kodi për Verifikimin e Identifikimit apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add to duhet të bëni DocType: Footer Item,Company,Kompani +DocType: Scheduled Job Log,Scheduled,Planifikuar DocType: User,Logout from all devices while changing Password,Dilni nga të gjitha pajisjet duke ndryshuar Fjalëkalimin apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifikoni fjalëkalimin apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ka pasur gabime @@ -2250,7 +2327,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Leja e përdoruesit tashmë ekziston apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Shiko {0} -DocType: User,Hourly,çdo orë +DocType: Scheduled Job Type,Hourly,çdo orë apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Regjistrohu OAuth Klienti App DocType: DocField,Fetch If Empty,Fetch Nëse bosh DocType: Data Migration Connector,Authentication Credentials,Kredencialet e autentifikimit @@ -2260,10 +2337,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,Periodiciteti i ndar DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{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,{0} or {1},{0} ose {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Të gjithë jeni të vendosur! DocType: Workflow State,trash,plehra DocType: System Settings,Older backups will be automatically deleted,backups të vjetra do të fshihen automatikisht apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID-ja e hyrjes së pavlefshme ose çelësi i qasjes sekrete. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Keni humbur disa pikë energjie DocType: Post,Is Globally Pinned,Është mbështetur globalisht apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Aktiviteti i fundit DocType: Workflow Transition,Conditions,Kushtet @@ -2272,6 +2349,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,I konfirmuar DocType: Event,Ends on,Përfundon më DocType: Payment Gateway,Gateway,Portë DocType: LDAP Settings,Path to Server Certificate,Rruga për Certifikatën e Serverit +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript është çaktivizuar në shfletuesin tuaj apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Jo leje të mjaftueshme për të parë lidhjet apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Jo leje të mjaftueshme për të parë lidhjet apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adresa Titulli është i detyrueshëm. @@ -2290,7 +2368,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Nëse kjo është e kontrolluar, rreshta me të dhëna të vlefshme do të importohen dhe rreshtat e pavlefshëm do të hedhen në një skedar të ri për tu importuar më vonë." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumenti është vetëm editable nga përdoruesit e rolit -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Detyra {0}, që ju caktuar për {1}, është mbyllur nga {2}." DocType: Print Format,Show Line Breaks after Sections,Trego Line Breaks pas seksioneve DocType: Communication,Read by Recipient On,Lexo nga Përfituesi DocType: Blogger,Short Name,Emri i shkurtër @@ -2323,6 +2400,7 @@ DocType: Translation,PR sent,PR dërguar DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Vetëm dërgoni Records Përditësuar në X Fundit Hours DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Vetëm dërgoni Records Përditësuar në X Fundit Hours DocType: Communication,Feedback,Reagim +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Përditësuar në një version të ri apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Përkthimi i Hapur apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Kjo email është autogenerated DocType: Workflow State,Icon will appear on the button,Icon do të shfaqet në butonin @@ -2361,6 +2439,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Faqja nuk DocType: DocField,Precision,Saktësi DocType: Website Slideshow,Slideshow Items,Items Slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Përpiquni të shmangni fjalët e përsëritura dhe karaktere +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Njoftimet abledaktivizohen +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Jeni i sigurt që doni të fshini të gjitha rreshtat? DocType: Workflow Action,Workflow State,Workflow Shteti apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rreshtat shtuar apps/frappe/frappe/www/list.py,My Account,Llogaria ime @@ -2369,6 +2449,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Ditë pas apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Lidhja QT tabaka aktive! DocType: Contact Us Settings,Settings for Contact Us Page,Cilësimet për Na Kontaktoni Page +DocType: Server Script,Script Type,Script Type DocType: Print Settings,Enable Print Server,Aktivizo Serverin e Printimit apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} javë më parë DocType: Email Account,Footer,Futboll @@ -2394,8 +2475,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Paralajmërim apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Kjo mund të shtypet në shumë faqe DocType: Data Migration Run,Percent Complete,Përqindja e plotë -DocType: Tag Category,Tag Category,tag Category -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Për krahasim, përdorni> 5, <10 ose = 324. Për vargjet, përdorni 5:10 (për vlerat midis 5 dhe 10)." DocType: Google Calendar,Pull from Google Calendar,Tërhiq nga Kalendari Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Ndihmë DocType: User,Login Before,Identifikohu Para @@ -2405,17 +2484,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Fshih fundjavat apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Prodhon automatikisht dokumente të përsëritura. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Është +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-shenjë apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vlera për {0} nuk mund të jetë një listë DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Si duhet të jetë i formatuar këtë monedhë? Nëse nuk është caktuar, do të përdorë standarte të sistemit" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Dërgoni {0} dokumente? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Gabim në lidhjen me aplikacionin e tabaka QZ ... <br><br> Ju duhet të keni të instaluar dhe ekzekutuar aplikacionin QZ Tray, për të përdorur veçorinë Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klikoni këtu për të Shkarkuar dhe instaluar QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klikoni këtu për të mësuar më shumë rreth Printimit të Lartë</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Hartimi i Printerit apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ju lutem kurseni para bashkëngjitur. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,A doni të anuloni të gjitha dokumentet e lidhura? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Shtuar {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype nuk mund të ndryshohet nga {0} në {1} në rresht {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Lejet Roli DocType: Help Article,Intermediate,i ndërmjetëm +apps/frappe/frappe/config/settings.py,Email / Notifications,Email / njoftime apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} ndryshuar {1} në {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Dokumenti i anuluar u rivendos si Projekt DocType: Data Migration Run,Start Time,Koha e fillimit @@ -2432,6 +2515,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Mu apps/frappe/frappe/email/smtp.py,Invalid recipient address,Adresa e marrësit pavlefshme DocType: Workflow State,step-forward,hap përpara DocType: System Settings,Allow Login After Fail,Lejo hyrjen pas dështimit +DocType: DocType Link,DocType Link,Lidhje DocType DocType: Role Permission for Page and Report,Set Role For,Set rol për DocType: GCalendar Account,The name that will appear in Google Calendar,Emri që do të shfaqet në Google Calendar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Dhoma e drejtpërdrejtë me {0} tashmë ekziston. @@ -2448,6 +2532,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Krijo nj DocType: Contact,Google Contacts,Kontaktet Google DocType: GCalendar Account,GCalendar Account,Llogari GCalendar DocType: Email Rule,Is Spam,është Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,i fundit apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raporti {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Hapur {0} DocType: Data Import Beta,Import Warnings,Paralajmërimet e importit @@ -2459,6 +2544,7 @@ DocType: Workflow State,ok-sign,ok-shenjë apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumentet Deleted apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Formati CSV është i ndjeshëm nga rasti apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon tashmë ekziston +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specifikoni se në çfarë duhet të shfaqen të gjitha sferat. Nëse asgjë nuk specifikohet, rrëshqitja shfaqet në të gjitha fushat si parazgjedhje." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,I kopjuar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Fusha {1} në rresht {2} nuk mund të fshihet dhe e detyrueshme pa paracaktuar DocType: Newsletter,Create and Send Newsletters,Krijoni dhe dërgoni Buletinet @@ -2469,6 +2555,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID e Ngjarjes së Kalendarit Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",""Prind" nënkupton tabelën prind, në të cilën ky rresht duhet të shtohet" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Pikat e Rishikimit: +DocType: Scheduled Job Log,Scheduled Job Log,Regjistri i planifikuar i punës +DocType: Server Script,Before Delete,Para Fshij apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Ndahen me apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Bashkangjit skedarët / url dhe shto në tabelë. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Mesazhi nuk është konfiguruar @@ -2492,19 +2580,20 @@ DocType: About Us Settings,Settings for the About Us Page,Cilësimet për ne në apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Shirit settings portë e pagesës apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Shirit settings portë e pagesës apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Printoni Dërguar në printer! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Pikat e energjisë +DocType: Notification Settings,Energy Points,Pikat e energjisë DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,p.sh. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Krijo çelësat apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Kjo do të heqë përgjithmonë të dhënat tuaja. DocType: DocType,View Settings,Shiko Cilësimet +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Njoftim i ri DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Kërkoni strukturën +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Metoda e kontrollorit get_razorpay_order mungon DocType: Personal Data Deletion Request,Pending Verification,Verifikimi në pritje DocType: Website Meta Tag,Website Meta Tag,Tag Meta në internet DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Nëse nuk është port standard (p.sh. 587). Nëse në Google Cloud, provoni porti 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Pastrimi i datës së përfundimit, pasi ajo nuk mund të jetë në të kaluarën për faqet e botuara." DocType: User,Send Me A Copy of Outgoing Emails,Më dërgoni një kopje të postës elektronike që po largohet -DocType: System Settings,Scheduler Last Event,Scheduler Event Fundit DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Shtoje Google Analytics ID: psh. UA-89XXX57-1. Ju lutemi të kërkoni ndihmë në Google Analytics për më shumë informacion. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Password nuk mund të jetë më shumë se 100 karaktere i gjatë DocType: OAuth Client,App Client ID,App Klienti ID @@ -2533,6 +2622,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,New Password apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ndarë këtë dokument me {1} DocType: Website Settings,Brand Image,markë Image DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Model modeli i importit duhet të përmbajë një Header dhe i vetëm një rresht. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalendari Google është konfiguruar. apps/frappe/frappe/config/website.py,"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 @@ -2541,6 +2631,7 @@ DocType: Auto Repeat,Preview Message,Mesazh Mesazhi DocType: User Social Login,User Social Login,Identifikimi i përdoruesit DocType: Contact,All,Të gjithë DocType: Email Queue,Recipient,Marrës +DocType: Webhook,Webhook Security,Siguria e faqes në internet DocType: Communication,Has Attachment,ka Attachment DocType: Address,Sales User,Sales i përdoruesit apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop mjet për ndërtimin dhe përshtatjen e formate të shtypura. @@ -2629,14 +2720,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Vetë miratim nuk lejohet DocType: GSuite Templates,Template ID,ID template apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kombinimi i Llojit të Grantit ( <code>{0}</code> ) dhe Lloji i Përgjigjes ( <code>{1}</code> ) nuk lejohet -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Mesazh i ri nga {0} DocType: Portal Settings,Default Role at Time of Signup,Default Roli në kohën e hyrjes DocType: DocType,Title Case,Titulli Rasti apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klikoni në lidhjen më poshtë për të shkarkuar të dhënat tuaja apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Kutia postare e lejuar e postës për përdoruesit {0} DocType: Data Migration Run,Data Migration Run,Drejtimi i migrimit të të dhënave DocType: Blog Post,Email Sent,Email dërguar -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Older DocType: DocField,Ignore XSS Filter,Ignore XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,hequr apps/frappe/frappe/config/integrations.py,Dropbox backup settings,settings Dropbox backup @@ -2689,6 +2778,7 @@ DocType: Async Task,Queued,Queued DocType: Braintree Settings,Use Sandbox,Përdorimi Sandbox apps/frappe/frappe/utils/goal.py,This month,Këtë muaj apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Re Format Custom Print +DocType: Server Script,Before Save (Submitted Document),Para Ruajtjes (Dokumenti i Dorëzuar) DocType: Custom DocPerm,Create,Krijoj apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Nuk ka më artikuj për tu shfaqur apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Shkoni në rekordin e mëparshëm @@ -2744,6 +2834,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Në Shportë DocType: Web Form,Web Form Fields,Fushat Forma Web DocType: Data Import,Amended From,Ndryshuar Nga +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Shtoni një lidhje video ndihme vetëm në rast se përdoruesi nuk ka ide se çfarë të plotësojë rrëshqitjen. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Warning: Në pamundësi për të gjetur {0} në çdo tavolinë në lidhje me {1} DocType: S3 Backup Settings,eu-north-1,eu-veri-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Ky dokument aktualisht në radhë për ekzekutim. Ju lutem provoni përsëri @@ -2764,6 +2855,7 @@ DocType: Blog Post,Blog Post,Blog Post DocType: Access Log,Export From,Eksport nga apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Kërkim i Avancuar apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nuk ju lejohet të shihni buletinin. +DocType: Dashboard Chart,Group By,Grupi Nga DocType: User,Interests,interesat apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Udhëzime Password Reset janë dërguar në email-it tuaj DocType: Energy Point Rule,Allot Points To Assigned Users,Ndarja e pikave për përdoruesit e caktuar @@ -2779,6 +2871,7 @@ DocType: Assignment Rule,Assignment Rule,Rregulli i caktimit apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Emri i përdoruesit sugjeruar: {0} DocType: Assignment Rule Day,Day,ditë apps/frappe/frappe/public/js/frappe/desk.js,Modules,modulet +DocType: DocField,Mandatory Depends On,E detyrueshme varet nga apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Suksesi pagesa apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0} postë DocType: OAuth Bearer Token,Revoked,revokohet @@ -2786,6 +2879,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar dhe Komente apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Nuk lejohet të bashkëngjitni dokumentin {0}, ju lutemi, aktivizoni Lejo Printimin Për {0} në Cilësimet e Printimit" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Llogaria e postës elektronike nuk është konfiguruar. Ju lutemi krijoni një llogari të re Email nga Konfigurimi> Email> Llogaria e postës elektronike apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Shikoni dokumentin në {0} DocType: Stripe Settings,Publishable Key,Key publikueshme apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Filloni Importin @@ -2798,6 +2892,7 @@ DocType: Currency,Fraction,Fraksion apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Ngjarje e sinkronizuar me Kalendarin Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Emri Field DocType: Contact,Middle Name,emri i dytë +DocType: DocField,Property Depends On,Prona varet nga DocType: Custom Field,Field Description,Fusha Përshkrim apps/frappe/frappe/model/naming.py,Name not set via Prompt,Emri nuk është caktuar nëpërmjet Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox @@ -2843,11 +2938,11 @@ DocType: Workflow State,folder-close,dosje të ngushtë apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Raporti: DocType: Print Settings,Print taxes with zero amount,Printoni taksat me shumën zero apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} nuk lejohen të riemëruar +DocType: Server Script,Before Insert,Para futjes DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Adresa Line 2 DocType: Address,Reference,Referim apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Caktuar për -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi konfiguroni llogarinë e paracaktuar të postës elektronike nga Konfigurimi> Email> Llogari Email DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detajimi i hartës së migrimit të të dhënave DocType: Data Import,Action,Veprim DocType: GSuite Settings,Script URL,script URL @@ -2873,11 +2968,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,Në Shiko listen DocType: Email Account,Use TLS,Përdorimi TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Login pavlefshme apo fjalëkalimin +DocType: Scheduled Job Type,Weekly Long,Gjatë javës apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Shkarko Template apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Shtoje porosi javascript në forma. ,Role Permissions Manager,Lejet Roli Menaxher apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Emri i formatit të ri Shtyp apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar +DocType: Server Script,After Save (Submitted Document),Pas ruajtjes (Dokumenti i Dorëzuar) DocType: Data Migration Run,Pull Insert,Tërhiqeni Fut DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Pika maksimale e lejuar pas shumëzimit të pikave me vlerën e shumëzuesit (Shënim: pa asnjë kufij të lënë këtë fushë bosh ose të vendosur 0) @@ -2885,6 +2982,7 @@ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Mod apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Query e paligjshme SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,E detyrueshme: DocType: Chat Message,Mentions,përmend +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,"To use Google Contacts, enable {0}.","Për të përdorur Kontaktet Google, aktivizoni {0}." apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Modules,{0} Modulet DocType: Chat Room,Chat Room,Chat Room DocType: Chat Profile,Conversation Tones,Tonet e bisedave @@ -2895,6 +2993,7 @@ DocType: User Permission,User Permission,Leja e përdoruesit apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Not Installed apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Shkarko me të dhëna +DocType: Server Script,Before Cancel,Para Anulimit DocType: Workflow State,hand-right,dora e djathtë DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Rajon @@ -2939,12 +3038,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Vjetër Fjalëkalimi DocType: S3 Backup Settings,us-east-1,SHBA-lindje-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postime nga {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Për kolona format, japin etiketat kolonë në pyetje." +DocType: Onboarding Slide,Slide Fields,Fushat e rrëshqitjes DocType: Has Domain,Has Domain,ka Domain DocType: User,Allowed In Mentions,Lejohet në thënie apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nuk keni një llogari? Sign up apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Nuk mund të hiqet fushë ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Nuk mund të vënë Cakto Ndryshojë nëse nuk Submittable DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Dokumente të pajtuara apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Cilësimet e përdoruesit DocType: Report,Reference Report,Raporti i Referencës DocType: Activity Log,Link DocType,Link DOCTYPE @@ -2962,6 +3063,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizoni Qasjen e Ka apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Faqja jeni duke kërkuar për të mungon. Kjo mund të jetë për shkak se ajo është lëvizur ose nuk është një typo në lidhje. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Përshkrim për listim faqe, në tekst të thjeshtë, vetëm një çift të linjave. (max 140 karaktere)" +DocType: Server Script,DocType Event,Ngjarje DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} janë fusha të detyrueshme DocType: Workflow,Allow Self Approval,Lejo Vetë Miratimin DocType: Event,Event Category,Kategoria e ngjarjes @@ -2978,6 +3080,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Emri juaj apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Suksesi i Lidhjes DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Një rrëshqitje në bord e llojit të rrëshqitjes Vazhdoni tashmë ekziston. DocType: DocType,Default Sort Field,Fusha e renditur e paracaktuar DocType: File,Is Folder,Është Folder DocType: Document Follow,DocType,DOCTYPE @@ -3014,8 +3117,10 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vlerat Ndryshuar DocType: Workflow State,arrow-up,shigjetë-up DocType: Dynamic Link,Link Document Type,Lloji i dokumentit të lidhjes +DocType: Server Script,Server Script,Skripti i serverit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Për të konfiguruar Përsëritjen e Auto, aktivizoni "Lejo Përsëritje Auto" nga {0}." DocType: OAuth Bearer Token,Expires In,skadon In +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Sasia e kohës që dëshironi të përsërisni grupin e fushave (p.sh .: nëse doni 3 klientë në rrëshqitje, vendosni këtë fushë në 3. Vetëm grupi i parë i fushave tregohet si i detyrueshëm në rrëshqitje)" DocType: DocField,Allow on Submit,Lejo në Submit DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Exception Lloji @@ -3025,6 +3130,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,headers apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Ngjarje të ardhshme apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Ju lutem shkruani vlerat për App Access Key dhe App Key Sekret +DocType: Email Account,Append Emails to Sent Folder,Shtojni postë elektronike në Dosjen e Dërguar DocType: Web Form,Accept Payment,Prano Pagesa apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Zgjidhni artikullin e listës apps/frappe/frappe/config/core.py,A log of request errors,Një log i kërkesës gabimeve @@ -3043,7 +3149,7 @@ DocType: Translation,Contributed,kontribuar apps/frappe/frappe/config/customization.py,Form Customization,Përshtatja e formës apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nuk ka Sesione Aktive DocType: Web Form,Route to Success Link,Rruga drejt suksesit Link -DocType: Top Bar Item,Right,E drejtë +DocType: Onboarding Slide Field,Right,E drejtë apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Asnjë ngjarje e ardhshme DocType: User,User Type,Përdoruesi Lloji DocType: Prepared Report,Ref Report DocType,Ref Raporti i DocType @@ -3060,6 +3166,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Ju lutem provoni apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL-ja duhet të fillojë me 'http: //' ose 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opsioni 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Kjo nuk mund të zhbëhet DocType: Workflow State,Edit,Redaktoj DocType: Website Settings,Chat Operators,Operatorët Chat DocType: S3 Backup Settings,ca-central-1,Ca-qendror-1 @@ -3071,14 +3178,13 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Raporti me më shumë se 10 kolona duket më mirë në modalitetin Peisazhi. DocType: Milestone,Milestone,moment historik DocType: User,User Image,User Image apps/frappe/frappe/email/queue.py,Emails are muted,Emails janë mbytur apps/frappe/frappe/config/integrations.py,Google Services,Shërbimet e Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 javë më parë +DocType: Onboarding Slide,Slide Description,Përshkrimi i rrëshqitjes DocType: Communication,Error,Gabim apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Ju lutemi të krijoni një mesazh fillimisht DocType: Auto Repeat,End Date,End Date @@ -3099,10 +3205,12 @@ DocType: Footer Item,Group Label,Grupi Label DocType: Kanban Board,Kanban Board,kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontaktet e Google janë konfiguruar. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord do të eksportohet +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Asnjë llogari emaili e lidhur me Përdoruesin. Ju lutemi shtoni një llogari nën Përdoruesin> Kutia e postës elektronike. DocType: DocField,Report Hide,Raporti Hide apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},view Tree nuk është në dispozicion për {0} DocType: DocType,Restrict To Domain,Kufizo në domenin DocType: Domain,Domain,Fushë +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL e pavlefshme e skedarit. Ju lutemi kontaktoni administratorin e sistemit. DocType: Custom Field,Label Help,Label Ndihmë DocType: Workflow State,star-empty,yll-bosh apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datat janë shpesh të lehtë për të guess. @@ -3126,6 +3234,7 @@ DocType: Workflow State,hand-left,dorës së majtë DocType: Data Import,If you are updating/overwriting already created records.,Nëse përditësoni / mbishkruani regjistrimet e krijuara tashmë. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Është global DocType: Email Account,Use SSL,Përdorimi SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,play-rrethi apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumenti nuk mund të caktohej saktë apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Shprehja "depends_on" e pavlefshme @@ -3142,10 +3251,12 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Rifreskohet së fundmi apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Për llojin e dokumentit DocType: Workflow State,arrow-right,Shigjeta e djathtë +DocType: Server Script,API Method,Metoda API DocType: Workflow State,Workflow state represents the current state of a document.,Shteti Workflow përfaqëson gjendjen aktuale të një dokumenti. DocType: Letter Head,Letter Head Based On,Koka e Letrës Bazuar në apps/frappe/frappe/utils/oauth.py,Token is missing,Token mungon apps/frappe/frappe/www/update-password.html,Set Password,Vendosni fjalëkalimin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Të dhënat e importuara me sukses {0}. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Shënim: Ndryshimi i faqes Emri do të thyejnë URL e mëparshme në këtë faqe. apps/frappe/frappe/utils/file_manager.py,Removed {0},Removed {0} DocType: SMS Settings,SMS Settings,SMS Cilësimet @@ -3177,6 +3288,7 @@ DocType: Comment,Relinked,relinked DocType: Print Settings,Compact Item Print,Compact Item Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Redirect URL +DocType: Onboarding Slide Field,Placeholder,placeholder DocType: SMS Settings,Enter url parameter for receiver nos,Shkruani parametër url për pranuesit nos DocType: Chat Profile,Online,online DocType: Email Account,Always use Account's Name as Sender's Name,Përdorni gjithmonë emrin e Llogarisë si Emri i Dërguesit @@ -3186,7 +3298,6 @@ DocType: Workflow State,Home,Shtëpi DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Përdoruesi mund të hyjë duke përdorur ID Email ose Emri i Përdoruesit DocType: Workflow State,question-sign,pyetje-shenjë -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} është i paaftë apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Fusha "rruga" është e detyrueshme për shikimet në ueb apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Fut shtyllën përpara {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Përdoruesi nga kjo fushë do të shpërblehet me pikë @@ -3211,6 +3322,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Nëse pronari DocType: Data Migration Mapping,Push,shtytje apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Hidh skedarët këtu DocType: OAuth Authorization Code,Expiration time,koha e skadimit +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Dokumente të Hapura DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Trego Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Ju duhet të keni hyrë brenda për të hyrë në këtë {0}. @@ -3226,6 +3338,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Shkurtesa gl DocType: Desktop Icon,Page,Faqe apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Nuk mund të gjejnë {0} në {1} apps/frappe/frappe/utils/password_strength.py,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/model/rename_doc.py,Document renamed from {0} to {1},Dokumenti u riemërua nga {0} në {1} apps/frappe/frappe/config/website.py,Knowledge Base,Njohuri baze DocType: Workflow State,briefcase,çantë apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vlera nuk mund të ndryshohet për {0} @@ -3261,6 +3374,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Format Print apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Ndrysho Pamjen e Rrjetit apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Shko te rekordi tjetër +DocType: System Settings,Time Format,Formati i kohës apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Pavlefshme kredencialet e pagesës portë DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ky është skedari i skedarit i gjeneruar vetëm me rreshta që kanë ndonjë gabim. Ju duhet ta përdorni këtë skedar për korrigjim dhe importim. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Drejtat vendosur në llojet e dokumenteve dhe Rolet @@ -3303,11 +3417,13 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Përgjigje apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Artikuj në Desk (mbajtësit vend) DocType: DocField,Collapsible Depends On,Paloset varet DocType: Print Style,Print Style Name,Emri i stilit të printimit +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Grupi nga fusha është e nevojshme për të krijuar një tabelë tabelë DocType: Print Settings,Allow page break inside tables,Lejo pushim faqe brenda tabelave DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Format Shtyp Ndihmë DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,akuzë +DocType: Dashboard Chart,Group By Type,Grupi Sipas Tipit apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},rivendos {0} si {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Nëse jeni të informuar, ju lutem zgjidhni "Mbishkruaj" rreshtave tjetër ekzistuese nuk do të fshihen." DocType: DocField,Translatable,i përkthyeshëm @@ -3316,14 +3432,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Profili i DocType: Web Form,Web Form,Forma Web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} duhet të jetë në format: {1} DocType: About Us Settings,Org History Heading,Org Historia Kreu +DocType: Scheduled Job Type,Scheduled Job Type,Lloji i planifikuar i punës DocType: Print Settings,Allow Print for Cancelled,Lejo Print për Anullohen DocType: Communication,Integrations can use this field to set email delivery status,Integrimet mund të përdorni këtë fushë për të vendosur statusin e dorëzimit email +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Ju nuk keni leje për të anulluar të gjitha dokumentet e lidhura. DocType: Web Form,Web Page Link Text,Web Page link teksti DocType: Page,System Page,sistemi Page apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Formati Set parazgjedhur, faqe madhësia, stili shtypura etj" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Personalizimet për <b>{0}</b> eksportohen në: <br> {1} DocType: Website Settings,Include Search in Top Bar,Përfshijnë Kërko në Top Bar +DocType: Scheduled Job Type,Daily Long,Të gjata ditore DocType: GSuite Settings,Allow GSuite access,Të lejojë qasje GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Emërtimi @@ -3412,6 +3531,7 @@ DocType: Notification,Send days before or after the reference date,Dërgoje dit DocType: User,Allow user to login only after this hour (0-24),Lejo përdoruesit të identifikoheni vetëm pas kësaj ore (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Cakto një nga një, në rend" DocType: Integration Request,Subscription Notification,Njoftimi i abonimit +DocType: Customize Form Field, Allow in Quick Entry ,Lejo në hyrje të shpejtë apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,ose bashkëngjitni një DocType: Auto Repeat,Start Date,Data e Fillimit apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Vlerë @@ -3426,6 +3546,7 @@ DocType: Google Drive,Backup Folder ID,ID e Dosjes së Kopjimit apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Jo në modë Zhvilluesish! Vendosur në site_config.json ose të bëjë DOCTYPE 'Doganës'. DocType: Workflow State,globe,botë DocType: System Settings,dd.mm.yyyy,DD.MM.VVVV +DocType: Onboarding Slide Help Link,Video,video DocType: Assignment Rule,Priority,Prioritet DocType: Email Queue,Unsubscribe Param,Unsubscribe Param DocType: DocType,Hide Sidebar and Menu,Fshehni shiritin anësor dhe menunë @@ -3437,6 +3558,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Lejo Import (nëpërmjet t apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Nxjerr në shitje DocType: Print Settings,Page Settings,Cilësimet e faqes +DocType: Notification Settings,Notification Settings,Cilësimet e njoftimit apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Ruajtja e ... apps/frappe/frappe/www/update-password.html,Invalid Password,Fjalëkalim i pavlefshëm DocType: Contact,Purchase Master Manager,Blerje Master Menaxher @@ -3451,6 +3573,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Imazhi i Shefit të Letrës DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Formati i kronikës apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Raporti DocType: SMS Settings,Use POST,Përdorni POST DocType: Communication,SMS,SMS @@ -3494,18 +3617,20 @@ DocType: Workflow,Allow approval for creator of the document,Lejo miratimin për apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Ruaje Raportin DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Veprimi i serverit apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administratori arrihen {0} në {1} nëpërmjet IP Address {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Fusha e prindërve duhet të jetë një emër i vlefshëm i fushës apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Dështoi gjatë ndryshimit të pajtimit DocType: LDAP Settings,LDAP Group Field,Fusha e grupit LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Njoftim Dokument i pajtuar apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Është e barabartë me apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Invalid CSV Format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Gabim në lidhjen me aplikacionin e tabaka QZ ... <br><br> Duhet të keni të instaluar dhe ekzekutuar aplikacionin QZ Tray, për të përdorur funksionin Raw Print. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klikoni këtu për të Shkarkuar dhe instaluar QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klikoni këtu për të mësuar më shumë rreth Printimit të Lartë</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Set Numri i Backups DocType: DocField,Do not allow user to change after set the first time,Nuk lejojnë përdoruesin të ndryshojë pasi të vendosur për herë të parë apps/frappe/frappe/utils/data.py,1 year ago,1 vit më parë +DocType: DocType,Links Section,Seksioni i lidhjeve apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Shikoni Log-un e të gjitha ngjarjeve të shtypura, shkarkuese dhe eksportuese" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 muaj DocType: Contact,Contact,Kontakt @@ -3536,10 +3661,11 @@ DocType: Dropbox Settings,Dropbox Settings,Cilësimet Dropbox DocType: About Us Settings,More content for the bottom of the page.,Më shumë përmbajtjen për pjesën e poshtme të faqes. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ky dokument është rikthyer apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Rezervimi i Google Drive është i suksesshëm. +DocType: Webhook,Naming Series,Emërtimi Series DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE në të cilën kjo Workflow është i zbatueshëm. DocType: User,Enabled,Aktivizuar apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Dështoi në përfundimin e konfigurimit -DocType: Tag Category,Category Name,Kategoria Emri +DocType: Blog Category,Category Name,Kategoria Emri apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Prindërit kërkohet të marrë të dhëna për tabelën e fëmijëve apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Subscribers importit DocType: Print Settings,PDF Settings,PDF Settings @@ -3575,6 +3701,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendar apps/frappe/frappe/client.py,No document found for given filters,Asnjë dokument gjetur për filtrat e dhëna apps/frappe/frappe/config/website.py,A user who posts blogs.,Një përdorues që poston bloge. +DocType: DocType Action,DocType Action,Veprimi i DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Një tjetër {0} me {1} ekziston emri, zgjidhni një emër tjetër" DocType: DocType,Custom?,Custom? DocType: Website Settings,Website Theme Image,Website Image Theme @@ -3584,6 +3711,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Në pamun apps/frappe/frappe/config/integrations.py,Backup,rezervë apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Lloji i dokumentit është i nevojshëm për të krijuar një tabelë tabelash DocType: DocField,Read Only,Lexoni Vetëm +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Nuk mund të krijojë rendin razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,New Newsletter DocType: Energy Point Log,Energy Point Log,Regjistri i pikave energjetike DocType: Print Settings,Send Print as PDF,Dërgo Printo si PDF @@ -3608,16 +3736,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Kon apps/frappe/frappe/www/login.html,Or login with,Ose kyçuni me DocType: Error Snapshot,Locals,Vendorët apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Komunikohet nëpërmjet {0} në {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ju përmendur në një koment në {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Zgjidh Grupin Nga ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} është e nevojshme DocType: Integration Request,Integration Type,Lloji i integrimit DocType: Newsletter,Send Attachements,Dërgo attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Nuk u gjetën filtra apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrimi i kontakteve të Google. DocType: Transaction Log,Transaction Log,Regjistri i transaksionit apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistikat bazuar në performancën e muajit të kaluar (nga {0} në {1}) DocType: Contact Us Settings,City,Qytet +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Fshih kartat për të gjithë përdoruesit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktivizo Lejo Përsëritje automatike për doktrinën {0} në Rregulloje Formën DocType: DocField,Perm Level,Niveli Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Shiko dokumentin @@ -3629,6 +3758,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'In Global Search' not allowed for type {0} in row {1},"Në Global Kërko 'nuk lejohet për llojin {0} në rresht {1} DocType: Energy Point Log,Appreciation,Vleresim +DocType: Dashboard Chart,Number of Groups,Numri i grupeve apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Shiko Lista DocType: Workflow,Don't Override Status,Mos Refuzim Statusi apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,termi Kërko @@ -3668,7 +3798,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,Zgj DocType: S3 Backup Settings,cn-northwest-1,CN-veriperëndim-1 DocType: Dropbox Settings,Limit Number of DB Backups,Limit Numri i Backups DB DocType: Custom DocPerm,Level,Nivel -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 ditët e fundit DocType: Custom DocPerm,Report,Raport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Shuma duhet të jetë më e madhe se 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Lidhur me QZ Tray! @@ -3685,6 +3814,7 @@ DocType: S3 Backup Settings,us-west-2,SHBA-west-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Zgjidhni Tabelën e Fëmijëve apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Veprimi Fillor i Nxitjes apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Ndryshim +DocType: Social Login Key,User ID Property,Pronë e identitetit të përdoruesit DocType: Email Domain,domain name,Emri i domain DocType: Contact Email,Contact Email,Kontakti Email DocType: Kanban Board Column,Order,urdhër @@ -3707,7 +3837,7 @@ DocType: Contact,Last Name,Mbiemër DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Majtas DocType: Event,All Day,Të gjitha Day apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Duket si diçka është e gabuar me konfigurimin e pagesës portë kësaj faqeje. Nuk ka pagesa është bërë. DocType: GCalendar Settings,State,Shtet @@ -3739,7 +3869,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Cilësimet e portës apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Teksti në llojin e dokumentit -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Testet Run apps/frappe/frappe/handler.py,Logged Out,Identifikuar Out apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Më shumë ... DocType: System Settings,User can login using Email id or Mobile number,Përdoruesi mund të identifikoheni duke përdorur Email ID ose numrin e celularit @@ -3755,6 +3884,7 @@ DocType: System Settings,Number Format,Format numrin apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,përmbledhje DocType: Event,Event Participants,Pjesëmarrësit e ngjarjeve DocType: Auto Repeat,Frequency,frekuencë +DocType: Onboarding Slide,Slide Order,Renditja e rrëshqitjes DocType: Custom Field,Insert After,Fut Pas DocType: Event,Sync with Google Calendar,Sinkronizo me Kalendarin Google DocType: Access Log,Report Name,Raporti Emri @@ -3782,6 +3912,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max width për tip monedhe është 100px në rresht {0} apps/frappe/frappe/config/website.py,Content web page.,Përmbajtja web faqe. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Shto një rol të ri +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Vizitoni faqen në internet +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Caktimi i ri DocType: Google Contacts,Last Sync On,Sinjali i fundit në DocType: Deleted Document,Deleted Document,Dokumenti fshihen apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Diçka shkoi keq @@ -3791,7 +3923,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,peizazh apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensions anën e klientit script në Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Shënimet për doktrinat e mëposhtme do të filtrohen -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Programuesi joaktiv +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Programuesi joaktiv DocType: Blog Settings,Blog Introduction,Blog Hyrje DocType: Global Search Settings,Search Priorities,Prioritetet e kërkimit DocType: Address,Office,Zyrë @@ -3801,13 +3933,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Lidhja e Listës së Panelit DocType: User,Email Settings,Email Cilësimet apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Hidh këtu DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Nëse aktivizohet, përdoruesi mund të identifikohet nga çdo Adresa IP duke përdorur Autor Two Factor, kjo mund të vendoset edhe për të gjithë përdoruesit në Cilësimet e Sistemit" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Cilësimet e Printerit ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Ju lutemi shkruani fjalëkalimin tuaj për të vazhduar apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Ju lutemi shkruani fjalëkalimin tuaj për të vazhduar apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,më apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} nuk është një shtet i vlefshëm apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Aplikoni tek të gjitha llojet e dokumenteve -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Përditësimi i pikës së energjisë +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Përditësimi i pikës së energjisë +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Drejtoni punë vetëm çdo ditë nëse janë joaktive për (ditë) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Tip dhome DocType: Data Import Beta,Import Log Preview,Paraprakisht e Kontrollit të Regjistrit @@ -3816,6 +3948,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-rrethi DocType: LDAP Settings,LDAP User Creation and Mapping,Krijimi dhe hartëzimi i përdoruesve të LDAP apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Ngjarjet e sotme apps/frappe/frappe/core/doctype/user/user.py,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. ,Usage Info,Përdorimi Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Shfaqni shkurtoret e tastierës @@ -3832,6 +3965,7 @@ DocType: DocField,Unique,Unik apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} vlerësuar në {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Suksesi i pjesshëm DocType: Email Account,Service,Shërbim +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfigurimi> Përdoruesi DocType: File,File Name,File Name apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),A nuk gjeni {0} për {0} ({1}) apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that","Oops, nuk ju lejohet të dinë se" @@ -3844,6 +3978,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Complete DocType: GCalendar Settings,Enable,mundësoj DocType: Google Maps Settings,Home Address,Adresa e shtepise apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Ju vetëm mund të ngarkoni upto 5000 të dhënat në një të shkojnë. (Mund të jetë më pak në disa raste) +DocType: Report,"output in the form of `data = [columns, result]`","prodhimi në formën e 'të dhënave = [kolonave, rezultatit] `" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Llojet e zbatueshme të dokumentit apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Vendosni rregulla për detyrat e përdoruesit. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permission pamjaftueshme {0} @@ -3861,7 +3996,6 @@ DocType: Communication,To and CC,Për të dhe CC DocType: SMS Settings,Static Parameters,Parametrat statike DocType: Chat Message,Room,dhomë apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},përditësuar për {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Punët në sfond nuk po funksionojnë. Ju lutemi kontaktoni administratorin DocType: Portal Settings,Custom Menu Items,Items Custom Menu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Të gjitha imazhet e bashkangjitura në Slideshow e internetit duhet të jenë publike DocType: Workflow State,chevron-right,Chevron djathtë @@ -3873,9 +4007,11 @@ DocType: Website Settings,Brand HTML,Markë HTML apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,Merrni kopje rezervë DocType: DocType,Allow Auto Repeat,Lejoni Përsëritjen e Auto apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nuk ka vlera për të treguar +DocType: DocType,URL for documentation or help,URL për dokumentacion ose ndihmë DocType: Desktop Icon,_doctype,_llojidok DocType: Communication,Email Template,Modeli i Email-it apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Dy login dhe fjalëkalimin e nevojshme +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,le \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ju lutemi të rifreskoni të marrë dokumentin e fundit. DocType: User,Security Settings,Cilësimet e sigurisë apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Add Column @@ -3884,6 +4020,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},Export Raporti: {0} DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Page,Set Meta Tags,Vendosni Etiketat Meta +DocType: Email Account,Use SSL for Outgoing,Përdorni SSL për daljet 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: S3 Backup Settings,Backup Limit,Kufiri i rezervës DocType: Dashboard Chart,Line,Linjë @@ -3915,4 +4052,3 @@ DocType: DocField,Ignore User Permissions,Ignore lejet e përdoruesit apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,U ruajt me sukses apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Ju lutem, pyesni administratorin tuaj për të verifikuar të shenjë-up" DocType: Domain Settings,Active Domains,Fushat aktive -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Trego Identifikohu diff --git a/frappe/translations/sr.csv b/frappe/translations/sr.csv index 0e8a875aa7..6c43c3522f 100644 --- a/frappe/translations/sr.csv +++ b/frappe/translations/sr.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Изаберите поље Количина. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Учитавање датотеке за увоз ... DocType: Assignment Rule,Last User,Последњи корисник -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нови задатак, {0}, је додељен вам {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Задржане сесије су сачуване apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Учитај датотеку DocType: Email Queue,Email Queue records.,Е-маил Куеуе записа. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Дрво DocType: User,User Emails,усер Емаил DocType: User,Username,Korisničko ime apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Импорт Зип +DocType: Scheduled Job Type,Create Log,Креирајте дневник apps/frappe/frappe/model/base_document.py,Value too big,Вредност превелика DocType: DocField,DocField,ДоцФиелд DocType: GSuite Settings,Run Script Test,Рун Скрипта тест @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Месечно DocType: Address,Uttarakhand,Утаранчал DocType: Email Account,Enable Incoming,Омогући долазни apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасност -DocType: Address,Email Address,Е-маил адреса +apps/frappe/frappe/www/login.py,Email Address,Е-маил адреса DocType: Workflow State,th-large,тх-велики DocType: Communication,Unread Notification Sent,Унреад Обавештење Сент apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Экспорт не допускается. Вам нужно {0} роль для экспорта . @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От DocType: DocType,Is Published Field,Је објављен Фиелд DocType: GCalendar Settings,GCalendar Settings,ГЦалендар Сеттингс DocType: Email Group,Email Group,емаил Група +apps/frappe/frappe/__init__.py,Only for {},Само за {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Гоогле календар - Не могу се избрисати догађај {0} из Гоогле календара, код грешке {1}." DocType: Event,Pulled from Google Calendar,Извлачено из Гоогле календара DocType: Note,Seen By,Виђено од apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Додавање више -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Стекли сте неке енергетске бодове apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Није важећа слика корисника. DocType: Energy Point Log,Reverted,Ревертед DocType: Success Action,First Success Message,Прва порука о успеху @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не воли apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неисправна вредност: {0} мора бити {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Изменение свойств поля (скрыть , только для чтения , разрешение и т.д.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Ценити +DocType: Notification Settings,Document Share,Доцумент Схаре DocType: Workflow State,lock,закључати apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Подешавања за Контакт страницу. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Модератор Сачувана У @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ако је омогућен, документ је означен као видљив, први пут када га корисник отвори" DocType: Auto Repeat,Repeat on Day,Понављам на дан DocType: DocField,Color,Боја +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Означи све као прочитано DocType: Data Migration Run,Log,Пријава DocType: Workflow State,indent-right,индент-десно DocType: Has Role,Has Role,има улогу @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Прикажи Трацебацк DocType: DocType,Default Print Format,Уобичајено Принт Формат DocType: Workflow State,Tags,ознаке +DocType: Onboarding Slide,Slide Type,Тип слајда apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ништа: Крај Воркфлов apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поље не може бити постављен као јединствен у {1}, јер су не-јединствене постојеће вредности" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Врсте докумената @@ -136,7 +139,6 @@ DocType: Language,Guest,Гост DocType: DocType,Title Field,Название поля DocType: Error Log,Error Log,Грешка се apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Неважећи УРЛ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Последњих 7 дана apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Понавља као "абцабцабц" су само мало теже погодити него "абц" DocType: Notification,Channel,Канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ако мислите да је ово неовлашћено, молимо вас да промените лозинку администратора." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Клијент apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Изаберите колону apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Овај облик је модификована након што сте га лоадед DocType: Address,Himachal Pradesh,Химачал Прадеш +DocType: Notification Log,Notification Log,Дневник обавештења DocType: System Settings,"If not set, the currency precision will depend on number format","Ако није подешен, валута прецизност зависиће од броја формата" DocType: System Settings,"If not set, the currency precision will depend on number format","Ако није подешен, валута прецизност зависиће од броја формата" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Отворите Авесомебар @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,П apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Послати DocType: Workflow Action Master,Workflow Action Name,Воркфлов Акција Име apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,ДОЦТИПЕ не могу да се споје -DocType: Web Form Field,Fieldtype,Фиелдтипе +DocType: Onboarding Slide Field,Fieldtype,Фиелдтипе apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не зип фајл DocType: Global Search DocType,Global Search DocType,Глобал Сеарцх ДоцТипе DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Емаил Сент? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Тоггле Цхарт apps/frappe/frappe/desk/form/save.py,Did not cancel,Није отказали DocType: Social Login Key,Client Information,Информације о клијенту +DocType: Energy Point Rule,Apply this rule only once per document,Примените ово правило само једном на документ DocType: Workflow State,plus,плус +DocType: DocField,Read Only Depends On,Само за читање зависи apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Пријављени као гост или Администратор DocType: Email Account,UNSEEN,НЕВИЂЕНО apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Филе Манагер @@ -202,9 +207,11 @@ DocType: Communication,BCC,БЦЦ DocType: Unhandled Email,Reason,Разлог 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Нема активности +DocType: Server Script,Script Manager,Сцрипт Манагер +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Нема активности apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Апликације треће стране apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Први корисник ће постати систем менаџер (можете променити ово касније). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Нема догађаја данас apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Не можете себи давати поене за преглед apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,ДоцТипе мора бити подношљив за изабрани Доц догађај DocType: Workflow State,circle-arrow-up,круг-уп арров @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Није дозвољено за {0}: {1}. Ограничено поље: {2} 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,You are not allowed to delete a standard Website Theme,Није вам дозвољено брисање стандардне Вебсајт теме +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Креирајте свој први {0} DocType: Data Import,Log Details,Лог детаљи DocType: Workflow Transition,Example,Пример DocType: Webhook Header,Webhook Header,Вебхоок Хеадер @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Цхат Бацкгроунд apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Означи као прочитано apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ажурирање {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Већ постоји бродски слајд <b>{0}</b> са истим редоследом слајдова apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Дисабле Извештај DocType: Translation,Contributed Translation Doctype Name,Наведено име превода за превод +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац DocType: PayPal Settings,Redirect To,преусмери на DocType: Data Migration Mapping,Pull,Повуците DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Јава формат : вн.куери_репортс [ ' РЕПОРТНАМЕ ' ] = { } @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Интерна запис DocType: Energy Point Settings,Review Levels,Нивои прегледа DocType: Workflow State,Comment,Коментар DocType: Data Migration Plan,Postprocess Method,Метод постпроцеса +DocType: DocType Action,Action Type,Тип радње apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сликати DocType: Assignment Rule,Round Robin,Разигравање apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Вы можете изменить представленных документов , отменив их, а затем , их изменения." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Сачувај као DocType: Comment,Seen,Сеен apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Схов море детаилс +DocType: Server Script,Before Submit,Пре слања DocType: System Settings,Run scheduled jobs only if checked,Покрени заказане послове само ако цхецкед apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,Ће бити приказан само ако су Одељак Наслови омогућено apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Архива @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Дропбок Приступни apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Погрешно поље <b>{0}</b> у адд_фетцх конфигурацији прилагођеног скрипта apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Изаберите Гоогле контакте са којима контакт треба да се синхронизује. DocType: Web Page,Main Section (HTML),Главни одељак (ХТМЛ) +DocType: Scheduled Job Type,Annual,годовой DocType: Workflow State,headphones,слушалице apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Лозинка је потребна или изаберите Чекање Пассворд DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,нпр реплиес@иоурцомани.цом. Сви одговори ће доћи до овог инбок. DocType: Slack Webhook URL,Slack Webhook URL,Слацк Вебхоок УРЛ +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Одређује редослед слајдова у чаробњаку. Ако слајд неће бити приказан, приоритет треба поставити на 0." DocType: Data Migration Run,Current Mapping,Тренутни мапирање apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Исправан имејл и име обавезно apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Све прилоге учините приватним @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Транзициони Правила apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Приказују се први {0} редови у прегледу apps/frappe/frappe/core/doctype/report/report.js,Example:,Пример: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ограничења DocType: Workflow,Defines workflow states and rules for a document.,Дефинише тока посла државе и правила за документ. DocType: Workflow State,Filter,филтер apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Проверите дневник грешака за више информација: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Посао apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} одјављени: {1} DocType: Address,West Bengal,Западни Бенгал +DocType: Onboarding Slide,Information,Информације apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0} : Не удается установить Назначить Представьте , если не Submittable" DocType: Transaction Log,Row Index,Индекс редова DocType: Social Login Key,Facebook,facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,дугме Помоћ DocType: Kanban Board Column,purple,љубичаста DocType: About Us Settings,Team Members,Чланови тима +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Изводиће заказане задатке само једном дневно за неактивне сајтове. Подразумевано 4 дана ако је подешено на 0. DocType: Assignment Rule,System Manager,Систем менаџер +DocType: Scheduled Job Log,Scheduled Job,Заказани посао DocType: Custom DocPerm,Permissions,Дозволе apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Слацк Вебхоокс за интерну интеграцију DocType: Dropbox Settings,Allow Dropbox Access,Дозволи Дропбок Аццесс @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Ск DocType: Email Flag Queue,Email Flag Queue,Емаил Застава редова DocType: Access Log,Columns / Fields,Колоне / поља apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Стилесхеетс за формате штампања +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Поље за обједињавање функција потребно је за креирање графикона контролне табле apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Не може да идентификује отворен {0}. Покушајте нешто друго. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ваше информације је предата apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Пользователь {0} не может быть удален @@ -417,11 +436,12 @@ DocType: Property Setter,Field Name,Име поља DocType: Assignment Rule,Assign To Users,Доделите корисницима apps/frappe/frappe/public/js/frappe/utils/utils.js,or,или apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Име модул ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Наставити +DocType: Onboarding Slide,Continue,Наставити apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Гоогле интеграција је онемогућена. DocType: Custom Field,Fieldname,Имепоља DocType: Workflow State,certificate,потврда apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Провера ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Задатак {0} {1} је уклоњен apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Прво колона подаци морају бити празан. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Погледајте све верзије apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Погледајте коментар @@ -431,12 +451,14 @@ DocType: User,Restrict IP,Забранити ИП apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Командна табла apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Невозможно отправить электронную почту в это время apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Гоогле календар - Није могуће ажурирати догађај {0} у Гоогле календару, код грешке {1}." +DocType: Notification Log,Email Content,Садржај е-поште apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Потражите или откуцајте команду DocType: Activity Log,Timeline Name,тимелине Име apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Само један {0} може се поставити као примарни. DocType: Email Account,e.g. smtp.gmail.com,нпр смтп.гмаил.цом apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Додај ново правило DocType: Contact,Sales Master Manager,Продаја Мастер менаџер +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Морате омогућити ЈаваСцрипт да би ваша апликација радила. DocType: User Permission,For Value,За вредност DocType: Event,Google Calendar ID,ИД Гоогле календара apps/frappe/frappe/www/complete_signup.html,One Last Step,Један Последњи корак @@ -451,6 +473,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,ЛДАП Поље са средњ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Увоз {0} од {1} DocType: GCalendar Account,Allow GCalendar Access,Дозволи ГЦалендар приступ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} је обавезно поље +DocType: DocType,Documentation Link,Доцументатион Линк apps/frappe/frappe/templates/includes/login/login.js,Login token required,Потребан је токен токен apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Месечни ранг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изаберите више ставки са листе @@ -472,6 +495,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Филе УРЛ DocType: Version,Table HTML,Табела ХТМЛ- apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Додај претплатника +DocType: Notification Log,Energy Point,Енерги Поинт apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Предстојећи догађаји за данас DocType: Google Calendar,Push to Google Calendar,Притисните на Гоогле календар DocType: Notification Recipient,Email By Document Field,Е-маил До докумената ратарство @@ -487,12 +511,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,У гостима DocType: Currency,Fraction Units,Фракција јединице apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} од {1} до {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Означи као Готово DocType: Chat Message,Type,Тип DocType: Google Settings,OAuth Client ID,ОАутх ИД клијента DocType: Auto Repeat,Subject,Предмет apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Назад на Деск DocType: Web Form,Amount Based On Field,Износ Басед Он Фиелд +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} нема праћене верзије. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Корисник је обавезан за Подели DocType: DocField,Hidden,сакривен DocType: Web Form,Allow Incomplete Forms,"Дозволи некомплетним, облицима" @@ -515,6 +539,7 @@ DocType: Report,JSON,ЈСОН apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Проверите да ли сте за верификацију apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Фолд не може бити на крају обрасца DocType: Communication,Bounced,Боунцед +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,од DocType: Deleted Document,Deleted Name,deleted Име apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Системные и сайта Пользователи DocType: Workflow Document State,Doc Status,Док статус @@ -525,6 +550,7 @@ DocType: Language,Language Code,Код језика DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Напомена: По дефаулту се пошаљу е-пошта за неуспеле сигурносне копије. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Адд Филтер apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},СМС порука на следеће бројеве телефона: {0} +DocType: Notification Settings,Assignments,Задаци apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Започните разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Увек додајте "нацрт" ишао за штампање нацрта докумената @@ -533,6 +559,7 @@ DocType: Data Migration Run,Current Mapping Start,Почетак мапирањ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Е-маил је означена као непожељна DocType: Comment,Website Manager,Сајт менаџер apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Датотека је прекинута. Молим вас, покушајте поново." +DocType: Data Import Beta,Show Failed Logs,Прикажи неуспјеле записнике apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Преводи apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Сте изабрали Нацрт или поништи документи apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} је постављен да наводи {1} за {2} @@ -540,7 +567,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokument реду за сл DocType: GSuite Templates,Destination ID,ИД одредишта DocType: Desktop Icon,List,листа DocType: Activity Log,Link Name,линк Име +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Нисте \ DocType: System Settings,mm/dd/yyyy,мм / дд / ииии +DocType: Onboarding Slide,Onboarding Slide,Онбоардинг Слиде apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Инвалид пассворд: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Инвалид пассворд: DocType: Print Settings,Send document web view link in email,Пошаљи документ Веб Виев везу у е-маил @@ -602,6 +631,7 @@ DocType: Kanban Board Column,darkgrey,тамно сива apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Успешно: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Не можете да промените информације о кориснику у демо. Молимо Вас да регистрација за нови налог на хттпс://ерпнект.цом apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Кап +DocType: Dashboard Chart,Aggregate Function Based On,Функција агрегиране на основу apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Молимо вас да дуплирају ово да направи промене apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Притисните тастер Ентер да бисте сачували apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Пдф генерација није успела због Брокен Имаге линкова @@ -615,7 +645,9 @@ DocType: Notification,Days Before,Даис Бефоре apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Дневни догађаји би требало да се заврше истог дана. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Уредити... DocType: Workflow State,volume-down,звука доле +DocType: Onboarding Slide,Help Links,Линкови помоћи apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Приступ са ове ИП адресе није дозвољен +DocType: Notification Settings,Enable Email Notifications,Омогући обавештења путем е-поште apps/frappe/frappe/desk/reportview.py,No Tags,Но Тагс DocType: Email Account,Send Notification to,Слање обавештења DocType: DocField,Collapsible,Цоллапсибле @@ -644,6 +676,7 @@ DocType: Google Drive,Last Backup On,Задња сигурносна копиј DocType: Customize Form Field,Customize Form Field,Прилагодите поље Форм DocType: Energy Point Rule,For Document Event,За Доцумент Евент DocType: Website Settings,Chat Room Name,Име собе +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Непромењен DocType: OAuth Client,Grant Type,грант Тип apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Проверите који су читљиви документи од корисника DocType: Deleted Document,Hub Sync ID,Хуб Синц ИД @@ -651,6 +684,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ко DocType: Auto Repeat,Quarterly,Тромесечни apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Е-маил Домен није подешен за овај налог, Цреате оне?" DocType: User,Reset Password Key,Ресет Пассворд Кеи +DocType: Dashboard Chart,All Time,Све време apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Статус илегалног документа за {0} DocType: Email Account,Enable Auto Reply,Енабле Ауто Одговори apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не види @@ -663,6 +697,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,По DocType: Email Account,Notify if unreplied,Нотифи ако Неодговорене apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Скенирајте КР код и укуцајте приказани код. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Омогући градијенте +DocType: Scheduled Job Type,Hourly Long,Хоурли Лонг DocType: System Settings,Minimum Password Score,Минимална Лозинка Резултат DocType: System Settings,Minimum Password Score,Минимална Лозинка Резултат DocType: DocType,Fields,Поља @@ -671,11 +706,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Родит apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,С3 Бацкуп цомплете! apps/frappe/frappe/config/desktop.py,Developer,Развијач apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Направљено +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Да бисте га омогућили следите упутства на следећем линку: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} в строке {1} не может иметь как URL и дочерние элементы apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},За следеће табеле требало би да постоји најмање један ред: {0} DocType: Print Format,Default Print Language,Подразумевани језик штампања apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предники Оф apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корневая {0} не может быть удален +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Нема неуспјелих дневника apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Још нема коментара apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Молимо да подесите СМС пре него што га подесите као метод аутентификације путем СМС-а apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Оба ДОЦТИПЕ и Име рекуиред @@ -699,6 +736,7 @@ DocType: Website Settings,Footer Items,Фоотер Артикли apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Мени DocType: DefaultValue,DefaultValue,ДефаултВалуе DocType: Auto Repeat,Daily,Дневно +DocType: Onboarding Slide,Max Count,Мак Цоунт apps/frappe/frappe/config/users_and_permissions.py,User Roles,Роли пользователей DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Некретнине сетер поништава стандардну ДОЦТИПЕ или поље имовину apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не могу Упдате : Погрешна / Линк Истекло . @@ -717,6 +755,7 @@ DocType: Footer Item,"target = ""_blank""",таргет = "_бланк" DocType: Workflow State,hdd,хдд DocType: Integration Request,Host,Домаћин DocType: Data Import Beta,Import File,Увези датотеку +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Грешка шаблона apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Колона <b>{0} већ</b> постоји. DocType: ToDo,High,Висок apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Нови догађај @@ -732,6 +771,7 @@ DocType: Web Form Field,Show in filter,Прикажи у филтеру DocType: Address,Daman and Diu,Даман и Диу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Пројекат DocType: Address,Personal,Лични +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Необрађене поставке штампања ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Детаље потражите на хттпс://доцс.авс.амазон.цом/де_де/генерал/латест/гр/ранде.хтмл#с3_регион. apps/frappe/frappe/config/settings.py,Bulk Rename,Булк Ренаме DocType: Email Queue,Show as cc,Схов као цц @@ -741,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Узми видео DocType: Contact Us Settings,Introductory information for the Contact Us Page,Уводна информације за нас контактирати странице DocType: Print Style,CSS,ЦСС DocType: Workflow State,thumbs-down,тхумбс-доле +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Отказивање докумената DocType: User,Send Notifications for Email threads,Пошаљи обавештења за теме е-поште apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,проф apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не у Девелопер Моде @@ -748,7 +789,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Филе б DocType: DocField,In Global Search,У Глобал Сеарцх DocType: System Settings,Brute Force Security,Бруте Форце Сецурити DocType: Workflow State,indent-left,индент-лево -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} пре годину дана apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,То је ризично да избришете ову датотеку: {0}. Обратите се свом Систем Манагер. DocType: Currency,Currency Name,Валута Име apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Но Емаил @@ -763,11 +803,13 @@ DocType: Energy Point Rule,User Field,Корисничко поље DocType: DocType,MyISAM,ИнноДБ DocType: Data Migration Run,Push Delete,Пусх Делете apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} већ одјавити за {1} {2} +DocType: Scheduled Job Type,Stopped,Заустављен apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Не удалить apps/frappe/frappe/desk/like.py,Liked,Ликед apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Пошаљи сада apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандард ДОЦТИПЕ не може имати подразумевани формат за штампање, користите Цустомизе формулар" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандард ДОЦТИПЕ не може имати подразумевани формат за штампање, користите Цустомизе формулар" +DocType: Server Script,Allow Guest,Дозволи госту DocType: Report,Query,Питање DocType: Customize Form,Sort Order,сортировку apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},""" В Список"" не допускается для типа {0} в строке {1}" @@ -789,10 +831,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Два факторска аутентикацијска метода apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Прво подесите име и сачувајте запис. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Записа +DocType: DocType Link,Link Fieldname,Назив поља везе apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Заједничка с {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Откажи DocType: View Log,Reference Name,Референтни Име apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Промени корисника +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Први apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ажурирај преводе DocType: Error Snapshot,Exception,Изузетак DocType: Email Account,Use IMAP,Користите ИМАП @@ -807,6 +851,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Правила дефинишу транзицију државе у току посла. DocType: File,Folder,Фасцикла DocType: Website Route Meta,Website Route Meta,Вебсите Роуте Мета +DocType: Onboarding Slide Field,Onboarding Slide Field,Клизно поље на броду DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Билтен директор apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Опција 1 @@ -833,7 +878,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,У apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Конфигурирајте графиконе DocType: User,Last IP,Последњи ИП apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Молимо додајте тему вашој е-пошти -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Нови документ {0} је подељен са вама {1}. DocType: Data Migration Connector,Data Migration Connector,Конектор за миграцију података apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} вратио се {1} DocType: Email Account,Track Email Status,Статус е-поште @@ -886,6 +930,7 @@ DocType: Email Account,Default Outgoing,Уобичајено Одлазећи DocType: Workflow State,play,игра apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Кликните на линк испод да завршите регистрацију и поставили нову лозинку apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Не добавить +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} добио је {1} поена за {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Но Емаил Аццоунтс Ассигнед DocType: S3 Backup Settings,eu-west-2,еу-запад-2 DocType: Contact Us Settings,Contact Us Settings,Контакт Сеттингс @@ -894,6 +939,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Сеар DocType: Workflow State,text-width,Текст ширине apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Максимална Прилог Граница за овај запис достигао. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Претражите по имену датотеке или екстензији +DocType: Onboarding Slide,Slide Title,Слиде Титле DocType: Notification,View Properties (via Customize Form),Погледајте некретнине (преко Цустомизе форми) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Кликните на датотеку да бисте је одабрали. DocType: Note Seen By,Note Seen By,Напомена Сеен би @@ -920,13 +966,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Дели УРЛ адресу DocType: System Settings,Allow Consecutive Login Attempts ,Дозволи конусне покушаје за пријављивање apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Дошло је до грешке током процеса плаћања. Молимо Вас да нас контактирате. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Ако је тип слајда Креирај или Подешавања, требало би постојати метода 'цреате_онбоардинг_доцс' у датотеци {реф_доцтипе} .пи која се мора извршити по завршетку слајда." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,пре {0} дана DocType: Email Account,Awaiting Password,Очекујем Лозинка DocType: Address,Address Line 1,Аддресс Лине 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Не потомци DocType: Contact,Company Name,Име компаније DocType: Custom DocPerm,Role,Улога -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Подешавања ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,у ваш претраживач apps/frappe/frappe/utils/data.py,Cent,Цент ,Recorder,Диктафон @@ -986,6 +1032,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Пратите ако је ваш е-маил отворио прималац. <br> Напомена: Ако шаљете више примаоца, чак и ако 1 прималац чита е-пошту, сматраће се "отвореним"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Вредности које недостају Обавезна apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Омогући приступ Гоогле контактима +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Ограничен DocType: Data Migration Connector,Frappe,фрапе apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Означи као непрочитану DocType: Activity Log,Operation,Операција @@ -1039,6 +1086,7 @@ DocType: Web Form,Allow Print,dozvoli Принт DocType: Communication,Clicked,Кликнуто apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Прекини везу apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Немате дозволу за ' {0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Поставите подразумевани рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Заказана за слање DocType: DocType,Track Seen,трацк Сеен DocType: Dropbox Settings,File Backup,Филе Бацкуп @@ -1047,12 +1095,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Не {0} фо apps/frappe/frappe/config/customization.py,Add custom forms.,Додај прилагођене облике. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} у {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,доставио овај документ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Дозволе корисника apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Система предоставляет множество заранее определенных ролей. Вы можете добавить новые роли , чтобы установить более тонкие разрешения ." DocType: Communication,CC,КЗ DocType: Country,Geo,Гео DocType: Data Migration Run,Trigger Name,Триггер Наме -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Домени +DocType: Onboarding Slide,Domains,Домени DocType: Blog Category,Blog Category,Категорија блог apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Не могу мапирати јер следећи услов не успе: DocType: Role Permission for Page and Report,Roles HTML,Улоге ХТМЛ @@ -1093,7 +1140,6 @@ DocType: Assignment Rule Day,Saturday,Субота DocType: User,Represents a User in the system.,Представља корисника у систему. DocType: List View Setting,Disable Auto Refresh,Онемогући аутоматско освежавање DocType: Comment,Label,Налепница -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Задатак {0}, да додељен {1}, је затворен." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Молимо затворите овај прозор DocType: Print Format,Print Format Type,Принт откуцајте формат DocType: Newsletter,A Lead with this Email Address should exist,Предност Ова адреса треба да постоји @@ -1110,6 +1156,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,СМТП подешав apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,изабери DocType: Data Export,Filter List,Листа филтера DocType: Data Export,Excel,Екцел +DocType: System Settings,HH:mm,ВХ: мм DocType: Email Account,Auto Reply Message,Ауто порука одговора DocType: Data Migration Mapping,Condition,Услов apps/frappe/frappe/utils/data.py,{0} hours ago,Пре {0} сати @@ -1128,12 +1175,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,База знања Сарадник DocType: Communication,Sent Read Receipt,Сент потврду читања DocType: Email Queue,Unsubscribe Method,унсубсцрибе Метод +DocType: Onboarding Slide,Add More Button,Додај још дугмета DocType: GSuite Templates,Related DocType,релатед ДОЦТИПЕ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Измените додати садржај apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,изаберите Језици apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Детаљи картице apps/frappe/frappe/__init__.py,No permission for {0},Нема дозвола за {0} DocType: DocType,Advanced,Напредан +DocType: Onboarding Slide,Slide Image Source,Извор слиде слике apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Изгледа АПИ Кеи или АПИ Тајна није у реду !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Референца: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Госпођа @@ -1150,6 +1199,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Мајст DocType: DocType,User Cannot Create,Корисник не може створити apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно завршено apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Приступ дропбок је одобрен! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Јесте ли сигурни да желите спојити {0} са {1}? DocType: Customize Form,Enter Form Type,Унесите Тип Форм DocType: Google Drive,Authorize Google Drive Access,Ауторизирајте приступ Гоогле диску apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Недостатак параметра Канбан Боард Наме @@ -1159,7 +1209,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешение DocType , DocType . Будьте осторожны !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Прилагођени формати за штампу, Емаил" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Збир {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Упдатед на нову верзију DocType: Custom Field,Depends On,Зависи DocType: Kanban Board Column,Green,Зелен DocType: Custom DocPerm,Additional Permissions,Дополнительные разрешения @@ -1187,6 +1236,7 @@ DocType: Energy Point Log,Social,Друштвено apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Гоогле календар - Није могуће креирати календар за {0}, код грешке {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Едитинг Ров DocType: Workflow Action Master,Workflow Action Master,Воркфлов Акција Мастер +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Избриши све DocType: Custom Field,Field Type,Тип поља apps/frappe/frappe/utils/data.py,only.,Само. DocType: Route History,Route History,Историја руте @@ -1223,11 +1273,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Zaboravili ste lozinku? DocType: System Settings,yyyy-mm-dd,гггг-мм-дд apps/frappe/frappe/desk/report/todo/todo.py,ID,ИД apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,грешка на серверу +DocType: Server Script,After Delete,Након брисања apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Погледајте све претходне извештаје. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Потребна је регистрација ИД DocType: Website Slideshow,Website Slideshow,Сајт Слидесхов apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Нема података DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Связь, которая главной страницы сайта . Стандартные ссылки (индекс , Логин, продукты , блог, о , контакт)" +DocType: Server Script,After Submit,Након слања apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Аутхентицатион фаилед док примање мејлова из Е-маил рачуна {0}. Порука са сервера: {1} DocType: User,Banner Image,Слика банера DocType: Custom Field,Custom Field,Прилагођена поља @@ -1268,15 +1320,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ако корисник има било какву улогу проверити, онда корисник постаје "Системски корисник". "Системски корисник" има приступ радној површини" DocType: System Settings,Date and Number Format,Дата и номер Формат apps/frappe/frappe/model/document.py,one of,Један од -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Провера један тренутак apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Схов ознаке DocType: DocField,HTML Editor,ХТМЛ Едитор 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,Акције -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник +DocType: DocType,Actions,Акције DocType: Workflow State,align-justify,алигн оправдава DocType: User,Middle Name (Optional),Средње име (опционо) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Није дозвољен @@ -1291,6 +1341,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Нет ре DocType: System Settings,Security,безопасность apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Планируется отправить {0} получателей apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Цут +DocType: Server Script,After Save,Након Саве apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},преименована са {0} до {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} од {1} ({2} редова са децом) DocType: Currency,**Currency** Master,**Валута** мастер @@ -1317,16 +1368,19 @@ DocType: Prepared Report,Filter Values,Вредности филтера DocType: Communication,User Tags,Корисник Тагс: DocType: Data Migration Run,Fail,Фаил DocType: Workflow State,download-alt,довнлоад-алт +DocType: Scheduled Job Type,Last Execution,Последње извршење DocType: Data Migration Run,Pull Failed,Пулл Фаилед apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Прикажи / сакриј картице DocType: Communication,Feedback Request,феедбацк Упит apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Увоз података из датотека ЦСВ / Екцел. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Следећа поља недостају: +DocType: Notification Log,From User,Од корисника apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Отказивање {0} DocType: Web Page,Main Section,Главни Секција DocType: Page,Icon,икона apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Хинт: Укључите симболе, бројеве и велика слова у лозинку" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Хинт: Укључите симболе, бројеве и велика слова у лозинку" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Конфигуришите обавештења за наводе, задатке, енергетске тачке и још много тога." DocType: DocField,Allow in Quick Entry,Дозволи у брзом уносу apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,пдф DocType: System Settings,dd/mm/yyyy,дд / мм / гггг @@ -1358,7 +1412,6 @@ DocType: Website Theme,Theme URL,УРЛ теме DocType: Customize Form,Sort Field,Сортирај Поље DocType: Razorpay Settings,Razorpay Settings,Разорпаи Подешавања apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Едит филтер -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Додај још DocType: System Settings,Session Expiry Mobile,Сесија истека Мобилни apps/frappe/frappe/utils/password.py,Incorrect User or Password,Погрешан корисник или лозинка apps/frappe/frappe/templates/includes/search_box.html,Search results for,Резултати претраге за @@ -1374,8 +1427,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Правило енергетске тачке DocType: Communication,Delayed,Одложен apps/frappe/frappe/config/settings.py,List of backups available for download,Листа бацкуп доступних за преузимање +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Испробајте нови увоз података apps/frappe/frappe/www/login.html,Sign up,Prijavi se apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Ред {0}: Није дозвољено да онемогућите Обавезно за стандардна поља +DocType: Webhook,Enable Security,Омогући сигурност apps/frappe/frappe/config/customization.py,Dashboards,Надзорне табле DocType: Test Runner,Output,излаз DocType: Milestone,Track Field,Тркаће поље @@ -1383,6 +1438,7 @@ DocType: Notification,Set Property After Alert,Сет имовине након apps/frappe/frappe/config/customization.py,Add fields to forms.,Добавление полей в формах. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Изгледа да нешто није у реду са Паипал конфигурације овог сајта. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Додај рецензију +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} доделио вам је нови задатак {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Величина фонта (пк) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Само стандардни ДоцТипес могу се прилагодити из Цустомизе Форм-а. DocType: Email Account,Sendgrid,Сендгрид @@ -1394,8 +1450,10 @@ DocType: Portal Menu Item,Portal Menu Item,Портал Ставка мениј apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Подесите филтере DocType: Contact Us Settings,Email ID,Е-маил ИД DocType: Energy Point Rule,Multiplier Field,Поље множитеља +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Није могуће креирати налог за Разорпаи. Молимо контактирајте администратора DocType: Dashboard Chart,Time Interval,Временски период DocType: Activity Log,Keep track of all update feeds,Пратите све феедове за ажурирање +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} дели документ са вама {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Листа средстава које ће клијент апликација има приступ након што корисник то дозвољава. <br> нпр пројекат DocType: Translation,Translated Text,prevedeno Текст DocType: Contact Us Settings,Query Options,Упит Опције @@ -1414,6 +1472,7 @@ DocType: DefaultValue,Key,Кључ DocType: Address,Contacts,связи DocType: System Settings,Setup Complete,Завершение установки apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Извештај свих акција докумената +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблон за увоз треба да буде типа .цсв, .клск или .клс" apps/frappe/frappe/www/update-password.html,New Password,Нова лозинка apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Филтер {0} недостаје apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Жао ми је! Ви не можете брисати ауто-генерисана коментаре @@ -1430,6 +1489,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Фавицон apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Трцати DocType: Blog Post,Content (HTML),Садржај (ХТМЛ) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Подешавање за DocType: Personal Data Download Request,User Name,Корисничко име DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Није пронађен @@ -1437,11 +1497,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Нема {0} дозвол apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Извоз Цустом Дозволе apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Нема пронађених предмета. DocType: Data Export,Fields Multicheck,Фиелдс Мултицхецк +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Комплетан DocType: Activity Log,Login,Пријава DocType: Web Form,Payments,Исплате apps/frappe/frappe/www/qrcode.html,Hi {0},Здраво {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Интеграција Гоогле диска. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} вратио је бодове {1} {2} DocType: System Settings,Enable Scheduled Jobs,Омогући Заказани Послови apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Напомене : apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Неактиван @@ -1466,6 +1526,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаб apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Дозвола за дозволу apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Име {0} не може бити {1} DocType: User Permission,Applicable For,Применимо для +DocType: Dashboard Chart,From Date,Од датума apps/frappe/frappe/core/doctype/version/version_view.html,Success,Успех apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Сесија је истекла apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Сесија је истекла @@ -1478,7 +1539,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; није дозвољено у стању DocType: Async Task,Async Task,Асинц Задатак DocType: Workflow State,picture,слика -apps/frappe/frappe/www/complete_signup.html,Complete,Комплетан +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Комплетан DocType: DocType,Image Field,Слика polje DocType: Print Format,Custom HTML Help,Прилагођени ХТМЛ Помоћ DocType: LDAP Settings,Default Role on Creation,Подразумевана улога на креацији @@ -1486,6 +1547,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Следећа држава DocType: User,Block Modules,Блоцк Модули DocType: Print Format,Custom CSS,Прилагођени ЦСС +DocType: Energy Point Rule,Apply Only Once,Пријавите се само једном apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Додај коментар DocType: Webhook,on_update,он_упдате apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Игноришу: {0} до {1} @@ -1497,6 +1559,7 @@ DocType: Email Account,Default Incoming,Уобичајено Долазни DocType: Workflow State,repeat,поновити DocType: Website Settings,Banner,Барјак apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Вредност мора бити једна од {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Откажи све документе DocType: Role,"If disabled, this role will be removed from all users.","Ако су искључене, ова улога ће бити уклоњен из свих корисника." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Идите на листу {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помоћ на Сеарцх @@ -1505,6 +1568,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Регис apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Аутоматско понављање овог документа је онемогућено. DocType: DocType,Hide Copy,Сакриј Цопи apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Очистите все роли +DocType: Server Script,Before Save,Пре Саве apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} мора бити јединствена apps/frappe/frappe/model/base_document.py,Row,Ред apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","ЦЦ, БЦЦ и Емаил Темплате" @@ -1515,7 +1579,6 @@ DocType: Chat Profile,Offline,оффлине apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Успешно увежено {0} DocType: User,API Key,АПИ кључ DocType: Email Account,Send unsubscribe message in email,Послати одјаву поруку у е-маил -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Уреди наслов apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,ФиелдНаме који ће бити ДОЦТИПЕ за ову област линк. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Документи додељени вама и од вас. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,То можете и да копирате и залепите @@ -1547,8 +1610,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Прикрепите изображение DocType: Workflow State,list-alt,лист-алт apps/frappe/frappe/www/update-password.html,Password Updated,Лозинка ажурирано +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Дозволе корисника apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Кораци за потврђивање вашег пријаве apps/frappe/frappe/utils/password.py,Password not found,Лозинка није пронађена +DocType: Webhook,Webhook Secret,Вебхоок Сецрет DocType: Data Migration Mapping,Page Length,Дужина странице DocType: Email Queue,Expose Recipients,изложити прималаца apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Аппенд Да је обавезна за долазне поште @@ -1576,6 +1641,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Систем DocType: Web Form,Max Attachment Size (in MB),Мак Прилог Величина (у МБ) apps/frappe/frappe/www/login.html,Have an account? Login,Имате кориснички рачун? Пријава +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Подешавања штампања ... DocType: Workflow State,arrow-down,стрелица надоле apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ред {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Корисник није дозвољено да избришете {0}: {1} @@ -1597,6 +1663,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Унес DocType: Dropbox Settings,Dropbox Access Secret,Дропбок Приступ тајна DocType: Tag Link,Document Title,Назив документа apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обавезно) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} пре годину дана DocType: Social Login Key,Social Login Provider,Социал Логин Провидер apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Додати још један коментар apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Нема података у датотеци. Молимо да поново унесете нову датотеку са подацима. @@ -1611,11 +1678,12 @@ DocType: Workflow State,hand-down,рука-доле apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Није пронађено поље које се може користити као Канбанова колона. Помоћу обрасца за прилагођавање додајте прилагођено поље типа "Изабери". DocType: Address,GST State,ПДВ државе apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : Не удается установить Отмена без Отправить +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Корисник ({0}) DocType: Website Theme,Theme,Тема DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Редирецт УРИ Боунд То Аутх Цоде apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Отворите помоћ DocType: DocType,Is Submittable,Да ли Субмиттабле -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Нев Ментион +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Нев Ментион apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Није синхронизован нови Гоогле контакт. DocType: File,Uploaded To Google Drive,Отпремљено на Гоогле диск apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,"Значение для поля проверки может быть либо 0, либо 1" @@ -1627,7 +1695,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Инбок DocType: Kanban Board Column,Red,Црвен DocType: Workflow State,Tag,Надимак -DocType: Custom Script,Script,Скрипта +DocType: Report,Script,Скрипта apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Документ не може бити сачуван. DocType: Energy Point Rule,Maximum Points,Максимални бодови apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Моја подешавања @@ -1657,9 +1725,12 @@ DocType: Address,Haryana,Харајана apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} бодови за уважавање {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Роли могут быть установлены для пользователей из их странице пользователя. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Додај коментар +DocType: Dashboard Chart,Select Date Range,Изаберите Распон датума DocType: DocField,Mandatory,Обавезан apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модул за извоз +DocType: Scheduled Job Type,Monthly Long,Месечно дуго apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{ Не 0}: Нет базовый набор разрешений +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Пошаљите поруку е-поште {0} да бисте је повезали овде apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Значење Субмит, Цанцел, Допунити" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,делать @@ -1668,7 +1739,6 @@ DocType: Milestone Tracker,Track milestones for any document,Пратите пр DocType: Social Login Key,Identity Details,Детаљи о идентитету apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Прелаз стања тока рада није дозвољен са {0} на {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Прикажи контролну таблу -apps/frappe/frappe/desk/form/assign_to.py,New Message,Нова порука DocType: File,Preview HTML,Преглед ХТМЛ DocType: Desktop Icon,query-report,упит-извештај DocType: Data Import Beta,Template Warnings,Упозорења шаблона @@ -1679,18 +1749,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Повеза apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Измените подешавања аутоматског извештаја о е-пошти DocType: Chat Room,Message Count,Порука броја DocType: Workflow State,book,књига +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} је повезан са следећим достављеним документима: {2} DocType: Communication,Read by Recipient,Читајте Реципиент DocType: Website Settings,Landing Page,Ландинг Паге apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Грешка у Цустом Сцрипт apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Име apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Нема Дозволе сет за овим критеријумима. DocType: Auto Email Report,Auto Email Report,Ауто-маил Извештај +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Нови документ је подељен apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Обриши коментар? DocType: Address Template,This format is used if country specific format is not found,Овај формат се користи ако земља специфична формат није пронађен DocType: System Settings,Allow Login using Mobile Number,Дозволите Пријава користећи број мобилног телефона apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,Немате довољно дозволе за приступ овом садржају. Контактирајте свог менаџера да бисте добили приступ. DocType: Custom Field,Custom,Обичај DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ако је омогућено, корисници који се пријављују из ограничене ИП адресе неће бити затражени за Тво Фацтор Аутх" +DocType: Server Script,After Cancel,Након отказа DocType: Auto Repeat,Get Contacts,Добијте контакте apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Поруке филед ундер {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Прескакање колоне без наслова @@ -1701,6 +1774,7 @@ DocType: User,Login After,Пријава После DocType: Print Format,Monospace,Моноспаце DocType: Letter Head,Printing,Штампање DocType: Workflow State,thumbs-up,тхумбс уп +DocType: Notification Log,Mention,Помињање DocType: DocPerm,DocPerm,ДоцПерм DocType: Print Settings,Fonts,Фонтови apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Прецисион треба да буде између 1 и 6 @@ -1708,7 +1782,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Фв: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,и apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Овај извештај је генерисан на {0} DocType: Error Snapshot,Frames,Оквири -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Додељивање +DocType: Notification Log,Assignment,Додељивање DocType: Notification,Slack Channel,Слацк Цханнел DocType: About Us Team Member,Image Link,Слика Линк DocType: Auto Email Report,Report Filters,Репорт Филтери @@ -1725,7 +1799,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Није могуће ажурирати догађај apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Верификациони код је послат на вашу регистровану адресу е-поште. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Лагано +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Ваша мета apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Филтер мора имати 4 вредности (доцтипе, фиелднаме, оператор, валуе): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Није наведено име за {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Примените правило додељивања apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/utils/data.py,Invalid field name {0},Неважеће име поља {0} @@ -1735,7 +1811,6 @@ DocType: Workflow State,text-height,текст-висина DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Мапирање плана преноса података apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Започињање Фраппе ... DocType: Web Form Field,Max Length,Максимална дужина -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},За {0} {1} DocType: Print Format,Jinja,Јиња DocType: Workflow State,map-marker,мапа-маркера apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Представьте о проблеме @@ -1771,6 +1846,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Страница не по apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Коментара DocType: DocType,Route,Рута apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Разорпаи подешавања Паимент Гатеваи +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} стекао је {1} поен за {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Прихватите приложене слике из документа DocType: Chat Room,Name,Име DocType: Contact Us Settings,Skype,Скипе @@ -1781,7 +1857,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Отвори apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Твој језик DocType: Dashboard Chart,Average,Просек apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Додај ред -DocType: Tag Category,Doctypes,Доцтипес apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Штампач apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Упит мора бити ИЗАБЕРИ DocType: Auto Repeat,Completed,Завршен @@ -1841,6 +1916,7 @@ DocType: GCalendar Account,Next Sync Token,Нект Синц Токен DocType: Energy Point Settings,Energy Point Settings,Подешавања енергетске тачке DocType: Async Task,Succeeded,Суццеедед apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Обязательные поля , необходимые в {0}" +DocType: Onboarding Slide Field,Align,Поравнајте apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Сброс разрешений для {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Корисници и дозволе DocType: S3 Backup Settings,S3 Backup Settings,С3 Бацкуп Сеттингс @@ -1857,7 +1933,9 @@ DocType: DocType,ASC,АСЦ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Ново име формата за штампање apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Кликните на доњу везу да бисте одобрили захтев DocType: Workflow State,align-left,алигн левом +DocType: Onboarding Slide,Action Settings,Подешавања акције DocType: User,Defaults,Примарни +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За поређење користите> 5, <10 или = 324. За опсеге користите 5:10 (за вредности између 5 и 10)." DocType: Energy Point Log,Revert Of,Реверт Оф apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Споји са постојећим DocType: User,Birth Date,Датум рођења @@ -1913,6 +1991,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,у DocType: Notification,Value Change,Вредност Промена DocType: Google Contacts,Authorize Google Contacts Access,Ауторизирајте приступ Гоогле контактима apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Приказују се само Нумеричка поља из Извештаја +apps/frappe/frappe/utils/data.py,1 week ago,Пре 1 недељу DocType: Data Import Beta,Import Type,Врста увоза DocType: Access Log,HTML Page,ХТМЛ страница DocType: Address,Subsidiary,Подружница @@ -1922,7 +2001,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Са меморандумом apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Неверный Сервер исходящей почты или порт DocType: Custom DocPerm,Write,Написати -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Само администратор дозвољено да створе Упит / Сцрипт Репортс apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ажурирање DocType: Data Import Beta,Preview,предварительный просмотр apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Поље "вредност" је обавезан. Наведите вредност која се ажурира @@ -1932,6 +2010,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Позов DocType: Data Migration Run,Started,Почело apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Корисник {0} нема приступ овом документу DocType: Data Migration Run,End Time,Крајње време +DocType: Dashboard Chart,Group By Based On,Групирање на основу apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Изаберите прилоге apps/frappe/frappe/model/naming.py, for {0},за {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Није вам дозвољено штампање овог документа @@ -1973,6 +2052,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Проверити DocType: Workflow Document State,Update Field,Упдате Фиелд DocType: Chat Profile,Enable Chat,Омогући ћаскање DocType: LDAP Settings,Base Distinguished Name (DN),База препознатљивог имена (ДН) +DocType: Server Script,API,АПИ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Оставите овај разговор apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Опции не установлен поля связи {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Ред чекања / радник @@ -2040,12 +2120,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Войти не допускается в это время DocType: Data Migration Run,Current Mapping Action,Актуелна акција мапирања DocType: Dashboard Chart Source,Source Name,извор Име -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ниједан налог е-поште није повезан са корисником. Додајте налог у оквиру Корисник> Инбок. DocType: Email Account,Email Sync Option,Емаил Синхронизација Опција apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Ред број DocType: Async Task,Runtime,Рунтиме DocType: Post,Is Pinned,Ис Пиннед DocType: Contact Us Settings,Introduction,Увод +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Потребна помоћ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Закачите глобално apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Затим DocType: LDAP Settings,LDAP Email Field,ЛДАП-маил Поље @@ -2055,7 +2135,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Већ к DocType: User Email,Enable Outgoing,Омогући Одлазећи DocType: Address,Fax,Фак apps/frappe/frappe/config/customization.py,Custom Tags,Цустом Ознаке -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешавање. Креирајте нови рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил DocType: Comment,Submitted,Поднет DocType: Contact,Pulled from Google Contacts,Извлачено из Гоогле контаката apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Неважећи Упит @@ -2076,9 +2155,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Почет apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Додели ме DocType: DocField,Dynamic Link,Динамиц Линк apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Притисните тастер Алт да покренете додатне пречице у менију и бочној траци +DocType: Dashboard Chart,To Date,За датум DocType: List View Setting,List View Setting,Подешавање приказа листе apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Схов фаилед послови -DocType: Event,Details,Детаљи +DocType: Scheduled Job Log,Details,Детаљи DocType: Property Setter,DocType or Field,ДОЦТИПЕ или поље apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Поновно пратите овај документ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Примарна боја @@ -2086,7 +2166,6 @@ DocType: Communication,Soft-Bounced,Мека-Боунцед DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ако је омогућено, сви корисници могу се пријавити са било које ИП адресе помоћу Тво Фацтор Аутх. Ово се такође може поставити само за одређене кориснике (кориснике) на корисничкој страни" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Изгледа објавити кључ или тајни кључ није у реду !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Брза помоћ за постављање дозвола -DocType: Tag Doc Category,Doctype to Assign Tags,ДОЦТИПЕ доделити Ознаке apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Схов релапс apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Е-маил је премештена у отпад DocType: Report,Report Builder,Репорт Буилдер @@ -2102,6 +2181,7 @@ DocType: Workflow State,Upload,отпремање DocType: User Permission,Advanced Control,Напредна контрола DocType: System Settings,Date Format,Формат датума apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Није Објављено +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Није пронађена задана шаблона адресе. Креирајте нову из Подешавање> Штампање и брендирање> Предложак адреса. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Действия для рабочего процесса (например Утвердить , Отменить ) ." DocType: Data Import,Skip rows with errors,Прескочите редове са грешкама DocType: Workflow State,flag,застава @@ -2111,7 +2191,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Шт apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Скочи на поље DocType: Contact Us Settings,Forward To Email Address,Нападач на е-адресу DocType: Contact Phone,Is Primary Phone,Је примарни телефон -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Пошаљите поруку е-поште {0} да бисте је повезали овде. DocType: Auto Email Report,Weekdays,Радним данима apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} записи ће се извозити apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля @@ -2119,7 +2198,7 @@ DocType: Post Comment,Post Comment,Постави коментар apps/frappe/frappe/config/core.py,Documents,Документи apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Пријављивање активности DocType: Social Login Key,Custom Base URL,Корисничка база УРЛ адресе -DocType: Email Flag Queue,Is Completed,Је завршен +DocType: Onboarding Slide,Is Completed,Је завршен apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Гет Фиелдс apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Измена профила DocType: Kanban Board Column,Archived,Архивирано @@ -2130,12 +2209,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ово поље ће се појавити само ако фиелднаме овде дефинисана је вредност или правила су прави (примери): мифиелд ЕВАЛ: доц.мифиелд == 'Мој Вредност' евал: доц.аге> 18 DocType: Social Login Key,Office 365,Оффице 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Данас -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Данас +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Данас +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Данас apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Када сте подесили ово , корисници ће бити у стању само приступ документима ( нпр. блог пост ) где постојивеза ( нпр. Блоггер ) ." DocType: Data Import Beta,Submit After Import,Пошаљите после увоза DocType: Error Log,Log of Scheduler Errors,Лог од Сцхедулер Грешке DocType: User,Bio,Био +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Линк за помоћ у клизном слајду DocType: OAuth Client,App Client Secret,Апп Клијент Тајна apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Подношење apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Родитељ је назив документа на који ће се подаци додати. @@ -2143,7 +2223,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,велика слова apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Цустом ХТМЛ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Унесите име фасцикле -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Није пронађен ниједан задани предложак адресе. Креирајте нову из Подешавање> Штампање и брендирање> Предложак адреса. apps/frappe/frappe/auth.py,Unknown User,Непознат корисника apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Избор улоге DocType: Comment,Deleted,Делетед @@ -2159,7 +2238,7 @@ DocType: Chat Token,Chat Token,Цхат Токен apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Креирајте графикон apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,јохн@дое.цом apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не увози -DocType: Web Page,Center,Центар +DocType: Onboarding Slide Field,Center,Центар DocType: Notification,Value To Be Set,Вредност за подешавање apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Измени {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Први ниво @@ -2167,7 +2246,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Име базе података apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Рефресх Образац DocType: DocField,Select,Одабрати -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Погледајте цео дневник +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Погледајте цео дневник DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Симпле Питхон Екпрессион, Екампле: статус == 'Опен' и откуцајте == 'Буг'" apps/frappe/frappe/utils/csvutils.py,File not attached,Файл не прилагается apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Конекција изгубљена. Неке функције можда неће радити. @@ -2199,6 +2278,7 @@ DocType: Web Page,HTML for header section. Optional,HTML для раздела apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ова функција је потпуно нов и још увек експериментална apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Максимальные {0} строк разрешено DocType: Dashboard Chart Link,Chart,Табела +DocType: Scheduled Job Type,Cron,Црон DocType: Email Unsubscribe,Global Unsubscribe,Глобална Откажи apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ово је веома честа лозинка. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Погледај @@ -2215,6 +2295,7 @@ DocType: Data Migration Connector,Hostname,Хостнаме DocType: Data Migration Mapping,Condition Detail,Детаљно стање apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","За валуту {0}, минимална трансакција износи {1}" DocType: DocField,Print Hide,Принт Сакриј +DocType: System Settings,HH:mm:ss,ВШ: мм: сс apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Кориснику apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Введите значение DocType: Workflow State,tint,нијанса @@ -2282,6 +2363,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,КР код з apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Адд то То До DocType: Footer Item,Company,Компанија apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Просек {0} +DocType: Scheduled Job Log,Scheduled,Планиран DocType: User,Logout from all devices while changing Password,Одјавите се са свих уређаја док мењате лозинку apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Провера Лозинке apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Были ошибки @@ -2307,7 +2389,7 @@ DocType: Error Snapshot,Pyver,Пивер apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Корисничка дозвола већ постоји apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Мапирање колоне {0} у поље {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Прегледати {0} -DocType: User,Hourly,По сату +DocType: Scheduled Job Type,Hourly,По сату apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистер ОАутх Цлиент Апп DocType: DocField,Fetch If Empty,Дохвати ако је празно DocType: Data Migration Connector,Authentication Credentials,Аутентификацијски акредитиви @@ -2318,10 +2400,10 @@ DocType: SMS Settings,SMS Gateway URL,СМС Гатеваи УРЛ адреса apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бити ""{2}"". Требало би да буде један од ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},стекао {0} аутоматским правилом {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} {1} или +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Сви сте спремни! DocType: Workflow State,trash,отпад DocType: System Settings,Older backups will be automatically deleted,Старији резервне копије ће бити аутоматски обрисан apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Инвалид Аццесс Кеи Кеи или Тајни приступни кључ. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Изгубили сте неке енергетске бодове DocType: Post,Is Globally Pinned,Је Глобалли Пиннед apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,скорашња активност DocType: Workflow Transition,Conditions,Услови @@ -2330,6 +2412,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Потврђ DocType: Event,Ends on,Завршава се DocType: Payment Gateway,Gateway,Пролаз DocType: LDAP Settings,Path to Server Certificate,Пут до сертификата сервера +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Јавасцрипт је онемогућен у вашем претраживачу apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Није довољно дозвола да виде линкове apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Није довољно дозвола да виде линкове apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Адрес Название является обязательным. @@ -2349,7 +2432,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,еу-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ако је ово потврђено, редови са важећим подацима ће бити увезени и неважећи редови ће бити депоновани у нову датотеку која ће вам касније бити увезена." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ је само мењати од стране корисника о улози -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,Прочитајте Реципиент Он DocType: Blogger,Short Name,Кратко Име @@ -2382,6 +2464,7 @@ DocType: Translation,PR sent,ПР је послат DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Само Сенд Записи Ажурирано Ласт Кс сати DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Само Сенд Записи Ажурирано Ласт Кс сати DocType: Communication,Feedback,Повратна веза +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Ажурирано на нову верзију 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Отворите превод apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Овај е-маил је аутогенерисан DocType: Workflow State,Icon will appear on the button,Икона ће се појавити на дугмету @@ -2420,6 +2503,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Стран DocType: DocField,Precision,Прецизност DocType: Website Slideshow,Slideshow Items,Слидесхов Артикли apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Покушајте да избегнете понављање речи и знакове +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Обавештења су онемогућена +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Јесте ли сигурни да желите да избришете све редове? DocType: Workflow Action,Workflow State,Воркфлов држава apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,redovi додавања apps/frappe/frappe/www/list.py,My Account,Мој налог @@ -2428,6 +2513,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Дани После apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,КЗ Траи Цоннецтион Ацтиве! DocType: Contact Us Settings,Settings for Contact Us Page,Подешавања за Контакт Паге +DocType: Server Script,Script Type,Скрипта Врста DocType: Print Settings,Enable Print Server,Омогући Сервер за штампање apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,пре {0} недеље DocType: Email Account,Footer,Подножје @@ -2453,8 +2539,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Упозорење apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Ово може бити одштампано на више страница DocType: Data Migration Run,Percent Complete,Перцент Цомплете -DocType: Tag Category,Tag Category,таг Категорија -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За поређење користите> 5, <10 или = 324. За опсеге користите 5:10 (за вредности између 5 и 10)." DocType: Google Calendar,Pull from Google Calendar,Повуците из Гоогле календара apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Помоћ DocType: User,Login Before,Пријава Пре @@ -2464,17 +2548,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Сакриј викенде apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Аутоматски генерише понављајуће документе. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ис +DocType: Onboarding Slide,ERPNext,ЕРПНект DocType: Workflow State,info-sign,инфо-знак apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Вредност за {0} не може бити листа DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Како би ова валута се форматира? Ако нису подешене, неће користити подразумеване системске" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Пошаљи {0} документе? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему, и есть роль System Manager , чтобы иметь возможность доступа к резервные копии." +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Грешка приликом повезивања са апликацијом КЗ Траи ... <br><br> За употребу функције Рав Принт морате да имате инсталирану и покренуту апликацију КЗ Траи. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Кликните овде да бисте преузели и инсталирали КЗ Траи</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Кликните овде да бисте сазнали више о сировом штампању</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Мапирање штампача apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Молимо вас да спаси пре постављања. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Да ли желите да откажете све повезане документе? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Додато {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Фиелдтипе не може да се промени из {0} на {1} у {2} редом apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Роле Дозволе DocType: Help Article,Intermediate,средњи +apps/frappe/frappe/config/settings.py,Email / Notifications,Емаил Обавештења apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} промењен {1} у {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Отказан документ је обновљен као Нацрт DocType: Data Migration Run,Start Time,Почетак Време @@ -2491,6 +2579,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,М apps/frappe/frappe/email/smtp.py,Invalid recipient address,Неверный адрес получателя DocType: Workflow State,step-forward,корак напред DocType: System Settings,Allow Login After Fail,Дозволи пријава након грешке +DocType: DocType Link,DocType Link,ДоцТипе Линк DocType: Role Permission for Page and Report,Set Role For,Сет улога DocType: GCalendar Account,The name that will appear in Google Calendar,Име које ће се појавити у Гоогле календару apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Директна соба са {0} већ постоји. @@ -2508,6 +2597,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Креи DocType: Contact,Google Contacts,Гоогле контакти DocType: GCalendar Account,GCalendar Account,ГЦалендар Аццоунт DocType: Email Rule,Is Spam,је спам +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Последња apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Извештај {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Отворено {0} DocType: Data Import Beta,Import Warnings,Увези упозорења @@ -2519,6 +2609,7 @@ DocType: Workflow State,ok-sign,ок-знак apps/frappe/frappe/config/settings.py,Deleted Documents,Делетед Документи apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,ЦСВ формат је осетљив на велика и мала слова apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Икона на радној површини већ постоји +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Наведите у којим све доменама треба да се приказују слајдови. Ако ништа није наведено, слајд је подразумевано приказан у свим доменима." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дупликат apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Поље {1} у реду {2} не може се сакрити и обавезно без заданих поставки DocType: Newsletter,Create and Send Newsletters,Стварање и слање Билтен @@ -2529,6 +2620,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ИД догађаја Гоогле календара apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Родитељ"" означава родитељску табелу у којој морају да се поставе ово ред" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Преглед бодова: +DocType: Scheduled Job Log,Scheduled Job Log,Заказани дневник послова +DocType: Server Script,Before Delete,Пре брисања apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Заједничка Са apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Приложите датотеке / урлс и додајте у таблицу. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Порука није подешена @@ -2552,19 +2645,21 @@ DocType: About Us Settings,Settings for the About Us Page,Подешавања apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Стрипе подешавања Паимент Гатеваи apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Стрипе подешавања Паимент Гатеваи apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Штампано Послано штампачу! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Енергетски поени +DocType: Notification Settings,Energy Points,Енергетски поени +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Време {0} мора бити у формату: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,нпр поп.гмаил.цом / имап.гмаил.цом DocType: User,Generate Keys,Генериши кључеве apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ово ће трајно уклонити ваше податке. DocType: DocType,View Settings,Погледај Подешавања +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ново обавештење DocType: Email Account,Outlook.com,Оутлоок.цом DocType: Webhook,Request Structure,Захтева структура +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Недостаје метода контролера гет_разорпаи_ордер DocType: Personal Data Deletion Request,Pending Verification,у току верификација DocType: Website Meta Tag,Website Meta Tag,Мета Таг веб странице DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ако нестандардни порт (нпр. 587). Ако сте у Гоогле Цлоуд-у, пробајте порт 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Чишћење датума завршетка, јер то не може бити у прошлости за објављене странице." DocType: User,Send Me A Copy of Outgoing Emails,Пошаљите ми копију Оутгоинг емаилс-а -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.,Додајте Гоогле Аналитицс ИД: нпр. УА-89КСКСКС57-1. Молимо вас тражи помоћ за Гоогле Аналитицс за више информација. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Лозинка не може бити дужи од 100 знакова DocType: OAuth Client,App Client ID,Апп ИД клијента @@ -2593,6 +2688,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Нова ло apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} дели тај документ са {1} DocType: Website Settings,Brand Image,Слика бренда DocType: Print Settings,A4,А4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Шаблон за увоз треба да садржи заглавље и најмање један ред. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Гоогле календар је конфигурисан. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Подешавање топ навигатион бар, подножје и логотипом." DocType: Web Form Field,Max Value,мак Вредност @@ -2602,6 +2698,7 @@ DocType: User Social Login,User Social Login,Кориснички социјал apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} критиковао је ваш рад на {1} са {2} тачком DocType: Contact,All,Све DocType: Email Queue,Recipient,Прималац +DocType: Webhook,Webhook Security,Сигурност за Вебхоок DocType: Communication,Has Attachment,ima Аттацхмент DocType: Address,Sales User,Продаја Корисник apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Драг анд дроп алат за изградњу и прилагодите словима. @@ -2668,7 +2765,6 @@ DocType: Data Migration Mapping,Migration ID Field,Поље ИД миграци DocType: Dashboard Chart,Last Synced On,Последњи синхронизован DocType: Comment,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,ОАутх клијента -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} критиковао је ваш рад на {1} {2} DocType: Assignment Rule,Users,Усерс DocType: Address,Odisha,Ориса DocType: Report,Report Type,Врста извештаја @@ -2694,14 +2790,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Сајт Слидесхо apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Само одобрење није дозвољено DocType: GSuite Templates,Template ID,ИД шаблона apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Комбинација Тип Гранта ( <code>{0}</code> ) и Тип Одговора ( <code>{1}</code> ) није допуштена -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Нова порука од {0} DocType: Portal Settings,Default Role at Time of Signup,Уобичајено Улога у време Сигнуп DocType: DocType,Title Case,Наслов Случај apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Кликните на доњу везу да бисте преузели своје податке apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Омогућено е-поштно сандуче за корисника {0} DocType: Data Migration Run,Data Migration Run,Покретање података DocType: Blog Post,Email Sent,Емаил Сент -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Старији DocType: DocField,Ignore XSS Filter,Игноре КССС Филтер apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,уклоњена apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Подешавања дропбок бацкуп @@ -2756,6 +2850,7 @@ DocType: Async Task,Queued,Куеуед DocType: Braintree Settings,Use Sandbox,Употреба Песак apps/frappe/frappe/utils/goal.py,This month,Овог месеца apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нови Прилагођени Принт Формат +DocType: Server Script,Before Save (Submitted Document),Пре него што сачувате (достављен документ) DocType: Custom DocPerm,Create,Створити apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Нема више ставки за приказ apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Идите на претходни запис @@ -2812,6 +2907,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Пошаљи У ђубре DocType: Web Form,Web Form Fields,Веб Форм Поља DocType: Data Import,Amended From,Измењена од +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Додајте видео везу за помоћ само у случају да корисник нема појма о томе шта треба попунити. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Упозорење: Није могуће пронаћи {0} у сваком столу у вези са {1} DocType: S3 Backup Settings,eu-north-1,еу-север-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Овај документ је тренутно чекају на извршење. Молим вас, покушајте поново" @@ -2834,6 +2930,7 @@ DocType: Blog Post,Blog Post,Блог пост DocType: Access Log,Export From,Извоз из apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Напредна претрага apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Нисте дозвољени да погледате билтен. +DocType: Dashboard Chart,Group By,Група По DocType: User,Interests,Интереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции Восстановление пароля были отправлены на электронную почту DocType: Energy Point Rule,Allot Points To Assigned Users,Додијелите бодове додијељеним корисницима @@ -2849,6 +2946,7 @@ DocType: Assignment Rule,Assignment Rule,Правило додељивања apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Предложио име: {0} DocType: Assignment Rule Day,Day,дан apps/frappe/frappe/public/js/frappe/desk.js,Modules,Модули +DocType: DocField,Mandatory Depends On,Обавезно зависи од тога apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,plaćanje Успех apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Но {0} пошта DocType: OAuth Bearer Token,Revoked,Ревокед @@ -2856,6 +2954,7 @@ DocType: Web Page,Sidebar and Comments,Сидебар и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","При Изменить документ после Отменить и сохранить его , он будет получать новый номер, который является версией старой числа ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Није дозвољено да приложите {0} документ, молимо омогућите Дозволи штампање За {0} у подешавањима штампања" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешавање. Креирајте нови рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Погледајте документ на {0} DocType: Stripe Settings,Publishable Key,који се може објавити ključ DocType: Stripe Settings,Publishable Key,који се може објавити ključ @@ -2870,13 +2969,13 @@ DocType: Currency,Fraction,Фракција apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Догађај је синхронизован са Гоогле календаром. DocType: LDAP Settings,LDAP First Name Field,ЛДАП-Име поља DocType: Contact,Middle Name,Средње име +DocType: DocField,Property Depends On,Власништво зависи од DocType: Custom Field,Field Description,Поље Опис apps/frappe/frappe/model/naming.py,Name not set via Prompt,Име није постављен преко линији apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Е-маил Примљене apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ажурирање {0} од {1}, {2}" DocType: Auto Email Report,Filters Display,Филтери Приказ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Да би се извршио амандман мора бити присутно поље „измијењено_фром“. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ценио је ваш рад на {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Сачувај филтере DocType: Address,Plant,Биљка apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Одговори свима @@ -2917,11 +3016,11 @@ DocType: Workflow State,folder-close,фолдер затвори apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Извештај: DocType: Print Settings,Print taxes with zero amount,Штампај порез са нултим износом apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} не могут быть переименованы +DocType: Server Script,Before Insert,Пре уметања DocType: Custom Script,Custom Script,Цустом Сцрипт DocType: Address,Address Line 2,Аддресс Лине 2 DocType: Address,Reference,Упућивање apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Додељено -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Поставите подразумевани рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Детаљи мапирања миграције података DocType: Data Import,Action,Акција DocType: GSuite Settings,Script URL,сцрипт УРЛ адреса @@ -2947,11 +3046,13 @@ DocType: User,Api Access,Апи Аццесс DocType: DocField,In List View,У приказу листе DocType: Email Account,Use TLS,Користите тлс apps/frappe/frappe/email/smtp.py,Invalid login or password,Неверный Войти или пароль +DocType: Scheduled Job Type,Weekly Long,Недељно дуго apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Преузмите шаблон apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Добавить пользовательские JavaScript в формах. ,Role Permissions Manager,Роле Дозволе менаџер apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Име новог Принт Формат apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Пребаците бочну траку +DocType: Server Script,After Save (Submitted Document),Након снимања (предати документ) DocType: Data Migration Run,Pull Insert,Пулл Инсерт DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Максималан број бодова дозвољен након множења бодова са мултипликатором (Напомена: Ако нема ограничења, ово поље не остављајте празно или поставите 0)" @@ -2971,6 +3072,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,ЛДАП-Нот Инсталлед apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Довнлоад са подацима apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},измењене вредности за {0} {1} +DocType: Server Script,Before Cancel,Пре отказа DocType: Workflow State,hand-right,рука-десна DocType: Website Settings,Subdomain,Поддомен DocType: S3 Backup Settings,Region,Регија @@ -3016,12 +3118,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Старо Лозинк DocType: S3 Backup Settings,us-east-1,ус-исток-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Поруке по {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Да бисте обликовали колоне, дај ознаке колона у упиту." +DocType: Onboarding Slide,Slide Fields,Слиде Фиелдс DocType: Has Domain,Has Domain,има домен DocType: User,Allowed In Mentions,Допуштено у напоменама apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Немате налог? Пријави се apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Није могуће уклонити ИД поље apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : Не удается установить Назначить Изменить если не Submittable DocType: Address,Bihar,бихар +DocType: Notification Settings,Subscribed Documents,Претплаћени документи apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Подешавања корисника DocType: Report,Reference Report,Референтни извештај DocType: Activity Log,Link DocType,линк ДОЦТИПЕ @@ -3039,6 +3143,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Ауторизирај apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Страница коју тражите је нестао. Ово би могло бити зато што се помера или постоји грешка у линку. apps/frappe/frappe/www/404.html,Error Code: {0},Грешка код: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис за листинг страну, у чисти текст, само пар редова. (Максимално 140 знакова)" +DocType: Server Script,DocType Event,ДоцТипе Евент apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} су обавезна поља DocType: Workflow,Allow Self Approval,Дозволи самопоуздање DocType: Event,Event Category,Категорија догађаја @@ -3055,6 +3160,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Твоје име apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Суццесс Цоннецтион DocType: DocType,InnoDB,ИнноДБ +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Уграђени клизач наставка типа дијапозитива већ постоји. DocType: DocType,Default Sort Field,Подразумевано поље за сортирање DocType: File,Is Folder,Да ли је Папка DocType: Document Follow,DocType,ДОЦТИПЕ @@ -3093,8 +3199,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vrednos DocType: Workflow State,arrow-up,арров-уп DocType: Dynamic Link,Link Document Type,Тип документа везе apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Требао би бити најмање један ред за {0} таблицу +DocType: Server Script,Server Script,Сервер Сцрипт apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Да бисте конфигурирали аутоматско понављање, омогућите „Дозволи аутоматско понављање“ од {0}." DocType: OAuth Bearer Token,Expires In,Истиче +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Колико пута желите поновити скуп поља (нпр .: ако желите 3 клијента на слајду, поставите ово поље на 3. Само први сет поља приказан је као обавезан на слајду)" DocType: DocField,Allow on Submit,Дозволи на Субмит DocType: DocField,HTML,ХТМЛ- DocType: Error Snapshot,Exception Type,Екцептион @@ -3104,6 +3212,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Хеадерс apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Предстојећи догађаји apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Молимо унесите вредности за Апп приступни тастер и Апп Сецрет Кеи +DocType: Email Account,Append Emails to Sent Folder,Додајте поруке е-поште у Послани директоријум DocType: Web Form,Accept Payment,прихвати плаћање apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Изаберите ставку листе apps/frappe/frappe/config/core.py,A log of request errors,Евиденција захтева грешака @@ -3122,7 +3231,7 @@ DocType: Translation,Contributed,Допринели apps/frappe/frappe/config/customization.py,Form Customization,Прилагодба облика apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нема активних сесија DocType: Web Form,Route to Success Link,Пут до успеха Линк -DocType: Top Bar Item,Right,Право +DocType: Onboarding Slide Field,Right,Право apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Нема предстојећих догађаја DocType: User,User Type,Тип корисника DocType: Prepared Report,Ref Report DocType,Реф Репорт ДоцТипе @@ -3140,6 +3249,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Молим ва apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',УРЛ адреса мора почети са 'хттп: //' или 'хттпс: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Опција 3 DocType: Communication,uid,? уид +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Ово се не може поништити DocType: Workflow State,Edit,Едит DocType: Website Settings,Chat Operators,Цхат Оператори DocType: S3 Backup Settings,ca-central-1,ца-централ-1 @@ -3151,7 +3261,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Имате сачували све промене у овом облику . DocType: Address,Telangana,телангана apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,Уобичајено за {0} мора бити опција -DocType: Tag Doc Category,Tag Doc Category,Таг Док Категорија apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Извештај са више од 10 колона изгледа боље у пејзажном режиму. apps/frappe/frappe/database/database.py,Invalid field name: {0},Неважеће име поља: {0} DocType: Milestone,Milestone,Прекретница @@ -3160,7 +3269,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Идите на {0} apps/frappe/frappe/email/queue.py,Emails are muted,Письма приглушены apps/frappe/frappe/config/integrations.py,Google Services,Гоогле услуге apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Цтрл + Уп -apps/frappe/frappe/utils/data.py,1 weeks ago,пре 1 недеља +DocType: Onboarding Slide,Slide Description,Опис слајда DocType: Communication,Error,Грешка apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Прво поставите поруку DocType: Auto Repeat,End Date,Датум завршетка @@ -3181,10 +3290,12 @@ DocType: Footer Item,Group Label,Група Ознака DocType: Kanban Board,Kanban Board,канбан одбор apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Гоогле контакти су конфигурисани. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Извешће се 1 запис +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ниједан налог е-поште није повезан са корисником. Додајте налог у оквиру Корисник> Инбок поште. DocType: DocField,Report Hide,Извештај Сакриј apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Дрво поглед није доступан за {0} DocType: DocType,Restrict To Domain,Забранити Да домена DocType: Domain,Domain,Домен +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Неважећа УРЛ адреса датотеке. Молимо контактирајте систем администратора. DocType: Custom Field,Label Help,Етикета Помоћ DocType: Workflow State,star-empty,звезда празна apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Датуми су често лако погодити. @@ -3209,6 +3320,7 @@ DocType: Workflow State,hand-left,рука-лево DocType: Data Import,If you are updating/overwriting already created records.,Ако ажурирате / преписујете већ креиране записе. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Је Глобал DocType: Email Account,Use SSL,Користи ССЛ +DocType: Webhook,HOOK-.####,ХООК -. #### DocType: Workflow State,play-circle,плеј-круг apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документ није могао бити правилно додијељен apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Неважећи израз "депендс_он" @@ -3225,6 +3337,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Последње освежено apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,За врсту документа DocType: Workflow State,arrow-right,стрелица десно +DocType: Server Script,API Method,АПИ метод DocType: Workflow State,Workflow state represents the current state of a document.,Процес рада држава представља тренутно стање документа. DocType: Letter Head,Letter Head Based On,Писмо на основу apps/frappe/frappe/utils/oauth.py,Token is missing,Токен недостаје @@ -3264,6 +3377,7 @@ DocType: Comment,Relinked,Релинкед DocType: Print Settings,Compact Item Print,Компактан артикла Штампа DocType: Email Account,uidnext,уиднект DocType: User,Redirect URL,УРЛ за преусмеравање +DocType: Onboarding Slide Field,Placeholder,Плацехолдер DocType: SMS Settings,Enter url parameter for receiver nos,Унесите УРЛ параметар за пријемник бр DocType: Chat Profile,Online,мрежи DocType: Email Account,Always use Account's Name as Sender's Name,Увек користите име рачуна као име пошиљаоца @@ -3273,7 +3387,6 @@ DocType: Workflow State,Home,дом DocType: OAuth Provider Settings,Auto,ауто DocType: System Settings,User can login using Email id or User Name,Корисник се може пријавити користећи ИД е-поште или Корисничко име DocType: Workflow State,question-sign,питање-знак -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} је онемогућен apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Поље "рута" је обавезно за веб приказ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Убаци колону пре {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Кориснику из овог поља бит ће награђени бодови @@ -3298,6 +3411,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ако власни DocType: Data Migration Mapping,Push,Притисни apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Овде бацајте датотеке DocType: OAuth Authorization Code,Expiration time,истека времена +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Отвори документе DocType: Web Page,Website Sidebar,Сајт Бочна трака DocType: Web Form,Show Sidebar,Покажи Сидебар apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Морате бити пријављени да бисте приступили овој {0}. @@ -3312,6 +3426,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобал DocType: Desktop Icon,Page,Страна apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Није могуће пронаћи {0} у {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имена и презимена по себи је лако погодити. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Документ је преименован из {0} у {1} apps/frappe/frappe/config/website.py,Knowledge Base,База знања DocType: Workflow State,briefcase,актенташна apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Значение не может быть изменено для {0} @@ -3348,6 +3463,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Принт Формат apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Пребаците приказ мреже apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Пређите на следећи снимак +DocType: System Settings,Time Format,Формат времена apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Неважећи Паимент Гатеваи акредитиве DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ово је датотека шаблона генерисана само са редовима који имају неку грешку. Требали бисте користити ову датотеку за корекцију и увоз. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Установить разрешения на типов документов и роли @@ -3391,12 +3507,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Одгов apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Странице у Деск (носиоци место) DocType: DocField,Collapsible Depends On,Цоллапсибле Дубоко У DocType: Print Style,Print Style Name,Име стила за штампу +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Групно по поље потребно је за прављење графикона надзорне табле DocType: Print Settings,Allow page break inside tables,Дозволите прелом стране унутар табеле DocType: Email Account,SMTP Server,СМТП Сервер DocType: Print Format,Print Format Help,Штампа језик Помоћ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} соба мора имати највише једног корисника. DocType: DocType,Beta,бета DocType: Dashboard Chart,Count,Гроф +DocType: Dashboard Chart,Group By Type,Група по врсти apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Нови коментар на {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},обновљена {0} ас {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ако ажурирате, изаберите ""Оверврите"" друго постојеће редови неће бити избрисани." @@ -3407,8 +3525,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Проф DocType: Web Form,Web Form,Веб формулар apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Датум {0} мора бити у формату: {1} DocType: About Us Settings,Org History Heading,Орг Историја Хеадинг +DocType: Scheduled Job Type,Scheduled Job Type,Заказана врста посла DocType: Print Settings,Allow Print for Cancelled,Дозвољавају Принт за Отказан DocType: Communication,Integrations can use this field to set email delivery status,Интеграције могу користити ову област да подесите статус испоруку путем емаила +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Немате дозволе за отказивање свих повезаних докумената. DocType: Web Form,Web Page Link Text,Веб страница линк Текст DocType: Page,System Page,систем Паге DocType: Page,System Page,систем Паге @@ -3416,6 +3536,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ИЗАЋИ apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Прилагођавања за <b>{0}</b> извезене у: <br> {1} DocType: Website Settings,Include Search in Top Bar,Укључи Тражи у Топ Бар +DocType: Scheduled Job Type,Daily Long,Даили Лонг DocType: GSuite Settings,Allow GSuite access,Дозволи ГСуите приступ DocType: DocType,DESC,АСЦ DocType: DocType,Naming,Именование @@ -3518,6 +3639,7 @@ DocType: Notification,Send days before or after the reference date,Пошаљи DocType: User,Allow user to login only after this hour (0-24),Дозволи кориснику да тек пријавите након овог часа (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Доделите једну по једну, редом" DocType: Integration Request,Subscription Notification,Обавештење о претплати +DocType: Customize Form Field, Allow in Quick Entry ,Дозволи у брзом уласку apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,или приложите а DocType: Auto Repeat,Start Date,Датум почетка apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Вредност @@ -3532,6 +3654,7 @@ DocType: Google Drive,Backup Folder ID,ИД резервне мапе apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не у Девелопер режиму! Сет у сите_цонфиг.јсон или да '' Цустом ДОЦТИПЕ. DocType: Workflow State,globe,кугла DocType: System Settings,dd.mm.yyyy,дд.мм.гггг +DocType: Onboarding Slide Help Link,Video,Видео DocType: Assignment Rule,Priority,Приоритет DocType: Email Queue,Unsubscribe Param,унсубсцрибе парам DocType: DocType,Hide Sidebar and Menu,Сакриј бочну траку и мени @@ -3543,6 +3666,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Дозволи увоз (п apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,ср DocType: DocField,Float,Пловак DocType: Print Settings,Page Settings,Подешавања странице +DocType: Notification Settings,Notification Settings,Подешавања обавештења apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Уштеда... apps/frappe/frappe/www/update-password.html,Invalid Password,invalid пассворд apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Унос успешно је увежен {0} од {1}. @@ -3558,6 +3682,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,ГМаил DocType: Letter Head,Letter Head Image,Слика главе писма DocType: Address,Party GSTIN,парти ГСТИН +DocType: Scheduled Job Type,Cron Format,Црон Формат apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Извештај DocType: SMS Settings,Use POST,Користите ПОСТ DocType: Communication,SMS,СМС @@ -3603,18 +3728,20 @@ DocType: Workflow,Allow approval for creator of the document,Дозволи од apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Сачувај извештај DocType: Webhook,on_cancel,он_цанцел DocType: Social Login Key,API Endpoint Args,АПИ Ендпоинт Аргс +DocType: DocType Action,Server Action,Акција сервера apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Модератор приступити {0} на {1} преко ИП адресе {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Родитељско поље мора бити важеће име поља apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Неуспешно приликом измене претплате DocType: LDAP Settings,LDAP Group Field,ЛДАП групно поље +DocType: Notification Subscribed Document,Notification Subscribed Document,Обавештење Претплаћени документ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Једнак apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Неважећи ЦСВ формату -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Грешка приликом повезивања са апликацијом КЗ Траи ... <br><br> За употребу функције Рав Принт морате да имате инсталирану и покренуту апликацију КЗ Траи. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Кликните овде да бисте преузели и инсталирали КЗ Траи</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Кликните овде да бисте сазнали више о сировом штампању</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Сет број резервних копија DocType: DocField,Do not allow user to change after set the first time,Не позволяйте пользователю изменять после установить в первый раз apps/frappe/frappe/utils/data.py,1 year ago,1 год назад +DocType: DocType,Links Section,Одељак за везе apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Погледајте Дневник свих догађаја штампања, преузимања и извоза" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месец DocType: Contact,Contact,Контакт @@ -3641,16 +3768,19 @@ DocType: Email Account,UIDVALIDITY,УИДВАЛИДИТИ је apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Нова е-маил DocType: Custom DocPerm,Export,Извоз apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Да бисте користили Гоогле календар, омогућите {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Такође додавање поља зависности о статусу {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Успешно ажурирано {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,КЗ Траи Фаилед: DocType: Dropbox Settings,Dropbox Settings,Дропбок Подешавања DocType: About Us Settings,More content for the bottom of the page.,Више садржаја за дну странице. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Овај документ је враћен apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Резервна копија Гоогле диска је успешна. +DocType: Webhook,Naming Series,Именовање Сериес DocType: Workflow,DocType on which this Workflow is applicable.,ДОЦТИПЕ на којима ова Воркфлов је применљиво. DocType: User,Enabled,Омогућено apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Није успело да заврши подешавање apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Ново {0}: {1} -DocType: Tag Category,Category Name,Име категорије +DocType: Blog Category,Category Name,Име категорије apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Родитељ је потребан за добијање података дечије табеле apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Увоз Претплатници DocType: Print Settings,PDF Settings,ПДФ Подешавања @@ -3686,6 +3816,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Календар apps/frappe/frappe/client.py,No document found for given filters,Ни један документ фоунд за дате филтере apps/frappe/frappe/config/website.py,A user who posts blogs.,Корисник који поставља блогове. +DocType: DocType Action,DocType Action,ДоцТипе Ацтион apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Еще {0} с именем {1} существует, выберите другое имя" DocType: DocType,Custom?,Цустом? DocType: Website Settings,Website Theme Image,Сајт Теме слика @@ -3695,6 +3826,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Нево apps/frappe/frappe/config/integrations.py,Backup,резерва apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Врста документа потребна је за креирање графикона надзорне табле DocType: DocField,Read Only,Прочитајте само +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Није могуће креирати разорпаи налог apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Нови билтен DocType: Energy Point Log,Energy Point Log,Евиденција енергетске тачке DocType: Print Settings,Send Print as PDF,Пошаљи Принт ас ПДФ @@ -3720,16 +3852,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П apps/frappe/frappe/www/login.html,Or login with,Или се пријавите са DocType: Error Snapshot,Locals,Мештани apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Комуницирао преко {0} на {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} вас помиње у коментару на {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Изаберите групу по ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,например (55 + 434) / 4 или = Матх.син (Матх.ПИ / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} требуется DocType: Integration Request,Integration Type,integracija Тип DocType: Newsletter,Send Attachements,Пошаљи прикључци +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Није пронађен ниједан филтер apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграција Гоогле контаката. DocType: Transaction Log,Transaction Log,Дневник трансакције apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Статистика на основу учинка прошлог месеца (од {0} до {1}) DocType: Contact Us Settings,City,Град +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Сакриј картице за све кориснике apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Омогућите Дозволи аутоматско понављање за доцтипе {0} у Прилагодљивом облику DocType: DocField,Perm Level,Перм ниво apps/frappe/frappe/www/confirm_workflow_action.html,View document,Погледајте документ @@ -3741,6 +3874,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Глобал Сеарцх "није дозвољено за тип {0} у реду {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Глобал Сеарцх "није дозвољено за тип {0} у реду {1} DocType: Energy Point Log,Appreciation,Захвалност +DocType: Dashboard Chart,Number of Groups,Број група apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,виев Лист DocType: Workflow,Don't Override Status,Не замењују Статус apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Термин за претрагу @@ -3782,7 +3916,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,цн-северозапад-1 DocType: Dropbox Settings,Limit Number of DB Backups,Ограничи број ДБ резервних копија DocType: Custom DocPerm,Level,Ниво -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Последњих 30 дана DocType: Custom DocPerm,Report,Извештај apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Износ мора бити већи од 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Веза са КЗ Траи-ом! @@ -3799,6 +3932,7 @@ DocType: S3 Backup Settings,us-west-2,ус-запад-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Изаберите Дечија табела apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Окидач примарна акција apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Промена +DocType: Social Login Key,User ID Property,Усер ИД Проперти DocType: Email Domain,domain name,домаин наме DocType: Contact Email,Contact Email,Контакт Емаил DocType: Kanban Board Column,Order,ред @@ -3821,7 +3955,7 @@ DocType: Contact,Last Name,Презиме DocType: Event,Private,Приватан apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Нема упозорења за данас DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Пошаљи Емаил Принт прилоге као ПДФ (Рецоммендед) -DocType: Web Page,Left,Лево +DocType: Onboarding Slide Field,Left,Лево DocType: Event,All Day,Целодневни apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Изгледа да нешто није у реду са конфигурацијом Паимент Гатеваи овог сајта. Нема исплата извршена. DocType: GCalendar Settings,State,Држава @@ -3853,7 +3987,6 @@ DocType: Workflow State,User,Корисник DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи наслов у прозору прегледача као "префикс - наслов" DocType: Payment Gateway,Gateway Settings,Поставке Гатеваи-а apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,текст у врсти документа -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Рун Тестови apps/frappe/frappe/handler.py,Logged Out,Одјављени apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Више... DocType: System Settings,User can login using Email id or Mobile number,Корисник може пријавити преко Е-маил ИД или број мобилног @@ -3870,6 +4003,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резиме DocType: Event,Event Participants,Учесници догађаја DocType: Auto Repeat,Frequency,Фреквенција +DocType: Onboarding Slide,Slide Order,Слиде Ордер DocType: Custom Field,Insert After,Убаците После DocType: Event,Sync with Google Calendar,Синхронизујте са Гоогле календаром DocType: Access Log,Report Name,Име извештаја @@ -3897,6 +4031,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0} apps/frappe/frappe/config/website.py,Content web page.,Садржај веб страница. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Добавить новую роль +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетите веб страницу +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Нова додјела DocType: Google Contacts,Last Sync On,Ласт Синц Он DocType: Deleted Document,Deleted Document,deleted документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Нешто је пошло наопако @@ -3907,7 +4043,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пејзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Клијент скрипт екстензије у Јавасцрипт DocType: Webhook,on_trash,он_трасх apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Записи за следеће доктипе ће бити филтрирани -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Планер неактиван +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Планер неактиван DocType: Blog Settings,Blog Introduction,Блог Увод DocType: Global Search Settings,Search Priorities,Приоритети претраге DocType: Address,Office,Канцеларија @@ -3917,13 +4053,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Веза везе графи DocType: User,Email Settings,Емаил подешавања apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Спусти се овде DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ако је омогућено, корисник се може пријавити са било које ИП адресе користећи Тво Фацтор Аутх, ово се такође може подесити за све кориснике у Систем Сеттингс" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Подешавања штампача ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Унесите лозинку за наставак apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Унесите лозинку за наставак apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Ја apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} није важећидржавни apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Применити на све врсте докумената -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ажурирање енергетске тачке +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Ажурирање енергетске тачке +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Радите само свакодневно ако су неактивни (дани) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Молимо одаберите други начин плаћања. Паипал не подржава трансакције у валути '{0}' DocType: Chat Message,Room Type,Врста собе DocType: Data Import Beta,Import Log Preview,Увези преглед прегледа @@ -3932,6 +4068,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ок-круг DocType: LDAP Settings,LDAP User Creation and Mapping,Стварање и мапирање ЛДАП корисника apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Можете наћи ствари тражећи "наћи наранџасто у купце ' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Данашњи догађаји apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Извини! Корисник треба да имају потпуни приступ свом запису. ,Usage Info,Употреба информације apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Прикажи пречице на тастатури @@ -3948,6 +4085,7 @@ DocType: DocField,Unique,Јединствен apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} цијењен је {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Делимични успех DocType: Email Account,Service,служба +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник DocType: File,File Name,Филе Наме apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не нашли {0} {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Рес: {0} @@ -3961,6 +4099,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Комп DocType: GCalendar Settings,Enable,омогућити DocType: Google Maps Settings,Home Address,Кућна адреса apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Можете само уплоад упто 5000 записа у једном потезу. (Могу бити мање у неким случајевима) +DocType: Report,"output in the form of `data = [columns, result]`","излаз у облику `дата = [ступци, резултат]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Применљиве врсте докумената apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Поставите правила за задатке корисника. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недовољна Дозвола за {0} @@ -3978,7 +4117,6 @@ DocType: Communication,To and CC,То и КЗ DocType: SMS Settings,Static Parameters,Статички параметри DocType: Chat Message,Room,соба apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ажуриран на {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Позадински послови се не покрећу. Молимо контактирајте администратора DocType: Portal Settings,Custom Menu Items,Цустом Ставке менија apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Све слике приложене Слајдшоу сајта би требало да буду јавне DocType: Workflow State,chevron-right,Цхеврон-десно @@ -3993,11 +4131,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Изабране вредности {0} DocType: DocType,Allow Auto Repeat,Дозволи аутоматско понављање apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нема вредности за приказивање +DocType: DocType,URL for documentation or help,УРЛ за документацију или помоћ DocType: Desktop Icon,_doctype,_доцтипе DocType: Communication,Email Template,Емаил Темплате apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} запис је успешно ажуриран. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Корисник {0} нема приступ документу путем дозволе улоге за документ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Оба пријављивање и лозинка потребна +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Дозволити\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Освежите да би добили најновије документ. DocType: User,Security Settings,Безбедносне поставке apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Додај колону @@ -4007,6 +4147,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Филтер Мета apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},У прилогу пронађите {0}: {1} DocType: Web Page,Set Meta Tags,Постављање мета тагова +DocType: Email Account,Use SSL for Outgoing,Користите ССЛ за одлазне 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: S3 Backup Settings,Backup Limit,Ограничење резервне копије DocType: Dashboard Chart,Line,Линија @@ -4039,4 +4180,3 @@ DocType: DocField,Ignore User Permissions,Игноре Усер Дозволе apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Сачувано успешно apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Замолите администратора да верификује регистрациони DocType: Domain Settings,Active Domains,Активни домени -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Прикажи логовање diff --git a/frappe/translations/sr_sp.csv b/frappe/translations/sr_sp.csv index 8ff6e8d127..a5f172e3c0 100644 --- a/frappe/translations/sr_sp.csv +++ b/frappe/translations/sr_sp.csv @@ -44,6 +44,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Dodaj podređeni apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Pogrešna lozinka: DocType: System Settings,System Settings,Sistemska podešavanja apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,You can add dynamic properties from the document by using Jinja templating.,Можете да додате динамичке вредности из документа помоћу Jinja шаблона. +DocType: Dashboard Chart,To Date,Do datuma DocType: Chat Profile,Offline,Van mreže (offline) DocType: Assignment Rule,System Manager,Menadžer sistema apps/frappe/frappe/www/update-password.html,New Password,Nova lozinka @@ -59,7 +60,7 @@ DocType: Chat Profile,Online,Na mreži DocType: Auto Repeat,Subject,Naslov apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Unesi naziv foldera DocType: Workflow State,Tags,Tagovi -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Dodjeljivanje +DocType: Notification Log,Assignment,Dodjeljivanje DocType: Workflow State,move,Kretanje DocType: Language,Language,Jezik apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trajno potvrdi {0} ? @@ -69,6 +70,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Preimenuj {0} apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload,Dodavanje fajla DocType: Report,Add Total Row,Dodaj red ukupno bez PDV-a ,Setup Wizard,Čarobnjak za postavke +DocType: Dashboard Chart,From Date,Od datuma DocType: Data Import,Amended From,Izmijenjena iz apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona na radnoj površini već postoji DocType: Comment,Attachment Removed,Prilog uklonjen @@ -151,7 +153,6 @@ DocType: User,Enabled,Aktivan DocType: ToDo,ToDo,To Do apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Izvještaj {0} apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Novi email -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Dodaj još apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Pick Columns,Odaberi kolone DocType: Footer Item,Company,Preduzeće DocType: Address,Purchase User,Korisnik u nabavci @@ -260,7 +261,7 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj više DocType: Custom DocPerm,Import,Uvoz DocType: User,Security Settings,Bezbjedonosna podešavanja apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Pretraga -DocType: Address,Email Address,Email adresa +apps/frappe/frappe/www/login.py,Email Address,Email adresa DocType: Google Maps Settings,Home Address,Kućna adresa apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + up DocType: Comment,Assigned,Dodijeljeno @@ -450,6 +451,7 @@ DocType: ToDo,Medium,Srednji DocType: Workflow State,barcode,barkod DocType: Address,Reference,Vezni dokumenti DocType: Custom Role,Custom Role,Prilagođjena rola +DocType: Webhook,Naming Series,Vrste dokumenta apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} od {1} do {2} na poziciji # {3} DocType: Workflow State,User,Korisnik apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Za nastavak unesite lozinku diff --git a/frappe/translations/sv.csv b/frappe/translations/sv.csv index 335893ff28..69cb3dc30b 100644 --- a/frappe/translations/sv.csv +++ b/frappe/translations/sv.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Välj en beloppsfältet. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Laddar importfil ... DocType: Assignment Rule,Last User,Senaste användaren -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","En ny uppgift, {0}, har tilldelats till dig av {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sessioninställningar sparade apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Ladda om filen DocType: Email Queue,Email Queue records.,E-post Queue poster. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Träd DocType: User,User Emails,Användar e-post DocType: User,Username,Användarnamn apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importera Zip +DocType: Scheduled Job Type,Create Log,Skapa logg apps/frappe/frappe/model/base_document.py,Value too big,Värde för stor DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Kör scripttest @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Månadsvis DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktivera inkommande apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Fara -DocType: Address,Email Address,E-Postadress +apps/frappe/frappe/www/login.py,Email Address,E-Postadress DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Olästa Anmälan Skickade apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export tillåts inte. Du behöver {0} roll att exportera. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Avbr DocType: DocType,Is Published Field,Publiceras Field DocType: GCalendar Settings,GCalendar Settings,GCalendar Inställningar DocType: Email Group,Email Group,E-postgrupp +apps/frappe/frappe/__init__.py,Only for {},Bara för {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - kunde inte ta bort händelse {0} från Google Kalender, felkod {1}." DocType: Event,Pulled from Google Calendar,Dras från Google Kalender DocType: Note,Seen By,Ses av apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Lägg till flera -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Du fick några energipoäng apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Inte en giltig användarbild. DocType: Energy Point Log,Reverted,åter DocType: Success Action,First Success Message,Första framgångsbudskapet @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Inte som apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Felaktigt värde: {0} måste vara {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Ändra fältegenskaper (dölja, skrivskyddad, tillstånd etc.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Uppskatta +DocType: Notification Settings,Document Share,Dokumentdelning DocType: Workflow State,lock,låsa apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Inställningar för Kontakta oss. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administratör inloggad @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",Om det är aktiverat markeras dokumentet som sett första gången en användare öppnar det DocType: Auto Repeat,Repeat on Day,Upprepa på dagen DocType: DocField,Color,Färg +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Markera allt som läst DocType: Data Migration Run,Log,Logga DocType: Workflow State,indent-right,indent-höger DocType: Has Role,Has Role,har Role @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Visa spårning DocType: DocType,Default Print Format,Standardutskriftsformat DocType: Workflow State,Tags,Tags +DocType: Onboarding Slide,Slide Type,Slide Type apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Inget: Slutet av Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} fält kan inte ställas in som unikt i {1}, eftersom det finns icke-unika befintliga värden" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumenttyper @@ -136,7 +139,6 @@ DocType: Language,Guest,Gäst DocType: DocType,Title Field,Titel Field DocType: Error Log,Error Log,Felloggen apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Ogiltig URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,De sista 7 dagarna apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Upprepningar som "abcabcabc" är endast något svårare att gissa än "abc" DocType: Notification,Channel,kanalisera apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",Om du tror att detta är obehörigt kan du ändra administratörslösenordet. @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Klient apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Välj kolumn apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Denna form har ändrats efter att du har laddat det DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Meddelande logg 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Öppna Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,L apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Skicka DocType: Workflow Action Master,Workflow Action Name,Arbetsflöde åtgärdsnamn apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan inte slås samman -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Inte en zip-fil DocType: Global Search DocType,Global Search DocType,Global sökning DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,E-post Skickat? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Byt diagram apps/frappe/frappe/desk/form/save.py,Did not cancel,Avbröts inte DocType: Social Login Key,Client Information,Klientinformation +DocType: Energy Point Rule,Apply this rule only once per document,Tillämpa denna regel endast en gång per dokument DocType: Workflow State,plus,plus +DocType: DocField,Read Only Depends On,Läs bara beror på apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Inloggad som gäst eller administratör DocType: Email Account,UNSEEN,OSYNLIG apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Filhanterare @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Anledning 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Ingen aktivitet +DocType: Server Script,Script Manager,Skripthanterare +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ingen aktivitet apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Tredjepartsapplikationer apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Inga händelser idag apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Du kan inte ge dig själv poäng apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType måste vara Inmitterbar för den valda Doc-händelsen DocType: Workflow State,circle-arrow-up,cirkel-pil-upp @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Inte tillåtet för {0}: {1}. Begränsat fält: {2} 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,You are not allowed to delete a standard Website Theme,Du får inte ta bort en standard webbplats tema +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Skapa din första {0} DocType: Data Import,Log Details,Logguppgifter DocType: Workflow Transition,Example,Exempel DocType: Webhook Header,Webhook Header,Webhook Header @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chatt bakgrund apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Markera som läst apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Uppdatering {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,En Onboarding-bild <b>{0}</b> med samma bildordning finns redan apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Inaktivera rapport DocType: Translation,Contributed Translation Doctype Name,Bidragsöversättning Doctype Name +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställning> Anpassa formulär DocType: PayPal Settings,Redirect To,Omdirigering till DocType: Data Migration Mapping,Pull,Dra DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['rapportnamn'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Intern dokumentation av dok DocType: Energy Point Settings,Review Levels,Granska nivåer DocType: Workflow State,Comment,Kommentar DocType: Data Migration Plan,Postprocess Method,Efterprocessmetod +DocType: DocType Action,Action Type,Åtgärdstyp apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Ta ett foto DocType: Assignment Rule,Round Robin,Runda Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",Du kan ändra inlämnade handlingar genom att avbryta dem och sedan ändra dem. @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Spara som DocType: Comment,Seen,Sett apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Visa fler detaljer +DocType: Server Script,Before Submit,Innan du skickar in 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,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,Archive,Arkiv @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Åtkomstnyckel apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Fel fältnamn <b>{0}</b> i add_fetch konfiguration av anpassat skript apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Välj Google-kontakter till vilken kontakten ska synkroniseras. DocType: Web Page,Main Section (HTML),Huvudavsnitt (HTML) +DocType: Scheduled Job Type,Annual,Årlig DocType: Workflow State,headphones,hörlurar apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Lösenord krävs eller välj Väntar lösenord DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,t.ex. replies@yourcomany.com. Alla svar kommer till den här inkorgen. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",Bestämmer ordningen på bilden i guiden. Om bilden inte ska visas bör prioritet ställas in på 0. DocType: Data Migration Run,Current Mapping,Aktuell kartläggning apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Giltig e-post och namn krävs apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Gör alla bilagor privata @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Övergångsbestämmelser apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Visar endast de första {0} raderna i förhandsgranskning apps/frappe/frappe/core/doctype/report/report.js,Example:,Exempel: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,begränsningar DocType: Workflow,Defines workflow states and rules for a document.,Definierar arbetsflödes status och regler för ett dokument. DocType: Workflow State,Filter,Filtrera apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Kontrollera felloggen för mer information: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Jobb apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} loggas ut: {1} DocType: Address,West Bengal,Västra Bengal +DocType: Onboarding Slide,Information,Information apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan inte ställa in skickad om inte skickad DocType: Transaction Log,Row Index,Radindex DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,KNAPPHJÄLP DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Lagmedlemmar +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Kör schemalagda jobb endast en gång om dagen för inaktiva webbplatser. Standard 4 dagar om den är inställd på 0. DocType: Assignment Rule,System Manager,System Manager +DocType: Scheduled Job Log,Scheduled Job,Schemalagd jobb DocType: Custom DocPerm,Permissions,Behörigheter apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks för intern integration DocType: Dropbox Settings,Allow Dropbox Access,Tillåt Dropbox Tillgång @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Skann DocType: Email Flag Queue,Email Flag Queue,E-post flagga Queue DocType: Access Log,Columns / Fields,Kolumner / fält apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets för utskriftsformat +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Aggregate Function-fält krävs för att skapa ett instrumentpanelschema apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Det går inte att identifiera öppna {0}. Prova något annat. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Din information har skickats apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Användare {0} kan inte tas bort @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Fältnamn DocType: Assignment Rule,Assign To Users,Tilldela användare apps/frappe/frappe/public/js/frappe/utils/utils.js,or,eller apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modulnamn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Fortsätta +DocType: Onboarding Slide,Continue,Fortsätta apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration är inaktiverad. DocType: Custom Field,Fieldname,Fältnamn DocType: Workflow State,certificate,certifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Verifiera ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Ditt uppdrag på {0} {1} har tagits bort apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Första datakolumn måste vara tom. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Visa alla versioner apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Visa kommentar @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Begränsa IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,instrumentbräda apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Det går inte att skicka e-post vid denna tidpunkt apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - kunde inte uppdatera händelse {0} i Google Kalender, felkod {1}." +DocType: Notification Log,Email Content,E-postinnehåll apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Sök eller skriver ett kommando DocType: Activity Log,Timeline Name,tidslinje Namn apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Endast en {0} kan ställas in som primär. DocType: Email Account,e.g. smtp.gmail.com,t.ex. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lägg till en ny regel DocType: Contact,Sales Master Manager,Försäljnings master föreståndaren +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Du måste aktivera JavaScript för att din app ska fungera. DocType: User Permission,For Value,För värde DocType: Event,Google Calendar ID,Google Kalender-ID apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP Mellannamnfält apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerar {0} av {1} DocType: GCalendar Account,Allow GCalendar Access,Tillåt GCalendar Access apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} är ett obligatoriskt fält +DocType: DocType,Documentation Link,Dokumentationslänk apps/frappe/frappe/templates/includes/login/login.js,Login token required,Logga in token krävs apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Månadsrankning: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Välj flera listobjekt @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Fil URL DocType: Version,Table HTML,tabell HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Lägg till Abonnenter +DocType: Notification Log,Energy Point,Energipunkt apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Kommande händelser idag DocType: Google Calendar,Push to Google Calendar,Tryck till Google Kalender DocType: Notification Recipient,Email By Document Field,E-post Av dokumentfält @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Bort DocType: Currency,Fraction Units,Bråk Enheter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} från {1} till {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Markera som klar DocType: Chat Message,Type,Typ DocType: Google Settings,OAuth Client ID,OAuth-klient-ID DocType: Auto Repeat,Subject,Ämne apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tillbaka till skrivbordet DocType: Web Form,Amount Based On Field,Belopp som baseras på Field +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} har inga versioner spårade. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Kontrollera din e-post för verifiering apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Vikning kan inte vara i slutet av formen DocType: Communication,Bounced,Studsade +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,av DocType: Deleted Document,Deleted Name,raderade Namn apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,System- och webbplatsens användare DocType: Workflow Document State,Doc Status,Doc Status @@ -526,6 +551,7 @@ DocType: Language,Language Code,språkkod DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Obs! Som standard skickas e-postmeddelanden för misslyckade säkerhetskopior. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Lägg till filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS skickas till följande nummer: {0} +DocType: Notification Settings,Assignments,Uppgifter apps/frappe/frappe/utils/data.py,{0} and {1},{0} och {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Starta en konversation. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Tillsätt alltid "Utkast" Rubrik för utskrift utkast @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,Aktuell kartläggning Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-post har markerats som skräppost DocType: Comment,Website Manager,Webbplats ägare apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Filuppladdning frånkopplad. Var god försök igen. +DocType: Data Import Beta,Show Failed Logs,Visa misslyckade loggar apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,översättningar apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Du har valt Draft eller Canceled documents apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentet {0} har ställts in för att ange {1} med {2} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,dokumentet Queued DocType: GSuite Templates,Destination ID,Destinations-ID DocType: Desktop Icon,List,Lista DocType: Activity Log,Link Name,länk Namn +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Du har inte DocType: System Settings,mm/dd/yyyy,mm / dd / åååå +DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Felaktigt lösenord: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Felaktigt lösenord: DocType: Print Settings,Send document web view link in email,Skicka dokument webbvy länk i e-post @@ -603,6 +632,7 @@ DocType: Kanban Board Column,darkgrey,mörkgrå apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Framgångsrik: {0} till {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Släppa +DocType: Dashboard Chart,Aggregate Function Based On,Samlad funktion baserad på apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Vänligen kopiera detta för att göra ändringar apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Tryck på Enter för att spara apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF-generering misslyckades på grund av trasiga bildlänkar @@ -616,7 +646,9 @@ DocType: Notification,Days Before,Dagar innan apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dagliga händelser bör avslutas samma dag. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigera... DocType: Workflow State,volume-down,Sänk volymen +DocType: Onboarding Slide,Help Links,Hjälplänkar apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Åtkomst är inte tillåten från denna IP-adress +DocType: Notification Settings,Enable Email Notifications,Aktivera e-postmeddelanden apps/frappe/frappe/desk/reportview.py,No Tags,Inga taggar DocType: Email Account,Send Notification to,Skicka Anmälan till DocType: DocField,Collapsible,Hopfällbar @@ -645,6 +677,7 @@ DocType: Google Drive,Last Backup On,Senaste säkerhetskopiering på DocType: Customize Form Field,Customize Form Field,Anpassa formulärfält DocType: Energy Point Rule,For Document Event,För dokumenthändelse DocType: Website Settings,Chat Room Name,Namn på chattrummet +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Oförändrad ändrad~~POS=HEADCOMP DocType: OAuth Client,Grant Type,Grant Typ apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Markera vilka dokument som kan läsas av en användare DocType: Deleted Document,Hub Sync ID,Hub Sync ID @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,Anv DocType: Auto Repeat,Quarterly,Kvartals apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Hela tiden apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Otillåten dokumentstatus för {0} DocType: Email Account,Enable Auto Reply,Aktivera autosvar apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Inte Sett @@ -664,6 +698,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Medde DocType: Email Account,Notify if unreplied,Meddela om obesvarade apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Skanna QR-koden och ange den resulterande koden som visas. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktivera övergång +DocType: Scheduled Job Type,Hourly Long,Varje timme DocType: System Settings,Minimum Password Score,Minsta lösenordsresultat DocType: System Settings,Minimum Password Score,Minsta lösenordsresultat DocType: DocType,Fields,Fält @@ -672,11 +707,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Överordnad apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup komplett! apps/frappe/frappe/config/desktop.py,Developer,Framkallare apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Skapad +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},För att aktivera det följer du instruktionerna i följande länk: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} i rad {1} inte kan ha både URL och underordnade artiklar apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Det bör finnas minst en rad för följande tabeller: {0} DocType: Print Format,Default Print Language,Standardutskriftsspråk apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Förfäder av apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan inte tas bort +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Inga misslyckade loggar apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Inga kommentarer apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",Var vänlig ange SMS innan du ställer in den som en autentiseringsmetod via SMS-inställningar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Både DocType och Namn krävs @@ -700,6 +737,7 @@ DocType: Website Settings,Footer Items,Footer artiklar apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Meny DocType: DefaultValue,DefaultValue,Standardvärde DocType: Auto Repeat,Daily,Dagligen +DocType: Onboarding Slide,Max Count,Max antal apps/frappe/frappe/config/users_and_permissions.py,User Roles,Användarroller DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Fastighetsförmedlare åsidosätter en vanlig DocType eller fält egendom apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Det går inte att uppdatera: Fel / utgången länk. @@ -718,6 +756,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Värd DocType: Data Import Beta,Import File,Importera fil +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Mallfel apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Kolonn <b>{0}</b> redan finns. DocType: ToDo,High,Hög apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nytt event @@ -733,6 +772,7 @@ DocType: Web Form Field,Show in filter,Visa i filter DocType: Address,Daman and Diu,Daman och Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Projekt DocType: Address,Personal,Personligt +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Raw Printing Settings ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Se https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region för mer information. apps/frappe/frappe/config/settings.py,Bulk Rename,Bulk Byt namn DocType: Email Queue,Show as cc,Visa som cc @@ -742,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Ta video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Inledande information för Kontakta oss DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,tummen ner +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Avbryter dokument DocType: User,Send Notifications for Email threads,Skicka aviseringar för e-posttrådar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Inte i utvecklarläge @@ -749,7 +790,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Filbackup DocType: DocField,In Global Search,I Global Sök DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-vänster -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Det är riskabelt att ta bort denna fil: {0}. Kontakta din systemadministratören. DocType: Currency,Currency Name,Valuta Namn apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Inga e-post @@ -764,11 +804,13 @@ DocType: Energy Point Rule,User Field,Användarfält DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Delete apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} redan avprenumererat för {1} {2} +DocType: Scheduled Job Type,Stopped,Stoppad apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Togs inte bort apps/frappe/frappe/desk/like.py,Liked,Omtyckt apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Skicka Nu apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan inte ha standardutskriftsformat, använd Anpassa formulär" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan inte ha standardutskriftsformat, använd Anpassa formulär" +DocType: Server Script,Allow Guest,Tillåt gäst DocType: Report,Query,Query DocType: Customize Form,Sort Order,Sorteringsordning apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""I listvy"" inte tillåten för {0} på rad {1}" @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Tvåfaktorautentiseringsmetod apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Ange först namnet och spara posten. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 poster +DocType: DocType Link,Link Fieldname,Länk Fältnamn apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delad med {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Säga upp DocType: View Log,Reference Name,Referensnamn apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Växla användare +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Först apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Uppdatera översättningar DocType: Error Snapshot,Exception,Undantag DocType: Email Account,Use IMAP,Använd IMAP @@ -808,6 +852,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Regler som definierar övergångsstatusen i arbetsflödet. DocType: File,Folder,Mapp DocType: Website Route Meta,Website Route Meta,Webbplatsrutt Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Onboarding Slide Field DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Nyhetsbrevsansvarig apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Alternativ 1 @@ -834,7 +879,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,St apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurera diagram DocType: User,Last IP,Senast IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Lägg till ett ämne i din email -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Ett nytt dokument {0} har delats med dig {1}. DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} har återgått {1} DocType: Email Account,Track Email Status,Spåra e-poststatus @@ -887,6 +931,7 @@ DocType: Email Account,Default Outgoing,Standardutgående DocType: Workflow State,play,spela apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Klicka på länken nedan för att slutföra din registrering och ange ett nytt lösenord apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Lades inte till +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} fick {1} poäng för {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Inga e-postkonton Tilldelad DocType: S3 Backup Settings,eu-west-2,eu-väst-2 DocType: Contact Us Settings,Contact Us Settings,Kontakta oss inställningar @@ -895,6 +940,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Söker .. DocType: Workflow State,text-width,text-bredd apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximal Bifogningsgräns för denna post uppnåtts. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Sök efter filnamn eller tillägg +DocType: Onboarding Slide,Slide Title,Slide-titel DocType: Notification,View Properties (via Customize Form),Se Egenskaper (via Anpassa Form) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klicka på en fil för att välja den. DocType: Note Seen By,Note Seen By,Note ses av @@ -921,13 +967,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Dela URL DocType: System Settings,Allow Consecutive Login Attempts ,Tillåt på varandra följande inloggningsförsök apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Ett fel inträffade under betalningsprocessen. Vänligen kontakta oss. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Om Slide Type är Skapa eller Inställningar bör det finnas en 'create_onboarding_docs' metod i {ref_doctype} .py-fil som måste köras efter att bilden är klar. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dagar sedan DocType: Email Account,Awaiting Password,Inväntar Lösenord DocType: Address,Address Line 1,Adress Linje 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Inte efterkommande av DocType: Contact,Company Name,Företagsnamn DocType: Custom DocPerm,Role,Roll -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Inställningar... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,till din webbläsare apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Recorder @@ -987,6 +1033,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Spåra om din e-post har öppnats av mottagaren. <br> Obs! Om du skickar till flera mottagare, även om 1 mottagare läser e-postmeddelandet, betraktas det som "öppnat"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Saknade värden Krävs apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Tillåt åtkomst till Google-kontakter +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Restricted DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Markera som oläst DocType: Activity Log,Operation,Funktion @@ -1040,6 +1087,7 @@ DocType: Web Form,Allow Print,Tillåt tryck~~POS=HEADCOMP DocType: Communication,Clicked,Klickade apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Sluta följa apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen behörighet att "{0} {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ställ in standard E-postkonto från Setup> E-post> E-postkonto apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planerad att skicka DocType: DocType,Track Seen,spår Sett DocType: Dropbox Settings,File Backup,Filbackup @@ -1048,12 +1096,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Nr {0} hittad apps/frappe/frappe/config/customization.py,Add custom forms.,Lägg till anpassade formulär. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} i {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,lämnat detta dokument -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställning> Användarrättigheter apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Systemet erbjuder många fördefinierade roller. Du kan lägga till nya roller för att ställa finare behörigheter. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Utlösarens namn -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domäner +DocType: Onboarding Slide,Domains,Domäner DocType: Blog Category,Blog Category,Blogg Kategori apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Det går inte att kartlägga eftersom följande villkor misslyckas: DocType: Role Permission for Page and Report,Roles HTML,Roller HTML @@ -1094,7 +1141,6 @@ DocType: Assignment Rule Day,Saturday,Lördag DocType: User,Represents a User in the system.,Representerar en användare i systemet. DocType: List View Setting,Disable Auto Refresh,Inaktivera automatisk uppdatering DocType: Comment,Label,Etikett -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Uppgiften {0}, som du tilldelat {1}, har stängts." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Stäng det här fönstret DocType: Print Format,Print Format Type,Utskriftsformat Typ DocType: Newsletter,A Lead with this Email Address should exist,Ett lead med den här e-postadressen borde finnas @@ -1111,6 +1157,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP Inställningar fö apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,välj en DocType: Data Export,Filter List,Filterlista DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Autosvar Meddelande DocType: Data Migration Mapping,Condition,Tillstånd apps/frappe/frappe/utils/data.py,{0} hours ago,{0} timmar sedan @@ -1129,12 +1176,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Kunskap Base Skribent DocType: Communication,Sent Read Receipt,Sände Läs Kvitto DocType: Email Queue,Unsubscribe Method,unsubscribe Metod +DocType: Onboarding Slide,Add More Button,Lägg till mer-knapp DocType: GSuite Templates,Related DocType,Relaterad DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Redigera för att lägga till innehåll apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Välj språk apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kortdetaljer apps/frappe/frappe/__init__.py,No permission for {0},Inget tillstånd för {0} DocType: DocType,Advanced,Avancerad +DocType: Onboarding Slide,Slide Image Source,Bildbildskälla apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Verkar API-nyckel eller API Secret är fel !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Referens: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Fru @@ -1151,6 +1200,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Ledar- DocType: DocType,User Cannot Create,Användaren kan inte skapa apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Klart apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox tillgång godkänd! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Är du säker på att du vill slå samman {0} med {1}? DocType: Customize Form,Enter Form Type,Ange Formulärtyp DocType: Google Drive,Authorize Google Drive Access,Auktorisera åtkomst till Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Saknas parameter Kanban Board Name @@ -1160,7 +1210,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Att tillåta DocType, DocType. Var försiktig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Anpassade format för utskrift, e-post" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summan av {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Uppdaterad Till ny version DocType: Custom Field,Depends On,Beror På DocType: Kanban Board Column,Green,Grön DocType: Custom DocPerm,Additional Permissions,Ytterligare behörigheter @@ -1188,6 +1237,7 @@ DocType: Energy Point Log,Social,Social apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Kalender - kunde inte skapa kalender för {0}, felkod {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Redigera Rad DocType: Workflow Action Master,Workflow Action Master,Arbetsflöde Åtgärdsansvarig +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Radera allt DocType: Custom Field,Field Type,Fält Typ apps/frappe/frappe/utils/data.py,only.,bara. DocType: Route History,Route History,Rutthistorik @@ -1224,11 +1274,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Glömt lösenord? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverfel +DocType: Server Script,After Delete,Efter radering apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Se alla tidigare rapporter. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Inloggnings-ID krävs DocType: Website Slideshow,Website Slideshow,Webbplats Bildspel apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Inga Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Länk som är webbplatsens startsida. Standard Länkar (index, inloggning, produkter, blogg, om, kontakt)" +DocType: Server Script,After Submit,Efter skicka apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentisering misslyckades samtidigt som han får e-post från e-postkonto {0}. Meddelande från server: {1} DocType: User,Banner Image,Banner bild DocType: Custom Field,Custom Field,Anpassat fält @@ -1269,15 +1321,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",Om användaren har någon roll kontrolleras då användaren blir en "systemanvändare". "Systemanvändare" har tillgång till skrivbordet DocType: System Settings,Date and Number Format,Datum och numeriskt format apps/frappe/frappe/model/document.py,one of,en av -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställning> Anpassa formulär apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kontroll ett ögonblick apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Visa Taggar DocType: DocField,HTML Editor,HTML Editor 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Inställning> Användare +DocType: DocType,Actions,Åtgärder DocType: Workflow State,align-justify,rikta-justify DocType: User,Middle Name (Optional),Mellannamn (valfritt) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Inte Tillåtna @@ -1292,6 +1342,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Inga Result DocType: System Settings,Security,Säkerhet apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Planerad att skicka till {0} mottagare apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Skära +DocType: Server Script,After Save,Efter spara apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},bytt namn från {0} till {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} av {1} ({2} rader med barn) DocType: Currency,**Currency** Master,**Valuta** Ledare @@ -1318,16 +1369,19 @@ DocType: Prepared Report,Filter Values,Filtrera värden DocType: Communication,User Tags,Användarnas nyckelord DocType: Data Migration Run,Fail,Misslyckas DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Senast körning DocType: Data Migration Run,Pull Failed,Dragning misslyckades apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Visa / dölj kort DocType: Communication,Feedback Request,Feedback Request apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Importera data från CSV / Excel-filer. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Följande områden saknas: +DocType: Notification Log,From User,Från användare apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Avbryter {0} DocType: Web Page,Main Section,Huvud Avsnitt DocType: Page,Icon,Ikon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Inkludera symboler, siffror och stora bokstäver i lösenordet" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Hint: Inkludera symboler, siffror och stora bokstäver i lösenordet" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Konfigurera aviseringar för omnämnanden, uppdrag, energipoäng och mer." DocType: DocField,Allow in Quick Entry,Tillåt vid snabb inmatning apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,åååå / mm / dd @@ -1359,7 +1413,6 @@ DocType: Website Theme,Theme URL,Tema URL DocType: Customize Form,Sort Field,Sorteringsfältet DocType: Razorpay Settings,Razorpay Settings,Razorpay Inställningar apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Redigera filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Lägga till mer DocType: System Settings,Session Expiry Mobile,Sessions Upphörande Mobil apps/frappe/frappe/utils/password.py,Incorrect User or Password,Felaktig Användare eller Lösenord apps/frappe/frappe/templates/includes/search_box.html,Search results for,Sökresultat för @@ -1375,8 +1428,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energipunktregel DocType: Communication,Delayed,Försenad apps/frappe/frappe/config/settings.py,List of backups available for download,Förteckning över säkerhetskopior tillgängliga för nedladdning +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Prova den nya dataimporten apps/frappe/frappe/www/login.html,Sign up,Registrera dig apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Rad {0}: Ej tillåtet att inaktivera Obligatorisk för standardfält +DocType: Webhook,Enable Security,Aktivera säkerhet apps/frappe/frappe/config/customization.py,Dashboards,instrumentpaneler DocType: Test Runner,Output,Produktion DocType: Milestone,Track Field,Spårfält @@ -1384,6 +1439,7 @@ DocType: Notification,Set Property After Alert,Ange egenskap efter varning apps/frappe/frappe/config/customization.py,Add fields to forms.,Lägg till fält till formulär. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Lägg till recension +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} tilldelade dig en ny uppgift {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Teckenstorlek (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Endast vanliga DocTypes får anpassas från Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,8 +1451,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menyobjekt apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Ställ in filter DocType: Contact Us Settings,Email ID,E-post-ID DocType: Energy Point Rule,Multiplier Field,Multiplikatorfält +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Det gick inte att skapa Razorpay-beställning. Kontakta administratören DocType: Dashboard Chart,Time Interval,Tidsintervall DocType: Activity Log,Keep track of all update feeds,Håll koll på alla uppdateringsfeeds +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} delade ett dokument {1} {2} med dig DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,En lista över resurser som Kunden App kommer att ha tillgång till efter att användaren tillåter det. <br> t.ex. projektet DocType: Translation,Translated Text,översatt text DocType: Contact Us Settings,Query Options,Fråge Alternativ @@ -1415,6 +1473,7 @@ DocType: DefaultValue,Key,Nyckel DocType: Address,Contacts,Kontakter DocType: System Settings,Setup Complete,Installationen är klar apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport från alla dokument +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importmallen ska vara av typen .csv, .xlsx eller .xls" apps/frappe/frappe/www/update-password.html,New Password,Nytt Lösenord apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} saknas apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Förlåt! Du kan inte ta bort autogenererade kommentarer @@ -1430,6 +1489,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Springa DocType: Blog Post,Content (HTML),Innehåll (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Inställningar för DocType: Personal Data Download Request,User Name,Användarnamn DocType: Workflow State,minus-sign,minustecken apps/frappe/frappe/public/js/frappe/request.js,Not Found,Hittades Inte @@ -1437,11 +1497,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Inga {0} tillstånd apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export anpassade behörigheter apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Inga föremål hittades. DocType: Data Export,Fields Multicheck,Fält Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Komplett DocType: Activity Log,Login,Logga In DocType: Web Form,Payments,Betalningar apps/frappe/frappe/www/qrcode.html,Hi {0},Hej {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive-integration. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} återställde dina poäng på {1} {2} DocType: System Settings,Enable Scheduled Jobs,Aktivera schemalagda jobb apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Anmärkningar: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Inaktiv @@ -1466,6 +1526,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-post apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Tillståndsfel apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Namn på {0} kan inte vara {1} DocType: User Permission,Applicable For,Tillämplig för +DocType: Dashboard Chart,From Date,Från Datum apps/frappe/frappe/core/doctype/version/version_view.html,Success,Framgång apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessionen löpte apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sessionen löpte @@ -1478,7 +1539,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Fra apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ej tillåtet i skick DocType: Async Task,Async Task,Async Uppgift DocType: Workflow State,picture,bild -apps/frappe/frappe/www/complete_signup.html,Complete,Komplett +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Komplett DocType: DocType,Image Field,bildfält DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: LDAP Settings,Default Role on Creation,Standardroll för skapandet @@ -1486,6 +1547,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Nästa Status DocType: User,Block Modules,Blockmoduler DocType: Print Format,Custom CSS,Anpassad CSS +DocType: Energy Point Rule,Apply Only Once,Applicera endast en gång apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lägg till en kommentar DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ignoreras: {0} till {1} @@ -1497,6 +1559,7 @@ DocType: Email Account,Default Incoming,Standard Inkommande DocType: Workflow State,repeat,upprepa DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Värdet måste vara ett av {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Avbryt alla dokument 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gå till {0} Listan apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjälp på Sök @@ -1505,6 +1568,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrerad apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Auto Repeat för detta dokument har inaktiverats. DocType: DocType,Hide Copy,Dölj Kopiera apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Rensa alla roller +DocType: Server Script,Before Save,Innan du sparar apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} måste vara unikt apps/frappe/frappe/model/base_document.py,Row,Rad apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC och e-postmall" @@ -1515,7 +1579,6 @@ DocType: Chat Profile,Offline,Off-line apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importerad {0} DocType: User,API Key,API-nyckel DocType: Email Account,Send unsubscribe message in email,Skicka avbeställa meddelande i e-post -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Redigera apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fältnamn som kommer att vara DocType för den här länken fältet. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Handlingar tilldelats dig och av dig. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Du kan också kopiera och klistra in det här @@ -1547,8 +1610,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Bifoga bild DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Lösenord Uppdaterad +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställning> Användarrättigheter apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Åtgärder för att verifiera din inloggning apps/frappe/frappe/utils/password.py,Password not found,Lösenord inte hittade +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Sidlängd DocType: Email Queue,Expose Recipients,utsätta mottagare apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Bifoga till är obligatoriskt för inkommande e-post @@ -1576,6 +1641,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Max Bilaga Storlek (i MB) apps/frappe/frappe/www/login.html,Have an account? Login,Har du ett konto? Logga in +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Utskriftsinställningar ... DocType: Workflow State,arrow-down,pil ner apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rad {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Användaren får inte ta bort {0}: {1} @@ -1597,6 +1663,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ange ditt DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tillträde Secret DocType: Tag Link,Document Title,Dokument titel apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorisk) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan DocType: Social Login Key,Social Login Provider,Social inloggningsleverantör apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lägg till en ny kommentar apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Inga data finns i filen. Sätt tillbaka den nya filen med data. @@ -1611,11 +1678,12 @@ DocType: Workflow State,hand-down,hand ner apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Inga fält hittade som kan användas som Kanban-kolumn. Använd anpassningsformuläret för att lägga till ett anpassat fält av typen "Välj". DocType: Address,GST State,GST-staten apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Kan inte ange avbruten utan att ha skickat +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Användare ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigering URI bundet till Auth Code apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Öppna Hjälp DocType: DocType,Is Submittable,Är Skickad -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nytt Nämn +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Nytt Nämn apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Inga nya Google-kontakter har synkroniserats. DocType: File,Uploaded To Google Drive,Uppladdad till Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Värde för ett kontrollfält kan vara antingen 0 eller 1 @@ -1627,7 +1695,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Inkorg DocType: Kanban Board Column,Red,Röd DocType: Workflow State,Tag,Etikett -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Dokumentet kan inte sparas. DocType: Energy Point Rule,Maximum Points,Maximal poäng apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mina inställningar @@ -1657,9 +1725,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} uppskattningspoäng för {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roller kan ställas in för användare från sin användarsida. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Lägg till kommentar +DocType: Dashboard Chart,Select Date Range,Välj datumintervall DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul för att exportera +DocType: Scheduled Job Type,Monthly Long,Månadslångt apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Inga grundläggande behörigheter satta +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Skicka ett e-postmeddelande till {0} för att länka det här apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Innebörden av Skicka, Avbryt, Ändra" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Att Göra @@ -1668,7 +1739,6 @@ DocType: Milestone Tracker,Track milestones for any document,Spåra milstolpar f DocType: Social Login Key,Identity Details,Identitetsdetaljer apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Övergång av arbetsflödesstat inte tillåten från {0} till {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Visa instrumentpanelen -apps/frappe/frappe/desk/form/assign_to.py,New Message,Nytt meddelande DocType: File,Preview HTML,Förhandsgranska HTML DocType: Desktop Icon,query-report,query-rapport DocType: Data Import Beta,Template Warnings,Mallvarningar @@ -1679,18 +1749,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Länkad Med apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Redigera inställningar för automatisk e-postrapport DocType: Chat Room,Message Count,Meddelanderäkning DocType: Workflow State,book,bok +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} är länkad till följande inlämnade dokument: {2} DocType: Communication,Read by Recipient,Läs av mottagare DocType: Website Settings,Landing Page,Landningssida apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Fel i Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Namn apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Inga Behörigheter fastställts för dessa kriterier. DocType: Auto Email Report,Auto Email Report,Auto E-postrapport +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Nytt dokument delat apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Ta bort kommentar? DocType: Address Template,This format is used if country specific format is not found,Det här formatet används om landsspecifika format inte hittas DocType: System Settings,Allow Login using Mobile Number,Tillåt inloggning med mobilnummer apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Om det är aktiverat, kommer användare som loggar in från Begränsad IP-adress inte att uppmanas till Two Factor Auth" +DocType: Server Script,After Cancel,Efter avbryt DocType: Auto Repeat,Get Contacts,Hämta kontakter apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Inlägg arkiverat {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Hoppar över namnlös kolumn @@ -1701,6 +1774,7 @@ DocType: User,Login After,Inloggning Efter DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tryckning DocType: Workflow State,thumbs-up,tummen upp +DocType: Notification Log,Mention,Nämna DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,typsnitt apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision bör vara mellan 1 och 6 @@ -1708,7 +1782,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,och apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Rapporten genererades den {0} DocType: Error Snapshot,Frames,Ramar -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Uppdrag +DocType: Notification Log,Assignment,Uppdrag DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Bildlänk DocType: Auto Email Report,Report Filters,rapportfilter @@ -1725,7 +1799,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Det går inte att uppdatera händelse apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Verifieringskoden har skickats till din registrerade e-postadress. apps/frappe/frappe/core/doctype/user/user.py,Throttled,strypt +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Ditt mål apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtret måste ha 4 värden (doktyp, fältnamn, operatör, värde): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Inget namn har angetts för {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Tillämpa tilldelningsregel apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/utils/data.py,Invalid field name {0},Ogiltigt fältnamn {0} @@ -1735,7 +1811,6 @@ DocType: Workflow State,text-height,text-höjd DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Kartläggning av dataöverföringsplan apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Börjar Frappé ... DocType: Web Form Field,Max Length,Maxlängd -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},För {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,map-markör apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Skicka en händelse @@ -1771,6 +1846,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Sida saknas eller flyttats apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,recensioner DocType: DocType,Route,Rutt apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Betalning gateway inställningar +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} fick {1} poäng för {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Hämta bifogade bilder från dokument DocType: Chat Room,Name,Namn DocType: Contact Us Settings,Skype,Skype @@ -1781,7 +1857,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Öppna länk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ditt språk DocType: Dashboard Chart,Average,Medel apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Lägg till rad -DocType: Tag Category,Doctypes,DOCTYPE apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Skrivare apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Fråga måste vara en SELECT DocType: Auto Repeat,Completed,Avslutade @@ -1841,6 +1916,7 @@ DocType: GCalendar Account,Next Sync Token,Nästa synkroniseringstoken DocType: Energy Point Settings,Energy Point Settings,Energipunktinställningar DocType: Async Task,Succeeded,Efterföljande apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriska fält krävs i {0} +DocType: Onboarding Slide Field,Align,Justera apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Återställ behörigheter för {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Användare och behörigheter DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup-inställningar @@ -1857,7 +1933,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nytt utskriftsformatsnamn apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klicka på länken nedan för att godkänna begäran DocType: Workflow State,align-left,rikta vänster +DocType: Onboarding Slide,Action Settings,Handlingsinställningar DocType: User,Defaults,Standard +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","För jämförelse, använd> 5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)." DocType: Energy Point Log,Revert Of,Återgå till apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sammanfoga med befintlig DocType: User,Birth Date,Födelsedag @@ -1912,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,I DocType: Notification,Value Change,Värde Förändring DocType: Google Contacts,Authorize Google Contacts Access,Auktorisera åtkomst till Google-kontakter apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Visar endast Numeriska fält från Rapport +apps/frappe/frappe/utils/data.py,1 week ago,1 vecka sedan DocType: Data Import Beta,Import Type,Importtyp DocType: Access Log,HTML Page,HTML-sida DocType: Address,Subsidiary,Dotterbolag @@ -1921,7 +2000,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Med Brev apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ogiltig utgående e-postserver eller Port DocType: Custom DocPerm,Write,Skriva -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Endast administratör får skapa Query / Script rapporter apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Uppdatering DocType: Data Import Beta,Preview,Förhandsgranska apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Fält "värde" är obligatorisk. Vänligen ange värdet uppdateras @@ -1931,6 +2009,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Bjud in so DocType: Data Migration Run,Started,Satte igång apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Användare {0} har inte tillgång till det här dokumentet DocType: Data Migration Run,End Time,Sluttid +DocType: Dashboard Chart,Group By Based On,Grupp efter baserat på apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Välj tillbehör apps/frappe/frappe/model/naming.py, for {0},för {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Du får inte skriva ut dokument @@ -1972,6 +2051,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Verifiera DocType: Workflow Document State,Update Field,Uppdatera fält DocType: Chat Profile,Enable Chat,Aktivera chatt DocType: LDAP Settings,Base Distinguished Name (DN),Bas Distinguished Name (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lämna denna konversation apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Alternativ inte satt för länk fältet {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Kö / arbetare @@ -2040,12 +2120,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Inloggning inte tillåtet vid denna tid DocType: Data Migration Run,Current Mapping Action,Aktuell kartläggningsåtgärd DocType: Dashboard Chart Source,Source Name,käll~~POS=TRUNC -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Inget e-postkonto kopplat till användaren. Lägg till ett konto under User> Email Inbox. DocType: Email Account,Email Sync Option,Email Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Rad nr DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Är fastsatt DocType: Contact Us Settings,Introduction,Introduktion +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Behövs hjälp? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin globalt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Följd av DocType: LDAP Settings,LDAP Email Field,LDAP Email Field @@ -2055,7 +2135,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Redan i a DocType: User Email,Enable Outgoing,Aktivera Utgående DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,anpassade Taggar -apps/frappe/frappe/email/smtp.py,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ällning> E-post> E-postkonto DocType: Comment,Submitted,Avsändare DocType: Contact,Pulled from Google Contacts,Dras från Google-kontakter apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Ogiltig Förfrågan @@ -2076,9 +2155,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Hem / Testa apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Tilldela till mig DocType: DocField,Dynamic Link,Dynamisk Länk apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tryck på Alt-tangenten för att utlösa ytterligare genvägar i Meny och Sidfält +DocType: Dashboard Chart,To Date,Till Datum DocType: List View Setting,List View Setting,Inställning av listvy apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Show misslyckades jobb -DocType: Event,Details,Detaljer +DocType: Scheduled Job Log,Details,Detaljer DocType: Property Setter,DocType or Field,DocType eller Fält apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Du har följt upp detta dokument apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Grundfärg @@ -2087,7 +2167,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Verkar publicerbar nyckel eller hemlig nyckel är fel !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Verkar publicerbar nyckel eller hemlig nyckel är fel !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Snabb hjälp för att ange behörigheter -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE Tilldela Tags apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Visa Återfall apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-post har flyttats till papperskorgen DocType: Report,Report Builder,Rapportgenerator @@ -2103,6 +2182,7 @@ DocType: Workflow State,Upload,Överför DocType: User Permission,Advanced Control,Avancerad kontroll DocType: System Settings,Date Format,Datumformat apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Inte Publicerad +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standardadressmall hittades. Skapa en ny från Setup> Print and Branding> Address Mall. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Atgärder för arbetsflöde (t.ex. godkänna, Avbryt)." DocType: Data Import,Skip rows with errors,Hoppa över rader med fel DocType: Workflow State,flag,flagga @@ -2112,7 +2192,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Skri apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hoppa till fältet DocType: Contact Us Settings,Forward To Email Address,Framåt Till e-postadress DocType: Contact Phone,Is Primary Phone,Är primär telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Skicka ett e-postmeddelande till {0} för att länka det här. DocType: Auto Email Report,Weekdays,vardagar apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} poster kommer att exporteras apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Fältet Titel måste vara en giltig fältnamn @@ -2120,7 +2199,7 @@ DocType: Post Comment,Post Comment,Publicera kommentar apps/frappe/frappe/config/core.py,Documents,Dokument apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Aktivitetslogg av DocType: Social Login Key,Custom Base URL,Anpassad basadress -DocType: Email Flag Queue,Is Completed,Är klart +DocType: Onboarding Slide,Is Completed,Är klart apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Få fält apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Redigera profil DocType: Kanban Board Column,Archived,Arkiveras @@ -2131,11 +2210,12 @@ 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 DocType: Social Login Key,Office 365,Kontor 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,I dag +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Skicka efter import DocType: Error Log,Log of Scheduler Errors,Loggar av Planerings fel DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Onboarding Slide Help Link DocType: OAuth Client,App Client Secret,App klienthemligheten apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Lämna in apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Föräldra är namnet på det dokument som data kommer att läggas till. @@ -2143,7 +2223,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,STORA BOKSTÄVER apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Anpassad HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Ange mappnamn -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standardadressmall hittades. Skapa en ny från Setup> Print and Branding> Address Mall. apps/frappe/frappe/auth.py,Unknown User,Okänd användare apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Välj roll DocType: Comment,Deleted,Raderad @@ -2159,7 +2238,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Skapa diagram apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,kalle@karlsson.se apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Importera inte -DocType: Web Page,Center,Centrum +DocType: Onboarding Slide Field,Center,Centrum DocType: Notification,Value To Be Set,Värde som ska ställas in apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Redigera {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Grundnivå @@ -2167,7 +2246,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Databas namn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Uppdatera Formulär DocType: DocField,Select,Välj -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Visa fullständig logg +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Visa fullständig logg DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Exempel: status == 'Open' och typ == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Fil inte inlagd apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Anslutning förlorad. Vissa funktioner kanske inte fungerar. @@ -2199,6 +2278,7 @@ DocType: Web Page,HTML for header section. Optional,HTML för huvudsektionen. Va apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,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,Maximum {0} rows allowed,Max {0} rader tillåts DocType: Dashboard Chart Link,Chart,Diagram +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Globalt Avanmälan apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Detta är ett mycket vanligt lösenord. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Se @@ -2215,6 +2295,7 @@ DocType: Data Migration Connector,Hostname,Värdnamn DocType: Data Migration Mapping,Condition Detail,Skickdetalj apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",För valuta {0} bör den minsta transaktionsbeloppet vara {1} DocType: DocField,Print Hide,Göm utskrift +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Till användaren apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Ange värde DocType: Workflow State,tint,nyans @@ -2282,6 +2363,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kod för in apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lägg till att göra DocType: Footer Item,Company,Företaget apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Genomsnitt av {0} +DocType: Scheduled Job Log,Scheduled,Planerad DocType: User,Logout from all devices while changing Password,Logga ut från alla enheter medan du byter lösenord apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifiera Lösenord apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Det fanns fel @@ -2307,7 +2389,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Användarbehörighet finns redan apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartlägga kolumn {0} till fält {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Visa {0} -DocType: User,Hourly,Varje timme +DocType: Scheduled Job Type,Hourly,Varje timme apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrera OAuth-klient App DocType: DocField,Fetch If Empty,Hämta om den är tom DocType: Data Migration Connector,Authentication Credentials,Autentiseringsuppgifter @@ -2318,10 +2400,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway webbadress apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},vunnit av {0} via automatisk regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eller {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Ni är alla inställda! DocType: Workflow State,trash,skräp DocType: System Settings,Older backups will be automatically deleted,Äldre säkerhetskopior tas bort automatiskt apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ogiltigt Access Key ID eller Secret Access Key. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Du tappade några energipoäng DocType: Post,Is Globally Pinned,Är globalt fastsatt apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,senaste aktivitet DocType: Workflow Transition,Conditions,Betingelser @@ -2330,6 +2412,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Bekräftat DocType: Event,Ends on,Slutar om DocType: Payment Gateway,Gateway,Inkörsport DocType: LDAP Settings,Path to Server Certificate,Sökväg till servercertifikat +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript är avaktiverat i din webbläsare apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Inte tillräckligt med tillåtelse för att se länkar apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Inte tillräckligt med tillåtelse för att se länkar apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adress titel är obligatorisk. @@ -2349,7 +2432,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-väst-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",Om det här är markerat kommer rader med giltiga data att importeras och ogiltiga rader dumpas till en ny fil för att importera senare. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentet kan endast redigeras av användarna med rättigheter -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Uppgiften {0}, som du tilldelat {1}, har stängts av {2}." DocType: Print Format,Show Line Breaks after Sections,Visa Radbrytningar efter avsnitt DocType: Communication,Read by Recipient On,Läs av mottagaren DocType: Blogger,Short Name,Kort Namn @@ -2382,6 +2464,7 @@ DocType: Translation,PR sent,PR skickas DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Skicka endast poster som uppdaterades under senaste X timmarna DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Skicka endast poster som uppdaterades under senaste X timmarna DocType: Communication,Feedback,Respons +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Uppdaterad till en ny version 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Öppen översättning apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Det här e-postmeddelandet är autogenererat DocType: Workflow State,Icon will appear on the button,Ikon visas på knappen @@ -2420,6 +2503,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Sidan hitt DocType: DocField,Precision,Precision DocType: Website Slideshow,Slideshow Items,Spelet artiklar apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Försök att undvika upprepade ord och tecken +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Meddelanden inaktiverade +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Är du säker på att du vill ta bort alla rader? DocType: Workflow Action,Workflow State,Arbetsflöde status apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,rader läggas apps/frappe/frappe/www/list.py,My Account,Mitt Konto @@ -2428,6 +2513,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Dagar Efter apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ-fackanslutning aktiv! DocType: Contact Us Settings,Settings for Contact Us Page,Inställningar för Kontakta oss Page +DocType: Server Script,Script Type,Script type DocType: Print Settings,Enable Print Server,Aktivera skrivarservern apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} veckor sedan DocType: Email Account,Footer,Footer @@ -2453,8 +2539,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Varning apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Detta kan skrivas ut på flera sidor DocType: Data Migration Run,Percent Complete,Procent Slutförd -DocType: Tag Category,Tag Category,Tag Kategori -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","För jämförelse, använd> 5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)." DocType: Google Calendar,Pull from Google Calendar,Dra från Google Kalender apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Hjälp DocType: User,Login Before,Logga in Innan @@ -2464,17 +2548,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Dölj helgerna apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genererar automatiskt återkommande dokument. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Är +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,infoskylt apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Värde för {0} kan inte vara en lista DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hur ska denna valuta formateras? Om inte satt, kommer systemet som standard" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Skicka {0} dokument? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Fel vid anslutning till QZ Tray Application ... <br><br> Du måste ha QZ Tray-applikation installerad och igång för att kunna använda Raw Print-funktionen. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klicka här för att ladda ner och installera QZ-fack</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klicka här för att lära dig mer om Raw Printing</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Skrivarkartläggning apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Spara innan bifogning. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vill du avbryta alla länkade dokument? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Tillagd {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype kan inte ändras från {0} till {1} i rad {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Roll Behörigheter DocType: Help Article,Intermediate,Mellanliggande +apps/frappe/frappe/config/settings.py,Email / Notifications,E-post / aviseringar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} har ändrats {1} till {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Avbrutet dokument återställt som Utkast DocType: Data Migration Run,Start Time,Starttid @@ -2491,6 +2579,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Ka apps/frappe/frappe/email/smtp.py,Invalid recipient address,Ogiltig mottagaradress DocType: Workflow State,step-forward,Stig fram DocType: System Settings,Allow Login After Fail,Tillåt inloggning efter misslyckande +DocType: DocType Link,DocType Link,DocType-länk DocType: Role Permission for Page and Report,Set Role For,Ställ ROLL FÖR DocType: GCalendar Account,The name that will appear in Google Calendar,Namnet som kommer att visas i Google Kalender apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direktrum med {0} existerar redan. @@ -2508,6 +2597,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Skapa en DocType: Contact,Google Contacts,Google-kontakter DocType: GCalendar Account,GCalendar Account,GCalendar konto DocType: Email Rule,Is Spam,är Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Sista apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapportera {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Öppna {0} DocType: Data Import Beta,Import Warnings,Importvarningar @@ -2519,6 +2609,7 @@ DocType: Workflow State,ok-sign,OK-tecken apps/frappe/frappe/config/settings.py,Deleted Documents,Raderade dokument apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-formatet är skiftlägeskänsligt apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon finns redan +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Ange i vilka domäner alla bilder ska visas. Om inget anges visas bilden som standard i alla domäner. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicera apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Fält {1} i rad {2} kan inte döljas och obligatoriskt utan standard DocType: Newsletter,Create and Send Newsletters,Skapa och skicka nyhetsbrev @@ -2529,6 +2620,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Kalenderhändels ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Förälder" betyder den överordnade tabellen där denna rad skall läggas apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Granskningspoäng: +DocType: Scheduled Job Log,Scheduled Job Log,Schemalagd jobblogg +DocType: Server Script,Before Delete,Innan radera apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Delad Med apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Fäst filer / webbadresser och lägg till i tabellen. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Meddelandet är inte inställt @@ -2552,19 +2645,21 @@ DocType: About Us Settings,Settings for the About Us Page,Inställningar för os apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Streckbetalnings gateway-inställningar apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Streckbetalnings gateway-inställningar apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Skriv ut Skickat till skrivaren! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energipoäng +DocType: Notification Settings,Energy Points,Energipoäng +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tid {0} måste vara i format: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,t.ex. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Generera nycklar apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Detta kommer att ta bort dina data permanent. DocType: DocType,View Settings,Visa inställningar +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Ny anmälan DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Begär struktur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Controller-metod get_razorpay_order saknas DocType: Personal Data Deletion Request,Pending Verification,Väntar på verifiering DocType: Website Meta Tag,Website Meta Tag,Metatagg på webbplatsen DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Om ej standardport (t.ex. 587). Om du använder Google Cloud, försök port 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Rensa slutdatum, eftersom det inte kan vara tidigare för publicerade sidor." DocType: User,Send Me A Copy of Outgoing Emails,Skicka mig en kopia av utgående e-postmeddelanden -DocType: System Settings,Scheduler Last Event,Scheduler Senaste Race DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Lägg till Google Analytics-ID: t ex. UA-89XXX57-1. Vänligen sök hjälp på Google Analytics för mer information. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Lösenord kan inte vara mer än 100 tecken DocType: OAuth Client,App Client ID,App-klient-ID @@ -2593,6 +2688,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nytt lösenor apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delade detta dokument med {1} DocType: Website Settings,Brand Image,Märke Bild DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Importmallen ska innehålla en rubrik och minst en rad. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Kalender har konfigurerats. apps/frappe/frappe/config/website.py,"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 @@ -2602,6 +2698,7 @@ DocType: User Social Login,User Social Login,User Social Login apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} kritiserade ditt arbete med {1} med {2} poäng DocType: Contact,All,Allt DocType: Email Queue,Recipient,Mottagare +DocType: Webhook,Webhook Security,Webhook Security DocType: Communication,Has Attachment,har Attachment DocType: Address,Sales User,Försäljningsanvändar apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Dra och släpp verktyg för att bygga och anpassa utskriftsformat. @@ -2668,7 +2765,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migrations-ID-fält DocType: Dashboard Chart,Last Synced On,Senast synkroniserad DocType: Comment,Comment Type,Kommentar Typ DocType: OAuth Client,OAuth Client,OAuth-klient -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} kritiserade ditt arbete med {1} {2} DocType: Assignment Rule,Users,Användare DocType: Address,Odisha,Odisha DocType: Report,Report Type,Rapporttyp @@ -2694,14 +2790,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Bildspels artiklar apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Själv godkännande är inte tillåtet DocType: GSuite Templates,Template ID,Mall ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kombination av bidragstyp ( <code>{0}</code> ) och svarstyp ( <code>{1}</code> ) är inte tillåtet -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nytt meddelande från {0} DocType: Portal Settings,Default Role at Time of Signup,Standard roll vid Tid för Registrera DocType: DocType,Title Case,Titel Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Klicka på länken nedan för att ladda ner dina data apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Aktiverad e-postinbox för användare {0} DocType: Data Migration Run,Data Migration Run,Data Migration Run DocType: Blog Post,Email Sent,Email Skickat -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Äldre DocType: DocField,Ignore XSS Filter,Ignorera XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,tog bort apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox inställningarna för säkerhetskopiering @@ -2756,6 +2850,7 @@ DocType: Async Task,Queued,I kö DocType: Braintree Settings,Use Sandbox,användning Sandbox apps/frappe/frappe/utils/goal.py,This month,Den här månaden apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Ny anpassat Utskriftsformat +DocType: Server Script,Before Save (Submitted Document),Innan du sparar (inlämnat dokument) DocType: Custom DocPerm,Create,Skapa apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Inga fler objekt att visa apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Gå till föregående post @@ -2813,6 +2908,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Flytta till papperskorgen DocType: Web Form,Web Form Fields,Web formulärfält DocType: Data Import,Amended From,Ändrat Från +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Lägg till en länk till hjälpvideon om användaren inte har någon aning om vad som ska fyllas i bilden. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Varning: Det går inte att hitta {0} i någon tabell relaterad till {1} DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Detta dokument är för närvarande i kö för exekvering. Var god försök igen @@ -2835,6 +2931,7 @@ DocType: Blog Post,Blog Post,Blogginlägg DocType: Access Log,Export From,Exportera från apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Avancerad Sökning apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Det är inte tillåtet att se nyhetsbrevet. +DocType: Dashboard Chart,Group By,Gruppera efter DocType: User,Interests,Intressen apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Lösenordsåterställnings instruktioner har skickats till din e-post DocType: Energy Point Rule,Allot Points To Assigned Users,Tilldela poäng till tilldelade användare @@ -2850,6 +2947,7 @@ DocType: Assignment Rule,Assignment Rule,Uppdragsregel apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Föres Användarnamn: {0} DocType: Assignment Rule Day,Day,Dag apps/frappe/frappe/public/js/frappe/desk.js,Modules,moduler +DocType: DocField,Mandatory Depends On,Obligatorisk beror på apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,betalning Framgång apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ingen {0} post DocType: OAuth Bearer Token,Revoked,återkallats @@ -2857,6 +2955,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar och kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Ej tillåtet att bifoga {0} dokument, vänligen aktivera Tillåt utskrift för {0} i utskriftsinställningar" +apps/frappe/frappe/email/smtp.py,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ällning> E-post> E-postkonto apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Se dokumentet vid {0} DocType: Stripe Settings,Publishable Key,Publicerbar nyckel DocType: Stripe Settings,Publishable Key,Publicerbar nyckel @@ -2871,13 +2970,13 @@ DocType: Currency,Fraction,Fraktion apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Händelse synkroniseras med Google Kalender. DocType: LDAP Settings,LDAP First Name Field,LDAP fältet Förnamn DocType: Contact,Middle Name,Mellannamn +DocType: DocField,Property Depends On,Fastigheten beror på DocType: Custom Field,Field Description,Fält Beskrivning apps/frappe/frappe/model/naming.py,Name not set via Prompt,Namnet inte satt via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,inkorg apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Uppdaterar {0} av {1}, {2}" DocType: Auto Email Report,Filters Display,filter Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Fältet "amend_from" måste finnas för att göra en ändring. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} uppskattade ditt arbete med {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Spara filter DocType: Address,Plant,Fastighet apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svara alla @@ -2918,11 +3017,11 @@ DocType: Workflow State,folder-close,mapp stängd apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Rapportera: DocType: Print Settings,Print taxes with zero amount,Skriv ut skatter med nollbelopp apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} inte tillåtet att döpas +DocType: Server Script,Before Insert,Innan du sätter i DocType: Custom Script,Custom Script,Custom Script DocType: Address,Address Line 2,Adress Linje 2 DocType: Address,Reference,Referens apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Tilldelats -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ställ in standard e-postkonto från Setup> E-post> E-postkonto DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detalj DocType: Data Import,Action,Åtgärd DocType: GSuite Settings,Script URL,Skriptadress @@ -2948,11 +3047,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,I lista DocType: Email Account,Use TLS,Använd TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Ogiltigt användarnamn eller lösenord +DocType: Scheduled Job Type,Weekly Long,Veckolångt apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Hämta mall apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Lägg till anpassade javascript former. ,Role Permissions Manager,Behörighetsansvarig apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Namn på den nya utskriftsformat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Växla sidofältet +DocType: Server Script,After Save (Submitted Document),Efter spara (skickat dokument) DocType: Data Migration Run,Pull Insert,Dra in satsen DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Maximala poäng tillåtna efter multiplicering av poäng med multiplikatorvärdet (Obs: För ingen gräns lämnar detta fält tomt eller ställ in 0) @@ -2972,6 +3073,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogg apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP inte installerad apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ladda ner med data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ändrade värden för {0} {1} +DocType: Server Script,Before Cancel,Innan du avbryter DocType: Workflow State,hand-right,hand höger DocType: Website Settings,Subdomain,Subdomän DocType: S3 Backup Settings,Region,Region @@ -3018,12 +3120,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Gammalt Lösenord DocType: S3 Backup Settings,us-east-1,us-öst-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Inlägg av {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Till formatera kolumner, ge kolumnetiketter i frågan." +DocType: Onboarding Slide,Slide Fields,Slide Fields DocType: Has Domain,Has Domain,Har domän DocType: User,Allowed In Mentions,Tillåts i omnämnanden apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Har du inget konto? Bli Medlem apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Det går inte att ta bort ID-fältet apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan inte ange ändring om den inte kan skickas in DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Prenumererade dokument apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Användarinställningar DocType: Report,Reference Report,Referensrapport DocType: Activity Log,Link DocType,länk DocType @@ -3041,6 +3145,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Auktorisera Google Kal apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Sidan du söker saknas. Detta kan bero på att det flyttas eller om det finns ett stavfel i länken. apps/frappe/frappe/www/404.html,Error Code: {0},Felkod: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskriv för noteringSsida, i klartext, bara ett par rader. (max 140 tecken)" +DocType: Server Script,DocType Event,DocType-händelse apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} är obligatoriska fält DocType: Workflow,Allow Self Approval,Tillåt själv godkännande DocType: Event,Event Category,Händelsekategori @@ -3057,6 +3162,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ditt namn apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Anslutningsframgång DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,En Onboarding-bild av diabildtyp fortsätter finns redan. DocType: DocType,Default Sort Field,Standard sorteringsfält DocType: File,Is Folder,Är Mapp DocType: Document Follow,DocType,DocType @@ -3094,8 +3200,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,värden DocType: Workflow State,arrow-up,pil-up DocType: Dynamic Link,Link Document Type,Länka dokumenttyp apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Det bör finnas minst en rad för tabellen {0} +DocType: Server Script,Server Script,Server script apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","För att konfigurera Auto Repeat, aktivera "Allow Auto Repeat" från {0}." DocType: OAuth Bearer Token,Expires In,Går ut om +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Hur många gånger du vill upprepa uppsättningen av fält (t.ex.: om du vill ha 3 kunder i bilden, ställ in detta fält till 3. Endast den första uppsättningen av fält visas som obligatorisk i bilden)" DocType: DocField,Allow on Submit,Tillåt på Skicka DocType: DocField,HTML,html DocType: Error Snapshot,Exception Type,Undantag Typ @@ -3105,6 +3213,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,rubriker apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,uppkommande händelser apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Ange värden för App Tillgång Key och App hemlig nyckel +DocType: Email Account,Append Emails to Sent Folder,Lägg till e-postmeddelanden till skickad mapp DocType: Web Form,Accept Payment,Acceptera betalning apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Välj listobjekt apps/frappe/frappe/config/core.py,A log of request errors,En logg över begärandefel @@ -3123,7 +3232,7 @@ DocType: Translation,Contributed,Bidrog apps/frappe/frappe/config/customization.py,Form Customization,Formanpassning apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Inga aktiva sessioner DocType: Web Form,Route to Success Link,Rutt till framgångslänk -DocType: Top Bar Item,Right,Höger +DocType: Onboarding Slide Field,Right,Höger apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Inga kommande evenemang DocType: User,User Type,Användartyp DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3141,6 +3250,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Var god försök apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL måste börja med 'http: //' eller 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Alternativ 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Detta kan inte göras ogjort DocType: Workflow State,Edit,Redigera DocType: Website Settings,Chat Operators,Chattoperatörer DocType: S3 Backup Settings,ca-central-1,ca-central-1 @@ -3152,7 +3262,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Rapport med mer än 10 kolumner ser bättre ut i liggande läge. apps/frappe/frappe/database/database.py,Invalid field name: {0},Ogiltigt fältnamn: {0} DocType: Milestone,Milestone,Milstolpe @@ -3161,7 +3270,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Gå till {0} apps/frappe/frappe/email/queue.py,Emails are muted,E-post är avstängt apps/frappe/frappe/config/integrations.py,Google Services,Google Services apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 vecka sedan +DocType: Onboarding Slide,Slide Description,Bildbeskrivning DocType: Communication,Error,Fel apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Var god installera ett meddelande först DocType: Auto Repeat,End Date,Slutdatum @@ -3182,10 +3291,12 @@ DocType: Footer Item,Group Label,grupp~~POS=HEADCOMP Etikett DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-kontakter har konfigurerats. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 post exporteras +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Inget e-postkonto kopplat till användaren. Lägg till ett konto under User> Email Inbox. DocType: DocField,Report Hide,Dölj rapport apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Träd inte tillgängligt för {0} DocType: DocType,Restrict To Domain,Begränsa till domänen DocType: Domain,Domain,Domän +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Ogiltig fil-URL. Kontakta systemadministratören. DocType: Custom Field,Label Help,Etikett Hjälp DocType: Workflow State,star-empty,star-tom apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datum är ofta lätt att gissa. @@ -3210,6 +3321,7 @@ DocType: Workflow State,hand-left,hand vänster DocType: Data Import,If you are updating/overwriting already created records.,Om du uppdaterar / skriver över redan skapade poster. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Är global DocType: Email Account,Use SSL,Använd SSL +DocType: Webhook,HOOK-.####,KROK-.#### DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentet kunde inte tilldelas korrekt apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Ogiltigt "depends_on" -uttryck @@ -3226,6 +3338,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Senast uppdaterad apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,För dokumenttyp DocType: Workflow State,arrow-right,pil-höger +DocType: Server Script,API Method,API-metod DocType: Workflow State,Workflow state represents the current state of a document.,Arbetsflödes statusen representerar det nuvarande läget i ett dokument. DocType: Letter Head,Letter Head Based On,Brevhuvud baserat på apps/frappe/frappe/utils/oauth.py,Token is missing,Token saknas @@ -3265,6 +3378,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Kompakt Produkttryck DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,omdirigeringsadress +DocType: Onboarding Slide Field,Placeholder,Platshållare DocType: SMS Settings,Enter url parameter for receiver nos,Ange url parameter för mottagaren DocType: Chat Profile,Online,Uppkopplad DocType: Email Account,Always use Account's Name as Sender's Name,Använd alltid kontoens namn som avsändarens namn @@ -3274,7 +3388,6 @@ DocType: Workflow State,Home,Hem DocType: OAuth Provider Settings,Auto,Bil DocType: System Settings,User can login using Email id or User Name,Användaren kan logga in med e-post-id eller användarnamn DocType: Workflow State,question-sign,Frågetecken -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} är inaktiverad apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Fält "rutt" är obligatoriskt för webbvyer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Infoga kolumn före {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Användaren från det här fältet kommer att belönas poäng @@ -3299,6 +3412,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Om ägaren DocType: Data Migration Mapping,Push,Skjuta på apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Släpp filer här DocType: OAuth Authorization Code,Expiration time,förfallotid +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Öppna dokument DocType: Web Page,Website Sidebar,webbplats Sidebar DocType: Web Form,Show Sidebar,Visa Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Du måste vara inloggad för att få tillgång till den här {0}. @@ -3314,6 +3428,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globala genv DocType: Desktop Icon,Page,Sida apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Kunde inte hitta {0} i {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Och efternamn i sig är lätt att gissa. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Dokument bytt namn från {0} till {1} apps/frappe/frappe/config/website.py,Knowledge Base,Kunskapsbas DocType: Workflow State,briefcase,portfölj apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Värde kan inte ändras för {0} @@ -3350,6 +3465,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Utskriftsformat apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Byt rutnätvy apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Gå till nästa post +DocType: System Settings,Time Format,Tidsformat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ogiltiga betalning gateway referenser DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Det här är mallfilen som genereras med endast raderna med något fel. Du bör använda den här filen för korrigering och import. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Ange behörigheter på dokumenttyper och roller @@ -3393,12 +3509,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Svar apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Sidor i Desk (platshållare) DocType: DocField,Collapsible Depends On,Hopfällbar Beror på DocType: Print Style,Print Style Name,Skriv ut stilnamn +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Grupp efter fält krävs för att skapa ett instrumentpanel DocType: Print Settings,Allow page break inside tables,Tillåt sidbrytning inuti tabeller DocType: Email Account,SMTP Server,SMTP-server DocType: Print Format,Print Format Help,Utskriftsformat Hjälp apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Rummet {0} måste ha minst en användare. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Räkna +DocType: Dashboard Chart,Group By Type,Gruppera efter typ apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Ny kommentar på {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},återställd {0} som {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Om du uppdaterar, välj ""Skriv över"" kommer andra befintliga rader inte tas bort." @@ -3409,8 +3527,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Användar DocType: Web Form,Web Form,Web Form apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} måste vara i format: {1} DocType: About Us Settings,Org History Heading,Org Historik Rubrik +DocType: Scheduled Job Type,Scheduled Job Type,Schemalagd jobbtyp DocType: Print Settings,Allow Print for Cancelled,Tillåt Print för Inställd DocType: Communication,Integrations can use this field to set email delivery status,Integrationer kan använda det här fältet för att ställa in e-postleverans status +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Du har inte behörighet att avbryta alla länkade dokument. DocType: Web Form,Web Page Link Text,Webbsida Länk Text DocType: Page,System Page,Systemsida DocType: Page,System Page,Systemsida @@ -3418,6 +3538,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Anpassningar för <b>{0} som</b> exporteras till: <br> {1} DocType: Website Settings,Include Search in Top Bar,Inkludera Sök i Top Bar +DocType: Scheduled Job Type,Daily Long,Dagligen lång DocType: GSuite Settings,Allow GSuite access,Tillåt GSuite-åtkomst DocType: DocType,DESC,DESC DocType: DocType,Naming,Namge @@ -3510,6 +3631,7 @@ DocType: Notification,Send days before or after the reference date,Skicka dagar DocType: User,Allow user to login only after this hour (0-24),Tillåt användare att logga in först efter denna timme (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Tilldela en efter en, i följd" DocType: Integration Request,Subscription Notification,Anmälan om anmälan +DocType: Customize Form Field, Allow in Quick Entry ,Tillåt snabbinmatning apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,eller bifoga en DocType: Auto Repeat,Start Date,Start Datum apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Värde @@ -3524,6 +3646,7 @@ DocType: Google Drive,Backup Folder ID,Mapp-ID för säkerhetskopia apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Inte i utvecklarläge! Beläget i site_config.json eller göra "Custom" DocType. DocType: Workflow State,globe,klot DocType: System Settings,dd.mm.yyyy,dd.mm.åååå +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Prioritet DocType: Email Queue,Unsubscribe Param,Avsluta prenumeration Param DocType: DocType,Hide Sidebar and Menu,Dölj sidofält och meny @@ -3535,6 +3658,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Låt Import (via dataimport apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Flyta DocType: Print Settings,Page Settings,Sidinställningar +DocType: Notification Settings,Notification Settings,Meddelandeinställningar apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Sparande... apps/frappe/frappe/www/update-password.html,Invalid Password,felaktigt lösenord apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importerad {0} post från {1}. @@ -3550,6 +3674,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Brevhuvudbild DocType: Address,Party GSTIN,Party GSTIN +DocType: Scheduled Job Type,Cron Format,Cron-format apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Rapport DocType: SMS Settings,Use POST,Använd POST DocType: Communication,SMS,SMS @@ -3595,18 +3720,20 @@ DocType: Workflow,Allow approval for creator of the document,Tillåt godkännand apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Spara rapport DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Serverhandling apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administratör nås {0} på {1} via IP-adress {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Förälderfältet måste vara ett giltigt fältnamn apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Misslyckades vid ändring av prenumeration DocType: LDAP Settings,LDAP Group Field,LDAP-gruppfält +DocType: Notification Subscribed Document,Notification Subscribed Document,Meddelande Prenumererat dokument apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Lika apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Ogiltigt CSV-format -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Fel vid anslutning till QZ Tray Application ... <br><br> Du måste ha QZ Tray-applikation installerad och igång för att kunna använda Raw Print-funktionen. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Klicka här för att ladda ner och installera QZ-fack</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Klicka här för att lära dig mer om Raw Printing</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Visst antal säkerhetskopior DocType: DocField,Do not allow user to change after set the first time,Låt inte användaren ändra efter att ställt in första gången apps/frappe/frappe/utils/data.py,1 year ago,1 år sedan +DocType: DocType,Links Section,Länkar avsnitt apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Visa logg över alla tryck, ladda ner och exportera händelser" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 månad DocType: Contact,Contact,Kontakt @@ -3633,16 +3760,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,ny epost DocType: Custom DocPerm,Export,Export apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Aktivera {0} för att använda Google Kalender. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Lägger också till statusberoendefältet {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Uppdaterad {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ-fack misslyckades: DocType: Dropbox Settings,Dropbox Settings,Dropbox Inställningar DocType: About Us Settings,More content for the bottom of the page.,Mer innehåll för botten av sidan. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Detta dokument har återgått apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive-säkerhetskopiering framgångsrik. +DocType: Webhook,Naming Series,Namge Serien DocType: Workflow,DocType on which this Workflow is applicable.,DocType som denna Workflow är tillämplig. DocType: User,Enabled,Aktiverat apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Misslyckades med att slutföra installationen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Nytt {0}: {1} -DocType: Tag Category,Category Name,Kategorinamn +DocType: Blog Category,Category Name,Kategorinamn apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Förälder krävs för att få information om barntabeller apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Abonnenter DocType: Print Settings,PDF Settings,PDF-inställningar @@ -3678,6 +3808,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalender apps/frappe/frappe/client.py,No document found for given filters,Inget dokument hittades för givna filter apps/frappe/frappe/config/website.py,A user who posts blogs.,En användare som publicerar bloggar. +DocType: DocType Action,DocType Action,DocType-åtgärd apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","En annan {0} med namn {1} existerar, välj ett annat namn" DocType: DocType,Custom?,Anpassad? DocType: Website Settings,Website Theme Image,Hemsida tema bild @@ -3687,6 +3818,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Det gick apps/frappe/frappe/config/integrations.py,Backup,Säkerhetskopiering apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Dokumenttyp krävs för att skapa ett översiktsdiagram DocType: DocField,Read Only,Endast läs +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Det gick inte att skapa razorpay-ordning apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Nytt Nyhetsbrev DocType: Energy Point Log,Energy Point Log,Energipunktlogg DocType: Print Settings,Send Print as PDF,Skicka Skriv ut som PDF @@ -3712,16 +3844,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bek apps/frappe/frappe/www/login.html,Or login with,Eller logga in med DocType: Error Snapshot,Locals,Lokalbefolkningen apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommuniceras via {0} på {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{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/group_by/group_by.html,Select Group By...,Välj grupp efter ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} krävs DocType: Integration Request,Integration Type,integration Type DocType: Newsletter,Send Attachements,Skicka Attachements +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Inga filter hittades apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakter Integration. DocType: Transaction Log,Transaction Log,Transaktionsloggen apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Statistik baserad på förra månadens resultat (från {0} till {1}) DocType: Contact Us Settings,City,Stad +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Dölj kort för alla användare apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Aktivera Tillåt automatisk upprepning för doktotypen {0} i anpassningsformulär DocType: DocField,Perm Level,Perm Nivå apps/frappe/frappe/www/confirm_workflow_action.html,View document,Visa dokument @@ -3733,6 +3866,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""I global sökning"" inte tillåten för {0} på rad {1}" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""I global sökning"" inte tillåten för {0}] på rad {1}" DocType: Energy Point Log,Appreciation,Uppskattning +DocType: Dashboard Chart,Number of Groups,Antal grupper apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Visa lista DocType: Workflow,Don't Override Status,Inte Åsido Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Sökterm @@ -3774,7 +3908,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-nordväst-1 DocType: Dropbox Settings,Limit Number of DB Backups,Begränsa antalet DB-säkerhetskopior DocType: Custom DocPerm,Level,Nivå -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Senast 30 dagar DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Belopp måste vara större än 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Ansluten till QZ-fack! @@ -3791,6 +3924,7 @@ DocType: S3 Backup Settings,us-west-2,us-väst-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Välj Barntabell apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primär åtgärd apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Byta +DocType: Social Login Key,User ID Property,Användar-ID-egendom DocType: Email Domain,domain name,domän namn DocType: Contact Email,Contact Email,Kontakt E-Post DocType: Kanban Board Column,Order,Beställa @@ -3813,7 +3947,7 @@ DocType: Contact,Last Name,Efternamn DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Vänster DocType: Event,All Day,Hela Dagen apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Ser ut som något är fel med denna webbplats betalning gateway-konfiguration. Ingen betalning har gjorts. DocType: GCalendar Settings,State,Status @@ -3845,7 +3979,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Gateway-inställningar apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text i dokument typ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Kör test apps/frappe/frappe/handler.py,Logged Out,Utloggad apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mer... DocType: System Settings,User can login using Email id or Mobile number,Användaren kan logga in med e-post eller mobilnummer @@ -3862,6 +3995,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sammanfattning DocType: Event,Event Participants,Evenemangsdeltagare DocType: Auto Repeat,Frequency,Frekvens +DocType: Onboarding Slide,Slide Order,Slide Order DocType: Custom Field,Insert After,Infoga Efter DocType: Event,Sync with Google Calendar,Synkronisera med Google Kalender DocType: Access Log,Report Name,Rapportera Namn @@ -3889,6 +4023,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max bredd för typ Valuta är 100px i rad {0} apps/frappe/frappe/config/website.py,Content web page.,Innehåll webbsida. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lägg till en ny roll +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besök webbsidan +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nytt uppdrag DocType: Google Contacts,Last Sync On,Senast synkroniserad DocType: Deleted Document,Deleted Document,raderade dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hoppsan! Något gick snett @@ -3899,7 +4035,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klientsidan script anknytningar i Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Rekord för följande doktyper kommer att filtreras -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Scheman Inaktiv +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Scheman Inaktiv DocType: Blog Settings,Blog Introduction,Blogg Inledning DocType: Global Search Settings,Search Priorities,Sökprioriteringar DocType: Address,Office,Kontors @@ -3909,13 +4045,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Dashboard-diagramlänk DocType: User,Email Settings,E-postinställningar apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Släpp här DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",Om det är aktiverat kan användaren logga in från vilken IP-adress som helst med hjälp av tvåfaktoraut. Detta kan också ställas in för alla användare i Systeminställningar -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Skrivarinställningar ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vänligen ange ditt lösenord för att fortsätta apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vänligen ange ditt lösenord för att fortsätta apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mig apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} inte en giltig stat apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Tillämpa alla dokumenttyper -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunktuppdatering +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energipunktuppdatering +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Kör jobb endast dagligen om de är inaktiva under (dagar) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Rumstyp DocType: Data Import Beta,Import Log Preview,Förhandsvisning av importlogg @@ -3924,6 +4060,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-cirkel DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP-användare skapande och kartläggning apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Du kan hitta saker genom att be "hitta orange i kundernas +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Dagens händelser apps/frappe/frappe/core/doctype/user/user.py,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. ,Usage Info,användning info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Visa kortkommandon @@ -3940,6 +4077,7 @@ DocType: DocField,Unique,Unik apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} uppskattat {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delvis framgång DocType: Email Account,Service,Tjänsten +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Inställning> Användare DocType: File,File Name,Filnamn apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Hittade inte {0} för {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3953,6 +4091,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Avsluta DocType: GCalendar Settings,Enable,Gör det möjligt DocType: Google Maps Settings,Home Address,Hemadress apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan bara ladda upp 5000 register på en gång. (Kan vara mindre i vissa fall) +DocType: Report,"output in the form of `data = [columns, result]`","ut i form av `data = [kolumner, resultat]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tillämpliga dokumenttyper apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Ställ in regler för användaruppdrag. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Otillräcklig tillåtelse för {0} @@ -3969,7 +4108,6 @@ DocType: Communication,To and CC,Att och CC DocType: SMS Settings,Static Parameters,Statiska Parametrar DocType: Chat Message,Room,Rum apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},uppdateras till {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Bakgrundsjobb körs inte. Kontakta administratören DocType: Portal Settings,Custom Menu Items,Anpassade menyalternativ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Alla bilder bifogade till webbplatsens bildspel ska vara offentliga DocType: Workflow State,chevron-right,Chevron-höger @@ -3984,11 +4122,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} värden valda DocType: DocType,Allow Auto Repeat,Tillåt automatisk upprepning apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Inga värden att visa +DocType: DocType,URL for documentation or help,URL för dokumentation eller hjälp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-postmall apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} posten lyckades. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Användare {0} har inte tillgång till doktyp via rolltillstånd för dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Både användarnamn och lösenord krävs +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Låta\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vänligen uppdatera för att få det senaste dokumentet. DocType: User,Security Settings,Säkerhetsinställningar apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Lägg till kolumn @@ -3998,6 +4138,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filter Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Vänligen hitta bifogad {0}: {1} DocType: Web Page,Set Meta Tags,Ställ in metataggar +DocType: Email Account,Use SSL for Outgoing,Använd SSL för utgående 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: S3 Backup Settings,Backup Limit,Begränsning på säkerhetskopior DocType: Dashboard Chart,Line,Linje @@ -4030,4 +4171,3 @@ DocType: DocField,Ignore User Permissions,Ignorera användarbehörigheter apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Sparad apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Fråga administratören att verifiera din sign-up DocType: Domain Settings,Active Domains,Aktiva domäner -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Visa logg diff --git a/frappe/translations/sw.csv b/frappe/translations/sw.csv index 7a9ab4f6d5..e514b29cc7 100644 --- a/frappe/translations/sw.csv +++ b/frappe/translations/sw.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Tafadhali chagua Shamba Kikubwa. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Inapakia faili ya kuingiza ... DocType: Assignment Rule,Last User,Mtumiaji wa Mwisho -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Kazi mpya, {0}, imepewa kwako kwa {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Kufaulu kwa Kikao apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Pakia tena Picha DocType: Email Queue,Email Queue records.,Rekodi za foleni ya Barua pepe. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Miti DocType: User,User Emails,Emails ya Mtumiaji DocType: User,Username,Jina la mtumiaji apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Ingiza Zip +DocType: Scheduled Job Type,Create Log,Unda Ingia apps/frappe/frappe/model/base_document.py,Value too big,Thamani kubwa sana DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Tumia mtihani wa script @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,Kila mwezi DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Wezesha Kuingia apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Hatari -DocType: Address,Email Address,Barua pepe +apps/frappe/frappe/www/login.py,Email Address,Barua pepe DocType: Workflow State,th-large,th-kubwa DocType: Communication,Unread Notification Sent,Arifa isiyojuliwa Imetumwa apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Uhamishaji haruhusiwi. Unahitaji {0} jukumu la kuuza nje. @@ -83,11 +83,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Futa DocType: DocType,Is Published Field,Inayochapishwa Field DocType: GCalendar Settings,GCalendar Settings,Mipangilio ya GCalendar DocType: Email Group,Email Group,Kundi la barua pepe +apps/frappe/frappe/__init__.py,Only for {},Tu kwa {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalenda ya Google - Haikuweza kufuta Tukio {0} kutoka Kalenda ya Google, nambari ya kosa {1}." DocType: Event,Pulled from Google Calendar,Iliyohamishwa kutoka Kalenda ya Google DocType: Note,Seen By,Kuonekana na apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Ongeza Multiple -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Ulipata sehemu za nishati apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Sio Picha ya Mtumiaji halali. DocType: Energy Point Log,Reverted,Imerudishwa DocType: Success Action,First Success Message,Ujumbe wa Kwanza wa Mafanikio @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Si kama apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Thamani isiyo sahihi: {0} lazima {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Badilisha mali ya shamba (kujificha, readonly, ruhusa nk)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Thamini +DocType: Notification Settings,Document Share,Kushiriki kwa Hati DocType: Workflow State,lock,funga apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Mipangilio ya Wasiliana Nasi Ukurasa. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Msimamizi ameingia @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Ikiwa imewezeshwa, hati imewekwa alama kama inavyoonekana, mara ya kwanza mtumiaji kuifungua" DocType: Auto Repeat,Repeat on Day,Rudia Siku DocType: DocField,Color,Rangi +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Weka alama kama Soma DocType: Data Migration Run,Log,Ingia DocType: Workflow State,indent-right,indent-haki DocType: Has Role,Has Role,Inahusika @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Onyesha Traceback DocType: DocType,Default Print Format,Mpangilio wa Chaguo-msingi DocType: Workflow State,Tags,Vitambulisho +DocType: Onboarding Slide,Slide Type,Aina ya slaidi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hapana: Mwisho wa Kazi ya Kazi apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} shamba haliwezi kuweka kama ya kipekee katika {1}, kwa kuwa kuna maadili yasiyo ya kipekee yaliyopo" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Aina za Hati @@ -135,7 +138,6 @@ DocType: Language,Guest,Mgeni DocType: DocType,Title Field,Siri ya Kichwa DocType: Error Log,Error Log,Ingia ya Hitilafu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL batili -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Siku 7 zilizopita apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Kurudia kama "abcabcabc" ni vigumu kidogo tu nadhani kuliko "abc" DocType: Notification,Channel,Kituo apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ikiwa unafikiri hii haikubaliki, tafadhali pesa nenosiri la Msimamizi." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,Mteja apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Chagua Safu apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Fomu hii imebadilishwa baada ya kuipakia DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Ingizo la Arifa DocType: System Settings,"If not set, the currency precision will depend on number format","Ikiwa haijawekwa, usahihi wa sarafu itategemea muundo wa namba" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Fungua Abaromebar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Inaonekana kwamba kuna suala la usanidi wa stripe ya seva. Katika hali ya kushindwa, kiasi hicho kitarejeshwa kwa akaunti yako." @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,In apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Tuma DocType: Workflow Action Master,Workflow Action Name,Jina la Action Action apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType haiwezi kuunganishwa -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Si faili ya zip DocType: Global Search DocType,Global Search DocType,Mtandao wa Utaftaji wa Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,Imepelekwa kwa barua pepe? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Chagua Chati apps/frappe/frappe/desk/form/save.py,Did not cancel,Haikufuta DocType: Social Login Key,Client Information,Maelezo ya Mteja +DocType: Energy Point Rule,Apply this rule only once per document,Tumia sheria hii mara moja kwa hati DocType: Workflow State,plus,pamoja +DocType: DocField,Read Only Depends On,Soma Inategemea tu apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Imeingia kama Mgeni au Msimamizi DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Meneja wa faili @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Sababu DocType: Email Unsubscribe,Email Unsubscribe,Barua ya kujiondoa DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Chagua picha ya upana wa wastani wa 150px na background ya uwazi kwa matokeo bora. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Hakuna shughuli +DocType: Server Script,Script Manager,Meneja wa Hati +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Hakuna shughuli apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Programu ya Tatu apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Mtumiaji wa kwanza atakuwa Meneja wa Mfumo (unaweza kubadilisha hii baadaye). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Hakuna Matukio Leo apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Hauwezi kujipa nukuu za ukaguzi kwako apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType lazima iwasilishwe kwa Tukio la Doc iliyochaguliwa DocType: Workflow State,circle-arrow-up,mduara-mshale-up @@ -234,6 +241,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Hairuhusiwi kwa {0}: {1}. Sehemu iliyofungwa: {2} DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Angalia hii ikiwa unapima malipo yako kwa kutumia Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Huruhusiwi kufuta Mandhari ya Tovuti ya kawaida +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Unda {0} yako ya kwanza DocType: Data Import,Log Details,Maelezo ya Ingia DocType: Workflow Transition,Example,Mfano DocType: Webhook Header,Webhook Header,Kiongozi wa Mtandao @@ -250,6 +258,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Inasisha {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Zima Ripoti DocType: Translation,Contributed Translation Doctype Name,Imechangiwa Jina la Doctype Jina +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Usanidi> Fomu ya Kubinafsisha DocType: PayPal Settings,Redirect To,Rejea Kwa DocType: Data Migration Mapping,Pull,Piga DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Jarida la Javascript: vivutio vya usafiri ['REPORTNAME'] = {} @@ -264,6 +273,7 @@ DocType: DocShare,Internal record of document shares,Rekodi ya ndani ya hisa za DocType: Energy Point Settings,Review Levels,Viwango vya Mapitio DocType: Workflow State,Comment,Maoni DocType: Data Migration Plan,Postprocess Method,Njia ya Utumaji +DocType: DocType Action,Action Type,Aina ya Kitendo apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Piga picha DocType: Assignment Rule,Round Robin,Mzunguko wa Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Unaweza kubadilisha nyaraka zilizowasilishwa kwa kufuta yao na kisha, kuzibadilisha." @@ -277,6 +287,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Hifadhi Kama DocType: Comment,Seen,Angalia apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Onyesha maelezo zaidi +DocType: Server Script,Before Submit,Kabla ya Kuwasilisha DocType: System Settings,Run scheduled jobs only if checked,Fanya ajira zilizopangwa tu ikiwa zimeangaliwa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,Itaonyeshwa tu ikiwa vichwa vya sehemu vinawezeshwa apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Sakinisha @@ -289,10 +300,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Kitufe cha Upatikanaji wa Dropbox apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Jina la uwanja mbaya <b>{0}</b> katika usanidi wa add_fetch wa hati maalum apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Chagua Anwani za Google kwa anwani ambayo inapaswa kusawazishwa. DocType: Web Page,Main Section (HTML),Sehemu kuu (HTML) +DocType: Scheduled Job Type,Annual,Kila mwaka DocType: Workflow State,headphones,vichwa vya sauti apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Neno la siri linahitajika au chagua Nywila ya Kusubiri DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,mfano replies@yourcomany.com. Jibu zote zitakuja kwenye kikasha hiki. DocType: Slack Webhook URL,Slack Webhook URL,Slack URL ya Mtandao +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Huamua mpangilio wa slaidi katika mchawi. Ikiwa slaidi haionyeshwa, kipaumbele kinapaswa kuweka 0." DocType: Data Migration Run,Current Mapping,Ramani ya Sasa apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Barua pepe na jina linalofaa apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Fanya viambatisho vyote kuwa vya faragha @@ -314,6 +327,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Hairuhu apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Rudisha upya kwa desfaults DocType: Workflow,Transition Rules,Kanuni za Mpito apps/frappe/frappe/core/doctype/report/report.js,Example:,Mfano: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Vizuizi DocType: Workflow,Defines workflow states and rules for a document.,Inafafanua hali za kazi na sheria kwa waraka. DocType: Workflow State,Filter,Futa apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Angalia Ingia la Kosa kwa habari zaidi: {0} @@ -325,6 +339,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Ayubu apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} wameingia: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Habari apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Haiwezi kuweka Ishara ya Kuwasilisha ikiwa haijawasilishwa DocType: Transaction Log,Row Index,Row Index DocType: Social Login Key,Facebook,Facebook @@ -343,7 +358,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Msaada wa kifungo DocType: Kanban Board Column,purple,zambarau DocType: About Us Settings,Team Members,Wanachama wa Timu +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Simamia kazi zilizopangwaiwa mara moja tu kwa siku kwa tovuti ambazo hazifanyi kazi. Default siku 4 ikiwa imewekwa kwa 0. DocType: Assignment Rule,System Manager,Meneja wa Mfumo +DocType: Scheduled Job Log,Scheduled Job,Kazi iliyopangwa DocType: Custom DocPerm,Permissions,Ruhusa apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks kwa ushirikiano wa ndani DocType: Dropbox Settings,Allow Dropbox Access,Ruhusu Dropbox Upatikanaji @@ -397,6 +414,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Scan DocType: Email Flag Queue,Email Flag Queue,Futa ya Barua pepe DocType: Access Log,Columns / Fields,Nguzo / Sehemu apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Majarida ya Fomu za Kuchapa +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Sehemu ya kazi ya Aggregate inahitajika kuunda chati ya dashibodi apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Haiwezi kutambua {0} wazi. Jaribu kitu kingine. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Maelezo yako yamewasilishwa apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Mtumiaji {0} hawezi kufutwa @@ -412,11 +430,12 @@ DocType: Property Setter,Field Name,Jina la shamba DocType: Assignment Rule,Assign To Users,Agiza Watumiaji apps/frappe/frappe/public/js/frappe/utils/utils.js,or,au apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,jina la moduli ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Endelea +DocType: Onboarding Slide,Continue,Endelea apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Ushirikiano wa Google umezimwa. DocType: Custom Field,Fieldname,Jina la shamba DocType: Workflow State,certificate,cheti apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Inathibitisha ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Jukumu lako kwenye {0} {1} limeondolewa apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Safu ya kwanza ya data lazima iwe wazi. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Onyesha matoleo yote apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Angalia Maoni @@ -426,11 +445,13 @@ DocType: User,Restrict IP,Punguza IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Dashibodi apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Haiwezi kutuma barua pepe kwa wakati huu apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalenda ya Google - Haikuweza kusasisha Tukio {0} katika Kalenda ya Google, nambari ya kosa {1}." +DocType: Notification Log,Email Content,Yaliyomo ya Barua pepe apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Tafuta au funga amri DocType: Activity Log,Timeline Name,Jina la Timeline DocType: Email Account,e.g. smtp.gmail.com,kwa mfano smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Ongeza Utawala Mpya DocType: Contact,Sales Master Manager,Meneja Mwalimu wa Mauzo +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Unahitaji kuwezesha JavaScript kwa programu yako kufanya kazi. DocType: User Permission,For Value,Kwa Thamani DocType: Event,Google Calendar ID,Kitambulisho cha Kalenda ya Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Moja Mwisho Hatua @@ -445,6 +466,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Shamba la kati la LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Inahamisha {0} kati ya {1} DocType: GCalendar Account,Allow GCalendar Access,Ruhusu Upatikanaji wa GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ni shamba la lazima +DocType: DocType,Documentation Link,Kiunga cha Nyaraka apps/frappe/frappe/templates/includes/login/login.js,Login token required,Ishara ya kuingia inahitajika apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Nafasi ya Mwezi: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Chagua vitu vingi vya orodha @@ -466,6 +488,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Futa URL DocType: Version,Table HTML,Jedwali HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Ongeza Wajumbe +DocType: Notification Log,Energy Point,Uhakika wa Nishati apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Matukio ijayo ya Leo DocType: Google Calendar,Push to Google Calendar,Bonyeza kwa Kalenda ya Google DocType: Notification Recipient,Email By Document Field,Barua pepe kwa Mfumo wa Hati @@ -481,12 +504,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Ondoka DocType: Currency,Fraction Units,Vipande vya Fraction apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} kutoka {1} hadi {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Andika kama Imefanyika DocType: Chat Message,Type,Weka DocType: Google Settings,OAuth Client ID,Kitambulisho cha Mteja wa OAuth DocType: Auto Repeat,Subject,Somo apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Rudi kwenye Desk DocType: Web Form,Amount Based On Field,Kiwango cha Msingi Msingi +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} haina toleo zilizofuatiliwa. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Mtumiaji ni lazima kwa Shiriki DocType: DocField,Hidden,Siri DocType: Web Form,Allow Incomplete Forms,Ruhusu Fomu zisizokwisha @@ -509,6 +532,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Tafadhali angalia barua pepe yako kwa uhakikisho apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold haiwezi kuwa mwisho wa fomu DocType: Communication,Bounced,Bounced +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ya DocType: Deleted Document,Deleted Name,Jina lililofutwa apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Mfumo na watumiaji wa tovuti DocType: Workflow Document State,Doc Status,Hali ya Hati @@ -519,6 +543,7 @@ DocType: Language,Language Code,Kanuni ya Lugha DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Kumbuka: Kwa barua pepe za msingi kwa backups zameshindwa zinatumwa. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Ongeza Filter apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS imetumwa kwa nambari zifuatazo: {0} +DocType: Notification Settings,Assignments,Kazi apps/frappe/frappe/utils/data.py,{0} and {1},{0} na {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Anza mazungumzo. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Daima uongeze kichwa cha "Rasimu" cha hati za uchapishaji @@ -527,6 +552,7 @@ DocType: Data Migration Run,Current Mapping Start,Sasa Ramani ya Mwanzo apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Barua imewekwa kama barua taka DocType: Comment,Website Manager,Meneja wa tovuti apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Pakia Pakia Imetumwa. Tafadhali jaribu tena. +DocType: Data Import Beta,Show Failed Logs,Onyesha Magogo Yaliyoshindwa apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Tafsiri apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Umechagua Rasimu au Nyaraka zilizopigwa apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Hati {0} imewekwa kwa hali {1} na {2} @@ -534,7 +560,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Nyaraka imesimama DocType: GSuite Templates,Destination ID,ID ya mahali DocType: Desktop Icon,List,Orodha DocType: Activity Log,Link Name,Jina la Kiungo +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Haujawahi DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,Kuweka Slide apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Password batili: DocType: Print Settings,Send document web view link in email,Tuma kiungo cha hati ya mtandao kwenye barua pepe apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Kabla @@ -595,6 +623,7 @@ DocType: Kanban Board Column,darkgrey,darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Imefanikiwa: {0} kwa {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Haiwezi kubadilisha maelezo ya mtumiaji katika demo. Tafadhali ingia akaunti mpya kwenye https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Kuteremsha +DocType: Dashboard Chart,Aggregate Function Based On,Kazi ya Aggregate Kulingana na apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Tafadhali duplicate hii ili ufanye mabadiliko apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Bonyeza Ingiza ili uhifadhi apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Kizazi cha PDF cha kushindwa kwa sababu ya viungo vya picha zilizovunjika @@ -608,7 +637,9 @@ DocType: Notification,Days Before,Siku Kabla apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Matukio ya kila siku yanapaswa kumaliza Siku ile ile. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Hariri ... DocType: Workflow State,volume-down,kiasi-chini +DocType: Onboarding Slide,Help Links,Viunga vya Msaada apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ufikiaji hairuhusiwi kutoka kwa Anwani hii ya IP +DocType: Notification Settings,Enable Email Notifications,Wezesha Arifa za Barua pepe apps/frappe/frappe/desk/reportview.py,No Tags,Hakuna Lebo DocType: Email Account,Send Notification to,Tuma Arifa kwa DocType: DocField,Collapsible,Haiwezekani @@ -637,6 +668,7 @@ DocType: Google Drive,Last Backup On,Hifadhi rudufu kumalizika DocType: Customize Form Field,Customize Form Field,Tengeneza Fomu ya Fomu DocType: Energy Point Rule,For Document Event,Kwa Hati ya Hati DocType: Website Settings,Chat Room Name,Jina la Chumba cha Ongea +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Haibadilishwa DocType: OAuth Client,Grant Type,Aina ya Ruzuku apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Angalia Nyaraka ambazo zinasomeka na Mtumiaji DocType: Deleted Document,Hub Sync ID,ID ya Usawazishaji wa Hub @@ -644,6 +676,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,tumi DocType: Auto Repeat,Quarterly,Jumatatu apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Barua pepe haijasanidi kwa akaunti hii, Unda moja?" DocType: User,Reset Password Key,Weka upya Neno la Nywila +DocType: Dashboard Chart,All Time,Muda wote apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Hali ya hati ya halali kwa {0} DocType: Email Account,Enable Auto Reply,Wezesha Auto Jibu apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Haionekani @@ -656,6 +689,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Ujumb DocType: Email Account,Notify if unreplied,Arifaza ikiwa haijatakiwa apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Scan Kanuni ya QR na uingize msimbo unaoonyeshwa. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Washa gridients +DocType: Scheduled Job Type,Hourly Long,Muda wa saa DocType: System Settings,Minimum Password Score,Kiwango cha chini cha Password DocType: DocType,Fields,Mashamba DocType: System Settings,Your organization name and address for the email footer.,Jina la shirika lako na anwani ya mchezaji wa barua pepe. @@ -663,11 +697,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Jedwali la apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup kamili! apps/frappe/frappe/config/desktop.py,Developer,Msanidi programu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Imeundwa +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Ili kuiwezesha kufuata maagizo kwenye kiunga kifuatacho: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} mfululizo {1} hawezi kuwa na URL zote na vitu vya mtoto apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Lazima kuwe na safu moja bora kwa jedwali zifuatazo: {0} DocType: Print Format,Default Print Language,Lugha ya kuchapa Default apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestors Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Mizizi {0} haiwezi kufutwa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Hakuna magogo yaliyoshindwa apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Hakuna maoni bado apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Tafadhali kuanzisha SMS kabla ya kuiweka kama njia ya uthibitisho, kupitia Mipangilio ya SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Wote DocType na Jina zinahitajika @@ -691,6 +727,7 @@ DocType: Website Settings,Footer Items,Vipindi vya vidogo apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menyu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Kila siku +DocType: Onboarding Slide,Max Count,Idadi ya Max apps/frappe/frappe/config/users_and_permissions.py,User Roles,Wajibu wa Mtumiaji DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Setter ya Mali inakabiliwa na hati ya kawaida ya DocType au Field apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Haiwezi Kurekebisha: Kiungo cha Haki / Muda. @@ -709,6 +746,7 @@ DocType: Footer Item,"target = ""_blank""",lengo = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Jeshi DocType: Data Import Beta,Import File,Ingiza Picha +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Kosa la Kiolezo apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Safu <b>{0}</b> tayari iko. DocType: ToDo,High,Juu apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Tukio Jipya @@ -724,6 +762,7 @@ DocType: Web Form Field,Show in filter,Onyesha kwenye kichujio DocType: Address,Daman and Diu,Daman na Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Mradi DocType: Address,Personal,Binafsi +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Mipangilio Mbichi ya Uchapishaji ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Tazama. apps/frappe/frappe/config/settings.py,Bulk Rename,Wingi Bunda DocType: Email Queue,Show as cc,Onyesha kama cc @@ -733,6 +772,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Chukua Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Maelezo ya utangulizi kwa Ukurasa wa Wasiliana Nasi DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Inaghairi hati DocType: User,Send Notifications for Email threads,Tuma Arifa za nyuzi za barua pepe apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Sio katika Mfumo wa Msanidi Programu @@ -754,10 +794,12 @@ DocType: Energy Point Rule,User Field,Sehemu ya Watumiaji DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Push Futa apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} tayari hakujiandikisha kwa {1} {2} +DocType: Scheduled Job Type,Stopped,Imesimamishwa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Haikuondoa apps/frappe/frappe/desk/like.py,Liked,Imependekezwa apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Tuma Sasa apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","DocType ya kawaida haiwezi kuwa na muundo wa kuchapisha chaguo-msingi, tumia Customize Form" +DocType: Server Script,Allow Guest,Ruhusu Mgeni DocType: Report,Query,Swala DocType: Customize Form,Sort Order,Panga Utaratibu apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'Katika Orodha ya Orodha' hairuhusiwi kwa aina {0} mfululizo {1} @@ -779,10 +821,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Njia mbili za uthibitishaji apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Kwanza kuweka jina na uhifadhi rekodi. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,Rekodi 5 +DocType: DocType Link,Link Fieldname,Unganisha jina la uwanja apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Imeshirikiwa na {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Jiondoe DocType: View Log,Reference Name,Jina la Kumbukumbu apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Badilisha Mtumiaji +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Kwanza apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Sasisha Tafsiri DocType: Error Snapshot,Exception,Uzoefu DocType: Email Account,Use IMAP,Tumia IMAP @@ -796,6 +840,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Kanuni zinazoelezea mpito wa hali katika kazi ya kazi. DocType: File,Folder,Folda DocType: Website Route Meta,Website Route Meta,Njia ya Wavuti +DocType: Onboarding Slide Field,Onboarding Slide Field,Shamba la Slide la Boti DocType: DocField,Index,Nambari DocType: Email Group,Newsletter Manager,Meneja wa jarida apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Chaguo 1 @@ -822,7 +867,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Wek apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Sanidi chati DocType: User,Last IP,IP ya mwisho apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Tafadhali ongeza suala la barua pepe yako -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Hati mpya {0} imeshirikiwa nawe {1}. DocType: Data Migration Connector,Data Migration Connector,Connector Connection Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ilibadilishwa {1} DocType: Email Account,Track Email Status,Fuatilia Hali ya barua pepe @@ -874,6 +918,7 @@ DocType: Email Account,Default Outgoing,Default Inatoka DocType: Workflow State,play,kucheza apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Bofya kwenye kiungo hapa chini ili kukamilisha usajili wako na kuweka nenosiri mpya apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Haikuongeza +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} walipata alama za {1} za {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Hakuna Hesabu za Barua pepe zilizowekwa DocType: S3 Backup Settings,eu-west-2,eu-magharibi-2 DocType: Contact Us Settings,Contact Us Settings,Wasiliana Nasi Mipangilio @@ -881,6 +926,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Inatafuta DocType: Workflow State,text-width,upana wa maandishi apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Kiambatisho cha Maximum Limit kwa rekodi hii imefikia. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Tafuta kwa jina la faili au kiendelezi +DocType: Onboarding Slide,Slide Title,Kichwa cha Slide DocType: Notification,View Properties (via Customize Form),Tazama Mali (kupitia Fomu ya Customize) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Bonyeza kwenye faili ili uchague. DocType: Note Seen By,Note Seen By,Angalia Kuonekana Kwa @@ -907,13 +953,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Shiriki URL DocType: System Settings,Allow Consecutive Login Attempts ,Ruhusu Majaribio ya Ingia ya Kuzingatia apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Hitilafu imetokea wakati wa mchakato wa malipo. Tafadhali wasiliana nasi. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Ikiwa Aina ya slaidi imeundwa au Mipangilio inapaswa kuwe na njia ya 'kuunda_onboarding_docs katika {Ref_doctype}. Faili yapy itakamilika baada ya slaidi kukamilika. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} siku zilizopita DocType: Email Account,Awaiting Password,Inasubiri nenosiri DocType: Address,Address Line 1,Anwani ya Anwani 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Si Wazazi DocType: Contact,Company Name,jina la kampuni DocType: Custom DocPerm,Role,Wajibu -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Mipangilio ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,kwa kivinjari chako apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Rekodi @@ -973,6 +1019,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Fuatilia ikiwa barua pepe yako imefunguliwa na mpokeaji. <br> Kumbuka: Ikiwa unatuma kwa wapokeaji wengi, hata kama mpokeaji 1 anaisoma barua pepe, itachukuliwa kuwa "Ilifunguliwa"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Maadili Yanayopoteza Inahitajika apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Ruhusu Ufikiaji wa Anwani za Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Imezuiliwa DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Andika kama haijasomwa DocType: Activity Log,Operation,Uendeshaji @@ -1025,6 +1072,7 @@ DocType: Web Form,Allow Print,Ruhusu Print DocType: Communication,Clicked,Imebofya apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Ondoa wazi apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Hakuna kibali cha '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Tafadhali seti Akaunti ya barua pepe ya usanidi kutoka kwa Usanidi> Barua pepe> Akaunti ya barua pepe apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Imepangwa kutuma DocType: DocType,Track Seen,Kufuatilia Kuonekana DocType: Dropbox Settings,File Backup,Funga Backup @@ -1033,12 +1081,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Hakuna {0} ku apps/frappe/frappe/config/customization.py,Add custom forms.,Ongeza fomu za desturi. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} katika {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,iliwasilisha hati hii -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sanidi> Ruhusa za Mtumiaji apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Mfumo hutoa majukumu mengi ya awali. Unaweza kuongeza majukumu mapya ya kuweka vibali vyema. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Jina la Trigger -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domains +DocType: Onboarding Slide,Domains,Domains DocType: Blog Category,Blog Category,Jamii ya Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Haiwezi ramani kwa sababu hali hii inashindwa: DocType: Role Permission for Page and Report,Roles HTML,Kazi HTML @@ -1078,7 +1125,6 @@ DocType: Assignment Rule Day,Saturday,Jumamosi DocType: User,Represents a User in the system.,Inaonyesha mtumiaji katika mfumo. DocType: List View Setting,Disable Auto Refresh,Lemaza Usasishaji Auto DocType: Comment,Label,Lebo -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Kazi {0}, ambayo umepewa {1}, imefungwa." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Tafadhali funga dirisha hili DocType: Print Format,Print Format Type,Aina ya Aina ya Kuchapa DocType: Newsletter,A Lead with this Email Address should exist,Kiongozi na Anwani hii ya barua pepe inapaswa kuwepo @@ -1095,6 +1141,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Mipangilio ya SMTP kwa apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,chagua DocType: Data Export,Filter List,Orodha ya Filter DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Ujumbe wa Jibu la Auto DocType: Data Migration Mapping,Condition,Hali apps/frappe/frappe/utils/data.py,{0} hours ago,{0} masaa iliyopita @@ -1113,12 +1160,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Msaidizi wa Msingi wa Maarifa DocType: Communication,Sent Read Receipt,Imetumwa Receipt DocType: Email Queue,Unsubscribe Method,Ondoa Njia +DocType: Onboarding Slide,Add More Button,Ongeza Kitufe Zaidi DocType: GSuite Templates,Related DocType,Ilihusiana na DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Badilisha ili kuongeza maudhui apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Chagua Lugha apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Maelezo ya Kadi apps/frappe/frappe/__init__.py,No permission for {0},Hakuna ruhusa kwa {0} DocType: DocType,Advanced,Kikubwa +DocType: Onboarding Slide,Slide Image Source,Chanzo cha Picha cha Slide apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,Inaonekana Muhimu wa API au Siri ya API ni sahihi !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Rejea: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Bi @@ -1135,6 +1184,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mwalimu DocType: DocType,User Cannot Create,Mtumiaji hawezi kuunda apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Imefanikiwa apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Upatikanaji wa Dropbox umekubaliwa! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Je! Una uhakika unataka kuunganisha {0} na {1}? DocType: Customize Form,Enter Form Type,Ingiza Aina ya Fomu DocType: Google Drive,Authorize Google Drive Access,Idhini Upataji wa Hifadhi ya Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Jina la Bodi la Kanban lililopoteza @@ -1144,7 +1194,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Kuruhusu DocType, DocType. Kuwa mwangalifu!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Fomu za Customized for Printing, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jumla ya {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Imesasishwa hadi Toleo Jipya DocType: Custom Field,Depends On,Inategemea na DocType: Kanban Board Column,Green,Kijani DocType: Custom DocPerm,Additional Permissions,Vipengee vya ziada @@ -1172,6 +1221,7 @@ DocType: Energy Point Log,Social,Kijamii apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Kalenda ya Google - Haikuweza kuunda kalenda ya {0}, nambari ya makosa {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Rimu ya Kuhariri DocType: Workflow Action Master,Workflow Action Master,Kazi ya Kazi ya Workflow +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Futa zote DocType: Custom Field,Field Type,Aina ya Shamba apps/frappe/frappe/utils/data.py,only.,tu. DocType: Route History,Route History,Historia ya Njia @@ -1206,11 +1256,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Umesahau nywila? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,Kitambulisho apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Hitilafu ya Seva +DocType: Server Script,After Delete,Baada ya Futa apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Tazama ripoti zote zilizopita. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Id Idisho inahitajika DocType: Website Slideshow,Website Slideshow,Tovuti ya Slideshow apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Hakuna Data DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Kiungo ambacho ni ukurasa wa nyumbani wa wavuti. Viungo vya kawaida (index, kuingia, bidhaa, blogu, kuhusu, wasiliana)" +DocType: Server Script,After Submit,Baada ya Kuwasilisha apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Uthibitisho umeshindwa wakati wa kupokea barua pepe kutoka kwa Akaunti ya barua pepe {0}. Ujumbe kutoka kwa seva: {1} DocType: User,Banner Image,Picha ya Banner DocType: Custom Field,Custom Field,Field Field @@ -1250,15 +1302,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Ikiwa mtumiaji ana jukumu lolote la kuchunguza, basi mtumiaji huwa "Mtumiaji wa Mfumo". "Mtumiaji wa Mfumo" ana upatikanaji wa desktop" DocType: System Settings,Date and Number Format,Tarehe na Nambari ya Nambari apps/frappe/frappe/model/document.py,one of,moja ya -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Usanidi> Fomu ya Kubinafsisha apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kuangalia wakati mmoja apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Onyesha Vitambulisho DocType: DocField,HTML Editor,Mhariri wa HTML 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","Ikiwa Tumia Ruhusa ya Mtumiaji Mgumu ni Cheti na Ruhusa ya Watumiaji inatajwa kwa DocType kwa Mtumiaji, basi nyaraka zote ambazo thamani ya kiungo hazipo tupu, hazitaonyeshwa kwa Mtumiaji" DocType: Address,Billing,Ulipaji DocType: Email Queue,Not Sent,Haikutumwa -DocType: Web Form,Actions,Vitendo -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sanidi> Mtumiaji +DocType: DocType,Actions,Vitendo DocType: Workflow State,align-justify,onyesha-hakikisha DocType: User,Middle Name (Optional),Jina la Kati (Hiari) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Hairuhusiwi @@ -1273,6 +1323,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Hakuna Mato DocType: System Settings,Security,Usalama apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Imepangwa kutuma kwa {0} wapokeaji apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kata +DocType: Server Script,After Save,Baada ya Kuokoa apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},jina kutoka {0} hadi {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} kati ya {1} ({2} safu na watoto) DocType: Currency,**Currency** Master,** Fedha ** Mwalimu @@ -1299,15 +1350,18 @@ DocType: Prepared Report,Filter Values,Fanya Vigezo DocType: Communication,User Tags,Tags ya Mtumiaji DocType: Data Migration Run,Fail,Inashindwa DocType: Workflow State,download-alt,shusha-alt +DocType: Scheduled Job Type,Last Execution,Utekelezaji wa Mwisho DocType: Data Migration Run,Pull Failed,Kuvuta Imeshindwa apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Onyesha / Ficha Kadi DocType: Communication,Feedback Request,Ombi la Maoni apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Weka Data kutoka kwa faili za CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Masuala yafuatayo yanakosa: +DocType: Notification Log,From User,Kutoka kwa Mtumiaji apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Kufuta {0} DocType: Web Page,Main Section,Sehemu kuu DocType: Page,Icon,Icon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Jambo: Weka alama, namba na barua kuu katika nenosiri" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Sanidi arifa za kutaja, mgawo, nukta za nishati na zaidi." DocType: DocField,Allow in Quick Entry,Ruhusu Kuingia kwa haraka apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1339,7 +1393,6 @@ DocType: Website Theme,Theme URL,URL ya mada DocType: Customize Form,Sort Field,Shamba la Aina DocType: Razorpay Settings,Razorpay Settings,Mipangilio ya Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Badilisha Filter -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Ongeza Zaidi DocType: System Settings,Session Expiry Mobile,Mwisho wa Kipindi Mkono apps/frappe/frappe/utils/password.py,Incorrect User or Password,Mtumiaji asiye sahihi au Nenosiri apps/frappe/frappe/templates/includes/search_box.html,Search results for,Matokeo ya Utafutaji @@ -1355,8 +1408,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Utawala wa Uhakika wa Nishati DocType: Communication,Delayed,Imechelewa apps/frappe/frappe/config/settings.py,List of backups available for download,Orodha ya salama zinazopatikana kwa kupakuliwa +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Jaribu Uingizaji mpya wa Takwimu apps/frappe/frappe/www/login.html,Sign up,Ingia apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Row {0}: Si kuruhusiwa kuzuia Mandhari kwa mashamba ya kawaida +DocType: Webhook,Enable Security,Washa Usalama apps/frappe/frappe/config/customization.py,Dashboards,Dawati DocType: Test Runner,Output,Pato DocType: Milestone,Track Field,Uga wa Kufuatilia @@ -1364,6 +1419,7 @@ DocType: Notification,Set Property After Alert,Weka Mali Baada ya Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Ongeza mashamba kwa fomu. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Inaonekana kama kitu kibaya na udhibiti wa Paypal wa tovuti hii. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Ongeza Mapitio +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} alikupa kazi mpya {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Saizi ya herufi (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Hati za kawaida za Hati pekee ndizo zinazoruhusiwa kugeuzwa kutoka Fomu ya Kubinafsisha. DocType: Email Account,Sendgrid,Sendgrid @@ -1375,8 +1431,10 @@ DocType: Portal Menu Item,Portal Menu Item,Kipengele cha Menyu ya Portal apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Weka vichungi DocType: Contact Us Settings,Email ID,Kitambulisho cha barua pepe DocType: Energy Point Rule,Multiplier Field,Sehemu ya Kuzidisha +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Haikuweza kuunda agizo la Razorpay. Tafadhali wasiliana na Msimamizi DocType: Dashboard Chart,Time Interval,Muda wa muda DocType: Activity Log,Keep track of all update feeds,Weka wimbo wa feeds zote za sasisho +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} alishiriki waraka {1} {2} na wewe DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,Orodha ya rasilimali ambazo Programu ya Mteja itastahili baada ya mtumiaji kuruhusu. <br> mfano mradi DocType: Translation,Translated Text,Nakala iliyotafsiriwa DocType: Contact Us Settings,Query Options,Chaguo za Maswali @@ -1395,6 +1453,7 @@ DocType: DefaultValue,Key,Muhimu DocType: Address,Contacts,Mawasiliano DocType: System Settings,Setup Complete,Kuweka Kukamilisha apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ripoti ya hisa zote za hati +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Kiolezo cha kuingiza kinapaswa kuwa cha aina .csv, .xlsx au .xls" apps/frappe/frappe/www/update-password.html,New Password,Nywila mpya apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Futa {0} haipo apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Samahani! Huwezi kufuta maoni yaliyozalishwa na auto @@ -1410,6 +1469,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Run DocType: Blog Post,Content (HTML),Yaliyomo (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Kuweka kwa DocType: Personal Data Download Request,User Name,Jina la Mtumiaji DocType: Workflow State,minus-sign,ishara ya chini apps/frappe/frappe/public/js/frappe/request.js,Not Found,Haipatikani @@ -1417,11 +1477,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Hakuna {0} ruhusa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Tuma Ruhusa ya Desturi apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Hakuna vitu vilivyopatikana. DocType: Data Export,Fields Multicheck,Mashamba Wengi +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Kamilisha DocType: Activity Log,Login,Ingia DocType: Web Form,Payments,Malipo apps/frappe/frappe/www/qrcode.html,Hi {0},Hi {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Ushirikiano wa Hifadhi ya Google. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} alibadilisha hoja zako kwenye {1} {2} DocType: System Settings,Enable Scheduled Jobs,Wezesha Kazi zilizopangwa apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Maelezo: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Haikufanya kazi @@ -1446,6 +1506,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Matuki apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Hitilafu ya Ruhusa apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Jina la {0} haliwezi kuwa {1} DocType: User Permission,Applicable For,Inafaa Kwa +DocType: Dashboard Chart,From Date,Kutoka Tarehe apps/frappe/frappe/core/doctype/version/version_view.html,Success,Mafanikio apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Kipindi kimeisha DocType: Kanban Board Column,Kanban Board Column,Kanama ya Bodi ya Bodi @@ -1457,7 +1518,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Kuf apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; haruhusiwi kwa masharti DocType: Async Task,Async Task,Kazi ya Async DocType: Workflow State,picture,picha -apps/frappe/frappe/www/complete_signup.html,Complete,Jaza +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Jaza DocType: DocType,Image Field,Shamba la Picha DocType: Print Format,Custom HTML Help,Msaada wa HTML wa kawaida DocType: LDAP Settings,Default Role on Creation,Jukumu Mbadala la Uumbaji @@ -1465,6 +1526,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Hali inayofuata DocType: User,Block Modules,Piga Moduli DocType: Print Format,Custom CSS,Desturi CSS +DocType: Energy Point Rule,Apply Only Once,Omba Mara Moja tu apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Ongeza maoni DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Alipuuza: {0} kwa {1} @@ -1476,6 +1538,7 @@ DocType: Email Account,Default Incoming,Incoming Incoming DocType: Workflow State,repeat,kurudia DocType: Website Settings,Banner,Bendera apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Thamani lazima iwe moja ya {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Ghairi Hati zote DocType: Role,"If disabled, this role will be removed from all users.","Ikiwa imezimwa, jukumu hili litaondolewa kutoka kwa watumiaji wote." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Nenda kwenye orodha ya {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Msaada kwenye Utafutaji @@ -1484,6 +1547,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Imeandikish apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Kurudia Kiotomatiki kwa hati hii kumezimwa. DocType: DocType,Hide Copy,Ficha Nakala apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Futa majukumu yote +DocType: Server Script,Before Save,Kabla ya Hifadhi apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} lazima iwe ya kipekee apps/frappe/frappe/model/base_document.py,Row,Row apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & Kigezo cha Barua pepe" @@ -1494,7 +1558,6 @@ DocType: Chat Profile,Offline,Hifadhi ya mbali apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Imeingizwa vizuri {0} DocType: User,API Key,Muhimu wa API DocType: Email Account,Send unsubscribe message in email,Tuma ujumbe usiojiandikisha kwa barua pepe -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Badilisha Title apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Jina la uwanja ambalo litakuwa DocType kwa uwanja huu wa kiungo. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Nyaraka zilizopewa kwako na wewe. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Unaweza pia kunakili-kubandika hii @@ -1526,8 +1589,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Weka picha DocType: Workflow State,list-alt,orodha ya juu apps/frappe/frappe/www/update-password.html,Password Updated,Nenosiri limehifadhiwa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sanidi> Ruhusa za Mtumiaji apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Hatua za kuthibitisha kuingia kwako apps/frappe/frappe/utils/password.py,Password not found,Nenosiri haipatikani +DocType: Webhook,Webhook Secret,Siri ya Webhook DocType: Data Migration Mapping,Page Length,Urefu wa Ukurasa DocType: Email Queue,Expose Recipients,Wapokeaji Waonyesho apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pendekeza kuwa ni lazima kwa barua pepe zinazoingia @@ -1555,6 +1620,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Mfumo DocType: Web Form,Max Attachment Size (in MB),Ukubwa wa Kiambatisho cha Max (katika MB) apps/frappe/frappe/www/login.html,Have an account? Login,"Je, una akaunti? Ingia" +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Badilisha Mipangilio ... DocType: Workflow State,arrow-down,mshale-chini apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Njia {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Mtumiaji haruhusiwi kufuta {0}: {1} @@ -1588,11 +1654,12 @@ DocType: Workflow State,hand-down,mkono-chini apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Hakuna uwanja unaopatikana ambao unaweza kutumika kama safu ya Kanban. Tumia Fomu ya Kubinafsisha ili kuongeza Kitanda cha Aina ya "Chagua". DocType: Address,GST State,Hali ya GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Haiwezi kuweka Cancel bila Wasilisha +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Mtumiaji ({0}) DocType: Website Theme,Theme,Mandhari DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Wekeza tena Kanuni ya URI ya Bound To Auth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Fungua Msaada DocType: DocType,Is Submittable,Inawasilishwa -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Kuelezea Mpya +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Kuelezea Mpya apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Hakuna Anwani mpya za Google zilizosawazishwa. DocType: File,Uploaded To Google Drive,Imewekwa kwenye Hifadhi ya Google apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Thamani kwa shamba hundi inaweza kuwa 0 au 1 @@ -1604,7 +1671,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Kikasha DocType: Kanban Board Column,Red,Nyekundu DocType: Workflow State,Tag,Andika -DocType: Custom Script,Script,Hati +DocType: Report,Script,Hati apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Hati haiwezi kuokolewa. DocType: Energy Point Rule,Maximum Points,Vidokezo vya kiwango cha juu apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mipangilio Yangu @@ -1633,9 +1700,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} vidokezo vya kuthamini kwa {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Majukumu yanaweza kuweka kwa watumiaji kutoka kwenye ukurasa wa Mtumiaji. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Ongeza Maoni +DocType: Dashboard Chart,Select Date Range,Chagua Rangi ya Tarehe DocType: DocField,Mandatory,Inahitajika apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module ya Kuagiza +DocType: Scheduled Job Type,Monthly Long,Urefu wa Mwezi apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Hakuna kuweka ruhusa ya msingi +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Tuma barua pepe kwa {0} ili kuiunganisha hapa apps/frappe/frappe/utils/backups.py,Download link for your backup will be emailed on the following email address: {0},Pakua kiungo kwa salama yako itatumwa barua pepe kwenye anwani ya barua pepe ifuatayo: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Meaning of Submit, Cancel, Amend","Maana ya Kuwasilisha, kufuta, Kurekebisha" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Kufanya @@ -1644,7 +1714,6 @@ DocType: Milestone Tracker,Track milestones for any document,Fuatilia hatua muhi DocType: Social Login Key,Identity Details,Maelezo ya Identity apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Mpito wa hali ya Workflow hairuhusiwi kutoka {0} hadi {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Onyesha Dashibodi -apps/frappe/frappe/desk/form/assign_to.py,New Message,Ujumbe mpya DocType: File,Preview HTML,Angalia HTML DocType: Desktop Icon,query-report,ripoti-swala DocType: Data Import Beta,Template Warnings,Onyo la Kiolezo @@ -1655,18 +1724,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Imeunganishw apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Badilisha Mipangilio ya Ripoti ya Barua pepe ya Maji DocType: Chat Room,Message Count,Hesabu ya Ujumbe DocType: Workflow State,book,kitabu +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} imeunganishwa na hati zifuatazo zilizowasilishwa: {2} DocType: Communication,Read by Recipient,Soma na Mpokeaji DocType: Website Settings,Landing Page,Ukurasa wa Utoaji apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Hitilafu katika Hati ya Desturi apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Jina apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Hakuna vibali vinavyowekwa kwa vigezo hivi. DocType: Auto Email Report,Auto Email Report,Ripoti ya barua pepe ya barua pepe +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Hati mpya Imeshirikiwa apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Futa maoni? DocType: Address Template,This format is used if country specific format is not found,Fomu hii inatumiwa ikiwa muundo maalum wa nchi haupatikani DocType: System Settings,Allow Login using Mobile Number,Ruhusu Ingia kwa kutumia Nambari ya Mkono apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,Huna idhini ya kutosha ya kufikia rasilimali hii. Tafadhali wasiliana na meneja wako kupata upatikanaji. DocType: Custom Field,Custom,Desturi DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ikiwa imewezeshwa, watumiaji wanaoingia kutoka kwenye Anwani ya IP ya Vikwazo, hawataongozwa kwa mbili Factor Auth" +DocType: Server Script,After Cancel,Baada ya Kufuta DocType: Auto Repeat,Get Contacts,Pata Mawasiliano apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Ujumbe uliowekwa chini ya {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kuruka safu isiyo na kichwa @@ -1677,6 +1749,7 @@ DocType: User,Login After,Ingia Baada DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Uchapishaji DocType: Workflow State,thumbs-up,gumba juu +DocType: Notification Log,Mention,Sema DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fonts apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Usahihi lazima iwe kati ya 1 na 6 @@ -1684,7 +1757,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,na apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ripoti hii ilizalishwa kwenye {0} DocType: Error Snapshot,Frames,Muafaka -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Kazi +DocType: Notification Log,Assignment,Kazi DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Kiungo cha picha DocType: Auto Email Report,Report Filters,Futa Filters @@ -1701,7 +1774,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Imeshindwa kurekebisha tukio apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Nambari ya uthibitisho imetumwa kwa anwani yako ya barua pepe iliyosajiliwa. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Wamepigwa +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Lengo Lako apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filter lazima iwe na maadili 4 (doctype, jina la uwanja, operator, thamani): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Hakuna Jina Iliyoainishwa kwa {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Tuma Sheria ya Agizo apps/frappe/frappe/utils/bot.py,show,onyesha apps/frappe/frappe/utils/data.py,Invalid field name {0},Jina la uwanja batili {0} @@ -1711,7 +1786,6 @@ DocType: Workflow State,text-height,urefu wa maandishi DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mpangilio wa Mpango wa Uhamiaji wa Data apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Kuanza Frappé ... DocType: Web Form Field,Max Length,Urefu wa Max -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Kwa {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,alama ya ramani apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Tuma Suala @@ -1747,6 +1821,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Ukurasa haukupo au kuhamis apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Maoni DocType: DocType,Route,Njia apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Mipangilio ya malango ya Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ilipata nafasi ya {1} ya {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Tengeneza picha zilizounganishwa kutoka kwa hati DocType: Chat Room,Name,Jina DocType: Contact Us Settings,Skype,Skype @@ -1757,7 +1832,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Fungua Kiung apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Lugha yako DocType: Dashboard Chart,Average,Wastani apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Ongeza Mstari -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printa apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Swala lazima iwe SELECT DocType: Auto Repeat,Completed,Imekamilishwa @@ -1817,6 +1891,7 @@ DocType: GCalendar Account,Next Sync Token,Ishara ya Usawazishaji ijayo DocType: Energy Point Settings,Energy Point Settings,Mipangilio ya Uhakika wa Nishati DocType: Async Task,Succeeded,Imefanikiwa apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Mashamba ya lazima inahitajika {0} +DocType: Onboarding Slide Field,Align,Panga apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Rudisha Ruhusa kwa {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Watumiaji na Ruhusa DocType: S3 Backup Settings,S3 Backup Settings,S3 Mipangilio ya Backup @@ -1833,7 +1908,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Jina mpya la muundo wa Printa apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Bonyeza kwenye kiunga hapa chini kupitisha ombi DocType: Workflow State,align-left,salama-kushoto +DocType: Onboarding Slide,Action Settings,Mipangilio ya Kitendo DocType: User,Defaults,Hifadhi +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Kwa kulinganisha, tumia> 5, <10 au = 324. Kwa safu, tumia 5:10 (kwa maadili kati ya 5 & 10)." DocType: Energy Point Log,Revert Of,Rejea ya apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unganisha na zilizopo DocType: User,Birth Date,Tarehe ya kuzaliwa @@ -1888,6 +1965,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,Mabadiliko ya Thamani DocType: Google Contacts,Authorize Google Contacts Access,Idhini Upataji wa Anwani za Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Inaonyesha mashamba ya Numeric tu kutoka Ripoti +apps/frappe/frappe/utils/data.py,1 week ago,Wiki 1 iliyopita DocType: Data Import Beta,Import Type,Aina ya kuagiza DocType: Access Log,HTML Page,Ukurasa wa HTML DocType: Address,Subsidiary,Msaidizi @@ -1897,7 +1975,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Kwa kichwa cha Barua apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Seva ya barua pepe isiyojitokeza au Port DocType: Custom DocPerm,Write,Andika -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Msimamizi tu aliruhusiwa kuunda Ripoti ya Maswala / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Inasasisha DocType: Data Import Beta,Preview,Angalia apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Shamba "thamani" ni lazima. Tafadhali taja thamani ya kutafishwa @@ -1907,6 +1984,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Paribisha DocType: Data Migration Run,Started,Ilianza apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Mtumiaji {0} hana ufikiaji wa hati hii DocType: Data Migration Run,End Time,Muda wa Mwisho +DocType: Dashboard Chart,Group By Based On,Kikundi Kwa Kulingana na apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Chagua Vifungo apps/frappe/frappe/model/naming.py, for {0},kwa {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Huruhusiwi kuchapisha hati hii @@ -1948,6 +2026,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Thibitisha DocType: Workflow Document State,Update Field,Sasisha Field DocType: Chat Profile,Enable Chat,Wezesha Chat DocType: LDAP Settings,Base Distinguished Name (DN),Jina la msingi la msingi (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Acha mazungumzo haya apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Chaguo ambazo haziwekwa kwenye uwanja wa kiungo {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Foleni / mfanyakazi @@ -2014,12 +2093,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Ingia haruhusiwi kwa wakati huu DocType: Data Migration Run,Current Mapping Action,Hatua ya Sasa ya Ramani DocType: Dashboard Chart Source,Source Name,Jina la Chanzo -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Hakuna akaunti ya barua pepe inayohusiana na Mtumiaji. Tafadhali ongeza akaunti chini ya Mtumiaji> Kikasha cha barua pepe. DocType: Email Account,Email Sync Option,Option Sync Option apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Row No DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,Imewekwa DocType: Contact Us Settings,Introduction,Utangulizi +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Je! Unahitaji Msaada? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Bomba Ulimwenguni apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Ikifuatiwa na DocType: LDAP Settings,LDAP Email Field,Anwani ya Barua pepe ya LDAP @@ -2029,7 +2108,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Tayari kw DocType: User Email,Enable Outgoing,Wezesha Kuondoka DocType: Address,Fax,Faksi apps/frappe/frappe/config/customization.py,Custom Tags,Tags Custom -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaunti ya barua pepe sio kusanidi. Tafadhali unda Akaunti mpya ya Barua pepe kutoka kwa Kusanidi> Barua pepe> Akaunti ya barua pepe DocType: Comment,Submitted,Iliwasilishwa DocType: Contact,Pulled from Google Contacts,Iliyohamishwa kutoka Anwani za Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Katika Ombi Sahihi @@ -2050,9 +2128,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Folda ya Ny apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Nipatie DocType: DocField,Dynamic Link,Kiungo cha Nguvu apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Bonyeza kitufe cha Alt ili kusababisha njia za mkato za ziada kwenye Menyu na Upangaji wa pembe +DocType: Dashboard Chart,To Date,Mpaka leo DocType: List View Setting,List View Setting,Kuweka kwa Tazama apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Onyesha ajira imeshindwa -DocType: Event,Details,Maelezo +DocType: Scheduled Job Log,Details,Maelezo DocType: Property Setter,DocType or Field,DocType au Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ulifuta hati hii apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Rangi ya Msingi @@ -2060,7 +2139,6 @@ DocType: Communication,Soft-Bounced,Bounced DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Ikiwa imewezeshwa, watumiaji wote wanaweza kuingia kwenye Anwani yoyote ya IP kutumia Two Factor Auth. Hii pia inaweza kuweka kwa watumiaji maalum katika Ukurasa wa Mtumiaji" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Inaonekana Muhimu Unaochapishwa au Muhimu wa Siri ni sahihi !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Msaada wa haraka wa Kuweka vibali -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype ya Wasilisha Matangazo apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Onyesha tena apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,Barua imehamishwa kwenye takataka DocType: Report,Report Builder,Mjenzi wa Ripoti @@ -2075,6 +2153,7 @@ DocType: Workflow State,Upload,Pakia DocType: User Permission,Advanced Control,Udhibiti wa Juu DocType: System Settings,Date Format,Format ya tarehe apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Haijachapishwa +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Hakuna Kiolezo cha anwani default kilichopatikana. Tafadhali unda mpya kutoka kwa Kusanidi> Kuchapa na Kuweka alama> Kiolezo cha Anwani. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Hatua za uendeshaji wa kazi (kwa mfano, Thibitisha, Futa)." DocType: Data Import,Skip rows with errors,Ruka safu kwa makosa DocType: Workflow State,flag,bendera @@ -2084,7 +2163,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Nyar apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Rukia shamba DocType: Contact Us Settings,Forward To Email Address,Kwenda Kwa Anwani ya barua pepe DocType: Contact Phone,Is Primary Phone,Simu ya Msingi -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Tuma barua pepe kwa {0} ili kuiunganisha hapa. DocType: Auto Email Report,Weekdays,Siku za wiki apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Rekodi za {0} zitahamishwa apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Shamba la kichwa lazima iwe jina la shamba la halali @@ -2092,7 +2170,7 @@ DocType: Post Comment,Post Comment,Chapisha maoni apps/frappe/frappe/config/core.py,Documents,Nyaraka apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Skuli ya shughuli na DocType: Social Login Key,Custom Base URL,URL ya msingi ya msingi -DocType: Email Flag Queue,Is Completed,Imekamilishwa +DocType: Onboarding Slide,Is Completed,Imekamilishwa apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Pata Mashamba apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Badilisha Profaili DocType: Kanban Board Column,Archived,Imehifadhiwa @@ -2103,11 +2181,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",Shamba hii itaonekana tu kama jina la uwanja linalotafsiriwa hapa lina thamani OR LA sheria ni za kweli (mifano): myfield eval: doc.myfield == 'Thamani yangu' eval: doc.age> 18 DocType: Social Login Key,Office 365,Ofisi 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Leo +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Leo apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Mara baada ya kuweka hii, watumiaji wataweza kufikia nyaraka (kwa mfano Blog post) ambako kiungo hipo (kwa mfano Blogger)." DocType: Data Import Beta,Submit After Import,Tuma baada ya Kuingiza DocType: Error Log,Log of Scheduler Errors,Msajili wa Makosa ya Mpangilio DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Kiunga cha Msaada wa Slide DocType: OAuth Client,App Client Secret,Siri ya Mteja wa Programu apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Kuwasilisha apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Mzazi ni jina la hati ambayo data itapata kuongezwa. @@ -2115,7 +2194,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,JINSI YA UPANDA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,HTML ya kawaida apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Ingiza jina la folda -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Hakuna Kiolezo cha anwani default kilichopatikana. Tafadhali unda mpya kutoka kwa Kusanidi> Kuchapa na Kuweka alama> Kiolezo cha Anwani. apps/frappe/frappe/auth.py,Unknown User,Mtumiaji asiyejulikana apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Chagua Shauku DocType: Comment,Deleted,Imefutwa @@ -2131,7 +2209,7 @@ DocType: Chat Token,Chat Token,Ishara ya kuzungumza apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Unda Chati apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Usiingize -DocType: Web Page,Center,Kituo +DocType: Onboarding Slide Field,Center,Kituo DocType: Notification,Value To Be Set,Thamani Ili Kuwekwa apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Badilisha {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Ngazi ya Kwanza @@ -2139,7 +2217,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Jina la Database apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Furahisha Fomu DocType: DocField,Select,Chagua -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Angalia Ingia Kamili +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Angalia Ingia Kamili DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Maonyesho rahisi ya Python, Mfano: hali == 'Fungua' na chapa == 'Mdudu'" apps/frappe/frappe/utils/csvutils.py,File not attached,Faili haijaunganishwa apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Uunganisho ulipotea. Baadhi ya vipengele haviwezi kufanya kazi. @@ -2171,6 +2249,7 @@ DocType: Web Page,HTML for header section. Optional,HTML kwa sehemu ya kichwa. H apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Kipengele hiki ni chapa mpya na bado kinajaribu apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Upeo {0} safu imeruhusiwa DocType: Dashboard Chart Link,Chart,Chati +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Usiondoe Global apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Hii ni nenosiri la kawaida. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Angalia @@ -2187,6 +2266,7 @@ DocType: Data Migration Connector,Hostname,Jina la majina DocType: Data Migration Mapping,Condition Detail,Hali ya Maelezo apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Kwa sarafu {0}, kiwango cha chini cha shughuli lazima {1}" DocType: DocField,Print Hide,Ficha Ficha +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Kwa Mtumiaji apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Ingiza Thamani DocType: Workflow State,tint,tint @@ -2252,6 +2332,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kanuni ya QR y apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Ongeza kwa Kufanya DocType: Footer Item,Company,Kampuni apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Wastani wa {0} +DocType: Scheduled Job Log,Scheduled,Imepangwa DocType: User,Logout from all devices while changing Password,Ingia kutoka kwa vifaa vyote wakati ukibadilisha nenosiri apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Thibitisha Nenosiri apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Kulikuwa na makosa @@ -2277,7 +2358,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Ruhusa ya mtumiaji tayari ipo apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Safu wizi ya ramani {0} kwa shamba {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Tazama {0} -DocType: User,Hourly,Kila Saa +DocType: Scheduled Job Type,Hourly,Kila Saa apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Jisajili Programu ya Mteja wa OAuth DocType: DocField,Fetch If Empty,Chukua ikiwa Tupu DocType: Data Migration Connector,Authentication Credentials,Vidokezo vya Uthibitishaji @@ -2288,10 +2369,10 @@ DocType: SMS Settings,SMS Gateway URL,URL ya Hifadhi ya SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} haiwezi kuwa "{2}". Inapaswa kuwa moja ya "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},kupatikana na {0} kupitia sheria otomatiki {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} au {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Ninyi nyote mmewekwa juu! DocType: Workflow State,trash,takataka DocType: System Settings,Older backups will be automatically deleted,Backups za zamani zitafutwa moja kwa moja apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Kitambulisho cha Kufikia Ufikiaji batili au Kitufe cha Upatikanaji wa siri. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Ulipoteza sehemu za nishati DocType: Post,Is Globally Pinned,Ni Ulimwenguni apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Shughuli ya Hivi karibuni DocType: Workflow Transition,Conditions,Masharti @@ -2300,6 +2381,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Imethibitish DocType: Event,Ends on,Inaendelea DocType: Payment Gateway,Gateway,Njia DocType: LDAP Settings,Path to Server Certificate,Njia ya Cheti cha Seva +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript imezimwa kwenye kivinjari chako apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Si idhini ya kutosha kuona viungo apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Cheti cha anwani ni lazima. DocType: Google Contacts,Push to Google Contacts,Sukuma kwa Anwani za Google @@ -2318,7 +2400,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-magharibi-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ikiwa hii imechungwa, safu na data halali zitaagizwa na safu zisizo sahihi zitatupwa kwenye faili mpya ili uingize baadaye." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Hati ni editable tu kwa watumiaji wa jukumu -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","Kazi {0}, ambayo umeweka kwa {1}, imefungwa na {2}." DocType: Print Format,Show Line Breaks after Sections,Onyesha Mapumziko ya Line baada ya Sehemu DocType: Communication,Read by Recipient On,Soma na Mpokeaji DocType: Blogger,Short Name,Jina fupi @@ -2350,6 +2431,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Weka DocType: Translation,PR sent,PR imetumwa DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Tuma Rekodi za Tu za Marekebisho katika Masaa ya Mwisho X DocType: Communication,Feedback,Maoni +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Imesasishwa kwa Toleo Jipya 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Fungua Tafsiri apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Barua pepe hii imejitokeza DocType: Workflow State,Icon will appear on the button,Icon itaonekana kwenye kifungo @@ -2388,6 +2470,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Ukurasa ha DocType: DocField,Precision,Sahihi DocType: Website Slideshow,Slideshow Items,Vipande vya slideshow apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Jaribu kuepuka maneno na wahusika mara kwa mara +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Arifa Zimelemazwa +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Je! Una uhakika unataka kufuta safu zote? DocType: Workflow Action,Workflow State,Nchi ya Workflow apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Miamba Imeongezwa apps/frappe/frappe/www/list.py,My Account,Akaunti yangu @@ -2396,6 +2480,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Siku Baada apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Uunganisho wa tray ya QZ Inatumika! DocType: Contact Us Settings,Settings for Contact Us Page,Mipangilio ya Wasiliana Nasi Ukurasa +DocType: Server Script,Script Type,Aina ya script DocType: Print Settings,Enable Print Server,Wezesha Serikali ya Print apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} wiki zilizopita DocType: Email Account,Footer,Chini @@ -2421,8 +2506,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Onyo apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Hii inaweza kuchapishwa kwenye kurasa nyingi DocType: Data Migration Run,Percent Complete,Asilimia Imekamilika -DocType: Tag Category,Tag Category,Jamii ya Tag -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Kwa kulinganisha, tumia> 5, <10 au = 324. Kwa safu, tumia 5:10 (kwa maadili kati ya 5 & 10)." DocType: Google Calendar,Pull from Google Calendar,Bonyeza kutoka Kalenda ya Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Msaada DocType: User,Login Before,Ingia Kabla @@ -2432,17 +2515,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ficha Mwishoni mwa wiki apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Inazalisha kiotomati hati zinazorudiwa. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ni +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-ishara apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Thamani ya {0} haiwezi kuwa orodha DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Fedha hii inapaswa kupangiliwaje? Ikiwa haijawekwa, itatumia desfaults ya mfumo" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Wasilisha {0} nyaraka? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Unahitaji kuingia na uwe na Meneja wa Mfumo wa Mfumo ili uweze kufikia salama. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Kosa la unganisho na Matumizi ya Tray ya QZ ... <br><br> Unahitaji kuwa na programu ya QZ Tray iliyosanikishwa na kuendeshwa, ili kutumia kipengee cha Mchapishaji wa Raw. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Bonyeza hapa kupakua na kusanikisha tray ya QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Bonyeza hapa kujifunza zaidi juu ya Uchapishaji wa Raw</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Ramani ya Printa apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Tafadhali salama kabla ya kuunganishwa. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Je! Unataka kufuta hati zote zilizounganishwa? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Imeongezwa {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype haiwezi kubadilishwa kutoka {0} hadi {1} mfululizo {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Idhini ya Wajibu DocType: Help Article,Intermediate,Katikati +apps/frappe/frappe/config/settings.py,Email / Notifications,Barua pepe / Arifa apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} alibadilisha {1} kuwa {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Nyaraka Iliyosajiliwa imerejeshwa kama Rasimu DocType: Data Migration Run,Start Time,Anza Muda @@ -2459,6 +2546,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,In apps/frappe/frappe/email/smtp.py,Invalid recipient address,Anwani ya mpokeaji asiye sahihi DocType: Workflow State,step-forward,hatua ya mbele DocType: System Settings,Allow Login After Fail,Ruhusu Ingia Baada ya Kushindwa +DocType: DocType Link,DocType Link,Kiunga cha DocType DocType: Role Permission for Page and Report,Set Role For,Weka Kazi Kwa DocType: GCalendar Account,The name that will appear in Google Calendar,Jina ambalo litaonekana katika Kalenda ya Google apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Hatua ya moja kwa moja na {0} tayari imepo. @@ -2475,6 +2563,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Unda mpya DocType: Contact,Google Contacts,Anwani za Google DocType: GCalendar Account,GCalendar Account,Akaunti ya GCalendar DocType: Email Rule,Is Spam,Ni Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Mwisho apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ripoti {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Fungua {0} DocType: Data Import Beta,Import Warnings,Onesha Onyo @@ -2486,6 +2575,7 @@ DocType: Workflow State,ok-sign,ok-ishara apps/frappe/frappe/config/settings.py,Deleted Documents,Nyaraka zilizofutwa apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Fomu ya CSV ni nyeti ya kesi apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Icon ya Desktop tayari ipo +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Taja katika vikoa vipi ikiwa slaidi itaonekana. Ikiwa hakuna chochote kimeainishwa slaidi inaonyeshwa katika vikoa vyote kwa msingi. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicate apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: shamba {1} katika safu {2} haiwezi kufichwa na ya lazima bila kiolezo DocType: Newsletter,Create and Send Newsletters,Unda na Tuma Majarida @@ -2496,6 +2586,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Kitambulisho cha Tukio la Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Mzazi" inaashiria meza ya wazazi ambayo mstari huu lazima uongezwe apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Maoni ya Kurekebisha: +DocType: Scheduled Job Log,Scheduled Job Log,Logi ya kazi iliyopangwa +DocType: Server Script,Before Delete,Kabla ya Futa apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Imeshirikiwa apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Ambatanisha files / urls na uongeze kwenye meza. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Ujumbe usiowekwa @@ -2518,19 +2610,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Mipangilio kwa ajili yetu Kuhusu Ukurasa apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Mipangilio mikubwa ya malipo ya lango apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Chapisha Iliyotumwa kwa printa! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Pointi za Nishati +DocType: Notification Settings,Energy Points,Pointi za Nishati +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Muda {0} lazima uwe katika muundo: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,kwa mfano pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Tengeneza Keys apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Hii itaondoa data yako kabisa. DocType: DocType,View Settings,Angalia Mipangilio +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Arifu mpya DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Omba Muundo +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Njia ya mtawala kupata_razorpay_order haipo DocType: Personal Data Deletion Request,Pending Verification,Uthibitishaji Unaosubiri DocType: Website Meta Tag,Website Meta Tag,Tag Meta ya Tovuti DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Ikiwa bandari isiyo ya kawaida (km 587). Ikiwa kwenye Wingu la Google, jaribu bandari 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Kuondoa tarehe ya mwisho, kama haiwezi kuwa katika siku za nyuma kwa kurasa zinazochapishwa." DocType: User,Send Me A Copy of Outgoing Emails,Nitumie Nakala ya barua pepe zinazotoka -DocType: System Settings,Scheduler Last Event,Mwisho wa Tukio la Mwisho DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Ongeza ID ya Google Analytics: mfano. UA-89XXX57-1. Tafadhali tafuta msaada kwenye Google Analytics kwa habari zaidi. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Nenosiri hawezi kuwa zaidi ya wahusika 100 kwa muda mrefu DocType: OAuth Client,App Client ID,Kitambulisho cha Mteja wa App @@ -2559,6 +2653,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Nywila mpya i apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} alishiriki hati hii kwa {1} DocType: Website Settings,Brand Image,Picha ya Brand DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Kiolezo cha kuingiza kinapaswa kuwa na Kichwa na kufanikiwa safu moja. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Kalenda ya Google imeundwa. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Uwekaji wa bar juu ya urambazaji, footer na alama." DocType: Web Form Field,Max Value,Thamani ya Max @@ -2568,6 +2663,7 @@ DocType: User Social Login,User Social Login,Uingizaji wa Jamii ya Watumiaji apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} alikosoa kazi yako kwenye {1} na kumweka {2} DocType: Contact,All,Wote DocType: Email Queue,Recipient,Mpokeaji +DocType: Webhook,Webhook Security,Usalama wa Wavuti DocType: Communication,Has Attachment,Ina Attachment DocType: Address,Sales User,Mtumiaji wa Mauzo apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag na Drop chombo cha kujenga na Customize Print Formats. @@ -2634,7 +2730,6 @@ DocType: Data Migration Mapping,Migration ID Field,Shamba la ID ya Uhamiaji DocType: Dashboard Chart,Last Synced On,Imesawazishwa mwisho DocType: Comment,Comment Type,Aina ya maoni DocType: OAuth Client,OAuth Client,Mteja wa OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} alikosoa kazi yako kwenye {1} {2} DocType: Assignment Rule,Users,Watumiaji DocType: Address,Odisha,Odisha DocType: Report,Report Type,Aina ya Ripoti @@ -2659,14 +2754,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Idhini ya kibinafsi hairuhusiwi DocType: GSuite Templates,Template ID,Kitambulisho cha Kigezo apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Mchanganyiko wa Aina ya Ruzuku ( <code>{0}</code> ) na Aina ya Jibu ( <code>{1}</code> ) hairuhusiwi -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Ujumbe mpya kutoka {0} DocType: Portal Settings,Default Role at Time of Signup,Jukumu la Hitilafu wakati wa Kujiandikisha DocType: DocType,Title Case,Kichwa cha Kichwa apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Bonyeza kwenye kiunga hapa chini kupakua data yako apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Imewezesha lebo ya barua pepe kwa mtumiaji {0} DocType: Data Migration Run,Data Migration Run,Uhamiaji wa Data Uhamiaji DocType: Blog Post,Email Sent,Kutumwa Barua pepe -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Mzee DocType: DocField,Ignore XSS Filter,Futa Ficha ya XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,imeondolewa apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Mipangilio ya uhifadhi wa Dropbox @@ -2720,6 +2813,7 @@ DocType: Async Task,Queued,Umewekwa DocType: Braintree Settings,Use Sandbox,Tumia Sandbox apps/frappe/frappe/utils/goal.py,This month,Mwezi huu apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Mpangilio mpya wa kuchapa desturi +DocType: Server Script,Before Save (Submitted Document),Kabla ya Hifadhi (Hati Iliyotumwa) DocType: Custom DocPerm,Create,Unda apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Hakuna vitu zaidi vya kuonyesha apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Nenda kwenye rekodi iliyopita @@ -2775,6 +2869,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Hoja kwa Taka DocType: Web Form,Web Form Fields,Mashamba ya Fomu za Mtandao DocType: Data Import,Amended From,Imebadilishwa Kutoka +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Ongeza kiunga cha video cha msaada ikiwa mtumiaji hana wazo juu ya nini cha kujaza slaidi. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Onyo: Haiwezi kupata {0} katika meza yoyote kuhusiana na {1} DocType: S3 Backup Settings,eu-north-1,eu-kaskazini-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Hati hii sasa imesimamishwa kwa utekelezaji. Tafadhali jaribu tena @@ -2796,6 +2891,7 @@ DocType: Blog Post,Blog Post,Chapisho la blogu DocType: Access Log,Export From,Export Kutoka apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Utafutaji wa juu apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Huruhusiwi kuona jarida. +DocType: Dashboard Chart,Group By,Kikundi Kwa DocType: User,Interests,Maslahi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Maelekezo ya kuweka upya nenosiri yamepelekwa kwa barua pepe yako DocType: Energy Point Rule,Allot Points To Assigned Users,Pointi za Zote kwa Watumiaji waliotengwa @@ -2811,6 +2907,7 @@ DocType: Assignment Rule,Assignment Rule,Sheria ya mgawanyo apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Jina la mtumiaji ulilopendekezwa: {0} DocType: Assignment Rule Day,Day,Siku apps/frappe/frappe/public/js/frappe/desk.js,Modules,Modules +DocType: DocField,Mandatory Depends On,Lazima Inategemea apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Mafanikio ya Malipo apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Hakuna {0} barua pepe DocType: OAuth Bearer Token,Revoked,Ilipigwa @@ -2818,6 +2915,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar na Maoni apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Unapofanya hati baada ya Kufuta na kuiokoa, itapata namba mpya ambayo ni toleo la nambari ya zamani." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Hairuhusiwi kuunganisha {0} hati, tafadhali weza Kuruhusu Chapisha Kwa {0} katika Mipangilio ya Kuchapa" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaunti ya barua pepe sio kusanidi. Tafadhali unda Akaunti mpya ya Barua pepe kutoka kwa Kusanidi> Barua pepe> Akaunti ya barua pepe apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Angalia hati katika {0} DocType: Stripe Settings,Publishable Key,Kitu cha kuchapishwa apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Anza Kuingiza @@ -2831,13 +2929,13 @@ DocType: Currency,Fraction,Fraction apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Tukio linalosawazishwa na Kalenda ya Google. DocType: LDAP Settings,LDAP First Name Field,Sehemu ya Jina la Kwanza la LDAP DocType: Contact,Middle Name,Jina la kati +DocType: DocField,Property Depends On,Mali Inategemea DocType: Custom Field,Field Description,Maelezo ya shamba apps/frappe/frappe/model/naming.py,Name not set via Prompt,Jina lisitishwe kupitia Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox ya barua pepe apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Inasasisha {0} ya {1}, {2}" DocType: Auto Email Report,Filters Display,Maonyesho ya Filters apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",uwanja "uliorekebishwa" kutoka "lazima uwepo kufanya marekebisho. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} alithamini kazi yako kwenye {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Hifadhi vichungi DocType: Address,Plant,Mmea apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Jibu Wote @@ -2878,11 +2976,11 @@ DocType: Workflow State,folder-close,folda-karibu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Ripoti: DocType: Print Settings,Print taxes with zero amount,Chapisha kodi kwa kiasi cha sifuri apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} haruhusiwi kupangiliwa jina +DocType: Server Script,Before Insert,Kabla ya Ingiza DocType: Custom Script,Custom Script,Script Custom DocType: Address,Address Line 2,Anwani ya Anwani 2 DocType: Address,Reference,Kumbukumbu apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Iliyopewa -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Tafadhali weka Akaunti ya barua pepe ya usanidi kutoka kwa Usanidi> Barua pepe> Akaunti ya barua pepe DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Maelezo ya Ramani ya Uhamiaji wa Data DocType: Data Import,Action,Hatua DocType: GSuite Settings,Script URL,URL ya Hati @@ -2908,11 +3006,13 @@ DocType: User,Api Access,Upatikanaji wa Api DocType: DocField,In List View,Katika Orodha ya Orodha DocType: Email Account,Use TLS,Tumia TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Kuingia sahihi au nenosiri +DocType: Scheduled Job Type,Weekly Long,Wiki ya kila wiki apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Pakua Kigezo apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Ongeza javascript desturi kwa fomu. ,Role Permissions Manager,Meneja wa Kuruhusu Idhini apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Jina la Format mpya ya Kuchapa apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Badilisha ubaba +DocType: Server Script,After Save (Submitted Document),Baada ya Hifadhi (Hati Iliyotumwa) DocType: Data Migration Run,Pull Insert,Pata Ingiza DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Pointi kubwa zinazoruhusiwa baada ya kuzidisha vidokezo na thamani ya kuzidisha (Kumbuka: Kwa ukomo hakuna eneo lote likiwa tupu au seti 0) @@ -2932,6 +3032,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Haijawekwa apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Pakua na data apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},maadili yaliyobadilishwa kwa {0} {1} +DocType: Server Script,Before Cancel,Kabla ya Kufuta DocType: Workflow State,hand-right,mkono wa kulia DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Mkoa @@ -2977,12 +3078,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,namba ya siri ya zamani DocType: S3 Backup Settings,us-east-1,us-mashariki-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Ujumbe wa {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Ili kuunda safu, fanya maandiko ya safu katika swala." +DocType: Onboarding Slide,Slide Fields,Mashamba ya Slide DocType: Has Domain,Has Domain,Ina Domain DocType: User,Allowed In Mentions,Inaruhusiwa katika Maneno apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hauna akaunti? Ingia apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Haiwezi kuondoa shamba la ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Haiwezi kuweka Sawa Kurekebisha ikiwa haijatumiwa DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Hati zilizosajiliwa apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Mipangilio ya Watumiaji DocType: Report,Reference Report,Ripoti ya Marejeleo DocType: Activity Log,Link DocType,Unganisha DocType @@ -3000,6 +3103,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Idua Upataji wa Kalend apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Ukurasa unayoutafuta haupo. Hii inaweza kuwa kwa sababu imehamishwa au kuna typo katika kiungo. apps/frappe/frappe/www/404.html,Error Code: {0},Msimbo wa Hitilafu: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Maelezo kwa orodha ya ukurasa, katika maandishi wazi, tu mistari michache. (max 140 characters)" +DocType: Server Script,DocType Event,Tukio la DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ni uwanja wa lazima DocType: Workflow,Allow Self Approval,Ruhusu kibali cha kibinafsi DocType: Event,Event Category,Jamii ya Tukio @@ -3016,6 +3120,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Jina lako apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Mafanikio ya uhusiano DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slide ya Onboarding ya Aina ya slaidi Endelea tayari iko. DocType: DocType,Default Sort Field,Sehemu ya Chaguo-msingi DocType: File,Is Folder,"Je, ni Folda" DocType: Document Follow,DocType,DocType @@ -3052,8 +3157,10 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Maadili yalibadilishwa DocType: Workflow State,arrow-up,mshale-up DocType: Dynamic Link,Link Document Type,Unganisha Aina ya Hati +DocType: Server Script,Server Script,Hati ya Seva apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Ili kusanidi Kurudia Kiotomatiki, Wezesha "Ruhusu Kurudiwa Kiotomatiki" kutoka {0}." DocType: OAuth Bearer Token,Expires In,Inakuzimia +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Kiasi cha mara unayotaka kurudia seti ya uwanja (kwa mfano: ikiwa unataka wateja 3 kwenye slaidi, weka uwanja huu kwa 3. Seti ya kwanza ya uwanja ndiyo inayoonyeshwa kama ya lazima katika slaidi)" DocType: DocField,Allow on Submit,Ruhusu Kuwasilisha DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Aina ya Ufikiaji @@ -3063,6 +3170,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Vichwa apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Matukio ijayo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Tafadhali ingiza maadili kwa Key Access Key na App Secret Secret +DocType: Email Account,Append Emails to Sent Folder,Tuma barua pepe kwa folda iliyotumwa DocType: Web Form,Accept Payment,Pata Malipo apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Chagua kitu cha orodha apps/frappe/frappe/config/core.py,A log of request errors,Kitengo cha makosa ya ombi @@ -3081,7 +3189,7 @@ DocType: Translation,Contributed,Imechangiwa apps/frappe/frappe/config/customization.py,Form Customization,Umbo la Fomu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Hakuna Kazi za Kazi DocType: Web Form,Route to Success Link,Njia ya Mafanikio ya Kiungo -DocType: Top Bar Item,Right,Haki +DocType: Onboarding Slide Field,Right,Haki apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Hakuna Matukio Yanayokuja DocType: User,User Type,Aina ya Mtumiaji DocType: Prepared Report,Ref Report DocType,Rejea Ripoti ya Hati ya Hati @@ -3099,6 +3207,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Tafadhali jaribu apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL lazima ianze na 'http: //' au 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Chaguo 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Hii haiwezi kutekelezwa DocType: Workflow State,Edit,Badilisha DocType: Website Settings,Chat Operators,Wafanyakazi wa Mazungumzo DocType: S3 Backup Settings,ca-central-1,ca-kati-1 @@ -3110,7 +3219,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Una mabadiliko yasiyohifadhiwa katika fomu hii. Tafadhali salama kabla ya kuendelea. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,Default kwa {0} lazima iwe chaguo -DocType: Tag Doc Category,Tag Doc Category,Fanya Hati ya Hati apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Ripoti na safu zaidi ya 10 inaonekana bora katika hali ya Mazingira. apps/frappe/frappe/database/database.py,Invalid field name: {0},Jina batili la uwanja: {0} DocType: Milestone,Milestone,Milestone @@ -3119,7 +3227,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Nenda kwa {0} apps/frappe/frappe/email/queue.py,Emails are muted,Maandiko hutumiwa apps/frappe/frappe/config/integrations.py,Google Services,Huduma za Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,Wiki 1 zilizopita +DocType: Onboarding Slide,Slide Description,Maelezo ya Slide DocType: Communication,Error,Hitilafu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Tafadhali kuanzisha ujumbe kwanza DocType: Auto Repeat,End Date,Tarehe ya Mwisho @@ -3140,10 +3248,12 @@ DocType: Footer Item,Group Label,Lebo ya Kikundi DocType: Kanban Board,Kanban Board,Bodi ya Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Anwani za Google zimesanidiwa. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Rekodi 1 itahamishwa +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Hakuna akaunti ya barua pepe inayohusiana na Mtumiaji. Tafadhali ongeza akaunti chini ya Mtumiaji> Kikasha cha barua pepe. DocType: DocField,Report Hide,Ripoti Ficha apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Mtazamo wa mti haupatikani kwa {0} DocType: DocType,Restrict To Domain,Fungua Domain DocType: Domain,Domain,Domain +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL batili ya faili. Tafadhali wasiliana na Msimamizi wa Mfumo. DocType: Custom Field,Label Help,Msaada wa Lebo DocType: Workflow State,star-empty,nyota-tupu apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Nyakati mara nyingi ni rahisi nadhani. @@ -3168,6 +3278,7 @@ DocType: Workflow State,hand-left,mkono wa kushoto DocType: Data Import,If you are updating/overwriting already created records.,Ikiwa unasasisha / overwriting rekodi tayari zilizoundwa. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Ni Global DocType: Email Account,Use SSL,Tumia SSL +DocType: Webhook,HOOK-.####,HOOK -. #……………………………… DocType: Workflow State,play-circle,kucheza-mzunguko apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Hati haikuweza kuhesabiwa kwa usahihi apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Usio sahihi "inategemea_on" kujieleza @@ -3184,6 +3295,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Imerudishwa mwisho apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Kwa Aina ya Hati DocType: Workflow State,arrow-right,Mshale-wa kulia +DocType: Server Script,API Method,Njia ya API DocType: Workflow State,Workflow state represents the current state of a document.,Hali ya Workflow inawakilisha hali ya hati ya sasa. DocType: Letter Head,Letter Head Based On,Barua ya kichwa Kulingana apps/frappe/frappe/utils/oauth.py,Token is missing,Ishara haipo @@ -3223,6 +3335,7 @@ DocType: Comment,Relinked,Imefafanuliwa DocType: Print Settings,Compact Item Print,Print Compact Item DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,Rekebisha URL +DocType: Onboarding Slide Field,Placeholder,Msimamizi DocType: SMS Settings,Enter url parameter for receiver nos,Ingiza parameter ya url kwa nambari ya wapokeaji DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Tumia Jina la Akaunti kila wakati kama Jina la Mtumiaji @@ -3232,7 +3345,6 @@ DocType: Workflow State,Home,Nyumbani DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Mtumiaji anaweza kuingia kwa kutumia id ya barua pepe au Jina la mtumiaji DocType: Workflow State,question-sign,ishara-ishara -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} imezimwa apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Shamba "Njia" ni lazima kwa Maonesho ya Mtandao apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Weka Safu Kabla ya {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Mtumiaji kutoka uwanja huu atafadhiliwa alama @@ -3257,6 +3369,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ikiwa Mmiliki DocType: Data Migration Mapping,Push,Pushisha apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Tupa faili hapa DocType: OAuth Authorization Code,Expiration time,Wakati wa kumalizika +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Fungua Hati DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Onyesha Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,Unahitaji kuingia ili upate hii {0}. @@ -3272,6 +3385,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Njia za mkat DocType: Desktop Icon,Page,Ukurasa apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Haikuweza kupata {0} katika {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Majina na majina yao wenyewe ni rahisi kufikiri. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Hati ilipewa jina mpya kutoka {0} hadi {1} apps/frappe/frappe/config/website.py,Knowledge Base,Msingi wa Maarifa DocType: Workflow State,briefcase,kikapu apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Thamani haiwezi kubadilishwa kwa {0} @@ -3308,6 +3422,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Fomu ya Kuchapa apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Badilisha Grid View apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Nenda kwenye rekodi inayofuata +DocType: System Settings,Time Format,Njia ya Wakati apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Vidokezo vya gateway batili za malipo DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Hii ni faili ya template inayozalishwa na safu tu zilizo na hitilafu. Unapaswa kutumia faili hii kwa ajili ya kusahihisha na kuagiza. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Weka Ruhusa kwenye Aina za Nyaraka na Majukumu @@ -3350,12 +3465,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Jibu apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Kurasa katika Desk (wamiliki wa mahali) DocType: DocField,Collapsible Depends On,Haiwezekani Kuzingatia DocType: Print Style,Print Style Name,Andika jina la Sinema +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Kikundi Kwa shamba inahitajika kuunda chati ya dashibodi DocType: Print Settings,Allow page break inside tables,Ruhusu mapumziko ya ukurasa ndani ya meza DocType: Email Account,SMTP Server,Serikali ya SMTP DocType: Print Format,Print Format Help,Chapisha Msaada wa Kuchapa apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} chumba lazima iwe na mtumiaji mmoja. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Hesabu +DocType: Dashboard Chart,Group By Type,Kikundi Na Aina apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Maoni mapya kwenye {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},kurejeshwa {0} kama {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Ikiwa unasasisha, tafadhali chagua "Overwrite" safu zingine zilizopo hazitafutwa." @@ -3366,14 +3483,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Wasifu wa DocType: Web Form,Web Form,Fomu ya Mtandao apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Tarehe {0} lazima iwe katika muundo: {1} DocType: About Us Settings,Org History Heading,Historia ya Uongozi wa Historia +DocType: Scheduled Job Type,Scheduled Job Type,Aina ya kazi iliyopangwa DocType: Print Settings,Allow Print for Cancelled,Ruhusu Chapisho kwa Kukimbia DocType: Communication,Integrations can use this field to set email delivery status,Ushirikiano unaweza kutumia shamba hili kuweka hali ya utoaji wa barua pepe +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Huna ruhusa ya kufuta hati zote zilizounganishwa. DocType: Web Form,Web Page Link Text,Nakala ya Kuunganisha Ukurasa wa Mtandao DocType: Page,System Page,Mfumo wa Mfumo apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Weka muundo wa default, ukubwa wa ukurasa, mtindo wa kuchapisha nk." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Customizations kwa <b>{0}</b> nje ya: <br> {1} DocType: Website Settings,Include Search in Top Bar,Jumuisha Utafutaji kwenye Bar ya juu +DocType: Scheduled Job Type,Daily Long,Kila siku DocType: GSuite Settings,Allow GSuite access,Ruhusu ufikiaji wa GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Kuita jina @@ -3464,6 +3584,7 @@ DocType: Notification,Send days before or after the reference date,Tuma siku kab DocType: User,Allow user to login only after this hour (0-24),Ruhusu mtumiaji kuingia tu baada ya saa hii (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Agiza moja kwa moja, kwa mlolongo" DocType: Integration Request,Subscription Notification,Arifa ya Usajili +DocType: Customize Form Field, Allow in Quick Entry ,Ruhusu Kuingia haraka apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,au ambatisha a DocType: Auto Repeat,Start Date,Tarehe ya Mwanzo apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Thamani @@ -3478,6 +3599,7 @@ DocType: Google Drive,Backup Folder ID,Kitambulisho cha Hifadhi ya Hifadhi apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Sio katika Mfumo wa Wasanidi programu! Weka kwenye tovuti_config.json au fanya 'DocType' ya 'Desturi'. DocType: Workflow State,globe,globe DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Kipaumbele DocType: Email Queue,Unsubscribe Param,Usiondoe Param DocType: DocType,Hide Sidebar and Menu,Ficha Upinde na Menyu @@ -3489,6 +3611,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Ruhusu Kuingiza (kupitia Ch apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Fungua DocType: Print Settings,Page Settings,Mipangilio ya Ukurasa +DocType: Notification Settings,Notification Settings,Mipangilio ya Arifa apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Inaokoa ... apps/frappe/frappe/www/update-password.html,Invalid Password,Nywila isiyo sahihi apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Imarejeshwa kwa rekodi ya {0} kati ya {1}. @@ -3504,6 +3627,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Barua ya kichwa cha Barua DocType: Address,Party GSTIN,GSTIN ya Chama +DocType: Scheduled Job Type,Cron Format,Fomati ya Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Ripoti DocType: SMS Settings,Use POST,Tumia POST DocType: Communication,SMS,SMS @@ -3548,18 +3672,20 @@ DocType: Workflow,Allow approval for creator of the document,Ruhusu idhini kwa m apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Hifadhi Ripoti DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Kitendo cha Seva apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Msimamizi alipata {0} kwenye {1} kupitia Anwani ya IP {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Sehemu ya Mzazi lazima iwe jina la uwanja halali apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Imeshindwa wakati wa kurekebisha usajili DocType: LDAP Settings,LDAP Group Field,Shamba la Kikundi cha LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Hati Iliyosajiliwa ya Arifa apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Sawa apps/frappe/frappe/core/doctype/doctype/doctype.py,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Aina ya Kiungo cha Dynamic Kiungo lazima ielekeze kwenye Sehemu nyingine ya Kiungo na chaguo kama 'DocType' DocType: About Us Settings,Team Members Heading,Wajumbe wa Timu ya kichwa apps/frappe/frappe/utils/csvutils.py,Invalid CSV Format,Fomu ya CSV isiyo sahihi -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Kosa la unganisho na Matumizi ya Tray ya QZ ... <br><br> Unahitaji kuwa na programu ya QZ Tray iliyosanikishwa na kuendeshwa, ili kutumia kipengee cha Mchapishaji wa Raw. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Bonyeza hapa kupakua na kusanikisha tray ya QZ</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Bonyeza hapa kujifunza zaidi juu ya Uchapishaji wa Raw</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Weka Idadi ya Backups DocType: DocField,Do not allow user to change after set the first time,Usiruhusu mtumiaji kubadilisha baada ya kuweka mara ya kwanza apps/frappe/frappe/utils/data.py,1 year ago,Mwaka 1 uliopita +DocType: DocType,Links Section,Sehemu ya Viungo apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Angalia Ingia ya kumbukumbu zote, upakuaji na usafirishaji" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,Mwezi 1 DocType: Contact,Contact,Wasiliana @@ -3586,16 +3712,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Barua mpya DocType: Custom DocPerm,Export,Tuma nje apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Ili kutumia Kalenda ya Google, Wezesha {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Pia inaongeza uwanja wa utegemezi wa hali {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Imesasishwa kwa mafanikio {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Tray ya QZ Imeshindwa: DocType: Dropbox Settings,Dropbox Settings,Mipangilio ya Dropbox DocType: About Us Settings,More content for the bottom of the page.,Maudhui zaidi chini ya ukurasa. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Hati hii imerejeshwa apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Kufaulu Hifadhi ya Google imefanikiwa. +DocType: Webhook,Naming Series,Mfululizo wa majina DocType: Workflow,DocType on which this Workflow is applicable.,DocType ambayo Flow hii ya kazi inatumika. DocType: User,Enabled,Imewezeshwa apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Imeshindwa kukamilisha kuanzisha apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Mpya {0}: {1} -DocType: Tag Category,Category Name,Jina la Jamii +DocType: Blog Category,Category Name,Jina la Jamii apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Mzazi anahitajika kupata data ya meza ya watoto apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Weka Wajili DocType: Print Settings,PDF Settings,Mipangilio ya PDF @@ -3631,6 +3760,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalenda apps/frappe/frappe/client.py,No document found for given filters,Hakuna hati iliyopatikana kwa filters zilizotolewa apps/frappe/frappe/config/website.py,A user who posts blogs.,Mtumiaji anayeposti blogi. +DocType: DocType Action,DocType Action,Kitendo cha DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Mwingine {0} na jina {1} lipo, chagua jina lingine" DocType: DocType,Custom?,Desturi? DocType: Website Settings,Website Theme Image,Website Theme Image @@ -3640,6 +3770,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Haiwezi k apps/frappe/frappe/config/integrations.py,Backup,Backup apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Aina ya hati inahitajika kuunda chati ya dashibodi DocType: DocField,Read Only,Soma tu +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Haikuweza kuunda amri ya wizi apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Jarida Jipya DocType: Energy Point Log,Energy Point Log,Logi ya Uhakika wa Nishati DocType: Print Settings,Send Print as PDF,Tuma Print kama PDF @@ -3665,16 +3796,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Thi apps/frappe/frappe/www/login.html,Or login with,Au ingia na DocType: Error Snapshot,Locals,Wakazi apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Imewasiliana kupitia {0} kwenye {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} alikutaja kwenye maoni katika {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Chagua Kikundi na ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,mfano (55 + 434) / 4 au = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} inahitajika DocType: Integration Request,Integration Type,Aina ya Ushirikiano DocType: Newsletter,Send Attachements,Tuma Masharti +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Hakuna vichungi vilivyopatikana apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Ujumuishaji wa Mawasiliano ya Google. DocType: Transaction Log,Transaction Log,Ingia ya Ushirikiano apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Takwimu kulingana na utendaji wa mwezi uliopita (kutoka {0} hadi {1}) DocType: Contact Us Settings,City,Jiji +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ficha kadi kwa watumiaji wote apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Wezesha Ruhusu Kurudiwa kiotomatiki kwa aina ya mafunzo {0} katika Fomu ya Badilisha DocType: DocField,Perm Level,Kiwango cha Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Angalia hati @@ -3685,6 +3817,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Ikiwashwa, mabadiliko kwenye hati hufuatiliwa na kuonyeshwa kwa muda wa saa" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'Katika Utafutaji wa Global' hakuruhusiwa kwa aina {0} mfululizo {1} DocType: Energy Point Log,Appreciation,Kushukuru +DocType: Dashboard Chart,Number of Groups,Idadi ya Vikundi apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Tazama Orodha DocType: Workflow,Don't Override Status,Usivunja Hali apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Utafutaji wa muda @@ -3724,7 +3857,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,Cha DocType: S3 Backup Settings,cn-northwest-1,cn-kaskazini magharibi-1 DocType: Dropbox Settings,Limit Number of DB Backups,Nambari ya Kupunguzwa kwa DB Backups DocType: Custom DocPerm,Level,Kiwango -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Siku 30 zilizopita DocType: Custom DocPerm,Report,Ripoti apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Kiasi lazima kiwe zaidi ya 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Imeunganishwa na QZ Tray! @@ -3741,6 +3873,7 @@ DocType: S3 Backup Settings,us-west-2,us-magharibi-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Chagua Jedwali la Mtoto apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Kitendo cha Msingi cha Trigger apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Badilisha +DocType: Social Login Key,User ID Property,Mali ya Kitambulisho cha Mtumiaji DocType: Email Domain,domain name,jina la kikoa DocType: Contact Email,Contact Email,Mawasiliano ya barua pepe DocType: Kanban Board Column,Order,Amri @@ -3763,7 +3896,7 @@ DocType: Contact,Last Name,Jina la familia DocType: Event,Private,Privat apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Hakuna alerts ya leo DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Tuma barua pepe za kuchapishwa kwa nakala kama PDF (Imependekezwa) -DocType: Web Page,Left,Kushoto +DocType: Onboarding Slide Field,Left,Kushoto DocType: Event,All Day,Siku nzima apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Inaonekana kama kitu kibaya na usanidi wa gateway wa malipo ya tovuti hii. Hakuna malipo yaliyofanywa. DocType: GCalendar Settings,State,Hali @@ -3795,7 +3928,6 @@ DocType: Workflow State,User,Mtumiaji DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Onyesha kichwa katika kivinjari cha kivinjari kama "Kiambatisho - kichwa" DocType: Payment Gateway,Gateway Settings,Mipangilio ya Hifadhi apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Nakala katika aina ya hati -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Jaribio la kukimbia apps/frappe/frappe/handler.py,Logged Out,Imeingia nje apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Zaidi ... DocType: System Settings,User can login using Email id or Mobile number,Mtumiaji anaweza kuingia kwa kutumia id ya barua pepe au Namba ya simu @@ -3811,6 +3943,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Muhtasari DocType: Event,Event Participants,Washiriki wa Tukio DocType: Auto Repeat,Frequency,Upepo +DocType: Onboarding Slide,Slide Order,Agizo la slaidi DocType: Custom Field,Insert After,Ingiza Baada DocType: Event,Sync with Google Calendar,Sawazisha na Kalenda ya Google DocType: Access Log,Report Name,Ripoti Jina @@ -3838,6 +3971,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Urefu wa Max kwa Aina ya Fedha ni 100px mfululizo {0} apps/frappe/frappe/config/website.py,Content web page.,Ukurasa wa wavuti wa maudhui. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Ongeza Jukumu Jipya +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Tembelea Ukurasa wa Wavuti +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ujumbe Mpya DocType: Google Contacts,Last Sync On,Mwisho Sync On DocType: Deleted Document,Deleted Document,Hati iliyofutwa apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Lo! Kitu kilichokosa @@ -3848,7 +3983,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Mazingira apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Upanuzi wa script ya mteja kwenye Javascript DocType: Webhook,on_trash,on_ta apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Kumbukumbu za kufuata mafundisho zitafanywa -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Mpangaji Haifanyi kazi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Mpangaji Haifanyi kazi DocType: Blog Settings,Blog Introduction,Utangulizi wa Blog DocType: Global Search Settings,Search Priorities,Vipaumbele vya Kutafuta DocType: Address,Office,Ofisi @@ -3858,12 +3993,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Kiunga cha Chati ya Dashibodi DocType: User,Email Settings,Mipangilio ya barua pepe apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Tupa Hapa DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Ikiwa imewezeshwa, mtumiaji anaweza kuingia kutoka kwa anwani yoyote ya IP kwa kutumia Vitabu Vitu viwili, hii inaweza pia kuwekwa kwa watumiaji wote kwenye Mipangilio ya Mfumo." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Mipangilio ya Printa ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Tafadhali Ingiza nenosiri lako ili Uendelee apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Mimi apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} si Serikali halali apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Omba kwa Aina zote za Hati -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Sasisha ya uhakika +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Sasisha ya uhakika +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Kazi za Kila siku tu ikiwa haifanyi kazi kwa (Siku) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Tafadhali chagua njia nyingine ya malipo. PayPal haitoi shughuli katika fedha '{0}' DocType: Chat Message,Room Type,Aina ya Chumba DocType: Data Import Beta,Import Log Preview,Hakikisha Ingia hakiki @@ -3872,6 +4007,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-mduara DocType: LDAP Settings,LDAP User Creation and Mapping,Uumbaji wa Mtumiaji wa LDAP na Ramani apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Unaweza kupata vitu kwa kuuliza 'kupata machungwa kwa wateja' +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Matukio ya leo apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Samahani! Mtumiaji anapaswa kuwa na upatikanaji kamili wa rekodi yao. ,Usage Info,Info Usage apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Onyesha njia za mkato za kibodi @@ -3888,6 +4024,7 @@ DocType: DocField,Unique,Ni ya pekee apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} kuthaminiwa kwenye {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Mafanikio ya pekee DocType: Email Account,Service,Huduma +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sanidi> Mtumiaji DocType: File,File Name,Jina la faili apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Haikupata {0} kwa {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3901,6 +4038,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Usajili DocType: GCalendar Settings,Enable,Wezesha DocType: Google Maps Settings,Home Address,Anwani ya nyumbani apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Unaweza tu kupakia rekodi hadi kufikia 5000 kwa moja. (inaweza kuwa chini katika baadhi ya matukio) +DocType: Report,"output in the form of `data = [columns, result]`","matokeo katika mfumo wa `data = [nguzo, matokeo]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Aina za Hati zinazotumika apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Sanidi sheria za mgawo wa watumiaji. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ruhusa Haitoshi kwa {0} @@ -3916,7 +4054,6 @@ DocType: Communication,To and CC,Kwa na CC DocType: SMS Settings,Static Parameters,Parameters za Static DocType: Chat Message,Room,Chumba apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},imewekwa kwa {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Kazi za msingi hazifanyi kazi. Tafadhali wasiliana na Msimamizi DocType: Portal Settings,Custom Menu Items,Vitu vya Menyu ya Desturi apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Picha zote zilizounganishwa kwenye Slideshow ya tovuti zinapaswa kuwa za umma DocType: Workflow State,chevron-right,chevron-haki @@ -3929,11 +4066,13 @@ DocType: Website Settings,Brand HTML,HTML ya Brand apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,Chukua Backup DocType: DocType,Allow Auto Repeat,Ruhusu Kurudia Moja kwa Moja apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Hakuna maadili ya kuonyesha +DocType: DocType,URL for documentation or help,URL ya nyaraka au usaidizi DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Kigezo cha Barua pepe apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Imesasisha kwa mafanikio rekodi ya {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Mtumiaji {0} hana ufikiaji wa uchunguzi kupitia ruhusa ya jukumu kwa hati {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Ingia zote na nenosiri linahitajika +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Wacha \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Tafadhali furahisha ili kupata hati ya hivi karibuni. DocType: User,Security Settings,Mipangilio ya Usalama apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Ongeza Safu @@ -3943,6 +4082,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Futa Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Tafadhali pata iliyoambatanishwa {0}: {1} DocType: Web Page,Set Meta Tags,Weka Tepe za Meta +DocType: Email Account,Use SSL for Outgoing,Tumia SSL kwa anayemaliza muda wake 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`,Nakala ya kuonyeshwa kwa Kiungo kwenye Ukurasa wa Wavuti ikiwa fomu hii ina ukurasa wa wavuti. Njia ya kiungo itazalishwa moja kwa moja kulingana na `ukurasa_name` na` parent_website_route` DocType: S3 Backup Settings,Backup Limit,Upungufu wa Backup DocType: Dashboard Chart,Line,Mstari @@ -3975,4 +4115,3 @@ DocType: DocField,Ignore User Permissions,Puuza Ruhusa ya Mtumiaji apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Imehifadhiwa kwa mafanikio apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Tafadhali waulize msimamizi wako kuthibitisha saini yako DocType: Domain Settings,Active Domains,Domains Active -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Onyesha Ingia diff --git a/frappe/translations/ta.csv b/frappe/translations/ta.csv index da6a72b591..717535a417 100644 --- a/frappe/translations/ta.csv +++ b/frappe/translations/ta.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,தயவு செய்து ஒரு தொகை களம் தேர்ந்தெடுக்கவும். apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,இறக்குமதி கோப்பை ஏற்றுகிறது ... DocType: Assignment Rule,Last User,கடைசி பயனர் -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ஒரு புதிய பணி, {0} {1} உங்களுக்கு ஒதுக்கப்பட்ட. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,அமர்வு இயல்புநிலைகள் சேமிக்கப்பட்டன apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,கோப்பை மீண்டும் ஏற்றவும் DocType: Email Queue,Email Queue records.,மின்னஞ்சல் வரிசையில் பதிவுகள். @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} மரம் DocType: User,User Emails,பயனர் மின்னஞ்சல்கள் DocType: User,Username,பயனர் பெயர் apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ஜிப்பை இறக்குமதி செய்க +DocType: Scheduled Job Type,Create Log,பதிவை உருவாக்கவும் apps/frappe/frappe/model/base_document.py,Value too big,மிக பெரிய மதிப்பு DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ரன் ஸ்கிரிப்ட் டெஸ்ட் @@ -74,7 +74,7 @@ DocType: Auto Repeat,Monthly,மாதாந்தர DocType: Address,Uttarakhand,உத்தரகண்ட் DocType: Email Account,Enable Incoming,உள்வரும் இயக்கு apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ஆபத்து -DocType: Address,Email Address,மின்னஞ்சல் முகவரி +apps/frappe/frappe/www/login.py,Email Address,மின்னஞ்சல் முகவரி DocType: Workflow State,th-large,"ம், பெரிய" DocType: Communication,Unread Notification Sent,அனுப்பப்பட்டது படிக்காத அறிவிப்பு apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ஏற்றுமதி அனுமதி இல்லை . ஏற்றுமதி செய்ய நீங்கள் {0} பங்கு வேண்டும் . @@ -85,10 +85,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ஆ DocType: DocType,Is Published Field,களம் வெளியிடப்பட்ட DocType: GCalendar Settings,GCalendar Settings,GCalendar அமைப்புகள் DocType: Email Group,Email Group,மின்னஞ்சல் குழு +apps/frappe/frappe/__init__.py,Only for {},அதற்கு மட்டும் {} DocType: Event,Pulled from Google Calendar,Google கேலெண்டரிலிருந்து இழுக்கப்பட்டது DocType: Note,Seen By,பார்க்கப்பட்டது apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,பல சேர் -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,நீங்கள் சில ஆற்றல் புள்ளிகளைப் பெற்றீர்கள் apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,செல்லுபடியாகாத பயனர் படம் இல்லை. DocType: Energy Point Log,Reverted,க்கப்பட்டது DocType: Success Action,First Success Message,முதல் வெற்றி செய்தி @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,பிடி apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},தவறான மதிப்பு: {0} இருக்க வேண்டும் {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","மாற்றம் துறையில் பண்புகள் ( மறைக்க , படிக்கமட்டும், அனுமதி முதலியன)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,பாராட்ட +DocType: Notification Settings,Document Share,ஆவணப் பகிர்வு DocType: Workflow State,lock,பூட்ட apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,அமைப்புகளை எங்களை பக்கம் தொடர்புக்கு. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,நிர்வாகி உள்நுழைவு @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","இயக்கப்பட்டால், ஆவணம் பார்த்தபடி குறிக்கப்படுகிறது, முதல் முறையாக ஒரு பயனர் அதைத் திறக்கிறார்" DocType: Auto Repeat,Repeat on Day,நாளில் திரும்பவும் DocType: DocField,Color,நிறம் +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,அனைத்தையும் வாசிக்கப்பட்டதாக அடையாளமிடு DocType: Data Migration Run,Log,புகுபதிகை DocType: Workflow State,indent-right,உள்தள் வலது DocType: Has Role,Has Role,பங்கு உள்ளது @@ -126,6 +128,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,டிரேஸ்பேக்கைக் காட்டு DocType: DocType,Default Print Format,முன்னிருப்பு அச்சு வடிவம் DocType: Workflow State,Tags,குறிச்சொற்களை +DocType: Onboarding Slide,Slide Type,ஸ்லைடு வகை apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,None: பணியோட்ட முடிவு apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","அல்லாத தனிப்பட்ட தற்போதுள்ள மதிப்புகள் உள்ளன என {0} துறையில், {1} போன்ற தனிப்பட்ட அமைக்க முடியாது" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ஆவண வகைகள் @@ -135,7 +138,6 @@ DocType: Language,Guest,விருந்தினர் DocType: DocType,Title Field,தலைப்பு புலம் DocType: Error Log,Error Log,பிழை பதிவு apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,தவறான வலைதள முகவரி -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,கடந்த 7 நாட்கள் apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","ஏபிசி" விட "abcabcabc" ஊகிக்க மட்டுமே சற்று கடினமாக உள்ளன போன்ற மறுநிகழ்வுகள் DocType: Notification,Channel,ஒளியலை வரிசை apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","இந்த அங்கீகரிக்கப்படாத என்று நினைக்கிறேன் என்றால், நிர்வாகி கடவுச்சொல்லை மாற்ற வேண்டும்." @@ -154,6 +156,7 @@ DocType: OAuth Authorization Code,Client,வாடிக்கையாளர் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,நெடுவரிசையைத் தேர்ந்தெடு apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,நீங்கள் அதை ஏற்ற பிறகு இந்த வடிவம் மாற்றப்பட்டுள்ளது DocType: Address,Himachal Pradesh,இமாசலப் பிரதேசம் +DocType: Notification Log,Notification Log,அறிவிப்பு பதிவு DocType: System Settings,"If not set, the currency precision will depend on number format","அமைக்கவில்லை எனில், நாணய துல்லியம் எண் வடிவத்தை பொறுத்து அமையும்" DocType: System Settings,"If not set, the currency precision will depend on number format","அமைக்கவில்லை எனில், நாணய துல்லியம் எண் வடிவத்தை பொறுத்து அமையும்" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,அற்புதமான பட்டியைத் திறக்கவும் @@ -164,7 +167,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,அனுப்பு DocType: Workflow Action Master,Workflow Action Name,பணியோட்டம் அதிரடி பெயர் apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ஒன்றாக்க முடியாது -DocType: Web Form Field,Fieldtype,துறை வகை +DocType: Onboarding Slide Field,Fieldtype,துறை வகை apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ஒரு zip கோப்பு DocType: Global Search DocType,Global Search DocType,உலகளாவிய தேடல் டாக் டைப் DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -177,7 +180,9 @@ DocType: Newsletter,Email Sent?,அனுப்பிய மின்னஞ் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,அட்டவணையை மாற்று apps/frappe/frappe/desk/form/save.py,Did not cancel,ரத்து DocType: Social Login Key,Client Information,வாடிக்கையாளர் தகவல் +DocType: Energy Point Rule,Apply this rule only once per document,ஒரு ஆவணத்திற்கு ஒரு முறை மட்டுமே இந்த விதியைப் பயன்படுத்துங்கள் DocType: Workflow State,plus,உடன் சேர்க்கப்பட்டு +DocType: DocField,Read Only Depends On,படிக்க மட்டும் சார்ந்துள்ளது apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,விருந்தினர் அல்லது நிர்வாகி வெளியேற்ற DocType: Email Account,UNSEEN,காணாத apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,கோப்பு மேலாளர் @@ -201,9 +206,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,காரணம் 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,செயல்பாடு இல்லை +DocType: Server Script,Script Manager,ஸ்கிரிப்ட் மேலாளர் +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,செயல்பாடு இல்லை apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,மூன்றாம் தரப்பு பயன்பாடுகள் apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,கணினி மேலாளர் மாறும் முதல் பயனர் (இந்த பிறகு மாற்றலாம்). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,இன்று நிகழ்வுகள் இல்லை apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,மறுஆய்வு புள்ளிகளை நீங்களே கொடுக்க முடியாது apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,தேர்ந்தெடுக்கப்பட்ட ஆவண நிகழ்வுக்கு DocType சமர்ப்பிக்கப்பட வேண்டும் DocType: Workflow State,circle-arrow-up,வட்டத்தை-அம்பு அப் @@ -251,6 +258,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} புதுப்பிக்கிறது apps/frappe/frappe/core/doctype/report/report.js,Disable Report,முடக்கு அறிக்கை DocType: Translation,Contributed Translation Doctype Name,பங்களித்த மொழிபெயர்ப்பு டாக்டைப் பெயர் +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு DocType: PayPal Settings,Redirect To,திருப்பி DocType: Data Migration Mapping,Pull,இழு DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ஜாவா வடிவம்: frappe.query_reports [' REPORTNAME '] = { } @@ -264,6 +272,7 @@ DocType: DocShare,Internal record of document shares,ஆவணம் பங் DocType: Energy Point Settings,Review Levels,மதிப்பாய்வு நிலைகள் DocType: Workflow State,Comment,கருத்து DocType: Data Migration Plan,Postprocess Method,Postprocess முறை +DocType: DocType Action,Action Type,செயல் வகை apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,புகைப்படத்தை எடுக்கவும் DocType: Assignment Rule,Round Robin,சுற்று ராபின் apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","நீங்கள் அவர்களை திருத்தி, பின்னர் அவற்றை ரத்து மற்றும் சமர்ப்பிக்கப்பட்ட ஆவணங்களை மாற்ற முடியும் ." @@ -277,6 +286,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,சேமி ' DocType: Comment,Seen,ஸீன் apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,மேலும் விவரங்களுக்கு காட்டு +DocType: Server Script,Before Submit,சமர்ப்பிக்கும் முன் DocType: System Settings,Run scheduled jobs only if checked,சோதனை மட்டுமே திட்டமிட்ட வேலைகள் இயக்கவும் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,பிரிவில் தலைப்புகள் செயல்படுத்தப்படும் தான் காட்டப்படும் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,காப்பகம் @@ -289,10 +299,12 @@ DocType: Dropbox Settings,Dropbox Access Key,டிரா பாக்ஸ் அ apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,தனிப்பயன் ஸ்கிரிப்ட்டின் add_fetch உள்ளமைவில் தவறான புல பெயர் <b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,எந்த தொடர்புகளை ஒத்திசைக்க வேண்டும் என்று Google தொடர்புகளைத் தேர்ந்தெடுக்கவும். DocType: Web Page,Main Section (HTML),முதன்மை பிரிவு (HTML) +DocType: Scheduled Job Type,Annual,வருடாந்திர DocType: Workflow State,headphones,ஹெட்ஃபோன்கள் apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,கடவுச்சொல் தேவை அல்லது காத்திருக்கிறது கடவுச்சொல் தேர்வு உள்ளது DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,எ.கா. replies@yourcomany.com. எல்லா பதில்களும் இந்த செய்திப் பெட்டி வரும். DocType: Slack Webhook URL,Slack Webhook URL,ஸ்லோக் Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","வழிகாட்டி ஸ்லைடின் வரிசையை தீர்மானிக்கிறது. ஸ்லைடு காட்டப்படாவிட்டால், முன்னுரிமை 0 ஆக அமைக்கப்பட வேண்டும்." DocType: Data Migration Run,Current Mapping,தற்போதைய வரைபடம் apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,தேவையான சரியான மின்னஞ்சல் மற்றும் பெயர் apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,எல்லா இணைப்புகளையும் தனிப்பட்டதாக்குங்கள் @@ -316,6 +328,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,மாற்றம் விதிகள் apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,முன்னோட்டத்தில் முதல் {0} வரிசைகளை மட்டுமே காட்டுகிறது apps/frappe/frappe/core/doctype/report/report.js,Example:,உதாரணமாக: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,கட்டுப்பாடுகள் DocType: Workflow,Defines workflow states and rules for a document.,ஒரு ஆவணம் முறையை மாநிலங்கள் மற்றும் விதிகள் வரையறுக்கிறது. DocType: Workflow State,Filter,வடிகட்டி apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},மேலும் தகவலுக்கு பிழை பதிவைச் சரிபார்க்கவும்: {0} @@ -327,6 +340,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,வேலை apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} வெளியேற்றப்படுவீர்கள்: {1} DocType: Address,West Bengal,மேற்கு வங்காளம் +DocType: Onboarding Slide,Information,தகவல் apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : ஒதுக்கு சமர்ப்பிக்கவும் அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லை என்றால் DocType: Transaction Log,Row Index,வரிசை அட்டவணை DocType: Social Login Key,Facebook,முகபுத்தகம் @@ -344,7 +358,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,மூல DocType: Web Form,Button Help,பட்டன் - உதவி DocType: Kanban Board Column,purple,ஊதா DocType: About Us Settings,Team Members,குழு உறுப்பினர் +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,செயலற்ற தளங்களுக்கு ஒரு நாளைக்கு ஒரு முறை மட்டுமே திட்டமிடப்பட்ட வேலைகளை இயக்கும். 0 என அமைக்கப்பட்டால் இயல்புநிலை 4 நாட்கள். DocType: Assignment Rule,System Manager,கணினி மேலாளர் +DocType: Scheduled Job Log,Scheduled Job,திட்டமிடப்பட்ட வேலை DocType: Custom DocPerm,Permissions,அனுமதிகள் apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,உட்புற ஒருங்கிணைப்புக்கான ஸ்லாக் வெப்யூக்ஸ் DocType: Dropbox Settings,Allow Dropbox Access,டிராப்பாக்ஸ் அணுகல் அனுமதி @@ -397,6 +413,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ப DocType: Email Flag Queue,Email Flag Queue,மின்னஞ்சல் கொடி கியூ DocType: Access Log,Columns / Fields,நெடுவரிசைகள் / புலங்கள் apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,அச்சு வடிவங்களுக்கான நடைதாள் +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,டாஷ்போர்டு விளக்கப்படத்தை உருவாக்க மொத்த செயல்பாடு புலம் தேவை apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,திறந்த அடையாளம் முடியாது {0}. வேறு ஏதாவது முயற்சி. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,உங்கள் தகவல் சமர்ப்பிக்கப்பட்டது apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,பயனர் {0} நீக்க முடியாது @@ -413,7 +430,7 @@ DocType: Property Setter,Field Name,புலம் பெயர் DocType: Assignment Rule,Assign To Users,பயனர்களுக்கு ஒதுக்குங்கள் apps/frappe/frappe/public/js/frappe/utils/utils.js,or,அல்லது apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,தொகுதி பெயர் ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,தொடரவும் +DocType: Onboarding Slide,Continue,தொடரவும் apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google ஒருங்கிணைப்பு முடக்கப்பட்டுள்ளது. DocType: Custom Field,Fieldname,புலம் பெயர் DocType: Workflow State,certificate,சான்றிதழ் @@ -426,11 +443,13 @@ DocType: Energy Point Log,Review,விமர்சனம் DocType: User,Restrict IP,ஐபி கட்டுப்படுத்த apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,டாஷ்போர்டு apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,இந்த நேரத்தில் மின்னஞ்சல்களை அனுப்ப முடியவில்லை +DocType: Notification Log,Email Content,மின்னஞ்சல் உள்ளடக்கம் apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ஒரு கட்டளை தேடல் தட்டச்சு DocType: Activity Log,Timeline Name,காலக்கெடு பெயர் DocType: Email Account,e.g. smtp.gmail.com,எ.கா. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ஒரு புதிய விதி சேர்க்க DocType: Contact,Sales Master Manager,விற்பனை மாஸ்டர் மேலாளர் +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,உங்கள் பயன்பாடு செயல்பட ஜாவாஸ்கிரிப்டை இயக்க வேண்டும். DocType: User Permission,For Value,மதிப்பு DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,ஒரு கடைசி படி @@ -445,6 +464,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP மத்திய பெயர் புலம் DocType: GCalendar Account,Allow GCalendar Access,GCalendar அணுகலை அனுமதிக்கவும் apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ஒரு கட்டாயத் துறை +DocType: DocType,Documentation Link,ஆவண இணைப்பு apps/frappe/frappe/templates/includes/login/login.js,Login token required,தேதி டோக்கன் தேவை apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,மாதாந்திர தரவரிசை: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,பல பட்டியல் உருப்படிகளைத் தேர்ந்தெடுக்கவும் @@ -466,6 +486,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,கோப்பு URL DocType: Version,Table HTML,"டேபிள், HTML" apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,சந்தாதாரர்கள் சேர்க்கவும் +DocType: Notification Log,Energy Point,எனர்ஜி பாயிண்ட் apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,இன்று வரவிருக்கும் நிகழ்வுகள் DocType: Google Calendar,Push to Google Calendar,Google காலெண்டருக்கு தள்ளவும் DocType: Notification Recipient,Email By Document Field,ஆவண துறையில் மின்னஞ்சல் @@ -481,7 +502,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,அவே DocType: Currency,Fraction Units,பின்னம் அலகுகள் apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} இலிருந்து {1} க்கு {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,முடிந்தது என குறி DocType: Chat Message,Type,மாதிரி DocType: Google Settings,OAuth Client ID,OAuth கிளையண்ட் ஐடி DocType: Auto Repeat,Subject,பொருள் @@ -509,6 +529,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,சரிபார்ப்புக்காக உங்கள் மின்னஞ்சலைப் பார்க்கவும் apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,அயல் வடிவம் முடிவில் இருக்க முடியாது DocType: Communication,Bounced,பவுன்ஸ்டு +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,இன் DocType: Deleted Document,Deleted Name,நீக்கப்பட்ட பெயர் apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,கணினி மற்றும் இணைய பயனர்கள் DocType: Workflow Document State,Doc Status,Doc நிலைமை @@ -519,6 +540,7 @@ DocType: Language,Language Code,மொழி குறியீடு DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,குறிப்பு: தோல்வியுற்ற காப்புப்பிரதிகளுக்கான இயல்புநிலை மின்னஞ்சல்கள் அனுப்பப்படுகின்றன. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,வடிகட்டி apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},எஸ்எம்எஸ் எண்களில் அனுப்பப்பட்டது: {0} +DocType: Notification Settings,Assignments,பணிகள் apps/frappe/frappe/utils/data.py,{0} and {1},{0} மற்றும் {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,உரையாடலைத் தொடங்கவும். DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",எப்போதும் அச்சிடும் வரைவு ஆவணங்களை தலைப்பு "வரைவு" சேர்க்க @@ -527,6 +549,7 @@ DocType: Data Migration Run,Current Mapping Start,தற்போதைய ம apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,மின்னஞ்சல் ஸ்பேம் என்று குறிக்கப்பட்டுள்ளது DocType: Comment,Website Manager,இணைய மேலாளர் apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,கோப்பு பதிவேற்றம் துண்டிக்கப்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும். +DocType: Data Import Beta,Show Failed Logs,தோல்வியுற்ற பதிவுகளைக் காட்டு apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,மொழிபெயர்ப்பு apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,நீங்கள் தேர்ந்தெடுத்த வரைவு அல்லது ரத்து ஆவணங்கள் apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{2} {2} மூலம் {1} @@ -534,7 +557,9 @@ apps/frappe/frappe/model/document.py,Document Queued,ஆவண Queued DocType: GSuite Templates,Destination ID,இலக்கு ஐடி DocType: Desktop Icon,List,பட்டியலில் DocType: Activity Log,Link Name,இணைப்பு பெயர் +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,நீங்கள் புகலிடம் \ DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy +DocType: Onboarding Slide,Onboarding Slide,ஆன் போர்டிங் ஸ்லைடு apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,தவறான கடவுச்சொல்: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,தவறான கடவுச்சொல்: DocType: Print Settings,Send document web view link in email,மின்னஞ்சல் ஆவணம் வலை காட்சி இணைப்பை அனுப்ப @@ -596,6 +621,7 @@ DocType: Kanban Board Column,darkgrey,அடர் சாம்பல் apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},வெற்றிகரமான: {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,டெமோ பயனர் விவரங்களை மாற்ற முடியாது. https://erpnext.com ஒரு புதிய கணக்கிற்கு பதிவு செய்க apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,கைவிட +DocType: Dashboard Chart,Aggregate Function Based On,மொத்த செயல்பாடு அடிப்படையில் apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"மாற்றங்களை செய்ய, இந்த போலி தயவு செய்து" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,சேமிக்க Enter ஐ அழுத்தவும் apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,எம் தலைமுறை ஏனெனில் உடைந்த படத்தை இணைப்புகள் தோல்வியடைந்தது @@ -610,7 +636,9 @@ DocType: Notification,Days Before,"நாட்கள் முன்பு," apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,தினசரி நிகழ்வுகள் ஒரே நாளில் முடிக்கப்பட வேண்டும். apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,தொகு... DocType: Workflow State,volume-down,தொகுதி-கீழே +DocType: Onboarding Slide,Help Links,உதவி இணைப்புகள் apps/frappe/frappe/auth.py,Access not allowed from this IP Address,இந்த ஐபி முகவரியிலிருந்து அணுகல் அனுமதிக்கப்படவில்லை +DocType: Notification Settings,Enable Email Notifications,மின்னஞ்சல் அறிவிப்புகளை இயக்கு apps/frappe/frappe/desk/reportview.py,No Tags,குறிகள் இல்லை DocType: Email Account,Send Notification to,அறிவிப்பு அனுப்ப DocType: DocField,Collapsible,மடக்கு @@ -639,6 +667,7 @@ DocType: Google Drive,Last Backup On,கடைசி காப்புப்ப DocType: Customize Form Field,Customize Form Field,படிவம் புலம் தனிப்பயனாக்கு DocType: Energy Point Rule,For Document Event,ஆவண நிகழ்வுக்காக DocType: Website Settings,Chat Room Name,அரட்டை அறை பெயர் +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,மாற்றாமல் DocType: OAuth Client,Grant Type,கிராண்ட் வகை apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ஆவணங்கள் ஒரு பயனர் படிக்க இவை பாருங்கள் DocType: Deleted Document,Hub Sync ID,மைய ஒருங்கிணைப்பு ஐடி @@ -646,6 +675,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,வ DocType: Auto Repeat,Quarterly,கால் ஆண்டுக்கு ஒரு முறை நிகழ்கிற apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",", இந்த கணக்குக்கான மின்னஞ்சல் களம் உள்ளமைக்கப்படவில்லை ஒன்றை உருவாக்கவா?" DocType: User,Reset Password Key,கடவுச்சொல் முக்கிய மீட்டமை +DocType: Dashboard Chart,All Time,எல்லா நேரமும் apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} க்கான சட்டவிரோத ஆவண நிலை DocType: Email Account,Enable Auto Reply,வாகன பதில் இயக்கு apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,பார்த்ததில்லை @@ -658,6 +688,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ச DocType: Email Account,Notify if unreplied,பதில் இல்லை என்றால் தெரிவி apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR குறியீட்டை ஸ்கேன் செய்து காட்டப்படும் குறியீட்டை உள்ளிடவும். apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,சாய்வுகளை இயக்கு +DocType: Scheduled Job Type,Hourly Long,மணிநேர நீண்ட DocType: System Settings,Minimum Password Score,குறைந்தபட்ச கடவுச்சொல் ஸ்கோர் DocType: DocType,Fields,புலங்கள் DocType: System Settings,Your organization name and address for the email footer.,மின்னஞ்சல் முடிப்பு உங்கள் நிறுவனத்தின் பெயர் மற்றும் முகவரி. @@ -665,11 +696,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,பெற apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 காப்பு நிறைவு! apps/frappe/frappe/config/desktop.py,Developer,படைப்பாளி apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,உருவாக்கப்பட்டது +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},இதை இயக்க பின்வரும் இணைப்பில் உள்ள வழிமுறைகளைப் பின்பற்றவும்: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} வரிசையில் {1} URL மற்றும் குழந்தை பொருட்களை இருவரும் முடியாது apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},பின்வரும் அட்டவணைகளுக்கு குறைந்தபட்சம் ஒரு வரிசை இருக்க வேண்டும்: {0} DocType: Print Format,Default Print Language,இயல்புநிலை அச்சு மொழி apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,முன்னோர்கள் apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ரூட் {0} நீக்க முடியாது +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,தோல்வியுற்ற பதிவுகள் இல்லை apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,இதுவரை இல்லை apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","எஸ்எம்எஸ் அமைப்புகளின் வழியாக, ஒரு அங்கீகார முறையாக அமைப்பதற்கு முன் SMS ஐ அமைக்கவும்" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,தேவையான இரண்டு ஆவண வகை பெயர் @@ -692,6 +725,7 @@ DocType: Website Settings,Footer Items,அடிக்குறிப்பு apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,பட்டி DocType: DefaultValue,DefaultValue,இயல்புநிலை மதிப்பு DocType: Auto Repeat,Daily,தினசரி +DocType: Onboarding Slide,Max Count,அதிகபட்ச எண்ணிக்கை apps/frappe/frappe/config/users_and_permissions.py,User Roles,பயனர் பங்களிப்புகள் DocType: Property Setter,Property Setter overrides a standard DocType or Field property,சொத்து செட்டர் ஒரு நிலையான DOCTYPE அல்லது களம் சொத்து மீறப்படகிறது apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,புதுப்பிக்க முடியாது : காலாவதியான / தவறான இணைப்பு . @@ -710,6 +744,7 @@ DocType: Footer Item,"target = ""_blank""",இலக்கு = "_blank&quo DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,தொகுப்பாளர் DocType: Data Import Beta,Import File,கோப்பை இறக்குமதி செய்க +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,வார்ப்புரு பிழை apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,வரிசை <b>{0}</b> ஏற்கனவே உள்ளன. DocType: ToDo,High,உயர் apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,புதிய நிகழ்வு @@ -725,6 +760,7 @@ DocType: Web Form Field,Show in filter,வடிப்பான் காட் DocType: Address,Daman and Diu,டாமன் மற்றும் டையூ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,திட்டம் DocType: Address,Personal,தனிப்பட்ட +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,மூல அச்சிடும் அமைப்புகள் ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,விவரங்களுக்கு https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region ஐப் பார்க்கவும். apps/frappe/frappe/config/settings.py,Bulk Rename,மொத்த மறுபெயரிடு DocType: Email Queue,Show as cc,சிசி காட்டு @@ -734,6 +770,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,வீடியோ DocType: Contact Us Settings,Introductory information for the Contact Us Page,எங்களை பக்கம் ஒரு அறிமுக தகவல் DocType: Print Style,CSS,CSS ஐ DocType: Workflow State,thumbs-down,கட்டைவிரலை டவுன் +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,ஆவணங்களை ரத்துசெய்கிறது DocType: User,Send Notifications for Email threads,மின்னஞ்சல் நூல்களுக்கு அறிவிப்புகளை அனுப்பவும் apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,பேராசிரியர் apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,படைப்பாளி பயன்முறையில் இல்லை @@ -741,7 +778,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,கோ DocType: DocField,In Global Search,குளோபல் சர்ச் DocType: System Settings,Brute Force Security,ப்ரூட் ஃபோர்ஸ் செக்யூரிட்டி DocType: Workflow State,indent-left,உள்தள் இடது -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,இந்த கோப்பு நீக்க ஆபத்தானது: {0}. உங்கள் கணினி மேலாளரைத் தொடர்பு கொள்ளவும். DocType: Currency,Currency Name,நாணயத்தின் பெயர் apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,மின்னஞ்சல்கள் இல்லை @@ -756,10 +792,12 @@ DocType: Energy Point Rule,User Field,பயனர் புலம் DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,நீக்கு apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} க்கான ஏற்கனவே குழுவிலகியுள்ளீர்கள் {1} {2} +DocType: Scheduled Job Type,Stopped,நிறுத்தி apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,நீக்க முடியவில்லை apps/frappe/frappe/desk/like.py,Liked,விரும்பியது apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,இப்போது அனுப்பவும் apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ஸ்டாண்டர்ட் DOCTYPE, இயல்புநிலை அச்சு வடிவமைப்பைக் கொண்டிருக்கவில்லை முடியும் தனிப்பயனாக்கு படிவம் பயன்படுத்த" +DocType: Server Script,Allow Guest,விருந்தினரை அனுமதி DocType: Report,Query,வினா DocType: Customize Form,Sort Order,வரிசையை apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},' பட்டியல் பார்வையில் ' அனுமதி இல்லை வகை {0} வரிசையில் {1} @@ -781,10 +819,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,இரண்டு காரணி அங்கீகார முறை apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"முதலில் பெயரை அமைக்கவும், பதிவுகளை சேமிக்கவும்." apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 பதிவுகள் +DocType: DocType Link,Link Fieldname,இணைப்பு புலம் பெயர் apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},பகிரப்பட்டது {0} apps/frappe/frappe/email/queue.py,Unsubscribe,குழுவிலகலைப் DocType: View Log,Reference Name,குறிப்பு பெயர் apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,பயனரை மாற்று +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,முதல் apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,புதுப்பிப்புகளை புதுப்பி DocType: Error Snapshot,Exception,விதிவிலக்கு DocType: Email Account,Use IMAP,பயன்பாட்டு ஐஎம்எபி @@ -799,6 +839,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,பணியோட்டம் அரசு மாற்றம் வரையறுக்கும் விதிகள். DocType: File,Folder,அடைவு DocType: Website Route Meta,Website Route Meta,வலைத்தள பாதை மெட்டா +DocType: Onboarding Slide Field,Onboarding Slide Field,ஆன் போர்டிங் ஸ்லைடு புலம் DocType: DocField,Index,குறியீட்டெண் DocType: Email Group,Newsletter Manager,செய்திமடல் மேலாளர் apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,விருப்பம் 1 @@ -882,6 +923,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,தேட DocType: Workflow State,text-width,உரை அகலம் apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,இந்த பதிவிற்கான அதிகபட்ச இணைப்பு வரம்பை எட்டிவிட்டது. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,கோப்பு பெயர் அல்லது நீட்டிப்பு மூலம் தேடுங்கள் +DocType: Onboarding Slide,Slide Title,ஸ்லைடு தலைப்பு DocType: Notification,View Properties (via Customize Form),(தனிப்பயனாக்கலாம் படிவம் மூலம்) காட்டு பண்புகள் apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ஒரு கோப்பைத் தேர்ந்தெடுக்க அதைக் கிளிக் செய்க. DocType: Note Seen By,Note Seen By,பார்க்கப்படுகிறது குறிப்பு @@ -908,13 +950,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL ஐப் பகிர் DocType: System Settings,Allow Consecutive Login Attempts ,தொடர்ந்து உள்நுழைவு முயற்சிகளை அனுமதி apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,கட்டணம் செயல்பாட்டின் போது ஒரு பிழை ஏற்பட்டது. தயவு செய்து எங்களை தொடர்பு கொள்ளவும். +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,ஸ்லைடு வகை உருவாக்கு அல்லது அமைப்புகள் என்றால் {ref_doctype} .py கோப்பில் 'create_onboarding_docs' முறை இருக்க வேண்டும். ஸ்லைடு முடிந்ததும் செயல்படுத்தப்படும். apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} நாட்கள் முன்பு DocType: Email Account,Awaiting Password,காத்திருக்கிறது கடவுச்சொல் DocType: Address,Address Line 1,முகவரி வரி 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,இல்லை வம்சாவளியைச் சேர்ந்தவர்கள் DocType: Contact,Company Name,நிறுவனத்தின் பெயர் DocType: Custom DocPerm,Role,பங்கு -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,அமைப்புகள் ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,உங்கள் உலாவிக்கு apps/frappe/frappe/utils/data.py,Cent,சதவீதம் ,Recorder,ரெக்கார்டர் @@ -973,6 +1015,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","பெறுநரால் உங்கள் மின்னஞ்சல் திறக்கப்பட்டிருந்தால் கண்காணியுங்கள். <br> குறிப்பு: நீங்கள் பல பெறுநர்களுக்கு அனுப்பினால், 1 பெறுநர் மின்னஞ்சலைப் படித்து வந்தாலும், அது "திறந்த"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,விட்டுப்போன மதிப்புகள் தேவையான apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google தொடர்புகள் அணுகலை அனுமதிக்கவும் +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,வரையறுக்கப்பட்ட DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,படிக்காதது என்று குறி DocType: Activity Log,Operation,ஆபரேஷன் @@ -1025,6 +1068,7 @@ DocType: Web Form,Allow Print,அச்சு அனுமதி DocType: Communication,Clicked,சொடுக்கும் apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,பின்தொடராட் apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},அனுமதி இல்லை ' {0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும் apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,அனுப்ப திட்டமிடப்பட்டுள்ளது DocType: DocType,Track Seen,ட்ராக் ஸீன் DocType: Dropbox Settings,File Backup,கோப்பு காப்பு @@ -1033,12 +1077,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,இல்ல apps/frappe/frappe/config/customization.py,Add custom forms.,விருப்ப படிவங்களை சேர்க்கவும். apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} உள்ள {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,இந்த ஆவணம் சமர்ப்பிக்க -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள் apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,அமைப்பு பல முன் வரையறுக்கப்பட்ட கதாபாத்திரங்களில் வழங்குகிறது . நேர்த்தியான அனுமதிகளை அமைக்க புதிய பாத்திரங்கள் சேர்க்க முடியும் . DocType: Communication,CC,சிசி DocType: Country,Geo,ஜியோ DocType: Data Migration Run,Trigger Name,தூண்டல் பெயர் -apps/frappe/frappe/public/js/frappe/desk.js,Domains,களங்கள் +DocType: Onboarding Slide,Domains,களங்கள் DocType: Blog Category,Blog Category,வலைப்பதிவு பகுப்பு apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"பின்வரும் நிலையில் முடியவில்லை, ஏனெனில் வரைய முடியாது:" DocType: Role Permission for Page and Report,Roles HTML,பாத்திரங்கள் HTML @@ -1079,7 +1122,6 @@ DocType: Assignment Rule Day,Saturday,சனிக்கிழமை DocType: User,Represents a User in the system.,அமைப்பு ஒரு பயனர் பிரதிபலிக்கிறது. DocType: List View Setting,Disable Auto Refresh,தானியங்கு புதுப்பிப்பை முடக்கு DocType: Comment,Label,சிட்டை -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","பணி {0} நீங்கள் {1}, மூடப்பட்டுவிட்டது ஒதுக்கப்படும் என்று." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,இந்த சாளரத்தை மூடவும் DocType: Print Format,Print Format Type,வடிவமைப்பு வகை அச்சிட DocType: Newsletter,A Lead with this Email Address should exist,இந்த மின்னஞ்சல் முகவரி ஒரு முன்னணி இருக்க வேண்டும் @@ -1096,6 +1138,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,வெளியேற apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ஒரு தேர்வு DocType: Data Export,Filter List,வடிகட்டி பட்டியல் DocType: Data Export,Excel,எக்செல் +DocType: System Settings,HH:mm,ஹெச்ஹெச்: மிமீ DocType: Email Account,Auto Reply Message,வாகன பதில் செய்தி DocType: Data Migration Mapping,Condition,நிபந்தனை apps/frappe/frappe/utils/data.py,{0} hours ago,{0} மணி நேரம் முன்பு @@ -1114,12 +1157,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,அறிவு தளம் பங்களிப்பாளர் DocType: Communication,Sent Read Receipt,அனுப்பப்பட்டது படித்ததற்கான சான்று DocType: Email Queue,Unsubscribe Method,சந்தாவிலகு முறை +DocType: Onboarding Slide,Add More Button,மேலும் பொத்தானைச் சேர்க்கவும் DocType: GSuite Templates,Related DocType,சம்பந்தப்பட்ட DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,உள்ளடக்கத்தை சேர்க்க திருத்தவும் apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,மொழிகள் தேர்வு apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,அட்டை விவரங்கள் apps/frappe/frappe/__init__.py,No permission for {0},அனுமதி இல்லை {0} DocType: DocType,Advanced,மேம்பட்ட +DocType: Onboarding Slide,Slide Image Source,பட மூலத்தை ஸ்லைடு apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API விசை தெரிகிறது அல்லது API சீக்ரெட் தவறு !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},குறிப்பு: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,திருமதி @@ -1144,7 +1189,6 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Re apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,நீங்கள் இணையத்துடன் இணைக்கப்படவில்லை. சிறிது நேரம் கழித்து மீண்டும் முயற்சிக்கவும். apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","அனுமதிப்பது DOCTYPE , DOCTYPE . கவனமாக இருங்கள்!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","அச்சு, மின்னஞ்சல் அமைத்துக்கொள்ள வடிவங்கள்" -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,புதிய பதிப்பு மேம்படுத்தப்பட்டது DocType: Custom Field,Depends On,பொறுத்தது DocType: Kanban Board Column,Green,பச்சை DocType: Custom DocPerm,Additional Permissions,கூடுதல் அனுமதிகள் @@ -1171,6 +1215,7 @@ DocType: Address,Is Your Company Address,உங்கள் நிறுவன DocType: Energy Point Log,Social,சமூக apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,வரிசையில் திருத்த DocType: Workflow Action Master,Workflow Action Master,அகச்சிவப்புக் அதிரடி மாஸ்டர் +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,அனைத்தையும் நீக்கு DocType: Custom Field,Field Type,புலம் வகை apps/frappe/frappe/utils/data.py,only.,மட்டுமே. DocType: Route History,Route History,வழி வரலாறு @@ -1206,11 +1251,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,கடவுச்சொ DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ஐடி apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,சர்வர் பிழை +DocType: Server Script,After Delete,நீக்கு பிறகு apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,கடந்த அனைத்து அறிக்கைகளையும் காண்க. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,உள்நுழைய ஐடி தேவை DocType: Website Slideshow,Website Slideshow,இணைய ப apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,தரவு இல்லை DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","அந்த வலைத்தளத்தில் முகப்பு பக்கம் இணைப்பு . தரநிலை இணைப்புகள் (குறியீட்டெண், உள்நுழைவு , பொருட்கள் , வலைப்பதிவு, பற்றி , தொடர்பு )" +DocType: Server Script,After Submit,சமர்ப்பித்த பிறகு apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},மின்னஞ்சல் கணக்கு {0} இருந்து மின்னஞ்சல்களை பெறும் போது அங்கீகாரம் தோல்வியடைந்தது. சேவையகத்தில் இருந்து செய்தி: {1} DocType: User,Banner Image,பதாகை படம் DocType: Custom Field,Custom Field,தனிப்பயன் புலம் @@ -1250,15 +1297,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","பயனர் சோதித்ததில் எந்த பங்கு உண்டு என்றால், பயனர் ஒரு "அமைப்பு பயனர்" ஆகிறது. "கணினி பயனர்" டெஸ்க்டாப் அணுகல் உள்ளது" DocType: System Settings,Date and Number Format,தேதி மற்றும் எண் அமைப்பு apps/frappe/frappe/model/document.py,one of,ஒன்று -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ஒரு கணம் சரிபார்க்கிறது apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,காட்டு குறிச்சொற்களை DocType: DocField,HTML Editor,HTML எடிட்டர் 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,செயல்கள் -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைப்பு> பயனர் +DocType: DocType,Actions,செயல்கள் DocType: Workflow State,align-justify,சீரமை-நியாயப்படுத்த DocType: User,Middle Name (Optional),நடுத்தர பெயர் (கட்டாயமில்லை) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,அனுமதி இல்லை @@ -1272,6 +1317,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,முட DocType: System Settings,Security,பாதுகாப்பு apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} பெறுபவர்கள் அனுப்ப திட்டமிடப்பட்டுள்ளது apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,வெட்டு +DocType: Server Script,After Save,சேமி பிறகு apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},இருந்து மறுபெயரிடப்பட்டது {0} {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} இன் {0} (குழந்தைகளுடன் {2} வரிசைகள்) DocType: Currency,**Currency** Master,** நாணய ** மாஸ்டர் @@ -1296,16 +1342,19 @@ DocType: Prepared Report,Filter Values,வடிகட்டி மதிப் DocType: Communication,User Tags,பயனர் குறிச்சொற்கள் DocType: Data Migration Run,Fail,தோல்வி DocType: Workflow State,download-alt,பதிவிறக்க-alt +DocType: Scheduled Job Type,Last Execution,கடைசி மரணதண்டனை DocType: Data Migration Run,Pull Failed,இழுக்க முடியவில்லை apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,அட்டைகளைக் காண்பி / மறை DocType: Communication,Feedback Request,கருத்து வேண்டுகோள் apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / எக்செல் கோப்புகளிலிருந்து தரவை இறக்குமதி செய்யவும். apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,பின்வரும் துறைகளில் காணவில்லை: +DocType: Notification Log,From User,பயனரிடமிருந்து apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},ரத்துசெய்தல் {0} DocType: Web Page,Main Section,முக்கிய பகுதி DocType: Page,Icon,உருவம் apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","குறிப்பு: கடவுச்சொல்லை குறியீடுகள், எண்கள் மற்றும் மூலதன கடிதங்கள் சேர்க்கவும்" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","குறிப்பு: கடவுச்சொல்லை குறியீடுகள், எண்கள் மற்றும் மூலதன கடிதங்கள் சேர்க்கவும்" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","குறிப்புகள், பணிகள், ஆற்றல் புள்ளிகள் மற்றும் பலவற்றிற்கான அறிவிப்புகளை உள்ளமைக்கவும்." DocType: DocField,Allow in Quick Entry,விரைவு நுழைவில் அனுமதி apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,எம் DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1337,7 +1386,6 @@ DocType: Website Theme,Theme URL,தீம் URL DocType: Customize Form,Sort Field,அண்மையில் DocType: Razorpay Settings,Razorpay Settings,Razorpay அமைப்புகள் apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,வடிகட்டி திருத்து -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,கூடுதலாக சேர் DocType: System Settings,Session Expiry Mobile,அமர்வு காலாவதியாகும் மொபைல் apps/frappe/frappe/utils/password.py,Incorrect User or Password,தவறான பயனர் அல்லது கடவுச்சொல் apps/frappe/frappe/templates/includes/search_box.html,Search results for,தேடல் முடிவுகள் @@ -1353,8 +1401,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,எனர்ஜி பாயிண்ட் விதி DocType: Communication,Delayed,தாமதமாக apps/frappe/frappe/config/settings.py,List of backups available for download,பதிவிறக்க கிடைக்கிறது காப்பு பட்டியல் +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,புதிய தரவு இறக்குமதியை முயற்சிக்கவும் apps/frappe/frappe/www/login.html,Sign up,பதிவு apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,வரிசை {0}: நிலையான புலங்களில் கட்டாயத்தை முடக்க அனுமதி இல்லை +DocType: Webhook,Enable Security,பாதுகாப்பை இயக்கு apps/frappe/frappe/config/customization.py,Dashboards,டேஷ்போர்டுகளுடன் DocType: Test Runner,Output,வெளியீடு DocType: Milestone,Track Field,ட்ராக் புலம் @@ -1373,6 +1423,7 @@ DocType: Portal Menu Item,Portal Menu Item,போர்டல் மெனு apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,வடிப்பான்களை அமைக்கவும் DocType: Contact Us Settings,Email ID,மின்னஞ்சல் ஐடி DocType: Energy Point Rule,Multiplier Field,பெருக்கி புலம் +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,ரேஸர்பே வரிசையை உருவாக்க முடியவில்லை. நிர்வாகியைத் தொடர்பு கொள்ளவும் DocType: Dashboard Chart,Time Interval,நேர இடைவேளை DocType: Activity Log,Keep track of all update feeds,அனைத்து புதுப்பிப்பு ஓடைகளையும் கண்காணியுங்கள் DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,வாடிக்கையாளர் பயன்பாட்டை பயனர் அதை அனுமதிக்கிறது பின்னர் அணுக வேண்டும் இது வளங்களை பட்டியல். <br> எ.கா. திட்டம் @@ -1392,6 +1443,7 @@ DocType: DefaultValue,Key,சாவி DocType: Address,Contacts,தொடர்புகள் DocType: System Settings,Setup Complete,அமைப்பு முழு apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,அனைத்து ஆவணம் பங்குகளை அறிக்கை +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","இறக்குமதி வார்ப்புரு .csv, .xlsx அல்லது .xls வகையாக இருக்க வேண்டும்" apps/frappe/frappe/www/update-password.html,New Password,புதிய கடவுச்சொல் apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,வடிகட்டி {0} காணாமல் apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,மன்னிக்கவும்! நீங்கள் தானாக உருவாக்கப்பட்ட கருத்துகளை நீக்க முடியாது @@ -1407,6 +1459,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ஃபேவிகான் apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,ரன் DocType: Blog Post,Content (HTML),உள்ளடக்கம் (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,அமைவு DocType: Personal Data Download Request,User Name,பயனர் பெயர் DocType: Workflow State,minus-sign,கழித்தல்-அறிகுறி apps/frappe/frappe/public/js/frappe/request.js,Not Found,கிடைக்கவில்லை @@ -1414,6 +1467,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,இல்லை {0} அன apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ஏற்றுமதி விருப்ப அனுமதிகள் apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,உருப்படிகள் எதுவும் இல்லை. DocType: Data Export,Fields Multicheck,புலங்கள் Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} முழுமை DocType: Activity Log,Login,உள் நுழை DocType: Web Form,Payments,பணம் apps/frappe/frappe/www/qrcode.html,Hi {0},ஹாய் {0} @@ -1442,6 +1496,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,பொ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,அனுமதி பிழை apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} பெயர் இருக்க முடியாது {1} DocType: User Permission,Applicable For,பொருந்தும் +DocType: Dashboard Chart,From Date,தேதி apps/frappe/frappe/core/doctype/version/version_view.html,Success,வெற்றி apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,அமர்வு காலாவதியானது apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,அமர்வு காலாவதியானது @@ -1454,7 +1509,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,வ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; நிலையில் அனுமதி இல்லை DocType: Async Task,Async Task,ஒத்திசைக்க பணி DocType: Workflow State,picture,ஓவியம் -apps/frappe/frappe/www/complete_signup.html,Complete,முழுமையான +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,முழுமையான DocType: DocType,Image Field,படத்தை துறையில் DocType: Print Format,Custom HTML Help,விருப்ப HTML உதவி DocType: LDAP Settings,Default Role on Creation,உருவாக்கத்தில் இயல்புநிலை பங்கு @@ -1462,6 +1517,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,அடுத்த மாநிலம் DocType: User,Block Modules,தொகுதி தொகுதிகள் DocType: Print Format,Custom CSS,தனிப்பயன் CSS +DocType: Energy Point Rule,Apply Only Once,ஒரு முறை மட்டுமே விண்ணப்பிக்கவும் apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ஒரு கருத்து DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},புறக்கணிக்கப்பட்ட: {0} {1} @@ -1472,6 +1528,7 @@ DocType: Address,Postal,தபால் அலுவலகம் சார்ந DocType: Email Account,Default Incoming,இயல்புநிலை உள்வரும் DocType: Workflow State,repeat,ஒப்பி DocType: Website Settings,Banner,சிறிய கொடி +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,எல்லா ஆவணங்களையும் ரத்துசெய் DocType: Role,"If disabled, this role will be removed from all users.","முடக்கப்பட்டுள்ளது என்றால், இந்த பங்கு அனைத்து பயனர்கள் இருந்து நீக்கப்படும்." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} பட்டியலுக்குச் செல்லவும் apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,தேடல் உதவி @@ -1480,6 +1537,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,பதி apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,இந்த ஆவணத்திற்கான தானியங்கு மீண்டும் முடக்கப்பட்டுள்ளது. DocType: DocType,Hide Copy,நகல் மறைக்க apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,அனைத்து வேடங்களில் அழி +DocType: Server Script,Before Save,சேமி முன் apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} தனிப்பட்ட இருக்க வேண்டும் apps/frappe/frappe/model/base_document.py,Row,வரிசை apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & மின்னஞ்சல் வார்ப்புரு" @@ -1490,7 +1548,6 @@ DocType: Chat Profile,Offline,ஆஃப்லைன் apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},வெற்றிகரமாக இறக்குமதி செய்யப்பட்டது {0} DocType: User,API Key,API விசை DocType: Email Account,Send unsubscribe message in email,அனுப்பவும் மின்னஞ்சல் சந்தாவிலகு செய்தி -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,திருத்த தலைப்பு apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,இந்த இணைப்பை துறையில் ஆவண வகை இருக்கும் புலம் பெயர். apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,உங்களுக்கும் நீங்கள் அளிக்கப்பட்ட ஆவணங்கள். apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,இதை நீங்கள் நகலெடுத்து ஒட்டலாம் @@ -1520,8 +1577,10 @@ DocType: Data Migration Run,Total Pages,மொத்த பக்கங்கள DocType: DocField,Attach Image,படத்தை இணைக்கவும் DocType: Workflow State,list-alt,பட்டியல்-alt apps/frappe/frappe/www/update-password.html,Password Updated,கடவுச்சொல் இற்றை +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள் apps/frappe/frappe/www/qrcode.html,Steps to verify your login,உங்கள் உள்நுழைவை சரிபார்க்க படிகள் apps/frappe/frappe/utils/password.py,Password not found,கடவுச்சொல் இல்லை +DocType: Webhook,Webhook Secret,வெப்ஹூக் ரகசியம் DocType: Data Migration Mapping,Page Length,பக்க நீளம் DocType: Email Queue,Expose Recipients,பெற்றவர்கள் அம்பலப்படுத்த apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,உள்வரும் மடல்களை கட்டாயமாக சேர்க்கவும் @@ -1548,6 +1607,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,முறை DocType: Web Form,Max Attachment Size (in MB),மேக்ஸ் இணைப்பு அளவு (MB யில்) apps/frappe/frappe/www/login.html,Have an account? Login,ஒரு கணக்கு உள்ளதா? உள் நுழை +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,அமைப்புகளை அச்சிடு ... DocType: Workflow State,arrow-down,அம்புக்குறி-கீழே apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},வரிசை {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},பயனர் நீக்க அனுமதி இல்லை {0} {1} @@ -1569,6 +1629,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,உங் DocType: Dropbox Settings,Dropbox Access Secret,டிரா பாக்ஸ் அணுகல் ரகசியம் DocType: Tag Link,Document Title,ஆவண தலைப்பு apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(கட்டாயமாகும்) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு DocType: Social Login Key,Social Login Provider,சமூக உள்நுழை வழங்குநர் apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,மற்றொரு கருத்து சேர் apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,கோப்பில் தரவு எதுவும் இல்லை. தரவுடன் புதிய கோப்பை மீண்டும் இணைக்கவும். @@ -1583,11 +1644,12 @@ DocType: Workflow State,hand-down,கை கீழே apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",கான்பன் நெடுவரிசையாகப் பயன்படுத்தக்கூடிய புலங்கள் எதுவும் கிடைக்கவில்லை. "தேர்ந்தெடு" வகையின் தனிப்பயன் புலத்தைச் சேர்க்க தனிப்பயனாக்கு படிவத்தைப் பயன்படுத்தவும். DocType: Address,GST State,ஜிஎஸ்டி மாநிலம் apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} : அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லாமல் ரத்து +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),பயனர் ({0}) DocType: Website Theme,Theme,தீம் DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI இனை அங்கீகார குறியீடு திருப்பி கட்டுண்ட apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,உதவி திறக்கவும் DocType: DocType,Is Submittable,சமர்ப்பிக்க -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,புதிய குறிப்பு +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,புதிய குறிப்பு apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,புதிய Google தொடர்புகள் எதுவும் ஒத்திசைக்கப்படவில்லை. DocType: File,Uploaded To Google Drive,Google இயக்ககத்தில் பதிவேற்றப்பட்டது apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ஒரு காசோலை துறையில் மதிப்பு 0 அல்லது 1 அல்லது இருக்க முடியும் @@ -1597,7 +1659,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,கட்டாய DocType: Workflow State,Inbox,செய்திப் பெட்டி DocType: Kanban Board Column,Red,சிவப்பு DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,ஸ்கிரிப்ட் +DocType: Report,Script,ஸ்கிரிப்ட் apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ஆவணத்தை சேமிக்க முடியவில்லை. DocType: Energy Point Rule,Maximum Points,அதிகபட்ச புள்ளிகள் apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,என் அமைப்புகள் @@ -1626,8 +1688,10 @@ DocType: Email Queue,Email Queue,மின்னஞ்சல் வரிசை DocType: Address,Haryana,அரியானா apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,பாத்திரங்கள் தங்கள் பயனர் பக்கம் இருந்து பயனர்கள் அமைக்க முடியும் . apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,கருத்து சேர் +DocType: Dashboard Chart,Select Date Range,தேதி வரம்பைத் தேர்ந்தெடுக்கவும் DocType: DocField,Mandatory,அதிகாரம் சார்ந்த apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,தொகுதி ஏற்றுமதி +DocType: Scheduled Job Type,Monthly Long,மாதாந்திர நீண்டது apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : இல்லை அடிப்படை அனுமதிகளை தொகுப்பு apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","திருத்தி, ரத்து, சமர்ப்பி அர்த்தம்" @@ -1636,7 +1700,6 @@ DocType: Test Runner,Module Path,தொகுதி பாதை DocType: Milestone Tracker,Track milestones for any document,எந்த ஆவணத்திற்கும் மைல்கற்களைக் கண்காணிக்கவும் DocType: Social Login Key,Identity Details,அடையாள விவரங்கள் apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,டாஷ்போர்டைக் காட்டு -apps/frappe/frappe/desk/form/assign_to.py,New Message,புதிய தகவல் DocType: File,Preview HTML,முன்னோட்ட HTML DocType: Desktop Icon,query-report,கேள்வி-அறிக்கை DocType: Data Import Beta,Template Warnings,வார்ப்புரு எச்சரிக்கைகள் @@ -1653,12 +1716,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} பெயர் apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,இல்லை அனுமதிகள் இந்த அடிப்படை அமைக்க. DocType: Auto Email Report,Auto Email Report,வாகன மின்னஞ்சல் அறிக்கை +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,புதிய ஆவணம் பகிரப்பட்டது apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,கருத்துரையை நீக்குவதா? DocType: Address Template,This format is used if country specific format is not found,நாட்டின் குறிப்பிட்ட வடிவமைப்பில் இல்லை என்றால் இந்த வடிவமைப்பு பயன்படுத்தப்படும் DocType: System Settings,Allow Login using Mobile Number,மொபைல் எண் பயன்படுத்தி உள்நுழைய அனுமதி apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,நீங்கள் இந்த ஆதாரத்தை அணுக போதுமான அனுமதிகள் இல்லை. அணுகலை பெற உங்கள் மேலாளரைத் தொடர்பு கொள்ளவும். DocType: Custom Field,Custom,விருப்ப DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","இயக்கப்பட்டிருந்தால், வரையறுக்கப்பட்ட IP முகவரிக்கு உள்நுழைய பயனர்கள் இரண்டு கார்ட்டர் Auth க்கு கேட்கப்படமாட்டார்கள்" +DocType: Server Script,After Cancel,ரத்து செய்த பிறகு DocType: Auto Repeat,Get Contacts,தொடர்புகள் கிடைக்கும் apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},கீழ் தாக்கல் இடுகைகள் {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,பெயரிடப்படாத நெடுவரிசையைத் தவிர்க்கிறது @@ -1669,6 +1734,7 @@ DocType: User,Login After,உள்நுழைவு பின்னர் DocType: Print Format,Monospace,மோனோஸ்பேஸ் DocType: Letter Head,Printing,அச்சிடுதல் DocType: Workflow State,thumbs-up,கட்டைவிரலை அப் +DocType: Notification Log,Mention,குறிக்கப்பட்டது DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,எழுத்துருக்கள் apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,துல்லிய 1 மற்றும் 6 ம் இருக்க வேண்டும் @@ -1676,7 +1742,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},முன apps/frappe/frappe/public/js/frappe/utils/utils.js,and,மற்றும் apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},இந்த அறிக்கை {0} DocType: Error Snapshot,Frames,சட்டங்கள் -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,மதிப்பளித்தல் +DocType: Notification Log,Assignment,மதிப்பளித்தல் DocType: Notification,Slack Channel,ஸ்லாக் சேனல் DocType: About Us Team Member,Image Link,படம் இணைப்பு DocType: Auto Email Report,Report Filters,அறிக்கை வடிகட்டிகள் @@ -1693,6 +1759,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,நிகழ்வை முடியவில்லை apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,உங்கள் பதிவு மின்னஞ்சல் முகவரிக்கு சரிபார்ப்புக் குறியீடு அனுப்பப்பட்டுள்ளது. apps/frappe/frappe/core/doctype/user/user.py,Throttled,நிறுத்தப்பட்டுள்ளது +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,உங்கள் இலக்கு apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","வடிகட்டி 4 மதிப்புகள் (டாக்டைப்பின், FIELDNAME, ஆபரேட்டர், மதிப்பு இருக்க வேண்டும்): {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,ஒதுக்கீட்டு விதியைப் பயன்படுத்துங்கள் apps/frappe/frappe/utils/bot.py,show,நிகழ்ச்சி @@ -1746,7 +1813,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,இணைப apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,உங்கள் மொழி DocType: Dashboard Chart,Average,சராசரி apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,வரிசையில் சேர் -DocType: Tag Category,Doctypes,டாக்டைப்கள் apps/frappe/frappe/public/js/frappe/form/print.js,Printer,பிரிண்டர் apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,"வினவல், ஒரு SELECT இருக்க வேண்டும்" DocType: Auto Repeat,Completed,நிறைவு @@ -1804,6 +1870,7 @@ DocType: GCalendar Account,Next Sync Token,அடுத்த ஒத்திச DocType: Energy Point Settings,Energy Point Settings,எனர்ஜி பாயிண்ட் அமைப்புகள் DocType: Async Task,Succeeded,முன்னவர் apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},தேவையான கட்டாய துறைகள் {0} +DocType: Onboarding Slide Field,Align,சீரமை apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} அனுமதிகள் மீட்டமை ? apps/frappe/frappe/config/desktop.py,Users and Permissions,பயனர்கள் மற்றும் அனுமதிகள் DocType: S3 Backup Settings,S3 Backup Settings,S3 காப்பு அமைப்பு @@ -1820,7 +1887,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,புதிய அச்சு வடிவமைப்பு பெயர் apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,கோரிக்கையை அங்கீகரிக்க கீழேயுள்ள இணைப்பைக் கிளிக் செய்க DocType: Workflow State,align-left,சீரமை-விட்டு +DocType: Onboarding Slide,Action Settings,செயல் அமைப்புகள் DocType: User,Defaults,இயல்புநிலைக்கு +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ஒப்பிட,> 5, <10 அல்லது = 324 ஐப் பயன்படுத்தவும். வரம்புகளுக்கு, 5:10 ஐப் பயன்படுத்தவும் (5 & 10 க்கு இடையிலான மதிப்புகளுக்கு)." DocType: Energy Point Log,Revert Of,திரும்பவும் apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,இருக்கும் இணைவதற்கு DocType: User,Birth Date,பிறந்த தேதி @@ -1876,6 +1945,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,இல் DocType: Notification,Value Change,மதிப்பு மாற்றம் DocType: Google Contacts,Authorize Google Contacts Access,Google தொடர்புகள் அணுகலை அங்கீகரிக்கவும் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,அறிக்கை இருந்து எண் துறைகள் மட்டும் காட்டும் +apps/frappe/frappe/utils/data.py,1 week ago,1 வாரம் முன்பு DocType: Data Import Beta,Import Type,இறக்குமதி வகை DocType: Access Log,HTML Page,HTML பக்கம் DocType: Address,Subsidiary,உப @@ -1885,7 +1955,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,லெட்டர் கொண்டு apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,செல்லாத வெளிச்செல்லும் அஞ்சல் சேவகன் அல்லது துறைமுக DocType: Custom DocPerm,Write,எழுது -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ஒரே நிர்வாகி கேள்வி / ஸ்கிரிப்ட் அறிக்கைகள் உருவாக்க அனுமதி apps/frappe/frappe/public/js/frappe/form/save.js,Updating,புதுப்பித்தல் DocType: Data Import Beta,Preview,முன்னோட்டம் apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",களம் "மதிப்பு" கட்டாயமாகும். மேம்படுத்தப்பட்ட வேண்டும் மதிப்பு குறிப்பிடவும் @@ -1895,6 +1964,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,பயன DocType: Data Migration Run,Started,தொடங்குதல் apps/frappe/frappe/permissions.py,User {0} does not have access to this document,பயனர் {0} இந்த ஆவணத்திற்கு அணுகல் இல்லை DocType: Data Migration Run,End Time,முடிவு நேரம் +DocType: Dashboard Chart,Group By Based On,அடிப்படையில் குழு apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,இணைப்புகள் தேர்வு apps/frappe/frappe/model/naming.py, for {0},இதற்காக {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,நீங்கள் இந்த ஆவணத்தை அச்சிட அனுமதி இல்லை @@ -1936,6 +2006,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,சரிபார் DocType: Workflow Document State,Update Field,புலம் புதுப்பிக்க DocType: Chat Profile,Enable Chat,அரட்டை இயக்கவும் DocType: LDAP Settings,Base Distinguished Name (DN),பேஸ் சிறப்புமிகு பெயர் (DN) +DocType: Server Script,API,ஏபிஐ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,இந்த உரையாடலிலிருந்து apps/frappe/frappe/model/base_document.py,Options not set for link field {0},விருப்பங்கள் இணைப்பு துறையில் அமைக்க{0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,வரிசை / தொழிலாளி @@ -2003,12 +2074,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,உள்நுழைய இந்த நேரத்தில் அனுமதி இல்லை DocType: Data Migration Run,Current Mapping Action,தற்போதைய வரைபட செயல் DocType: Dashboard Chart Source,Source Name,மூல பெயர் -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,பயனருடன் மின்னஞ்சல் கணக்கு எதுவும் இல்லை. பயனர்> மின்னஞ்சல் இன்பாக்ஸின் கீழ் ஒரு கணக்கைச் சேர்க்கவும். DocType: Email Account,Email Sync Option,மின்னஞ்சல் ஒத்திசைவு விருப்பம் apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,வரிசை இல்லை DocType: Async Task,Runtime,இயக்க DocType: Post,Is Pinned,பின்னால் உள்ளது DocType: Contact Us Settings,Introduction,அறிமுகப்படுத்துதல் +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,உதவி தேவை? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,உலகளவில் முள் apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,தொடர்ந்து DocType: LDAP Settings,LDAP Email Field,"LDAP, மின்னஞ்சல் களம்" @@ -2018,7 +2089,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ஏற் DocType: User Email,Enable Outgoing,வெளிச்செல்லும் இயக்கு DocType: Address,Fax,தொலைநகல் apps/frappe/frappe/config/customization.py,Custom Tags,விருப்ப குறிச்சொற்கள் -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும் DocType: Comment,Submitted,சமர்ப்பிக்கப்பட்டது DocType: Contact,Pulled from Google Contacts,Google தொடர்புகளிலிருந்து இழுக்கப்பட்டது apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,தவறான கோரிக்கை @@ -2039,9 +2109,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,முக apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,எனக்கு ஒதுக்க DocType: DocField,Dynamic Link,டைனமிக் இணைப்பு apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,மெனு மற்றும் பக்கப்பட்டியில் கூடுதல் குறுக்குவழிகளைத் தூண்ட Alt விசையை அழுத்தவும் +DocType: Dashboard Chart,To Date,தேதி DocType: List View Setting,List View Setting,பட்டியல் காட்சி அமைப்பு apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,வேலைகள் தோல்வி காட்டு -DocType: Event,Details,விவரம் +DocType: Scheduled Job Log,Details,விவரம் DocType: Property Setter,DocType or Field,DOCTYPE அல்லது புலம் apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,இந்த ஆவணத்தை நீங்கள் பின்பற்றவில்லை apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,முதன்மை நிறம் @@ -2050,7 +2121,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,தெரிகிறது பதிப்பு விசை அல்லது ரகசிய விசை தவறு !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,தெரிகிறது பதிப்பு விசை அல்லது ரகசிய விசை தவறு !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,"அனுமதிகள் அமைத்தல், விரைவான உதவி" -DocType: Tag Doc Category,Doctype to Assign Tags,குறிச்சொற்கள் ஒதுக்கு டாக்டைப் apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,காட்டு மீளமுடியாமல் அப்பழக்கத்தை apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,மின்னஞ்சல் குப்பைக்கு மாற்றப்பட்டுள்ளது DocType: Report,Report Builder,அறிக்கை பில்டர் @@ -2066,6 +2136,7 @@ DocType: Workflow State,Upload,பதிவேற்ற DocType: User Permission,Advanced Control,மேம்பட்ட கட்டுப்பாடு DocType: System Settings,Date Format,தேதி வடிவமைப்பு apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,வெளியிடப்படவில்லை. +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி வார்ப்புரு இல்லை. அமைவு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து புதிய ஒன்றை உருவாக்கவும். apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","திடுக்கிடும் செயல்கள் (எ.கா., ஒப்புதல் ரத்து ) ." DocType: Data Import,Skip rows with errors,பிழைகளுடன் வரிசைகள் தவிர் DocType: Workflow State,flag,கொடி @@ -2082,7 +2153,7 @@ DocType: Post Comment,Post Comment,கருத்து தெரிவி apps/frappe/frappe/config/core.py,Documents,ஆவணங்கள் apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,செயல்பாடு பதிவு DocType: Social Login Key,Custom Base URL,தனிப்பயன் அடிப்படை URL -DocType: Email Flag Queue,Is Completed,நிறைவுபெற்றது +DocType: Onboarding Slide,Is Completed,நிறைவுபெற்றது apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,புலங்களைப் பெறுங்கள் apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,திருத்து DocType: Kanban Board Column,Archived,காப்பகப்படுத்தியவை @@ -2093,12 +2164,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",இங்கே வரையறுக்கப்பட்ட FIELDNAME மதிப்பு உள்ளது அல்லது விதிகள் உண்மை (உதாரணங்கள்) இருந்தால் மட்டுமே இந்த துறையில் தோன்றும்: myfield eval: doc.myfield == 'என் வேல்யூ' eval: doc.age> 18 DocType: Social Login Key,Office 365,அலுவலகம் 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,இன்று -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,இன்று +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,இன்று +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,இன்று apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","நீங்கள் இந்த அமைக்க வேண்டும் ஒருமுறை , பயனர்கள் மட்டுமே முடியும் அணுகல் ஆவணங்களை இணைப்பு உள்ளது, அங்கு (எ.கா. வலைப்பதிவு போஸ்ட் ) (எ.கா. Blogger) இருக்கும்." DocType: Data Import Beta,Submit After Import,இறக்குமதி செய்த பிறகு சமர்ப்பிக்கவும் DocType: Error Log,Log of Scheduler Errors,திட்டமிடுதல் பிழைகள் பரிசீலனை DocType: User,Bio,உயிரி +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ஆன் போர்டிங் ஸ்லைடு உதவி இணைப்பு DocType: OAuth Client,App Client Secret,பயன்பாட்டை வாடிக்கையாளர் இரகசிய apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,சமர்ப்பிக்கும் apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,தரவு சேர்க்கப்படும் ஆவணத்தின் பெயர் பெற்றோர். @@ -2106,7 +2178,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,மேல் வழக்கு apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,விருப்ப HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,கோப்புறை பெயரை உள்ளிடுக -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி வார்ப்புரு இல்லை. அமைவு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து புதிய ஒன்றை உருவாக்கவும். apps/frappe/frappe/auth.py,Unknown User,தெரியாத பயனர் apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,பங்கு தேர்வு DocType: Comment,Deleted,நீக்கப்பட்ட @@ -2122,7 +2193,7 @@ DocType: Chat Token,Chat Token,அரட்டை டோக்கன் apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,விளக்கப்படத்தை உருவாக்கவும் apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,இறக்குமதி செய்ய வேண்டாம் -DocType: Web Page,Center,மையம் +DocType: Onboarding Slide Field,Center,மையம் DocType: Notification,Value To Be Set,மதிப்பு அமைக்க apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,முதல் நிலை @@ -2130,7 +2201,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,தரவுத்தள பெயர் apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,புதுப்பி படிவம் DocType: DocField,Select,தேர்ந்தெடு -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,முழு பதிவையும் காண்க +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,முழு பதிவையும் காண்க DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","எளிய பைதான் வெளிப்பாடு, எடுத்துக்காட்டு: நிலை == 'திற' மற்றும் தட்டச்சு == 'பிழை'" apps/frappe/frappe/utils/csvutils.py,File not attached,கோப்பு இணைக்கப்பட்ட இல்லை apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,தொடர்பு துண்டிக்கப்பட்டது. சில அம்சங்கள் வேலை செய்யாமல் போகலாம். @@ -2162,6 +2233,7 @@ DocType: Web Page,HTML for header section. Optional,தலைப்பு பக apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,இந்த அம்சம் புதிய மற்றும் இன்னும் பரிசோதனையில் உள்ளது apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,அதிகபட்ச {0} வரிசைகள் அனுமதி DocType: Dashboard Chart Link,Chart,விளக்கப்படம் +DocType: Scheduled Job Type,Cron,கிரான் DocType: Email Unsubscribe,Global Unsubscribe,குளோபல் குழுவிலகலைப் apps/frappe/frappe/utils/password_strength.py,This is a very common password.,இந்த ஒரு மிகவும் பொதுவான கடவுச்சொல். apps/frappe/frappe/email/doctype/email_group/email_group.js,View,காண்க @@ -2178,6 +2250,7 @@ DocType: Data Migration Connector,Hostname,ஹோஸ்ட்பெயர் DocType: Data Migration Mapping,Condition Detail,நிபந்தனை விரிவாக apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","நாணய {0} க்கு, குறைந்தபட்ச பரிவர்த்தனை தொகை {1}" DocType: DocField,Print Hide,மறை அச்சிட +DocType: System Settings,HH:mm:ss,ஹெச்ஹெச் நிமிடம்: வினாடி apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,பயனருக்கு apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,மதிப்பு சேர்க்கவும் DocType: Workflow State,tint,இலேசான நிறம் @@ -2242,6 +2315,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,தேதி apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,செய்யவேண்டியவை சேர்க்க DocType: Footer Item,Company,நிறுவனம் apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},சராசரி {0} +DocType: Scheduled Job Log,Scheduled,திட்டமிடப்பட்ட DocType: User,Logout from all devices while changing Password,கடவுச்சொல்லை மாற்றும்போது எல்லா சாதனங்களிலிருந்து வெளியேறும் apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,கடவுச்சொல் சரிபார்க்கவும் apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,பிழைகள் உள்ளன @@ -2266,7 +2340,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,பயனர் அனுமதி ஏற்கனவே உள்ளது apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} காண்க -DocType: User,Hourly,மணிக்கொருமுறை +DocType: Scheduled Job Type,Hourly,மணிக்கொருமுறை apps/frappe/frappe/config/integrations.py,Register OAuth Client App,பதிவு OAuth கிளையன்ட் ஆப் DocType: DocField,Fetch If Empty,காலியாக இருந்தால் பெறவும் DocType: Data Migration Connector,Authentication Credentials,அங்கீகார சான்றுகள் @@ -2276,10 +2350,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,புள்ளி DocType: SMS Settings,SMS Gateway URL,எஸ்எம்எஸ் வாயில் URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} இருக்க முடியாது ""{2}"". இது ""{3}"" ஒன்றாக இருக்க வேண்டும்" apps/frappe/frappe/utils/data.py,{0} or {1},{0} அல்லது {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,நீங்கள் அனைவரும் அமைக்கப்பட்டிருக்கிறீர்கள்! DocType: Workflow State,trash,குப்பைக்கு DocType: System Settings,Older backups will be automatically deleted,பழைய காப்பு தானாகவே நீக்கப்படும் apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,தவறான அணுகல் விசை ஐடி அல்லது இரகசிய அணுகல் விசை. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,நீங்கள் சில ஆற்றல் புள்ளிகளை இழந்தீர்கள் DocType: Post,Is Globally Pinned,உலகளாவிய பின்தங்கியுள்ளது apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,சமீபத்திய நடவடிக்கை DocType: Workflow Transition,Conditions,நிபந்தனைகள் @@ -2288,6 +2362,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,உறுத DocType: Event,Ends on,முனைகளில் DocType: Payment Gateway,Gateway,நுழைவாயில் DocType: LDAP Settings,Path to Server Certificate,சேவையக சான்றிதழுக்கான பாதை +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,உங்கள் உலாவியில் ஜாவாஸ்கிரிப்ட் முடக்கப்பட்டுள்ளது apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,இணைப்புகளைப் பார்க்கவும் போதுமான அனுமதி apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,இணைப்புகளைப் பார்க்கவும் போதுமான அனுமதி apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,முகவரி தலைப்பு கட்டாயமாகும். @@ -2306,7 +2381,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,EU-மேற்கு-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","இது சரிபார்க்கப்பட்டால், செல்லுபடியாகும் தரவின் வரிசைகள் இறக்குமதி செய்யப்படும் மற்றும் செல்லாத வரிசைகள் பின்னர் நீங்கள் இறக்குமதி செய்ய ஒரு புதிய கோப்பில் போடப்படும்." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ஆவண பங்கு பயனர்கள் மட்டுமே திருத்தக்கூடிய -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",நீங்கள் {1} மூலம் {2} மூடப்பட்டுள்ளது ஒதுக்கப்படும் என்று பணி {0}. DocType: Print Format,Show Line Breaks after Sections,பிரிவுகள் பிறகு வரி காட்டு பிரேக்ஸ் DocType: Communication,Read by Recipient On,பெறுநரால் படிக்கவும் DocType: Blogger,Short Name,குறுகிய பெயர் @@ -2339,6 +2413,7 @@ DocType: Translation,PR sent,பி.ஆர் அனுப்பப்பட் DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ரெக்கார்ட்ஸ் மட்டும் கடைசி எக்ஸ் ஹவர்ஸ்சில் புதுப்பிக்கப்பட்ட அனுப்பு DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ரெக்கார்ட்ஸ் மட்டும் கடைசி எக்ஸ் ஹவர்ஸ்சில் புதுப்பிக்கப்பட்ட அனுப்பு DocType: Communication,Feedback,கருத்து +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,புதிய பதிப்பிற்கு புதுப்பிக்கப்பட்டது apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,மொழிபெயர்ப்பு திறக்க apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,இந்த மின்னஞ்சல் autogenerated DocType: Workflow State,Icon will appear on the button,ஐகான் பொத்தானை தோன்றும் @@ -2376,6 +2451,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,பக் DocType: DocField,Precision,துல்லிய DocType: Website Slideshow,Slideshow Items,எஸ் உருப்படிகள் apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,மீண்டும் மீண்டும் வார்த்தைகள் மற்றும் பாத்திரங்கள் தவிர்க்க முயற்சி +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,அறிவிப்புகள் முடக்கப்பட்டன +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,எல்லா வரிசைகளையும் நீக்க விரும்புகிறீர்களா? DocType: Workflow Action,Workflow State,பணியோட்டம் மாநிலம் apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,வரிசைகள் சேர்க்கப்பட்டது apps/frappe/frappe/www/list.py,My Account,எனது கணக்கு @@ -2384,6 +2461,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,நாட்கள் apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ தட்டு இணைப்பு செயலில் உள்ளது! DocType: Contact Us Settings,Settings for Contact Us Page,எங்களை பக்கம் அமைப்புகள் +DocType: Server Script,Script Type,ஸ்கிரிப்ட் வகை DocType: Print Settings,Enable Print Server,அச்சு சேவையகத்தை இயக்கு apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} வாரங்களுக்கு முன்பு DocType: Email Account,Footer,அடிக்குறிப்பு @@ -2408,8 +2486,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,எச்சரிக்கை apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,இது பல பக்கங்களில் அச்சிடப்படலாம் DocType: Data Migration Run,Percent Complete,சதவீதம் முடிந்தது -DocType: Tag Category,Tag Category,டேக் வகை -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ஒப்பிட,> 5, <10 அல்லது = 324 ஐப் பயன்படுத்தவும். வரம்புகளுக்கு, 5:10 ஐப் பயன்படுத்தவும் (5 & 10 க்கு இடையிலான மதிப்புகளுக்கு)." DocType: Google Calendar,Pull from Google Calendar,Google கேலெண்டரிலிருந்து இழுக்கவும் apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,உதவி DocType: User,Login Before,உள்நுழைவு முன் @@ -2419,17 +2495,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,வார இறுதிகளை மறை apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,தொடர்ச்சியான ஆவணங்களை தானாக உருவாக்குகிறது. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,இருக்கிறது +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,தகவல்-அறிகுறி apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ஒரு பட்டியல் இருக்க முடியாது மதிப்பு DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","எப்படி இந்த நாணய வடிவமைக்க வேண்டும்? அமைக்கவில்லை எனில், கணினி இயல்புநிலைகளை பயன்படுத்தும்" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ஆவணங்களை {0} சமர்ப்பிக்கவா? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,நீங்கள் உள்நுழைந்திருக்க மற்றும் காப்பு அணுக முடியும் கணினி மேலாளர் பங்கு பெற்றிருக்க வேண்டும் . +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ தட்டு பயன்பாட்டுடன் இணைப்பதில் பிழை ... <br><br> மூல அச்சு அம்சத்தைப் பயன்படுத்த நீங்கள் QZ தட்டு பயன்பாட்டை நிறுவி இயக்க வேண்டும். <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ தட்டில் பதிவிறக்கி நிறுவ இங்கே கிளிக் செய்க</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">மூல அச்சிடுதல் பற்றி மேலும் அறிய இங்கே கிளிக் செய்க</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,அச்சுப்பொறி மேப்பிங் apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,இணைக்கிறேன் முன் சேமிக்க கொள்ளவும். +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,இணைக்கப்பட்ட அனைத்து ஆவணங்களையும் ரத்து செய்ய விரும்புகிறீர்களா? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),சேர்க்கப்பட்டது {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},துறை வகை செய்ய {0} இருந்து {1} வரிசையில் {2} மாற்ற முடியாது apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,அனுமதிகள் DocType: Help Article,Intermediate,இடைநிலை +apps/frappe/frappe/config/settings.py,Email / Notifications,மின்னஞ்சல் / அறிவிப்புகள் apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} ஐ {2} ஆக மாற்றியது apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,ரத்து செய்யப்பட்ட ஆவணம் வரைவு என மீட்டெடுக்கப்பட்டது DocType: Data Migration Run,Start Time,தொடக்க நேரம் @@ -2445,6 +2525,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,தவறான பெறுநர் முகவரி DocType: Workflow State,step-forward,படி-முன்னோக்கி DocType: System Settings,Allow Login After Fail,தோல்வியடைந்த பிறகு புகுபதிகை அனுமதி +DocType: DocType Link,DocType Link,டாக் டைப் இணைப்பு DocType: Role Permission for Page and Report,Set Role For,அதே கதாபாத்திரத்தை அமை DocType: GCalendar Account,The name that will appear in Google Calendar,Google Calendar இல் தோன்றும் பெயர் apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} உடனடி அறை ஏற்கனவே உள்ளது. @@ -2462,6 +2543,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ஒரு DocType: Contact,Google Contacts,Google தொடர்புகள் DocType: GCalendar Account,GCalendar Account,GCalendar கணக்கு DocType: Email Rule,Is Spam,பழுதான உள்ளது +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,கடந்த apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},அறிக்கையில் {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},திறந்த {0} DocType: Data Import Beta,Import Warnings,இறக்குமதி எச்சரிக்கைகள் @@ -2473,6 +2555,7 @@ DocType: Workflow State,ok-sign,"சரி, அறிகுறி" apps/frappe/frappe/config/settings.py,Deleted Documents,நீக்கப்பட்ட ஆவணங்கள் apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,சி.எஸ்.வி. வடிவமைப்பு மிகவும் முக்கியமானது apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,மேசை ஐகான் ஏற்கனவே உள்ளது +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"ஸ்லைடுகள் காண்பிக்கப்பட வேண்டிய எல்லா களங்களிலும் குறிப்பிடவும். எதுவும் குறிப்பிடப்படவில்லை எனில், எல்லா களங்களிலும் இயல்பாக ஸ்லைடு காட்டப்படும்." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,நகல் DocType: Newsletter,Create and Send Newsletters,உருவாக்க மற்றும் அனுப்பவும் செய்தி apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,உங்கள் கருத்துக்கு நன்றி. இது ஒப்புதலுக்குப் பிறகு வெளியிடப்படும் @@ -2482,6 +2565,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google கேலெண்டர் நிகழ்வு ஐடி apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""பெற்றோர்,"" இந்த வரிசையில் சேர்க்க வேண்டும் இதில் பெற்றோர் அட்டவணை குறிக்கிறது" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,மதிப்பாய்வு புள்ளிகள்: +DocType: Scheduled Job Log,Scheduled Job Log,திட்டமிடப்பட்ட வேலை பதிவு +DocType: Server Script,Before Delete,நீக்குவதற்கு முன் apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,இவர்களுடன் பகிரப்பட்டது apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,கோப்புகள் / URL களை இணைக்கவும் மற்றும் அட்டவணையில் சேர்க்கவும். apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,செய்தி அமைக்கப்படவில்லை @@ -2505,19 +2590,20 @@ DocType: About Us Settings,Settings for the About Us Page,பற்றி எங apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,கோடுகள் கட்டணம் நுழைவாயில் அமைப்புகளை apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,கோடுகள் கட்டணம் நுழைவாயில் அமைப்புகளை apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,அச்சு அச்சுப்பொறிக்கு அனுப்பப்பட்டது! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,ஆற்றல் புள்ளிகள் +DocType: Notification Settings,Energy Points,ஆற்றல் புள்ளிகள் DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,எ.கா. pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,விசைகளை உருவாக்கவும் apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,இது உங்கள் தரவை நிரந்தரமாக அகற்றும். DocType: DocType,View Settings,காண்க அமைப்புகள் +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,புதிய அறிவிப்பு DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,கோரிக்கை அமைப்பு +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,கட்டுப்படுத்தி முறை get_razorpay_order காணவில்லை DocType: Personal Data Deletion Request,Pending Verification,சரிபார்ப்பு நிலுவையில் உள்ளது DocType: Website Meta Tag,Website Meta Tag,வலைத்தள மெட்டா டேக் DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","அல்லாத நிலையான துறை (எ.கா. 587). Google கிளவுட் இல் இருந்தால், போர்ட் 2525 ஐ முயற்சிக்கவும்." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",வெளியிடப்பட்ட பக்கங்களுக்கு கடந்த காலத்தில் இருக்க முடியாது என முடிவுறும் தேதி முடிவுசெய்கிறது. DocType: User,Send Me A Copy of Outgoing Emails,அனுப்புதல் மின்னஞ்சல்களின் ஒரு நகலை அனுப்புங்கள் -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. மேலும் தகவலுக்கு, Google அனலிட்டிக்ஸ் குறித்த உதவி தேட வேண்டும்." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,கடவுச்சொல் 100 க்கும் மேற்பட்ட எழுத்துகள் இருக்க முடியாது DocType: OAuth Client,App Client ID,ஆப் கிளையன்ட் ஐடி @@ -2546,6 +2632,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,புதி apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} இந்த ஆவணத்தில் பகிர்வு {1} DocType: Website Settings,Brand Image,பிராண்ட் இமேஜ் DocType: Print Settings,A4,ஏ 4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,இறக்குமதி வார்ப்புருவில் ஒரு தலைப்பு மற்றும் குறைந்தபட்சம் ஒரு வரிசை இருக்க வேண்டும். apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google கேலெண்டர் உள்ளமைக்கப்பட்டுள்ளது. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","மேல் திசை பட்டையில், பூட்டர் மற்றும் லோகோ அமைப்பு." DocType: Web Form Field,Max Value,அதிகபட்சம் மதிப்பு @@ -2554,6 +2641,7 @@ DocType: Auto Repeat,Preview Message,முன்னோட்ட செய்த DocType: User Social Login,User Social Login,பயனர் சமூக தேதி DocType: Contact,All,அனைத்து DocType: Email Queue,Recipient,பெறுபவர் +DocType: Webhook,Webhook Security,வெப்ஹூக் பாதுகாப்பு DocType: Communication,Has Attachment,இணைப்பு உள்ளது DocType: Address,Sales User,விற்பனை பயனர் apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,இழுத்தல் மற்றும் கருவி உருவாக்க மற்றும் அச்சு வடிவங்கள் தனிப்பயனாக்கலாம். @@ -2646,14 +2734,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,இணைய ப பெ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,சுய ஒப்புதல் அனுமதிக்கப்படாது DocType: GSuite Templates,Template ID,டெம்ப்ளேட் ஐடி apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,கிராண்ட் வகை இணைத்தல் ( <code>{0}</code> ) மற்றும் பதில் வகை ( <code>{1}</code> ) அனுமதிக்கப்படாது -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} இலிருந்து புதிய செய்தி DocType: Portal Settings,Default Role at Time of Signup,இணைந்ததற்கு சமயத்தில் இயல்புநிலை பாத்திரம் DocType: DocType,Title Case,தலைப்பு வழக்கு apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,உங்கள் தரவைப் பதிவிறக்க கீழேயுள்ள இணைப்பைக் கிளிக் செய்க apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},பயனருக்கான மின்னஞ்சல் இன்பாக்ஸை இயக்கப்பட்டது {0} DocType: Data Migration Run,Data Migration Run,தரவு நகர்வு இயக்கவும் DocType: Blog Post,Email Sent,மின்னஞ்சல் அனுப்பப்பட்டது -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,பழைய DocType: DocField,Ignore XSS Filter,XSS என வடிகட்டி புறக்கணி apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,அகற்றப்பட்டது apps/frappe/frappe/config/integrations.py,Dropbox backup settings,டிராப்பாக்ஸ் காப்பு அமைப்புகளை @@ -2707,6 +2793,7 @@ DocType: Async Task,Queued,வரிசைப்படுத்திய DocType: Braintree Settings,Use Sandbox,சாண்ட்பாக்ஸினைப் பயன்படுத்தவும் apps/frappe/frappe/utils/goal.py,This month,இந்த மாதம் apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,புதிய தனிபயன் அச்சு வடிவம் +DocType: Server Script,Before Save (Submitted Document),சேமிப்பதற்கு முன் (சமர்ப்பிக்கப்பட்ட ஆவணம்) DocType: Custom DocPerm,Create,உருவாக்கு apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,காண்பிக்க கூடுதல் உருப்படிகள் இல்லை apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,முந்தைய பதிவுக்குச் செல்லவும் @@ -2763,6 +2850,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,குப்பைக்கு நகர்த்து DocType: Web Form,Web Form Fields,வலை படிவம் புலங்கள் DocType: Data Import,Amended From,முதல் திருத்தப்பட்ட +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,ஸ்லைடில் எதை நிரப்புவது என்பது பற்றி பயனருக்கு தெரியாவிட்டால் உதவி வீடியோ இணைப்பைச் சேர்க்கவும். apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},எச்சரிக்கை: முடியவில்லை கண்டுபிடிக்க {0} தொடர்பான எந்த அட்டவணையில் {1} DocType: S3 Backup Settings,eu-north-1,EU-வடக்கு-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,இந்த ஆவணத்தை தற்போது மரணதண்டனை வரிசைப்படுத்தப்பட்டது. தயவு செய்து மீண்டும் முயற்சிக்கவும் @@ -2784,6 +2872,7 @@ DocType: Blog Post,Blog Post,வலைப்பதிவு இடுகை DocType: Access Log,Export From,இருந்து ஏற்றுமதி apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,மேம்பட்ட தேடல் apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,செய்திமலை பார்க்க நீங்கள் அனுமதி இல்லை. +DocType: Dashboard Chart,Group By,குழு மூலம் DocType: User,Interests,ஆர்வம் apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,கடவுச்சொல் மீட்டமைப்பு வழிமுறைகளை உங்கள் மின்னஞ்சல் அனுப்பப்படும் DocType: Energy Point Rule,Allot Points To Assigned Users,ஒதுக்கப்பட்ட பயனர்களுக்கு புள்ளிகள் ஒதுக்குங்கள் @@ -2799,6 +2888,7 @@ DocType: Assignment Rule,Assignment Rule,ஒதுக்கீட்டு வ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},பரிந்துரைக்கப்படும் பயனர் பெயர்: {0} DocType: Assignment Rule Day,Day,தினம் apps/frappe/frappe/public/js/frappe/desk.js,Modules,தொகுதிகள் +DocType: DocField,Mandatory Depends On,கட்டாயத்தைப் பொறுத்தது apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,கட்டணம் வெற்றி apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,இல்லை {0} மெயில் DocType: OAuth Bearer Token,Revoked,திரும்பப் பெறப்பட்டது @@ -2806,6 +2896,7 @@ DocType: Web Page,Sidebar and Comments,பக்கப்பட்டி மற apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","நீங்கள் பின்னர் ரத்து மற்றும் அதை காப்பாற்ற ஒரு ஆவணத்தை திருத்தம் போது, அது பழைய எண் ஒரு பதிப்பு என்று ஒரு புதிய எண் கிடைக்கும் ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} ஆவணத்தை இணைக்க அனுமதி இல்லை, அச்சிடு அமைப்புகளில் {0} க்கான அச்சு அனுமதிக்கவும்" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும் apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ஆவணத்தை {0} DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி @@ -2820,6 +2911,7 @@ DocType: Currency,Fraction,பின்னம் apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,நிகழ்வு Google காலெண்டருடன் ஒத்திசைக்கப்பட்டது. DocType: LDAP Settings,LDAP First Name Field,"LDAP, முதல் பெயர் களம்" DocType: Contact,Middle Name,மத்திய பெயர் +DocType: DocField,Property Depends On,சொத்து சார்ந்தது DocType: Custom Field,Field Description,புலம் விளக்கம் apps/frappe/frappe/model/naming.py,Name not set via Prompt,உடனடியாக கட்டளை வழியாக அமைக்க இல்லை பெயர் apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,மின்னஞ்சல் இன்பாக்ஸ் @@ -2865,11 +2957,11 @@ DocType: Workflow State,folder-close,கோப்புறையை-மூட apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,அறிக்கை: DocType: Print Settings,Print taxes with zero amount,பூஜ்யம் அளவு கொண்ட வரிகளை அச்சிடு apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} பெயர் மாற்றம் செய்ய அனுமதி இல்லை +DocType: Server Script,Before Insert,செருகுவதற்கு முன் DocType: Custom Script,Custom Script,தனிப்பயன் உரை DocType: Address,Address Line 2,முகவரி வரி 2 DocType: Address,Reference,குறிப்பு apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,ஒதுக்கப்படும் -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும் DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,தரவு இடமாற்றம் மேப்பிங் விரிவாக DocType: Data Import,Action,செயல் DocType: GSuite Settings,Script URL,ஸ்கிரிப்ட் URL @@ -2896,11 +2988,13 @@ DocType: User,Api Access,ஏபி அணுகல் DocType: DocField,In List View,பட்டியல் பார்வை DocType: Email Account,Use TLS,TLS பயன்படுத்தவும் apps/frappe/frappe/email/smtp.py,Invalid login or password,தவறான உள்நுழைவு அல்லது கடவுச்சொல்லை +DocType: Scheduled Job Type,Weekly Long,வாராந்திர நீண்ட apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,வார்ப்புரு பதிவிறக்க apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,வடிவங்கள் விருப்ப JavaScript சேர்க்கவும். ,Role Permissions Manager,பங்கு அனுமதிகள் மேலாளர் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,புதிய அச்சு வடிவம் பெயர் apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,பக்கப்பட்டி மாறு +DocType: Server Script,After Save (Submitted Document),சேமித்த பிறகு (சமர்ப்பிக்கப்பட்ட ஆவணம்) DocType: Data Migration Run,Pull Insert,செருகவும் DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",பெருக்கி மதிப்புடன் புள்ளிகளைப் பெருக்கி பிறகு அதிகபட்ச புள்ளிகள் அனுமதிக்கப்படுகின்றன (குறிப்பு: எந்த வரம்பும் இல்லாமல் இந்த புலத்தை காலியாக விடவும் அல்லது 0 ஐ அமைக்கவும்) @@ -2918,6 +3012,7 @@ DocType: User Permission,User Permission,பயனர் அனுமதி apps/frappe/frappe/templates/includes/blog/blog.html,Blog,வலைப்பதிவு apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,"LDAP, நிறுவப்படவில்லை" apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,தரவு பதிவிறக்க +DocType: Server Script,Before Cancel,ரத்து செய்வதற்கு முன் DocType: Workflow State,hand-right,கையை வலது DocType: Website Settings,Subdomain,சப்டொமைன் DocType: S3 Backup Settings,Region,பகுதி @@ -2963,12 +3058,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,பழைய கடவ DocType: S3 Backup Settings,us-east-1,எங்களுக்கு கிழக்கு-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},பதிவுகள் {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",", பத்திகள் வடிவமைக்க கேள்வியை நிரலை அடையாளங்கள் கொடுக்க. செய்ய" +DocType: Onboarding Slide,Slide Fields,புலங்களை ஸ்லைடு DocType: Has Domain,Has Domain,டொமைன் உள்ளது DocType: User,Allowed In Mentions,குறிப்புகளில் அனுமதிக்கப்பட்டது apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ஒரு கணக்கு இல்லையா? பதிவு apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID களத்தை அகற்ற முடியவில்லை apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : ஒதுக்கு திருத்தம் அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லை என்றால் DocType: Address,Bihar,பீகார் +DocType: Notification Settings,Subscribed Documents,சந்தா ஆவணங்கள் apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,பயனர் அமைப்புகள் DocType: Report,Reference Report,குறிப்பு அறிக்கை DocType: Activity Log,Link DocType,"இணைப்பு @@ -2987,6 +3084,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google கேலெண apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,நீங்கள் தேடும் பக்கம் காணவில்லை. ஏனெனில் அது நகர்த்தப்படும் அல்லது இணைப்பு ஆகியவை இடம் பெற்றுள்ளன டைபோ உள்ளது இருக்கலாம். apps/frappe/frappe/www/404.html,Error Code: {0},பிழை குறியீடு: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","வெற்று உரையாக பட்டியல் பக்கம் விளக்கங்களும், வரிகளை மட்டும் ஒரு ஜோடி. (அதிகபட்சம் 140 எழுத்துக்கள்)" +DocType: Server Script,DocType Event,டாக் டைப் நிகழ்வு apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} கட்டாய புலங்கள் DocType: Workflow,Allow Self Approval,சுய ஒப்புதல் அனுமதி DocType: Event,Event Category,நிகழ்வு வகை @@ -3003,6 +3101,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,உங்கள் பெயர் apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,இணைப்பு வெற்றி DocType: DocType,InnoDB,InnoDB என்ற +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ஸ்லைடு வகையின் ஆன் போர்டிங் ஸ்லைடு தொடரவும் ஏற்கனவே உள்ளது. DocType: DocType,Default Sort Field,இயல்புநிலை வரிசை புலம் DocType: File,Is Folder,அடைவு DocType: Document Follow,DocType,DOCTYPE @@ -3040,7 +3139,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,மத DocType: Workflow State,arrow-up,அம்புக்குறி அப் DocType: Dynamic Link,Link Document Type,இணைப்பு ஆவண வகை apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} அட்டவணைக்கு குறைந்தபட்சம் ஒரு வரிசை இருக்க வேண்டும் +DocType: Server Script,Server Script,சேவையக ஸ்கிரிப்ட் DocType: OAuth Bearer Token,Expires In,காலாவதியாகிறது +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","புலங்களின் தொகுப்பை நீங்கள் மீண்டும் செய்ய விரும்பும் நேரங்கள் (எ.கா.: ஸ்லைடில் 3 வாடிக்கையாளர்களை நீங்கள் விரும்பினால், இந்த புலத்தை 3 ஆக அமைக்கவும். முதல் புலங்கள் மட்டுமே ஸ்லைடில் கட்டாயமாகக் காட்டப்படுகின்றன)" DocType: DocField,Allow on Submit,சமர்ப்பி மீது அனுமதிக்க DocType: DocField,HTML,"HTML," DocType: Error Snapshot,Exception Type,விதிவிலக்கு வகை @@ -3050,6 +3151,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,தலைப்புகளிலும் apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,எதிர்வரும் நிகழ்வுகள் apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,தயவு செய்து ஆப் அணுகல் விசை மற்றும் ஆப் இரகசிய விசை மதிப்புகள் உள்ளிடவும் +DocType: Email Account,Append Emails to Sent Folder,அனுப்பிய கோப்புறையில் மின்னஞ்சல்களைச் சேர்க்கவும் DocType: Web Form,Accept Payment,பணம் ஏற்க apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,பட்டியல் உருப்படியைத் தேர்ந்தெடுக்கவும் apps/frappe/frappe/config/core.py,A log of request errors,கோரிக்கை பிழைகளை பற்றிய பதிவு @@ -3069,7 +3171,7 @@ DocType: Translation,Contributed,பங்களிப்பு apps/frappe/frappe/config/customization.py,Form Customization,படிவம் தனிப்பயனாக்கம் apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,செயலில் அமர்வு இல்லை DocType: Web Form,Route to Success Link,வெற்றி இணைப்புக்கு வழி -DocType: Top Bar Item,Right,சரியான +DocType: Onboarding Slide Field,Right,சரியான apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,வரவிருக்கும் நிகழ்வுகள் இல்லை DocType: User,User Type,பயனர் வகை DocType: Prepared Report,Ref Report DocType,RefT Doc அறிக்கை @@ -3086,6 +3188,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,தயவு ச apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' அல்லது 'https: //' உடன் தொடங்கப்பட வேண்டும் apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,விருப்பம் 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,இதை முடிக்காமல் விட கூடாது DocType: Workflow State,Edit,திருத்த DocType: Website Settings,Chat Operators,அரட்டை இயக்கிகள் DocType: S3 Backup Settings,ca-central-1,CA-மத்திய-1 @@ -3097,7 +3200,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,நீங்கள் இந்த படிவத்தை சேமிக்கப்படாத மாற்றங்கள் உள்ளன . DocType: Address,Telangana,தெலுங்கானா apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} ஒரு விருப்பத்தை இருக்க வேண்டும் இயல்புநிலை -DocType: Tag Doc Category,Tag Doc Category,டேக் டாக் பகுப்பு apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 க்கும் மேற்பட்ட நெடுவரிசைகளைக் கொண்ட அறிக்கை லேண்ட்ஸ்கேப் பயன்முறையில் சிறப்பாகத் தெரிகிறது. apps/frappe/frappe/database/database.py,Invalid field name: {0},தவறான புலத்தின் பெயர்: {0} DocType: Milestone,Milestone,மைல் கல் @@ -3106,7 +3208,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} க்குச apps/frappe/frappe/email/queue.py,Emails are muted,மின்னஞ்சல்கள் முடக்கியது apps/frappe/frappe/config/integrations.py,Google Services,Google சேவைகள் apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl-அப் -apps/frappe/frappe/utils/data.py,1 weeks ago,1 வாரத்திற்கு முன் +DocType: Onboarding Slide,Slide Description,ஸ்லைடு விளக்கம் DocType: Communication,Error,பிழை apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,முதலில் ஒரு செய்தியை அமை DocType: Auto Repeat,End Date,இறுதி நாள் @@ -3127,10 +3229,12 @@ DocType: Footer Item,Group Label,குழு லேபிள் DocType: Kanban Board,Kanban Board,கான்பன் வாரியம் apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google தொடர்புகள் உள்ளமைக்கப்பட்டுள்ளன. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 பதிவு ஏற்றுமதி செய்யப்படும் +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,பயனருடன் மின்னஞ்சல் கணக்கு எதுவும் இல்லை. பயனர்> மின்னஞ்சல் இன்பாக்ஸின் கீழ் ஒரு கணக்கைச் சேர்க்கவும். DocType: DocField,Report Hide,மறை அறிக்கை apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},மரம் காண்க கிடைக்கவில்லை {0} DocType: DocType,Restrict To Domain,களத்தில் இருப்பவர்களுக்குத் கட்டுப்படுத்து DocType: Domain,Domain,டொமைன் +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,தவறான கோப்பு URL. கணினி நிர்வாகியைத் தொடர்பு கொள்ளவும். DocType: Custom Field,Label Help,லேபிள் உதவி DocType: Workflow State,star-empty,நட்சத்திர-காலியாக apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,தேதிகள் அடிக்கடி எளிதாக யூகிக்கலாம். @@ -3154,6 +3258,7 @@ DocType: Workflow State,hand-left,கையை இடது DocType: Data Import,If you are updating/overwriting already created records.,நீங்கள் முன்பே உருவாக்கிய பதிவுகளை புதுப்பித்துக்கொள்வதன் / மீட்டெடுத்தால். apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,உலகளாவியது DocType: Email Account,Use SSL,SSL பயன்படுத்த +DocType: Webhook,HOOK-.####,கொக்கி -. #### DocType: Workflow State,play-circle,விளையாட்டு வட்டம் apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ஆவணத்தை சரியாக ஒதுக்க முடியவில்லை apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",தவறான "depends_on" வெளிப்பாடு @@ -3170,6 +3275,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,கடைசியாக புதுப்பிக்கப்பட்டது apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ஆவண வகைக்கு DocType: Workflow State,arrow-right,அம்பு வலது +DocType: Server Script,API Method,API முறை DocType: Workflow State,Workflow state represents the current state of a document.,அகச்சிவப்புக் அரசு ஒரு ஆவணம் தற்போதைய நிலை பிரதிபலிக்கிறது. DocType: Letter Head,Letter Head Based On,கடிதம் தலை அடிப்படையில் apps/frappe/frappe/utils/oauth.py,Token is missing,டோக்கன் காணவில்லை @@ -3208,6 +3314,7 @@ DocType: Comment,Relinked,மீண்டும் இணைக்கப்ப DocType: Print Settings,Compact Item Print,காம்பாக்ட் பொருள் அச்சு DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL ஐ திருப்பி +DocType: Onboarding Slide Field,Placeholder,ஒதுக்கிட DocType: SMS Settings,Enter url parameter for receiver nos,ரிசீவர் இலக்கங்கள் URL ஐ அளவுரு உள்ளிடவும் DocType: Chat Profile,Online,ஆன்லைன் DocType: Email Account,Always use Account's Name as Sender's Name,கணக்கின் பெயரை அனுப்புநரின் பெயராக எப்போதும் பயன்படுத்தவும் @@ -3217,7 +3324,6 @@ DocType: Workflow State,Home,வீட்டில் DocType: OAuth Provider Settings,Auto,வாகன DocType: System Settings,User can login using Email id or User Name,பயனர் மின்னஞ்சல் ஐடி அல்லது பயனர் பெயர் பயன்படுத்தி உள்நுழைய முடியும் DocType: Workflow State,question-sign,கேள்வி குறி -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} முடக்கப்பட்டுள்ளது apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",வலை பார்வைகளுக்கான புலம் "பாதை" கட்டாயமாகும் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} முன் வரிசை செருகவும் DocType: Energy Point Rule,The user from this field will be rewarded points,இந்த புலத்திலிருந்து பயனருக்கு வெகுமதி புள்ளிகள் வழங்கப்படும் @@ -3242,6 +3348,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,உரிமைய DocType: Data Migration Mapping,Push,புஷ் apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,கோப்புகளை இங்கே விடுங்கள் DocType: OAuth Authorization Code,Expiration time,காலாவதியாகும் நேரம் +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,திறந்த ஆவணங்கள் DocType: Web Page,Website Sidebar,இணையத்தளம் பக்கப்பட்டி DocType: Web Form,Show Sidebar,பக்கப்பட்டி காட்டு apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"இந்த அணுகுவதற்கு, வெளியேற்ற வேண்டும் {0}." @@ -3292,6 +3399,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,வடிவமைப்பு அச்சிட apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,கிரிட் காட்சியை மாற்று apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,அடுத்த பதிவுக்குச் செல்லவும் +DocType: System Settings,Time Format,நேர அமைப்பு apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,தவறான கட்டணம் நுழைவாயில் சான்றுகளை DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,இது சில பிழைகளை கொண்ட வரிசைகள் மட்டுமே உருவாக்கப்பட்ட டெம்ப்ளேட் கோப்பாகும். இந்த கோப்பை திருத்தி மற்றும் இறக்குமதி செய்ய நீங்கள் பயன்படுத்த வேண்டும். apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ஆவண வகைகள் மற்றும் பாத்திரங்களை அமைக்க அனுமதி @@ -3335,12 +3443,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,பதி apps/frappe/frappe/config/core.py,Pages in Desk (place holders),மையம் பக்கங்கள் (இடத்தில் வைத்திருப்பவர்கள்) DocType: DocField,Collapsible Depends On,மடக்கு பொறுத்தது DocType: Print Style,Print Style Name,அச்சு பெயரை அச்சிடு +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,டாஷ்போர்டு விளக்கப்படத்தை உருவாக்க குழு வாரியாக தேவை DocType: Print Settings,Allow page break inside tables,அட்டவணைகள் உள்ளே பக்க முறிப்பு அனுமதி DocType: Email Account,SMTP Server,SMTP சேவையகம் DocType: Print Format,Print Format Help,அச்சு வடிவம் உதவி apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} அறைக்கு ஒரே ஒரு பயனர் இருக்க வேண்டும். DocType: DocType,Beta,பீட்டா DocType: Dashboard Chart,Count,கவுண்ட் +DocType: Dashboard Chart,Group By Type,வகை மூலம் குழு apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},மீண்டும் {0} போன்ற {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","நீங்கள் மேம்படுத்தும் என்றால், ""மேலெழுதும்"" என்பதைத் தேர்ந்தெடுக்கவும் வேறு இருக்கும் வரிசைகள் நீக்கப்படாது." DocType: DocField,Translatable,மொழியாக்கம் @@ -3349,8 +3459,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,பயன DocType: Web Form,Web Form,வலை படிவம் apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},தேதி {0} வடிவத்தில் இருக்க வேண்டும்: {1} DocType: About Us Settings,Org History Heading,Org வரலாறு தலைப்பு +DocType: Scheduled Job Type,Scheduled Job Type,திட்டமிடப்பட்ட வேலை வகை DocType: Print Settings,Allow Print for Cancelled,ரத்து அச்சு அனுமதி DocType: Communication,Integrations can use this field to set email delivery status,ஒருங்கிணைவுகளையும்- மின்னஞ்சல் வீச்சு நிலையை அமைக்க இந்த துறையில் பயன்படுத்த முடியும் +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,இணைக்கப்பட்ட அனைத்து ஆவணங்களையும் ரத்து செய்ய உங்களுக்கு அனுமதி இல்லை. DocType: Web Form,Web Page Link Text,வலைப்பக்கத்தில் இணைப்பு உரை DocType: Page,System Page,சிஸ்டம் பக்கம் DocType: Page,System Page,சிஸ்டம் பக்கம் @@ -3358,6 +3470,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},ஏற்றுமதி செய்ய <b>{0}</b> தனிப்பயனாக்கங்கள்: <br> {1} DocType: Website Settings,Include Search in Top Bar,சிறந்த பட்டியில் உள்ள தேடல் அடங்கும் +DocType: Scheduled Job Type,Daily Long,டெய்லி லாங் DocType: GSuite Settings,Allow GSuite access,GSuite அணுகலை அனுமதி DocType: DocType,DESC,DESC DocType: DocType,Naming,பெயரிடுதல் @@ -3459,6 +3572,7 @@ DocType: Notification,Send days before or after the reference date,முன் DocType: User,Allow user to login only after this hour (0-24),பயனர் இந்த மணி நேரத்திற்கு பிறகு மட்டுமே உள்நுழைய அனுமதி (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","ஒவ்வொன்றாக, வரிசையாக ஒதுக்கவும்" DocType: Integration Request,Subscription Notification,சந்தா அறிவிப்பு +DocType: Customize Form Field, Allow in Quick Entry ,விரைவு உள்ளீட்டில் அனுமதிக்கவும் apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,அல்லது இணைக்கவும் DocType: Auto Repeat,Start Date,தொடக்க தேதி apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,மதிப்பு @@ -3473,6 +3587,7 @@ DocType: Google Drive,Backup Folder ID,காப்பு கோப்புற apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,படைப்பாளி பயன்முறையில் இல்லை! site_config.json அமைக்க அல்லது 'வழக்கமான' DOCTYPE செய்ய. DocType: Workflow State,globe,உலகு DocType: System Settings,dd.mm.yyyy,ஏன் அடுத்தவருக்காக பிடித்ததுப்போல் காட்ட +DocType: Onboarding Slide Help Link,Video,காணொளி DocType: Assignment Rule,Priority,முதன்மை DocType: Email Queue,Unsubscribe Param,சந்தாவிலகு பரம் DocType: DocType,Hide Sidebar and Menu,பக்கப்பட்டி மற்றும் மெனுவை மறைக்க @@ -3484,6 +3599,7 @@ DocType: DocType,Allow Import (via Data Import Tool),இறக்குமதி apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,மிதப்பதற்கு DocType: Print Settings,Page Settings,பக்க அமைப்புகள் +DocType: Notification Settings,Notification Settings,அறிவிப்பு அமைப்புகள் apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,சேமிக்கிறது ... apps/frappe/frappe/www/update-password.html,Invalid Password,தவறான கடவுச்சொல் apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1} இல் {0} பதிவை வெற்றிகரமாக இறக்குமதி செய்தது. @@ -3498,6 +3614,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,ஜிமெயில் DocType: Letter Head,Letter Head Image,கடிதம் தலை படம் DocType: Address,Party GSTIN,கட்சி GSTIN +DocType: Scheduled Job Type,Cron Format,கிரான் வடிவம் apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} DocType: SMS Settings,Use POST,POST ஐப் பயன்படுத்துக DocType: Communication,SMS,எஸ்எம்எஸ் @@ -3543,18 +3660,20 @@ DocType: Workflow,Allow approval for creator of the document,ஆவணத்த apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,அறிக்கையைச் சேமிக்கவும் DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API முடிப்பு Args +DocType: DocType Action,Server Action,சேவையக செயல் apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,நிர்வாகி அணுகப்பட்டது {0} ம் {1} ஐபி முகவரி வழியாக {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,பெற்றோர் புலம் சரியான புலப் பெயராக இருக்க வேண்டும் apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,சந்தாவை மாற்றும்போது தோல்வியடைந்தது DocType: LDAP Settings,LDAP Group Field,LDAP குழு புலம் +DocType: Notification Subscribed Document,Notification Subscribed Document,அறிவிப்பு சந்தா ஆவணம் apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,சமங்களின் apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,தவறான CSV வடிவத்தில் -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ தட்டு பயன்பாட்டுடன் இணைப்பதில் பிழை ... <br><br> மூல அச்சு அம்சத்தைப் பயன்படுத்த நீங்கள் QZ தட்டு பயன்பாட்டை நிறுவி இயக்க வேண்டும். <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ தட்டில் பதிவிறக்கி நிறுவ இங்கே கிளிக் செய்க</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">மூல அச்சிடுதல் பற்றி மேலும் அறிய இங்கே கிளிக் செய்க</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,காப்பு எண்ணிக்கை அமை DocType: DocField,Do not allow user to change after set the first time,பயனர் மாற்ற அனுமதிக்க வேண்டாம் பிறகு முதல் முறையாக அமைக்க apps/frappe/frappe/utils/data.py,1 year ago,1 வருடம் முன்பு +DocType: DocType,Links Section,இணைப்புகள் பிரிவு apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","அனைத்து அச்சு, பதிவிறக்கம் மற்றும் ஏற்றுமதி நிகழ்வுகளின் பதிவைக் காண்க" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 மாதம் DocType: Contact,Contact,தொடர்பு @@ -3580,16 +3699,19 @@ DocType: Auto Email Report,Dynamic Report Filters,டைனமிக் அற DocType: Email Account,UIDVALIDITY,UIDVALIDITY ஐ apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,புதிய மின்னஞ்சல் DocType: Custom DocPerm,Export,ஏற்றுமதி +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},நிலை சார்பு புலத்தையும் சேர்த்து {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},வெற்றிகரமாக புதுப்பிக்கப்பட்டது {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ தட்டு தோல்வியுற்றது: DocType: Dropbox Settings,Dropbox Settings,டிராப்பாக்ஸ் அமைப்புகள் DocType: About Us Settings,More content for the bottom of the page.,பக்கம் கீழே அதிக உள்ளடக்கம். apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,இந்த ஆவணம் மாற்றப்பட்டது apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google இயக்கக காப்புப்பிரதி வெற்றிகரமாக. +DocType: Webhook,Naming Series,தொடர் பெயரிடும் DocType: Workflow,DocType on which this Workflow is applicable.,இந்த பணியோட்ட பொருந்தும் எந்த டாக்டைப்பின். DocType: User,Enabled,இயலுமைப்படுத்த apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,அமைப்பு முடிக்க முடியவில்லை apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},புதிய {0}: {1} -DocType: Tag Category,Category Name,வகை பெயர் +DocType: Blog Category,Category Name,வகை பெயர் apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,குழந்தை அட்டவணை தரவைப் பெற பெற்றோர் தேவை apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,இறக்குமதி சந்தாதாரர்கள் DocType: Print Settings,PDF Settings,PDF அமைப்புகள் @@ -3625,6 +3747,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,நாட்காட்டி apps/frappe/frappe/client.py,No document found for given filters,ஆவணம் கொடுக்கப்பட்ட வடிகட்டிகள் காணப்படவில்லை apps/frappe/frappe/config/website.py,A user who posts blogs.,வலைப்பதிவுகளை இடுகையிடும் பயனர். +DocType: DocType Action,DocType Action,டாக் டைப் அதிரடி apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","மற்றொரு {0} பெயர் {1} உள்ளது, மற்றொரு பெயர் தேர்வு" DocType: DocType,Custom?,தனிபயன்? DocType: Website Settings,Website Theme Image,வலைத்தளம் தீம் படம் @@ -3634,6 +3757,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},ஏற் apps/frappe/frappe/config/integrations.py,Backup,காப்பு பிரதி apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,டாஷ்போர்டு விளக்கப்படத்தை உருவாக்க ஆவண வகை தேவை DocType: DocField,Read Only,படிக்க மட்டும் +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,ரேஸர்பே வரிசையை உருவாக்க முடியவில்லை apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,புதிய செய்திமடல் DocType: Energy Point Log,Energy Point Log,எனர்ஜி பாயிண்ட் பதிவு DocType: Print Settings,Send Print as PDF,என அச்சு அனுப்பவும் PDF @@ -3658,15 +3782,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,உ apps/frappe/frappe/www/login.html,Or login with,அல்லது உள்நுழைய DocType: Error Snapshot,Locals,உள்ளூர் apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},வழியாகத் தொடர்புகொள்ளும் {0} ம் {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} ஒரு கருத்தில் உங்களைக் குறிப்பிட்டார் {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,குழுவைத் தேர்ந்தெடு ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,எ.கா. (55 + 434) / 4 அல்லது = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} தேவைப்படுகிறது DocType: Integration Request,Integration Type,ஒருங்கிணைப்பு வகை DocType: Newsletter,Send Attachements,Attachements அனுப்பவும் +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,வடிப்பான்கள் எதுவும் கிடைக்கவில்லை apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google தொடர்புகள் ஒருங்கிணைப்பு. DocType: Transaction Log,Transaction Log,பரிவர்த்தனை பதிவு DocType: Contact Us Settings,City,நகரம் +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,எல்லா பயனர்களுக்கும் அட்டைகளை மறைக்கவும் DocType: DocField,Perm Level,நிலை PERM apps/frappe/frappe/www/confirm_workflow_action.html,View document,ஆவணம் காண்க apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,இன்றைய அட்டவணை நிகழ்வுகள் @@ -3677,6 +3802,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'முழுமையான தேடல்' வகை அனுமதி இல்லை {0} வரிசையில் {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'முழுமையான தேடல்' வகை அனுமதி இல்லை {0} வரிசையில் {1} DocType: Energy Point Log,Appreciation,பாராட்டு +DocType: Dashboard Chart,Number of Groups,குழுக்களின் எண்ணிக்கை apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,காண்க பட்டியல் DocType: Workflow,Don't Override Status,நிலைமை புறக்கணிக்க வேண்டாம் apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,தேடல் கால @@ -3715,7 +3841,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,ம DocType: S3 Backup Settings,cn-northwest-1,CN-வடமேற்கு-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB காப்புப்பதிவுகளின் வரம்பு எண் DocType: Custom DocPerm,Level,நிலை -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,கடந்த 30 நாட்கள் DocType: Custom DocPerm,Report,புகார் apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,அளவு 0 விட அதிகமாக இருக்க வேண்டும். apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ தட்டில் இணைக்கப்பட்டுள்ளது! @@ -3732,6 +3857,7 @@ DocType: S3 Backup Settings,us-west-2,எங்களுக்கு மேற apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,குழந்தை அட்டவணையைத் தேர்ந்தெடுக்கவும் apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,முதன்மை செயலைத் தூண்டுகிறது apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,மாற்றம் +DocType: Social Login Key,User ID Property,பயனர் ஐடி சொத்து DocType: Email Domain,domain name,டொமைன் பெயர் DocType: Contact Email,Contact Email,மின்னஞ்சல் தொடர்பு DocType: Kanban Board Column,Order,ஆணை @@ -3753,7 +3879,7 @@ DocType: Contact,Last Name,கடந்த பெயர் DocType: Event,Private,தனிப்பட்ட apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,இன்றைக்கு எந்த எச்சரிக்கைகள் DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ஆக மின்னஞ்சல் அச்சிடுக இணைப்புகளை அனுப்ப (பரிந்துரைக்கப்படுகிறது) -DocType: Web Page,Left,விட்டு +DocType: Onboarding Slide Field,Left,விட்டு DocType: Event,All Day,அனைத்து தினம் apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ஏதாவது போல் தெரிகிறது இந்த தளத்தின் கட்டணம் நுழைவாயில் கட்டமைப்பு தவறு உள்ளது. எந்தக் கட்டண செய்யப்பட்டுள்ளன. DocType: GCalendar Settings,State,நிலை @@ -3784,7 +3910,6 @@ DocType: Workflow State,User,பயனர் DocType: Website Settings,"Show title in browser window as ""Prefix - title""",உலாவி சாளரத்தில் நிகழ்ச்சியின் தலைப்பு "வள் - தலைப்பு" DocType: Payment Gateway,Gateway Settings,நுழைவாயில் அமைப்புகள் apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ஆவண வகை உள்ள உரை -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,இயக்கவும் டெஸ்ட் apps/frappe/frappe/handler.py,Logged Out,வெளியேற்றப்படுவீர்கள் apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,மேலும் ... DocType: System Settings,User can login using Email id or Mobile number,பயனர் மின்னஞ்சல் ஐடி அல்லது மொபைல் எண் பயன்படுத்தி உள்நுழையலாம் @@ -3801,6 +3926,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,சுருக்கம் DocType: Event,Event Participants,நிகழ்வு பங்கேற்பாளர்கள் DocType: Auto Repeat,Frequency,அதிர்வெண் +DocType: Onboarding Slide,Slide Order,ஸ்லைடு ஆர்டர் DocType: Custom Field,Insert After,பிறகு செருகு DocType: Event,Sync with Google Calendar,Google காலெண்டருடன் ஒத்திசைக்கவும் DocType: Access Log,Report Name,அறிக்கை பெயர் @@ -3828,6 +3954,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},வகை நாணய அதிகபட்சம் அகலம் வரிசையில் 100px {0} apps/frappe/frappe/config/website.py,Content web page.,உள்ளடக்கத்தை வலைப்பக்கத்தில். apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ஒரு புதிய பங்கு சேர் +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,வலைப்பக்கத்தைப் பார்வையிடவும் +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,புதிய பணி DocType: Google Contacts,Last Sync On,கடைசி ஒத்திசைவு DocType: Deleted Document,Deleted Document,நீக்கப்பட்ட ஆவண apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,அச்சச்சோ! ஏதோ தவறு @@ -3837,7 +3965,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,இயற்கை apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ஜாவா வாடிக்கையாளர் பக்க ஸ்கிரிப்ட் நீட்சிகள் DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,பின்வரும் கோட்பாடுகளுக்கான பதிவுகள் வடிகட்டப்படும் -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,திட்டமிடுபவர் செயலற்றவர் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,திட்டமிடுபவர் செயலற்றவர் DocType: Blog Settings,Blog Introduction,வலைப்பதிவு அறிமுகம் DocType: Global Search Settings,Search Priorities,முன்னுரிமைகளைத் தேடுங்கள் DocType: Address,Office,அலுவலகம் @@ -3847,13 +3975,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,டாஷ்போர்ட DocType: User,Email Settings,மின்னஞ்சல் அமைப்புகள் apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,இங்கே விடுங்கள் DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","இயக்கப்பட்டால், பயனர் இரண்டு காரணி அங்கீகாரத்தைப் பயன்படுத்தி எந்த ஐபி முகவரியிலிருந்தும் உள்நுழைய முடியும், இது கணினி அமைப்புகளில் உள்ள அனைத்து பயனர்களுக்கும் அமைக்கப்படலாம்" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,அச்சுப்பொறி அமைப்புகள் ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,தொடர்வதற்கு உங்கள் கடவுச்சொல்லை உள்ளிடவும் apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,தொடர்வதற்கு உங்கள் கடவுச்சொல்லை உள்ளிடவும் apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,என்னை apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} தவறான நிலை apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,அனைத்து ஆவண வகைகளுக்கும் பொருந்தும் -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ஆற்றல் புள்ளி புதுப்பிப்பு +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,ஆற்றல் புள்ளி புதுப்பிப்பு +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),செயலற்றதாக இருந்தால் (நாட்கள்) தினமும் மட்டுமே வேலைகளை இயக்கவும் apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',மற்றொரு கட்டண முறையை தேர்ந்தெடுக்கவும். பேபால் நாணய பரிவர்த்தனைகள் ஆதரிக்கவில்லை '{0}' DocType: Chat Message,Room Type,அறையின் வகை DocType: Data Import Beta,Import Log Preview,பதிவு முன்னோட்டத்தை இறக்குமதி செய்க @@ -3862,6 +3990,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,"சரி, வட்டம்" DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP பயனர் உருவாக்கம் மற்றும் மேப்பிங் apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',நீங்கள் கேட்டு 'வாடிக்கையாளர்கள் ஆரஞ்சு கண்டுபிடிக்க' மூலம் விஷயங்களை கண்டுபிடிக்க முடியும் +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,இன்றைய நிகழ்வுகள் apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,மன்னிக்கவும்! பயனர் தங்களுடைய சொந்த இசைப்பதிவு முழுமையாக அணுக வேண்டும். ,Usage Info,பயன்பாடு தகவல் apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,விசைப்பலகை குறுக்குவழிகளைக் காட்டு @@ -3877,6 +4006,7 @@ DocType: Communication,Communication Type,தொடர்பாடல் வ DocType: DocField,Unique,தனித்த apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,பகுதி வெற்றி DocType: Email Account,Service,சேவை +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைவு> பயனர் DocType: File,File Name,கோப்பு பெயர் apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ஐந்து {0} கண்டுபிடிக்க முடியவில்லை {0} ( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ரெஸ்: {0} @@ -3890,6 +4020,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,மு DocType: GCalendar Settings,Enable,இயக்கு DocType: Google Maps Settings,Home Address,வீட்டு முகவரி apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),நீங்கள் மட்டும் ஒரு பயணத்தின் 5000 பதிவுகளை வரை பதிவேற்ற முடியும். (சில நேரங்களில் குறைவாக இருக்கலாம்) +DocType: Report,"output in the form of `data = [columns, result]`","`தரவு = [நெடுவரிசைகள், முடிவு]` வடிவத்தில் வெளியீடு" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,பொருந்தக்கூடிய ஆவண வகைகள் apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,பயனர் பணிகளுக்கு விதிகளை அமைக்கவும். apps/frappe/frappe/model/document.py,Insufficient Permission for {0},போதுமான அனுமதி {0} @@ -3907,7 +4038,6 @@ DocType: Communication,To and CC,மற்றும் சிசி DocType: SMS Settings,Static Parameters,நிலையான அளவுருக்களை DocType: Chat Message,Room,அறை apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},மேம்படுத்தப்பட்டது {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,பின்னணி வேலைகள் இயங்கவில்லை. நிர்வாகியைத் தொடர்பு கொள்ளவும் DocType: Portal Settings,Custom Menu Items,வழக்கமான பட்டி உருப்படிகள் apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,வலைத்தள ஸ்லைடுஷோவுடன் இணைக்கப்பட்ட அனைத்து படங்களும் பொதுவில் இருக்க வேண்டும் DocType: Workflow State,chevron-right,செவ்ரான் வலது @@ -3921,10 +4051,12 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} மதிப்புகள் தேர்ந்தெடுக்கப்பட்டன DocType: DocType,Allow Auto Repeat,தானாக மீண்டும் செய்ய அனுமதிக்கவும் apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,காண்பிக்க மதிப்புகள் இல்லை +DocType: DocType,URL for documentation or help,ஆவணங்கள் அல்லது உதவிக்கான URL DocType: Desktop Icon,_doctype,ஆவண வகை DocType: Communication,Email Template,மின்னஞ்சல் டெம்ப்ளேட் apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,புதுப்பிக்கப்பட்ட {0} பதிவு. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,லாகின் மற்றும் பாஸ்வேர்ட் அவசியம் +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,தெரியப்படுத்தலாம் \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,சமீபத்திய ஆவணத்தை பெற புதுப்பிக்கவும். DocType: User,Security Settings,பாதுகாப்பு அமைப்புகள் apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,வரிசையை சேர்க்க @@ -3934,6 +4066,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,மெட்டா வடிகட்டி apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},இணைக்கப்பட்டதைக் கண்டுபிடிக்கவும் {0}: {1} DocType: Web Page,Set Meta Tags,மெட்டா குறிச்சொற்களை அமைக்கவும் +DocType: Email Account,Use SSL for Outgoing,வெளிச்செல்லும் SSL ஐப் பயன்படுத்தவும் 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: S3 Backup Settings,Backup Limit,காப்பு பிரதி வரம்பு DocType: Dashboard Chart,Line,வரி @@ -3966,4 +4099,3 @@ DocType: DocField,Ignore User Permissions,பயனர் அனுமதிக apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,வெற்றிகரமாக சேமிக்கப்பட்டது apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,பதிவு செய்தல் சரிபார்க்க உங்கள் நிர்வாகியிடம் கேளுங்கள் DocType: Domain Settings,Active Domains,செயலில் களங்கள் -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,காண்பிக்கவும் diff --git a/frappe/translations/te.csv b/frappe/translations/te.csv index a3baa38664..52877e1d6f 100644 --- a/frappe/translations/te.csv +++ b/frappe/translations/te.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,దయచేసి సొమ్ము ఫీల్డ్ ఎంచుకోండి. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,దిగుమతి ఫైల్‌ను లోడ్ చేస్తోంది ... DocType: Assignment Rule,Last User,చివరి వినియోగదారు -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ఒక కొత్త పని, {0}, {1} ద్వారా మీకు కేటాయించబడిన. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,సెషన్ డిఫాల్ట్‌లు సేవ్ చేయబడ్డాయి apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ఫైల్‌ను మళ్లీ లోడ్ చేయండి DocType: Email Queue,Email Queue records.,ఇమెయిల్ క్యూ రికార్డులు. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ట్రీ DocType: User,User Emails,వాడుకరి ఇమెయిళ్ళు DocType: User,Username,యూజర్ పేరు apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,దిగుమతి చేయి జిప్ +DocType: Scheduled Job Type,Create Log,లాగ్ సృష్టించండి apps/frappe/frappe/model/base_document.py,Value too big,విలువ చాలా పెద్ద DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script టెస్ట్ @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,మంత్లీ DocType: Address,Uttarakhand,ఉత్తరాఖండ్ DocType: Email Account,Enable Incoming,ఇన్కమింగ్ ప్రారంభించు apps/frappe/frappe/core/doctype/version/version_view.html,Danger,డేంజర్ -DocType: Address,Email Address,ఇమెయిల్ అడ్రస్ +apps/frappe/frappe/www/login.py,Email Address,ఇమెయిల్ అడ్రస్ DocType: Workflow State,th-large,వ పెద్ద DocType: Communication,Unread Notification Sent,పంపిన చదవని నోటిఫికేషన్ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ఎగుమతి అనుమతి లేదు. మీరు ఎగుమతి {0} పాత్ర అవసరం. @@ -84,10 +84,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,ప్రచురించబడింది ఫీల్డ్ DocType: GCalendar Settings,GCalendar Settings,GCalendar సెట్టింగులు DocType: Email Group,Email Group,ఇమెయిల్ గ్రూప్ +apps/frappe/frappe/__init__.py,Only for {},{For కోసం మాత్రమే DocType: Event,Pulled from Google Calendar,Google క్యాలెండర్ నుండి తీసివేయబడింది DocType: Note,Seen By,చూడబడింది apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,బహుళ జోడించండి -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,మీరు కొన్ని ఎనర్జీ పాయింట్లను పొందారు apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,చెల్లుబాటు అయ్యే వాడుకరి చిత్రం కాదు. DocType: Energy Point Log,Reverted,పొందబడింది DocType: Success Action,First Success Message,మొదటి సక్సెస్ మెసేజ్ @@ -95,6 +95,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ఇష్ట apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},సరికాని విలువ: {0} ఉండాలి {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","మార్పు రంగంలో లక్షణాలు (దాచిపెట్టు, చదవడానికి మాత్రమే అనుమతి మొదలైనవి)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,అభినందిస్తున్నాము +DocType: Notification Settings,Document Share,పత్రం భాగస్వామ్యం DocType: Workflow State,lock,లాక్ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,మమ్మల్ని సంప్రదించండి పేజ్ కోసం సెట్టింగులు. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,అడ్మినిస్ట్రేటర్ లాగ్ @@ -108,6 +109,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","ప్రారంభించబడితే, పత్రం చూసినట్లుగా గుర్తించబడుతుంది, మొదటిసారి వినియోగదారు దాన్ని తెరిచినప్పుడు" DocType: Auto Repeat,Repeat on Day,రోజు రిపీట్ DocType: DocField,Color,రంగు +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,అన్నీచదివినట్లుగా సూచించు DocType: Data Migration Run,Log,లోనికి ప్రవేశించండి DocType: Workflow State,indent-right,ఇండెంట్ కుడి DocType: Has Role,Has Role,పాత్ర ఉంది @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ట్రేస్‌బ్యాక్ చూపించు DocType: DocType,Default Print Format,డిఫాల్ట్ ముద్రణ ఫార్మాట్ DocType: Workflow State,Tags,టాగ్లు +DocType: Onboarding Slide,Slide Type,స్లయిడ్ రకం apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,గమనిక: వర్క్ఫ్లో యొక్క ఎండ్ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",కాని ఏకైక ఉన్న విలువలు ఉన్నాయి {0} రంగంలో {1} వంటి ఏకైక సెట్ చేయబడదు apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,డాక్యుమెంట్ రకాలు @@ -134,7 +137,6 @@ DocType: Language,Guest,గెస్ట్ DocType: DocType,Title Field,శీర్షిక ఫీల్డ్ DocType: Error Log,Error Log,లోపం లాగ్ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,చెల్లని URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,చివరి 7 రోజులు apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" "abc" కంటే ఊహించడం కొంచం కష్టం చేసినట్లుగా పునఃప్రసారాలు DocType: Notification,Channel,ఛానల్ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","మీరు ఈ అనధికార భావిస్తే, నిర్వాహకుడు పాస్వర్డ్ను మార్చండి." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,క్లయింట్ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,నిలువు వరుసను ఎంచుకోండి apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,మీరు అది లోడ్ చేసిన తర్వాత ఈ రూపం మారిస్తే DocType: Address,Himachal Pradesh,హిమాచల్ ప్రదేశ్ +DocType: Notification Log,Notification Log,నోటిఫికేషన్ లాగ్ DocType: System Settings,"If not set, the currency precision will depend on number format","సెట్ చేయకపోతే, కరెన్సీ ఖచ్చితత్వము సంఖ్య ఫార్మాట్ ఆధారపడి ఉంటుంది" DocType: System Settings,"If not set, the currency precision will depend on number format","సెట్ చేయకపోతే, కరెన్సీ ఖచ్చితత్వము సంఖ్య ఫార్మాట్ ఆధారపడి ఉంటుంది" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,అద్భుతం బార్‌ను తెరవండి @@ -163,7 +166,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,పంపండి DocType: Workflow Action Master,Workflow Action Name,వర్క్ఫ్లో చర్య పేరు apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE విలీనం సాధ్యం కాదు -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ఒక జిప్ ఫైల్ DocType: Global Search DocType,Global Search DocType,గ్లోబల్ సెర్చ్ డాక్ టైప్ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -176,7 +179,9 @@ DocType: Newsletter,Email Sent?,ఇమెయిల్ పంపబడింద apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,చార్ట్ని టోగుల్ చేయండి apps/frappe/frappe/desk/form/save.py,Did not cancel,రద్దు చేయలేదు DocType: Social Login Key,Client Information,క్లయింట్ సమాచారం +DocType: Energy Point Rule,Apply this rule only once per document,ఈ నియమాన్ని ప్రతి పత్రానికి ఒకసారి మాత్రమే వర్తించండి DocType: Workflow State,plus,ప్లస్ +DocType: DocField,Read Only Depends On,చదవడానికి మాత్రమే ఆధారపడి ఉంటుంది apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,గెస్టు లేదా అడ్మినిస్ట్రేటర్ గా లాగిన్ DocType: Email Account,UNSEEN,కనిపించని apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ఫైల్ మేనేజర్ @@ -200,9 +205,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,కారణము 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,కార్యాచరణ లేదు +DocType: Server Script,Script Manager,స్క్రిప్ట్ మేనేజర్ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,కార్యాచరణ లేదు apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,మూడవ పక్ష అనువర్తనాలు apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,సిస్టం మేనేజర్ అవుతుంది మొదటి వినియోగదారు (మీరు తర్వాత మార్చవచ్చు). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ఈ రోజు సంఘటనలు లేవు apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,మీరు మీరే సమీక్ష పాయింట్లు ఇవ్వలేరు apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,ఎంచుకున్న Doc ఈవెంట్ కోసం DocType తప్పక సమర్పించబడాలి DocType: Workflow State,circle-arrow-up,సర్కిల్-బాణం అప్ @@ -249,6 +256,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} ను నవీకరిస్తోంది apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ఆపివేయి నివేదిక DocType: Translation,Contributed Translation Doctype Name,సహకారం అనువాద డాక్టైప్ పేరు +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్‌ను అనుకూలీకరించండి DocType: PayPal Settings,Redirect To,దారి మార్పు DocType: Data Migration Mapping,Pull,పుల్ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},జావాస్క్రిప్ట్ ఫార్మాట్: frappe.query_reports ['REPORTNAME'] = {} @@ -262,6 +270,7 @@ DocType: DocShare,Internal record of document shares,పత్రం వాట DocType: Energy Point Settings,Review Levels,స్థాయిలను సమీక్షించండి DocType: Workflow State,Comment,వ్యాఖ్య DocType: Data Migration Plan,Postprocess Method,Postprocess పద్ధతి +DocType: DocType Action,Action Type,చర్య రకం apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ఫోటో తీసుకో DocType: Assignment Rule,Round Robin,రౌండ్ రాబిన్ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","మీరు వాటిని సవరణల, అప్పుడు వాటిని రద్దు చేసుకొని సమర్పించిన పత్రాలు మార్చవచ్చు." @@ -275,6 +284,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ఇలా సేవ్ DocType: Comment,Seen,సీన్ apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,మరిన్ని వివరాలకు చూపించు +DocType: Server Script,Before Submit,సమర్పించే ముందు DocType: System Settings,Run scheduled jobs only if checked,తనిఖీ ఉంటే మాత్రమే షెడ్యూల్ ఉద్యోగాలు అమలు apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,విభాగం శీర్షికలు ఎనేబుల్ అయితే మాత్రమే చూపబడుతుంది apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,ఆర్కైవ్ @@ -287,10 +297,12 @@ DocType: Dropbox Settings,Dropbox Access Key,డ్రాప్బాక్స apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,కస్టమ్ స్క్రిప్ట్ యొక్క add_fetch ఆకృతీకరణలో తప్పు ఫీల్డ్ పేరు <b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,ఏ పరిచయాన్ని సమకాలీకరించాలో Google పరిచయాలను ఎంచుకోండి. DocType: Web Page,Main Section (HTML),ప్రధాన విభాగం (HTML) +DocType: Scheduled Job Type,Annual,వార్షిక DocType: Workflow State,headphones,హెడ్ఫోన్స్ apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,పాస్వర్డ్ అవసరం లేదా అందించనివారు పాస్వర్డ్ ఎంచుకోండి DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ఉదా replies@yourcomany.com. అన్ని ప్రత్యుత్తరాలు ఈ ఇన్బాక్స్కు వస్తాయి. DocType: Slack Webhook URL,Slack Webhook URL,స్లోక్ వెబ్క్యుక్ URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","విజార్డ్‌లోని స్లైడ్ యొక్క క్రమాన్ని నిర్ణయిస్తుంది. స్లయిడ్ ప్రదర్శించబడకపోతే, ప్రాధాన్యత 0 కి సెట్ చేయాలి." DocType: Data Migration Run,Current Mapping,ప్రస్తుత మ్యాపింగ్ apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,చెల్లుబాటు అయ్యే ఇమెయిల్ మరియు పేరు అవసరం apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,అన్ని జోడింపులను ప్రైవేట్‌గా చేయండి @@ -314,6 +326,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,ట్రాన్సిషన్ రూల్స్ apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,ప్రివ్యూలో మొదటి {0} వరుసలను మాత్రమే చూపుతోంది apps/frappe/frappe/core/doctype/report/report.js,Example:,ఉదాహరణ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,పరిమితులు DocType: Workflow,Defines workflow states and rules for a document.,"ఒక పత్రం కోసం వర్క్ఫ్లో రాష్ట్రాలు, నియమాలను నిర్వచిస్తుంది." DocType: Workflow State,Filter,వడపోత apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},మరింత సమాచారం కోసం లోపం లాగ్‌ను తనిఖీ చేయండి: {0} @@ -325,6 +338,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,ఉద్యోగం apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} లాగిన్: {1} DocType: Address,West Bengal,వెస్ట్ బెంగాల్ +DocType: Onboarding Slide,Information,సమాచారం apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: అప్పగించుము Submittable లేకపోతే సమర్పించండి సెట్ చెయ్యబడదు DocType: Transaction Log,Row Index,రో ఇండెక్స్ DocType: Social Login Key,Facebook,ఫేస్బుక్ @@ -342,7 +356,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ద్వ DocType: Web Form,Button Help,బటన్ సహాయం DocType: Kanban Board Column,purple,ఊదా DocType: About Us Settings,Team Members,జట్టు సభ్యులు +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,క్రియారహిత సైట్ల కోసం రోజుకు ఒకసారి మాత్రమే షెడ్యూల్ చేసిన ఉద్యోగాలను అమలు చేస్తుంది. 0 కు సెట్ చేస్తే డిఫాల్ట్ 4 రోజులు. DocType: Assignment Rule,System Manager,వ్యవస్థ మేనేజర్ +DocType: Scheduled Job Log,Scheduled Job,షెడ్యూల్డ్ జాబ్ DocType: Custom DocPerm,Permissions,అనుమతులు apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,అంతర్గత సమన్వయానికి స్లాక్ వెబ్క్యుక్స్ DocType: Dropbox Settings,Allow Dropbox Access,డ్రాప్బాక్స్ ప్రాప్తిని అనుమతించు @@ -394,6 +410,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,బ DocType: Email Flag Queue,Email Flag Queue,ఇమెయిల్ ఫ్లాగ్ క్యూ DocType: Access Log,Columns / Fields,నిలువు వరుసలు / ఫీల్డ్‌లు apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ప్రింట్ ఆకృతుల కోసం స్టైల్షీట్స్ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,డాష్‌బోర్డ్ చార్ట్ సృష్టించడానికి మొత్తం ఫంక్షన్ ఫీల్డ్ అవసరం apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ఓపెన్ గుర్తించడానికి కాదు {0}. ఏదో ప్రయత్నించండి. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,మీ సమాచారం సమర్పించబడింది apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} వాడుకరి తొలగించడం సాధ్యం కాదు @@ -410,7 +427,7 @@ DocType: Property Setter,Field Name,ఫీల్డ్ పేరు DocType: Assignment Rule,Assign To Users,వినియోగదారులకు కేటాయించండి apps/frappe/frappe/public/js/frappe/utils/utils.js,or,లేదా apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,మాడ్యూల్ పేరు ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,కొనసాగించు +DocType: Onboarding Slide,Continue,కొనసాగించు apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google ఇంటిగ్రేషన్ నిలిపివేయబడింది. DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,సర్టిఫికెట్ @@ -423,11 +440,13 @@ DocType: Energy Point Log,Review,సమీక్ష DocType: User,Restrict IP,IP నిరోధించు apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,డాష్బోర్డ్ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ఈ సమయంలో ఇమెయిల్స్ పంపడం సాధ్యం కాలేదు +DocType: Notification Log,Email Content,ఇమెయిల్ కంటెంట్ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,శోధించండి లేదా కమాండ్ టైప్ DocType: Activity Log,Timeline Name,కాలక్రమం పేరు DocType: Email Account,e.g. smtp.gmail.com,ఉదా smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ఒక కొత్త నియమం జోడించండి DocType: Contact,Sales Master Manager,సేల్స్ మాస్టర్ మేనేజర్ +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,మీ అనువర్తనం పనిచేయడానికి మీరు జావాస్క్రిప్ట్‌ను ప్రారంభించాలి. DocType: User Permission,For Value,విలువ కోసం DocType: Event,Google Calendar ID,Google Calendar ID apps/frappe/frappe/www/complete_signup.html,One Last Step,ఒక చివరి దశలో @@ -442,6 +461,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP మధ్య పేరు ఫీల్డ్ DocType: GCalendar Account,Allow GCalendar Access,GCalendar యాక్సెస్ను అనుమతించండి apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} తప్పనిసరి ఫీల్డ్ +DocType: DocType,Documentation Link,డాక్యుమెంటేషన్ లింక్ apps/frappe/frappe/templates/includes/login/login.js,Login token required,లాగిన్ టోకెన్ అవసరం apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,నెలవారీ ర్యాంక్: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,బహుళ జాబితా అంశాలను ఎంచుకోండి @@ -463,6 +483,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ఫైలు URL DocType: Version,Table HTML,టేబుల్ HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,చందాదార్లు జోడించండి +DocType: Notification Log,Energy Point,ఎనర్జీ పాయింట్ apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,నేడు కోసం రాబోయే ఈవెంట్స్ DocType: Google Calendar,Push to Google Calendar,Google క్యాలెండర్‌కు నెట్టండి DocType: Notification Recipient,Email By Document Field,డాక్యుమెంట్ ఫీల్డ్ ద్వారా ఇమెయిల్ @@ -478,7 +499,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,దూరంగా DocType: Currency,Fraction Units,ఫ్రేక్షన్ యూనిట్లు apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} {1} కు {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,ఐపోయినట్టుగా ముద్రించు DocType: Chat Message,Type,రకం DocType: Google Settings,OAuth Client ID,OAuth క్లయింట్ ID DocType: Auto Repeat,Subject,Subject @@ -506,6 +526,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,ధృవీకరణ కోసం మీ ఇమెయిల్ తనిఖీ చేయండి apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,మడత రూపం చివరిలో ఉండకూడదు DocType: Communication,Bounced,ఎగిరిన +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ఆఫ్ DocType: Deleted Document,Deleted Name,తొలగించినవి పేరు apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,వ్యవస్థ మరియు వెబ్సైట్ వాడుకదారులకు DocType: Workflow Document State,Doc Status,Doc స్థితి @@ -516,6 +537,7 @@ DocType: Language,Language Code,భాష కోడ్ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,గమనిక: విఫలమైన బ్యాకప్ల కోసం డిఫాల్ట్ ఇమెయిల్లు పంపబడతాయి. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,వడపోత జోడించండి apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS క్రింది సంఖ్యలను పంపిన: {0} +DocType: Notification Settings,Assignments,అసైన్ apps/frappe/frappe/utils/data.py,{0} and {1},{0} మరియు {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,సంభాషణను ప్రారంభించండి. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ఎల్లప్పుడూ "చిత్తుప్రతి" ముద్రణ డ్రాఫ్ట్ పత్రాల కోసం శీర్షిక జోడించడానికి @@ -524,6 +546,7 @@ DocType: Data Migration Run,Current Mapping Start,ప్రస్తుత మ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ఇమెయిల్ స్పామ్ మార్క్ చెయ్యబడింది DocType: Comment,Website Manager,వెబ్సైట్ మేనేజర్ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ఫైల్ అప్లోడ్ డిస్కనెక్ట్ చేయబడింది. మళ్ళి ప్రయత్నించండి. +DocType: Data Import Beta,Show Failed Logs,విఫలమైన లాగ్‌లను చూపించు apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,అనువాదాలు apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,మీరు ఎంచుకున్న డ్రాఫ్ట్ లేదా రద్దయింది పత్రాలు apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{0} {2} ద్వారా {1} @@ -531,7 +554,9 @@ apps/frappe/frappe/model/document.py,Document Queued,డాక్యుమెం DocType: GSuite Templates,Destination ID,గమ్యం ID DocType: Desktop Icon,List,జాబితా DocType: Activity Log,Link Name,లింక్ పేరు +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,మీరు స్వర్గధామం \ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,ఆన్‌బోర్డింగ్ స్లయిడ్ apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,చెల్లని పాస్వర్డ్: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,చెల్లని పాస్వర్డ్: DocType: Print Settings,Send document web view link in email,ఇమెయిల్ పత్రం వెబ్ వీక్షణ లింక్ను పంపండి @@ -591,6 +616,7 @@ DocType: Kanban Board Column,darkgrey,ముదురు బూడిద రం apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},విజయవంతమైన: {0} కు {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,డెమో వినియోగదారు వివరాలు మార్చలేరు. https://erpnext.com వద్ద ఒక కొత్త ఖాతా కోసం సైన్ దయచేసి apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,డ్రాప్ +DocType: Dashboard Chart,Aggregate Function Based On,మొత్తం ఫంక్షన్ ఆధారంగా apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,మార్పులు చేయడానికి ఈ నకిలీ దయచేసి apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,సేవ్ చేయడానికి Enter నొక్కండి apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF తరం ఎందుకంటే బ్రోకెన్ చిత్రం లింకులు విఫలమైంది @@ -604,7 +630,9 @@ DocType: Notification,Days Before,రోజుల ముందు apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,రోజువారీ సంఘటనలు ఒకే రోజున పూర్తి చేయాలి. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,సవరించు ... DocType: Workflow State,volume-down,వాల్యూమ్ డౌన్ +DocType: Onboarding Slide,Help Links,సహాయం లింకులు apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ఈ IP చిరునామా నుండి యాక్సెస్ అనుమతించబడదు +DocType: Notification Settings,Enable Email Notifications,ఇమెయిల్ నోటిఫికేషన్‌లను ప్రారంభించండి apps/frappe/frappe/desk/reportview.py,No Tags,తోబుట్టువుల టాగ్లు DocType: Email Account,Send Notification to,తెలియపరచకండి DocType: DocField,Collapsible,ధ్వంసమయ్యే @@ -633,6 +661,7 @@ DocType: Google Drive,Last Backup On,చివరి బ్యాకప్ ఆ DocType: Customize Form Field,Customize Form Field,ఫారం ఫీల్డ్ అనుకూలీకరించండి DocType: Energy Point Rule,For Document Event,డాక్యుమెంట్ ఈవెంట్ కోసం DocType: Website Settings,Chat Room Name,రూమ్ పేరుని చాట్ చేయండి +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,మారకుండా DocType: OAuth Client,Grant Type,గ్రాంట్ టైప్ apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ఒక వాడుకరి ద్వారా రీడ్ చేయదగిన పత్రాలను తనిఖీ DocType: Deleted Document,Hub Sync ID,హబ్ సమకాలీకరణ ID @@ -640,6 +669,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,వ DocType: Auto Repeat,Quarterly,క్వార్టర్లీ apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","ఇమెయిల్ డొమైన్, ఈ ఖాతా కోసం కాన్ఫిగర్ ఒకటి సృష్టించు?" DocType: User,Reset Password Key,పాస్వర్డ్ రీసెట్ చెయ్యి కీ +DocType: Dashboard Chart,All Time,అన్ని సమయంలో apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} కోసం అక్రమ పత్రం స్థితి DocType: Email Account,Enable Auto Reply,ఆటో Reply ప్రారంభించు apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,చూడని @@ -652,6 +682,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,స DocType: Email Account,Notify if unreplied,Unreplied ఉంటే తెలియజేయి apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR కోడ్ను స్కాన్ చేసి ప్రదర్శించిన ఫలితాన్ని నమోదు చేయండి. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ప్రవణతలను ప్రారంభించండి +DocType: Scheduled Job Type,Hourly Long,గంట పొడవు DocType: System Settings,Minimum Password Score,కనీస పాస్ వర్డ్ స్కోర్ DocType: System Settings,Minimum Password Score,కనీస పాస్ వర్డ్ స్కోర్ DocType: DocType,Fields,ఫీల్డ్స్ @@ -660,11 +691,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,మాత apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 బ్యాకప్ పూర్తి! apps/frappe/frappe/config/desktop.py,Developer,డెవలపర్ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,రూపొందించబడింది +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},దీన్ని ప్రారంభించడానికి క్రింది లింక్‌లోని సూచనలను అనుసరించండి: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} వరుసగా {1} రెండు URL మరియు పిల్లల అంశాలు ఉండకూడదు apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},కింది పట్టికలకు కనీసం ఒక అడ్డు వరుస ఉండాలి: {0} DocType: Print Format,Default Print Language,డిఫాల్ట్ ప్రింట్ భాష apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,పూర్వీకులు apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} రూట్ తొలగించడం సాధ్యం కాదు +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,విఫలమైన లాగ్‌లు లేవు apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,ఇంకా వ్యాఖ్యలు లేవు apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",దయచేసి ఎస్ ఎమ్ ఎస్ సెట్టింగులద్వారా ఒక ధృవీకరణ పద్ధతిలో అమర్చడానికి ముందు SMS ను సెటప్ చేయండి apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,అవసరమైన రెండు doctype మరియు పేరు @@ -687,6 +720,7 @@ DocType: Website Settings,Footer Items,ఫుటర్ అంశాలు apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,మెనూ DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,డైలీ +DocType: Onboarding Slide,Max Count,మాక్స్ కౌంట్ apps/frappe/frappe/config/users_and_permissions.py,User Roles,వాడుకరి పాత్రలు DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ఆస్తి సెట్టర్ ప్రామాణిక DOCTYPE లేదా ఫీల్డ్ ఆస్తి భర్తీ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,అప్డేట్ చేయలేరు: సరికాని / గడువు లింక్. @@ -705,6 +739,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,హోస్ట్ DocType: Data Import Beta,Import File,ఫైల్‌ను దిగుమతి చేయండి +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,మూస లోపం apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,కాలమ్ <b>{0}</b> ఇప్పటికే ఉన్నాయి. DocType: ToDo,High,హై apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,క్రొత్త ఈవెంట్ @@ -720,6 +755,7 @@ DocType: Web Form Field,Show in filter,ఫిల్టర్లో చూపి DocType: Address,Daman and Diu,డామన్ మరియు డయ్యు apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,ప్రాజెక్టు DocType: Address,Personal,వ్యక్తిగత +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,రా ప్రింటింగ్ సెట్టింగులు ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,వివరాల కోసం https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region చూడండి. apps/frappe/frappe/config/settings.py,Bulk Rename,బల్క్ పేరుమార్చు DocType: Email Queue,Show as cc,సిసి గా చూపించు @@ -729,6 +765,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,వీడియో DocType: Contact Us Settings,Introductory information for the Contact Us Page,మమ్మల్ని సంప్రదించండి పేజ్ కోసం పరిచయ సమాచారం DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,బ్రొటనవేళ్లు డౌన్ +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,పత్రాలను రద్దు చేస్తోంది DocType: User,Send Notifications for Email threads,ఇమెయిల్ థ్రెడ్ల కోసం నోటిఫికేషన్లను పంపండి apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ప్రొఫెసర్ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,లేదు డెవలపర్ మోడ్లో @@ -736,7 +773,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ఫై DocType: DocField,In Global Search,గ్లోబల్ సెర్చ్ DocType: System Settings,Brute Force Security,బ్రూట్ ఫోర్స్ సెక్యూరిటీ DocType: Workflow State,indent-left,ఇండెంట్ ఎడమకు -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,ఇది ఈ ఫైల్ను మీరు తొలగించాలని ప్రమాదకర ఉంది: {0}. మీ సిస్టమ్ నిర్వాహకుడిని సంప్రదించండి. DocType: Currency,Currency Name,కరెన్సీ పేరు apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ఇమెయిళ్ళు లేవు @@ -751,11 +787,13 @@ DocType: Energy Point Rule,User Field,వినియోగదారు ఫీ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,తొలగించు పుష్ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} కోసం ఇప్పటికే తప్పుకునే {1} {2} +DocType: Scheduled Job Type,Stopped,ఆగిపోయింది apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,తొలగించలేదు apps/frappe/frappe/desk/like.py,Liked,పడినవి apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,ప్రస్తుతం పంపండి apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ప్రామాణిక doctype, డిఫాల్ట్ ముద్రణ ఫార్మాట్ ఉండకూడదు అనుకూలపరచండి ఫారంనుండి" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","ప్రామాణిక doctype, డిఫాల్ట్ ముద్రణ ఫార్మాట్ ఉండకూడదు అనుకూలపరచండి ఫారంనుండి" +DocType: Server Script,Allow Guest,అతిథిని అనుమతించు DocType: Report,Query,ప్రశ్న DocType: Customize Form,Sort Order,క్రమబద్ధీకరణ క్రమం apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'లిస్ట్ వ్యూ' వరుసగా రకం {0} అనుమతించబడలేదు {1} @@ -777,10 +815,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,రెండు ఫాక్టర్ ప్రామాణీకరణ పద్ధతి apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"మొదట పేరును సెట్ చేసి, రికార్డ్ను సేవ్ చేయండి." apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 రికార్డులు +DocType: DocType Link,Link Fieldname,ఫీల్డ్ పేరును లింక్ చేయండి apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},తో షేర్డ్ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,చందా రద్దుచేసే DocType: View Log,Reference Name,రిఫరెన్స్ పేరు apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,వినియోగదారుని మార్చండి +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ప్రధమ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,అనువాదాలు నవీకరించండి DocType: Error Snapshot,Exception,మినహాయింపు DocType: Email Account,Use IMAP,ఉపయోగం IMAP @@ -795,6 +835,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,వర్క్ఫ్లో రాష్ట్ర పరివర్తన నిర్వచించే సూత్రాలు. DocType: File,Folder,ఫోల్డర్ DocType: Website Route Meta,Website Route Meta,వెబ్‌సైట్ రూట్ మెటా +DocType: Onboarding Slide Field,Onboarding Slide Field,ఆన్‌బోర్డింగ్ స్లైడ్ ఫీల్డ్ DocType: DocField,Index,ఇండెక్స్ DocType: Email Group,Newsletter Manager,వార్తా మేనేజర్ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,ఎంపిక 1 @@ -878,6 +919,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,శోధ DocType: Workflow State,text-width,టెక్స్ట్ వెడల్పు apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ఈ రికార్డ్ కోసం గరిష్ట అటాచ్మెంట్ పరిమితిని చేరుకున్నారు. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ఫైల్ పేరు లేదా పొడిగింపు ద్వారా శోధించండి +DocType: Onboarding Slide,Slide Title,స్లయిడ్ శీర్షిక DocType: Notification,View Properties (via Customize Form),(అనుకూలపరచండి ఫారం ద్వారా) వీక్షణ గుణాలు apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,దాన్ని ఎంచుకోవడానికి ఫైల్‌పై క్లిక్ చేయండి. DocType: Note Seen By,Note Seen By,గమనిక సీన్ బై @@ -904,13 +946,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL ను భాగస్వామ్యం చేయండి DocType: System Settings,Allow Consecutive Login Attempts ,వరుస లాగిన్ ప్రయత్నాలను అనుమతించు apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,చెల్లింపు విధానంలో ఒక లోపం సంభవించింది. దయచేసి మమ్మల్ని సంప్రదించండి. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,స్లైడ్ రకం సృష్టించు లేదా సెట్టింగులు అయితే {ref_doctype} .py ఫైల్‌లో 'create_onboarding_docs' పద్ధతి ఉండాలి. స్లైడ్ పూర్తయిన తర్వాత అమలు చేయాల్సిన ఫైలు. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} రోజుల క్రితం DocType: Email Account,Awaiting Password,అందించనివారు పాస్వర్డ్ DocType: Address,Address Line 1,చిరునామా పంక్తి 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,కాదు వారసులు DocType: Contact,Company Name,కంపెనీ పేరు DocType: Custom DocPerm,Role,పాత్ర -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,సెట్టింగ్లు ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,మీ బ్రౌజర్‌కు apps/frappe/frappe/utils/data.py,Cent,సెంట్ ,Recorder,రికార్డర్ @@ -969,6 +1011,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","గ్రహీత మీ ఇమెయిల్ తెరిచినట్లయితే ట్రాక్ చేయండి. <br> గమనిక: మీరు బహుళ గ్రహీతలకు పంపితే, 1 గ్రహీత ఇమెయిల్ను చదివినప్పటికీ, ఇది "తెరవబడినది"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,మిస్సింగ్ విలువలు లు apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google పరిచయాల ప్రాప్యతను అనుమతించండి +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,నిరోధిత DocType: Data Migration Connector,Frappe,ఫ్రాప్పే apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,చదవనట్టు గుర్తుపెట్టు DocType: Activity Log,Operation,ఆపరేషన్ @@ -1022,6 +1065,7 @@ DocType: Web Form,Allow Print,ప్రింట్ అనుమతిస్త DocType: Communication,Clicked,క్లిక్ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,అనుసరించవద్దు apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},అనుమతి లేదు '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,పంపడానికి షెడ్యూల్డ్ DocType: DocType,Track Seen,ట్రాక్ సీన్ DocType: Dropbox Settings,File Backup,ఫైల్ బ్యాకప్ @@ -1030,12 +1074,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,ఏ {0} ద apps/frappe/frappe/config/customization.py,Add custom forms.,కస్టమ్ రూపాలు జోడించండి. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} లో {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ఈ పత్రం సమర్పించిన -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,వ్యవస్థ అనేక ముందు నిర్వచించబడిన పాత్రలు అందిస్తుంది. మీరు నాణ్యమైన అనుమతులు సెట్ కొత్త పాత్రలు జోడించవచ్చు. DocType: Communication,CC,సిసి DocType: Country,Geo,జియో DocType: Data Migration Run,Trigger Name,ట్రిగ్గర్ పేరు -apps/frappe/frappe/public/js/frappe/desk.js,Domains,డొమైన్స్ +DocType: Onboarding Slide,Domains,డొమైన్స్ DocType: Blog Category,Blog Category,బ్లాగ్ వర్గం apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,క్రింది పరిస్థితి విఫలమైతే ఎందుకంటే మ్యాప్ కాదు: DocType: Role Permission for Page and Report,Roles HTML,పాత్రలు HTML @@ -1076,7 +1119,6 @@ DocType: Assignment Rule Day,Saturday,శనివారం DocType: User,Represents a User in the system.,వ్యవస్థలో ఒక వాడుకరి సూచిస్తుంది. DocType: List View Setting,Disable Auto Refresh,ఆటో రిఫ్రెష్ ఆపివేయి DocType: Comment,Label,లేబుల్ -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","పని {0}, మీరు {1}, మూసివేశారు కేటాయించిన." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,దయచేసి ఈ విండోను మూసివేసి DocType: Print Format,Print Format Type,ప్రింట్ ఫార్మాట్ రకం DocType: Newsletter,A Lead with this Email Address should exist,ఈ ఇమెయిల్ చిరునామాతో లీడ్ ఉండాలి @@ -1092,6 +1134,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,అవుట్గో apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ఒక ఎంచుకోండి DocType: Data Export,Filter List,ఫిల్టర్ జాబితా DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,ఆటో Reply సందేశం DocType: Data Migration Mapping,Condition,కండిషన్ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} గంటల క్రితం @@ -1110,12 +1153,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,నాలెడ్జ్ బేస్ కంట్రిబ్యూటర్ DocType: Communication,Sent Read Receipt,పంపిన రసీదు చదవండి DocType: Email Queue,Unsubscribe Method,చందా రద్దుచేసే విధానం +DocType: Onboarding Slide,Add More Button,మరిన్ని బటన్‌ను జోడించండి DocType: GSuite Templates,Related DocType,సంబంధిత DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,కంటెంట్ జోడించడానికి సవరించడానికి apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,భాషలను ఎంచుకోండి apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,కార్డ్ వివరాలు apps/frappe/frappe/__init__.py,No permission for {0},ఎటువంటి అనుమతి {0} DocType: DocType,Advanced,అధునాతన +DocType: Onboarding Slide,Slide Image Source,స్లైడ్ చిత్ర మూలం apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API కీ తెలుస్తోంది లేదా API సీక్రెట్ తప్పు ఉంది !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},సూచన: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,శ్రీమతి @@ -1141,7 +1186,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, doctype అనుమతిస్తుంది. జగ్రత్త!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ప్రింటింగ్, ఇమెయిల్ కోసం అనుకూలీకరించిన ఆకృతులు" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} మొత్తం -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,కొత్త వెర్షన్ కు నవీకరించబడింది DocType: Custom Field,Depends On,ఆధారపడి DocType: Kanban Board Column,Green,గ్రీన్ DocType: Custom DocPerm,Additional Permissions,అదనపు అనుమతులు @@ -1166,6 +1210,7 @@ DocType: Address,Is Your Company Address,మీ కంపెనీ అడ్ర DocType: Energy Point Log,Social,సామాజిక apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,ఎడిటింగ్ రో DocType: Workflow Action Master,Workflow Action Master,వర్క్ఫ్లో యాక్షన్ మాస్టర్ +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,అన్నిటిని తొలిగించు DocType: Custom Field,Field Type,క్షేత్ర రకం apps/frappe/frappe/utils/data.py,only.,మాత్రమే. DocType: Route History,Route History,మార్గం చరిత్ర @@ -1201,11 +1246,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,పాస్వర్డ్ DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,సర్వర్ లోపం +DocType: Server Script,After Delete,తొలగించు తరువాత apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,గత నివేదికలన్నీ చూడండి. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,లాగిన్ ID అవసరం DocType: Website Slideshow,Website Slideshow,వెబ్సైట్ స్లైడ్ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ఏ డేటా DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","వెబ్సైట్ హోమ్ పేజీ ఉంది ఆ లింక్. ప్రామాణిక లింకులు (ఇండెక్స్, లాగిన్, ఉత్పత్తులు, బ్లాగ్, గురించి, పరిచయం)" +DocType: Server Script,After Submit,సమర్పించిన తరువాత apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ఇమెయిల్ ఖాతా {0} నుండి ఇమెయిళ్ళను స్వీకరించడం అయితే ప్రామాణీకరణ విఫలమైంది. సర్వర్ నుండి సందేశం: {1} DocType: User,Banner Image,బ్యానర్ చిత్రం DocType: Custom Field,Custom Field,కస్టమ్ ఫీల్డ్ @@ -1245,15 +1292,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","యూజర్ తనిఖీ ఏ పాత్ర ఉంది, అప్పుడు యూజర్ ఒక "సిస్టమ్ వాడుకరి" అవుతుంది. "సిస్టమ్ వాడుకరి" డెస్క్టాప్ ప్రాప్తి ఉంది" DocType: System Settings,Date and Number Format,తేదీ మరియు సంఖ్య ఫార్మాట్ apps/frappe/frappe/model/document.py,one of,ఒకటి -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్‌ను అనుకూలీకరించండి apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ఒక క్షణం తనిఖీ చేస్తోంది apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,షో టాగ్లు DocType: DocField,HTML Editor,HTML ఎడిటర్ 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,చర్యలు -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు +DocType: DocType,Actions,చర్యలు DocType: Workflow State,align-justify,align సమ్మతం DocType: User,Middle Name (Optional),మధ్య పేరు (ఆప్షనల్) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,అనుమతించబడదు @@ -1268,6 +1313,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ఫలి DocType: System Settings,Security,సెక్యూరిటీ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} గ్రహీతలకు పంపవచ్చు షెడ్యూల్డ్ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,కట్ +DocType: Server Script,After Save,సేవ్ చేసిన తరువాత apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},నామాంతరం {0} కు {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} యొక్క {0} (పిల్లలతో {2} వరుసలు) DocType: Currency,**Currency** Master,** కరెన్సీ ** మాస్టర్ @@ -1292,16 +1338,19 @@ DocType: Prepared Report,Filter Values,ఫిల్టర్ విలువల DocType: Communication,User Tags,వాడుకరి టాగ్లు DocType: Data Migration Run,Fail,విఫలం DocType: Workflow State,download-alt,డౌన్-alt +DocType: Scheduled Job Type,Last Execution,చివరి అమలు DocType: Data Migration Run,Pull Failed,పుల్ విఫలమైంది apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,కార్డులను చూపించు / దాచు DocType: Communication,Feedback Request,అభిప్రాయం అభ్యర్థన apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel ఫైల్ల నుండి దిగుమతి డేటా. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,కింది ఖాళీలను లేవు: +DocType: Notification Log,From User,వినియోగదారు నుండి apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},రద్దు చేస్తోంది {0} DocType: Web Page,Main Section,ప్రధాన విభాగం DocType: Page,Icon,ఐకాన్ apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","సూచన: పాస్వర్డ్ను చిహ్నాలు, సంఖ్యలు మరియు రాజధాని అక్షరాలు చేర్చండి" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","సూచన: పాస్వర్డ్ను చిహ్నాలు, సంఖ్యలు మరియు రాజధాని అక్షరాలు చేర్చండి" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","ప్రస్తావనలు, కేటాయింపులు, శక్తి పాయింట్లు మరియు మరిన్నింటి కోసం నోటిఫికేషన్‌లను కాన్ఫిగర్ చేయండి." DocType: DocField,Allow in Quick Entry,త్వరిత ఎంట్రీలో అనుమతించు apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1333,7 +1382,6 @@ DocType: Website Theme,Theme URL,థీమ్ URL DocType: Customize Form,Sort Field,క్రమీకరించు ఫీల్డ్ DocType: Razorpay Settings,Razorpay Settings,Razorpay సెట్టింగులు apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,మార్చు వడపోత -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,మరిన్ని జోడించండి DocType: System Settings,Session Expiry Mobile,సెషన్ గడువు మొబైల్ apps/frappe/frappe/utils/password.py,Incorrect User or Password,తప్పు యూజర్ లేదా పాస్వర్డ్ apps/frappe/frappe/templates/includes/search_box.html,Search results for,కోసం శోధన ఫలితాలు @@ -1349,8 +1397,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,ఎనర్జీ పాయింట్ రూల్ DocType: Communication,Delayed,ఆలస్యం apps/frappe/frappe/config/settings.py,List of backups available for download,డౌన్లోడ్ కోసం అందుబాటులో బ్యాకప్ జాబితా +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,క్రొత్త డేటా దిగుమతిని ప్రయత్నించండి apps/frappe/frappe/www/login.html,Sign up,చేరడం apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,వరుస {0}: ప్రామాణిక ఫీల్డ్లకు తప్పనిసరిని నిలిపివేయడానికి అనుమతించబడదు +DocType: Webhook,Enable Security,భద్రతను ప్రారంభించండి apps/frappe/frappe/config/customization.py,Dashboards,డాష్బోర్డ్లను DocType: Test Runner,Output,అవుట్పుట్ DocType: Milestone,Track Field,ట్రాక్ ఫీల్డ్ @@ -1369,6 +1419,7 @@ DocType: Portal Menu Item,Portal Menu Item,పోర్టల్ మెను apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ఫిల్టర్లను సెట్ చేయండి DocType: Contact Us Settings,Email ID,ఇమెయిల్ ID DocType: Energy Point Rule,Multiplier Field,గుణక క్షేత్రం +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,రేజర్‌పే ఆర్డర్‌ను సృష్టించడం సాధ్యం కాలేదు. దయచేసి నిర్వాహకుడిని సంప్రదించండి DocType: Dashboard Chart,Time Interval,సమయ విరామం DocType: Activity Log,Keep track of all update feeds,అన్ని నవీకరణ ఫీడ్లను ట్రాక్ చేయండి DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,క్లయింట్ అనువర్తనం వినియోగదారు తర్వాత అది అనుమతిస్తుంది ప్రాప్యత కలిగి ఉంటుంది ఇది వనరుల జాబితా. <br> ఉదా ప్రాజెక్ట్ @@ -1388,6 +1439,7 @@ DocType: DefaultValue,Key,కీ DocType: Address,Contacts,కాంటాక్ట్స్ DocType: System Settings,Setup Complete,సెటప్ పూర్తయింది apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,అన్ని పత్రం వాటాల నివేదిక +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","దిగుమతి టెంప్లేట్ .csv, .xlsx లేదా .xls రకం ఉండాలి" apps/frappe/frappe/www/update-password.html,New Password,కొత్త పాస్వర్డ్ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,వడపోత {0} తప్పిపోయిన apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,క్షమించాలి! మీరు ఆటో సృష్టించిన వ్యాఖ్యలు తొలగించలేరు @@ -1403,6 +1455,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ఇష్టాంశ చిహ్నం apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,రన్ DocType: Blog Post,Content (HTML),కంటెంట్ (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,కోసం సెటప్ DocType: Personal Data Download Request,User Name,వినియోగదారు పేరు DocType: Workflow State,minus-sign,మైనస్ సైన్ apps/frappe/frappe/public/js/frappe/request.js,Not Found,దొరకలేదు @@ -1410,6 +1463,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,ఏ {0} అనుమతి apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ఎగుమతి కస్టమ్ అనుమతులు apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,అంశాలు కనుగొనబడలేదు. DocType: Data Export,Fields Multicheck,ఫీల్డ్స్ మల్టీచెక్ +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,}} పూర్తయింది DocType: Activity Log,Login,లాగిన్ DocType: Web Form,Payments,చెల్లింపులు apps/frappe/frappe/www/qrcode.html,Hi {0},హాయ్ {0} @@ -1438,6 +1492,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,సా apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,అనుమతి లోపం apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},పేరు {0} ఉండకూడదు {1} DocType: User Permission,Applicable For,కోసం వర్తించే +DocType: Dashboard Chart,From Date,తేదీ నుండి apps/frappe/frappe/core/doctype/version/version_view.html,Success,సక్సెస్ apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,సెషన్ ముగిసిపోయింది apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,సెషన్ ముగిసిపోయింది @@ -1450,7 +1505,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,వ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; పరిస్థితి లో అనుమతించబడవు DocType: Async Task,Async Task,Async టాస్క్ DocType: Workflow State,picture,చిత్రాన్ని -apps/frappe/frappe/www/complete_signup.html,Complete,పూర్తి +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,పూర్తి DocType: DocType,Image Field,చిత్రం ఫీల్డ్ DocType: Print Format,Custom HTML Help,కస్టమ్ HTML సహాయం DocType: LDAP Settings,Default Role on Creation,సృష్టిపై డిఫాల్ట్ పాత్ర @@ -1458,6 +1513,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,రానున్న రాష్ట్ర DocType: User,Block Modules,బ్లాక్ గుణకాలు DocType: Print Format,Custom CSS,కస్టమ్ CSS +DocType: Energy Point Rule,Apply Only Once,ఒక్కసారి మాత్రమే వర్తించండి apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ఒక వ్యాఖ్యను జోడించండి DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},విస్మరించబడిన: {0} కు {1} @@ -1468,6 +1524,7 @@ DocType: Address,Postal,పోస్టల్ DocType: Email Account,Default Incoming,డిఫాల్ట్ ఇన్కమింగ్ DocType: Workflow State,repeat,రిపీట్ DocType: Website Settings,Banner,బ్యానర్ +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,అన్ని పత్రాలను రద్దు చేయండి DocType: Role,"If disabled, this role will be removed from all users.","డిసేబుల్ ఉంటే, ఈ పాత్ర అన్ని వినియోగదారుల నుండి తీసివేయబడుతుంది ఉంటుంది." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} జాబితాకు వెళ్లండి apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,సెర్చ్లో సహాయం @@ -1476,6 +1533,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,రిజ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ఈ పత్రం కోసం ఆటో రిపీట్ నిలిపివేయబడింది. DocType: DocType,Hide Copy,కాపీ దాచు apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,అన్ని పాత్రలు క్లియర్ +DocType: Server Script,Before Save,సేవ్ చేయడానికి ముందు apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ప్రత్యేకంగా ఉండాలి apps/frappe/frappe/model/base_document.py,Row,రో apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC & ఇమెయిల్ మూస" @@ -1486,7 +1544,6 @@ DocType: Chat Profile,Offline,ఆఫ్లైన్ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},విజయవంతంగా దిగుమతి {0} DocType: User,API Key,API కీ DocType: Email Account,Send unsubscribe message in email,ఇమెయిల్ లో అన్సబ్స్క్రయిబ్ సందేశాన్ని పంపు -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,సవరణ శీర్షిక apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,ఈ లింక్పై ఫీల్డ్ కోసం DOCTYPE ఉంటుంది FIELDNAME. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,మీకు మరియు మీరు అప్పగించింది పత్రాలు. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,మీరు దీన్ని కాపీ-పేస్ట్ చేయవచ్చు @@ -1517,8 +1574,10 @@ DocType: Data Migration Run,Total Pages,మొత్తం పేజీలు DocType: DocField,Attach Image,చిత్రం అటాచ్ DocType: Workflow State,list-alt,జాబితా-alt apps/frappe/frappe/www/update-password.html,Password Updated,పాస్వర్డ్ నవీకరించబడింది +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు apps/frappe/frappe/www/qrcode.html,Steps to verify your login,మీ లాగిన్ను ధృవీకరించడానికి దశలు apps/frappe/frappe/utils/password.py,Password not found,పాస్వర్డ్ దొరకలేదు +DocType: Webhook,Webhook Secret,వెబ్‌హూక్ సీక్రెట్ DocType: Data Migration Mapping,Page Length,పేజీ పొడవు DocType: Email Queue,Expose Recipients,గ్రహీతలు బహిర్గతం apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,వచ్చే మెయిల్స్ తప్పనిసరి జోడించు @@ -1545,6 +1604,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,వ్యవస్థ DocType: Web Form,Max Attachment Size (in MB),మాక్స్ అటాచ్మెంట్ పరిమాణం (MB నందు) apps/frappe/frappe/www/login.html,Have an account? Login,ఒక ఖాతా? లాగిన్ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,సెట్టింగులను ముద్రించండి ... DocType: Workflow State,arrow-down,మెట్ట డౌన్ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},అడ్డు వరుస {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},వాడుకరి తొలగించడానికి అనుమతి లేదు {0}: {1} @@ -1566,6 +1626,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,మీ DocType: Dropbox Settings,Dropbox Access Secret,డ్రాప్బాక్స్ యాక్సెస్ సీక్రెట్ DocType: Tag Link,Document Title,పత్రం శీర్షిక apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ఆదేశక) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం DocType: Social Login Key,Social Login Provider,సామాజిక లాగిన్ ప్రొవైడర్ apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,మరో వ్యాఖ్య జోడించండి apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ఫైల్లో డేటా ఏదీ కనుగొనబడలేదు. దయచేసి కొత్త ఫైల్ డేటాతో తిరిగి చేరండి. @@ -1580,11 +1641,12 @@ DocType: Workflow State,hand-down,చేతి-డౌన్ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",కాన్బన్ కాలమ్‌గా ఉపయోగించగల ఫీల్డ్‌లు ఏవీ కనుగొనబడలేదు. "ఎంచుకోండి" రకం యొక్క అనుకూల ఫీల్డ్‌ను జోడించడానికి అనుకూలీకరించు ఫారమ్‌ను ఉపయోగించండి. DocType: Address,GST State,జిఎస్టి రాష్ట్రం apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: లేకుండా సమర్పించండి రద్దు సెట్ చెయ్యబడదు +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),వాడుకరి ({0}) DocType: Website Theme,Theme,థీమ్ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ప్రామాణీకరణ కోడ్ బంధం దారిమార్పు apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,సహాయం తెరవండి DocType: DocType,Is Submittable,Submittable ఉంది -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,కొత్త ప్రస్తావన +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,కొత్త ప్రస్తావన apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,క్రొత్త Google పరిచయాలు సమకాలీకరించబడలేదు. DocType: File,Uploaded To Google Drive,Google డిస్క్‌లో అప్‌లోడ్ చేయబడింది apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ఒక చెక్ రంగంలో విలువ 0 లేదా 1 గాని ఉండవచ్చు @@ -1594,7 +1656,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,సిరీస్ DocType: Workflow State,Inbox,ఇన్బాక్స్ DocType: Kanban Board Column,Red,రెడ్ DocType: Workflow State,Tag,ట్యాగ్ -DocType: Custom Script,Script,స్క్రిప్ట్ +DocType: Report,Script,స్క్రిప్ట్ apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,పత్రం సేవ్ చేయబడదు. DocType: Energy Point Rule,Maximum Points,గరిష్ట పాయింట్లు apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,నా సెట్టింగ్లు @@ -1623,8 +1685,10 @@ DocType: Email Queue,Email Queue,ఇమెయిల్ క్యూ DocType: Address,Haryana,హర్యానా apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,పాత్రలు వారి వాడుకరి పేజీ నుండి వినియోగదారులు కోసం అమర్చవచ్చు. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,వ్యాఖ్యను జోడించండి +DocType: Dashboard Chart,Select Date Range,తేదీ పరిధిని ఎంచుకోండి DocType: DocField,Mandatory,తప్పనిసరి apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ఎగుమతి మాడ్యూల్ +DocType: Scheduled Job Type,Monthly Long,మంత్లీ లాంగ్ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: నో ప్రాథమిక అనుమతులు సెట్ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","రద్దు సమర్పించండి యొక్క అర్థం, సవరించేందుకు" @@ -1633,7 +1697,6 @@ DocType: Test Runner,Module Path,మాడ్యూల్ పాత్ DocType: Milestone Tracker,Track milestones for any document,ఏదైనా పత్రం కోసం మైలురాళ్లను ట్రాక్ చేయండి DocType: Social Login Key,Identity Details,గుర్తింపు వివరాలు apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,డాష్‌బోర్డ్ చూపించు -apps/frappe/frappe/desk/form/assign_to.py,New Message,కొత్త సందేశం DocType: File,Preview HTML,ప్రివ్యూ HTML DocType: Desktop Icon,query-report,ప్రశ్న-నివేదిక DocType: Data Import Beta,Template Warnings,మూస హెచ్చరికలు @@ -1650,12 +1713,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} పేరు apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ఏ అనుమతులు ఈ ప్రమాణం కోసం సెట్. DocType: Auto Email Report,Auto Email Report,ఆటో ఇమెయిల్ నివేదిక +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,క్రొత్త పత్రం భాగస్వామ్యం చేయబడింది apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,వ్యాఖ్యను తొలగించాలా? DocType: Address Template,This format is used if country specific format is not found,దేశం నిర్దిష్ట ఫార్మాట్ దొరకలేదు ఒకవేళ ఈ ఫార్మాట్ ఉపయోగిస్తారు DocType: System Settings,Allow Login using Mobile Number,మొబైల్ నంబర్ ఉపయోగించి లాగిన్ అనుమతించు apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,మీరు ఈ వనరును ప్రాప్తి చేయడానికి తగినంత అనుమతులు లేవు. దయచేసి ప్రాప్యతను పొందడానికి మీ మేనేజర్ సంప్రదించండి. DocType: Custom Field,Custom,కస్టమ్ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ప్రారంభించబడితే, పరిమితం చేయబడిన IP చిరునామా నుండి లాగిన్ చేసే వినియోగదారులు రెండు కారకాల ప్రామాణీకరణ కోసం ప్రాంప్ట్ చేయబడరు" +DocType: Server Script,After Cancel,రద్దు చేసిన తరువాత DocType: Auto Repeat,Get Contacts,పరిచయాలను పొందండి apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},కింద దాఖలు పోస్ట్లు {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,పేరులేని కాలమ్‌ను దాటవేస్తోంది @@ -1666,6 +1731,7 @@ DocType: User,Login After,లాగిన్ తర్వాత DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,ప్రింటింగ్ DocType: Workflow State,thumbs-up,బ్రొటనవేళ్లు అప్ +DocType: Notification Log,Mention,మెన్షన్ DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,ఫాంట్లు apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,ప్రెసిషన్ 1 నుండి 6 మధ్య ఉండాలి @@ -1673,7 +1739,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,మరియు apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},ఈ నివేదిక {0} DocType: Error Snapshot,Frames,ఫ్రేమ్లు -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,అసైన్మెంట్ +DocType: Notification Log,Assignment,అసైన్మెంట్ DocType: Notification,Slack Channel,స్లాక్ ఛానల్ DocType: About Us Team Member,Image Link,చిత్రం లింక్ DocType: Auto Email Report,Report Filters,నివేదిక వడపోతలు @@ -1690,6 +1756,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ఈవెంట్ నవీకరించలేకపోతున్నారా apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,ధృవీకరణ కోడ్ మీ నమోదిత ఇమెయిల్ చిరునామాకు పంపబడింది. apps/frappe/frappe/core/doctype/user/user.py,Throttled,ఆపేసారు +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,మీ లక్ష్యం apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","వడపోత 4 విలువలు (doctype, FIELDNAME, ఆపరేటర్లు, విలువ) కలిగి ఉండాలి: {0}" apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,అసైన్‌మెంట్ రూల్‌ను వర్తించండి apps/frappe/frappe/utils/bot.py,show,షో @@ -1743,7 +1810,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,లింక apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,మీ భాష DocType: Dashboard Chart,Average,సగటు apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,రో జోడించండి -DocType: Tag Category,Doctypes,డాక్యుమెంట్ రకాలు apps/frappe/frappe/public/js/frappe/form/print.js,Printer,ప్రింటర్ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,ప్రశ్న ఒక బాలినేని ఉండాలి DocType: Auto Repeat,Completed,పూర్తయింది @@ -1801,6 +1867,7 @@ DocType: GCalendar Account,Next Sync Token,తదుపరి సమకాలీ DocType: Energy Point Settings,Energy Point Settings,ఎనర్జీ పాయింట్ సెట్టింగులు DocType: Async Task,Succeeded,విజయవంతమైంది apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},అవసరం తప్పనిసరి ఖాళీలను {0} +DocType: Onboarding Slide Field,Align,సమలేఖనం apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,కోసం రీసెట్ అనుమతులు {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,వినియోగదారులు మరియు అనుమతులు DocType: S3 Backup Settings,S3 Backup Settings,S3 బ్యాకప్ సెట్టింగులు @@ -1817,7 +1884,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,క్రొత్త ముద్రణ ఆకృతి పేరు apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,అభ్యర్థనను ఆమోదించడానికి క్రింది లింక్‌పై క్లిక్ చేయండి DocType: Workflow State,align-left,-align వదిలి +DocType: Onboarding Slide,Action Settings,చర్య సెట్టింగ్‌లు DocType: User,Defaults,అప్రమేయం +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","పోలిక కోసం,> 5, <10 లేదా = 324 ఉపయోగించండి. శ్రేణుల కోసం, 5:10 (5 & 10 మధ్య విలువల కోసం) ఉపయోగించండి." DocType: Energy Point Log,Revert Of,తిరిగి మార్చండి apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ఇప్పటికే విలీనం DocType: User,Birth Date,పుట్టిన తేదీ @@ -1872,6 +1941,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,లో DocType: Notification,Value Change,విలువ మార్చండి DocType: Google Contacts,Authorize Google Contacts Access,Google పరిచయాల ప్రాప్యతను ప్రామాణీకరించండి apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,నివేదిక నుండి సంఖ్యాత్మక ఖాళీలను మాత్రమే చూపుతోంది +apps/frappe/frappe/utils/data.py,1 week ago,1 వారం క్రితం DocType: Data Import Beta,Import Type,దిగుమతి రకం DocType: Access Log,HTML Page,HTML పేజీ DocType: Address,Subsidiary,అనుబంధ @@ -1881,7 +1951,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,లెటర్హెడ్ తో apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,చెల్లని అవుట్గోయింగ్ మెయిల్ సర్వర్ లేదా పోర్ట్ DocType: Custom DocPerm,Write,వ్రాయండి -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,మాత్రమే నిర్వాహకుడు ప్రశ్నా / స్క్రిప్ట్ నివేదికలు సృష్టించడానికి అనుమతి apps/frappe/frappe/public/js/frappe/form/save.js,Updating,నవీకరిస్తోంది DocType: Data Import Beta,Preview,ప్రివ్యూ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ఫీల్డ్ "విలువ" తప్పనిసరి. దయచేసి అప్డేట్ అవుతుంది విలువ పేర్కొనండి @@ -1890,6 +1959,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From, apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,వాడుకరి ఆహ్వానించండి DocType: Data Migration Run,Started,ప్రారంభ DocType: Data Migration Run,End Time,ముగింపు సమయం +DocType: Dashboard Chart,Group By Based On,ఆధారంగా సమూహం apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Select అటాచ్మెంట్లు apps/frappe/frappe/model/naming.py, for {0},{0} కోసం apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,మీరు ఈ పత్రం ప్రచురించేందుకు అనుమతి లేదు @@ -1931,6 +2001,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ధృవీకరి DocType: Workflow Document State,Update Field,నవీకరణ ఫీల్డ్ DocType: Chat Profile,Enable Chat,చాట్ను ప్రారంభించండి DocType: LDAP Settings,Base Distinguished Name (DN),బేస్ విశిష్ట పేరు (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ఈ సంభాషణ వదిలి apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ఎంపికలు లింక్ రంగంలో సెట్ {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,క్యూ / వర్కర్ @@ -1998,12 +2069,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,ఈ సమయంలో అనుమతి లేదు లాగిన్ DocType: Data Migration Run,Current Mapping Action,ప్రస్తుత మ్యాపింగ్ చర్య DocType: Dashboard Chart Source,Source Name,మూలం పేరు -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,వినియోగదారుతో ఇమెయిల్ ఖాతా లేదు. దయచేసి వినియోగదారు> ఇమెయిల్ ఇన్బాక్స్ క్రింద ఒక ఖాతాను జోడించండి. DocType: Email Account,Email Sync Option,ఇమెయిల్ సమకాలీకరణ ఎంపిక apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,వరుస సంఖ్య DocType: Async Task,Runtime,రన్టైమ్ DocType: Post,Is Pinned,పిన్ చేయబడింది DocType: Contact Us Settings,Introduction,పరిచయం +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,సహాయం కావాలి? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ప్రపంచవ్యాప్తంగా పిన్ చేయండి apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,తరువాత DocType: LDAP Settings,LDAP Email Field,LDAP ఇమెయిల్ ఫీల్డ్ @@ -2013,7 +2084,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ఇప్ DocType: User Email,Enable Outgoing,అవుట్గోయింగ్ ప్రారంభించు DocType: Address,Fax,ఫ్యాక్స్ apps/frappe/frappe/config/customization.py,Custom Tags,కస్టమ్ టాగ్లు -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి DocType: Comment,Submitted,Submitted DocType: Contact,Pulled from Google Contacts,Google పరిచయాల నుండి తీసివేయబడింది apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,చెల్లుబాటు అయ్యే అభ్యర్ధనలో @@ -2034,9 +2104,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,హోం / apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,నాకు అప్పగించుము DocType: DocField,Dynamic Link,డైనమిక్ లింక్ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,మెనూ మరియు సైడ్‌బార్‌లో అదనపు సత్వరమార్గాలను ప్రారంభించడానికి ఆల్ట్ కీని నొక్కండి +DocType: Dashboard Chart,To Date,తేదీ DocType: List View Setting,List View Setting,జాబితా వీక్షణ సెట్టింగ్ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,విఫలమైంది షో ఉద్యోగాలు -DocType: Event,Details,వివరాలు +DocType: Scheduled Job Log,Details,వివరాలు DocType: Property Setter,DocType or Field,DOCTYPE లేదా ఫీల్డ్ apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,మీరు ఈ పత్రాన్ని అనుసరించలేదు apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,ప్రాథమిక రంగు @@ -2045,7 +2116,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,తెలుస్తోంది publishable కీ లేదా సీక్రెట్ కీ తప్పు !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,తెలుస్తోంది publishable కీ లేదా సీక్రెట్ కీ తప్పు !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,అనుమతులు సెట్ కోసం త్వరిత సహాయం -DocType: Tag Doc Category,Doctype to Assign Tags,టాగ్లు అప్పగించుము ఎలా doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,షో పునఃస్థితులు apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ఇమెయిల్ ట్రాష్కు తరలించబడింది DocType: Report,Report Builder,నివేదిక బిల్డర్ @@ -2061,6 +2131,7 @@ DocType: Workflow State,Upload,అప్లోడ్ DocType: User Permission,Advanced Control,ఆధునిక నియంత్రణ DocType: System Settings,Date Format,తేదీ ఫార్మాట్ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ప్రచురించబడలేదు +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస కనుగొనబడలేదు. దయచేసి సెటప్> ప్రింటింగ్ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",వర్క్ఫ్లో కోసం చర్యలు (ఉదా రద్దు ఆమోదించండి). DocType: Data Import,Skip rows with errors,లోపాలతో అడ్డు వరుసలను దాటవేయి DocType: Workflow State,flag,జెండా @@ -2077,7 +2148,7 @@ DocType: Post Comment,Post Comment,పోస్ట్ వ్యాఖ్య apps/frappe/frappe/config/core.py,Documents,పత్రాలు apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,కార్యాచరణ ద్వారా లాగ్ DocType: Social Login Key,Custom Base URL,కస్టమ్ బేస్ URL -DocType: Email Flag Queue,Is Completed,పూర్తయిన +DocType: Onboarding Slide,Is Completed,పూర్తయిన apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,ఫీల్డ్స్ పొందండి apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,ప్రొఫైల్ను సవరించు DocType: Kanban Board Column,Archived,బధ్రపరచబడింది @@ -2088,12 +2159,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield eval: ఇక్కడ నిర్వచించారు FIELDNAME విలువ ఉంది లేదా నియమాలు నిజమైన (ఉదాహరణలు) ఉన్నాయి మాత్రమే ఈ రంగంలో కనిపిస్తుంది doc.myfield == 'నా విలువ' eval: doc.age> 18 DocType: Social Login Key,Office 365,ఆఫీస్ 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,నేడు -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,నేడు +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,నేడు +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,నేడు apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","మీరు ఈ సెట్ చేసిన తర్వాత, వినియోగదారులు మాత్రమే చేయగలిగింది యాక్సెస్ పత్రాలు ఉంటుంది (ఉదా. బ్లాగ్ పోస్ట్) లింక్ (ఉదా. బ్లాగర్) సొర." DocType: Data Import Beta,Submit After Import,దిగుమతి తర్వాత సమర్పించండి DocType: Error Log,Log of Scheduler Errors,షెడ్యూల్ ఆఫ్ ఎర్రర్స్ లోనికి ప్రవేశించండి DocType: User,Bio,బయో +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ఆన్‌బోర్డింగ్ స్లయిడ్ సహాయ లింక్ DocType: OAuth Client,App Client Secret,అనువర్తనం క్లయింట్ సీక్రెట్ apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,సమర్పిస్తోంది apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,పేరెంట్ డేటాను జోడించే డాక్యుమెంట్ పేరు. @@ -2101,7 +2173,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,అప్పర్కేస్ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,కస్టమ్ HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ఫోల్డర్ పేరును నమోదు -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస కనుగొనబడలేదు. దయచేసి సెటప్> ప్రింటింగ్ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి. apps/frappe/frappe/auth.py,Unknown User,తెలియని వాడుకరి apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Select రోల్ DocType: Comment,Deleted,తొలగించినవి @@ -2117,7 +2188,7 @@ DocType: Chat Token,Chat Token,టోకెన్ చాట్ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,చార్ట్ సృష్టించండి apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,దిగుమతి చేయవద్దు -DocType: Web Page,Center,సెంటర్ +DocType: Onboarding Slide Field,Center,సెంటర్ DocType: Notification,Value To Be Set,విలువ సెట్ చేయడానికి apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,మొదటి స్థాయి @@ -2125,7 +2196,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,డేటాబేస్ పేరు apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,రిఫ్రెష్ ఫారం DocType: DocField,Select,ఎంచుకోండి -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,పూర్తి లాగ్ చూడండి +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,పూర్తి లాగ్ చూడండి DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","సాధారణ పైథాన్ వ్యక్తీకరణ, ఉదాహరణ: స్థితి == 'ఓపెన్' మరియు == 'బగ్' అని టైప్ చేయండి" apps/frappe/frappe/utils/csvutils.py,File not attached,ఫైల్ జత లేదు apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,కనెక్షన్ కోల్పోయింది. కొన్ని లక్షణాలు పనిచేయకపోవచ్చు. @@ -2157,6 +2228,7 @@ DocType: Web Page,HTML for header section. Optional,శీర్షిక వి apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,ఈ ఫీచర్ బ్రాండ్ కొత్త మరియు ఇంకా ప్రయోగాత్మక దశలోనే ఉంది apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,గరిష్ఠ {0} వరుసలు అనుమతి DocType: Dashboard Chart Link,Chart,చార్ట్ +DocType: Scheduled Job Type,Cron,క్రాన్ DocType: Email Unsubscribe,Global Unsubscribe,గ్లోబల్ చందా రద్దుచేసే apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ఈ చాలా సాధారణ పాస్వర్డ్. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,చూడండి @@ -2173,6 +2245,7 @@ DocType: Data Migration Connector,Hostname,హోస్టునామము DocType: Data Migration Mapping,Condition Detail,పరిస్థితి వివరాలు apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","కరెన్సీకి {0}, కనీస లావాదేవీ మొత్తం {1}" DocType: DocField,Print Hide,ప్రింట్ దాచు +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,వినియోగదారుకు apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,విలువ ఎంటర్ DocType: Workflow State,tint,రంగు @@ -2236,6 +2309,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,లాగి apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,డు జోడించండి DocType: Footer Item,Company,కంపెనీ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},సగటు {0} +DocType: Scheduled Job Log,Scheduled,షెడ్యూల్డ్ DocType: User,Logout from all devices while changing Password,పాస్వర్డ్ను మార్చినప్పుడు అన్ని పరికరాల నుండి లాగ్అవుట్ చేయండి apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,పాస్ వర్డ్ నిర్ధారించు apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,లోపాలు ఏర్పడ్డాయి @@ -2260,7 +2334,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,వినియోగదారు అనుమతి ఇప్పటికే ఉంది apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},వీక్షించండి {0} -DocType: User,Hourly,ప్రతిగంట +DocType: Scheduled Job Type,Hourly,ప్రతిగంట apps/frappe/frappe/config/integrations.py,Register OAuth Client App,నమోదు ను క్లయింట్ అనువర్తనం DocType: DocField,Fetch If Empty,ఖాళీగా ఉంటే పొందండి DocType: Data Migration Connector,Authentication Credentials,ప్రామాణీకరణ ఆధారాలు @@ -2270,10 +2344,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,పాయింట DocType: SMS Settings,SMS Gateway URL,SMS గేట్వే URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ఉండకూడదు "{2}". ఇది ఒకటి ఉండాలి "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} లేదా {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,మీరంతా సెటప్ అయ్యారు! DocType: Workflow State,trash,చెత్త DocType: System Settings,Older backups will be automatically deleted,పాత బ్యాక్ అప్ స్వయంచాలకంగా తొలగించబడుతుంది apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,చెల్లని ప్రాప్యత కీ ID లేదా సీక్రెట్ ప్రాప్యత కీ. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,మీరు కొన్ని శక్తి పాయింట్లను కోల్పోయారు DocType: Post,Is Globally Pinned,ప్రపంచవ్యాప్తంగా పిన్ చేయబడింది apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,ఇటీవలి కార్యాచరణ DocType: Workflow Transition,Conditions,పరిస్థితులు @@ -2282,6 +2356,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,ధృవీ DocType: Event,Ends on,న ముగుస్తుంది DocType: Payment Gateway,Gateway,గేట్వే DocType: LDAP Settings,Path to Server Certificate,సర్వర్ సర్టిఫికెట్‌కు మార్గం +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,మీ బ్రౌజర్‌లో జావాస్క్రిప్ట్ నిలిపివేయబడింది apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,లింకులు చూడటానికి తగినంత అనుమతి apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,చిరునామా శీర్షిక తప్పనిసరి. DocType: Google Contacts,Push to Google Contacts,Google పరిచయాలకు నెట్టండి @@ -2299,7 +2374,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-పడమర-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ఇది తనిఖీ చేయబడితే, చెల్లుబాటు అయ్యే డేటాతో వరుసలు దిగుమతి చేయబడతాయి మరియు చెల్లని అడ్డు వరుసలు తర్వాత దిగుమతి చేయడానికి మీరు కొత్త ఫైల్కు డంప్ చేయబడతాయి." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,డాక్యుమెంట్ పాత్ర యొక్క వినియోగదారుల ద్వారా మాత్రమే సవరించగలిగేలా ఉంది -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","మీరు {1}, ద్వారా {2} మూసివేశారు కేటాయించిన ఆ పని {0}." DocType: Print Format,Show Line Breaks after Sections,సెక్షన్లు తరువాత లైన్ షో బ్రేక్స్ DocType: Communication,Read by Recipient On,గ్రహీత ద్వారా చదవండి DocType: Blogger,Short Name,సంక్షిప్త నామం @@ -2331,6 +2405,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,అ DocType: Translation,PR sent,పిఆర్ పంపారు DocType: Auto Email Report,Only Send Records Updated in Last X Hours,మాత్రమే రికార్డ్స్ గత X గంటల నవీకరించబడింది పంపండి DocType: Communication,Feedback,అభిప్రాయం +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,క్రొత్త సంస్కరణకు నవీకరించబడింది apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,అనువాదం తెరువు apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,ఈ ఇమెయిల్ ఆటోజెనరేటేడ్ DocType: Workflow State,Icon will appear on the button,ఐకాన్ బటన్ కనిపిస్తుంది @@ -2368,6 +2443,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,పేజ DocType: DocField,Precision,ప్రెసిషన్ DocType: Website Slideshow,Slideshow Items,స్లయిడ్షో అంశాలు apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,పునరావృతం పదాలు మరియు అక్షరాలు నివారించేందుకు ప్రయత్నించండి +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,నోటిఫికేషన్‌లు నిలిపివేయబడ్డాయి +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,మీరు ఖచ్చితంగా అన్ని అడ్డు వరుసలను తొలగించాలనుకుంటున్నారా? DocType: Workflow Action,Workflow State,వర్క్ఫ్లో రాష్ట్రం apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,వరుసలు చేర్చబడింది apps/frappe/frappe/www/list.py,My Account,నా ఖాతా @@ -2376,6 +2453,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,తర్వాత డేస్ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ ట్రే కనెక్షన్ యాక్టివ్! DocType: Contact Us Settings,Settings for Contact Us Page,మమ్మల్ని సంప్రదించండి పేజీ సెట్టింగ్లను +DocType: Server Script,Script Type,స్క్రిప్ట్ రకం DocType: Print Settings,Enable Print Server,ప్రింట్ సర్వర్ని ప్రారంభించండి apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} వారాల క్రితం DocType: Email Account,Footer,ఫుటర్ @@ -2400,8 +2478,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,హెచ్చరిక apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,ఇది బహుళ పేజీలలో ముద్రించబడవచ్చు DocType: Data Migration Run,Percent Complete,శాతం పూర్తయింది -DocType: Tag Category,Tag Category,ట్యాగ్ వర్గం -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","పోలిక కోసం,> 5, <10 లేదా = 324 ఉపయోగించండి. శ్రేణుల కోసం, 5:10 (5 & 10 మధ్య విలువల కోసం) ఉపయోగించండి." DocType: Google Calendar,Pull from Google Calendar,Google క్యాలెండర్ నుండి లాగండి apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,సహాయం DocType: User,Login Before,లాగిన్ ముందు @@ -2411,17 +2487,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,వారాంతాలను దాచు apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,పునరావృత పత్రాలను స్వయంచాలకంగా ఉత్పత్తి చేస్తుంది. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ఉంది +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,సమాచార సైన్ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,కోసం {0} జాబితా ఉండకూడదు విలువ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ఈ కరెన్సీ ఎలా ఫార్మాట్ చెయ్యాలి? సెట్ చేయకపోతే, వ్యవస్థ అప్రమేయం ఉపయోగిస్తుంది" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} పత్రాలను సమర్పించాలా? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,మీరు లాగిన్ మరియు బ్యాకప్ యాక్సెస్ చెయ్యలేరు వ్యవస్థ మేనేజర్ పాత్ర కలిగి అవసరం. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ ట్రే అనువర్తనానికి కనెక్ట్ చేయడంలో లోపం ... <br><br> రా ప్రింట్ ఫీచర్‌ను ఉపయోగించడానికి మీరు QZ ట్రే అప్లికేషన్‌ను ఇన్‌స్టాల్ చేసి అమలు చేయాలి. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ ట్రేని డౌన్‌లోడ్ చేసి, ఇన్‌స్టాల్ చేయడానికి ఇక్కడ క్లిక్ చేయండి</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">రా ప్రింటింగ్ గురించి మరింత తెలుసుకోవడానికి ఇక్కడ క్లిక్ చేయండి</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ప్రింటర్ మ్యాపింగ్ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,అటాచ్ ముందు సేవ్ చేయండి. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,మీరు లింక్ చేసిన అన్ని పత్రాలను రద్దు చేయాలనుకుంటున్నారా? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),చేర్చబడింది {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype నుండి మారలేదు {0} కు {1} వరుసగా {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,పాత్ర అనుమతులు DocType: Help Article,Intermediate,ఇంటర్మీడియట్ +apps/frappe/frappe/config/settings.py,Email / Notifications,ఇమెయిల్ / నోటిఫికేషన్లు apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} ను {2} కు మార్చారు apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,రద్దు చేసిన పత్రం చిత్తుప్రతిగా పునరుద్ధరించబడింది DocType: Data Migration Run,Start Time,ప్రారంభ సమయం @@ -2436,6 +2516,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,చెల్లని గ్రహీత చిరునామా DocType: Workflow State,step-forward,దశల ముందుకు DocType: System Settings,Allow Login After Fail,లాగిన్ తరువాత లాగిన్ అనుమతించు +DocType: DocType Link,DocType Link,డాక్ టైప్ లింక్ DocType: Role Permission for Page and Report,Set Role For,స్ఫూర్తిదాయకంగా సెట్ DocType: GCalendar Account,The name that will appear in Google Calendar,Google Calendar లో కనిపించే పేరు apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} తో ప్రత్యక్ష గది ఇప్పటికే ఉంది. @@ -2452,6 +2533,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ఒక DocType: Contact,Google Contacts,Google పరిచయాలు DocType: GCalendar Account,GCalendar Account,GCalendar ఖాతా DocType: Email Rule,Is Spam,స్పామ్ ఉంది +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,చివరి apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},నివేదిక {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ఓపెన్ {0} DocType: Data Import Beta,Import Warnings,హెచ్చరికలను దిగుమతి చేయండి @@ -2463,6 +2545,7 @@ DocType: Workflow State,ok-sign,సరే సైన్ apps/frappe/frappe/config/settings.py,Deleted Documents,తొలగించిన పత్రాలను apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ఫార్మాట్ కేస్ సెన్సిటివ్ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,డెస్క్టాప్ ఐకాన్ ఇప్పటికే ఉంది +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,స్లైడ్‌లు చూపించాల్సిన అన్ని డొమైన్‌లలో పేర్కొనండి. ఏమీ పేర్కొనకపోతే స్లైడ్ అప్రమేయంగా అన్ని డొమైన్లలో చూపబడుతుంది. apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,నకిలీ DocType: Newsletter,Create and Send Newsletters,సృష్టించు మరియు పంపండి వార్తాలేఖలు apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,మీ వ్యాఖ్యకు ధన్యవాదాలు. ఇది ఆమోదం తర్వాత ప్రచురించబడుతుంది @@ -2472,6 +2555,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google క్యాలెండర్ ఈవెంట్ ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","తల్లిదండ్రుల" ఈ వరుస జత చేయాలి దీనిలో మాతృ పట్టిక సూచిస్తుంది apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,సమీక్ష పాయింట్లు: +DocType: Scheduled Job Log,Scheduled Job Log,షెడ్యూల్డ్ జాబ్ లాగ్ +DocType: Server Script,Before Delete,తొలగించడానికి ముందు apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,వీరితో భాగస్వామ్యం apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,ఫైల్లను / URL లను అటాచ్ చేసి పట్టికలో చేర్చండి. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,సందేశం సెటప్ చేయలేదు @@ -2494,19 +2579,20 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,మా గురించి పేజీ సెట్టింగ్లను apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,గీత చెల్లింపు గేట్వే సెట్టింగులు apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ప్రింట్ ప్రింటర్‌కు పంపబడింది! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,శక్తి పాయింట్లు +DocType: Notification Settings,Energy Points,శక్తి పాయింట్లు DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ఉదా pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,కీలను సృష్టించండి apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ఇది మీ డేటాను శాశ్వతంగా తొలగిస్తుంది. DocType: DocType,View Settings,సెట్టింగ్లను వీక్షించండి +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,క్రొత్త నోటిఫికేషన్ DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,అభ్యర్థన నిర్మాణం +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,నియంత్రిక పద్ధతి get_razorpay_order లేదు DocType: Personal Data Deletion Request,Pending Verification,ధృవీకరణ పెండింగ్‌లో ఉంది DocType: Website Meta Tag,Website Meta Tag,వెబ్‌సైట్ మెటా ట్యాగ్ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","ప్రామాణికమైన కాని పోర్ట్ (ఉదా. 587). Google క్లౌడ్లో ఉంటే, పోర్ట్ 2525 ని ప్రయత్నించండి." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","క్లియరింగ్ ముగింపు తేదీ, ఇది ప్రచురించబడిన పేజీల కోసం గతంలో ఉండకూడదు." DocType: User,Send Me A Copy of Outgoing Emails,అవుట్గోయింగ్ ఇమెయిల్స్ యొక్క కాపీని నాకు పంపండి -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.,Google Analytics ID జోడించండి: ఉదా. UA-89XXX57-1. మరింత సమాచారం కోసం Google Analytics సహాయం వెతుకు దయచేసి. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,పాస్వర్డ్ 100 కంటే ఎక్కువ అక్షరాల పొడవు ఉండకూడదు DocType: OAuth Client,App Client ID,అనువర్తనం క్లయింట్ ID @@ -2535,6 +2621,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,కొత్ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ఈ పత్రం భాగస్వామ్యం {1} DocType: Website Settings,Brand Image,బ్రాండ్ ఇమేజ్ DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,దిగుమతి టెంప్లేట్‌లో శీర్షిక మరియు కనీసం ఒక అడ్డు వరుస ఉండాలి. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google క్యాలెండర్ కాన్ఫిగర్ చేయబడింది. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","టాప్ పేజీకి సంబంధించిన లింకులు బార్, ఫుటరు మరియు లోగో సెటప్." DocType: Web Form Field,Max Value,మాక్స్ విలువ @@ -2543,6 +2630,7 @@ DocType: Auto Repeat,Preview Message,పరిదృశ్యం సందేశ DocType: User Social Login,User Social Login,వాడుకరి సామాజిక లాగిన్ DocType: Contact,All,అన్ని DocType: Email Queue,Recipient,స్వీకర్త +DocType: Webhook,Webhook Security,వెబ్‌హూక్ భద్రత DocType: Communication,Has Attachment,జోడింపు ఉంది DocType: Address,Sales User,సేల్స్ వాడుకరి apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,డ్రాగ్ మరియు డ్రాప్ సాధనం నిర్మించడానికి మరియు ప్రింట్ ఆకృతులు అనుకూలీకరించడానికి. @@ -2632,14 +2720,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,వెబ్సైట apps/frappe/frappe/model/workflow.py,Self approval is not allowed,స్వీయ అనుమతి అనుమతి లేదు DocType: GSuite Templates,Template ID,మూస ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,గ్రాంట్ రకం కలయిక ( <code>{0}</code> ) మరియు ప్రతిస్పందన రకం ( <code>{1}</code> ) అనుమతి లేదు -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} నుండి క్రొత్త సందేశం DocType: Portal Settings,Default Role at Time of Signup,సైన్అప్ సమయంలో డిఫాల్ట్ రోల్ DocType: DocType,Title Case,శీర్షిక కేసు apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,మీ డేటాను డౌన్‌లోడ్ చేయడానికి క్రింది లింక్‌పై క్లిక్ చేయండి apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},వినియోగదారు కోసం ఇమెయిల్ ఇన్బాక్స్ ప్రారంభించబడింది {0} DocType: Data Migration Run,Data Migration Run,డేటా మైగ్రేషన్ రన్ DocType: Blog Post,Email Sent,ఇమెయిల్ పంపబడింది -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,పాత DocType: DocField,Ignore XSS Filter,విస్మరించు XSS వడపోత apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,తొలగించబడింది apps/frappe/frappe/config/integrations.py,Dropbox backup settings,డ్రాప్బాక్స్ బ్యాకప్ సెట్టింగ్లను @@ -2693,6 +2779,7 @@ DocType: Async Task,Queued,క్యూలో DocType: Braintree Settings,Use Sandbox,శాండ్బాక్స్ ఉపయోగించండి apps/frappe/frappe/utils/goal.py,This month,ఈ నెల apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,న్యూ కస్టమ్ ప్రింట్ ఫార్మాట్ +DocType: Server Script,Before Save (Submitted Document),సేవ్ చేయడానికి ముందు (సమర్పించిన పత్రం) DocType: Custom DocPerm,Create,సృష్టించు apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,ప్రదర్శించడానికి మరిన్ని అంశాలు లేవు apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,మునుపటి రికార్డుకు వెళ్లండి @@ -2749,6 +2836,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ట్రాష్కు తరలించు DocType: Web Form,Web Form Fields,వెబ్ ఫారం ఫీల్డ్స్ DocType: Data Import,Amended From,సవరించిన +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,స్లైడ్‌లో ఏమి పూరించాలో వినియోగదారుకు తెలియకపోతే సహాయ వీడియో లింక్‌ను జోడించండి. apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},హెచ్చరిక: సాధ్యం కాలేదు కనుగొనేందుకు {0} కు సంబంధించి ఏ పట్టికలో {1} DocType: S3 Backup Settings,eu-north-1,eu-ఉత్తర-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,ప్రస్తుతం ఈ పత్రం అమలు కోసం క్యూలో ఉంది. దయచేసి మళ్ళీ ప్రయత్నించండి @@ -2770,6 +2858,7 @@ DocType: Blog Post,Blog Post,బ్లాగ్ పోస్ట్ DocType: Access Log,Export From,నుండి ఎగుమతి చేయండి apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,అధునాతన శోధన apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,వార్తాలేఖను వీక్షించడానికి మీకు అనుమతి లేదు. +DocType: Dashboard Chart,Group By,గ్రూప్ ద్వారా DocType: User,Interests,అభిరుచులు apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,పాస్వర్డ్ రీసెట్ సూచనలు మీ ఇమెయిల్ పంపారు DocType: Energy Point Rule,Allot Points To Assigned Users,కేటాయించిన వినియోగదారులకు పాయింట్లను కేటాయించండి @@ -2785,6 +2874,7 @@ DocType: Assignment Rule,Assignment Rule,అసైన్మెంట్ రూ apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},సూచించిన యూజర్ పేరు: {0} DocType: Assignment Rule Day,Day,డే apps/frappe/frappe/public/js/frappe/desk.js,Modules,గుణకాలు +DocType: DocField,Mandatory Depends On,తప్పనిసరి ఆధారపడి ఉంటుంది apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,చెల్లింపు విజయవంతం apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,తోబుట్టువుల {0} మెయిల్ DocType: OAuth Bearer Token,Revoked,ఉపసంహరించబడింది @@ -2792,6 +2882,7 @@ DocType: Web Page,Sidebar and Comments,సైడ్బార్ మరియ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","మీరు ఒక పత్రాన్ని తర్వాత అది రద్దు చేసి సేవ్ సవరణ చేసినప్పుడు, అది పాత సంఖ్యలో ఒక వెర్షన్ ఒక కొత్త సంఖ్య పొందుతారు." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} పత్రాన్ని అటాచ్ చేయడానికి అనుమతి లేదు, దయచేసి ముద్రణ సెట్టింగులలో {0} ముద్రణను అనుమతించు ప్రారంభించండి" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} వద్ద పత్రాన్ని చూడండి DocType: Stripe Settings,Publishable Key,publishable కీ DocType: Stripe Settings,Publishable Key,publishable కీ @@ -2805,6 +2896,7 @@ DocType: Currency,Fraction,ఫ్రేక్షన్ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,ఈవెంట్ Google క్యాలెండర్‌తో సమకాలీకరించబడింది. DocType: LDAP Settings,LDAP First Name Field,LDAP మొదటి పేరు ఫీల్డ్ DocType: Contact,Middle Name,మధ్య పేరు +DocType: DocField,Property Depends On,ఆస్తి ఆధారపడి ఉంటుంది DocType: Custom Field,Field Description,రంగం వివరణ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ప్రాంప్ట్ ద్వారా సెట్ లేదు పేరు apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ఇమెయిల్ ఇన్బాక్స్ @@ -2850,11 +2942,11 @@ DocType: Workflow State,folder-close,ఫోల్డర్ దగ్గరగా apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,నివేదిక: DocType: Print Settings,Print taxes with zero amount,సున్నా మొత్తాన్ని పన్నులను ముద్రించండి apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} నామకరణం అనుమతి లేదు +DocType: Server Script,Before Insert,చొప్పించే ముందు DocType: Custom Script,Custom Script,కస్టమ్ స్క్రిప్ట్ DocType: Address,Address Line 2,చిరునామా లైన్ 2 DocType: Address,Reference,సూచన apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,కేటాయించిన -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,డేటా మైగ్రేషన్ మ్యాపింగ్ వివరాలు DocType: Data Import,Action,యాక్షన్ DocType: GSuite Settings,Script URL,స్క్రిప్ట్ URL @@ -2880,11 +2972,13 @@ DocType: User,Api Access,API యాక్సెస్ DocType: DocField,In List View,జాబితా వీక్షణ లో DocType: Email Account,Use TLS,ఉపయోగం TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,చెల్లని లాగిన్ లేదా పాస్వర్డ్ను +DocType: Scheduled Job Type,Weekly Long,వీక్లీ లాంగ్ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,డౌన్లోడ్ మూస apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,రకాల కస్టమ్ జావాస్క్రిప్ట్ జోడించండి. ,Role Permissions Manager,పాత్ర అనుమతులు మేనేజర్ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,కొత్త ప్రింట్ ఫార్మాట్ పేరు apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,సైడ్బార్ని టోగుల్ చేయండి +DocType: Server Script,After Save (Submitted Document),సేవ్ చేసిన తర్వాత (సమర్పించిన పత్రం) DocType: Data Migration Run,Pull Insert,చొప్పించు లాగండి DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",గుణక విలువతో పాయింట్లను గుణించిన తర్వాత గరిష్ట పాయింట్లు అనుమతించబడతాయి (గమనిక: పరిమితి లేకుండా ఈ ఫీల్డ్‌ను ఖాళీగా ఉంచండి లేదా 0 సెట్ చేయండి) @@ -2902,6 +2996,7 @@ DocType: User Permission,User Permission,యూజర్ అనుమతి apps/frappe/frappe/templates/includes/blog/blog.html,Blog,బ్లాగ్ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ఇన్స్టాల్ కాలేదు apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,డేటా డౌన్లోడ్ +DocType: Server Script,Before Cancel,రద్దు చేయడానికి ముందు DocType: Workflow State,hand-right,చేతితో కుడి DocType: Website Settings,Subdomain,సబ్డొమైన్ DocType: S3 Backup Settings,Region,ప్రాంతం @@ -2947,12 +3042,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,పాత పాస్ DocType: S3 Backup Settings,us-east-1,మమ్మల్ని తూర్పు-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},వారి టపాలు {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","ఫార్మాట్ వరుసలు, ప్రశ్న లో కాలమ్ లేబుల్స్ ఇస్తాయి." +DocType: Onboarding Slide,Slide Fields,ఫీల్డ్లను స్లైడ్ చేయండి DocType: Has Domain,Has Domain,డొమైన్ ఉంది DocType: User,Allowed In Mentions,ప్రస్తావనలలో అనుమతించబడింది apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ఒక ఖాతా లేదా? చేరడం apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID ఫీల్డ్ను తొలగించలేరు apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable లేకపోతే అప్పగించుము సవరణ సెట్ చెయ్యబడదు DocType: Address,Bihar,బీహార్ +DocType: Notification Settings,Subscribed Documents,చందా పత్రాలు apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,వినియోగదారు సెట్టింగులు DocType: Report,Reference Report,సూచన నివేదిక DocType: Activity Log,Link DocType,లింక్ doctype @@ -2970,6 +3067,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google క్యాల apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,మీరు కోసం చూస్తున్నాయి పేజీ లేదు. తరలించారు లేదా లింక్ లో ఒక అక్షర దోషం ఉంది ఎందుకంటే ఇది జరిగింది. apps/frappe/frappe/www/404.html,Error Code: {0},దోష కోడ్: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",సాదా టెక్స్ట్ లో రేఖలు మాత్రమే జంట పేజీ లిస్టింగ్ కోసం వివరణ. (గరిష్టంగా 140 అక్షరాలు) +DocType: Server Script,DocType Event,డాక్‌టైప్ ఈవెంట్ apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} తప్పనిసరి ఫీల్డ్‌లు DocType: Workflow,Allow Self Approval,నేనే ఆమోదం అనుమతించు DocType: Event,Event Category,ఈవెంట్ వర్గం @@ -2986,6 +3084,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,నీ పేరు apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,కనెక్షన్ సక్సెస్ DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,స్లైడ్ రకాన్ని కొనసాగించే ఆన్‌బోర్డింగ్ స్లయిడ్ ఇప్పటికే ఉంది. DocType: DocType,Default Sort Field,డిఫాల్ట్ క్రమబద్ధీకరణ ఫీల్డ్ DocType: File,Is Folder,ఫోల్డర్ని DocType: Document Follow,DocType,DOCTYPE @@ -3022,7 +3121,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,వి DocType: Workflow State,arrow-up,బాణం అప్ DocType: Dynamic Link,Link Document Type,లింక్ పత్రం రకం apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} పట్టిక కోసం కనీసం ఒక వరుస ఉండాలి +DocType: Server Script,Server Script,సర్వర్ స్క్రిప్ట్ DocType: OAuth Bearer Token,Expires In,లో ముగుస్తుంది +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","మీరు క్షేత్రాల సమితిని పునరావృతం చేయాలనుకుంటున్న సమయం (ఉదా: మీకు స్లైడ్‌లో 3 కస్టమర్‌లు కావాలంటే, ఈ ఫీల్డ్‌ను 3 కి సెట్ చేయండి. స్లైడ్‌లో మొదటి ఫీల్డ్‌లు మాత్రమే తప్పనిసరి అని చూపబడతాయి)" DocType: DocField,Allow on Submit,సమర్పించండి అనుమతించు DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,అసాధారణ పరిస్థితి రకాన్ని @@ -3032,6 +3133,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,శీర్షికలు apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,రాబోయే ఈవెంట్స్ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,యాప్ యాక్సెస్ కీ మరియు App సీక్రెట్ కీ కోసం విలువలను ఎంటర్ చెయ్యండి +DocType: Email Account,Append Emails to Sent Folder,పంపిన ఫోల్డర్‌కు ఇమెయిల్‌లను జోడించండి DocType: Web Form,Accept Payment,చెల్లింపు అంగీకరించు apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,జాబితా అంశాన్ని ఎంచుకోండి apps/frappe/frappe/config/core.py,A log of request errors,అభ్యర్థన పొరపాట్లను చిట్టా @@ -3050,7 +3152,7 @@ DocType: Translation,Contributed,దోహదపడింది apps/frappe/frappe/config/customization.py,Form Customization,ఫారమ్ అనుకూలీకరణ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,యాక్టివ్ సెషన్లు లేవు DocType: Web Form,Route to Success Link,సక్సెస్ లింక్కి మార్గం -DocType: Top Bar Item,Right,కుడి +DocType: Onboarding Slide Field,Right,కుడి apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,రాబోయే ఈవెంట్‌లు లేవు DocType: User,User Type,వినియోగదారు రకం DocType: Prepared Report,Ref Report DocType,Ref రిపోర్ట్ DocType @@ -3067,6 +3169,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,దయచేస apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL తప్పనిసరిగా 'http: //' లేదా 'https: //' తో ప్రారంభించాలి apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ఎంపిక 3 DocType: Communication,uid,యుఐడి +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,దీన్ని రద్దు చేయలేము DocType: Workflow State,Edit,మార్చు DocType: Website Settings,Chat Operators,చాట్ ఆపరేటర్లు DocType: S3 Backup Settings,ca-central-1,ca-కేంద్ర -1 @@ -3078,7 +3181,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,మీరు ఈ రూపం లో సేవ్ చెయ్యని మార్పులు ఉన్నాయి. కొనసాగించే ముందు సేవ్ చెయ్యండి. DocType: Address,Telangana,తెలంగాణ apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} ఒక ఎంపికను ఉండాలి కోసం డిఫాల్ట్ -DocType: Tag Doc Category,Tag Doc Category,ట్యాగ్ డాక్ వర్గం apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,ల్యాండ్‌స్కేప్ మోడ్‌లో 10 నిలువు వరుసలతో రిపోర్ట్ మెరుగ్గా కనిపిస్తుంది. apps/frappe/frappe/database/database.py,Invalid field name: {0},ఫీల్డ్ పేరు చెల్లదు: {0} DocType: Milestone,Milestone,మైలురాయి @@ -3087,7 +3189,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} కి వె apps/frappe/frappe/email/queue.py,Emails are muted,ఇమెయిళ్ళు మ్యూట్ apps/frappe/frappe/config/integrations.py,Google Services,Google సేవలు apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 వారాల క్రితం +DocType: Onboarding Slide,Slide Description,స్లయిడ్ వివరణ DocType: Communication,Error,లోపం apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,ముందుగా ఒక సందేశాన్ని సెటప్ చేయండి DocType: Auto Repeat,End Date,ముగింపు తేదీ @@ -3108,10 +3210,12 @@ DocType: Footer Item,Group Label,గ్రూప్ లేబుల్ DocType: Kanban Board,Kanban Board,కంబన్ బోర్డు apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google పరిచయాలు కాన్ఫిగర్ చేయబడ్డాయి. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 రికార్డు ఎగుమతి చేయబడుతుంది +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,వినియోగదారుతో ఇమెయిల్ ఖాతా లేదు. దయచేసి వినియోగదారు> ఇమెయిల్ ఇన్బాక్స్ క్రింద ఒక ఖాతాను జోడించండి. DocType: DocField,Report Hide,నివేదిక దాచు apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ట్రీ వీక్షణ కోసం అందుబాటులో లేదు {0} DocType: DocType,Restrict To Domain,డొమైన్కు పరిమితం DocType: Domain,Domain,డొమైన్ +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,చెల్లని ఫైల్ URL. దయచేసి సిస్టమ్ అడ్మినిస్ట్రేటర్‌ను సంప్రదించండి. DocType: Custom Field,Label Help,లేబుల్ సహాయం DocType: Workflow State,star-empty,స్టార్ ఖాళీ apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,తేదీలు తరచూ ఊహించడం సులభం. @@ -3135,6 +3239,7 @@ DocType: Workflow State,hand-left,చేతితో ఎడమ DocType: Data Import,If you are updating/overwriting already created records.,మీరు ఇప్పటికే సృష్టించిన రికార్డులను నవీకరిస్తున్నట్లయితే / భర్తీ చేస్తుంటే. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,గ్లోబల్ DocType: Email Account,Use SSL,ఉపయోగం SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,ప్లే-సర్కిల్ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,పత్రం సరిగ్గా కేటాయించబడలేదు apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",చెల్లని "depends_on" వ్యక్తీకరణ @@ -3151,6 +3256,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,చివరిగా రిఫ్రెష్ చేయబడింది apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,పత్ర రకం కోసం DocType: Workflow State,arrow-right,మెట్ట కుడి +DocType: Server Script,API Method,API విధానం DocType: Workflow State,Workflow state represents the current state of a document.,వర్క్ఫ్లో రాష్ట్ర పత్రం యొక్క ప్రస్తుత రాష్ట్ర సూచిస్తుంది. DocType: Letter Head,Letter Head Based On,లెటర్ హెడ్ ఆధారంగా apps/frappe/frappe/utils/oauth.py,Token is missing,టోకెన్ లేదు @@ -3189,6 +3295,7 @@ DocType: Comment,Relinked,మళ్లీ లింక్ DocType: Print Settings,Compact Item Print,కాంపాక్ట్ అంశం ప్రింట్ DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,మళ్లించే URL +DocType: Onboarding Slide Field,Placeholder,హోల్డర్ DocType: SMS Settings,Enter url parameter for receiver nos,రిసీవర్ nos కోసం URL పరామితి ఎంటర్ DocType: Chat Profile,Online,ఆన్లైన్ DocType: Email Account,Always use Account's Name as Sender's Name,ఖాతా పేరును పంపినవారి పేరుగా ఎల్లప్పుడూ ఉపయోగించండి @@ -3222,6 +3329,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,యజమాని DocType: Data Migration Mapping,Push,పుష్ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,ఫైళ్ళను ఇక్కడ వదలండి DocType: OAuth Authorization Code,Expiration time,గడువు సమయం +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,పత్రాలను తెరవండి DocType: Web Page,Website Sidebar,వెబ్సైట్ సైడ్బార్ DocType: Web Form,Show Sidebar,సైడ్బార్ చూపు apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,మీరు ఈ యాక్సెస్ లో లాగిన్ చెయ్యాలి {0}. @@ -3272,6 +3380,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,ప్రింట్ ఫార్మాట్ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,గ్రిడ్ వీక్షణను టోగుల్ చేయండి apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,తదుపరి రికార్డుకు వెళ్ళండి +DocType: System Settings,Time Format,సమయ నమూనా apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,చెల్లని చెల్లింపు గేట్వే ఆధారాలను DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ఇది కొన్ని లోపం ఉన్న అడ్డు వరుసలతో సృష్టించబడిన టెంప్లేట్ ఫైల్. మీరు దిద్దుబాటు మరియు దిగుమతి కోసం ఈ ఫైల్ ను వాడాలి. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,డాక్యుమెంట్ రకాలు మరియు భాద్యతలు సెట్ అనుమతులు @@ -3315,12 +3424,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,ప్ర apps/frappe/frappe/config/core.py,Pages in Desk (place holders),డెస్క్ లో వ్యాసాలు (స్థలం ఉన్నవారు) DocType: DocField,Collapsible Depends On,ధ్వంసమయ్యే ఆధారపడి DocType: Print Style,Print Style Name,శైలి పేరు ముద్రించండి +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,డాష్‌బోర్డ్ చార్ట్ సృష్టించడానికి గ్రూప్ బై ఫీల్డ్ అవసరం DocType: Print Settings,Allow page break inside tables,పట్టికలు లోపల పుట విరుపు అనుమతించు DocType: Email Account,SMTP Server,SMTP సర్వర్ DocType: Print Format,Print Format Help,ప్రింట్ ఫార్మాట్ సహాయం apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} గదిలో ఒకదానిలో ఒకటి ఉండాలి. DocType: DocType,Beta,బీటా DocType: Dashboard Chart,Count,కౌంట్ +DocType: Dashboard Chart,Group By Type,రకం ద్వారా సమూహం apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},పునరుద్ధరించబడింది {0} వంటి {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","మీరు అప్ డేట్ చేస్తున్నాము ఉంటే, "భర్తీ చేయి" దయచేసి ఎంచుకోండి ప్రస్తుతం ఉన్న వరుసలు తొలగించబడవు." DocType: DocField,Translatable,కార్యరూపంలో @@ -3329,14 +3440,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,విన DocType: Web Form,Web Form,వెబ్ ఫారం apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},తేదీ {0} తప్పనిసరిగా ఆకృతిలో ఉండాలి: {1} DocType: About Us Settings,Org History Heading,శీర్షిక ఆర్గ్ చరిత్ర +DocType: Scheduled Job Type,Scheduled Job Type,షెడ్యూల్డ్ ఉద్యోగ రకం DocType: Print Settings,Allow Print for Cancelled,రద్దయింది కోసం ప్రింట్ అనుమతిస్తుంది DocType: Communication,Integrations can use this field to set email delivery status,విలీనాలు ఇమెయిల్ డెలివరీ స్థితి సెట్ ఈ రంగంలో ఉపయోగించవచ్చు +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,లింక్ చేయబడిన అన్ని పత్రాలను రద్దు చేయడానికి మీకు అనుమతులు లేవు. DocType: Web Form,Web Page Link Text,వెబ్ పేజీ లింక్ టెక్స్ట్ DocType: Page,System Page,సిస్టమ్ పేజీ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","మొదలైనవి సెట్ అప్రమేయ ఫార్మాట్, పేజీ పరిమాణం, ముద్రణా శైలి" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0} కోసం</b> ఎగుమతి చెయ్యబడిన అనుకూలీకరణలు: <br> {1} DocType: Website Settings,Include Search in Top Bar,టాప్ బార్ లో శోధన చేర్చండి +DocType: Scheduled Job Type,Daily Long,డైలీ లాంగ్ DocType: GSuite Settings,Allow GSuite access,GSuite ప్రాప్తిని అనుమతించు DocType: DocType,DESC,DESC DocType: DocType,Naming,నామకరణ @@ -3427,6 +3541,7 @@ DocType: Notification,Send days before or after the reference date,ముంద DocType: User,Allow user to login only after this hour (0-24),వినియోగదారు ఈ గంట తర్వాత లాగిన్ (0-24) అనుమతించు apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","వరుసగా, ఒక్కొక్కటిగా కేటాయించండి" DocType: Integration Request,Subscription Notification,సబ్స్క్రిప్షన్ నోటిఫికేషన్ +DocType: Customize Form Field, Allow in Quick Entry ,త్వరిత ఎంట్రీలో అనుమతించండి apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,లేదా అటాచ్ చేయండి DocType: Auto Repeat,Start Date,ప్రారంబపు తేది apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,విలువ @@ -3441,6 +3556,7 @@ DocType: Google Drive,Backup Folder ID,బ్యాకప్ ఫోల్డర apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,లేదు డెవలపర్ మోడ్లో! Site_config.json సెట్ లేదా 'కస్టమ్' DOCTYPE చేస్తాయి. DocType: Workflow State,globe,భూగోళం DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,వీడియో DocType: Assignment Rule,Priority,ప్రాధాన్య DocType: Email Queue,Unsubscribe Param,చందా రద్దుచేసే పరమ DocType: DocType,Hide Sidebar and Menu,సైడ్‌బార్ మరియు మెనూని దాచండి @@ -3452,6 +3568,7 @@ DocType: DocType,Allow Import (via Data Import Tool),దిగుమతి అ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,ఫ్లోట్ DocType: Print Settings,Page Settings,పేజీ సెట్టింగ్లు +DocType: Notification Settings,Notification Settings,నోటిఫికేషన్ సెట్టింగులు apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,సేవ్ చేస్తోంది ... apps/frappe/frappe/www/update-password.html,Invalid Password,చెల్లని పాస్వర్డ్ DocType: Contact,Purchase Master Manager,కొనుగోలు మాస్టర్ మేనేజర్ @@ -3464,6 +3581,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,లెటర్ హెడ్ ఇమేజ్ DocType: Address,Party GSTIN,పార్టీ GSTIN +DocType: Scheduled Job Type,Cron Format,క్రాన్ ఫార్మాట్ apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} నివేదిక DocType: SMS Settings,Use POST,POST ఉపయోగించండి DocType: Communication,SMS,SMS @@ -3509,18 +3627,20 @@ DocType: Workflow,Allow approval for creator of the document,పత్రం య apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,నివేదికను సేవ్ చేయండి DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API ముగింపు స్థానం ఆర్గ్లు +DocType: DocType Action,Server Action,సర్వర్ చర్య apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,అడ్మినిస్ట్రేటర్ ప్రాప్తి {0} లో {1} IP చిరునామా ద్వారా {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,పేరెంట్ ఫీల్డ్ తప్పనిసరిగా చెల్లుబాటు అయ్యే ఫీల్డ్ పేరు apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,సబ్స్క్రిప్షన్ను సవరించేటప్పుడు విఫలమైంది DocType: LDAP Settings,LDAP Group Field,LDAP గ్రూప్ ఫీల్డ్ +DocType: Notification Subscribed Document,Notification Subscribed Document,నోటిఫికేషన్ చందా పత్రం apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,సమానం apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,చెల్లని CSV ఫార్మాట్ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ ట్రే అనువర్తనానికి కనెక్ట్ చేయడంలో లోపం ... <br><br> రా ప్రింట్ ఫీచర్‌ను ఉపయోగించడానికి మీరు QZ ట్రే అప్లికేషన్‌ను ఇన్‌స్టాల్ చేసి అమలు చేయాలి. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ ట్రేని డౌన్‌లోడ్ చేసి, ఇన్‌స్టాల్ చేయడానికి ఇక్కడ క్లిక్ చేయండి</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">రా ప్రింటింగ్ గురించి మరింత తెలుసుకోవడానికి ఇక్కడ క్లిక్ చేయండి</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,బ్యాకప్ సంఖ్య సెట్ DocType: DocField,Do not allow user to change after set the first time,మొదటిసారి యూజర్ తర్వాత సెట్ మార్చడానికి అనుమతిస్తుంది లేదు apps/frappe/frappe/utils/data.py,1 year ago,1 సంవత్సరం క్రితం +DocType: DocType,Links Section,లింకుల విభాగం apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","అన్ని ముద్రణ, డౌన్‌లోడ్ మరియు ఎగుమతి ఈవెంట్‌ల లాగ్‌ను చూడండి" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 నెల DocType: Contact,Contact,సంప్రదించండి @@ -3546,16 +3666,19 @@ DocType: Auto Email Report,Dynamic Report Filters,డైనమిక్ రి DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,క్రొత్త ఇమెయిల్ DocType: Custom DocPerm,Export,ఎగుమతి +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},స్థితి ఆధారిత క్షేత్రాన్ని కూడా జోడిస్తోంది {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},నవీకరించబడింది {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ ట్రే విఫలమైంది: DocType: Dropbox Settings,Dropbox Settings,డ్రాప్బాక్స్ సెట్టింగులు DocType: About Us Settings,More content for the bottom of the page.,పేజీ దిగువన కోసం మరిన్ని కంటెంట్. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,ఈ పత్రం తిరిగి మార్చబడింది apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google డ్రైవ్ బ్యాకప్ విజయవంతమైంది. +DocType: Webhook,Naming Series,నామకరణ సిరీస్ DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE ఇది ఈ వర్క్ఫ్లో వర్తిస్తుంది. DocType: User,Enabled,ప్రారంభించబడ్డ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,సెటప్ను పూర్తి చేయడం విఫలమైంది apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},క్రొత్త {0}: {1} -DocType: Tag Category,Category Name,వర్గం పేరు +DocType: Blog Category,Category Name,వర్గం పేరు apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,పిల్లల పట్టిక డేటాను పొందడానికి తల్లిదండ్రులు అవసరం apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,దిగుమతి చందాదార్లు DocType: Print Settings,PDF Settings,PDF సెట్టింగ్స్ @@ -3591,6 +3714,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,క్యాలెండర్ apps/frappe/frappe/client.py,No document found for given filters,పత్రం ఇచ్చిన ఫిల్టర్లు కనుగొనబడలేదు apps/frappe/frappe/config/website.py,A user who posts blogs.,బ్లాగులను పోస్ట్ చేసే వినియోగదారు. +DocType: DocType Action,DocType Action,డాక్‌టైప్ చర్య apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","మరో {0} పేరు {1} ఉంది తో, మరొక పేరును ఎంచుకోండి" DocType: DocType,Custom?,కస్టమ్? DocType: Website Settings,Website Theme Image,వెబ్సైట్ థీమ్ చిత్రం @@ -3600,6 +3724,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},ఎక్ apps/frappe/frappe/config/integrations.py,Backup,బ్యాకప్ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,డాష్‌బోర్డ్ చార్ట్ సృష్టించడానికి పత్ర రకం అవసరం DocType: DocField,Read Only,చదవడానికి మాత్రమే +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,రేజర్‌పే క్రమాన్ని సృష్టించడం సాధ్యం కాలేదు apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,న్యూ వార్తా DocType: Energy Point Log,Energy Point Log,ఎనర్జీ పాయింట్ లాగ్ DocType: Print Settings,Send Print as PDF,PDF క్రింద ప్రింట్ పంపండి @@ -3624,15 +3749,16 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,మ apps/frappe/frappe/www/login.html,Or login with,లేదా లాగిన్ DocType: Error Snapshot,Locals,స్థానికులు apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ద్వారా సమాచారాన్ని {0} లో {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} లో ఒక వ్యాఖ్యలో పేర్కొన్నారు {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ద్వారా సమూహాన్ని ఎంచుకోండి ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ఉదా (55 + 434) / 4 లేదా = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} అవసరం DocType: Integration Request,Integration Type,ఇంటిగ్రేషన్ టైప్ DocType: Newsletter,Send Attachements,Attachements పంపండి +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,ఫిల్టర్లు కనుగొనబడలేదు apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,గూగుల్ కాంటాక్ట్స్ ఇంటిగ్రేషన్. DocType: Transaction Log,Transaction Log,లావాదేవీ లాగ్ DocType: Contact Us Settings,City,సిటీ +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,వినియోగదారులందరికీ కార్డులను దాచండి DocType: DocField,Perm Level,పర్మ్ స్థాయి apps/frappe/frappe/www/confirm_workflow_action.html,View document,పత్రాన్ని వీక్షించండి apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,నేటి క్యాలెండర్ లో ఈవెంట్స్ @@ -3643,6 +3769,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'గ్లోబల్ సెర్చ్' రకం కోసం అనుమతి లేదు {0} వరుసగా {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'గ్లోబల్ సెర్చ్' రకం కోసం అనుమతి లేదు {0} వరుసగా {1} DocType: Energy Point Log,Appreciation,ప్రశంసతో +DocType: Dashboard Chart,Number of Groups,సమూహాల సంఖ్య apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,జాబితా వీక్షణ DocType: Workflow,Don't Override Status,స్థితి భర్తీ లేదు apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,శోధన పదం @@ -3681,7 +3808,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,మ DocType: S3 Backup Settings,cn-northwest-1,CN-వాయువ్య-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB బ్యాకప్ యొక్క పరిమితి సంఖ్య DocType: Custom DocPerm,Level,స్థాయి -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,చివరి 30 రోజులు DocType: Custom DocPerm,Report,నివేదిక apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,మొత్తం 0 కంటే ఎక్కువ ఉండాలి. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ ట్రేకు కనెక్ట్ చేయబడింది! @@ -3698,6 +3824,7 @@ DocType: S3 Backup Settings,us-west-2,మమ్మల్ని పడమటి 2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,పిల్లల పట్టికను ఎంచుకోండి apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ప్రాథమిక చర్యను ప్రేరేపించండి apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,మార్చు +DocType: Social Login Key,User ID Property,వినియోగదారు ID ఆస్తి DocType: Email Domain,domain name,డొమైన్ పేరు DocType: Contact Email,Contact Email,సంప్రదించండి ఇమెయిల్ DocType: Kanban Board Column,Order,ఆర్డర్ @@ -3719,7 +3846,7 @@ DocType: Contact,Last Name,చివరి పేరు DocType: Event,Private,ప్రైవేట్ apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,నేడు హెచ్చరికలు లేవు DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF క్రింద ఇమెయిల్ ముద్రించు అటాచ్మెంట్లు పంపు (సిఫార్సు) -DocType: Web Page,Left,ఎడమ +DocType: Onboarding Slide Field,Left,ఎడమ DocType: Event,All Day,రోజంతా apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ఏదో కనిపిస్తోంది ఈ సైట్ యొక్క చెల్లింపు గేట్వే ఆకృతీకరణ తో తప్పు. చెల్లింపు జరిగింది. DocType: GCalendar Settings,State,రాష్ట్రం @@ -3750,7 +3877,6 @@ DocType: Workflow State,User,వాడుకరి DocType: Website Settings,"Show title in browser window as ""Prefix - title""",బ్రౌజర్ విండోలో టైటిల్ "ఉపసర్గ - శీర్షిక" DocType: Payment Gateway,Gateway Settings,గేట్వే సెట్టింగులు apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,డాక్యుమెంట్ రకము టెక్స్ట్ -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,అమలు పరీక్షలు apps/frappe/frappe/handler.py,Logged Out,లాగ్ అవుట్ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,మరింత... DocType: System Settings,User can login using Email id or Mobile number,వాడుకరి ఇమెయిల్ ఐడి లేదా మొబైల్ నంబర్ ఉపయోగించి లాగిన్ @@ -3766,6 +3892,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,సారాంశం DocType: Event,Event Participants,ఈవెంట్ పాల్గొనేవారు DocType: Auto Repeat,Frequency,ఫ్రీక్వెన్సీ +DocType: Onboarding Slide,Slide Order,స్లైడ్ ఆర్డర్ DocType: Custom Field,Insert After,తరువాత చొప్పించు DocType: Event,Sync with Google Calendar,Google క్యాలెండర్‌తో సమకాలీకరించండి DocType: Access Log,Report Name,రిపోర్ట్ పేరు @@ -3793,6 +3920,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},రకం కరెన్సీ కోసం గరిష్ట వెడల్పు వరుసగా 100 px {0} apps/frappe/frappe/config/website.py,Content web page.,కంటెంట్ వెబ్ పేజీ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ఒక కొత్త పాత్ర జోడించండి +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,వెబ్ పేజీని సందర్శించండి +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,కొత్త అసైన్‌మెంట్ DocType: Google Contacts,Last Sync On,చివరి సమకాలీకరణ ఆన్ చేయబడింది DocType: Deleted Document,Deleted Document,తొలగించిన పత్రం apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,అయ్యో! ఎక్కడో తేడ జరిగింది @@ -3802,7 +3931,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ప్రకృత apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,జావాస్క్రిప్ట్ క్లైంట్ వైపు స్క్రిప్ట్ పొడిగింపులు DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,కింది సిద్ధాంతాల కోసం రికార్డులు ఫిల్టర్ చేయబడతాయి -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,షెడ్యూలర్ క్రియారహితం +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,షెడ్యూలర్ క్రియారహితం DocType: Blog Settings,Blog Introduction,బ్లాగ్ పరిచయం DocType: Global Search Settings,Search Priorities,శోధన ప్రాధాన్యతలు DocType: Address,Office,ఆఫీసు @@ -3812,13 +3941,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,డాష్‌బోర్ DocType: User,Email Settings,ఇమెయిల్ సెట్టింగులు apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,ఇక్కడ డ్రాప్ చేయండి DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","ప్రారంభించబడితే, వినియోగదారు రెండు కారకాల ప్రమాణాన్ని ఉపయోగించి ఏదైనా IP చిరునామా నుండి లాగిన్ అవ్వవచ్చు, ఇది సిస్టమ్ సెట్టింగులలోని వినియోగదారులందరికీ సెట్ చేయవచ్చు" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,ప్రింటర్ సెట్టింగులు ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,దయచేసి కొనసాగించడానికి మీ పాస్వర్డ్ను నమోదు చేయండి apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,దయచేసి కొనసాగించడానికి మీ పాస్వర్డ్ను నమోదు చేయండి apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,నాకు apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} అనేది సరైన రాష్ట్రం apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,అన్ని పత్రాల రకానికి వర్తించండి -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ఎనర్జీ పాయింట్ నవీకరణ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,ఎనర్జీ పాయింట్ నవీకరణ +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),(రోజులు) క్రియారహితంగా ఉంటే మాత్రమే రోజువారీ ఉద్యోగాలు అమలు చేయండి apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',దయచేసి మరో చెల్లింపు పద్ధతిని ఎంచుకోండి. పేపాల్ ద్రవ్యంలో లావాదేవీలు మద్దతు లేదు '{0}' DocType: Chat Message,Room Type,గది రకం DocType: Data Import Beta,Import Log Preview,లాగ్ పరిదృశ్యాన్ని దిగుమతి చేయండి @@ -3827,6 +3956,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok సర్కిల్ DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP వినియోగదారు సృష్టి మరియు మ్యాపింగ్ apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',మీరు 'వినియోగదారులు నారింజ కనుగొనేందుకు' అడగడం ద్వారా విషయాలు తెలుసుకోవచ్చు +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,నేటి సంఘటనలు apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,క్షమించాలి! వాడుకరి వారి సొంత రికార్డు పూర్తి అందుబాటుని కలిగి ఉండాలి. ,Usage Info,వాడుక సమాచారం apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,కీబోర్డ్ సత్వరమార్గాలను చూపించు @@ -3842,6 +3972,7 @@ DocType: Communication,Communication Type,కమ్యూనికేషన్ DocType: DocField,Unique,ప్రత్యేక apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,పాక్షిక సక్సెస్ DocType: Email Account,Service,సర్వీస్ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు DocType: File,File Name,ఫైలు పేరు apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),నివ్వలేదు {0} కోసం {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},రెస్: {0} @@ -3855,6 +3986,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,పూ DocType: GCalendar Settings,Enable,ప్రారంభించు DocType: Google Maps Settings,Home Address,హోం చిరునామా apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),మీరు మాత్రమే ఒక ప్రయాణంలో 5000 రికార్డులు వరకు అప్లోడ్ చేయవచ్చు. (కొన్ని సందర్భాల్లో తక్కువ ఉండవచ్చు) +DocType: Report,"output in the form of `data = [columns, result]`","`డేటా = [నిలువు వరుసలు, ఫలితం]` రూపంలో అవుట్పుట్" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,వర్తించే పత్ర రకాలు apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,వినియోగదారు కేటాయింపుల కోసం నియమాలను సెటప్ చేయండి. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},కోసం చాలని అనుమతి {0} @@ -3871,7 +4003,6 @@ DocType: Communication,To and CC,మరియు CC DocType: SMS Settings,Static Parameters,స్టాటిక్ పారామితులు DocType: Chat Message,Room,గది apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},నవీకరించబడింది {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,నేపథ్య ఉద్యోగాలు అమలులో లేవు. దయచేసి నిర్వాహకుడిని సంప్రదించండి DocType: Portal Settings,Custom Menu Items,కస్టమ్ మెను అంశాలు apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,వెబ్సైట్ స్లయిడ్షోకు జోడించబడిన అన్ని చిత్రాలు పబ్లిక్గా ఉండాలి DocType: Workflow State,chevron-right,చెవ్రాన్ కుడి @@ -3885,9 +4016,11 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} విలువలు ఎంచుకోబడ్డాయి DocType: DocType,Allow Auto Repeat,ఆటో రిపీట్ చేయడానికి అనుమతించండి apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,చూపించడానికి విలువలు లేవు +DocType: DocType,URL for documentation or help,డాక్యుమెంటేషన్ లేదా సహాయం కోసం URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ఇమెయిల్ మూస apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,అవసరమైన రెండు లాగిన్ మరియు పాస్వర్డ్ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,వీలు\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,తాజా పత్రంలో పొందడానికి రిఫ్రెష్ చేయండి. DocType: User,Security Settings,సెక్యూరిటీ సెట్టింగ్స్ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,కాలమ్ జోడించండి @@ -3896,6 +4029,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},ఎగుమతి నివేదిక: {0} DocType: Auto Email Report,Filter Meta,మెటా ఫిల్టర్ DocType: Web Page,Set Meta Tags,మెటా ట్యాగ్‌లను సెట్ చేయండి +DocType: Email Account,Use SSL for Outgoing,అవుట్గోయింగ్ కోసం SSL ఉపయోగించండి 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: S3 Backup Settings,Backup Limit,బ్యాకప్ పరిమితి DocType: Dashboard Chart,Line,లైన్ @@ -3927,4 +4061,3 @@ DocType: DocField,Ignore User Permissions,వాడుకరి అనుమత apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,విజయవంతంగా సేవ్ చేయబడింది apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,దయచేసి మీ సైన్ అప్ ధృవీకరించడానికి మీ నిర్వాహకుని అడగండి DocType: Domain Settings,Active Domains,Active డొమైన్స్ -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,లోనికి ప్రవేశించండి షో diff --git a/frappe/translations/th.csv b/frappe/translations/th.csv index c4357375ef..cb024f7bc5 100644 --- a/frappe/translations/th.csv +++ b/frappe/translations/th.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,โปรดเลือกฟิลด์ยอดเงิน apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,กำลังโหลดไฟล์นำเข้า ... DocType: Assignment Rule,Last User,ผู้ใช้งานล่าสุด -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",งานใหม่ {0} ได้รับมอบหมายให้กับคุณโดย {1} {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,บันทึกค่าเริ่มต้นของเซสชันแล้ว apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,โหลดไฟล์ซ้ำ DocType: Email Queue,Email Queue records.,บันทึกคิวอีเมล์ @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} ทรี DocType: User,User Emails,อีเมล์ของผู้ใช้ DocType: User,Username,ชื่อผู้ใช้ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,นำเข้า Zip +DocType: Scheduled Job Type,Create Log,สร้างบันทึก apps/frappe/frappe/model/base_document.py,Value too big,ค่ามีขนาดใหญ่เกินไป DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,เรียกใช้การทดสอบสคริปต์ @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,รายเดือน DocType: Address,Uttarakhand,ตราขั ณ ฑ์ DocType: Email Account,Enable Incoming,เปิดใช้งานเข้ามา apps/frappe/frappe/core/doctype/version/version_view.html,Danger,อันตราย -DocType: Address,Email Address,ที่อยู่อีเมล +apps/frappe/frappe/www/login.py,Email Address,ที่อยู่อีเมล DocType: Workflow State,th-large,-th ใหญ่ DocType: Communication,Unread Notification Sent,แจ้งส่งยังไม่ได้อ่าน apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ส่งออก ไม่ได้รับอนุญาต คุณต้อง {0} บทบาท ในการส่งออก @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ย DocType: DocType,Is Published Field,มีการเผยแพร่สนาม DocType: GCalendar Settings,GCalendar Settings,การตั้งค่า GCalendar DocType: Email Group,Email Group,กลุ่มอีเมล์ +apps/frappe/frappe/__init__.py,Only for {},เฉพาะสำหรับ {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - ไม่สามารถลบกิจกรรม {0} จาก Google ปฏิทิน, รหัสข้อผิดพลาด {1}" DocType: Event,Pulled from Google Calendar,ดึงจาก Google ปฏิทิน DocType: Note,Seen By,เห็นโดย apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,เพิ่มหลายรายการ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,คุณได้รับคะแนนพลังงานบางส่วน apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ไม่ใช่รูปภาพผู้ใช้ที่ถูกต้อง DocType: Energy Point Log,Reverted,หวนกลับ DocType: Success Action,First Success Message,ข้อความแสดงความสำเร็จเป็นครั้งแรก @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ไม่ช apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ค่าไม่ถูกต้อง: {0} จะต้อง {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","เปลี่ยนคุณสมบัติ เขตข้อมูล (ซ่อน , อ่านได้อย่างเดียว ได้รับอนุญาต ฯลฯ )" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ซาบซึ้ง +DocType: Notification Settings,Document Share,แบ่งปันเอกสาร DocType: Workflow State,lock,ล็อค apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,การตั้งค่าสำหรับหน้าติดต่อเรา apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ผู้ดูแลระบบเข้าสู่ระบบ @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",หากเปิดใช้งานเอกสารจะถูกทำเครื่องหมายตามที่เห็นเป็นครั้งแรกที่ผู้ใช้เปิดเอกสาร DocType: Auto Repeat,Repeat on Day,ทำซ้ำในวัน DocType: DocField,Color,สี +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,ทำเครื่องหมายทั้งหมดว่าอ่านแล้ว DocType: Data Migration Run,Log,เข้าสู่ระบบ DocType: Workflow State,indent-right,เยื้องขวา DocType: Has Role,Has Role,มีบทบาท @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,แสดง Traceback DocType: DocType,Default Print Format,รูปแบบการพิมพ์เริ่มต้น DocType: Workflow State,Tags,แท็ก +DocType: Onboarding Slide,Slide Type,ประเภทสไลด์ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,: ไม่มีสิ้นสุดเวิร์กโฟลว์ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} เขตข้อมูลไม่สามารถกำหนดให้เป็นเอกลักษณ์ใน {1} เนื่องจากมีค่าที่ซ้ำกันอยู่ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ประเภทเอกสาร @@ -136,7 +139,6 @@ DocType: Language,Guest,ผู้เยี่ยมชม DocType: DocType,Title Field,ชื่อ ฟิลด์ DocType: Error Log,Error Log,บันทึกข้อผิดพลาด apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL ไม่ถูกต้อง -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 วันล่าสุด apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",ซ้ำเช่น "abcabcabc" เป็นเพียงเล็กน้อยยากที่จะคาดเดามากกว่า "ABC" DocType: Notification,Channel,ช่อง apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",หากคุณคิดว่านี่คือไม่ได้รับอนุญาตโปรดเปลี่ยนรหัสผ่านของผู้ดูแลระบบ @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,ลูกค้า apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,เลือกคอลัมน์ apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,รูปแบบนี้ได้รับการแก้ไขหลังจากที่คุณได้โหลด DocType: Address,Himachal Pradesh,รัฐหิมาจัลประเทศ +DocType: Notification Log,Notification Log,บันทึกการแจ้งเตือน DocType: System Settings,"If not set, the currency precision will depend on number format",หากไม่ได้ตั้งค่าความแม่นยำของสกุลเงินจะขึ้นอยู่กับรูปแบบตัวเลข DocType: System Settings,"If not set, the currency precision will depend on number format",หากไม่ได้ตั้งค่าความแม่นยำของสกุลเงินจะขึ้นอยู่กับรูปแบบตัวเลข apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,เปิด Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,ส่ง DocType: Workflow Action Master,Workflow Action Name,ชื่อการกระทำ ใน กระบวนการทำงาน apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ไม่สามารถ รวม -DocType: Web Form Field,Fieldtype,fieldtype +DocType: Onboarding Slide Field,Fieldtype,fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ไม่ได้เป็นไฟล์ซิป DocType: Global Search DocType,Global Search DocType,DocType การค้นหาทั่วโลก DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,อีเมลที่ส่ง? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,สลับแผนภูมิ apps/frappe/frappe/desk/form/save.py,Did not cancel,ไม่ได้ยกเลิก DocType: Social Login Key,Client Information,ข้อมูลลูกค้า +DocType: Energy Point Rule,Apply this rule only once per document,ใช้กฎนี้เพียงครั้งเดียวต่อเอกสาร DocType: Workflow State,plus,บวก +DocType: DocField,Read Only Depends On,อ่านอย่างเดียวขึ้นอยู่กับ apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,เข้าสู่ระบบในฐานะแขกหรือผู้ดูแลระบบ DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ตัวจัดการไฟล์ @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,เหตุผล 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,ไม่มีกิจกรรม +DocType: Server Script,Script Manager,ผู้จัดการสคริปต์ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ไม่มีกิจกรรม apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,แอปของบุคคลที่สาม apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ผู้ใช้คนแรกจะกลายเป็นตัวจัดการระบบ (คุณสามารถเปลี่ยนภายหลัง) +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ไม่มีกิจกรรมวันนี้ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,คุณไม่สามารถให้คะแนนความเห็นต่อตนเองได้ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ต้องถูกส่งต่อสำหรับเหตุการณ์ Doc ที่เลือกไว้ DocType: Workflow State,circle-arrow-up,วงกลมลูกศรขึ้น @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},ไม่อนุญาตสำหรับ {0}: {1} ฟิลด์ที่ถูก จำกัด : {2} 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,You are not allowed to delete a standard Website Theme,คุณยังไม่ได้รับอนุญาตให้ลบรูปแบบมาตรฐานเว็บไซต์ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},สร้าง {0} แรกของคุณ DocType: Data Import,Log Details,บันทึกรายละเอียด DocType: Workflow Transition,Example,ตัวอย่าง DocType: Webhook Header,Webhook Header,หัวเรื่อง Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,พื้นหลังของแชท apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,ทำเครื่องหมายว่าอ่านแล้ว apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},กำลังอัปเดต {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,มี Onboarding Slide <b>{0} ที่</b> มีลำดับสไลด์เท่ากันอยู่แล้ว apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ปิดการใช้งานรายงาน DocType: Translation,Contributed Translation Doctype Name,ชื่อประเภทการแปลที่สนับสนุน +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม DocType: PayPal Settings,Redirect To,เปลี่ยนเส้นทางไปยัง DocType: Data Migration Mapping,Pull,ดึง DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},รูปแบบ JavaScript : frappe.query_reports [ 'ชื่อรายงาน' ] = { } @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,บันทึกของ DocType: Energy Point Settings,Review Levels,ระดับความเห็น DocType: Workflow State,Comment,ความเห็น DocType: Data Migration Plan,Postprocess Method,วิธีการ Postprocess +DocType: DocType Action,Action Type,ประเภทการกระทำ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ถ่ายภาพ DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",คุณสามารถเปลี่ยน เอกสารที่ เขียนโดย ยกเลิก พวกเขาและ จากนั้น พวกเขา แก้ @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,บันทึกเป็น DocType: Comment,Seen,การกระทำ apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,แสดงรายละเอียดเพิ่มเติม +DocType: Server Script,Before Submit,ก่อนส่ง DocType: System Settings,Run scheduled jobs only if checked,เรียกใช้งานที่กำหนดเฉพาะในกรณีที่มีการตรวจสอบ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,จะแสดงเฉพาะส่วนหัวถ้ามีการใช้งาน apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,เอกสารเก่า @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ที่สำคัญในก apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Fieldname ไม่ถูกต้อง <b>{0}</b> ในการกำหนดค่า add_fetch ของสคริปต์ที่กำหนดเอง apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,เลือก Google Contacts ที่จะซิงค์รายชื่อติดต่อ DocType: Web Page,Main Section (HTML),ส่วนหลัก (HTML) +DocType: Scheduled Job Type,Annual,ประจำปี DocType: Workflow State,headphones,หูฟัง apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,รหัสผ่านจะต้องรอหรือเลือกรหัสผ่าน DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,เช่น replies@yourcomany.com คำตอบทั้งหมดจะมาถึงกล่องจดหมายนี้ DocType: Slack Webhook URL,Slack Webhook URL,URL Slack Webhook +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",กำหนดลำดับของสไลด์ในตัวช่วยสร้าง หากไม่ให้แสดงภาพนิ่งควรตั้งค่าระดับความสำคัญเป็น 0 DocType: Data Migration Run,Current Mapping,การแม็ปปัจจุบัน apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,อีเมลที่ถูกต้องและชื่อที่ต้องการ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,กำหนดให้ไฟล์แนบทั้งหมดเป็นแบบส่วนตัว @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,กฎการเปลี่ยน apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,แสดงแถว {0} แถวแรกเท่านั้นในหน้าตัวอย่าง apps/frappe/frappe/core/doctype/report/report.js,Example:,ตัวอย่าง: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ข้อ จำกัด DocType: Workflow,Defines workflow states and rules for a document.,กำหนดขั้นตอนการทำงานรัฐและกฎระเบียบสำหรับเอกสาร DocType: Workflow State,Filter,กรอง apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},ตรวจสอบบันทึกข้อผิดพลาดสำหรับข้อมูลเพิ่มเติม: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,งาน apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} ออกจากระบบ: {1} DocType: Address,West Bengal,เบงกอลตะวันตก +DocType: Onboarding Slide,Information,ข้อมูล apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: ไม่ สามารถตั้งค่า กำหนด ส่ง ถ้าไม่ Submittable DocType: Transaction Log,Row Index,ดัชนีแถว DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,ปุ่มช่วยเหลือ DocType: Kanban Board Column,purple,สีม่วง DocType: About Us Settings,Team Members,สมาชิกในทีม +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,จะเรียกใช้งานที่กำหนดเวลาเพียงวันละครั้งสำหรับไซต์ที่ไม่ได้ใช้งาน เริ่มต้น 4 วันหากตั้งค่าเป็น 0 DocType: Assignment Rule,System Manager,จัดการระบบ +DocType: Scheduled Job Log,Scheduled Job,งานที่กำหนดไว้ DocType: Custom DocPerm,Permissions,สิทธิ์ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Webhooks แบบหย่อนสำหรับการผสานรวมภายใน DocType: Dropbox Settings,Allow Dropbox Access,ที่อนุญาตให้เข้าถึง Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,ส DocType: Email Flag Queue,Email Flag Queue,คิวธงอีเมล์ DocType: Access Log,Columns / Fields,คอลัมน์ / ฟิลด์ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,สไตล์ชีตสำหรับรูปแบบการพิมพ์ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,จำเป็นต้องใช้ฟิลด์ฟังก์ชันการรวมเพื่อสร้างแผนภูมิแดชบอร์ด apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,ไม่สามารถระบุเปิด {0} ลองอย่างอื่น apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ข้อมูลของคุณถูกส่ง apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ผู้ใช้ {0} ไม่สามารถลบได้ @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,ชื่อเขต DocType: Assignment Rule,Assign To Users,มอบหมายให้ผู้ใช้ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,หรือ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ชื่อโมดูล ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,ต่อ +DocType: Onboarding Slide,Continue,ต่อ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration ถูกปิดการใช้งาน DocType: Custom Field,Fieldname,fieldname DocType: Workflow State,certificate,ใบรับรอง apps/frappe/frappe/templates/includes/login/login.js,Verifying...,กำลังตรวจสอบ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,ลบการมอบหมายของคุณใน {0} {1} แล้ว apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,คอลัมน์ข้อมูลครั้งแรกจะต้องว่างเปล่า apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,แสดงทุกรุ่น apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,ดูความคิดเห็น @@ -432,12 +452,14 @@ DocType: User,Restrict IP,จำกัด IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,แผงควบคุม apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ไม่สามารถที่จะส่งอีเมล์ในเวลานี้ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - ไม่สามารถอัปเดตกิจกรรม {0} ใน Google ปฏิทิน, รหัสข้อผิดพลาด {1}" +DocType: Notification Log,Email Content,เนื้อหาอีเมล apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ค้นหาหรือพิมพ์คำสั่ง DocType: Activity Log,Timeline Name,ชื่อไทม์ไลน์ apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,สามารถตั้งค่าได้เพียง {0} รายการเดียวเท่านั้น DocType: Email Account,e.g. smtp.gmail.com,เช่น smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,เพิ่มกฎใหม่ DocType: Contact,Sales Master Manager,ผู้จัดการฝ่ายขายปริญญาโท +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,คุณต้องเปิดใช้งาน JavaScript เพื่อให้แอปของคุณทำงาน DocType: User Permission,For Value,สำหรับ Value DocType: Event,Google Calendar ID,รหัสปฏิทิน Google apps/frappe/frappe/www/complete_signup.html,One Last Step,ขั้นตอนที่หนึ่งล่าสุด @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,ฟิลด์ชื่อกล apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},การอิมพอร์ต {0} จาก {1} DocType: GCalendar Account,Allow GCalendar Access,อนุญาตให้เข้าถึง GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} เป็นฟิลด์ที่บังคับ +DocType: DocType,Documentation Link,ลิงค์เอกสาร apps/frappe/frappe/templates/includes/login/login.js,Login token required,ต้องการโทเค็นการเข้าสู่ระบบ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,อันดับรายเดือน: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,เลือกหลายรายการ @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,ไฟล์ URL DocType: Version,Table HTML,ตาราง HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,เพิ่มสมาชิก +DocType: Notification Log,Energy Point,จุดพลังงาน apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,เหตุการณ์จะเกิดขึ้นสำหรับวันนี้ DocType: Google Calendar,Push to Google Calendar,กดไปที่ Google Calendar DocType: Notification Recipient,Email By Document Field,อีเมล์ตามสนามเอกสาร @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,ไป DocType: Currency,Fraction Units,หน่วยเศษ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} จาก {1} ถึง{2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,ทำเครื่องหมายว่าเสร็จสิ้นแล้ว DocType: Chat Message,Type,ชนิด DocType: Google Settings,OAuth Client ID,รหัสลูกค้า OAuth DocType: Auto Repeat,Subject,เรื่อง apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,กลับไปที่โต๊ะ DocType: Web Form,Amount Based On Field,จำนวนเงินจากบนสนาม +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} ไม่มีรุ่นที่ถูกติดตาม apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ผู้ใช้เป็นข้อบังคับสำหรับแบ่งปัน DocType: DocField,Hidden,ซ่อนเร้น DocType: Web Form,Allow Incomplete Forms,อนุญาตให้รูปแบบที่ไม่สมบูรณ์ @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,โปรดตรวจสอบอีเมลของคุณสำหรับการตรวจสอบ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,พับไม่สามารถที่ส่วนท้ายของแบบฟอร์ม DocType: Communication,Bounced,ตีกลับ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ของ DocType: Deleted Document,Deleted Name,ชื่อที่ถูกลบ apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,ของระบบและ ผู้ใช้งาน เว็บไซต์ DocType: Workflow Document State,Doc Status,สถานะ Doc @@ -527,6 +552,7 @@ DocType: Language,Language Code,รหัสภาษา DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,หมายเหตุ: โดยค่าเริ่มต้นจะส่งอีเมลสำหรับการสำรองข้อมูลที่ล้มเหลว apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,เพิ่มตัวกรอง apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS ที่ส่งไปยังหมายเลขดังต่อไปนี้: {0} +DocType: Notification Settings,Assignments,การมอบหมาย apps/frappe/frappe/utils/data.py,{0} and {1},{0} และ {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,เริ่มการสนทนา DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",เสมอเพิ่ม "ร่าง" จะเดินทางสำหรับเอกสารร่างการพิมพ์ @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,การทำแผนที apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,อีเมลถูกทำเครื่องหมายว่าเป็นสแปม DocType: Comment,Website Manager,เว็บไซต์ผู้จัดการ apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,ยกเลิกการเชื่อมต่อไฟล์แล้ว กรุณาลองอีกครั้ง. +DocType: Data Import Beta,Show Failed Logs,แสดงบันทึกที่ล้มเหลว apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,การแปล apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,คุณเลือกเอกสารร่างหรือยกเลิกแล้ว apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},เอกสาร {0} ได้รับการตั้งค่าสถานะ {1} โดย {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,เอกสารที่ DocType: GSuite Templates,Destination ID,รหัสปลายทาง DocType: Desktop Icon,List,รายการ DocType: Activity Log,Link Name,ชื่อการเชื่อมโยง +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,คุณยัง DocType: System Settings,mm/dd/yyyy,วว/ดด/ปปปป +DocType: Onboarding Slide,Onboarding Slide,สไลด์ออนบอร์ด apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,รหัสผ่านไม่ถูกต้อง: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,รหัสผ่านไม่ถูกต้อง: DocType: Print Settings,Send document web view link in email,ส่งเอกสารลิงก์ดูเว็บในอีเมล @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,เทาเข้ม apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},ที่ประสบความสำเร็จ: {0} เป็น {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ไม่สามารถเปลี่ยนรายละเอียดผู้ใช้ในการสาธิต โปรดลงชื่อสมัครใช้บัญชีใหม่ที่ https://erpnext.com apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Drop +DocType: Dashboard Chart,Aggregate Function Based On,ฟังก์ชันการรวมขึ้นอยู่กับ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,กรุณาซ้ำกันนี้เพื่อให้การเปลี่ยนแปลง apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,กด Enter เพื่อบันทึก apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,รุ่น PDF ล้มเหลวเนื่องจากการเชื่อมโยงภาพเสีย @@ -617,7 +647,9 @@ DocType: Notification,Days Before,วันก่อน apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,แก้ไข ... DocType: Workflow State,volume-down,ปริมาณลง +DocType: Onboarding Slide,Help Links,ลิงค์ช่วยเหลือ apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ไม่อนุญาตให้เข้าถึงจากที่อยู่ IP นี้ +DocType: Notification Settings,Enable Email Notifications,เปิดใช้งานการแจ้งเตือนทางอีเมล apps/frappe/frappe/desk/reportview.py,No Tags,ไม่มีแท็ก DocType: Email Account,Send Notification to,แจ้งการส่ง DocType: DocField,Collapsible,พับ @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,สำรองข้อมูลล่า DocType: Customize Form Field,Customize Form Field,กำหนดเขตข้อมูลฟอร์ม DocType: Energy Point Rule,For Document Event,สำหรับเหตุการณ์เอกสาร DocType: Website Settings,Chat Room Name,ชื่อห้องแชท +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,ไม่เปลี่ยนแปลง DocType: OAuth Client,Grant Type,ประเภทการอนุญาต apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ตรวจสอบเอกสารที่สามารถอ่านได้โดยผู้ใช้ DocType: Deleted Document,Hub Sync ID,รหัสการซิงค์ของ Hub @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ใ DocType: Auto Repeat,Quarterly,ทุกไตรมาส apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",โดเมนอีเมล์ไม่ได้กำหนดค่าสำหรับบัญชีนี้สร้างได้อย่างไร DocType: User,Reset Password Key,รีเซ็ต รหัสผ่าน ที่สำคัญ +DocType: Dashboard Chart,All Time,ตลอดเวลา apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},สถานะเอกสารที่ไม่ถูกต้องสำหรับ {0} DocType: Email Account,Enable Auto Reply,เปิดใช้งานการตอบกลับอัตโนมัติ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ไม่ได้กระทำ @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,ต DocType: Email Account,Notify if unreplied,ถ้ายังไม่มีการตอบแจ้ง apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,สแกน QR Code และป้อนรหัสผลลัพธ์ที่แสดง apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,เปิดใช้งานการไล่ระดับสี +DocType: Scheduled Job Type,Hourly Long,ยาวรายชั่วโมง DocType: System Settings,Minimum Password Score,คะแนนรหัสผ่านขั้นต่ำ DocType: System Settings,Minimum Password Score,คะแนนรหัสผ่านขั้นต่ำ DocType: DocType,Fields,สาขา @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,แม่ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,การสำรองข้อมูล S3 เสร็จสิ้นแล้ว! apps/frappe/frappe/config/desktop.py,Developer,นักพัฒนาซอฟต์แวร์ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,สร้าง +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},หากต้องการเปิดใช้งานให้ทำตามคำแนะนำในลิงก์ต่อไปนี้: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} ในแถวที่ {1} ไม่สามารถมีทั้ง URL และ รายการที่เป็นรายการลูก apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},ควรมีอย่างน้อยหนึ่งแถวสำหรับตารางต่อไปนี้: {0} DocType: Print Format,Default Print Language,ภาษาการพิมพ์เริ่มต้น apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,บรรพบุรุษของ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ราก {0} ไม่สามารถลบได้ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,ไม่มีบันทึกที่ล้มเหลว apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,ยังไม่มีความคิดเห็น apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",โปรดตั้งค่า SMS ก่อนตั้งค่าเป็นวิธีการตรวจสอบสิทธิ์ผ่านทาง SMS Settings apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,ทั้ง DocType และชื่อที่ต้องการ @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,รายการส่วนท้า apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,เมนู DocType: DefaultValue,DefaultValue,เริ่มต้น DocType: Auto Repeat,Daily,ประจำวัน +DocType: Onboarding Slide,Max Count,จำนวนสูงสุด apps/frappe/frappe/config/users_and_permissions.py,User Roles,บทบาท ของผู้ใช้ DocType: Property Setter,Property Setter overrides a standard DocType or Field property,ทรัพย์สิน Setter แทนที่ DocType มาตรฐานหรือสถานที่ให้บริการภาคสนาม apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ไม่สามารถ อัปเดต : ไม่ถูกต้อง Link / หมดอายุ @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,ฮาร์ดดิสก์ DocType: Integration Request,Host,เจ้าภาพ DocType: Data Import Beta,Import File,นำเข้าไฟล์ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,ข้อผิดพลาดแม่แบบ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,คอลัมน์ <b>{0}</b> อยู่แล้ว DocType: ToDo,High,สูง apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,กิจกรรมใหม่ @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,แสดงในตัวกรอง DocType: Address,Daman and Diu,Daman และ Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,โครงการ DocType: Address,Personal,ส่วนตัว +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,การตั้งค่าการพิมพ์ดิบ ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,ดู https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region สำหรับรายละเอียด apps/frappe/frappe/config/settings.py,Bulk Rename,เปลี่ยนชื่อกลุ่ม DocType: Email Queue,Show as cc,แสดงเป็นซีซี @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ถ่ายวิ DocType: Contact Us Settings,Introductory information for the Contact Us Page,ข้อมูลเบื้องต้นสำหรับการติดต่อเราหน้า DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,ยกนิ้วลง +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,กำลังยกเลิกเอกสาร DocType: User,Send Notifications for Email threads,ส่งการแจ้งเตือนสำหรับหัวข้ออีเมล apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ศ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ไม่ได้อยู่ในโหมดการพัฒนา @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,การ DocType: DocField,In Global Search,ในการค้นหาทั่วโลก DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,เยื้องซ้าย -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,มันเป็นความเสี่ยงที่จะลบไฟล์นี้: {0} โปรดติดต่อผู้จัดการของระบบ DocType: Currency,Currency Name,ชื่อสกุล apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ไม่มีอีเมล์ @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,ฟิลด์ผู้ใช้ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,กดลบ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ได้ยกเลิกการเป็นสมาชิกสำหรับ {1} {2} แล้ว +DocType: Scheduled Job Type,Stopped,หยุด apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ไม่ได้ลบ apps/frappe/frappe/desk/like.py,Liked,ถูกใจ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,ส่งเดี๋ยวนี้ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",DocType มาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นใช้ Customize Form apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",DocType มาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นใช้ Customize Form +DocType: Server Script,Allow Guest,อนุญาตให้แขก DocType: Report,Query,สอบถาม DocType: Customize Form,Sort Order,เรียง apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},' ในมุมมองรายการ ' ไม่ได้รับอนุญาตสำหรับประเภท {0} ในแถว {1} @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,วิธีการตรวจสอบความถูกต้องของปัจจัยสองตัว apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ก่อนตั้งชื่อและบันทึกข้อมูล apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 จำนวน +DocType: DocType Link,Link Fieldname,ลิงค์ชื่อฟิลด์ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ร่วมกับ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ยกเลิกการรับข่าวสาร DocType: View Log,Reference Name,ชื่ออ้างอิง apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,เปลี่ยนผู้ใช้ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,เป็นครั้งแรก apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,อัปเดตการแปล DocType: Error Snapshot,Exception,ข้อยกเว้น DocType: Email Account,Use IMAP,ใช้ IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,กฎการกำหนดเปลี่ยนแปลงของรัฐในเวิร์กโฟลว์ DocType: File,Folder,โฟลเดอร์ DocType: Website Route Meta,Website Route Meta,เว็บไซต์ Meta เส้นทาง +DocType: Onboarding Slide Field,Onboarding Slide Field,ออนบอร์ดสไลด์ฟิลด์ DocType: DocField,Index,ดัชนี DocType: Email Group,Newsletter Manager,ผู้จัดการจดหมายข่าว apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,ตัวเลือกที่ 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ต apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,กำหนดค่าแผนภูมิ DocType: User,Last IP,IP สุดท้าย apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,โปรดเพิ่มหัวข้อลงในอีเมลของคุณ -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,มีการแบ่งปันเอกสารใหม่ {0} กับคุณ {1} DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} เปลี่ยนกลับ {1} DocType: Email Account,Track Email Status,ติดตามสถานะอีเมล @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,เริ่มต้นที่ส่ DocType: Workflow State,play,เล่น apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,คลิกที่ลิงค์ด้านล่างนี้เพื่อดำเนินการลงทะเบียนของคุณและตั้งรหัสผ่านใหม่ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,ไม่ได้เพิ่ม +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} ได้รับ {1} คะแนนสำหรับ {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ไม่มีบัญชีผู้ใช้อีเมล์ที่ได้รับมอบหมาย DocType: S3 Backup Settings,eu-west-2,สหภาพยุโรปตะวันตก-2 DocType: Contact Us Settings,Contact Us Settings,ติดต่อเราตั้งค่า @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,กำล DocType: Workflow State,text-width,ข้อความความกว้าง apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,วงเงินสูงสุดที่แนบมาสำหรับการบันทึกถึงนี้ apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,ค้นหาตามชื่อไฟล์หรือนามสกุล +DocType: Onboarding Slide,Slide Title,ชื่อเรื่องสไลด์ DocType: Notification,View Properties (via Customize Form),ดูอสังหาริมทรัพย์ (ผ่านแบบฟอร์มที่กำหนดเอง) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,คลิกที่ไฟล์เพื่อเลือก DocType: Note Seen By,Note Seen By,หมายเหตุมองเห็นได้ด้วย @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,แชร์ URL DocType: System Settings,Allow Consecutive Login Attempts ,อนุญาตให้มีการเข้าสู่ระบบที่ต่อเนื่อง apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,เกิดข้อผิดพลาดระหว่างการชำระเงิน กรุณาติดต่อเรา. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,หาก Slide Type คือ Create หรือ Settings ควรมีวิธีการ 'create_onboarding_docs' ในไฟล์ {ref_doctype} .py ที่จะดำเนินการหลังจากสไลด์เสร็จสมบูรณ์ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} วันที่ผ่านมา DocType: Email Account,Awaiting Password,รอรหัสผ่าน DocType: Address,Address Line 1,ที่อยู่บรรทัดที่ 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,ไม่ใช่ลูกหลานของ DocType: Contact,Company Name,ชื่อ บริษัท DocType: Custom DocPerm,Role,บทบาท -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,การตั้งค่า ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,ไปยังเบราว์เซอร์ของคุณ apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,เครื่องบันทึก @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",ติดตามว่าอีเมล์ของคุณถูกเปิดโดยผู้รับหรือไม่ <br> หมายเหตุ: หากคุณกำลังส่งไปยังผู้รับหลายรายแม้ว่าผู้รับจะอ่านอีเมลแล้วก็ตามผู้รับก็จะถือว่าเป็น "เปิด" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ค่านิยม ที่จำเป็น ขาดหายไป apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,อนุญาตการเข้าถึง Google Contacts +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,ถูก จำกัด DocType: Data Migration Connector,Frappe,เย็นเป็นวุ้น apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,ทำเครื่องหมายว่ายังไม่ได้อ่าน DocType: Activity Log,Operation,การทำงาน @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,อนุญาตให้พิมพ์ DocType: Communication,Clicked,คลิก apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,เลิก apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ไม่ อนุญาตให้ ' {0} ' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,การกำหนดตารางเวลาในการส่ง DocType: DocType,Track Seen,ติดตามการกระทำ DocType: Dropbox Settings,File Backup,การสำรองข้อมูลไฟล์ @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,ไม่ม apps/frappe/frappe/config/customization.py,Add custom forms.,เพิ่มรูปแบบที่กำหนดเอง apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} ใน {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ส่งเอกสารนี้ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,ระบบให้ บทบาท ที่กำหนดไว้ล่วงหน้า หลาย คุณสามารถเพิ่ม บทบาทใหม่ เพื่อกำหนดสิทธิ์ ปลีกย่อย DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,ชื่อทริกเกอร์ -apps/frappe/frappe/public/js/frappe/desk.js,Domains,โดเมน +DocType: Onboarding Slide,Domains,โดเมน DocType: Blog Category,Blog Category,หมวดหมู่บล็อก apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,ไม่สามารถ map เพราะเงื่อนไขดังต่อไปนี้ล้มเหลว: DocType: Role Permission for Page and Report,Roles HTML,HTML บทบาท @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,วันเสาร์ DocType: User,Represents a User in the system.,หมายถึงผู้ใช้งานในระบบ DocType: List View Setting,Disable Auto Refresh,ปิดใช้งานการรีเฟรชอัตโนมัติ DocType: Comment,Label,ฉลาก -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","งาน {0} ที่คุณได้รับมอบหมายให้ {1}, ถูกปิด" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,โปรดปิดหน้าต่างนี้ DocType: Print Format,Print Format Type,พิมพ์รูปแบบประเภท DocType: Newsletter,A Lead with this Email Address should exist,ตะกั่วที่อยู่อีเมลนี้ควรมีอยู่ @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,การตั้ง apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,เลือก DocType: Data Export,Filter List,ตัวกรองรายการ DocType: Data Export,Excel,สันทัด +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,ข้อความตอบกลับอัตโนมัติ DocType: Data Migration Mapping,Condition,สภาพ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ชั่วโมงที่ผ่านมา @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,ฐานความรู้ผู้มีส่วนร่วม DocType: Communication,Sent Read Receipt,ส่งใบเสร็จรับเงินอ่าน DocType: Email Queue,Unsubscribe Method,วิธีการยกเลิกการเป็นสมาชิก +DocType: Onboarding Slide,Add More Button,เพิ่มปุ่มเพิ่มเติม DocType: GSuite Templates,Related DocType,DocType ที่เกี่ยวข้อง apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,แก้ไขเพื่อเพิ่มเนื้อหา apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,เลือกภาษา apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,รายละเอียดบัตร apps/frappe/frappe/__init__.py,No permission for {0},ไม่อนุญาตให้ {0} DocType: DocType,Advanced,ก้าวหน้า +DocType: Onboarding Slide,Slide Image Source,แหล่งที่มาของภาพสไลด์ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,ดูเหมือนว่าคีย์ API หรือ API ลับที่ไม่ถูกต้อง !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},อ้างอิง: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,นาง @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,เจ้ DocType: DocType,User Cannot Create,ผู้ใช้ไม่สามารถสร้าง apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ทำสำเร็จแล้ว apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,การเข้าถึง Dropbox ได้รับการอนุมัติ! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,แน่ใจหรือไม่ว่าคุณต้องการรวม {0} กับ {1} DocType: Customize Form,Enter Form Type,ป้อนประเภทแบบฟอร์ม DocType: Google Drive,Authorize Google Drive Access,ให้สิทธิ์การเข้าถึง Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,ไม่มีชื่อ Kanban ชื่อ @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ช่วยให้ DocType , DocType ระวัง !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","รูปแบบที่กำหนดเองสำหรับการพิมพ์, อีเมล์" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},ผลรวมของ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,การปรับปรุงเพื่อให้รุ่นใหม่ DocType: Custom Field,Depends On,ขึ้นอยู่กับ DocType: Kanban Board Column,Green,สีเขียว DocType: Custom DocPerm,Additional Permissions,สิทธิ์ เพิ่มเติม @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,สังคม apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar - ไม่สามารถสร้างปฏิทินสำหรับ {0}, รหัสข้อผิดพลาด {1}" apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,แก้ไขแถว DocType: Workflow Action Master,Workflow Action Master,แม่แบบกระบวนการทำงาน +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,ลบทั้งหมด DocType: Custom Field,Field Type,ฟิลด์ชนิด apps/frappe/frappe/utils/data.py,only.,เท่านั้น DocType: Route History,Route History,ประวัติเส้นทาง @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,ลืมรหัสผ่ DocType: System Settings,yyyy-mm-dd,ปปปป-ดด-วว apps/frappe/frappe/desk/report/todo/todo.py,ID,ไอดี apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,เซิร์ฟเวอร์ผิดพลาด +DocType: Server Script,After Delete,หลังจากลบ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,ดูรายงานที่ผ่านมาทั้งหมด apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Id จะต้องเข้าสู่ระบบ DocType: Website Slideshow,Website Slideshow,สไลด์โชว์เว็บไซต์ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ไม่มีข้อมูล DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",เชื่อมโยง ที่เป็นหน้าแรกของเว็บไซต์ ลิงค์ มาตรฐาน ( ดัชนี เข้าสู่ระบบ ผลิตภัณฑ์ บล็อก เกี่ยวกับการ ติดต่อ) +DocType: Server Script,After Submit,หลังจากส่ง apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},รับรองความถูกต้องล้มเหลวในขณะที่ได้รับอีเมลจากบัญชีอีเมล {0} ข้อความจากเซิร์ฟเวอร์: {1} DocType: User,Banner Image,แบนเนอร์ภาพ DocType: Custom Field,Custom Field,ฟิลด์ที่กำหนดเอง @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",หากผู้ใช้มีบทบาทในการตรวจสอบใด ๆ จากนั้นผู้ใช้จะกลายเป็น "ผู้ใช้ระบบ" "ระบบของผู้ใช้" มีการเข้าถึงเดสก์ทอป DocType: System Settings,Date and Number Format,วันที่และ รูปแบบตัวเลข apps/frappe/frappe/model/document.py,one of,หนึ่งใน -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ตรวจสอบช่วงเวลาหนึ่ง apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,แสดงแท็ก DocType: DocField,HTML Editor,ตัวแก้ไข HTML 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,การดำเนินการ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้ +DocType: DocType,Actions,การดำเนินการ DocType: Workflow State,align-justify,จัดแสดงให้เห็นถึง- DocType: User,Middle Name (Optional),ชื่อกลาง (ถ้ามี) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,ไม่อนุญาต @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ไม่ DocType: System Settings,Security,ความปลอดภัย apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,กำหนดให้ ส่งไปที่ {0} ผู้รับ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ตัด +DocType: Server Script,After Save,หลังจากบันทึก apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},เปลี่ยนชื่อจาก {0} เป็น {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} จาก {1} (แถว {2} กับเด็ก ๆ ) DocType: Currency,**Currency** Master,**สกุลเงิน** หลัก @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,ค่าตัวกรอง DocType: Communication,User Tags,แท็กผู้ใช้ DocType: Data Migration Run,Fail,ล้มเหลว DocType: Workflow State,download-alt,ดาวน์โหลด alt- +DocType: Scheduled Job Type,Last Execution,การกระทำครั้งสุดท้าย DocType: Data Migration Run,Pull Failed,ดึงไม่สำเร็จ apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,แสดง / ซ่อนการ์ด DocType: Communication,Feedback Request,ผลตอบรับการร้องขอ apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,นำเข้าข้อมูลจากไฟล์ CSV / Excel apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ฟิลด์ต่อไปนี้จะหายไป: +DocType: Notification Log,From User,จากผู้ใช้ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},กำลังยกเลิก {0} DocType: Web Page,Main Section,ส่วนหลัก DocType: Page,Icon,ไอคอน apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",คำแนะนำ: รวมสัญลักษณ์ตัวเลขและตัวพิมพ์ใหญ่ในรหัสผ่าน apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",คำแนะนำ: รวมสัญลักษณ์ตัวเลขและตัวพิมพ์ใหญ่ในรหัสผ่าน +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",กำหนดค่าการแจ้งเตือนสำหรับการกล่าวถึงการมอบหมายจุดพลังงานและอื่น ๆ DocType: DocField,Allow in Quick Entry,อนุญาตใน Quick Entry apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,รูปแบบไฟล์ PDF DocType: System Settings,dd/mm/yyyy,วัน / เดือน / ปี @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,URL ของธีม DocType: Customize Form,Sort Field,เรียง ฟิลด์ DocType: Razorpay Settings,Razorpay Settings,การตั้งค่า Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,แก้ไขตัวกรอง -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,เพิ่มอีก DocType: System Settings,Session Expiry Mobile,เซสชั่นที่หมดอายุมือถือ apps/frappe/frappe/utils/password.py,Incorrect User or Password,ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง apps/frappe/frappe/templates/includes/search_box.html,Search results for,ผลการค้นหาสำหรับ @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,กฎพลังงานจุด DocType: Communication,Delayed,ล่าช้า apps/frappe/frappe/config/settings.py,List of backups available for download,รายชื่อของการสำรองข้อมูลที่สามารถดาวน์โหลดได้ +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,ลองนำเข้าข้อมูลใหม่ apps/frappe/frappe/www/login.html,Sign up,ลงชื่อ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,แถว {0}: ไม่อนุญาตให้ปิดใช้บังคับสำหรับฟิลด์มาตรฐาน +DocType: Webhook,Enable Security,เปิดใช้งานความปลอดภัย apps/frappe/frappe/config/customization.py,Dashboards,แดชบอร์ด DocType: Test Runner,Output,เอาท์พุต DocType: Milestone,Track Field,ลู่วิ่ง @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,ตั้งค่าคุณส apps/frappe/frappe/config/customization.py,Add fields to forms.,เพิ่มเขตข้อมูล ในรูปแบบ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ดูเหมือนว่ามีบางอย่างผิดปกติกับการกำหนดค่า Paypal ของไซต์นี้ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,เพิ่มรีวิว +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} มอบหมายภารกิจใหม่ {1} {2} ให้กับคุณ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ขนาดตัวอักษร (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,เฉพาะ DocTypes มาตรฐานที่ได้รับอนุญาตให้ปรับแต่งจากฟอร์มการปรับแต่ง DocType: Email Account,Sendgrid,SendGrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,รายการเมนูพอ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,ตั้งค่าตัวกรอง DocType: Contact Us Settings,Email ID,ID อีเมล์ DocType: Energy Point Rule,Multiplier Field,ฟิลด์ตัวคูณ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,ไม่สามารถสร้างคำสั่ง Razorpay กรุณาติดต่อผู้ดูแลระบบ DocType: Dashboard Chart,Time Interval,ช่วงเวลา DocType: Activity Log,Keep track of all update feeds,ติดตามข้อมูลอัปเดตทั้งหมด +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} แบ่งปันเอกสาร {1} {2} กับคุณ DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,รายการของทรัพยากรที่ app ลูกค้าจะสามารถเข้าถึงหลังจากที่ผู้ใช้จะช่วยให้มัน <br> เช่นโครงการ DocType: Translation,Translated Text,ข้อความที่แปล DocType: Contact Us Settings,Query Options,ตัวเลือกแบบสอบถาม @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,คีย์ DocType: Address,Contacts,ติดต่อ DocType: System Settings,Setup Complete,การติดตั้ง เสร็จสมบูรณ์ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,รายงานหุ้นเอกสารทั้งหมด +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","เทมเพลตนำเข้าควรเป็นประเภท. csv, .xlsx หรือ. xls" apps/frappe/frappe/www/update-password.html,New Password,รหัสผ่านใหม่ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,กรอง {0} ที่ขาดหายไป apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ขออภัย! คุณไม่สามารถลบความคิดเห็นสร้างขึ้นโดยอัตโนมัติ @@ -1431,6 +1490,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,วิ่ง DocType: Blog Post,Content (HTML),เนื้อหา (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,ตั้งค่าสำหรับ DocType: Personal Data Download Request,User Name,ชื่อผู้ใช้ DocType: Workflow State,minus-sign,ลบการลงชื่อเข้าใช้ apps/frappe/frappe/public/js/frappe/request.js,Not Found,ไม่พบ @@ -1438,11 +1498,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,ไม่มี {0} ได apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ส่งออกสิทธิ์ที่กำหนดเอง apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ไม่พบรายการ DocType: Data Export,Fields Multicheck,ฟิลด์ Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} เสร็จสมบูรณ์ DocType: Activity Log,Login,เข้าสู่ระบบ DocType: Web Form,Payments,วิธีการชำระเงิน apps/frappe/frappe/www/qrcode.html,Hi {0},สวัสดี {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive Integration -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} เปลี่ยนคะแนนของคุณกลับเป็น {1} {2} DocType: System Settings,Enable Scheduled Jobs,เปิดใช้งานตามเวลาที่กำหนด apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,บันทึก apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,เฉื่อยชา @@ -1467,6 +1527,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,เท apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,ข้อผิดพลาดสิทธิ์ apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},ชื่อของ {0} ไม่สามารถ {1} DocType: User Permission,Applicable For,สามารถใช้งานได้ สำหรับ +DocType: Dashboard Chart,From Date,จากวันที่ apps/frappe/frappe/core/doctype/version/version_view.html,Success,ความสำเร็จ apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,เซสชันหมดอายุแล้ว apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,เซสชันหมดอายุแล้ว @@ -1479,7 +1540,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ท apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; เงื่อนไขไม่ได้รับอนุญาต DocType: Async Task,Async Task,Async งาน DocType: Workflow State,picture,ภาพ -apps/frappe/frappe/www/complete_signup.html,Complete,ที่สมบูรณ์แบบ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ที่สมบูรณ์แบบ DocType: DocType,Image Field,ลานภาพ DocType: Print Format,Custom HTML Help,ที่กำหนดเองวิธีใช้ HTML DocType: LDAP Settings,Default Role on Creation,บทบาทเริ่มต้นในการสร้าง @@ -1487,6 +1548,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,รัฐต่อไป DocType: User,Block Modules,โมดูลที่ถูกบล็อก DocType: Print Format,Custom CSS,CSS ที่กำหนดเอง +DocType: Energy Point Rule,Apply Only Once,ใช้เพียงครั้งเดียว apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,เพิ่มความคิดเห็น DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},ละเว้น: {0} เป็น {1} @@ -1498,6 +1560,7 @@ DocType: Email Account,Default Incoming,เริ่มต้นเข้าม DocType: Workflow State,repeat,ทำซ้ำ DocType: Website Settings,Banner,แบนเนอร์ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},ค่าต้องเป็นหนึ่งใน {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,ยกเลิกเอกสารทั้งหมด DocType: Role,"If disabled, this role will be removed from all users.",หากปิดการใช้งานบทบาทนี้จะถูกลบออกจากผู้ใช้ทั้งหมด apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,ไปที่รายการ {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ช่วยในการค้นหา @@ -1506,6 +1569,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,สมั apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,การทำซ้ำอัตโนมัติสำหรับเอกสารนี้ถูกปิดใช้งาน DocType: DocType,Hide Copy,ซ่อนคัดลอก apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ล้าง ทุกบทบาท +DocType: Server Script,Before Save,ก่อนบันทึก apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} ต้องไม่ซ้ำกัน apps/frappe/frappe/model/base_document.py,Row,แถว apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC และอีเมลเทมเพลต" @@ -1516,7 +1580,6 @@ DocType: Chat Profile,Offline,ออฟไลน์ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},นำเข้า {0} สำเร็จ DocType: User,API Key,คีย์ API DocType: Email Account,Send unsubscribe message in email,ส่งข้อความยกเลิกการเป็นสมาชิกในอีเมล -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,แก้ไขชื่อเรื่อง apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,fieldname ซึ่งจะเป็น DocType สำหรับฟิลด์การเชื่อมโยงนี้ apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,เอกสารที่ได้รับมอบหมายให้คุณและคุณ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,คุณสามารถคัดลอกวาง @@ -1548,8 +1611,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,แนบ ภาพ DocType: Workflow State,list-alt,รายการ ALT- apps/frappe/frappe/www/update-password.html,Password Updated,รหัสผ่าน การปรับปรุง +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้ apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ขั้นตอนในการยืนยันการเข้าสู่ระบบของคุณ apps/frappe/frappe/utils/password.py,Password not found,ไม่พบรหัสผ่าน +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,ความยาวของหน้าเว็บ DocType: Email Queue,Expose Recipients,เปิดเผยผู้รับ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ผนวกกับมีผลบังคับใช้สำหรับอีเมลที่เข้ามา @@ -1577,6 +1642,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,ระบบ DocType: Web Form,Max Attachment Size (in MB),แม็กซ์ขนาดไฟล์แนบ (เมกะไบต์) apps/frappe/frappe/www/login.html,Have an account? Login,มีบัญชีอยู่แล้ว? เข้าสู่ระบบ +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,การตั้งค่าการพิมพ์ ... DocType: Workflow State,arrow-down,ลูกศรลง apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},แถว {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ผู้ใช้ไม่ได้รับอนุญาตในการลบ {0}: {1} @@ -1598,6 +1664,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ป้อ DocType: Dropbox Settings,Dropbox Access Secret,ความลับในการเข้าถึง Dropbox DocType: Tag Link,Document Title,ชื่อเอกสาร apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(บังคับ) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว DocType: Social Login Key,Social Login Provider,ผู้ให้บริการเข้าสู่ระบบสังคม apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,เพิ่มความคิดเห็นอื่น apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ไม่มีข้อมูลที่พบในไฟล์ โปรดใส่ข้อมูลใหม่ลงในไฟล์ใหม่ @@ -1612,11 +1679,12 @@ DocType: Workflow State,hand-down,มือลง apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",ไม่พบเขตข้อมูลที่สามารถใช้เป็นคอลัมน์ Kanban ใช้ฟอร์มปรับแต่งเพื่อเพิ่มฟิลด์ที่กำหนดเองประเภท "เลือก" DocType: Address,GST State,รัฐ GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยที่ไม่ได้ส่ง +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),ผู้ใช้ ({0}) DocType: Website Theme,Theme,กระทู้ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,เปลี่ยนเส้นทาง URI ผูกพันกับรหัสรับรองความถูกต้อง apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,เปิดวิธีใช้ DocType: DocType,Is Submittable,เป็น Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,การกล่าวถึงใหม่ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,การกล่าวถึงใหม่ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ไม่มีการซิงค์ Google Contacts ใหม่ DocType: File,Uploaded To Google Drive,อัปโหลดไปยัง Google ไดรฟ์ apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ความคุ้มค่า ด้าน การตรวจสอบสามารถเป็นได้ทั้ง 0 หรือ 1 @@ -1628,7 +1696,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,กล่องขาเข้า DocType: Kanban Board Column,Red,สีแดง DocType: Workflow State,Tag,แท็ก -DocType: Custom Script,Script,ต้นฉบับ +DocType: Report,Script,ต้นฉบับ apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,ไม่สามารถบันทึกเอกสารได้ DocType: Energy Point Rule,Maximum Points,คะแนนสูงสุด apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,การตั้งค่าของฉัน @@ -1658,9 +1726,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} คะแนนชื่นชมสำหรับ {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,บทบาท สามารถตั้งค่าสำหรับ ผู้ใช้ จากหน้า ผู้ใช้ ของพวกเขา apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,เพิ่มความเห็น +DocType: Dashboard Chart,Select Date Range,เลือกช่วงวันที่ DocType: DocField,Mandatory,จำเป็น apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,โมดูลเพื่อการส่งออก +DocType: Scheduled Job Type,Monthly Long,ยาวรายเดือน apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} : ไม่มีการตั้งค่าสิทธิ์ขั้นพื้นฐาน +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,ส่งอีเมลไปที่ {0} เพื่อลิงก์ที่นี่ apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","ความหมายของ Submit, ยกเลิกอัพเดท" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,สิ่งที่ต้องทำ @@ -1669,7 +1740,6 @@ DocType: Milestone Tracker,Track milestones for any document,ติดตาม DocType: Social Login Key,Identity Details,รายละเอียดข้อมูลประจำตัว apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},ไม่อนุญาตการเปลี่ยนสถานะเวิร์กโฟลว์จาก {0} เป็น {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,แสดงหน้าแดชบอร์ด -apps/frappe/frappe/desk/form/assign_to.py,New Message,ข้อความใหม่ DocType: File,Preview HTML,ดูตัวอย่าง HTML DocType: Desktop Icon,query-report,แบบสอบถามรายงาน DocType: Data Import Beta,Template Warnings,คำเตือนแม่แบบ @@ -1680,18 +1750,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,เชื่ apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,แก้ไขการตั้งค่ารายงานอีเมลอัตโนมัติ DocType: Chat Room,Message Count,นับข้อความ DocType: Workflow State,book,หนังสือ +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2} DocType: Communication,Read by Recipient,อ่านโดยผู้รับ DocType: Website Settings,Landing Page,หน้า Landing apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,ข้อผิดพลาดในสคริปต์ที่กำหนดเอง apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} ชื่อ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ไม่มีสิทธิ์ที่กำหนดไว้สำหรับเกณฑ์นี้ DocType: Auto Email Report,Auto Email Report,รายงานอีเมลอัตโนมัติ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,สร้างเอกสารใหม่แล้ว apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,ลบความคิดเห็น? DocType: Address Template,This format is used if country specific format is not found,รูปแบบนี้ใช้ในกรณีที่รูปแบบเฉพาะของประเทศจะไม่พบ DocType: System Settings,Allow Login using Mobile Number,อนุญาตการเข้าสู่ระบบโดยใช้หมายเลขโทรศัพท์เคลื่อนที่ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,คุณไม่ได้มีสิทธิ์เพียงพอในการเข้าถึงทรัพยากรนี้ กรุณาติดต่อผู้จัดการของคุณได้รับการเข้าถึง DocType: Custom Field,Custom,ประเพณี DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",หากเปิดใช้งานผู้ใช้ที่เข้าสู่ระบบจากที่อยู่ IP ที่ จำกัด จะไม่ได้รับพร้อมท์ให้ใช้ Authentic Factor Authentication +DocType: Server Script,After Cancel,หลังจากยกเลิก DocType: Auto Repeat,Get Contacts,รับรายชื่อติดต่อ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},กระทู้ยื่นภายใต้ {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ข้ามคอลัมน์ไม่มีชื่อ @@ -1702,6 +1775,7 @@ DocType: User,Login After,เข้าสู่ระบบหลังจาก DocType: Print Format,Monospace,monospace DocType: Letter Head,Printing,การพิมพ์ DocType: Workflow State,thumbs-up,ยกนิ้วขึ้น +DocType: Notification Log,Mention,กล่าวถึง DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,แบบอักษร apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision ควรอยู่ระหว่าง 1 และ 6 @@ -1709,7 +1783,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,และ apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},รายงานนี้สร้างขึ้นเมื่อ {0} DocType: Error Snapshot,Frames,เฟรม -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,การมอบหมาย +DocType: Notification Log,Assignment,การมอบหมาย DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,ลิงก์รูปภาพ DocType: Auto Email Report,Report Filters,ตัวกรองรายงาน @@ -1726,7 +1800,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ไม่สามารถปรับเหตุการณ์ให้เป็นค่าล่าสุดได้ apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,รหัสยืนยันถูกส่งไปยังที่อยู่อีเมลที่คุณสมัครไว้แล้ว apps/frappe/frappe/core/doctype/user/user.py,Throttled,ผ่อนคันเร่ง +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,เป้าหมายของคุณ apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","ตัวกรองต้องมี 4 ค่า (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},ไม่มีชื่อที่ระบุสำหรับ {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,ใช้กฎการมอบหมาย apps/frappe/frappe/utils/bot.py,show,แสดง apps/frappe/frappe/utils/data.py,Invalid field name {0},ชื่อฟิลด์ไม่ถูกต้อง {0} @@ -1736,7 +1812,6 @@ DocType: Workflow State,text-height,ข้อความที่มีคว DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,แผนแผนที่การย้ายถิ่นฐาน apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,กำลังเริ่มต้น Frappe ... DocType: Web Form Field,Max Length,ความยาวสูงสุด -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},สำหรับ {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,แผนที่เครื่องหมาย apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ส่ง ออก @@ -1772,6 +1847,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,หน้าขาดห apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,ความคิดเห็น DocType: DocType,Route,เส้นทาง apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay การตั้งค่าเกตเวย์การชำระเงิน +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} ได้รับ {1} คะแนนสำหรับ {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,ดึงภาพที่แนบมาจากเอกสาร DocType: Chat Room,Name,ชื่อ DocType: Contact Us Settings,Skype,Skype @@ -1782,7 +1858,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,เปิด apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,ภาษาของคุณ DocType: Dashboard Chart,Average,เฉลี่ย apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,เพิ่มแถว -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,เครื่องพิมพ์ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,แบบสอบถามจะต้องเลือก DocType: Auto Repeat,Completed,เสร็จ @@ -1842,6 +1917,7 @@ DocType: GCalendar Account,Next Sync Token,รหัสการซิงค์ DocType: Energy Point Settings,Energy Point Settings,การตั้งค่าจุดพลังงาน DocType: Async Task,Succeeded,ประสบความสำเร็จ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},เขตข้อมูล ที่จำเป็นในการ บังคับ {0} +DocType: Onboarding Slide Field,Align,ตําแหน่ง apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,ตั้งค่า สิทธิ์สำหรับ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ผู้ใช้และสิทธิ์ DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1858,7 +1934,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ใหม่ชื่อรูปแบบการพิมพ์ apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,คลิกที่ลิงค์ด้านล่างเพื่ออนุมัติคำขอ DocType: Workflow State,align-left,จัดซ้าย +DocType: Onboarding Slide,Action Settings,การตั้งค่าการกระทำ DocType: User,Defaults,เริ่มต้น +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","สำหรับการเปรียบเทียบให้ใช้> 5, <10 หรือ = 324 สำหรับช่วงใช้ 5:10 (สำหรับค่าระหว่าง 5 และ 10)" DocType: Energy Point Log,Revert Of,ย้อนกลับของ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,รวมกับที่มีอยู่ DocType: User,Birth Date,วันเกิด @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ใน DocType: Notification,Value Change,เปลี่ยนแปลงค่า DocType: Google Contacts,Authorize Google Contacts Access,อนุญาตการเข้าถึง Google Contacts apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน +apps/frappe/frappe/utils/data.py,1 week ago,1 สัปดาห์ที่ผ่านมา DocType: Data Import Beta,Import Type,ประเภทการนำเข้า DocType: Access Log,HTML Page,หน้า HTML DocType: Address,Subsidiary,บริษัท สาขา @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,ด้วยจดหมาย apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,เซิร์ฟเวอร์ อีเมลขาออก ที่ไม่ถูกต้อง หรือ พอร์ต DocType: Custom DocPerm,Write,เขียน -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,เฉพาะผู้ดูแลระบบอนุญาตให้สร้างรายงานคำ / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,อัปเดต DocType: Data Import Beta,Preview,แสดงตัวอย่าง apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ฟิลด์ "ค่า" มีผลบังคับใช้ กรุณาระบุค่าได้รับการปรับปรุง @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,เชิ DocType: Data Migration Run,Started,เริ่มต้น apps/frappe/frappe/permissions.py,User {0} does not have access to this document,ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงเอกสารนี้ DocType: Data Migration Run,End Time,เวลาสิ้นสุด +DocType: Dashboard Chart,Group By Based On,จัดกลุ่มตาม apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,เลือกสิ่งที่แนบ apps/frappe/frappe/model/naming.py, for {0},สำหรับ {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,คุณยังไม่ได้ รับอนุญาตให้ พิมพ์เอกสาร นี้ @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,ตรวจสอบ DocType: Workflow Document State,Update Field,ปรับปรุงเขต DocType: Chat Profile,Enable Chat,เปิดใช้การแชท DocType: LDAP Settings,Base Distinguished Name (DN),ฐานชื่อ (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ออกจากการสนทนานี้ apps/frappe/frappe/model/base_document.py,Options not set for link field {0},ไม่ได้ตั้งค่า ตัวเลือก สำหรับฟิลด์ ลิงค์ {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,คิว / คนทำงาน @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,เข้าสู่ระบบ ไม่ได้รับอนุญาต ในเวลานี้ DocType: Data Migration Run,Current Mapping Action,การทำแผนที่การทำแผนที่ปัจจุบัน DocType: Dashboard Chart Source,Source Name,แหล่งที่มาของชื่อ -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ โปรดเพิ่มบัญชีภายใต้ผู้ใช้> กล่องจดหมายอีเมล DocType: Email Account,Email Sync Option,อีเมล์ตัวเลือกการซิงค์ apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,หมายเลขแถว DocType: Async Task,Runtime,Runtime DocType: Post,Is Pinned,ถูกตรึงไว้ DocType: Contact Us Settings,Introduction,การแนะนำ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,ต้องการความช่วยเหลือ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,พินทั่วโลก apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ติดตามโดย DocType: LDAP Settings,LDAP Email Field,สนามอีเมล์ LDAP @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,อยู DocType: User Email,Enable Outgoing,เปิดใช้งานขาออก DocType: Address,Fax,แฟกซ์ apps/frappe/frappe/config/customization.py,Custom Tags,แท็กที่กำหนดเอง -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล DocType: Comment,Submitted,Submitted DocType: Contact,Pulled from Google Contacts,ดึงจาก Google Contacts apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,ในคำขอที่ถูกต้อง @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,หน้ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,กำหนดให้ฉัน DocType: DocField,Dynamic Link,การเชื่อมโยงแบบไดนามิก apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,กดปุ่ม Alt เพื่อเรียกใช้ทางลัดเพิ่มเติมในเมนูและแถบด้านข้าง +DocType: Dashboard Chart,To Date,ถึงวันที่ DocType: List View Setting,List View Setting,การตั้งค่ามุมมองรายการ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,แสดงงานล้มเหลว -DocType: Event,Details,รายละเอียด +DocType: Scheduled Job Log,Details,รายละเอียด DocType: Property Setter,DocType or Field,DocType หรือสาขา apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,คุณเลิกติดตามเอกสารนี้ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,สีหลัก @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ดูเหมือนคีย์ที่เผยแพร่ได้หรือคีย์ลับผิด! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,ดูเหมือนคีย์ที่เผยแพร่ได้หรือคีย์ลับผิด! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,ความช่วยเหลือด่วนสำหรับการตั้งค่าสิทธิ์ -DocType: Tag Doc Category,Doctype to Assign Tags,ประเภทเอกสารที่จะกำหนดแท็ก apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,แสดงอาการกำเริบ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,อีเมลถูกย้ายไปที่ถังขยะแล้ว DocType: Report,Report Builder,สร้างรายงาน @@ -2105,6 +2184,7 @@ DocType: Workflow State,Upload,อัปโหลด DocType: User Permission,Advanced Control,การควบคุมขั้นสูง DocType: System Settings,Date Format,รูปแบบวันที่ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ไม่ได้เผยแพร่ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบแม่แบบที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","การดำเนินการสำหรับขั้นตอนการทำงานิ (เช่น อนุมัติ, ยกเลิก )" DocType: Data Import,Skip rows with errors,ข้ามแถวที่มีข้อผิดพลาด DocType: Workflow State,flag,ธง @@ -2114,7 +2194,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,พ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ข้ามไปที่สนาม DocType: Contact Us Settings,Forward To Email Address,ไปข้างหน้า เพื่อ ที่อยู่อีเมล์ DocType: Contact Phone,Is Primary Phone,เป็นโทรศัพท์หลัก -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ส่งอีเมลไปที่ {0} เพื่อลิงก์ที่นี่ DocType: Auto Email Report,Weekdays,วันธรรมดา apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} บันทึกจะถูกส่งออก apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ฟิลด์ จะต้องfieldname ถูกต้อง @@ -2122,7 +2201,7 @@ DocType: Post Comment,Post Comment,เขียนความคิดเห็ apps/frappe/frappe/config/core.py,Documents,เอกสาร apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,บันทึกกิจกรรมโดย DocType: Social Login Key,Custom Base URL,URL พื้นฐานที่กำหนดเอง -DocType: Email Flag Queue,Is Completed,เป็นที่เรียบร้อยแล้ว +DocType: Onboarding Slide,Is Completed,เป็นที่เรียบร้อยแล้ว apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,รับฟิลด์ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,แก้ไขโปรไฟล์ DocType: Kanban Board Column,Archived,เก็บไว้ @@ -2133,12 +2212,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",ฟิลด์นี้จะปรากฏเฉพาะถ้า fieldname ที่กำหนดไว้ที่นี่มีค่าหรือกฎระเบียบที่เป็นจริง (ตัวอย่าง): myfield EVAL: doc.myfield == 'ค่าของฉัน' EVAL: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ในวันนี้ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ในวันนี้ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ในวันนี้ +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,ในวันนี้ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",เมื่อคุณได้ตั้ง นี้ผู้ใช้ จะมีเพียง เอกสาร การเข้าถึง สามารถ ( เช่น โพสต์ บล็อก ) ที่ การเชื่อมโยง ที่มีอยู่ (เช่น Blogger ) DocType: Data Import Beta,Submit After Import,ส่งหลังจากนำเข้า DocType: Error Log,Log of Scheduler Errors,เข้าสู่ระบบของข้อผิดพลาดจัดตารางเวลา DocType: User,Bio,ไบโอ +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,ลิงก์วิธีใช้ Onboarding Slide DocType: OAuth Client,App Client Secret,ลับไคลเอ็นต์ของโปรแกรมประยุกต์ apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,ส่ง apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,ผู้ปกครองคือชื่อของเอกสารที่จะมีการเพิ่มข้อมูล @@ -2146,7 +2226,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,ที่กำหนดเอง HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,ป้อนชื่อโฟลเดอร์ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบเทมเพลตที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ apps/frappe/frappe/auth.py,Unknown User,ผู้ใช้ที่ไม่รู้จัก apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,เลือกบทบาท DocType: Comment,Deleted,ที่ถูกลบ @@ -2162,7 +2241,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,สร้างแผนภูมิ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ไม่ต้องนำเข้า -DocType: Web Page,Center,ศูนย์ +DocType: Onboarding Slide Field,Center,ศูนย์ DocType: Notification,Value To Be Set,ค่าที่จะตั้งค่า apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},แก้ไข {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ระดับแรก @@ -2170,7 +2249,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ชื่อฐานข้อมูล apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,แบบฟอร์มรีเฟรช DocType: DocField,Select,เลือก -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,ดูบันทึกเต็ม +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ดูบันทึกเต็ม DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Python Expression, ตัวอย่าง: status == 'Open' และ type == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,ไฟล์ ที่แนบมา ไม่ได้ apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,การเชื่อมต่อสูญหาย คุณลักษณะบางอย่างอาจไม่ทำงาน @@ -2202,6 +2281,7 @@ DocType: Web Page,HTML for header section. Optional,HTML สำหรับ ส apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,คุณลักษณะนี้จะเป็นแบรนด์ใหม่และยังคงทดลอง apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,สูงสุด {0} แถว รับอนุญาต DocType: Dashboard Chart Link,Chart,แผนภูมิ +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,ยกเลิกทั่วโลก apps/frappe/frappe/utils/password_strength.py,This is a very common password.,นี่คือรหัสผ่านที่พบบ่อยมาก apps/frappe/frappe/email/doctype/email_group/email_group.js,View,ดู @@ -2218,6 +2298,7 @@ DocType: Data Migration Connector,Hostname,ชื่อโฮสต์ DocType: Data Migration Mapping,Condition Detail,เงื่อนไขรายละเอียด apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",สำหรับสกุลเงิน {0} จำนวนธุรกรรมขั้นต่ำควรเป็น {1} DocType: DocField,Print Hide,พิมพ์ซ่อน +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,ถึงผู้ใช้ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,ใส่ ความคุ้มค่า DocType: Workflow State,tint,สี @@ -2285,6 +2366,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,รหัส Q apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,เพิ่มสิ่งที่ต้องทำ DocType: Footer Item,Company,บริษัท apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ค่าเฉลี่ยของ {0} +DocType: Scheduled Job Log,Scheduled,กำหนด DocType: User,Logout from all devices while changing Password,ออกจากระบบจากอุปกรณ์ทั้งหมดขณะเปลี่ยนรหัสผ่าน apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ยืนยันรหัสผ่าน apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,มีข้อผิดพลาด ได้ @@ -2310,7 +2392,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,สิทธิ์ผู้ใช้มีอยู่แล้ว apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},การแม็พคอลัมน์ {0} กับฟิลด์ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ดู {0} -DocType: User,Hourly,ทุกๆชั่วโมง +DocType: Scheduled Job Type,Hourly,ทุกๆชั่วโมง apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ลงทะเบียน OAuth app ลูกค้า DocType: DocField,Fetch If Empty,ดึงข้อมูลถ้าว่างเปล่า DocType: Data Migration Connector,Authentication Credentials,ข้อมูลรับรองการตรวจสอบสิทธิ์ @@ -2321,10 +2403,10 @@ DocType: SMS Settings,SMS Gateway URL,URL เกตเวย์ SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ไม่สามารถเป็น ""{2}"" มันควรจะเป็นอย่างใดอย่างหนึ่งของ ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ได้รับจาก {0} ผ่านกฎอัตโนมัติ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} หรือ {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,คุณพร้อมแล้ว! DocType: Workflow State,trash,ถังขยะ DocType: System Settings,Older backups will be automatically deleted,การสำรองข้อมูลเก่าจะถูกลบโดยอัตโนมัติ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID คีย์การเข้าใช้หรือรหัสลับที่ไม่ถูกต้อง -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,คุณสูญเสียคะแนนพลังงานบางส่วน DocType: Post,Is Globally Pinned,ถูกตรึงไว้ทั่วโลก apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,กิจกรรมล่าสุด DocType: Workflow Transition,Conditions,เงื่อนไข @@ -2333,6 +2415,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,ได้ร DocType: Event,Ends on,สิ้นสุด DocType: Payment Gateway,Gateway,เกตเวย์ DocType: LDAP Settings,Path to Server Certificate,พา ธ ไปยังใบรับรองเซิร์ฟเวอร์ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript ถูกปิดการใช้งานในเบราว์เซอร์ของคุณ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ไม่ได้รับอนุญาตเพียงพอสำหรับการดูลิงก์ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,ไม่ได้รับอนุญาตเพียงพอสำหรับการดูลิงก์ apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,ที่อยู่ ชื่อเรื่อง มีผลบังคับใช้ @@ -2352,7 +2435,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,สหภาพยุโรปตะวันตก-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",หากเลือกช่องนี้แถวที่มีข้อมูลที่ถูกต้องจะถูกนำเข้าและแถวที่ไม่ถูกต้องจะถูกทิ้งลงในไฟล์ใหม่เพื่อให้คุณนำเข้าภายหลัง apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,เอกสารเป็นเพียงแก้ไขได้โดยผู้ใช้ของบทบาท -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,อ่านตาม Recipient On DocType: Blogger,Short Name,ชื่อสั้น @@ -2385,6 +2467,7 @@ DocType: Translation,PR sent,ส่ง PR แล้ว DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ส่งเฉพาะบันทึกที่อัปเดตในช่วง x ชั่วโมงล่าสุด DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ส่งเฉพาะบันทึกที่อัปเดตในช่วง x ชั่วโมงล่าสุด DocType: Communication,Feedback,ข้อเสนอแนะ +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,อัปเดตเป็นเวอร์ชั่นใหม่แล้ว apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,เปิดแปล apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,อีเมลนี้ถูกสร้างขึ้นอัตโนมัติ DocType: Workflow State,Icon will appear on the button,ไอคอนจะปรากฏบนปุ่ม @@ -2423,6 +2506,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,ไม่ DocType: DocField,Precision,ความแม่นยำ DocType: Website Slideshow,Slideshow Items,รายการสไลด์โชว์ apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,พยายามหลีกเลี่ยงคำพูดซ้ำแล้วซ้ำอีกและตัวอักษร +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,ปิดการแจ้งเตือน +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,คุณแน่ใจหรือว่าต้องการลบทุกแถว? DocType: Workflow Action,Workflow State,สถานะของเวิร์กโฟลว์ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,แถวที่เพิ่มเข้ามา apps/frappe/frappe/www/list.py,My Account,บัญชีของฉัน @@ -2431,6 +2516,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,วันหลังจากที่ apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,การเชื่อมต่อถาด QZ ใช้งานได้! DocType: Contact Us Settings,Settings for Contact Us Page,การตั้งค่าสำหรับติดต่อเราหน้า +DocType: Server Script,Script Type,ประเภทสคริปต์ DocType: Print Settings,Enable Print Server,เปิดใช้งานเซิร์ฟเวอร์การพิมพ์ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} สัปดาห์ที่ผ่านมา DocType: Email Account,Footer,ส่วนท้าย @@ -2456,8 +2542,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,คำเตือน apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,สิ่งนี้อาจถูกพิมพ์บนหลาย ๆ หน้า DocType: Data Migration Run,Percent Complete,เปอร์เซ็นต์ที่สมบูรณ์ -DocType: Tag Category,Tag Category,แท็กหมวดหมู่ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","สำหรับการเปรียบเทียบให้ใช้> 5, <10 หรือ = 324 สำหรับช่วงใช้ 5:10 (สำหรับค่าระหว่าง 5 และ 10)" DocType: Google Calendar,Pull from Google Calendar,ดึงจาก Google Calendar apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,ช่วย DocType: User,Login Before,เข้าสู่ระบบก่อน @@ -2467,17 +2551,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,ซ่อนวันหยุดสุดสัปดาห์ apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,สร้างเอกสารที่เกิดซ้ำโดยอัตโนมัติ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,เป็น +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,ข้อมูลการเข้าสู่ระบบ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ราคา {0} ไม่สามารถเป็นรายการ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",วิธีการที่ควรสกุลเงินนี้จะจัดรูปแบบ? ถ้าไม่ตั้งจะใช้เริ่มต้นของระบบ apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ส่ง {0} เอกสาร? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,คุณจะต้อง เข้าสู่ระบบและ มี บทบาท ผู้จัดการ ระบบ เพื่อให้สามารถ เข้าถึง การสำรองข้อมูล +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","เกิดข้อผิดพลาดในการเชื่อมต่อกับแอปพลิเคชันถาด QZ ... <br><br> คุณต้องมีแอปพลิเคชัน QZ Tray ติดตั้งและใช้งานเพื่อใช้คุณสมบัติการพิมพ์แบบ Raw <br><br> <a href=""https://qz.io/download/"" target=""_blank"">คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray</a> <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ</a>" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,การทำแผนที่เครื่องพิมพ์ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,กรุณาบันทึกก่อนที่จะติด +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,คุณต้องการยกเลิกเอกสารที่เชื่อมโยงทั้งหมดหรือไม่ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),เพิ่ม {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},fieldtype ไม่สามารถเปลี่ยนแปลงได้จาก {0} เป็น {1} ในแถว {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,สิทธิ์บทบาท DocType: Help Article,Intermediate,สื่อกลาง +apps/frappe/frappe/config/settings.py,Email / Notifications,อีเมล์ / การแจ้งเตือน apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} เปลี่ยน {1} เป็น {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,ยกเลิกเอกสารที่เรียกคืนแล้วเป็นฉบับร่าง DocType: Data Migration Run,Start Time,เวลา @@ -2494,6 +2582,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,ที่อยู่ของผู้รับ ที่ไม่ถูกต้อง DocType: Workflow State,step-forward,ก้าวไปข้างหน้า- DocType: System Settings,Allow Login After Fail,อนุญาตให้เข้าสู่ระบบหลังจากล้มเหลว +DocType: DocType Link,DocType Link,ลิงค์ DocType DocType: Role Permission for Page and Report,Set Role For,ตั้งบทบาท DocType: GCalendar Account,The name that will appear in Google Calendar,ชื่อที่จะปรากฏใน Google ปฏิทิน apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,ห้องที่ตรงกับ {0} มีอยู่แล้ว @@ -2511,6 +2600,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},สร้ DocType: Contact,Google Contacts,Google Contacts DocType: GCalendar Account,GCalendar Account,บัญชี GCalendar DocType: Email Rule,Is Spam,เป็นสแปม +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,ล่าสุด apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},รายงาน {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},เปิด {0} DocType: Data Import Beta,Import Warnings,คำเตือนการนำเข้า @@ -2522,6 +2612,7 @@ DocType: Workflow State,ok-sign,OK-เครื่องหมาย apps/frappe/frappe/config/settings.py,Deleted Documents,เอกสารที่ถูกลบ apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,รูปแบบ CSV เป็นตัวพิมพ์เล็กและใหญ่ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,เดสก์ท็อปไอคอนมีอยู่แล้ว +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ระบุว่าควรแสดงสไลด์ใดในโดเมนทั้งหมด หากไม่มีการระบุสไลด์จะแสดงในทุกโดเมนโดยค่าเริ่มต้น apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ซ้ำ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับใช้โดยไม่มีค่าดีฟอลต์ DocType: Newsletter,Create and Send Newsletters,สร้างและส่งจดหมายข่าว @@ -2532,6 +2623,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,รหัสเหตุการณ์ Google ปฏิทิน apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",“ตารางหลัก” หมายถึงตารางหลักที่แถวนี้จะต้องเพิ่ม apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,คะแนนรีวิว: +DocType: Scheduled Job Log,Scheduled Job Log,บันทึกการใช้งานตามกำหนดเวลา +DocType: Server Script,Before Delete,ก่อนที่จะลบ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,ที่ใช้ร่วมกันด้วย apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,แนบไฟล์ / URL และเพิ่มในตาราง apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,ไม่ได้ตั้งค่าข้อความ @@ -2555,19 +2648,21 @@ DocType: About Us Settings,Settings for the About Us Page,การตั้ง apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,การตั้งค่าเกตเวย์การชำระเงินแบบเรียบ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,การตั้งค่าเกตเวย์การชำระเงินแบบเรียบ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,พิมพ์ส่งไปยังเครื่องพิมพ์! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,คะแนนพลังงาน +DocType: Notification Settings,Energy Points,คะแนนพลังงาน +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},เวลา {0} ต้องอยู่ในรูปแบบ: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,เช่น pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,สร้างคีย์ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,นี่จะเป็นการลบข้อมูลของคุณอย่างถาวร DocType: DocType,View Settings,ดูการตั้งค่า +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,ประกาศใหม่ DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,โครงสร้างการร้องขอ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,วิธีการควบคุม get_razorpay_order หายไป DocType: Personal Data Deletion Request,Pending Verification,รอการยืนยัน DocType: Website Meta Tag,Website Meta Tag,แท็ก Meta เว็บไซต์ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",หากไม่ใช่พอร์ตมาตรฐาน (เช่น 587) ถ้าใน Google Cloud ลองพอร์ต 2525 apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",การล้างวันที่สิ้นสุดเนื่องจากไม่สามารถใช้กับหน้าเผยแพร่ได้ในอดีต DocType: User,Send Me A Copy of Outgoing Emails,ส่งสำเนาอีเมลขาออก -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.,เพิ่ม Google Analytics ID: เช่น UA-89XXX57-1 กรุณาค้นหาความช่วยเหลือใน Google Analytics สำหรับข้อมูลเพิ่มเติม apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,รหัสผ่านไม่สามารถมีความยาวเกิน 100 ตัวอักษร DocType: OAuth Client,App Client ID,App รหัสลูกค้า @@ -2596,6 +2691,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,จำเป apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} แบ่งปันเอกสารนี้กับ {1} DocType: Website Settings,Brand Image,ภาพลักษณ์ DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,เทมเพลตนำเข้าควรมีส่วนหัวและอย่างน้อยหนึ่งแถว apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,กำหนดค่า Google Calendar แล้ว apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",การติดตั้งจากด้านบนแถบนำทางท้ายและโลโก้ DocType: Web Form Field,Max Value,ค่าสูงสุด @@ -2605,6 +2701,7 @@ DocType: User Social Login,User Social Login,เข้าสู่ระบบ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} วิจารณ์งานของคุณใน {1} ด้วย {2} จุด DocType: Contact,All,ทั้งหมด DocType: Email Queue,Recipient,ผู้รับ +DocType: Webhook,Webhook Security,Webhook ความปลอดภัย DocType: Communication,Has Attachment,มีสิ่งที่แนบมา DocType: Address,Sales User,ผู้ขาย apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ลากและวางเครื่องมือในการสร้างและปรับแต่งรูปแบบการพิมพ์ @@ -2671,7 +2768,6 @@ DocType: Data Migration Mapping,Migration ID Field,ฟิลด์ ID การ DocType: Dashboard Chart,Last Synced On,ซิงค์ครั้งสุดท้ายเมื่อ DocType: Comment,Comment Type,ประเภทแสดงความคิดเห็น DocType: OAuth Client,OAuth Client,ไคลเอ็นต์ OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} วิจารณ์งานของคุณใน {1} {2} DocType: Assignment Rule,Users,ผู้ใช้ DocType: Address,Odisha,โอริสสา DocType: Report,Report Type,ประเภทรายงาน @@ -2697,14 +2793,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,รายการสไ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,การอนุมัติด้วยตัวเองไม่ได้รับอนุญาต DocType: GSuite Templates,Template ID,รหัสเทมเพลต apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,ไม่อนุญาตให้ใช้ประเภท Grant Type ( <code>{0}</code> ) และ Response Type ( <code>{1}</code> ) -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},ข้อความใหม่จาก {0} DocType: Portal Settings,Default Role at Time of Signup,เริ่มต้นบทบาทที่เวลาลงทะเบียน DocType: DocType,Title Case,กรณีชื่อ apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,คลิกที่ลิงค์ด้านล่างเพื่อดาวน์โหลดข้อมูลของคุณ apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},เปิดใช้กล่องจดหมายอีเมลสำหรับผู้ใช้ {0} DocType: Data Migration Run,Data Migration Run,รันการย้ายข้อมูล DocType: Blog Post,Email Sent,อีเมลที่ส่ง -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,เก่ากว่า DocType: DocField,Ignore XSS Filter,ละเว้น XSS กรอง apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ลบออก apps/frappe/frappe/config/integrations.py,Dropbox backup settings,การตั้งค่าการสำรองข้อมูล Dropbox @@ -2759,6 +2853,7 @@ DocType: Async Task,Queued,จัดคิว DocType: Braintree Settings,Use Sandbox,ใช้ Sandbox apps/frappe/frappe/utils/goal.py,This month,เดือนนี้ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,รูปแบบใหม่ที่กำหนดเองพิมพ์ +DocType: Server Script,Before Save (Submitted Document),ก่อนบันทึก (เอกสารที่ส่ง) DocType: Custom DocPerm,Create,สร้าง apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,ไม่มีรายการที่จะแสดงอีก apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,ไปที่ระเบียนก่อนหน้า @@ -2816,6 +2911,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ย้ายไปที่ถังขยะ DocType: Web Form,Web Form Fields,ช่องข้อมูลเว็บฟอร์ม DocType: Data Import,Amended From,แก้ไขเพิ่มเติมจาก +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,เพิ่มลิงก์วิดีโอความช่วยเหลือในกรณีที่ผู้ใช้ไม่มีความคิดเกี่ยวกับสิ่งที่ต้องกรอกในสไลด์ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},คำเตือน: ไม่พบ {0} ในตารางใด ๆ ที่เกี่ยวข้องกับการ {1} DocType: S3 Backup Settings,eu-north-1,EU-เฉียงเหนือ 1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,เอกสารฉบับนี้ถูกจัดคิวสำหรับการดำเนินการในขณะนี้ กรุณาลองอีกครั้ง @@ -2838,6 +2934,7 @@ DocType: Blog Post,Blog Post,โพสต์บล็อก DocType: Access Log,Export From,ส่งออกจาก apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,การค้นหาขั้นสูง apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,คุณไม่ได้รับอนุญาตให้ดูจดหมายข่าว +DocType: Dashboard Chart,Group By,กลุ่มตาม DocType: User,Interests,ความสนใจ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,คำแนะนำ การตั้งค่า รหัสผ่านที่ ได้รับการ ส่งไปยังอีเมล ของคุณ DocType: Energy Point Rule,Allot Points To Assigned Users,ให้คะแนนแก่ผู้ใช้ที่ได้รับมอบหมาย @@ -2853,6 +2950,7 @@ DocType: Assignment Rule,Assignment Rule,กฎการมอบหมาย apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},ชื่อผู้ใช้ที่แนะนำ: {0} DocType: Assignment Rule Day,Day,วัน apps/frappe/frappe/public/js/frappe/desk.js,Modules,โมดูล +DocType: DocField,Mandatory Depends On,ข้อบังคับขึ้นอยู่กับ apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ความสำเร็จของการชำระเงิน apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,ไม่มี {0} อีเมล DocType: OAuth Bearer Token,Revoked,เพิกถอน @@ -2860,6 +2958,7 @@ DocType: Web Page,Sidebar and Comments,Sidebar และความคิดเ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",เมื่อคุณ แก้ไข เอกสารหลังจาก ยกเลิก และบันทึกไว้ ก็จะ ได้รับหมายเลข ใหม่ที่ เป็นรุ่นของ หมายเลขเดิม apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",ไม่สามารถแนบเอกสาร {0} ได้โปรดเปิดใช้งานอนุญาตพิมพ์สำหรับ {0} ในการตั้งค่าการพิมพ์ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ดูเอกสารที่ {0} DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้ DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้ @@ -2874,13 +2973,13 @@ DocType: Currency,Fraction,เศษ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,กิจกรรมถูกซิงค์กับ Google Calendar DocType: LDAP Settings,LDAP First Name Field,LDAP ฟิลด์ชื่อจริง DocType: Contact,Middle Name,ชื่อกลาง +DocType: DocField,Property Depends On,คุณสมบัติขึ้นอยู่กับ DocType: Custom Field,Field Description,ฟิลด์คำอธิบาย apps/frappe/frappe/model/naming.py,Name not set via Prompt,ชื่อ ไม่ได้ ตั้งค่าผ่านทาง พร้อม apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,กล่องจดหมาย apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","การอัพเดต {0} จาก {1}, {2}" DocType: Auto Email Report,Filters Display,ตัวกรองการแสดงผล apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ต้องมีช่อง "amended_from" ทำการแก้ไข -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ชื่นชมผลงานของคุณใน {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,บันทึกตัวกรอง DocType: Address,Plant,พืช apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ตอบทั้งหมด @@ -2921,11 +3020,11 @@ DocType: Workflow State,folder-close,โฟลเดอร์ใกล้ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,รายงาน: DocType: Print Settings,Print taxes with zero amount,พิมพ์ภาษีที่มีจำนวนเป็นศูนย์ apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} ไม่อนุญาตให้เปลี่ยนชื่อ +DocType: Server Script,Before Insert,ก่อนที่จะใส่ DocType: Custom Script,Custom Script,สคริปต์ที่กำหนดเอง DocType: Address,Address Line 2,ที่อยู่บรรทัดที่ 2 DocType: Address,Reference,การอ้างอิง apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,มอบหมายให้ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,การทำแผนที่การโยกย้ายข้อมูลรายละเอียด DocType: Data Import,Action,ดำเนินการ DocType: GSuite Settings,Script URL,URL ของสคริปต์ @@ -2951,11 +3050,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,ในมุมมองรายการ DocType: Email Account,Use TLS,ใช้ TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,เข้าสู่ระบบ ที่ไม่ถูกต้อง หรือรหัสผ่าน +DocType: Scheduled Job Type,Weekly Long,ยาวรายสัปดาห์ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,ดาวน์โหลดแม่แบบ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,เพิ่ม javascript ที่กำหนดเอง ในรูปแบบ ,Role Permissions Manager,ผู้จัดการ สิทธิ์ บทบาท apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ชื่อของรูปแบบพิมพ์ใหม่ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,สลับแถบด้านข้าง +DocType: Server Script,After Save (Submitted Document),หลังจากบันทึก (เอกสารที่ส่ง) DocType: Data Migration Run,Pull Insert,ดึง Insert DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",คะแนนสูงสุดที่อนุญาตหลังจากคูณคะแนนด้วยค่าตัวคูณ (หมายเหตุ: สำหรับการไม่ จำกัด ให้ปล่อยให้ฟิลด์นี้ว่างหรือตั้งค่า 0) @@ -2975,6 +3076,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,บล็อก apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,ไม่ได้ติดตั้ง LDAP apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ดาวน์โหลดที่มีข้อมูล apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ค่าที่เปลี่ยนแปลงสำหรับ {0} {1} +DocType: Server Script,Before Cancel,ก่อนที่จะยกเลิก DocType: Workflow State,hand-right,มือ-ขวา DocType: Website Settings,Subdomain,subdomain DocType: S3 Backup Settings,Region,ภูมิภาค @@ -3021,12 +3123,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,รหัสผ่า DocType: S3 Backup Settings,us-east-1,เราตะวันออก-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},โพสต์โดย {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",การจัดรูปแบบคอลัมน์ให้ป้ายชื่อคอลัมน์ในแบบสอบถาม +DocType: Onboarding Slide,Slide Fields,เลื่อนฟิลด์ DocType: Has Domain,Has Domain,มีโดเมน DocType: User,Allowed In Mentions,ได้รับอนุญาตในการกล่าวถึง apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ไม่ได้มีบัญชีอยู่แล้ว? ลงชื่อ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ไม่สามารถลบฟิลด์รหัสได้ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} : ไม่สามารถตั้งค่ากำหนดการแก้ไข ถ้าไม่ Submittable DocType: Address,Bihar,มคธ +DocType: Notification Settings,Subscribed Documents,เอกสารที่สมัครเป็นสมาชิก apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,การตั้งค่าผู้ใช้ DocType: Report,Reference Report,รายงานอ้างอิง DocType: Activity Log,Link DocType,การเชื่อมโยง DocType @@ -3044,6 +3148,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ให้สิทธ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,หน้าเว็บที่คุณกำลังมองหาจะหายไป ซึ่งอาจเป็นเพราะมันจะถูกย้ายหรือมีการพิมพ์ผิดในการเชื่อมโยง apps/frappe/frappe/www/404.html,Error Code: {0},รหัสข้อผิดพลาด: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",คำอธิบายสำหรับหน้าแสดงรายการในข้อความธรรมดาเพียงคู่สาย (สูงสุด 140 ตัวอักษร) +DocType: Server Script,DocType Event,เหตุการณ์ DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} เป็นฟิลด์บังคับ DocType: Workflow,Allow Self Approval,อนุญาตการอนุมัติตนเอง DocType: Event,Event Category,ประเภทเหตุการณ์ @@ -3060,6 +3165,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ชื่อของคุณ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,ความสำเร็จในการเชื่อมต่อ DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,มีการนำเสนอภาพนิ่งของประเภทภาพนิ่งต่อไปแล้ว DocType: DocType,Default Sort Field,ฟิลด์เรียงลำดับเริ่มต้น DocType: File,Is Folder,เป็นโฟลเดอร์ DocType: Document Follow,DocType,DOCTYPE @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ค่ DocType: Workflow State,arrow-up,ลูกศรขึ้น DocType: Dynamic Link,Link Document Type,ลิงค์ประเภทเอกสาร apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,ควรมีอย่างน้อยหนึ่งแถวสำหรับตาราง {0} +DocType: Server Script,Server Script,สคริปต์เซิร์ฟเวอร์ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",ในการกำหนดค่าการทำซ้ำอัตโนมัติให้เปิดใช้งาน "อนุญาตการทำซ้ำอัตโนมัติ" จาก {0} DocType: OAuth Bearer Token,Expires In,จะหมดอายุใน +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",จำนวนครั้งที่คุณต้องการทำซ้ำชุดเขตข้อมูล (เช่น: หากคุณต้องการลูกค้า 3 รายในสไลด์ให้ตั้งค่าฟิลด์นี้เป็น 3 เฉพาะชุดฟิลด์ชุดแรกเท่านั้นที่จะแสดงเป็นข้อบังคับในสไลด์) DocType: DocField,Allow on Submit,อนุญาตให้ส่ง DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,ประเภทยกเว้น @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,ส่วนหัว apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,เหตุการณ์ที่จะเกิดขึ้น apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,กรุณาป้อนค่าสำหรับ App คีย์และ app คีย์ลับ +DocType: Email Account,Append Emails to Sent Folder,ต่อท้ายอีเมลไปยังโฟลเดอร์ที่ถูกส่ง DocType: Web Form,Accept Payment,ยอมรับการชำระเงิน apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,เลือกรายการ apps/frappe/frappe/config/core.py,A log of request errors,บันทึกข้อผิดพลาดของการร้องขอ @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,มีส่วนร่วม apps/frappe/frappe/config/customization.py,Form Customization,การปรับแต่งแบบฟอร์ม apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ไม่มีเซสชันที่ใช้งานอยู่ DocType: Web Form,Route to Success Link,เส้นทางสู่ความสำเร็จ Link -DocType: Top Bar Item,Right,ขวา +DocType: Onboarding Slide Field,Right,ขวา apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,ไม่มีเหตุการณ์ที่จะเกิดขึ้น DocType: User,User Type,ประเภทผู้ใช้ DocType: Prepared Report,Ref Report DocType,เอกสารอ้างอิง DocType @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,กรุณา apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL ต้องเริ่มต้นด้วย 'http: //' หรือ 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ตัวเลือกที่ 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,สิ่งนี้ไม่สามารถยกเลิกได้ DocType: Workflow State,Edit,แก้ไข DocType: Website Settings,Chat Operators,ผู้ดำเนินการแชท DocType: S3 Backup Settings,ca-central-1,CA-กลาง 1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,คุณมีการเปลี่ยนแปลงที่ไม่ได้บันทึกในฟอร์มนี้ กรุณาบันทึกเพื่อที่จะดำเนินการต่อ DocType: Address,Telangana,พรรคเตลัง apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,เริ่มต้นสำหรับ {0} จะต้องเป็นตัวเลือก -DocType: Tag Doc Category,Tag Doc Category,แท็ก Doc หมวดหมู่ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,รายงานที่มีมากกว่า 10 คอลัมน์จะดูดีขึ้นในโหมดแนวนอน apps/frappe/frappe/database/database.py,Invalid field name: {0},ชื่อฟิลด์ไม่ถูกต้อง: {0} DocType: Milestone,Milestone,ขั้น @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},ไปที่ {0} apps/frappe/frappe/email/queue.py,Emails are muted,อีเมลเป็น เงียบ apps/frappe/frappe/config/integrations.py,Google Services,บริการของ Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + ขึ้น -apps/frappe/frappe/utils/data.py,1 weeks ago,1 สัปดาห์ที่ผ่านมา +DocType: Onboarding Slide,Slide Description,คำอธิบายสไลด์ DocType: Communication,Error,ความผิดพลาด apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,โปรดตั้งค่าข้อความก่อน DocType: Auto Repeat,End Date,วันที่สิ้นสุด @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,กลุ่มป้ายกำกับ DocType: Kanban Board,Kanban Board,กระดานคันบัน apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,กำหนดค่า Google Contacts แล้ว apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 บันทึกจะถูกส่งออก +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ กรุณาเพิ่มบัญชีภายใต้ผู้ใช้> กล่องจดหมายอีเมล DocType: DocField,Report Hide,แจ้งซ่อน apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},มุมมองต้นไม้ไม่สามารถใช้ได้สำหรับ {0} DocType: DocType,Restrict To Domain,จำกัด โดเมน DocType: Domain,Domain,โดเมน +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL ไฟล์ไม่ถูกต้อง กรุณาติดต่อผู้ดูแลระบบ DocType: Custom Field,Label Help,ช่วยเหลือฉลาก DocType: Workflow State,star-empty,ดาวที่ว่างเปล่า apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,วันนี้มักจะเป็นเรื่องง่ายที่จะคาดเดา @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left,มือ-ซ้าย DocType: Data Import,If you are updating/overwriting already created records.,หากคุณกำลังอัปเดต / เขียนทับระเบียนที่สร้างไว้แล้ว apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,เป็นสากล DocType: Email Account,Use SSL,ใช้ SSL +DocType: Webhook,HOOK-.####,ตะขอ-.#### DocType: Workflow State,play-circle,เล่นวงกลม apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ไม่สามารถกำหนดเอกสารได้อย่างถูกต้อง apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",นิพจน์ "depends_on" ไม่ถูกต้อง @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,รีเฟรชครั้งล่าสุด apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,สำหรับประเภทเอกสาร DocType: Workflow State,arrow-right,ลูกศรขวา +DocType: Server Script,API Method,วิธีการ API DocType: Workflow State,Workflow state represents the current state of a document.,สถานะของเวิร์กโฟลว์ที่บ่งบอกถึงสถานะปัจจุบันของเอกสาร DocType: Letter Head,Letter Head Based On,หัวจดหมายขึ้นอยู่กับ apps/frappe/frappe/utils/oauth.py,Token is missing,Token จะหายไป @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,relinked DocType: Print Settings,Compact Item Print,ขนาดกะทัดรัดรายการพิมพ์ DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL การเปลี่ยนเส้นทาง +DocType: Onboarding Slide Field,Placeholder,ตัวยึด DocType: SMS Settings,Enter url parameter for receiver nos,ป้อนพารามิเตอร์ URL สำหรับ Nos รับ DocType: Chat Profile,Online,ออนไลน์ DocType: Email Account,Always use Account's Name as Sender's Name,ใช้ชื่อบัญชีเป็นชื่อผู้ส่งเสมอ @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,บ้าน DocType: OAuth Provider Settings,Auto,รถยนต์ DocType: System Settings,User can login using Email id or User Name,ผู้ใช้สามารถเข้าสู่ระบบโดยใช้ Email id หรือ User Name DocType: Workflow State,question-sign,คำถามการลงชื่อเข้าใช้ -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ถูกปิดใช้งาน apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ฟิลด์ "เส้นทาง" เป็นสิ่งที่บังคับสำหรับมุมมองเว็บ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},แทรกคอลัมน์ก่อน {0} DocType: Energy Point Rule,The user from this field will be rewarded points,ผู้ใช้จากฟิลด์นี้จะได้รับคะแนนสะสม @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,หากเจ้ DocType: Data Migration Mapping,Push,ดัน apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,วางไฟล์ที่นี่ DocType: OAuth Authorization Code,Expiration time,เวลาหมดอายุ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,เปิดเอกสาร DocType: Web Page,Website Sidebar,แถบด้านข้างเว็บไซต์ DocType: Web Form,Show Sidebar,แสดงแถบด้านข้าง apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,คุณจำเป็นต้องเข้าสู่ระบบเพื่อเข้าถึง {0} @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ทางล DocType: Desktop Icon,Page,หน้า apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},ไม่พบ {0} ใน {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ชื่อและนามสกุลด้วยตัวเองเป็นเรื่องง่ายที่จะคาดเดา +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},เอกสารถูกเปลี่ยนชื่อจาก {0} เป็น {1} apps/frappe/frappe/config/website.py,Knowledge Base,ฐานความรู้ DocType: Workflow State,briefcase,กระเป๋าเอกสาร apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ค่า ไม่สามารถเปลี่ยนแปลงได้ เพื่อ {0} @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,พิมพ์รูปแบบ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,สลับมุมมองตาราง apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ไปที่ระเบียนถัดไป +DocType: System Settings,Time Format,รูปแบบเวลา apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ข้อมูลประจำตัวของช่องทางการชำระเงินที่ไม่ถูกต้อง DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,นี่เป็นไฟล์เทมเพลตที่สร้างขึ้นเฉพาะแถวที่มีข้อผิดพลาดเท่านั้น คุณควรใช้ไฟล์นี้เพื่อแก้ไขและนำเข้า apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,กำหนดสิทธิ์ ใน ประเภท เอกสาร และบทบาท @@ -3396,12 +3512,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,ตอบ apps/frappe/frappe/config/core.py,Pages in Desk (place holders),หน้าโต๊ะ (ผู้ถือสถานที่) DocType: DocField,Collapsible Depends On,พับขึ้นอยู่กับ DocType: Print Style,Print Style Name,พิมพ์ชื่อสไตล์ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,จำเป็นต้องใช้ฟิลด์จัดกลุ่มตามเพื่อสร้างแผนภูมิแดชบอร์ด DocType: Print Settings,Allow page break inside tables,อนุญาตให้แบ่งหน้าภายในตาราง DocType: Email Account,SMTP Server,SMTP เซิร์ฟเวอร์ DocType: Print Format,Print Format Help,พิมพ์รูปแบบความช่วยเหลือ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ห้องต้องมีผู้ใช้เพียงรายเดียว DocType: DocType,Beta,ทดลอง DocType: Dashboard Chart,Count,นับ +DocType: Dashboard Chart,Group By Type,จัดกลุ่มตามประเภท apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},ความคิดเห็นใหม่เมื่อ {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},บูรณะ {0} เป็น {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","หากคุณกำลังปรับปรุงโปรดเลือก ""ทับ"" แถวอื่น ๆ ที่มีอยู่จะไม่ถูกลบ" @@ -3412,8 +3530,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,ประ DocType: Web Form,Web Form,เว็บฟอร์ม apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},วันที่ {0} ต้องอยู่ในรูปแบบ: {1} DocType: About Us Settings,Org History Heading,ประวัติ org หัวเรื่อง +DocType: Scheduled Job Type,Scheduled Job Type,ประเภทงานที่กำหนด DocType: Print Settings,Allow Print for Cancelled,อนุญาตให้พิมพ์สำหรับการยกเลิก DocType: Communication,Integrations can use this field to set email delivery status,Integrations สามารถใช้ข้อมูลนี้ในการตั้งค่าสถานะการส่งอีเมล +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,คุณไม่มีสิทธิ์ในการยกเลิกเอกสารที่เชื่อมโยงทั้งหมด DocType: Web Form,Web Page Link Text,หน้าเว็บลิงค์ข้อความ DocType: Page,System Page,หน้าระบบ DocType: Page,System Page,หน้าระบบ @@ -3421,6 +3541,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},การปรับแต่งสำหรับ <b>{0}</b> ถูกเอ็กซ์พอร์ตไปที่: <br> {1} DocType: Website Settings,Include Search in Top Bar,รวมถึงการค้นหาในบาร์ยอดนิยม +DocType: Scheduled Job Type,Daily Long,ประจำวันยาว DocType: GSuite Settings,Allow GSuite access,อนุญาตให้เข้าถึง GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,การตั้งชื่อ @@ -3524,6 +3645,7 @@ DocType: Notification,Send days before or after the reference date,ส่งว DocType: User,Allow user to login only after this hour (0-24),อนุญาตให้ผู้ใช้เข้าสู่ระบบเท่านั้นหลังจากชั่วโมงนี้ (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",กำหนดลำดับทีละตัว DocType: Integration Request,Subscription Notification,ประกาศการบอกรับเป็นสมาชิก +DocType: Customize Form Field, Allow in Quick Entry ,อนุญาตใน Quick Entry apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,หรือแนบ DocType: Auto Repeat,Start Date,วันที่เริ่มต้น apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,มูลค่า @@ -3538,6 +3660,7 @@ DocType: Google Drive,Backup Folder ID,ID โฟลเดอร์สำรอ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ไม่ได้อยู่ในโหมดนักพัฒนาซอฟต์แวร์! ตั้งอยู่ใน site_config.json หรือทำให้ DocType 'กำหนดเอง' DocType: Workflow State,globe,โลก DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,วีดีโอ DocType: Assignment Rule,Priority,บุริมสิทธิ์ DocType: Email Queue,Unsubscribe Param,ยกเลิกการรับข่าวสาร Param DocType: DocType,Hide Sidebar and Menu,ซ่อนแถบด้านข้างและเมนู @@ -3549,6 +3672,7 @@ DocType: DocType,Allow Import (via Data Import Tool),อนุญาตให้ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,# DocType: DocField,Float,ลอย DocType: Print Settings,Page Settings,การตั้งค่าหน้าเว็บ +DocType: Notification Settings,Notification Settings,การตั้งค่าการแจ้งเตือน apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,ประหยัด... apps/frappe/frappe/www/update-password.html,Invalid Password,รหัสผ่านไม่ถูกต้อง apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,นำเข้า {0} บันทึกจาก {1} สำเร็จแล้ว @@ -3564,6 +3688,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,ภาพหัวจดหมาย DocType: Address,Party GSTIN,พรรค GSTIN +DocType: Scheduled Job Type,Cron Format,รูปแบบ Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} รายงาน DocType: SMS Settings,Use POST,ใช้ POST DocType: Communication,SMS,ข้อความ @@ -3609,18 +3734,20 @@ DocType: Workflow,Allow approval for creator of the document,อนุญาต apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,บันทึกรายงาน DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Arguments +DocType: DocType Action,Server Action,การทำงานของเซิร์ฟเวอร์ apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,ผู้ดูแลระบบเข้าถึง {0} ใน {1} ผ่านอยู่ IP {2} apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,พาเรนต์ฟิลด์ต้องเป็นชื่อฟิลด์ที่ถูกต้อง apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,ล้มเหลวขณะแก้ไขการสมัครรับข้อมูล DocType: LDAP Settings,LDAP Group Field,ฟิลด์กลุ่ม LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,เอกสารการสมัครรับการแจ้งเตือน apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,เท่ากับ apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,รูปแบบ CSV ไม่ถูกต้อง -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","เกิดข้อผิดพลาดในการเชื่อมต่อกับแอปพลิเคชัน QZ Tray ... <br><br> คุณต้องมีแอปพลิเคชัน QZ Tray ติดตั้งและใช้งานเพื่อใช้คุณสมบัติการพิมพ์แบบ Raw <br><br> <a href=""https://qz.io/download/"" target=""_blank"">คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray</a> <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ</a>" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,กำหนดจำนวนของการสำรองข้อมูล DocType: DocField,Do not allow user to change after set the first time,ไม่อนุญาตให้ ผู้ใช้สามารถ เปลี่ยนไปหลังจากที่ ติดตั้ง ครั้งแรก apps/frappe/frappe/utils/data.py,1 year ago,1 ปีที่ผ่านมา +DocType: DocType,Links Section,ส่วนลิงก์ apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",ดูบันทึกของกิจกรรมการพิมพ์ดาวน์โหลดและส่งออกทั้งหมด apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 เดือน DocType: Contact,Contact,ติดต่อ @@ -3647,16 +3774,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,อีเมล์ใหม่ DocType: Custom DocPerm,Export,ส่งออก apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",หากต้องการใช้ Google ปฏิทินให้เปิดใช้งาน {0} +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},รวมถึงการเพิ่มฟิลด์การพึ่งพาสถานะ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},อัปเดตสำเร็จแล้ว {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,ถาด QZ ล้มเหลว: DocType: Dropbox Settings,Dropbox Settings,การตั้งค่า Dropbox DocType: About Us Settings,More content for the bottom of the page.,เนื้อหาเพิ่มเติมสำหรับด้านล่างของหน้า apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,เอกสารนี้ถูกเปลี่ยนกลับ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,การสำรองข้อมูล Google ไดรฟ์สำเร็จ +DocType: Webhook,Naming Series,การตั้งชื่อซีรีส์ DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE ที่เวิร์กโฟลว์นี้ใช้ได้ DocType: User,Enabled,เปิดการใช้งาน apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,การตั้งค่าไม่เสร็จสมบูรณ์ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},ใหม่ {0}: {1} -DocType: Tag Category,Category Name,ชื่อหมวดหมู่ +DocType: Blog Category,Category Name,ชื่อหมวดหมู่ apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,ผู้ปกครองจะต้องได้รับข้อมูลตารางเด็ก apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,นำเข้าสมาชิก DocType: Print Settings,PDF Settings,การตั้งค่ารูปแบบไฟล์ @@ -3692,6 +3822,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,ปฏิทิน apps/frappe/frappe/client.py,No document found for given filters,ไม่พบเอกสารสำหรับตัวกรองที่กำหนด apps/frappe/frappe/config/website.py,A user who posts blogs.,ผู้ใช้ที่โพสต์บล็อก +DocType: DocType Action,DocType Action,การกระทำของ DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",อีก {0} ที่มีชื่อ {1} มีอยู่ ให้เลือกชื่อ อื่น DocType: DocType,Custom?,กำหนดเองได้อย่างไร DocType: Website Settings,Website Theme Image,ธีมเว็บไซต์ภาพ @@ -3701,6 +3832,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},ไม่ apps/frappe/frappe/config/integrations.py,Backup,การสำรองข้อมูล apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ต้องใช้ประเภทเอกสารเพื่อสร้างแผนภูมิแดชบอร์ด DocType: DocField,Read Only,อ่านอย่างเดียว +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,ไม่สามารถสร้างคำสั่ง razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,จดหมายข่าวใหม่ DocType: Energy Point Log,Energy Point Log,บันทึกจุดพลังงาน DocType: Print Settings,Send Print as PDF,ส่งเอกสารพิมพ์เป็นไฟล์ PDF @@ -3726,16 +3858,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ย apps/frappe/frappe/www/login.html,Or login with,หรือเข้าสู่ระบบด้วย DocType: Error Snapshot,Locals,ชาวบ้าน apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},สื่อสารผ่าน {0} ใน {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} พูดถึงคุณในความคิดเห็นที่ {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,เลือกจัดกลุ่มตาม ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,เช่น (55 + 434) / 4 หรือ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,ต้องระบุ {0} DocType: Integration Request,Integration Type,ประเภทบูรณาการ DocType: Newsletter,Send Attachements,ส่งไฟล์แนบ +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,ไม่พบตัวกรอง apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,บูรณาการของ Google Contacts DocType: Transaction Log,Transaction Log,ล็อกธุรกรรม apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),สถิติขึ้นอยู่กับประสิทธิภาพของเดือนที่ผ่านมา (จาก {0} ถึง {1}) DocType: Contact Us Settings,City,เมือง +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,ซ่อนการ์ดสำหรับผู้ใช้ทั้งหมด apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,เปิดใช้งานอนุญาตให้ทำซ้ำอัตโนมัติสำหรับ doctype {0} ในฟอร์มกำหนดเอง DocType: DocField,Perm Level,Perm ระดับ apps/frappe/frappe/www/confirm_workflow_action.html,View document,ดูเอกสาร @@ -3747,6 +3880,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ในการค้นหาทั้งหมด' ไม่อนุญาตให้ใช้กับประเภท {0} ในแถว {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'ในการค้นหาทั้งหมด' ไม่สามารถใช้กับประเภท {0} ในแถว {1} DocType: Energy Point Log,Appreciation,จักษ์ +DocType: Dashboard Chart,Number of Groups,จำนวนกลุ่ม apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,มุมมองรายการ DocType: Workflow,Don't Override Status,อย่าแทนที่สถานะ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,คำที่ต้องการค้นหา @@ -3788,7 +3922,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-ทิศตะวันตกเฉียงเหนือ-1 DocType: Dropbox Settings,Limit Number of DB Backups,จำกัด จำนวนสำรองข้อมูล DB DocType: Custom DocPerm,Level,ชั้น -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 วันล่าสุด DocType: Custom DocPerm,Report,รายงาน apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,จำนวนเงินที่จะต้องมากกว่า 0 apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,เชื่อมต่อกับถาด QZ! @@ -3805,6 +3938,7 @@ DocType: S3 Backup Settings,us-west-2,เราตะวันตก-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,เลือกตารางลูก apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,การดำเนินการหลักของทริกเกอร์ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,เปลี่ยนแปลง +DocType: Social Login Key,User ID Property,คุณสมบัติ ID ผู้ใช้ DocType: Email Domain,domain name,ชื่อโดเมน DocType: Contact Email,Contact Email,ติดต่ออีเมล์ DocType: Kanban Board Column,Order,ใบสั่ง @@ -3827,7 +3961,7 @@ DocType: Contact,Last Name,นามสกุล DocType: Event,Private,ส่วนตัว apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,ไม่มีการแจ้งเตือนสำหรับวันนี้ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ส่งอีเมล์สิ่งที่แนบมาพิมพ์เป็น PDF (แนะนำ) -DocType: Web Page,Left,ซ้าย +DocType: Onboarding Slide Field,Left,ซ้าย DocType: Event,All Day,ทั้งวัน apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,ดูเหมือนว่าสิ่งที่เป็นธรรมกับการกำหนดค่าเกตเวย์การชำระเงินของเว็บไซต์นี้ ไม่มีการชำระเงินได้รับการทำ DocType: GCalendar Settings,State,รัฐ @@ -3859,7 +3993,6 @@ DocType: Workflow State,User,ผู้ใช้งาน DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ชื่อแสดงในหน้าต่างเบราว์เซอร์เป็น "คำนำหน้า - ชื่อ" DocType: Payment Gateway,Gateway Settings,การตั้งค่าเกตเวย์ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ข้อความที่อยู่ในประเภทของเอกสาร -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,เรียกใช้การทดสอบ apps/frappe/frappe/handler.py,Logged Out,ออกจากระบบแล้ว apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,มากกว่า... DocType: System Settings,User can login using Email id or Mobile number,ผู้ใช้สามารถเข้าสู่ระบบโดยใช้ Email id หรือ Mobile number @@ -3876,6 +4009,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,สรุป DocType: Event,Event Participants,ผู้เข้าร่วมกิจกรรม DocType: Auto Repeat,Frequency,ความถี่ +DocType: Onboarding Slide,Slide Order,เลื่อนคำสั่ง DocType: Custom Field,Insert After,ใส่หลังจาก DocType: Event,Sync with Google Calendar,ซิงค์กับ Google Calendar DocType: Access Log,Report Name,ชื่อรายงาน @@ -3903,6 +4037,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},ความกว้าง สูงสุด สำหรับประเภท สกุลเงิน เป็น 100px ในแถว {0} apps/frappe/frappe/config/website.py,Content web page.,หน้าเว็บเนื้อหา apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,เพิ่มบทบาท ใหม่ +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,เยี่ยมชมหน้าเว็บ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ใหม่ที่ได้รับมอบหมาย DocType: Google Contacts,Last Sync On,ซิงค์ล่าสุดเปิด DocType: Deleted Document,Deleted Document,เอกสารที่ถูกลบ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,อ๊ะ! สิ่งที่ผิดพลาด @@ -3913,7 +4049,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ภูมิปร apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,นามสกุลสคริปต์ฝั่งไคลเอนต์ใน Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,บันทึกสำหรับต่อไปนี้ doctypes จะถูกกรอง -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,ไม่ใช้งานตัวกำหนดตารางเวลา +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,ไม่ใช้งานตัวกำหนดตารางเวลา DocType: Blog Settings,Blog Introduction,แนะนำบล็อก DocType: Global Search Settings,Search Priorities,ลำดับความสำคัญของการค้นหา DocType: Address,Office,สำนักงาน @@ -3923,13 +4059,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ลิงค์แผนภ DocType: User,Email Settings,การตั้งค่าอีเมล apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,วางที่นี่ DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",หากเปิดใช้งานผู้ใช้สามารถเข้าสู่ระบบจากที่อยู่ IP ใด ๆ โดยใช้ Two Factor Auth ซึ่งสามารถตั้งค่าสำหรับผู้ใช้ทั้งหมดในการตั้งค่าระบบ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,การตั้งค่าเครื่องพิมพ์ ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,โปรดป้อนรหัสผ่านของคุณเพื่อดำเนินการต่อ apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,โปรดป้อนรหัสผ่านของคุณเพื่อดำเนินการต่อ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,ฉัน apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} สถานะไม่ถูกต้อง apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,นำไปใช้กับเอกสารทุกประเภท -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,อัพเดตจุดพลังงาน +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,อัพเดตจุดพลังงาน +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),เรียกใช้งานเฉพาะรายวันหากไม่ได้ใช้งานสำหรับ (วัน) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',โปรดเลือกวิธีการชำระเงินอีกครั้ง PayPal ไม่สนับสนุนการทำธุรกรรมในสกุลเงิน '{0}' DocType: Chat Message,Room Type,ประเภทห้อง DocType: Data Import Beta,Import Log Preview,นำเข้าบันทึกตัวอย่าง @@ -3938,6 +4074,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok วงกลม DocType: LDAP Settings,LDAP User Creation and Mapping,การสร้างและการแมปผู้ใช้ LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',คุณสามารถค้นหาสิ่งที่โดยขอให้ 'พบส้มของลูกค้า +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,เหตุการณ์วันนี้ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,ขออภัย! ผู้ใช้ควรมีการเข้าถึงที่สมบูรณ์ในการบันทึกของตัวเองของพวกเขา ,Usage Info,ข้อมูลการใช้งาน apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,แสดงแป้นพิมพ์ลัด @@ -3954,6 +4091,7 @@ DocType: DocField,Unique,เป็นเอกลักษณ์ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ได้รับความนิยมเมื่อ {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ความสำเร็จบางส่วน DocType: Email Account,Service,ให้บริการ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้ DocType: File,File Name,ชื่อไฟล์ apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ไม่พบ {0} กับ {0} ({1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3967,6 +4105,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ลง DocType: GCalendar Settings,Enable,การเปิดใช้งาน DocType: Google Maps Settings,Home Address,ที่อยู่บ้าน apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),คุณสามารถอัปโหลดได้ไม่เกิน 5000 บันทึกในครั้งเดียว (อาจจะน้อยกว่าในบางกรณี) +DocType: Report,"output in the form of `data = [columns, result]`",เอาท์พุทในรูปแบบของ `ข้อมูล = [คอลัมน์ผล] ' apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ประเภทเอกสารที่ใช้บังคับ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ตั้งค่ากฎสำหรับการมอบหมายผู้ใช้ apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ไม่ได้รับอนุญาตสำหรับ {0} @@ -3984,7 +4123,6 @@ DocType: Communication,To and CC,ไปและ CC DocType: SMS Settings,Static Parameters,พารามิเตอร์คง DocType: Chat Message,Room,ห้อง apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},การปรับปรุงเพื่อ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,งานพื้นหลังไม่ทำงาน กรุณาติดต่อผู้ดูแลระบบ DocType: Portal Settings,Custom Menu Items,รายการเมนูที่กำหนดเอง apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,รูปภาพทั้งหมดที่แนบมากับสไลด์โชว์เว็บไซต์ควรเป็นแบบสาธารณะ DocType: Workflow State,chevron-right,วีขวา @@ -3999,11 +4137,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,เลือก {0} ค่า DocType: DocType,Allow Auto Repeat,อนุญาตให้ทำซ้ำอัตโนมัติ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ไม่มีค่าที่จะแสดง +DocType: DocType,URL for documentation or help,URL สำหรับเอกสารหรือความช่วยเหลือ DocType: Desktop Icon,_doctype,_ประเภทเอกสาร DocType: Communication,Email Template,เทมเพลตอีเมล apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,อัปเดตบันทึก {0} สำเร็จแล้ว apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ผู้ใช้ {0} ไม่สามารถเข้าถึงประเภทเอกสารผ่านการอนุญาตบทบาทสำหรับเอกสาร {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ทั้งสองเข้าสู่ระบบและรหัสผ่านที่ต้องการ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,ปล่อย\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,กรุณารีเฟรชที่จะได้รับเอกสารล่าสุด DocType: User,Security Settings,การตั้งค่าการรักษาความปลอดภัย apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,เพิ่มคอลัมน์ @@ -4013,6 +4153,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,กรอง Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},กรุณาค้นหาแนบ {0}: {1} DocType: Web Page,Set Meta Tags,ตั้ง Meta Tags +DocType: Email Account,Use SSL for Outgoing,ใช้ SSL สำหรับขาออก 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: S3 Backup Settings,Backup Limit,ขีด จำกัด การสำรองข้อมูล DocType: Dashboard Chart,Line,เส้น @@ -4045,4 +4186,3 @@ DocType: DocField,Ignore User Permissions,ละเว้น สิทธิ์ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,บันทึกเรียบร้อยแล้ว apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,โปรดสอบถามผู้ดูแลระบบเพื่อตรวจสอบการเข้าสู่ระบบขึ้น DocType: Domain Settings,Active Domains,โดเมนที่ใช้งานอยู่ -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,แสดงเข้าสู่ระบบ diff --git a/frappe/translations/tr.csv b/frappe/translations/tr.csv index a33d321a3a..21cc97aa36 100644 --- a/frappe/translations/tr.csv +++ b/frappe/translations/tr.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Bir Tutar alanı seçiniz. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,İçe aktarılan dosya yükleniyor ... DocType: Assignment Rule,Last User,Son kullanıcı -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Yeni bir görev, {0}, {1} tarafından size atanmıştır. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Kaydedilen Oturum Varsayılanları apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Dosyayı Yeniden Yükle DocType: Email Queue,Email Queue records.,E-posta Kuyruk kayıtları. @@ -29,6 +28,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Ağaç DocType: User,User Emails,Kullanıcı e-postalar DocType: User,Username,Kullanıcı adı apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip Al +DocType: Scheduled Job Type,Create Log,Günlük Oluştur apps/frappe/frappe/model/base_document.py,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 @@ -63,6 +63,7 @@ apps/frappe/frappe/model/document.py,Beginning with,ile başlayan apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Veri Alma Şablon apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,An error occurred while setting Session Defaults,Oturum Varsayılanları ayarlanırken bir hata oluştu apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Ana Kalem +apps/frappe/frappe/templates/emails/download_data.html,We have received a request from you to download your {0} data associated with: {1},{1} ile ilişkili {0} verilerinizi indirmeniz için bir istek aldık. 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""" @@ -77,7 +78,7 @@ DocType: Auto Repeat,Monthly,Aylık DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Gelen etkinleştirin apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Tehlike -DocType: Address,Email Address,E-posta Adresi +apps/frappe/frappe/www/login.py,Email Address,E-posta Adresi DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Gönderilen Okunmamış Bildirimi apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,İhracat izin verilmiyor. Vermek {0} rol gerekir. @@ -88,11 +89,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,Alan Yayın mi DocType: GCalendar Settings,GCalendar Settings,GCalendar Ayarları DocType: Email Group,Email Group,E-posta Grubu +apps/frappe/frappe/__init__.py,Only for {},Sadece {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Takvim - {0} Etkinliği Google Takvim’den silinemedi, hata kodu {1}." DocType: Event,Pulled from Google Calendar,Google Takvim’den Çekti DocType: Note,Seen By,Tarafından görüldü apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Birden fazla ekle -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Bazı enerji puanları kazandınız apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Geçerli bir Kullanıcı Resmi değil. DocType: Energy Point Log,Reverted,Geri alındı DocType: Success Action,First Success Message,İlk Başarı Mesajı @@ -100,6 +101,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Gibi değil apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Yanlış değeri: {0} olmalı {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Değişim alan özellikleri (sakla, salt okunur, izin vb)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,takdir etmek +DocType: Notification Settings,Document Share,Belge Paylaşımı DocType: Workflow State,lock,kilitlemek apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,İletişim Sayfası Ayarları apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Yönetici Giriş Yaptı @@ -114,6 +116,7 @@ DocType: DocType,"If enabled, the document is marked as seen, the first time a u DocType: Auto Repeat,Repeat on Day,Günde tekrarlayın DocType: DocField,Color,Renk DocType: DocField,Color,Renk +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Tümünü Okundu Olarak İşaretle DocType: Data Migration Run,Log,Giriş DocType: Workflow State,indent-right,indent-right DocType: Has Role,Has Role,Rol Has @@ -132,6 +135,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Geri İzlemeyi Göster DocType: DocType,Default Print Format,Varsayılan Yazdırma Biçimi DocType: Workflow State,Tags,Etiketler +DocType: Onboarding Slide,Slide Type,Slayt Tipi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hiçbiri: İş Akışı sonu apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{1} içinde {0} eşsiz olarak ayarlanamaz, çünkü bir çok normal değer girilmiş" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Belge Türleri @@ -141,7 +145,6 @@ DocType: Language,Guest,Konuk DocType: DocType,Title Field,Başlık Alan DocType: Error Log,Error Log,hata Günlüğü apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Geçersiz URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Son 7 gün apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" sadece biraz zor "abc" den tahmin gibi tekrarlar DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Bu yetkisiz olduğunu düşünüyorsanız, Yönetici parolasını değiştirin." @@ -163,6 +166,7 @@ DocType: OAuth Authorization Code,Client,Müşteri: apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Sütunu seçin apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Bunu yükledikten sonra Bu form modifiye edilmiştir DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Bildirim Günlüğü 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" 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" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebar'ı açın @@ -174,7 +178,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Gönder apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Gönder DocType: Workflow Action Master,Workflow Action Name,İş Akışı Eylem Adı apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType birleştirilmiş olamaz -DocType: Web Form Field,Fieldtype,FIELDTYPE +DocType: Onboarding Slide Field,Fieldtype,FIELDTYPE apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Değil bir zip dosyası DocType: Global Search DocType,Global Search DocType,Genel Arama Doküman Türü DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -187,7 +191,9 @@ DocType: Newsletter,Email Sent?,Email Gönderildi mi? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Grafik Çal apps/frappe/frappe/desk/form/save.py,Did not cancel,Iptal edilmedi DocType: Social Login Key,Client Information,Müşteri bilgisi +DocType: Energy Point Rule,Apply this rule only once per document,Bu kuralı her belge için yalnızca bir kez uygulayın DocType: Workflow State,plus,artı +DocType: DocField,Read Only Depends On,Salt Okunur apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Misafir veya Yönetici olarak oturum DocType: Email Account,UNSEEN,GÖRÜLMEMESİNİN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Dosya Yöneticisi @@ -211,9 +217,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Nedeni 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Aktivite yok +DocType: Server Script,Script Manager,Senaryo Yöneticisi +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Aktivite yok apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Üçüncü Taraf Uygulamaları apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Bugün Etkinlik Yok apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Kendinize inceleme noktaları veremezsiniz apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,"DocType, seçilen Dok Olayı için Gönderilebilir olmalıdır" DocType: Workflow State,circle-arrow-up,circle-arrow-up @@ -247,6 +255,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} için izin verilmiyor: {1}. Sınırlı alan: {2} 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,You are not allowed to delete a standard Website Theme,Standart bir Web Sitesi Temasını silmek için yeterli izniniz yok. +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},İlk {0} ürününüzü oluşturun DocType: Data Import,Log Details,Günlük Ayrıntıları DocType: Workflow Transition,Example,Örnek DocType: Webhook Header,Webhook Header,Webhook Başlığı @@ -261,8 +270,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Sohbet Arka Planı apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Okundu olarak işaretle apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} güncelleniyor +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Aynı slayt sırasına sahip bir Yeni Slayt <b>{0}</b> zaten var apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Devre Dışı Raporu DocType: Translation,Contributed Translation Doctype Name,Katkıda Bulunan Çeviri Belgesi Adı +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir DocType: PayPal Settings,Redirect To,To yönlendir DocType: Data Migration Mapping,Pull,Çek DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['ReportName'] = {} @@ -277,6 +288,7 @@ DocType: DocShare,Internal record of document shares,Belge hisse İç rekor DocType: Energy Point Settings,Review Levels,Seviyeleri gözden geçir DocType: Workflow State,Comment,Yorum yap DocType: Data Migration Plan,Postprocess Method,Postprocess Yöntemi +DocType: DocType Action,Action Type,Eylem Türü apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fotoğraf çek DocType: Assignment Rule,Round Robin,Yuvarlak Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Onları değiştiren, daha sonra bunları iptal ve Ekleyen belgeleri değiştirebilirsiniz." @@ -290,6 +302,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Farklı kaydet DocType: Comment,Seen,Görülme apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Daha fazla ayrıntı göster +DocType: Server Script,Before Submit,Göndermeden Önce 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,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,Archive,Arşiv @@ -304,10 +317,13 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Erişim Anahtarı apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Özel komut dosyasının add_fetch yapılandırmasında yanlış alan adı <b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Kişinin senkronize edileceği Google Rehber'i seçin. DocType: Web Page,Main Section (HTML),Ana Bölüm (HTML) +DocType: Scheduled Job Type,Annual,Yıllık +DocType: Scheduled Job Type,Annual,Yıllık DocType: Workflow State,headphones,kulaklık apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Şifre gerekli veya Bekleniyor Parola seçmektir DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,örneğin replies@yourcomany.com. Tüm yanıtlar bu kutunuza gelecektir. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL'si +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Sihirbazdaki slaydın sırasını belirler. Slayt gösterilmeyecekse, öncelik 0 olarak ayarlanmalıdır." DocType: Data Migration Run,Current Mapping,Şu Haritalama apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Gerekli geçerli e-posta ve isim apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Tüm ekleri özel yap @@ -331,6 +347,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,İşlem Kuralları apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Önizlemede yalnızca ilk {0} satır gösteriliyor apps/frappe/frappe/core/doctype/report/report.js,Example:,Örneğin: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Kısıtlamalar DocType: Workflow,Defines workflow states and rules for a document.,Bir belge için iş akışı durumları ve kuralları tanımlar. DocType: Workflow State,Filter,filtre apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Daha fazla bilgi için Hata Günlüğünü kontrol edin: {0} @@ -342,6 +359,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,İş apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} çıkış yaptı: {1} DocType: Address,West Bengal,Batı Bengal +DocType: Onboarding Slide,Information,Bilgi apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Gönderilebilir değilse gönderme ataması yapılamaz DocType: Transaction Log,Row Index,Satır Dizini DocType: Social Login Key,Facebook,Facebook @@ -362,7 +380,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,düğme Yardımı DocType: Kanban Board Column,purple,mor DocType: About Us Settings,Team Members,Ekip Üyeleri +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Etkin olmayan siteler için planlanan işleri günde yalnızca bir kez çalıştırır. Varsayılan 0 ise 0 gündür. DocType: Assignment Rule,System Manager,Sistem Yöneticisi +DocType: Scheduled Job Log,Scheduled Job,Zamanlanmış İş DocType: Custom DocPerm,Permissions,İzinler apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Dahili entegrasyon için gevşek Webhooks DocType: Dropbox Settings,Allow Dropbox Access,Dropbox erişimine izin ver @@ -419,6 +439,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Barko DocType: Email Flag Queue,Email Flag Queue,E-posta Bayrak Kuyruğu DocType: Access Log,Columns / Fields,Sütunlar / Alanlar apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Baskı Formatları için Stil Sayfaları +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Gösterge tablosu grafiği oluşturmak için Toplama İşlevi alanı gerekir apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,{0} açık tanımlanamadı. Başka bir şey deneyin. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Bilgileriniz gönderildi apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Kullanıcı {0} silinemez @@ -436,11 +457,12 @@ DocType: Property Setter,Field Name,Alan Adı DocType: Assignment Rule,Assign To Users,Kullanıcılara Atama apps/frappe/frappe/public/js/frappe/utils/utils.js,or,veya apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modül adı ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Devam etmek +DocType: Onboarding Slide,Continue,Devam etmek apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Entegrasyonu devre dışı bırakıldı. DocType: Custom Field,Fieldname,fieldname DocType: Workflow State,certificate,sertifika apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Doğrulanıyor ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1} üzerindeki ödeviniz kaldırıldı apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,İlk veri sütunu boş olmalı. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Tüm Sürümleri göster apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Yorumu Gör @@ -450,12 +472,14 @@ DocType: User,Restrict IP,IP sınırla apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,gösterge paneli apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Şu anda e-posta gönderemiyoruz apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Takvim - Google Takvim’deki {0} etkinliği güncellenemedi, hata kodu {1}." +DocType: Notification Log,Email Content,E-posta İçeriği apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Bir komutu ara veya yazın DocType: Activity Log,Timeline Name,Zaman Çizelgesi Ad apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Yalnızca bir {0} birincil olarak ayarlanabilir. DocType: Email Account,e.g. smtp.gmail.com,Örneğin smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Yeni Kural Ekle DocType: Contact,Sales Master Manager,Satış Master Müdürü +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Uygulamanızın çalışması için JavaScript'i etkinleştirmeniz gerekir. DocType: User Permission,For Value,Değer İçin DocType: Event,Google Calendar ID,Google Takvim Kimliği apps/frappe/frappe/www/complete_signup.html,One Last Step,One Last Step @@ -471,6 +495,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP Orta Ad Alanı apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} içinden {0} içe aktar DocType: GCalendar Account,Allow GCalendar Access,GCalendar Erişime İzin Ver apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} zorunlu bir alandır +DocType: DocType,Documentation Link,Doküman Bağlantısı apps/frappe/frappe/templates/includes/login/login.js,Login token required,Giriş belirteci gerekli apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Aylık Sıra: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Birden fazla liste öğesi seç @@ -493,6 +518,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Dosya URL'si DocType: Version,Table HTML,Tablo HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Abone Ekle +DocType: Notification Log,Energy Point,Enerji Noktası apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Bugün için Gelecek Etkinlikler DocType: Google Calendar,Push to Google Calendar,Google Takvim’e git DocType: Notification Recipient,Email By Document Field,Belge Alana Göre E-Posta @@ -508,7 +534,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Uzakta DocType: Currency,Fraction Units,Kesir Birimleri apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} {1} ile {2} aralığında -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Tamamlandı olarak işaretle DocType: Chat Message,Type,Türü DocType: Chat Message,Type,Türü DocType: Google Settings,OAuth Client ID,OAuth Müşteri Kimliği @@ -516,6 +541,7 @@ DocType: Auto Repeat,Subject,Konu DocType: Auto Repeat,Subject,Konu apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Masaüstüne Geri Dön DocType: Web Form,Amount Based On Field,Alan Bazlı Tutar +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} adlı kullanıcının takip edilen sürümü yok. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Paylaşım için bir kullanıcı zorunludur DocType: DocField,Hidden,gizli DocType: Web Form,Allow Incomplete Forms,Eksik Formlara izin ver @@ -538,6 +564,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,doğrulama için e-postanızı kontrol edin apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Katlama formun sonundaki olamaz DocType: Communication,Bounced,Geri Döndü +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,nın-nin DocType: Deleted Document,Deleted Name,İsim silindi apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Sistemi ve Web Sitesi Kullanıcıları DocType: Workflow Document State,Doc Status,Doc Durum @@ -548,6 +575,7 @@ DocType: Language,Language Code,Dil Kodu DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Not: Varsayılan olarak, başarısız yedeklemeler için e-postalar gönderilir." apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Filtre Ekle apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS aşağıdaki numaralardan gönderilen: {0} +DocType: Notification Settings,Assignments,Ödevler apps/frappe/frappe/utils/data.py,{0} and {1},{0} ve {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Bir konuşma başlat. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Taslak belgeleri yazdırırken her zaman ""Taslak"" başlığını ekle" @@ -556,6 +584,7 @@ DocType: Data Migration Run,Current Mapping Start,Mevcut Eşleme Başlangıcı apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-posta spam olarak işaretlendi DocType: Comment,Website Manager,Web Yöneticisi apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Dosya Yüklemesi kesildi. Lütfen tekrar deneyin. +DocType: Data Import Beta,Show Failed Logs,Başarısız Günlükleri Göster apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Çeviriler apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Taslak veya İptal edilmiş belgeleri seçtiniz apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},"{0} belgesi, {2} tarihinde {1} durumunu yapacak şekilde ayarlandı" @@ -563,7 +592,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Belge sıraya alınmış DocType: GSuite Templates,Destination ID,Hedef Kimliği DocType: Desktop Icon,List,liste DocType: Activity Log,Link Name,bağlantı Adı +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Sen sahipsin \ DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy +DocType: Onboarding Slide,Onboarding Slide,Yeni Slayt apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Geçersiz şifre: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Geçersiz şifre: DocType: Print Settings,Send document web view link in email,E-posta belge web görünümü bağlantısını gönder @@ -630,6 +661,7 @@ DocType: Kanban Board Column,darkgrey,Koyu gri apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Başarılı: {0} için {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Düşürmek +DocType: Dashboard Chart,Aggregate Function Based On,Toplama İşlevi apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Değişikliğin uygulanması için Lütfen bu öğeyi çoğaltın apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Kaydetmek için Enter tuşuna basın. apps/frappe/frappe/utils/pdf.py,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 @@ -643,7 +675,9 @@ DocType: Notification,Days Before,Gün Öncesi apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Günlük Olaylar Aynı Gün'de Bitmelidir. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Düzenle... DocType: Workflow State,volume-down,volume-down +DocType: Onboarding Slide,Help Links,Yardım Bağlantıları apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Bu IP Adresinden erişime izin verilmiyor +DocType: Notification Settings,Enable Email Notifications,E-posta Bildirimlerini Etkinleştir apps/frappe/frappe/desk/reportview.py,No Tags,hiçbir Etiketler DocType: Email Account,Send Notification to,Için Bildirim gönder DocType: DocField,Collapsible,Katlanabilir @@ -673,6 +707,7 @@ DocType: Google Drive,Last Backup On,Son Yedekleme Açık DocType: Customize Form Field,Customize Form Field,Form alanını özelleştirmek DocType: Energy Point Rule,For Document Event,Belge Etkinliği İçin DocType: Website Settings,Chat Room Name,Sohbet Odası Adı +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,değişmemiş DocType: OAuth Client,Grant Type,hibe Tipi apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Hangi belgelerin kullanıcı tarafından okunabilir olduğunu kontrol et. DocType: Deleted Document,Hub Sync ID,Hub Senkronizasyon Kimliği @@ -681,6 +716,7 @@ DocType: Auto Repeat,Quarterly,Üç ayda bir DocType: Auto Repeat,Quarterly,Üç ayda bir apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Her zaman apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} için Geçersiz Belge Durumu DocType: Email Account,Enable Auto Reply,Otomatik Yanıt etkinleştirin apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Görmedim @@ -693,6 +729,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Mesaj DocType: Email Account,Notify if unreplied,Okunmayan eğer bildir apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR Code'u tarayın ve görüntülenen sonuç kodunu girin. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Degradeleri Etkinleştir +DocType: Scheduled Job Type,Hourly Long,Saatlik Uzun DocType: System Settings,Minimum Password Score,Minimum Şifre Puanı DocType: System Settings,Minimum Password Score,Minimum Şifre Puanı DocType: DocType,Fields,Alanlar @@ -701,11 +738,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Ana Tablo apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Yedekleme tamamlandı! apps/frappe/frappe/config/desktop.py,Developer,Geliştirici apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Oluşturuldu +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Etkinleştirmek için aşağıdaki bağlantıdaki talimatları izleyin: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} üst üste {1} URL ve alt öğeleri hem de olamaz apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Aşağıdaki tablolar için en az bir satır olmalıdır: {0} DocType: Print Format,Default Print Language,Varsayılan Baskı Dili apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ataları apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Kök {0} silinemez +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Hatalı günlük yok apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Henüz yorum yok apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Lütfen, SMS Ayarları aracılığıyla bir kimlik doğrulama yöntemi olarak ayarlamadan önce SMS'i kurun." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Gerekli Hem DocType ve Adı @@ -731,6 +770,7 @@ apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menü DocType: DefaultValue,DefaultValue,VarsayılanDeğer DocType: Auto Repeat,Daily,Günlük DocType: Auto Repeat,Daily,Günlük +DocType: Onboarding Slide,Max Count,Maksimum Sayım apps/frappe/frappe/config/users_and_permissions.py,User Roles,Kullanıcı Rolleri DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Mülkiyet Setter standart DOCTYPE veya Saha özelliğini geçersiz kılar apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Güncelleme olamaz: Yanlış / Süresi geçmiş Link. @@ -749,6 +789,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,evsahibi DocType: Data Import Beta,Import File,Önemli dosya +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Şablon Hatası apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Kolon <b>{0}</b> zaten var. DocType: ToDo,High,Yüksek DocType: ToDo,High,Yüksek @@ -768,6 +809,7 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Proje apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Proje DocType: Address,Personal,Kişisel DocType: Address,Personal,Kişisel +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Ham Baskı Ayarları ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Ayrıntılar için https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region adresini ziyaret edin. apps/frappe/frappe/config/settings.py,Bulk Rename,Toplu Rename DocType: Email Queue,Show as cc,cc olarak göster @@ -777,6 +819,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Video çek DocType: Contact Us Settings,Introductory information for the Contact Us Page,İletişim Sayfası için gerekli bilgiler DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,thumbs-down +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Belgeleri iptal etme DocType: User,Send Notifications for Email threads,E-posta konuları için bildirim gönder apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,profesör apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Değil Geliştirici Modu @@ -784,7 +827,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Dosya yedek DocType: DocField,In Global Search,Küresel Ara DocType: System Settings,Brute Force Security,Kaba kuvvet güvenlik DocType: Workflow State,indent-left,indent-left -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Bu dosyayı silmek için riskli: {0}. Sistem Yöneticisi irtibata geçiniz. DocType: Currency,Currency Name,Para Birimi Adı DocType: Currency,Currency Name,Para Birimi Adı @@ -800,12 +842,15 @@ DocType: Energy Point Rule,User Field,Kullanıcı Alanı DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Sil tuşuna basın apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} zaten {1} {2} aboneliğinden çıktı +DocType: Scheduled Job Type,Stopped,Durduruldu +DocType: Scheduled Job Type,Stopped,Durduruldu apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Kaldırılamaz apps/frappe/frappe/desk/like.py,Liked,Beğendim apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Şimdi Gönder apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Şimdi Gönder apps/frappe/frappe/core/doctype/doctype/doctype.py,"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" apps/frappe/frappe/core/doctype/doctype/doctype.py,"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: Server Script,Allow Guest,Konuklara İzin Ver DocType: Report,Query,Sorgu DocType: Customize Form,Sort Order,Sıralama apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'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} @@ -827,11 +872,13 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,İki Faktörlü Kimlik Doğrulama Metodu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,İlk önce ismi ayarlayın ve kaydı kaydedin. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Kayıt +DocType: DocType Link,Link Fieldname,Bağlantı Alan Adı apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Paylaşılan {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Aboneliği Kaldır DocType: View Log,Reference Name,Referans Adı DocType: View Log,Reference Name,Referans Adı apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Kullanıcı Değiştir +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,İlk apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Çevirileri Güncelle DocType: Error Snapshot,Exception,İstisna DocType: Email Account,Use IMAP,Kullanım IMAP @@ -847,6 +894,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Iş akışında devletin geçişi tanımlayan kurallar. DocType: File,Folder,Klasör DocType: Website Route Meta,Website Route Meta,Web Sitesi Rotası Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Yeni Slayt Alanı DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Bülten Müdürü apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Seçenek 1 @@ -873,7 +921,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Iş apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Grafikleri Yapılandırma DocType: User,Last IP,Son IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Lütfen e-postanıza bir konu ekleyin -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,yeni bir belge {0} tarafından sizinle paylaşıldı {1}. DocType: Data Migration Connector,Data Migration Connector,Veri Taşıma Bağlayıcısı apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} {1} geri döndü DocType: Email Account,Track Email Status,E-posta Durumunu İzle @@ -928,6 +975,7 @@ DocType: Email Account,Default Outgoing,Standart Giden DocType: Workflow State,play,oynamak apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Kaydınızı tamamlayıp yeni bir şifre ayarlamak için aşağıdaki linke tıklayın apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Eklemek vermedi +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} {2} {3} için {1} puan kazandı apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,E-posta Hesabı Atanan DocType: S3 Backup Settings,eu-west-2,ab-batı-2 DocType: Contact Us Settings,Contact Us Settings,Bize Ulaşın ayarları @@ -936,6 +984,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Arama ... DocType: Workflow State,text-width,text-width apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Bu kayıt için maksimum Ek Sınırı ulaştı. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Dosya adına veya uzantıya göre ara +DocType: Onboarding Slide,Slide Title,Slayt Başlığı DocType: Notification,View Properties (via Customize Form),(Özelleştir Formu aracılığıyla) Görünüm Özellikleri apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Seçmek için bir dosyaya tıklayın. DocType: Note Seen By,Note Seen By,By Görülme Not @@ -962,6 +1011,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL paylaş DocType: System Settings,Allow Consecutive Login Attempts ,Ardışık Giriş Denemelerine İzin Ver apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Ödeme işlemi sırasında bir hata oluştu. Lütfen bizimle iletişime geçin. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Slayt Türü Oluştur veya Ayarlar ise, slayt tamamlandıktan sonra yürütülecek olan {ref_doctype} .py dosyasında bir 'create_onboarding_docs' yöntemi olmalıdır." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} gün önce DocType: Email Account,Awaiting Password,Şifre bekleniyor DocType: Address,Address Line 1,Adres Satırı 1 @@ -970,7 +1020,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Toru DocType: Contact,Company Name,Firma Adı DocType: Contact,Company Name,Firma Adı DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Ayarlar ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,tarayıcına apps/frappe/frappe/utils/data.py,Cent,Sent ,Recorder,Ses kayıt cihazı @@ -1030,6 +1079,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","E-postanız alıcı tarafından açılmışsa izleyin. <br> Not: Birden fazla alıcıya gönderiyorsanız, 1 alıcı e-postayı okuyor olsa bile, "Açıldı" sayılır." apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Gerekli Eksik Değerler apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google Kişiler Erişimine İzin Ver +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Kısıtlı DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Okunmamış olarak işaretle DocType: Activity Log,Operation,Operasyon @@ -1083,6 +1133,7 @@ DocType: Web Form,Allow Print,Yazdırmaya izin ver DocType: Communication,Clicked,Tıklandı apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Takip etmekten vazgeç apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Izniniz yok '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabını ayarlayın apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,göndermek için planlanmış DocType: DocType,Track Seen,Görüldüğünü takip et DocType: Dropbox Settings,File Backup,Dosya Yedekleme @@ -1091,12 +1142,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Gösterilecek apps/frappe/frappe/config/customization.py,Add custom forms.,Özelleştirilmiş formlar ekle apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} içinde {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,Bu belgeyi ibraz -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Sistem birçok önceden tanımlı roller sağlar. Sen ince izinlerini ayarlamak için yeni roller ekleyebilir. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Tetikleyici Adı -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Çalışma Alanları +DocType: Onboarding Slide,Domains,Çalışma Alanları DocType: Blog Category,Blog Category,Blog Kategorisi apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,Haritalanamaz çünkü belirtilen durumlarda hata var. DocType: Role Permission for Page and Report,Roles HTML,Roller HTML @@ -1143,7 +1193,6 @@ DocType: User,Represents a User in the system.,Sistemde bir kullanıcı temsil e DocType: List View Setting,Disable Auto Refresh,Otomatik Yenilemeyi Devre Dışı Bırak DocType: Comment,Label,Etiket DocType: Comment,Label,Etiket -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Görev {0}, {1}, kapatıldı atanan söyledi." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Lütfen bu pencereyi kapatın DocType: Print Format,Print Format Type,Baskı Format Tipi DocType: Newsletter,A Lead with this Email Address should exist,Bu e-posta adresiyle bir Müşteri Adayı bulunmalıdır @@ -1160,6 +1209,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Giden e-postalar için apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,Birini seçin DocType: Data Export,Filter List,Filtre Listesi DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,SS: dd DocType: Email Account,Auto Reply Message,Otomatik Cevap Mesajı DocType: Data Migration Mapping,Condition,Koşul apps/frappe/frappe/utils/data.py,{0} hours ago,{0} saat önce @@ -1178,12 +1228,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Bilgi Bankası Katılımcı DocType: Communication,Sent Read Receipt,Gönderilen okundu bilgisi DocType: Email Queue,Unsubscribe Method,Aboneliği iptal Yöntemi +DocType: Onboarding Slide,Add More Button,Daha Fazla Düğme Ekle DocType: GSuite Templates,Related DocType,İlgili Doküman Türü apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Içerik eklemek için düzenleyin apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,seç Diller apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Kart detayları apps/frappe/frappe/__init__.py,No permission for {0},No izni {0} DocType: DocType,Advanced,Gelişmiş +DocType: Onboarding Slide,Slide Image Source,Slayt Görüntü Kaynağı apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Referans: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Bayan @@ -1200,6 +1252,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Ana Kaynak DocType: DocType,User Cannot Create,Kullanıcı oluşturulamıyor apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Başarıyla tamamlandı apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox erişimi onaylandı! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,{0} ile {1} birleştirmek istediğinizden emin misiniz? DocType: Customize Form,Enter Form Type,Form Türü Girin DocType: Google Drive,Authorize Google Drive Access,Google Drive Erişimine Yetki Ver apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Kanban Board Name eksik parametre @@ -1209,7 +1262,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Izin DocType, DocType. Dikkat et!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Baskı, E-posta için Özelleştirilmiş Biçimleri" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} toplamı -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Yeni sürüme güncellendi DocType: Custom Field,Depends On,Bağlıdır DocType: Kanban Board Column,Green,Yeşil DocType: Custom DocPerm,Additional Permissions,Ek İzinler @@ -1237,6 +1289,7 @@ DocType: Energy Point Log,Social,Sosyal apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Takvim - {0}, hata kodu {1} için Takvim oluşturulamadı." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Düzenleme Satır DocType: Workflow Action Master,Workflow Action Master,İş Akışı Eylem Usta +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Hepsini sil DocType: Custom Field,Field Type,Alan Türü apps/frappe/frappe/utils/data.py,only.,Yalnız DocType: Route History,Route History,Rota Geçmişi @@ -1276,11 +1329,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Parolanızı mı unuttunuz? DocType: System Settings,yyyy-mm-dd,yyyy-aa-gg apps/frappe/frappe/desk/report/todo/todo.py,ID,İD apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server hatası +DocType: Server Script,After Delete,Sildikten Sonra apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Geçmiş tüm raporlara bakın. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Giriş Kimliği gerekli DocType: Website Slideshow,Website Slideshow,Web Sitesi Slayt apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Hiçbir veri DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Bu web sitesi ana sayfası bağlantı. Standart Linkler (indeks, giriş, ürünleri, blog, hakkında, iletişim)" +DocType: Server Script,After Submit,Gönderdikten Sonra apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},E-posta Hesabı {0} gelen e-postaları alırken kimlik doğrulama başarısız oldu. Sunucudan mesaj: {1} DocType: User,Banner Image,Banner Resmi DocType: Custom Field,Custom Field,Özel Alan @@ -1322,7 +1377,6 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Eğer bir kullanıcı için herhangi bir Rol seçildiyse, kullanıcı ""Sistem Kullanıcısı"" olur. ""Sistem Kullanıcısı"" masaüstüne erişim hakkına sahiptir." DocType: System Settings,Date and Number Format,Tarih ve Sayı Biçimi apps/frappe/frappe/model/document.py,one of,Bir -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,bir an denetleniyor apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Etiketleri Göster DocType: DocField,HTML Editor,HTML Editör @@ -1330,8 +1384,7 @@ DocType: System Settings,"If Apply Strict User Permission is checked and User Pe DocType: Address,Billing,Faturalama DocType: Address,Billing,Faturalama DocType: Email Queue,Not Sent,Gönderilen Değil -DocType: Web Form,Actions,Eylemler -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı +DocType: DocType,Actions,Eylemler DocType: Workflow State,align-justify,İki Yana Yasla DocType: User,Middle Name (Optional),İkinci ad (İsteğe bağlı) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,İzin Değil @@ -1346,6 +1399,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,No Sonuçla DocType: System Settings,Security,Güvenlik apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} gönderilmek üzere programlandı apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kesmek +DocType: Server Script,After Save,Kaydettikten Sonra apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},yeniden adlandırıldı {0} ile {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} / {0} ({2} çocuklu satır) DocType: Currency,**Currency** Master,** Para ** Ana @@ -1373,16 +1427,19 @@ DocType: Prepared Report,Filter Values,Filtre Değerleri DocType: Communication,User Tags,Kullanıcı Etiketleri DocType: Data Migration Run,Fail,Başarısız DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,Son Yürütme DocType: Data Migration Run,Pull Failed,Çekin Başarısız Oldu apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Kartları Göster / Gizle DocType: Communication,Feedback Request,Geri Bildirim İsteği apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / Excel dosyalarından Veri Aktar. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Aşağıdaki alanlar eksik: +DocType: Notification Log,From User,Kullanıcıdan apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} iptal ediliyor DocType: Web Page,Main Section,Ana Bölüm DocType: Page,Icon,ikon apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","İpucu: Parolaya semboller, sayılar ve büyük harfler ekleyin" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","İpucu: Parolaya semboller, sayılar ve büyük harfler ekleyin" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Bahsedilenler, ödevler, enerji noktaları ve daha fazlası için bildirimleri yapılandırın." DocType: DocField,Allow in Quick Entry,Hızlı Giriş'e İzin Ver apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,gg / aa / yyyy @@ -1417,7 +1474,6 @@ DocType: Website Theme,Theme URL,Tema URL'si DocType: Customize Form,Sort Field,Sıralama Alanı DocType: Razorpay Settings,Razorpay Settings,Razorpay Ayarları apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Düzen Filtre -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Daha fazla ekle DocType: System Settings,Session Expiry Mobile,Oturum Vade Mobil apps/frappe/frappe/utils/password.py,Incorrect User or Password,Yanlış Kullanıcı veya Şifre apps/frappe/frappe/templates/includes/search_box.html,Search results for,için arama sonuçları @@ -1435,8 +1491,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Enerji Noktası Kuralı DocType: Communication,Delayed,Gecikmiş apps/frappe/frappe/config/settings.py,List of backups available for download,İndirilebilir yedeklerin listesi +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Yeni Veri İçe Aktarmayı deneyin apps/frappe/frappe/www/login.html,Sign up,Kaydol apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Satır {0}: Standart alanlar için zorunlu kılınmasına izin verilmiyor +DocType: Webhook,Enable Security,Güvenliği Etkinleştir apps/frappe/frappe/config/customization.py,Dashboards,Gösterge tabloları DocType: Test Runner,Output,Çıktı DocType: Milestone,Track Field,Parça alanı @@ -1444,6 +1502,7 @@ DocType: Notification,Set Property After Alert,Uyarının Ardından Mülkü Ayar apps/frappe/frappe/config/customization.py,Add fields to forms.,Formlara ekstra alan ekleme. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Yorum ekle +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} size yeni bir görev {1} {2} verdi apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Yazı Tipi Boyutu (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Özelleştir Formundan yalnızca standart DocTypes özelleştirilebilir. DocType: Email Account,Sendgrid,Sendgrid @@ -1455,8 +1514,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menü Maddesi apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Filtreleri Ayarla DocType: Contact Us Settings,Email ID,E-posta kimliği DocType: Energy Point Rule,Multiplier Field,Çarpan Alanı +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay siparişi oluşturulamadı. Lütfen Yönetici ile iletişime geçin DocType: Dashboard Chart,Time Interval,Zaman aralığı DocType: Activity Log,Keep track of all update feeds,Tüm güncelleme akışlarını takip et +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} sizinle bir doküman paylaştı {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Müşteri App kullanıcı izin verdiği sonra erişimi olacak kaynakların listesi. <br> örneğin, proje" DocType: Translation,Translated Text,Çeviri Metin DocType: Contact Us Settings,Query Options,Sorgu Seçenekleri @@ -1477,6 +1538,7 @@ DocType: Address,Contacts,Kişiler DocType: System Settings,Setup Complete,Kurulum Tamamlandı DocType: System Settings,Setup Complete,Kurulum Tamamlandı apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Tüm belge hisselerinin Raporu +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","İçe aktarma şablonu .csv, .xlsx veya .xls türünde olmalıdır" apps/frappe/frappe/www/update-password.html,New Password,Yeni Şifre apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtre {0} eksik apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Üzgünüm! Sen otomatik olarak oluşturulan yorumlarınızı silemezsiniz @@ -1492,6 +1554,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,koş DocType: Blog Post,Content (HTML),İçerik (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Için kurulum DocType: Personal Data Download Request,User Name,Kullanıcı adı DocType: Workflow State,minus-sign,minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Bulunamadı @@ -1499,13 +1562,13 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0} izni yok apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,İhracat Özel İzinler apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Hiç bir öğe bulunamadı. DocType: Data Export,Fields Multicheck,Alanlar Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Tamamlayınız DocType: Activity Log,Login,Giriş DocType: Activity Log,Login,Giriş DocType: Web Form,Payments,Ödemeler DocType: Web Form,Payments,Ödemeler apps/frappe/frappe/www/qrcode.html,Hi {0},Merhaba {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive Entegrasyonu. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} puanlarınızı {1} {2} için geri aldı DocType: System Settings,Enable Scheduled Jobs,Tarifeli İşler etkinleştirin apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notlar: apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Notlar: @@ -1532,6 +1595,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Ortak apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,İzin Hatası apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} adı olamaz {1} DocType: User Permission,Applicable For,İçin uygulanabilir +DocType: Dashboard Chart,From Date,Tarihinden itibaren apps/frappe/frappe/core/doctype/version/version_view.html,Success,Başarı apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Oturum süresi doldu DocType: Kanban Board Column,Kanban Board Column,Kanban Kurulu Sütun @@ -1543,7 +1607,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ba apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Durumda izin verilmiyor DocType: Async Task,Async Task,Zaman uyumsuz Görev DocType: Workflow State,picture,resim -apps/frappe/frappe/www/complete_signup.html,Complete,Komple +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Komple DocType: DocType,Image Field,Resim Alanı DocType: Print Format,Custom HTML Help,Özel HTML Yardımı DocType: LDAP Settings,Default Role on Creation,Yaratılışta Varsayılan Rol @@ -1551,6 +1615,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Next State DocType: User,Block Modules,Modülleri Engelle DocType: Print Format,Custom CSS,Özel CSS +DocType: Energy Point Rule,Apply Only Once,Sadece Bir Kez Başvur apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Yorum ekle DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Yok Sayılan: {0} için {1} @@ -1563,6 +1628,7 @@ DocType: Email Account,Default Incoming,Standart Gelen DocType: Workflow State,repeat,tekrarlamak DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},"Değer, {0} 'dan biri olmalı" +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Tüm Belgeleri İptal Et 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} Listeye Git apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Arama Yardımı @@ -1571,6 +1637,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Tescil edil apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Bu belge için Otomatik Tekrarlama devre dışı bırakıldı. DocType: DocType,Hide Copy,Kopya gizle apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Tüm rolleri temizleyin +DocType: Server Script,Before Save,Kaydetmeden Önce apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} benzersiz olmalıdır apps/frappe/frappe/model/base_document.py,Row,Satır apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC ve E-posta Şablonu" @@ -1581,7 +1648,6 @@ DocType: Chat Profile,Offline,Çevrimdışı apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Başarıyla içe aktarıldı {0} DocType: User,API Key,API Anahtarı DocType: Email Account,Send unsubscribe message in email,e-postadaki aboneliği iptal mesaj gönder -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Düzenle Başlık apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Bu linki alan için DocType olacaktır fieldname. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Size ve sizin tarafınızdan atanmış belgeler. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Bunu kopyalayıp yapıştırabilirsiniz. @@ -1614,8 +1680,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Görüntü Ekleyin DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Şifre Güncelleme +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Girişinizi doğrulamak için gereken adımlar apps/frappe/frappe/utils/password.py,Password not found,Şifre bulunamadı +DocType: Webhook,Webhook Secret,Webhook Sırrı DocType: Data Migration Mapping,Page Length,Sayfa Uzunluğu DocType: Email Queue,Expose Recipients,Alıcılar Açığa apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Için Gelen postalar için zorunludur Append @@ -1647,6 +1715,7 @@ DocType: DocType,System,Sistem DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),(MB) Maksimum Ek Boyutu apps/frappe/frappe/www/login.html,Have an account? Login,Hesabın var mı? Oturum aç +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Yazdırma Ayarları ... DocType: Workflow State,arrow-down,aşağı-yön apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} satırı apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Kullanıcıya silme izni verilmedi {0}: {1} @@ -1668,6 +1737,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Şifreniz DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Erişimi Gizli DocType: Tag Link,Document Title,Belge başlığı apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Zorunlu) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce DocType: Social Login Key,Social Login Provider,Sosyal Giriş Sağlayıcısı apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Bir yorum daha ekle apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Dosyada veri bulunamadı. Lütfen yeni dosyayı veri ile yeniden bağlayın. @@ -1682,11 +1752,12 @@ DocType: Workflow State,hand-down,hand-down apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Kanban sütunu olarak kullanılabilecek alan bulunamadı. "Seç" tipi bir Özel Alan eklemek için Özelleştir Formunu kullanın. DocType: Address,GST State,GST Durumu apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Gönderilmeden iptal edilemez +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Kullanıcı ({0}) DocType: Website Theme,Theme,Tema DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI Kimlik Doğrulama Kodu için Bound REDIRECT_PATH apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Yardım'ı aç DocType: DocType,Is Submittable,Submittable mi -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Yeni Anma +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Yeni Anma apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Yeni Google Kişisi senkronize edilmedi. DocType: File,Uploaded To Google Drive,Google Drive'a Yüklendi apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,"Bir kontrol alanı için değer 0 ya da 1 olabilir, ya da" @@ -1698,7 +1769,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Gelen Kutusu DocType: Kanban Board Column,Red,Kırmızı DocType: Workflow State,Tag,Etiket -DocType: Custom Script,Script,Script +DocType: Report,Script,Script apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Doküman kaydedilemiyor. DocType: Energy Point Rule,Maximum Points,Maksimum Puan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Ayarlarım @@ -1730,9 +1801,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{1} {2} için {0} takdir puanları apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roller kendi Kullanıcı sayfasından kullanıcılar için ayarlanabilir. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Yorum Ekle +DocType: Dashboard Chart,Select Date Range,Tarih Aralığı Seçin DocType: DocField,Mandatory,Zorunlu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modül İhracat +DocType: Scheduled Job Type,Monthly Long,Aylık Uzun apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Temel kurallar ayarlanmamış +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Buraya bağlamak için {0} adresine e-posta gönderin apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",Arasında Gönder İptal Amend Anlamı apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Yapılacaklar @@ -1741,7 +1815,6 @@ DocType: Milestone Tracker,Track milestones for any document,Herhangi bir belge DocType: Social Login Key,Identity Details,Kimlik Ayrıntıları apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},İş Akışı Durumu geçişine {0} - {1} arasında izin verilmiyor apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Gösterge Tablosunu Göster -apps/frappe/frappe/desk/form/assign_to.py,New Message,Yeni Mesaj DocType: File,Preview HTML,Önizleme HTML DocType: Desktop Icon,query-report,Sorgu raporu DocType: Data Import Beta,Template Warnings,Şablon Uyarıları @@ -1752,12 +1825,14 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Ile Bağlant apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Otomatik E-posta Rapor Ayarlarını Düzenle DocType: Chat Room,Message Count,Mesaj Sayısı DocType: Workflow State,book,kitap +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} şu gönderilen belgelerle bağlantılıdır: {2} DocType: Communication,Read by Recipient,Alıcıya Göre Oku DocType: Website Settings,Landing Page,Açılış Sayfası apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Özel Script Hatası apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Ad apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No Permissions set for this criteria. DocType: Auto Email Report,Auto Email Report,Otomatik E-posta Raporu +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Paylaşılan Yeni Belge apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Yorum silinsin mi? DocType: Address Template,This format is used if country specific format is not found,Ülkeye özgü format bulunamazsa bu format kullanılır DocType: System Settings,Allow Login using Mobile Number,Mobil Numarayı Kullanarak Girişe İzin Ver @@ -1765,6 +1840,7 @@ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permission DocType: Custom Field,Custom,Özel DocType: Custom Field,Custom,Özel DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Etkinleştirilmişse, Kısıtlı IP Adresi'nden giriş yapan kullanıcılar, İki Faktör Auth için istenmez" +DocType: Server Script,After Cancel,İptal Sonrası DocType: Auto Repeat,Get Contacts,Kişileri Al apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Filed under Mesajlar {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Adsız Sütunu Atla @@ -1775,6 +1851,7 @@ DocType: User,Login After,Sonra yap DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Baskı DocType: Workflow State,thumbs-up,thumbs-up +DocType: Notification Log,Mention,Anma DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Fontlar apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Hassas 1 ile 6 arasında olmalıdır @@ -1783,7 +1860,7 @@ apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ve apps/frappe/frappe/public/js/frappe/utils/utils.js,and,ve apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Bu rapor {0} tarihinde oluşturuldu DocType: Error Snapshot,Frames,Çerçeveler -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,atama +DocType: Notification Log,Assignment,atama DocType: Notification,Slack Channel,Slack Kanal DocType: About Us Team Member,Image Link,Resim Bağlantısı DocType: Auto Email Report,Report Filters,Rapor Filtreler @@ -1800,7 +1877,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Etkinlik güncellenemedi apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,"Doğrulama kodu, kayıtlı e-posta adresinize gönderildi." apps/frappe/frappe/core/doctype/user/user.py,Throttled,throttled +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Senin hedefin apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtrenin 4 değeri olmalıdır (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},{0} için Ad Belirtilmedi apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Atama Kuralını Uygula apps/frappe/frappe/utils/bot.py,show,göstermek apps/frappe/frappe/utils/data.py,Invalid field name {0},Geçersiz alan adı {0} @@ -1810,7 +1889,6 @@ DocType: Workflow State,text-height,text-height DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Veri Taşıma Planı Eşleme apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappe başlıyor ... DocType: Web Form Field,Max Length,Maksimum uzunluk -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} için DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,harita işaretleyici apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Bir Sorun Gönder @@ -1847,6 +1925,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Sayfa yok ya da taşınmı apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,yorumlar DocType: DocType,Route,Rota apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay Ödeme geçidi ayarları +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} {2} {3} için {1} puan kazandı apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Ekli görüntüleri dokümandan getir DocType: Chat Room,Name,İsim DocType: Contact Us Settings,Skype,Skype @@ -1857,7 +1936,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Açık Bağl apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Dil DocType: Dashboard Chart,Average,Ortalama apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Satır ekle -DocType: Tag Category,Doctypes,belgetürleri apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Yazıcı apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Sorgu bir SELECT olmalı DocType: Auto Repeat,Completed,Tamamlandı @@ -1918,6 +1996,7 @@ DocType: GCalendar Account,Next Sync Token,Sonraki Senkronizasyon Jetonu DocType: Energy Point Settings,Energy Point Settings,Enerji Noktası Ayarları DocType: Async Task,Succeeded,Başarılı apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Gerekli zorunlu alanlar {0} +DocType: Onboarding Slide Field,Align,Hizala apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} için İzinlerini Sıfırla? apps/frappe/frappe/config/desktop.py,Users and Permissions,Kullanıcılar ve İzinler DocType: S3 Backup Settings,S3 Backup Settings,S3 Yedekleme Ayarları @@ -1934,7 +2013,9 @@ DocType: DocType,ASC,Azalan apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Yeni Baskı Biçimi Adı apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,İsteği onaylamak için aşağıdaki linke tıklayın DocType: Workflow State,align-left,sola-hizala +DocType: Onboarding Slide,Action Settings,Eylem Ayarları DocType: User,Defaults,Standart Değerler +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Karşılaştırma için> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)." DocType: Energy Point Log,Revert Of,Geri Dön apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mevcut Birleştirme DocType: User,Birth Date,Doğum tarihi @@ -1992,6 +2073,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,IN DocType: Notification,Value Change,Değer Değiştirme DocType: Google Contacts,Authorize Google Contacts Access,Google Kişiler Erişimine Yetki Ver apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Yalnızca Rapor'dan sayısal alanlar gösteriliyor +apps/frappe/frappe/utils/data.py,1 week ago,1 hafta önce DocType: Data Import Beta,Import Type,İthalat türü DocType: Access Log,HTML Page,HTML Sayfası DocType: Address,Subsidiary,Yardımcı @@ -2003,7 +2085,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Antetli ile apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Geçersiz Giden Posta Sunucusu veya Liman DocType: Custom DocPerm,Write,Yazmak -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Sadece Administrator Sorgu / Script Raporlar oluşturmak için izin apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Güncelleniyor DocType: Data Import Beta,Preview,Önizleme DocType: Data Import Beta,Preview,Önizleme @@ -2014,6 +2095,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Kullanıc DocType: Data Migration Run,Started,Başlatılan apps/frappe/frappe/permissions.py,User {0} does not have access to this document,{0} kullanıcısı bu dokümana erişemiyor DocType: Data Migration Run,End Time,Bitiş Zamanı +DocType: Dashboard Chart,Group By Based On,Göre Grupla apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Ekleri seç apps/frappe/frappe/model/naming.py, for {0},{0} için apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Bu belgeyi yazdırma izniniz yok @@ -2060,6 +2142,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Doğrulama DocType: Workflow Document State,Update Field,Alanı güncelle DocType: Chat Profile,Enable Chat,Sohbeti etkinleştir DocType: LDAP Settings,Base Distinguished Name (DN),Taban Ayırt Edici Ad (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Bu konuşmayı bırakın apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Seçenekleri link alanına ayarlı değil {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Sıra / İşçi @@ -2132,13 +2215,13 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Oturum şu anda izin verilmiyor DocType: Data Migration Run,Current Mapping Action,Şu Haritalama İşlemi DocType: Dashboard Chart Source,Source Name,kaynak Adı -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kullanıcı ile ilişkilendirilmiş e-posta hesabı yok. Lütfen Kullanıcı> E-posta Gelen Kutusu altında bir hesap ekleyin. DocType: Email Account,Email Sync Option,E-posta Eşitleme Seçeneği apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Sıra No DocType: Async Task,Runtime,Süre DocType: Post,Is Pinned,Sabitlendi DocType: Contact Us Settings,Introduction,Giriş DocType: Contact Us Settings,Introduction,Giriş +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Yardıma mı ihtiyacınız var? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Global Olarak Pinle apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Bunu takiben DocType: LDAP Settings,LDAP Email Field,LDAP E-posta Alan @@ -2149,7 +2232,6 @@ DocType: User Email,Enable Outgoing,Giden etkinleştirin DocType: Address,Fax,Faks DocType: Address,Fax,Faks apps/frappe/frappe/config/customization.py,Custom Tags,özel Etiketler -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı ayarlanmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun. DocType: Comment,Submitted,Tanzim Edildi DocType: Comment,Submitted,Tanzim Edildi DocType: Contact,Pulled from Google Contacts,Google Kişilerden Alındı @@ -2171,10 +2253,11 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Ana Sayfa apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Bana Ata DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Menü ve Kenar Çubuğundaki ek kısayolları tetiklemek için Alt Tuşuna basın. +DocType: Dashboard Chart,To Date,Tarihine kadar DocType: List View Setting,List View Setting,Liste Görünümü Ayarı apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Göster başarısız işler -DocType: Event,Details,Ayrıntılar -DocType: Event,Details,Ayrıntılar +DocType: Scheduled Job Log,Details,Ayrıntılar +DocType: Scheduled Job Log,Details,Ayrıntılar DocType: Property Setter,DocType or Field,DocType veya Alan apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Bu belgeyi takip ettin apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Ana renk @@ -2183,7 +2266,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Yayınlanabilir Anahtar veya Gizli Anahtar yanlış görünüyor! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Yayınlanabilir Anahtar veya Gizli Anahtar yanlış görünüyor! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,İzinlerini Ayarlama için Hızlı Yardım -DocType: Tag Doc Category,Doctype to Assign Tags,Etiketler atama Doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Göster Relapslar apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-posta çöp kutusuna taşındı DocType: Report,Report Builder,Rapor Oluşturucu @@ -2200,6 +2282,7 @@ DocType: User Permission,Advanced Control,Gelişmiş Kontrol DocType: System Settings,Date Format,Tarih Biçimi DocType: System Settings,Date Format,Tarih Biçimi apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Yayınlandı değil +apps/frappe/frappe/contacts/doctype/address/address.py,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> Baskı ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","İş akışı için eylemler (örneğin İptal, Onayla)." DocType: Data Import,Skip rows with errors,Hatalı satırları atlar DocType: Workflow State,flag,bayrak @@ -2209,7 +2292,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Belg apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Alana atla DocType: Contact Us Settings,Forward To Email Address,İleri E-posta Adresi DocType: Contact Phone,Is Primary Phone,Birincil Telefon mu -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Buraya bağlamak için {0} adresine bir e-posta gönderin. DocType: Auto Email Report,Weekdays,Hafta içi apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} kayıtlar dışa aktarılacak apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Başlık alanı geçerli bir fieldname olmalı @@ -2217,7 +2299,7 @@ DocType: Post Comment,Post Comment,Yorum Gönder apps/frappe/frappe/config/core.py,Documents,Belgeler apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Faaliyet Günlüğü DocType: Social Login Key,Custom Base URL,Özel Ana URL -DocType: Email Flag Queue,Is Completed,Tamamlandı +DocType: Onboarding Slide,Is Completed,Tamamlandı apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Alanları Al apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Profili Düzenle DocType: Kanban Board Column,Archived,Arşivlenen @@ -2228,12 +2310,13 @@ 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" DocType: Social Login Key,Office 365,Ofis 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Bugün -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Bugün +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Bugün +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Bugün apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,İçe Aktardıktan Sonra Gönder DocType: Error Log,Log of Scheduler Errors,Zamanlayıcı Hatalar Giriş DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Yeni Slayt Yardım Bağlantısı DocType: OAuth Client,App Client Secret,Uygulama Müşteri Sırrı apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Tanzim Ediliyor apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Ebeveyn, verinin ekleneceği belgenin adıdır." @@ -2241,7 +2324,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,BÜYÜK HARF apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Özel HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Klasör adını girin -apps/frappe/frappe/contacts/doctype/address/address.py,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 Markalama> Adres Şablonu'ndan yeni bir tane oluşturun. apps/frappe/frappe/auth.py,Unknown User,Bilinmeyen kullanıcı apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Rol Seçin DocType: Comment,Deleted,Silinen @@ -2257,7 +2339,7 @@ DocType: Chat Token,Chat Token,Sohbet Simgesi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Grafik Oluştur apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Alma -DocType: Web Page,Center,Merkez +DocType: Onboarding Slide Field,Center,Merkez DocType: Notification,Value To Be Set,Ayarlanacak Değer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} düzenle apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,İlk seviye @@ -2265,7 +2347,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Veri tabanı ismi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Yenile Formu DocType: DocField,Select,Seç -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Tam Günlüğü Görüntüle +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Tam Günlüğü Görüntüle DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Basit Python İfadesi, Örnek: status == 'Aç' ve == 'Hata' yazın" apps/frappe/frappe/utils/csvutils.py,File not attached,Dosya bağlı değil apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Bağlantı koptu. Bazı özellikler çalışmayabilir. @@ -2297,6 +2379,7 @@ DocType: Web Page,HTML for header section. Optional,Başlık bölüm için HTML. apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Bu özellik hala yepyeni ve deneysel apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Maksimum {0} satıra izin verildi DocType: Dashboard Chart Link,Chart,Grafik +DocType: Scheduled Job Type,Cron,cron DocType: Email Unsubscribe,Global Unsubscribe,Küresel aboneliğini apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Bu çok yaygın bir şifredir. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Görünüm @@ -2313,6 +2396,7 @@ DocType: Data Migration Connector,Hostname,Hostadı DocType: Data Migration Mapping,Condition Detail,Durum Ayrıntısı apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",{0} para birimi için minimum işlem tutarı {1} olmalıdır. DocType: DocField,Print Hide,Gizle Yazdır +DocType: System Settings,HH:mm:ss,SS: dd: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Kullanıcıya apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Değeri girin DocType: Workflow State,tint,renk @@ -2381,6 +2465,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Giriş Doğrul apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Yapılacaklara Ekle DocType: Footer Item,Company,Şirket apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ortalaması +DocType: Scheduled Job Log,Scheduled,Planlandı DocType: User,Logout from all devices while changing Password,Şifre değiştirirken tüm cihazlardan çıkış yapın apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Şifrenizi denetleyin apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Hatalar vardı @@ -2406,7 +2491,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Kullanıcı izni zaten mevcut apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} sütunu {1} alanına eşleniyor apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} görüntüleme -DocType: User,Hourly,Saatlik +DocType: Scheduled Job Type,Hourly,Saatlik apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth İstemci App Kayıt Ol DocType: DocField,Fetch If Empty,Boşsa Al DocType: Data Migration Connector,Authentication Credentials,Kimlik Doğrulama Kimlik Bilgileri @@ -2418,10 +2503,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Anageçit Adresi apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} olamaz ""{2}"". Bu ""{3}"" biri olmalıdır" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} otomatik kuralı {1} ile kazanılan apps/frappe/frappe/utils/data.py,{0} or {1},{0} veya {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Hepiniz hazırsınız! DocType: Workflow State,trash,Çöp DocType: System Settings,Older backups will be automatically deleted,Eski yedekleri otomatik olarak silinecektir apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Geçersiz Erişim Tuş Kimliği veya Gizli Erişim Tuşu. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Bazı enerji noktalarını kaybettiniz DocType: Post,Is Globally Pinned,Global olarak sabitlenmiş apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Son Etkinlik DocType: Workflow Transition,Conditions,Koşullar @@ -2430,6 +2515,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Onaylı DocType: Event,Ends on,Biteceği tarih DocType: Payment Gateway,Gateway,Geçit DocType: LDAP Settings,Path to Server Certificate,Sunucu Sertifikasına Giden Yol +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Tarayıcınızda Javascript devre dışı apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Linkleri görmek için yeterli iz yok apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Linkleri görmek için yeterli iz yok apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Adres Başlığı zorunludur. @@ -2449,7 +2535,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,ab-batı-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Bu işaretlenirse, geçerli verilere sahip satırlar içe aktarılır ve daha sonra içe aktarmanız için geçersiz satırlar yeni bir dosyaya dökülür." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Belge rolü kullanıcılar tarafından düzenlenebilir -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",{1} tarafından {2} kapatıldı atanan bu görevi {0}. DocType: Print Format,Show Line Breaks after Sections,Göster Hattı Bölümler sonra Kırdı DocType: Communication,Read by Recipient On,Alıcının Açık Oku DocType: Blogger,Short Name,Kısa Adı @@ -2482,6 +2567,7 @@ DocType: Translation,PR sent,PR gönderildi DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Yalnızca Son X Saatte Güncellenen Kayıtları Gönder DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Yalnızca Son X Saatte Güncellenen Kayıtları Gönder DocType: Communication,Feedback,Geri bildirim +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Yeni Bir Sürüme Güncellenmiş 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Çeviri Açık apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Bu e-posta otomatik olarak oluşturuldu DocType: Workflow State,Icon will appear on the button,Simge düğmesi görünecektir @@ -2524,6 +2610,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Sayfa bulu DocType: DocField,Precision,Hassas DocType: Website Slideshow,Slideshow Items,Slayt Ürünler apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,tekrarlanan kelimeleri ve karakterleri önlemek için deneyin +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Bildirimler Devre Dışı +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Tüm satırları silmek istediğinizden emin misiniz? DocType: Workflow Action,Workflow State,İş Akışı Durumu apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Satırlar eklendi apps/frappe/frappe/www/list.py,My Account,Hesabım @@ -2532,6 +2620,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Gün Sonra apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ Tepsi Bağlantısı Aktif! DocType: Contact Us Settings,Settings for Contact Us Page,Bize Sayfa Ayarları +DocType: Server Script,Script Type,Script Tipi DocType: Print Settings,Enable Print Server,Baskı Sunucusunu Etkinleştir apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} hafta önce DocType: Email Account,Footer,Altbilgi @@ -2557,8 +2646,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Uyarı apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Bu birden fazla sayfaya yazdırılabilir DocType: Data Migration Run,Percent Complete,Yüzde Tamamlandı -DocType: Tag Category,Tag Category,Etiket Kategorisi -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Karşılaştırma için,> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)." DocType: Google Calendar,Pull from Google Calendar,Google Takvim’den çekin apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Yardım DocType: User,Login Before,Önce Giriş @@ -2568,17 +2655,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Haftasonlarını Gizle apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Otomatik olarak yinelenen belgeler oluşturur. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Mı +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} bir liste olamaz değer DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bu para birimi nasıl biçimlendirilmelidir? Ayarlanmamışsa, sistem varsayılanı kullanacaktır." apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} dokümanı gönderilsin mi? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ Tepsi Uygulamasına bağlanırken hata oluştu ... <br><br> Raw Print özelliğini kullanmak için QZ Tray uygulamasının kurulu ve çalışıyor olması gerekir. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ Tepsisini indirmek ve yüklemek için buraya tıklayın</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Ham Baskı hakkında daha fazla bilgi edinmek için buraya tıklayın</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Yazıcı eşlemesi apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Takmadan önce tasarruf edin. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Bağlantılı tüm belgeleri iptal etmek istiyor musunuz? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Eklenen {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Alan Türleri {0} değiştirilemez {1} üste {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Rol İzinler DocType: Help Article,Intermediate,Orta düzey +apps/frappe/frappe/config/settings.py,Email / Notifications,E-posta Bildirimleri apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},"{0}, {1} ila {2}" apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Taslak olarak geri yüklenen İptal Edilen Belge DocType: Data Migration Run,Start Time,Başlangıç Zamanı @@ -2595,6 +2686,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Pa apps/frappe/frappe/email/smtp.py,Invalid recipient address,Geçersiz alıcı adresi DocType: Workflow State,step-forward,step-forward DocType: System Settings,Allow Login After Fail,Başarısız Olduğunda Oturum Açmaya İzin Ver +DocType: DocType Link,DocType Link,DocType Bağlantısı DocType: Role Permission for Page and Report,Set Role For,İçin Set Rol DocType: GCalendar Account,The name that will appear in Google Calendar,Google Takvim’de görünecek isim apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ile doğrudan oda zaten var. @@ -2613,6 +2705,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Yeni {0} DocType: Contact,Google Contacts,Google Kişileri DocType: GCalendar Account,GCalendar Account,GCalendar Hesabı DocType: Email Rule,Is Spam,Spam mı +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Son apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapor {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} DocType: Data Import Beta,Import Warnings,Uyarıları İçe Aktar @@ -2625,6 +2718,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,Silinmiş Belgeler apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV biçimi büyük / küçük harf duyarlıdır apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Masaüstü Simgesi zaten var +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Slaytların hangi alan adlarında görüneceğini belirtin. Hiçbir şey belirtilmezse, slayt varsayılan olarak tüm etki alanlarında gösterilir." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Kopyala apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,"{0}: {2} satırındaki {1} alanı, varsayılan olmadan gizlenemez ve zorunlu değildir" DocType: Newsletter,Create and Send Newsletters,Oluşturun ve gönderin Haber @@ -2635,6 +2729,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Takvim Etkinlik Kimliği apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Ana"" bu satırın ekleneceği ana tabloyu belirtir" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Değerlendirme Noktaları: +DocType: Scheduled Job Log,Scheduled Job Log,Zamanlanmış İş Günlüğü +DocType: Server Script,Before Delete,Silmeden Önce apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Paylaşıldı apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Dosyaları / URL'leri ekleyin ve tabloya ekleyin. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Mesaj ayarlanmıyor @@ -2658,19 +2754,21 @@ DocType: About Us Settings,Settings for the About Us Page,Hakkımızda Sayfa Aya apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Şerit ödeme ağ geçidi ayarları apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Şerit ödeme ağ geçidi ayarları apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Yazdır Yazıcıya gönderildi! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Enerji Noktaları +DocType: Notification Settings,Energy Points,Enerji Noktaları +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},{0} süresi şu biçimde olmalıdır: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,Örneğin pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Anahtar Oluştur apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,"Bu, verilerinizi kalıcı olarak kaldıracak." DocType: DocType,View Settings,Görünüm Ayarları +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Yeni Bildirim DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,İstek Yapısı +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Denetleyici yöntemi get_razorpay_order eksik DocType: Personal Data Deletion Request,Pending Verification,Doğrulama beklemede DocType: Website Meta Tag,Website Meta Tag,Web Sitesi Meta Etiketi DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",Standart olmayan port ise (örn. 587). Google Cloud’ta 2525 numaralı bağlantı noktasını deneyin. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",Yayınlanmış sayfalarda geçmişte bulunamadığından bitiş tarihi temizleniyor. DocType: User,Send Me A Copy of Outgoing Emails,Bana Giden E-postaların Bir Kopyasını Gönder -DocType: System Settings,Scheduler Last Event,Programlayıcı Son Olay DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google Analytics ID ekleyin: örn. UA-89XXX57-1. Daha fazla bilgi için Google Analytics yardım arayın. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Şifre 100'den fazla karakterden uzun olamaz DocType: OAuth Client,App Client ID,Uygulama İstemci Kimliği @@ -2700,6 +2798,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Yeni Parola G apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} bu belgeyi şu kişi ile paylaştı {1} DocType: Website Settings,Brand Image,Marka imajı DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,İçe aktarma şablonu bir Başlık ve en az bir satır içermelidir. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google Takvim yapılandırıldı. apps/frappe/frappe/config/website.py,"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 @@ -2709,6 +2808,7 @@ DocType: User Social Login,User Social Login,Kullanıcı Sosyal Girişi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} çalışmanızı {1} tarihinde {2} puanla eleştirdi DocType: Contact,All,Tümü DocType: Email Queue,Recipient,Alıcı +DocType: Webhook,Webhook Security,Webhook Güvenliği DocType: Communication,Has Attachment,Ek Has DocType: Address,Sales User,Satış Kullanıcı apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Sürükle ve Bırak aracı inşa etmek ve Baskı Biçimleri özelleştirmek için. @@ -2779,7 +2879,6 @@ DocType: Data Migration Mapping,Migration ID Field,Taşıma Kimliği Alanı DocType: Dashboard Chart,Last Synced On,Son Senkronize Açık DocType: Comment,Comment Type,Yorum Tipi DocType: OAuth Client,OAuth Client,OAuth İstemci -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} çalışmanızı {1} {2} için eleştirdi DocType: Assignment Rule,Users,Kullanıcılar DocType: Address,Odisha,Odisha DocType: Report,Report Type,Rapor Türü @@ -2807,14 +2906,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Web Sitesi Slayt Ürün apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Kendi onayına izin verilmez DocType: GSuite Templates,Template ID,Şablon Kimliği apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Hibe Türü ( <code>{0}</code> ) ve Yanıt Türü ( <code>{1}</code> ) kombinasyonu izin verilmez -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} 'dan gelen yeni mesaj DocType: Portal Settings,Default Role at Time of Signup,Üye Olurken Varsayılan Rol DocType: DocType,Title Case,Başlık apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Verilerinizi indirmek için aşağıdaki linke tıklayın apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},{0} kullanıcısı için e-posta gelen kutusu etkin DocType: Data Migration Run,Data Migration Run,Veri Taşıma Çalıştırması DocType: Blog Post,Email Sent,E-posta Gönderilmiş -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Daha eski DocType: DocField,Ignore XSS Filter,XSS Filtresi görmezden apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,çıkarıldı apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox yedekleme ayarları @@ -2871,6 +2968,7 @@ DocType: Async Task,Queued,Sıraya alınmış DocType: Braintree Settings,Use Sandbox,Kullanım Sandbox apps/frappe/frappe/utils/goal.py,This month,Bu ay apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Yeni Özel Baskı Biçimi +DocType: Server Script,Before Save (Submitted Document),Kaydetmeden Önce (Gönderilen Belge) DocType: Custom DocPerm,Create,Oluştur apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Görüntülenecek başka öğe yok apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Önceki kayda git @@ -2929,6 +3027,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Çöp kutusuna taşıyın DocType: Web Form,Web Form Fields,Web Form Alanları DocType: Data Import,Amended From,İtibaren değiştirilmiş +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Kullanıcının slaytı ne dolduracağı hakkında hiçbir fikri yoksa, yardım videosu bağlantısı ekleyin." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Uyarı: açılamıyor bulmak için {0} ile ilgili herhangi bir tablodaki {1} DocType: S3 Backup Settings,eu-north-1,ab-kuzey-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Bu belge şu anda yürütülmesi için sıraya. Lütfen tekrar deneyin @@ -2951,6 +3050,7 @@ DocType: Blog Post,Blog Post,Blog postası DocType: Access Log,Export From,Gönderen apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Gelişmiş Arama apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Haber bültenini görüntüleme izniniz yok. +DocType: Dashboard Chart,Group By,Grup tarafından DocType: User,Interests,İlgi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Parola sıfırlama bilgileri e-posta gönderildi DocType: Energy Point Rule,Allot Points To Assigned Users,Atanan Kullanıcılara Tahsis Noktaları @@ -2966,6 +3066,7 @@ DocType: Assignment Rule,Assignment Rule,Atama Kuralı apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Önerilen adı: {0} DocType: Assignment Rule Day,Day,Gün apps/frappe/frappe/public/js/frappe/desk.js,Modules,Modüller +DocType: DocField,Mandatory Depends On,Zorunlu apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,Ödeme Başarı apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Hayır {0} posta DocType: OAuth Bearer Token,Revoked,iptal @@ -2973,6 +3074,7 @@ DocType: Web Page,Sidebar and Comments,Kenar çubuğu ve Yorumlar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} dokümanı eklemesine izin verilmiyor, lütfen Yazdırma Ayarları'nda {0} için Yazdırmaya İzin Ver'i etkinleştirin" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı kurulmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} adresindeki dokümana bakın DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar @@ -2988,13 +3090,13 @@ DocType: Currency,Fraction,Kesir apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Etkinlik Google Takvim ile Senkronize Edildi. DocType: LDAP Settings,LDAP First Name Field,LDAP Ad Alanı DocType: Contact,Middle Name,İkinci ad +DocType: DocField,Property Depends On,Mülkiyet Bağlıdır DocType: Custom Field,Field Description,Alan Açıklama apps/frappe/frappe/model/naming.py,Name not set via Prompt,İstemci ile girilmemiş isim apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-posta gelen kutusu apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} ürününün {0} güncellenmesi" DocType: Auto Email Report,Filters Display,Filtreler Ekran apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Bir değişiklik yapmak için "değiştirilen_" den "alan" olmalı. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},"{0}, {1} {2} üzerindeki çalışmanızı takdir etti" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filtreleri kaydet DocType: Address,Plant,Tesis DocType: Address,Plant,Tesis @@ -3040,13 +3142,13 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Rapor: DocType: Print Settings,Print taxes with zero amount,Sıfır tutarlı vergileri yazdırın apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} isminin değiştirilmesine izin verilmedi +DocType: Server Script,Before Insert,Yerleştirmeden Önce DocType: Custom Script,Custom Script,Özel Komut DocType: Address,Address Line 2,Adres Satırı 2 DocType: Address,Address Line 2,Adres Satırı 2 DocType: Address,Reference,Referans DocType: Address,Reference,Referans apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Atanan -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabı'nı ayarlayın. DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Veri Taşıma Eşleme Ayrıntısı DocType: Data Import,Action,Eylem DocType: GSuite Settings,Script URL,Komut Dosyası URL'si @@ -3072,11 +3174,13 @@ DocType: User,Api Access,Api Erişimi DocType: DocField,In List View,Liste Görünümü DocType: Email Account,Use TLS,TLS kullanın apps/frappe/frappe/email/smtp.py,Invalid login or password,Geçersiz giriş ya da şifre +DocType: Scheduled Job Type,Weekly Long,Haftalık Uzun apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Şablonu İndir apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Formlara özel javascript ekle. ,Role Permissions Manager,Rol İzinler Müdürü apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Yeni Baskı Biçimi Adı apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Kenar Çubuğunu Aç / Kapat +DocType: Server Script,After Save (Submitted Document),Kaydettikten Sonra (Gönderilen Belge) DocType: Data Migration Run,Pull Insert,Çekme Uç DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Çarpan değeri olan puanları çarptıktan sonra izin verilen maksimum puanlar (Not: Sınırsız olarak bu alanı boş bırakın veya 0 olarak ayarlayın) @@ -3096,6 +3200,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Yüklü Değil apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Verilerle now apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} için değiştirilen değerler +DocType: Server Script,Before Cancel,İptal Etmeden Önce DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Bölge @@ -3142,12 +3247,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Eski Şifre DocType: S3 Backup Settings,us-east-1,Bizim için doğu-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Tarafından Mesaj {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",", Sütunlar biçimlendirmek sorgudaki sütun etiketlerini vermek." +DocType: Onboarding Slide,Slide Fields,Slayt Alanları DocType: Has Domain,Has Domain,Etki Alanı Var DocType: User,Allowed In Mentions,Yorumlarda İzin Verildi apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hesabınız mı yok mu? Kayıt ol apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Kimlik alanı kaldırılamıyor apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Ata Amend ayarlanamaz Submittable değilse DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Abone Olunan Belgeler apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Kullanıcı ayarları DocType: Report,Reference Report,Referans Raporu DocType: Activity Log,Link DocType,bağlantı DocType @@ -3166,6 +3273,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google Takvim Erişimi apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Aradığınız sayfa eksik. taşınması veya linkte bir yazım hatası yoktur Bunun nedeni olabilir. apps/frappe/frappe/www/404.html,Error Code: {0},Hata kodu {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Düz metin olarak ilan sayfası Açıklama, çizgilerin sadece bir çift. (Maksimum 140 karakter)" +DocType: Server Script,DocType Event,DocType Etkinliği apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} zorunlu alanlardır DocType: Workflow,Allow Self Approval,Kendi Onayına İzin Ver DocType: Event,Event Category,Etkinlik Kategorisi @@ -3182,6 +3290,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Adınız apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Bağlantı Başarı DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Bir Slayt Türü Devam Etme Sürümü zaten var. DocType: DocType,Default Sort Field,Varsayılan Sıralama Alanı DocType: File,Is Folder,Klasör mı DocType: Document Follow,DocType,DOCTYPE @@ -3220,8 +3329,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Değerl DocType: Workflow State,arrow-up,yukarı-yön DocType: Dynamic Link,Link Document Type,Bağlantı Doküman Türü apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} tablosu için en az bir satır olmalı +DocType: Server Script,Server Script,Sunucu Komut Dosyası apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Otomatik Tekrarı yapılandırmak için {0} 'dan "Otomatik Tekrarlamaya İzin Ver" i etkinleştirin. DocType: OAuth Bearer Token,Expires In,İçinde sona eriyor +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Alan kümesini tekrarlamak istediğiniz süre (ör. Slaytta 3 müşteri istiyorsanız, bu alanı 3 olarak ayarlayın. Slaytta yalnızca ilk alan kümesi zorunlu olarak gösterilir)" DocType: DocField,Allow on Submit,Gönderme Onayı İzni DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,İstisna türü @@ -3231,6 +3342,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Başlıkları apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Yaklaşan Etkinlikler apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Uygulama Erişim Anahtarı ve App Gizli Key değerlerini girin +DocType: Email Account,Append Emails to Sent Folder,Gönderilmiş Klasöre E-posta Ekleme DocType: Web Form,Accept Payment,Ödeme Kabul apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Liste öğesini seçin apps/frappe/frappe/config/core.py,A log of request errors,Istek hataları bir log @@ -3249,7 +3361,7 @@ DocType: Translation,Contributed,Katkıda apps/frappe/frappe/config/customization.py,Form Customization,Form Özelleştirme apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Etkin Oturum Yok DocType: Web Form,Route to Success Link,Başarı Bağlantısına Giden Yol -DocType: Top Bar Item,Right,Sağ +DocType: Onboarding Slide Field,Right,Sağ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Yaklaşan Etkinlik Yok DocType: User,User Type,Kullanıcı Türü DocType: Prepared Report,Ref Report DocType,Ref Rapor DocType @@ -3267,6 +3379,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Lütfen tekrar d apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',"URL, 'http: //' veya 'https: //' ile başlamalıdır." apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Seçenek 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Bu geri alınamaz DocType: Workflow State,Edit,Düzenle DocType: Workflow State,Edit,Düzenle DocType: Website Settings,Chat Operators,Sohbet Operatörleri @@ -3279,7 +3392,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,"Manzara modunda, 10'dan fazla sütunlu rapor daha iyi görünür." apps/frappe/frappe/database/database.py,Invalid field name: {0},Geçersiz alan adı: {0} DocType: Milestone,Milestone,Aşama @@ -3288,7 +3400,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} adresine git apps/frappe/frappe/email/queue.py,Emails are muted,E-postalar sessize alındı apps/frappe/frappe/config/integrations.py,Google Services,Google Hizmetleri apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Yukarı -apps/frappe/frappe/utils/data.py,1 weeks ago,1 hafta önce +DocType: Onboarding Slide,Slide Description,Slayt Açıklaması DocType: Communication,Error,Hata apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Lütfen önce bir mesaj kurun DocType: Auto Repeat,End Date,Bitiş Tarihi @@ -3312,11 +3424,13 @@ DocType: Footer Item,Group Label,Grup Etiketi DocType: Kanban Board,Kanban Board,Kanban Kurulu apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kişileri yapılandırıldı. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 kayıt dışa aktarılacak +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kullanıcı ile ilişkilendirilmiş e-posta hesabı yok. Lütfen Kullanıcı> E-posta Gelen Kutusu altına bir hesap ekleyin. DocType: DocField,Report Hide,Rapor Gizle apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},için geçerli değildir Ağaç görünümü {0} DocType: DocType,Restrict To Domain,Alana Kısıtla DocType: Domain,Domain,Etki Alanı DocType: Domain,Domain,Etki Alanı +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Geçersiz dosya URL'si. Lütfen Sistem Yöneticisi ile irtibata geçin. DocType: Custom Field,Label Help,Etiket Yardım DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Tarihler genellikle tahmin etmek kolaydır. @@ -3343,6 +3457,7 @@ DocType: Data Import,If you are updating/overwriting already created records.,Za apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Küresel mi DocType: Email Account,Use SSL,SSL kullan DocType: Email Account,Use SSL,SSL kullan +DocType: Webhook,HOOK-.####,KANCA -. #### DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Doküman doğru bir şekilde atanamadı apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Geçersiz "depends_on" ifadesi @@ -3360,6 +3475,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Son yenilendi apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Belge Türü İçin DocType: Workflow State,arrow-right,sağ-yön +DocType: Server Script,API Method,API Yöntemi DocType: Workflow State,Workflow state represents the current state of a document.,İş Akışı devlet belgenin mevcut durumunu gösterir. DocType: Letter Head,Letter Head Based On,Temelli Mektup Başlığı apps/frappe/frappe/utils/oauth.py,Token is missing,Jetonu eksik @@ -3402,6 +3518,7 @@ DocType: Comment,Relinked,yeniden bağlandı DocType: Print Settings,Compact Item Print,Kompakt Öğe Yazdır DocType: Email Account,uidnext,UIDNEXT DocType: User,Redirect URL,Yönlendirme URL +DocType: Onboarding Slide Field,Placeholder,Yer tutucu DocType: SMS Settings,Enter url parameter for receiver nos,Alıcı numaraları için url parametresi girin DocType: Chat Profile,Online,İnternet üzerinden DocType: Email Account,Always use Account's Name as Sender's Name,Her zaman Hesap Adını Gönderenin Adı olarak kullan @@ -3411,7 +3528,6 @@ DocType: Workflow State,Home,Ana Sayfa DocType: OAuth Provider Settings,Auto,Otomatik DocType: System Settings,User can login using Email id or User Name,Kullanıcı e-posta kimliği veya Kullanıcı Adı'nı kullanarak giriş yapabilir DocType: Workflow State,question-sign,question-sign -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} devre dışı apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Web İzleme alanları "rota" zorunlu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} önündeki Sütun Ekle DocType: Energy Point Rule,The user from this field will be rewarded points,Bu alandaki kullanıcı ödüllendirilecek puanlar olacak @@ -3436,6 +3552,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Sahibi ise DocType: Data Migration Mapping,Push,it apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,dosyaları buraya bırak DocType: OAuth Authorization Code,Expiration time,Sona erme zamanı +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Açık Belgeler DocType: Web Page,Website Sidebar,Web sitesi Kenar Çubuğu DocType: Web Form,Show Sidebar,göster Kenar Çubuğu apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,{0} öğesine erişim için sisteme giriş yapmalısınız. @@ -3452,6 +3569,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global Kısa DocType: Desktop Icon,Page,Sayfa apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},{1}'in içinde {0} bulunamadı apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,kendileri tarafından ad ve soyadları tahmin etmek kolaydır. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Doküman {0} yerine {1} olarak yeniden adlandırıldı apps/frappe/frappe/config/website.py,Knowledge Base,Bilgi tabanı DocType: Workflow State,briefcase,evrak çantası apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Değer için değiştirilemez {0} @@ -3490,6 +3608,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Yazdırma Formatı apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Izgara Görünümünü Aç / Kapat apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Bir sonraki kayda git +DocType: System Settings,Time Format,Zaman formatı apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Geçersiz ödeme ağ geçidi kimlik bilgileri DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Bu, yalnızca bazı hatalara sahip satırlarla üretilen şablon dosyasıdır. Bu dosyayı düzeltme ve içe aktarma için kullanmalısınız." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Belge Türleri ve Rol üzerinde İzinleri Ayarlama @@ -3533,12 +3652,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Cevapla apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Danışma Sayfalar (yer tutucular) DocType: DocField,Collapsible Depends On,Katlanabilir Bağlıdır DocType: Print Style,Print Style Name,Baskı Stili Adı +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Gösterge tablosu grafiği oluşturmak için Gruplama Alanı gereklidir DocType: Print Settings,Allow page break inside tables,Tablo içerisinde sayfa sonlarına izin ver DocType: Email Account,SMTP Server,SMTP Sunucusu DocType: Print Format,Print Format Help,Baskı Biçimi Yardım apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} oda en fazla bir kullanıcıya sahip olmalıdır. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,saymak +DocType: Dashboard Chart,Group By Type,Türe Göre Grupla apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},{0} Üzerine Yeni Yorum: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},geri {0} olarak {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Eğer güncelleme yapıyorsanız, ""Üzerine yaz"" seçiniz başka varolan satırlar silinmeyecektir." @@ -3549,8 +3670,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Kullanıc DocType: Web Form,Web Form,Web Formu apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},"{0} tarihi, şu şekilde olmalıdır: {1}" DocType: About Us Settings,Org History Heading,Org Tarih Başlık +DocType: Scheduled Job Type,Scheduled Job Type,Zamanlanmış İş Türü DocType: Print Settings,Allow Print for Cancelled,İptal edilenlerin yazdırılmasına izin ver DocType: Communication,Integrations can use this field to set email delivery status,Entegrasyonlar e-posta dağıtım durumunu ayarlamak için bu alanı kullanabilirsiniz +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Bağlı tüm belgeleri iptal etme izniniz yok. DocType: Web Form,Web Page Link Text,Web Sayfası Bağlantı Metni DocType: Page,System Page,Sistem Sayfası DocType: Page,System Page,Sistem Sayfası @@ -3558,6 +3681,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}</b> için verilen özelleştirmeler şu kişilere ihraç edildi: <br> {1} DocType: Website Settings,Include Search in Top Bar,Top Bar ara dahil et +DocType: Scheduled Job Type,Daily Long,Günlük Uzun DocType: GSuite Settings,Allow GSuite access,GSuite erişimine izin ver DocType: DocType,DESC,AZALAN DocType: DocType,Naming,Adlandırma @@ -3662,6 +3786,7 @@ DocType: Notification,Send days before or after the reference date,Önce veya re DocType: User,Allow user to login only after this hour (0-24),Kullanıcının sadece bu saatten sonra giriş yapmasına izin ver (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Sırayla birer birer atayın DocType: Integration Request,Subscription Notification,Abonelik Bildirimi +DocType: Customize Form Field, Allow in Quick Entry ,Hızlı Girişe İzin Ver apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,veya bir DocType: Auto Repeat,Start Date,Başlangıç Tarihi DocType: Auto Repeat,Start Date,Başlangıç Tarihi @@ -3678,6 +3803,7 @@ DocType: Google Drive,Backup Folder ID,Yedekleme Klasörü Kimliği apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Değil Geliştirici Modu! Site_config.json Set veya 'Özel' DOCTYPE yapmak. DocType: Workflow State,globe,dünya DocType: System Settings,dd.mm.yyyy,gg.aa.yyyy +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Öncelik DocType: Assignment Rule,Priority,Öncelik DocType: Email Queue,Unsubscribe Param,Aboneliği iptal Param @@ -3691,6 +3817,7 @@ DocType: DocType,Allow Import (via Data Import Tool),İçe aktarıma izin ver (V apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sayfa Ayarları +DocType: Notification Settings,Notification Settings,Bildirim ayarları apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Tasarruf ... apps/frappe/frappe/www/update-password.html,Invalid Password,geçersiz şifre apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} kaydı başarıyla {1} ürününden içe aktarıldı. @@ -3706,6 +3833,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Letter Head Görüntüsü DocType: Address,Party GSTIN,Parti GSTIN +DocType: Scheduled Job Type,Cron Format,Cron Biçimi apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Raporu DocType: SMS Settings,Use POST,POST'u kullanın DocType: Communication,SMS,SMS @@ -3755,18 +3883,20 @@ DocType: Workflow,Allow approval for creator of the document,Belgenin yaratıcı apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Raporu Kaydet DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Bitiş Noktası Args +DocType: DocType Action,Server Action,Sunucu Eylemi apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Yönetici {1} üzerindeki {0}'a {2} IP Adresinden erişti. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Üst Alan geçerli bir alan adı olmalı apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Abonelik değiştirilirken başarısız oldu DocType: LDAP Settings,LDAP Group Field,LDAP Grup Alanı +DocType: Notification Subscribed Document,Notification Subscribed Document,Bildirim Abone Belgesi apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Eşittir apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Geçersiz CSV Biçimi -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ Tepsi Uygulamasına bağlanırken hata oluştu ... <br><br> Raw Print özelliğini kullanmak için QZ Tray uygulamasının kurulu ve çalışıyor olması gerekir. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ Tray'i indirip kurmak için buraya tıklayın</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Ham Baskı hakkında daha fazla bilgi için buraya tıklayın</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Yedekler Set Sayısı DocType: DocField,Do not allow user to change after set the first time,Kullanıcı değiştirmesine izin vermeyin sonra ilk kez ayarlayın apps/frappe/frappe/utils/data.py,1 year ago,1 yıl önce +DocType: DocType,Links Section,Bağlantılar Bölümü apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Tüm yazdırma, indirme ve dışa aktarma olaylarının Günlüğünü görüntüleyin" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ay DocType: Contact,Contact,İrtibat @@ -3795,17 +3925,20 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,yeni e-posta DocType: Custom DocPerm,Export,Dışarı aktar apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Google Takvim’i kullanmak için {0} seçeneğini etkinleştirin. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Ayrıca {0} durum bağımlılığı alanı ekleniyor +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} başarıyla güncellendi apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ Kaseti Başarısız Oldu: DocType: Dropbox Settings,Dropbox Settings,dropbox Ayarları DocType: About Us Settings,More content for the bottom of the page.,Sayfanın altında daha fazla içerik. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Bu belge geri alındı apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive Yedekleme Başarılı. +DocType: Webhook,Naming Series,Seri Adlandırma DocType: Workflow,DocType on which this Workflow is applicable.,Uygulanabilir iş akışı DOCTYPE. DocType: User,Enabled,Etkin DocType: User,Enabled,Etkin apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Kurulumu tamamlama başarısız apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Yeni {0}: {1} -DocType: Tag Category,Category Name,Kategori Adı +DocType: Blog Category,Category Name,Kategori Adı apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Alt tablo verilerini almak için ebeveyn gerekli apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Aboneleri İçe Aktar DocType: Print Settings,PDF Settings,PDF Ayarları @@ -3843,6 +3976,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Takvim apps/frappe/frappe/client.py,No document found for given filters,Verilen filtreler için hiçbir doküman bulunamadı apps/frappe/frappe/config/website.py,A user who posts blogs.,Blog gönderen bir kullanıcı. +DocType: DocType Action,DocType Action,DocType İşlemi apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Başka {0} adı ile {1} Varlığından, başka bir isim seçin" DocType: DocType,Custom?,Özel? DocType: Website Settings,Website Theme Image,Web Sitesi Tema Görüntü @@ -3852,6 +3986,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Yüklenem apps/frappe/frappe/config/integrations.py,Backup,Yedek apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Pano grafiği oluşturmak için belge türü gereklidir DocType: DocField,Read Only,Salt Okunur +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Razorpay siparişi oluşturulamadı apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Yeni Haber DocType: Energy Point Log,Energy Point Log,Enerji Noktası Günlüğü DocType: Print Settings,Send Print as PDF,Baskıyı PDF olarak gönder @@ -3877,18 +4012,19 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,E-p apps/frappe/frappe/www/login.html,Or login with,Ya ile giriş DocType: Error Snapshot,Locals,Yerliler apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},aracılığıyla iletilen {0} {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} bir yorumda sizden bahsetti {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Grupla Seç ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{0} is required,{0} gereklidir apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} gereklidir DocType: Integration Request,Integration Type,entegrasyon Tipi DocType: Newsletter,Send Attachements,attachements gönder +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Filtre bulunamadı apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Rehber Entegrasyonu. DocType: Transaction Log,Transaction Log,İşlem Günlüğü apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Geçen ayın performansına göre istatistikler ({0} - {1} arası) DocType: Contact Us Settings,City,İl DocType: Contact Us Settings,City,Şehir +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Tüm kullanıcılar için kartları gizle apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Özelleştir Formunda {0} doctype için Otomatik Tekrarlamaya İzin Ver'i etkinleştirin DocType: DocField,Perm Level,Seviye Perm apps/frappe/frappe/www/confirm_workflow_action.html,View document,Belgeyi görüntüle @@ -3900,6 +4036,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},{1} satırında {0} türü için 'Genel Arama'ya izin verilmiyor apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},{1} satırında {0} türü için 'Genel Arama'ya izin verilmiyor DocType: Energy Point Log,Appreciation,takdir +DocType: Dashboard Chart,Number of Groups,Grup Sayısı apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Görünümü listesi DocType: Workflow,Don't Override Status,Durum geçersiz kılma etmeyin apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Arama terimi @@ -3944,7 +4081,6 @@ DocType: S3 Backup Settings,cn-northwest-1,cn-kuzeybatı-1 DocType: Dropbox Settings,Limit Number of DB Backups,DB Yedeklemelerinin Sınırı Sayısı DocType: Custom DocPerm,Level,Seviye DocType: Custom DocPerm,Level,Seviye -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Son 30 gün DocType: Custom DocPerm,Report,Rapor apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Miktar 0'dan büyük olmalıdır. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ Tray'e bağlı! @@ -3961,6 +4097,7 @@ DocType: S3 Backup Settings,us-west-2,Bize-batı-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Çocuk Masası Seç apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Birincil İşlemi Tetikle apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Değişiklik +DocType: Social Login Key,User ID Property,Kullanıcı Kimliği Özelliği DocType: Email Domain,domain name,domain adı DocType: Contact Email,Contact Email,İletişim E-Posta DocType: Kanban Board Column,Order,Sipariş @@ -3983,7 +4120,7 @@ DocType: Contact,Last Name,Soyadı DocType: Event,Private,Özel apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Bırakmak DocType: Event,All Day,Bütün Gün apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Görünüşe göre bu sitenin ödeme ağ geçidi yapılandırması ile ilgili bir sorun var. Herhangi bir ödeme yapılmadı. DocType: GCalendar Settings,State,Devlet @@ -4019,7 +4156,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Ağ Geçidi Ayarları apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,belge tipi içindeki yazı -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Testleri Çalıştır apps/frappe/frappe/handler.py,Logged Out,Çıkış yapıldı apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Daha... DocType: System Settings,User can login using Email id or Mobile number,Kullanıcı e-posta kimliği veya Cep telefonu numarası kullanarak giriş yapabilir @@ -4037,6 +4173,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,özet DocType: Event,Event Participants,Etkinlik Katılımcıları DocType: Auto Repeat,Frequency,frekans +DocType: Onboarding Slide,Slide Order,Slayt Sırası DocType: Custom Field,Insert After,Sonra ekle DocType: Event,Sync with Google Calendar,Google Takvim ile senkronize et DocType: Access Log,Report Name,Rapor Adı @@ -4065,6 +4202,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Para için maksimum genişlik 100px verilen satır {0} apps/frappe/frappe/config/website.py,Content web page.,Içerik web sayfası. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Yeni Rol Ekle +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Web Sayfasını Ziyaret Edin +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Yeni görev DocType: Google Contacts,Last Sync On,Son Senkronizasyon Açık DocType: Deleted Document,Deleted Document,Döküman silindi apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops Bir şeyler yanlış gitti @@ -4075,7 +4214,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,peyzaj apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,JavaScript İstemci tarafı komut dosyası uzantıları DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Aşağıdaki doktrinler için kayıtlar filtrelenecek -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Zamanlayıcı Etkin Değil +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Zamanlayıcı Etkin Değil DocType: Blog Settings,Blog Introduction,Blog Tanıtım DocType: Global Search Settings,Search Priorities,Arama Öncelikleri DocType: Address,Office,Ofis @@ -4087,13 +4226,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Kontrol Paneli Grafik Bağlan DocType: User,Email Settings,E-posta Ayarları apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Buraya bırak DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Etkinleştirildiğinde, kullanıcı İki Faktör Kimlik Doğrulaması kullanarak herhangi bir IP Adresinden giriş yapabilir, bu, Sistem Ayarları'ndaki tüm kullanıcılar için de ayarlanabilir." -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Yazıcı Ayarları ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Lütfen Devam Etmek İçin Parolanızı Girin apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Lütfen Devam Etmek İçin Parolanızı Girin apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Ben mi apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} geçerli bir durum değil apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Tüm Belge Türlerine Uygula -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Enerji noktası güncellemesi +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Enerji noktası güncellemesi +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),İşleri Yalnızca Etkin Değilse Günlük Çalıştır (Gün) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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 DocType: Chat Message,Room Type,Oda tipi DocType: Data Import Beta,Import Log Preview,Günlük Önizlemesini İçe Aktar @@ -4102,6 +4241,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP Kullanıcı Oluşturma ve Haritalama apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',Sen müşterilerin turuncu bulmak 'sorarak şeyler bulabilirsiniz +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Bugünkü Etkinlikler apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Maalesef! Kullanıcı kendi kayıtlarına tam erişimi olmalıdır. ,Usage Info,kullanım Bilgisi apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Klavye Kısayollarını Göster @@ -4121,6 +4261,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Kısmi Başarı DocType: Email Account,Service,Servis DocType: Email Account,Service,Servis +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı DocType: File,File Name,Dosya Adı apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Için {0} bulamadık {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -4135,6 +4276,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Tam Kay DocType: GCalendar Settings,Enable,Etkinleştir DocType: Google Maps Settings,Home Address,Ev adresi apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),En fazla 5 bin '5000' kayıt ekleyebilirsiniz bu bazı durumlarda daha azdır +DocType: Report,"output in the form of `data = [columns, result]`","`data = [sütunlar, sonuç] 'şeklinde çıktı" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Uygulanabilir Belge Türleri apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Kullanıcı atamaları için kurallar kurun. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} için yetersiz izin @@ -4152,7 +4294,6 @@ DocType: Communication,To and CC,To ve CC DocType: SMS Settings,Static Parameters,Statik Parametreleri DocType: Chat Message,Room,oda apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},şuna güncellendi {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Arka plan işleri çalışmıyor. Lütfen Yönetici ile iletişime geçin DocType: Portal Settings,Custom Menu Items,Özel Menü Öğeleri apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Web Sitesi Slayt gösterisine eklenen tüm resimler herkese açık olmalıdır DocType: Workflow State,chevron-right,chevron-right @@ -4167,11 +4308,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} değer seçildi DocType: DocType,Allow Auto Repeat,Otomatik Tekrarlamaya İzin Ver apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Gösterilecek değer yok +DocType: DocType,URL for documentation or help,Dokümantasyon veya yardım için URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-posta şablonu apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} kaydı başarıyla güncellendi. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},"{0} kullanıcısı, {1} dokümanı için rol izni yoluyla doktip erişimine sahip değil" apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Kullanıcı adı ve şifre gereklidir +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,İzin Vermek\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Son belge almak yenileyin. DocType: User,Security Settings,Güvenlik Ayarları apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Sütun ekle @@ -4181,6 +4324,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Meta Filtre apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Lütfen ekte {0} bul: {1} DocType: Web Page,Set Meta Tags,Meta Etiketlerini Ayarla +DocType: Email Account,Use SSL for Outgoing,Giden için SSL kullan 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: S3 Backup Settings,Backup Limit,Yedekleme Sınırı DocType: Dashboard Chart,Line,Hat @@ -4213,4 +4357,3 @@ DocType: DocField,Ignore User Permissions,Kullanıcı İzinlerini Yoksay apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Başarıyla kaydedildi apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,senin kaydolma doğrulamak için yöneticinize danışın DocType: Domain Settings,Active Domains,Aktif Etki Alanları -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Günlüğü göster diff --git a/frappe/translations/uk.csv b/frappe/translations/uk.csv index 131abdfcbf..cbb09faa5b 100644 --- a/frappe/translations/uk.csv +++ b/frappe/translations/uk.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Будь ласка, виберіть поле Сума." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Завантаження файлу імпорту ... DocType: Assignment Rule,Last User,Останній користувач -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, була призначена вам користувачем {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,За замовчуванням сесії збережено apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Перезавантажити файл DocType: Email Queue,Email Queue records.,Черга електронної пошти записів. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} Дерево DocType: User,User Emails,листи користувачів DocType: User,Username,Ім'я користувача apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Імпортувати Zip +DocType: Scheduled Job Type,Create Log,Створити журнал apps/frappe/frappe/model/base_document.py,Value too big,Занадто велике значення DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Test Run Script @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,Щомісяця DocType: Address,Uttarakhand,Уттаракханд DocType: Email Account,Enable Incoming,Включення вхідної apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Небезпека -DocType: Address,Email Address,Адреса електронної пошти +apps/frappe/frappe/www/login.py,Email Address,Адреса електронної пошти DocType: Workflow State,th-large,й за величиною DocType: Communication,Unread Notification Sent,"Непрочитана повідомлення, направленого" apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Експорт не допускаються. Ви повинні {0} роль експорту. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Ск DocType: DocType,Is Published Field,Є Опубліковано поле DocType: GCalendar Settings,GCalendar Settings,Налаштування GCalendar DocType: Email Group,Email Group,E-mail Група +apps/frappe/frappe/__init__.py,Only for {},Лише для {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Календар Google - не вдалося видалити подію {0} з календаря Google, код помилки {1}." DocType: Event,Pulled from Google Calendar,Стягнуто з Календаря Google DocType: Note,Seen By,Побачений apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Додати кілька -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Ви отримали кілька енергетичних балів apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Недійсне зображення користувача. DocType: Energy Point Log,Reverted,Повернено DocType: Success Action,First Success Message,Перше повідомлення про успіх @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не схож apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неправильне значення: {0} повинен бути {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Зміна властивостей полів (приховати, тільки для читання, дозвіл і т.д.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Вдячний +DocType: Notification Settings,Document Share,Доля документа DocType: Workflow State,lock,замкнути apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,"Налаштування для сторінки ""Контакти""" apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Адміністратор Записаний У @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Якщо цей параметр включений, документ позначається як проглядається, коли користувач вперше відкриває його" DocType: Auto Repeat,Repeat on Day,Повторіть день DocType: DocField,Color,Колір +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Позначити всіх як прочитані DocType: Data Migration Run,Log,Ввійти DocType: Workflow State,indent-right,абзац правом DocType: Has Role,Has Role,має роль @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Показати відстеження DocType: DocType,Default Print Format,За замовчуванням для друку Формат DocType: Workflow State,Tags,Ключові слова +DocType: Onboarding Slide,Slide Type,Тип слайда apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Нічого: Кінець робочого процесу apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поле {0} не може бути встановлений як унікальний в {1}, так як не є унікальними існуючі значення" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Типи документів @@ -136,7 +139,6 @@ DocType: Language,Guest,Гість DocType: DocType,Title Field,Назва Область DocType: Error Log,Error Log,Журнал помилок apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Недійсна URL-адреса -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,Останні 7 днів apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Повтори на кшталт ""абвабвабв"" вгадати лише трохи важче, ніж ""абв""" DocType: Notification,Channel,Канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Якщо ви думаєте, що це несанкціоноване, будь ласка, змініть пароль адміністратора." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Клієнт apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Виберіть стовпчик apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ця форма була змінена після завантаження його DocType: Address,Himachal Pradesh,Хімачал-Прадеш +DocType: Notification Log,Notification Log,Журнал сповіщень DocType: System Settings,"If not set, the currency precision will depend on number format","Якщо не встановлено, то точність валюти буде залежати від формату чисел" DocType: System Settings,"If not set, the currency precision will depend on number format","Якщо не встановлено, то точність валюти буде залежати від формату чисел" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Відкрийте Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,К apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Послати DocType: Workflow Action Master,Workflow Action Name,Назва дії робочого процесу apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType не можуть бути об'єднані -DocType: Web Form Field,Fieldtype,FieldType +DocType: Onboarding Slide Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Чи не поштовий файл DocType: Global Search DocType,Global Search DocType,Глобальний пошук DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Листа відправлено? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Переключити діаграму apps/frappe/frappe/desk/form/save.py,Did not cancel,Чи не скасувати DocType: Social Login Key,Client Information,Інформація клієнта +DocType: Energy Point Rule,Apply this rule only once per document,Застосовуйте це правило лише один раз для кожного документа DocType: Workflow State,plus,плюс +DocType: DocField,Read Only Depends On,Читання залежить лише від цього apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Ви увійшли як Гість або Administrator DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Файловий менеджер @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Причина 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Немає активності +DocType: Server Script,Script Manager,Менеджер сценаріїв +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Немає активності apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Сторонні програми apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Перший користувач стане System Manager (ви можете змінити це пізніше). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Сьогодні немає подій apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ви не можете давати оглядові бали собі apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType має бути Submittable для вибраної події Doc DocType: Workflow State,circle-arrow-up,Круг-стрілка вгору @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Не дозволено для {0}: {1}. Поле з обмеженням: {2} 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,You are not allowed to delete a standard Website Theme,Ви не можете видалити стандартну тему веб-сайту +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Створіть свій перший {0} DocType: Data Import,Log Details,Деталі журналу DocType: Workflow Transition,Example,Приклад DocType: Webhook Header,Webhook Header,Заголовок Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Фонова бесіда apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Відзначити як прочитане apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Оновлення {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Слайд на борту <b>{0}</b> з тим самим порядком слайдів уже існує apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Відключити звіт DocType: Translation,Contributed Translation Doctype Name,Назва доктрипу перекладу +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму DocType: PayPal Settings,Redirect To,перенаправити DocType: Data Migration Mapping,Pull,Витягніть DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Формат: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Внутрішній зап DocType: Energy Point Settings,Review Levels,Перегляньте рівні DocType: Workflow State,Comment,Коментар DocType: Data Migration Plan,Postprocess Method,Метод постпроцесу +DocType: DocType Action,Action Type,Тип дії apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сфотографувати DocType: Assignment Rule,Round Robin,Кругової apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Ви можете змінити проведені документи, якщо скасуєте їх, а потім відновите." @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Зберегти як DocType: Comment,Seen,Відвідування apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Показати більше інформації +DocType: Server Script,Before Submit,Перед подачею DocType: System Settings,Run scheduled jobs only if checked,Запускати заплановані завдання тільки якщо позначено apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,"Буде показано, тільки якщо заголовки розділів включені" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,архів @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox ключ доступу apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Неправильне ім'я поля <b>{0}</b> у add_fetch конфігурації користувацького скрипту apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,"Виберіть контакти Google, до яких слід синхронізувати контакт." DocType: Web Page,Main Section (HTML),Основний розділ (HTML) +DocType: Scheduled Job Type,Annual,Річний DocType: Workflow State,headphones,навушники apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Пароль потрібно або вибрати Надалі пароль DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,наприклад replies@yourcomany.com. Всі відповіді будуть приходити до цього поштову скриньку. DocType: Slack Webhook URL,Slack Webhook URL,URL-адреса Slack Webhook +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Визначає порядок слайду у майстра. Якщо слайд не відображається, слід встановити пріоритет на 0." DocType: Data Migration Run,Current Mapping,Поточне відображення apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Дійсно електронна пошта та ім'я потрібно apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Зробіть усі вкладення приватними @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Перехідні правила apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Показано лише перші {0} рядки в попередньому перегляді apps/frappe/frappe/core/doctype/report/report.js,Example:,Приклад: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Обмеження DocType: Workflow,Defines workflow states and rules for a document.,Визначає стани робочого процесу і правила для документу. DocType: Workflow State,Filter,Фільтр apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Перевірте Журнал помилок для отримання додаткової інформації: {0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Робота apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} вийшов: {1} DocType: Address,West Bengal,West Bengal +DocType: Onboarding Slide,Information,Інформація apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Неможливо встановити Призначити Проведеним якщо не проводиться DocType: Transaction Log,Row Index,Індекс Ряди DocType: Social Login Key,Facebook,Facebook @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,кнопка Допомога DocType: Kanban Board Column,purple,фіолетовий DocType: About Us Settings,Team Members,Члени команди +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Запускатимуть заплановані завдання лише раз на день для неактивних сайтів. За замовчуванням 4 дні, якщо встановлено 0." DocType: Assignment Rule,System Manager,Менеджер системи +DocType: Scheduled Job Log,Scheduled Job,Запланована робота DocType: Custom DocPerm,Permissions,Дозволи apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Слабо Webhooks для внутрішньої інтеграції DocType: Dropbox Settings,Allow Dropbox Access,Дозволити доступ Dropbox @@ -402,6 +420,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Ск DocType: Email Flag Queue,Email Flag Queue,Черга Прапор Email DocType: Access Log,Columns / Fields,Стовпці / поля apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Таблиці стилів для форматів друку +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Поле зведеної функції потрібно для створення діаграми інформаційної панелі apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Неможливо ідентифікувати відкрите {0}. Спробуйте що-небудь інше. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ваша інформація була надіслана apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Користувач {0} не може бути вилучена @@ -418,11 +437,12 @@ DocType: Property Setter,Field Name,Ім'я поля DocType: Assignment Rule,Assign To Users,Призначити користувачам apps/frappe/frappe/public/js/frappe/utils/utils.js,or,або apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Модуль ім'я ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Продовжувати +DocType: Onboarding Slide,Continue,Продовжувати apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Інтеграція Google відключена. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,сертифікат apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Перевірка ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Ваше завдання {0} {1} видалено apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Перша колонка даних повинна бути порожньою. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Показати всі версії apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Переглянути коментар @@ -432,12 +452,14 @@ DocType: User,Restrict IP,Обмежити IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Панель приладів apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Не вдалося відправити електронну пошту в цей час apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Календар Google - Не вдалося оновити подію {0} в Календарі Google, код помилки {1}." +DocType: Notification Log,Email Content,Вміст електронної пошти apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Пошук або введіть команду DocType: Activity Log,Timeline Name,терміни Ім'я apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Лише один {0} можна встановити як основний. DocType: Email Account,e.g. smtp.gmail.com,наприклад smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Додати нове правило DocType: Contact,Sales Master Manager,Майстер Менеджер з продажу +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,"Потрібно ввімкнути JavaScript, щоб ваша програма працювала." DocType: User Permission,For Value,Для значення DocType: Event,Google Calendar ID,Ідентифікатор календаря Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Останній крок @@ -453,6 +475,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Поле середнього ім apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Імпорт {0} з {1} DocType: GCalendar Account,Allow GCalendar Access,Дозволити доступ до GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} обов'язкове поле +DocType: DocType,Documentation Link,Посилання на документацію apps/frappe/frappe/templates/includes/login/login.js,Login token required,Треба ввімкнути токен apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Щомісячний рейтинг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Виберіть кілька елементів списку @@ -474,6 +497,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Посилання на файл DocType: Version,Table HTML,Таблиця HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Додати Передплатники +DocType: Notification Log,Energy Point,Енергетична точка apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Майбутні події Сьогодні DocType: Google Calendar,Push to Google Calendar,Натисніть на Google Календар DocType: Notification Recipient,Email By Document Field,E-mail По області документа @@ -489,12 +513,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Далеко DocType: Currency,Fraction Units,Кількість часток в одиниці валюти apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} від {1} до {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Позначити як виконане DocType: Chat Message,Type,Тип DocType: Google Settings,OAuth Client ID,Ідентифікатор клієнта OAuth DocType: Auto Repeat,Subject,Тема apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Повернутися до столу DocType: Web Form,Amount Based On Field,Сума На підставі поле +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} не відслідковується жодної версії. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Обов’язково зазначте користувача для оприлюднення DocType: DocField,Hidden,Прихований DocType: Web Form,Allow Incomplete Forms,Дозволити Неповні форми @@ -517,6 +541,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,"Будь ласка, перевірте свою електронну пошту для перевірки" apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Fold не може бути в кінці вигляді DocType: Communication,Bounced,Повернені +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,з DocType: Deleted Document,Deleted Name,видаляється Ім'я apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Системні користувачі і користувачі веб-сайту DocType: Workflow Document State,Doc Status,Док Статус @@ -527,6 +552,7 @@ DocType: Language,Language Code,таблиця умовних сигналів DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Примітка. За замовчуванням надсилаються електронні листи для невдалих резервних копій. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Додати фільтр apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS відправлено наступних номерів: {0} +DocType: Notification Settings,Assignments,Призначення apps/frappe/frappe/utils/data.py,{0} and {1},{0} і {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Почніть бесіду. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Завжди додавайте заголовок ""Чернетка"" при друці проектів документів" @@ -535,6 +561,7 @@ DocType: Data Migration Run,Current Mapping Start,Поточне відобра apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email був відзначений як спам DocType: Comment,Website Manager,Менеджер веб-сайту apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Відвантаження файлу відключено. Будь ласка спробуйте ще раз. +DocType: Data Import Beta,Show Failed Logs,Показати помилкові журнали apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Переклади apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Ви вибрали проект або скасовані документи apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} визначено як {1} через {2} @@ -542,7 +569,9 @@ apps/frappe/frappe/model/document.py,Document Queued,документ Queued DocType: GSuite Templates,Destination ID,Ідентифікатор пункту призначення DocType: Desktop Icon,List,Список DocType: Activity Log,Link Name,посилання Ім'я +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,У вас \ DocType: System Settings,mm/dd/yyyy,мм / дд / рррр +DocType: Onboarding Slide,Onboarding Slide,Бортовий слайд apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неправильний пароль: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неправильний пароль: DocType: Print Settings,Send document web view link in email,Надіслати документ посилання на веб-перегляду в електронній пошті @@ -604,6 +633,7 @@ DocType: Kanban Board Column,darkgrey,темно-сірий apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Успішно: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"Неможливо змінити дані користувача в демо. Будь ласка, підписатися на новий обліковий запис на https://erpnext.com" apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Крапля +DocType: Dashboard Chart,Aggregate Function Based On,Функція сукупності на основі apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,"Ласка, дублювати це внести зміни" apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,"Натисніть клавішу Enter, щоб зберегти" apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,Покоління PDF вдалося через битих посилань зображення @@ -617,7 +647,9 @@ DocType: Notification,Days Before,Днів до apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Щоденні події повинні закінчуватися в той же день. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Редагувати ... DocType: Workflow State,volume-down,Обсяг вниз +DocType: Onboarding Slide,Help Links,Довідкові посилання apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Доступ заборонено з цієї IP-адреси +DocType: Notification Settings,Enable Email Notifications,Увімкнути сповіщення електронною поштою apps/frappe/frappe/desk/reportview.py,No Tags,немає тегів DocType: Email Account,Send Notification to,Відправити повідомлення DocType: DocField,Collapsible,Складаний @@ -646,6 +678,7 @@ DocType: Google Drive,Last Backup On,Остання резервна копія DocType: Customize Form Field,Customize Form Field,Налаштувати поля форми DocType: Energy Point Rule,For Document Event,Для документальної події DocType: Website Settings,Chat Room Name,Назва чатної кімнати +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Без змін DocType: OAuth Client,Grant Type,Тип гранту apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,"Перевірте, які документи можуть бути прочитані за допомогою користувача" DocType: Deleted Document,Hub Sync ID,Ідентифікатор концентратора синхронізації @@ -653,6 +686,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,ви DocType: Auto Repeat,Quarterly,Щоквартальний apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Домен електронної пошти не налаштований для цього облікового запису, створити один?" DocType: User,Reset Password Key,Скидання пароля ключа +DocType: Dashboard Chart,All Time,Весь час apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Незаконний стан документа для {0} DocType: Email Account,Enable Auto Reply,Включити Auto Відповісти apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не бачив @@ -665,6 +699,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,По DocType: Email Account,Notify if unreplied,"Повідомте, якщо відповіді адресата" apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Сканування QR-коду та введення відображеного коду. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Увімкнути градієнти +DocType: Scheduled Job Type,Hourly Long,Щогодини Довго DocType: System Settings,Minimum Password Score,Мінімальний бал пароля DocType: System Settings,Minimum Password Score,Мінімальний бал пароля DocType: DocType,Fields,Поля @@ -673,11 +708,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Батьк apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,Резервне копіювання S3 завершено! apps/frappe/frappe/config/desktop.py,Developer,Розробник apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Створений +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Щоб увімкнути це, дотримуйтесь інструкцій за наступним посиланням: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} рядка {1} не може мати обидва URL і дочірні елементи apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Для наступних таблиць має бути принаймні один рядок: {0} DocType: Print Format,Default Print Language,Мова друку за замовчуванням apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предки apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корінь {0} не може бути вилучена +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Немає невдалих журналів apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Коментарів немає apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Будь-ласка, настройте SMS, перш ніж встановити його як метод автентифікації, через SMS Settings" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Обидва DocType і ім'я потрібно @@ -701,6 +738,7 @@ DocType: Website Settings,Footer Items,Footer товари apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Меню DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Щодня +DocType: Onboarding Slide,Max Count,Макс apps/frappe/frappe/config/users_and_permissions.py,User Roles,Ролі користувачів DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Нерухомість сетер скасовує стандартний DOCTYPE або поле властивості apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не можна оновити: Неправильне / знечинене посилання @@ -719,6 +757,7 @@ DocType: Footer Item,"target = ""_blank""",мета = "_blank" DocType: Workflow State,hdd,жорсткий диск DocType: Integration Request,Host,господар DocType: Data Import Beta,Import File,Імпортувати файл +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Помилка шаблону apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Стовпець <b>{0}</b> вже існує. DocType: ToDo,High,Високий apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Нова подія @@ -734,6 +773,7 @@ DocType: Web Form Field,Show in filter,Показати в фільтрі DocType: Address,Daman and Diu,Даман і Діу apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Проект DocType: Address,Personal,Особистий +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Налаштування сировини для друку ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Докладні відомості див. У https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region. apps/frappe/frappe/config/settings.py,Bulk Rename,Масове перейменування DocType: Email Queue,Show as cc,Показати в кубічних сантиметрах @@ -743,6 +783,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Візьміть в DocType: Contact Us Settings,Introductory information for the Contact Us Page,Вступна інформація для контакт ми сторінка DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,незгоду +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Скасування документів DocType: User,Send Notifications for Email threads,Надсилайте сповіщення для потоків електронної пошти apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,професор apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не в режимі розробника @@ -750,7 +791,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Резер DocType: DocField,In Global Search,У Global Пошук DocType: System Settings,Brute Force Security,Брутні сили безпеки DocType: Workflow State,indent-left,відступ зліва- -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Це ризиковано, щоб видалити цей файл: {0}. Будь ласка, зверніться до менеджера системи." DocType: Currency,Currency Name,Назва валюти apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Немає повідомлень електронної пошти @@ -765,11 +805,13 @@ DocType: Energy Point Rule,User Field,Поле користувача DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Натисніть Видалити apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} вже відписався для {1} {2} +DocType: Scheduled Job Type,Stopped,Зупинився apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Не видалити apps/frappe/frappe/desk/like.py,Liked,Вподобане apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Відправити зараз apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандартний DocType не може бути виконаний у форматі друку за замовчуванням, використовуйте Налаштування форми" apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Стандартний DocType не може бути виконаний у форматі друку за замовчуванням, використовуйте Налаштування форми" +DocType: Server Script,Allow Guest,Дозволити гостям DocType: Report,Query,Запит DocType: Customize Form,Sort Order,Порядок сортування apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},"""У вигляді списку"" не допускається для типу {0} в рядку {1}" @@ -791,10 +833,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Два методу автентифікації факторів apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Спочатку встановіть ім'я та збережіть запис. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Записи +DocType: DocType Link,Link Fieldname,Назва поля посилання apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Оприлюднено для {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Відмовитися від підписки DocType: View Log,Reference Name,Ім'я посилання apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Змінити користувача +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Спочатку apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Оновити переклади DocType: Error Snapshot,Exception,Виняток DocType: Email Account,Use IMAP,Використання IMAP @@ -809,6 +853,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, що визначають переходи станів в робочому процесі." DocType: File,Folder,Тека DocType: Website Route Meta,Website Route Meta,Веб-сайт Route Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Бортове поле слайдів DocType: DocField,Index,Індекс DocType: Email Group,Newsletter Manager,Розсилка менеджер apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,Варіант 1 @@ -835,7 +880,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,В apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Налаштувати діаграми DocType: User,Last IP,Останнє IP- apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Будь ласка, додайте тему до вашої електронної пошти" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Новий документ {0} було надіслано вами {1}. DocType: Data Migration Connector,Data Migration Connector,Коннектор міграції даних apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} повернено {1} DocType: Email Account,Track Email Status,Відстеження стану електронної пошти @@ -888,6 +932,7 @@ DocType: Email Account,Default Outgoing,За замовчуванням Вихі DocType: Workflow State,play,грати apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,"Натисніть на посилання нижче, щоб завершити реєстрацію і встановити новий пароль" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Чи не додати +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} набрав {1} балів за {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Немає Облікові записи електронної пошти не Assigned DocType: S3 Backup Settings,eu-west-2,eu-захід-2 DocType: Contact Us Settings,Contact Us Settings,Налаштування Контактів @@ -896,6 +941,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Пошу DocType: Workflow State,text-width,Текст ширина apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Досягнуто обмеження за кількістю долучень для цього запису apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Пошук за іменем файлу або розширенням +DocType: Onboarding Slide,Slide Title,Заголовок слайда DocType: Notification,View Properties (via Customize Form),Перегляд властивостей (через Налаштувати формі) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Клацніть файл, щоб вибрати його." DocType: Note Seen By,Note Seen By,Примітка побачених @@ -922,13 +968,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Надіслати URL-адресу DocType: System Settings,Allow Consecutive Login Attempts ,Дозволити послідовні вхідні спроби apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,"Під час здійснення платежу сталася помилка. Будь ласка, зв'яжіться з нами." +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Якщо тип слайда - "Створити" або "Налаштування", у файлі {ref_doctype} .py, який повинен бути виконаний після завершення слайду, повинен бути метод "create_onboarding_docs"." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} днів тому DocType: Email Account,Awaiting Password,очікування пароля DocType: Address,Address Line 1,Адресний рядок 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Не нащадки DocType: Contact,Company Name,Назва компанії DocType: Custom DocPerm,Role,Роль -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Налаштування ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,у ваш браузер apps/frappe/frappe/utils/data.py,Cent,Цент ,Recorder,Диктофон @@ -988,6 +1034,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Відстежуйте, чи адресат відкрив вашу адресу електронної пошти. <br> Примітка. Якщо ви надсилаєте декількох одержувачів, навіть якщо 1 одержувач читає це повідомлення, він вважатиметься "відкритим"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Відсутні значення Потрібно apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Дозволити доступ до контактів Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Обмежений DocType: Data Migration Connector,Frappe,фраппе apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Відзначити як непрочитане DocType: Activity Log,Operation,Операція @@ -1041,6 +1088,7 @@ DocType: Web Form,Allow Print,дозволити друк DocType: Communication,Clicked,Натиснув apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Не слідкувати apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Немає доступу для '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Установіть обліковий запис електронної пошти за замовчуванням у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,планується відправити DocType: DocType,Track Seen,трек відвідування DocType: Dropbox Settings,File Backup,Файл резервного копіювання @@ -1049,12 +1097,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,"Немає { apps/frappe/frappe/config/customization.py,Add custom forms.,Додати користувача форми. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} в {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,представив цей документ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Система забезпечує безліч визначених функцій. Ви можете додати нові ролі, щоб встановити більш тонкі дозволу." DocType: Communication,CC,CC DocType: Country,Geo,Гео DocType: Data Migration Run,Trigger Name,Назва тригера -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Галузі +DocType: Onboarding Slide,Domains,Галузі DocType: Blog Category,Blog Category,Категорія блогу apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Якщо Ви не можете, тому що така умова не вдається:" DocType: Role Permission for Page and Report,Roles HTML,Ролі HTML @@ -1095,7 +1142,6 @@ DocType: Assignment Rule Day,Saturday,Субота DocType: User,Represents a User in the system.,Являє користувача в системі. DocType: List View Setting,Disable Auto Refresh,Вимкнути автоматичне оновлення DocType: Comment,Label,Етикетка -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","Завдання {0}, що ви призначили {1}, був закритий." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Будь ласка, закрийте це вікно" DocType: Print Format,Print Format Type,Тип формату друку DocType: Newsletter,A Lead with this Email Address should exist,Провід з цим Адресою електронної пошти повинні існувати @@ -1112,6 +1158,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Налаштуванн apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,вибрати DocType: Data Export,Filter List,Список фільтрів DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: мм DocType: Email Account,Auto Reply Message,Автоматична відповідь повідомлення DocType: Data Migration Mapping,Condition,Стан apps/frappe/frappe/utils/data.py,{0} hours ago,{0} годин тому @@ -1130,12 +1177,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,База знань Учасник DocType: Communication,Sent Read Receipt,направлено прочитання DocType: Email Queue,Unsubscribe Method,метод Відмовитися +DocType: Onboarding Slide,Add More Button,Додати більше кнопки DocType: GSuite Templates,Related DocType,пов'язані DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,"Редагувати, щоб додати вміст" apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Виберіть Мови apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Інформація про картку apps/frappe/frappe/__init__.py,No permission for {0},Немає доступу для {0} DocType: DocType,Advanced,Передовий +DocType: Onboarding Slide,Slide Image Source,Слайд-джерело зображення apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,"Здається, ключ API або API Секрет неправильно !!!" apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Посилання: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,пані @@ -1152,6 +1201,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,майст DocType: DocType,User Cannot Create,Користувач не може створювати apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успішно виконано apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,доступ Dropbox затверджений! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,"Ви впевнені, що хочете об'єднати {0} з {1}?" DocType: Customize Form,Enter Form Type,Введіть Form Тип DocType: Google Drive,Authorize Google Drive Access,Авторизуйте доступ до Диска Google apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Відсутній параметр Kanban Board Name @@ -1161,7 +1211,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозвіл DOCTYPE, DocType. Будь обережний!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Індивідуальні формати для друку, електронної пошти" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Сума {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Оновлено до нової версії DocType: Custom Field,Depends On,Залежить від DocType: Kanban Board Column,Green,Зелений DocType: Custom DocPerm,Additional Permissions,Додаткові права @@ -1189,6 +1238,7 @@ DocType: Energy Point Log,Social,Соціальний apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Календар Google - не вдалося створити Календар для {0}, код помилки {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Редагування рядків DocType: Workflow Action Master,Workflow Action Master,Мастер дій робочого процесу +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Видалити все DocType: Custom Field,Field Type,Поле Тип apps/frappe/frappe/utils/data.py,only.,тільки. DocType: Route History,Route History,Історія маршрутів @@ -1225,11 +1275,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Забули пароль? DocType: System Settings,yyyy-mm-dd,рррр-мм-дд apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,помилка серверу +DocType: Server Script,After Delete,Після видалення apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Переглянути всі попередні звіти. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Ім’я користувача є обов’язковим DocType: Website Slideshow,Website Slideshow,Слайд-шоу веб-сайту apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Немає даних DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Посилання, що це веб-сайт домашня сторінка. Стандартні посилання (індекс, Ввійти, продукти, блог, о, контакт)" +DocType: Server Script,After Submit,Після подання apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Помилка аутентифікації при одержанні листа від електронної пошти рахунки {0}. Повідомлення від сервера: {1} DocType: User,Banner Image,Картинка банера DocType: Custom Field,Custom Field,Користувацькі поля @@ -1270,15 +1322,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Якщо будь-яку роль користувача позначено, тоді він стає ""Системним користувачем"". ""Системний користувач"" має доступ до стільниці" DocType: System Settings,Date and Number Format,Дата і номер Формат apps/frappe/frappe/model/document.py,one of,один з -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Перевірка одного моменту apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Показати Теги DocType: DocField,HTML Editor,Редактор HTML 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,Заходи -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач +DocType: DocType,Actions,Заходи DocType: Workflow State,align-justify,вирівняти-виправдання DocType: User,Middle Name (Optional),По батькові (необов'язково) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Не дозволено @@ -1293,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Немає DocType: System Settings,Security,Безпека apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Планується відправити {0} одержувачів apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Вирізати +DocType: Server Script,After Save,Після збереження apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},перейменований з {0} до {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} з {1} ({2} рядки з дітьми) DocType: Currency,**Currency** Master,**Валютний** Мастер @@ -1319,16 +1370,19 @@ DocType: Prepared Report,Filter Values,Значення фільтра DocType: Communication,User Tags,Система Мітки DocType: Data Migration Run,Fail,Невдалий DocType: Workflow State,download-alt,скачати альт- +DocType: Scheduled Job Type,Last Execution,Остання страта DocType: Data Migration Run,Pull Failed,Потягнути не вдалося apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Показати / приховати картки DocType: Communication,Feedback Request,Зворотній зв'язок Запит apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Імпортувати дані з файлів CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Ці поля відсутні: +DocType: Notification Log,From User,Від користувача apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Скасування {0} DocType: Web Page,Main Section,Основний розділ DocType: Page,Icon,Значок apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Підказка: Увімкніть символи, цифри і великі літери в паролі" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Підказка: Увімкніть символи, цифри і великі літери в паролі" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Налаштування сповіщень для згадок, завдань, енергетичних точок тощо." DocType: DocField,Allow in Quick Entry,Дозволити в "Швидкому вході" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,дд / мм / рррр @@ -1360,7 +1414,6 @@ DocType: Website Theme,Theme URL,Тема URL DocType: Customize Form,Sort Field,Поле сортування DocType: Razorpay Settings,Razorpay Settings,налаштування Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Зміна фільтра -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Додати ще DocType: System Settings,Session Expiry Mobile,Час вичерпання мобільної сесії apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неправильний користувач або пароль apps/frappe/frappe/templates/includes/search_box.html,Search results for,Результати пошуку для @@ -1376,8 +1429,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Правило енергетичної точки DocType: Communication,Delayed,Затримується apps/frappe/frappe/config/settings.py,List of backups available for download,"Список резервних копій, доступних для завантаження" +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Спробуйте новий імпорт даних apps/frappe/frappe/www/login.html,Sign up,Зареєструватися apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Рядок {0}: заборонено вимикати Обов'язковий для стандартних полів +DocType: Webhook,Enable Security,Увімкнути безпеку apps/frappe/frappe/config/customization.py,Dashboards,Інформаційні панелі DocType: Test Runner,Output,вихід DocType: Milestone,Track Field,Бігова доріжка @@ -1385,6 +1440,7 @@ DocType: Notification,Set Property After Alert,Установка властив apps/frappe/frappe/config/customization.py,Add fields to forms.,Додавання полів форм. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Схоже, щось не так з конфігурацією Paypal цього сайту." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Додати відгук +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} призначив вам нове завдання {1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Розмір шрифту (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Лише стандартні DocTypes можуть бути налаштовані з налаштування форми. DocType: Email Account,Sendgrid,Sendgrid @@ -1396,8 +1452,10 @@ DocType: Portal Menu Item,Portal Menu Item,Пункт меню порталу apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Встановити фільтри DocType: Contact Us Settings,Email ID,ІД епошти DocType: Energy Point Rule,Multiplier Field,Поле множника +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Не вдалося створити замовлення Razorpay. Зверніться до адміністратора DocType: Dashboard Chart,Time Interval,Проміжок часу DocType: Activity Log,Keep track of all update feeds,Слідкуйте за всіма каналами оновлення +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} ділиться з вами документом {1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Список ресурсів, які Клієнт App матиме доступ до після того, як користувач дозволяє. <br> наприклад, проект" DocType: Translation,Translated Text,перекладений текст DocType: Contact Us Settings,Query Options,Опції Запит @@ -1416,6 +1474,7 @@ DocType: DefaultValue,Key,Ключ DocType: Address,Contacts,контакти DocType: System Settings,Setup Complete,Завершення установки apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Звіт про усі оприлюднені документи +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблон імпорту повинен мати тип .csv, .xlsx або .xls" apps/frappe/frappe/www/update-password.html,New Password,Новий пароль apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Фільтр {0} відсутній apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,"На жаль, Ви не можете видаляти коментарі, що генеруються автоматично" @@ -1432,6 +1491,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Біжи DocType: Blog Post,Content (HTML),Вміст (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Налаштування для DocType: Personal Data Download Request,User Name,Ім'я користувача DocType: Workflow State,minus-sign,мінус знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не знайдено @@ -1439,11 +1499,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Немає {0} дозві apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Дозволи Експорт призначених для користувача apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Немає елементів. DocType: Data Export,Fields Multicheck,Поля Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Завершено DocType: Activity Log,Login,Увійти DocType: Web Form,Payments,Платежі apps/frappe/frappe/www/qrcode.html,Hi {0},Привіт {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Інтеграція Диска Google. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} повернув свої бали на {1} {2} DocType: System Settings,Enable Scheduled Jobs,Включити запланованих завдань apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Примітки: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Неактивний @@ -1468,6 +1528,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаб apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Помилка доступу apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Назва {0} не може бути {1} DocType: User Permission,Applicable For,Стосується для +DocType: Dashboard Chart,From Date,З дати apps/frappe/frappe/core/doctype/version/version_view.html,Success,Успіх apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,сесія закінчилася apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,сесія закінчилася @@ -1480,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; не допускаються в умові DocType: Async Task,Async Task,Асинхронний Завдання DocType: Workflow State,picture,картина -apps/frappe/frappe/www/complete_signup.html,Complete,Повний +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Повний DocType: DocType,Image Field,зображення поля DocType: Print Format,Custom HTML Help,Особливий HTML Допомога DocType: LDAP Settings,Default Role on Creation,Роль за створенням за замовчуванням @@ -1488,6 +1549,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Наступна держава DocType: User,Block Modules,Блок модулі DocType: Print Format,Custom CSS,Користувацькі CSS +DocType: Energy Point Rule,Apply Only Once,Застосовувати лише один раз apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Додати коментар DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Ігнорується: {0} до {1} @@ -1499,6 +1561,7 @@ DocType: Email Account,Default Incoming,За замовчуванням Вхід DocType: Workflow State,repeat,повторення DocType: Website Settings,Banner,Банер apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Значення має бути одним із {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Скасувати всі документи DocType: Role,"If disabled, this role will be removed from all users.","Якщо ця функція відключена, ця роль буде віддалена від усіх користувачів." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Перейдіть до списку {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Довідка з пошуку @@ -1507,6 +1570,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Зареє apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоматичне повторення цього документа вимкнено. DocType: DocType,Hide Copy,Приховати Копіювати apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Очистіть всі ролі +DocType: Server Script,Before Save,Перед збереженням apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} має бути унікальним apps/frappe/frappe/model/base_document.py,Row,Ряд apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC та шаблон електронної пошти" @@ -1517,7 +1581,6 @@ DocType: Chat Profile,Offline,Offline apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Імпортовано {0} DocType: User,API Key,ключ API DocType: Email Account,Send unsubscribe message in email,Надіслати повідомлення відмови від підписки на електронну пошту -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Редагувати apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname який буде DocType для цього поля посилання. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,"Документи, присвоєні вами і вас." apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Ви також можете скопіювати та вставити це @@ -1549,8 +1612,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Долучити зображення DocType: Workflow State,list-alt,Список Alt- apps/frappe/frappe/www/update-password.html,Password Updated,Пароль оновлено +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Кроки для підтвердження вашого входу apps/frappe/frappe/utils/password.py,Password not found,Пароль не знайдений +DocType: Webhook,Webhook Secret,Webhook Secret DocType: Data Migration Mapping,Page Length,Довжина сторінки DocType: Email Queue,Expose Recipients,Expose Одержувачі apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Додати до є обов'язковим для вхідних повідомлень @@ -1578,6 +1643,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимальний розмір вкладення (в МБ) apps/frappe/frappe/www/login.html,Have an account? Login,Вже зареєстровані? Ввійти +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Налаштування друку ... DocType: Workflow State,arrow-down,Стрілка вниз apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Рядок {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Користувач не має права видаляти {0}: {1} @@ -1599,6 +1665,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox доступ до секретних DocType: Tag Link,Document Title,Заголовок документа apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обов’язково) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому DocType: Social Login Key,Social Login Provider,Постачальник соціальних входу apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Додати ще один коментар apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,У файлі не знайдено жодних даних. Повторно встановіть новий файл із даними. @@ -1613,11 +1680,12 @@ DocType: Workflow State,hand-down,виносити apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".","Не знайдено полів, які можна використовувати як стовпчик Канбана. Використовуйте форму "Налаштувати", щоб додати спеціальне поле типу "Вибрати"." DocType: Address,GST State,GST держава apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Неможливо встановити Скасувати без Проведення +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Користувач ({0}) DocType: Website Theme,Theme,Тема DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,"Перенаправлення URI, пов'язаного з Auth кодексу" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Відкрийте довідку DocType: DocType,Is Submittable,Є Submittable -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Нове згадування +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Нове згадування apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Не синхронізовано нові контакти Google. DocType: File,Uploaded To Google Drive,Завантажено на Google Диск apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,"Значення для поля реєстрації може бути або 0, або 1" @@ -1629,7 +1697,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Вхідні DocType: Kanban Board Column,Red,Червоний DocType: Workflow State,Tag,Тег -DocType: Custom Script,Script,Сценарій +DocType: Report,Script,Сценарій apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Документ неможливо зберегти. DocType: Energy Point Rule,Maximum Points,Максимальний бал apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мої налаштування @@ -1659,9 +1727,12 @@ DocType: Address,Haryana,Харьяна apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} оцінку балів за {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Ролі можуть бути встановлені для користувачів з їх сторінки користувача. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Додати коментар +DocType: Dashboard Chart,Select Date Range,Виберіть Діапазон дат DocType: DocField,Mandatory,Обов'язкове apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модуль для експорту +DocType: Scheduled Job Type,Monthly Long,Щомісяця довго apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Не встановлено базовий набір дозволів +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,"Надішліть електронний лист на {0}, щоб пов’язати його тут" apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Значення Провести, Скасувати, Відновити" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do @@ -1670,7 +1741,6 @@ DocType: Milestone Tracker,Track milestones for any document,Відстежуй DocType: Social Login Key,Identity Details,Подробиці про особу apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Перехід стану робочого процесу не дозволений від {0} до {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Показати інформаційну панель -apps/frappe/frappe/desk/form/assign_to.py,New Message,Нове повідомлення DocType: File,Preview HTML,Попередній HTML DocType: Desktop Icon,query-report,запит-звіт DocType: Data Import Beta,Template Warnings,Попередження про шаблон @@ -1681,18 +1751,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Пов' apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Редагувати налаштування звіту Auto Email DocType: Chat Room,Message Count,Кількість повідомлень DocType: Workflow State,book,книга +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} пов'язаний із такими поданими документами: {2} DocType: Communication,Read by Recipient,Читає одержувач DocType: Website Settings,Landing Page,Цільової сторінки apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Помилка в призначеній для користувача Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Ім'я apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Дозволи не встановлений для цього критеріїв. DocType: Auto Email Report,Auto Email Report,Auto E-mail Повідомити +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Новий документ спільний apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Видалити коментар? DocType: Address Template,This format is used if country specific format is not found,"Цей формат використовується, якщо певний формат країна не знайдений" DocType: System Settings,Allow Login using Mobile Number,Дозволити Увійти за допомогою номера мобільного apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,"У вас немає достатніх прав для доступу до цього ресурсу. Будь ласка, зверніться до свого менеджера, щоб отримати доступ." DocType: Custom Field,Custom,Звичай DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Якщо цей параметр увімкнено, користувачі, які входитимуть із обмеженої IP-адреси, не будуть запитані про двофакторний аут" +DocType: Server Script,After Cancel,Після Скасувати DocType: Auto Repeat,Get Contacts,Отримати контакти apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},"Повідомлення, подані відповідно до {0}" apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Пропуск стовпця без назви @@ -1703,6 +1776,7 @@ DocType: User,Login After,Увійти після DocType: Print Format,Monospace,Моноширинний DocType: Letter Head,Printing,Друк DocType: Workflow State,thumbs-up,пальці вгору +DocType: Notification Log,Mention,Згадування DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Шрифти apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Точність повинна бути між 1 і 6 @@ -1710,7 +1784,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,і apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Цей звіт був створений на {0} DocType: Error Snapshot,Frames,Рамки -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,призначення +DocType: Notification Log,Assignment,призначення DocType: Notification,Slack Channel,Слаковий канал DocType: About Us Team Member,Image Link,Посилання на зображення DocType: Auto Email Report,Report Filters,фільтри звітів @@ -1727,7 +1801,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Не вдалося оновити подія apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Код підтвердження був надісланий на вашу зареєстровану електронну адресу. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Дросельний +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Ваша мета apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Фільтр повинен мати 4 значення (доктайпів, ім'я_поля, оператор, значення): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},Ім'я не вказано для {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Застосувати правило призначення apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/utils/data.py,Invalid field name {0},Неправильне ім'я поля {0} @@ -1737,7 +1813,6 @@ DocType: Workflow State,text-height,Текст висоти DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Мапування плану міграції даних apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Запуск Frappé ... DocType: Web Form Field,Max Length,Максимальна довжина -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Для {0} {1} DocType: Print Format,Jinja,Джинджа DocType: Workflow State,map-marker,Карта-маркер apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Подати поблему @@ -1773,6 +1848,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Сторінка відс apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Відгуки DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Налаштування шлюзу оплати Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} набрав {1} бала за {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Завантажте прикріплені зображення з документа DocType: Chat Room,Name,Ім'я DocType: Contact Us Settings,Skype,Skype @@ -1783,7 +1859,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Відкри apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ваша мова DocType: Dashboard Chart,Average,Середній apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Додати рядок -DocType: Tag Category,Doctypes,DOCTYPEs apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Принтер apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Запит повинен бути ВИБІР DocType: Auto Repeat,Completed,Завершено @@ -1843,6 +1918,7 @@ DocType: GCalendar Account,Next Sync Token,Далі Синхронізовани DocType: Energy Point Settings,Energy Point Settings,Налаштування енергетичної точки DocType: Async Task,Succeeded,Завершено успішно apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Обов'язкові поля обов'язкові в {0} +DocType: Onboarding Slide Field,Align,Вирівняти apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Скидання дозволів для {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Люди і дозволу DocType: S3 Backup Settings,S3 Backup Settings,Налаштування резервної копії S3 @@ -1859,7 +1935,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Нова назва формату друку apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Натисніть посилання нижче, щоб затвердити запит" DocType: Workflow State,align-left,вирівняти лівий +DocType: Onboarding Slide,Action Settings,Налаштування дій DocType: User,Defaults,За замовчуванням +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для порівняння використовуйте> 5, <10 або = 324. Для діапазонів використовуйте 5:10 (для значень від 5 до 10)." DocType: Energy Point Log,Revert Of,Повернення apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Злиття з існуючими DocType: User,Birth Date,Дата народження @@ -1914,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,У DocType: Notification,Value Change,Значення Зміна DocType: Google Contacts,Authorize Google Contacts Access,Авторизуйте доступ до контактів Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Показуються лише цифрові поля з звіту +apps/frappe/frappe/utils/data.py,1 week ago,1 тиждень тому DocType: Data Import Beta,Import Type,Тип імпорту DocType: Access Log,HTML Page,Сторінка HTML DocType: Address,Subsidiary,Дочірня компанія @@ -1923,7 +2002,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,З бланку apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невірний Сервер вихідної пошти або порт DocType: Custom DocPerm,Write,Запис -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Лише адміністратор дозволив створити Query / Script Звіти apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Оновлення DocType: Data Import Beta,Preview,Попередній перегляд apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Поле "Значення" є обов'язковим. Будь ласка, вкажіть значення для поновлення" @@ -1933,6 +2011,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Запро DocType: Data Migration Run,Started,Початок apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Користувач {0} не має доступу до цього документа DocType: Data Migration Run,End Time,Час закінчення +DocType: Dashboard Chart,Group By Based On,Групувати за ознакою apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Виберіть Вкладення apps/frappe/frappe/model/naming.py, for {0},для {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Ви не можете надрукувати цей документ @@ -1974,6 +2053,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Перевірити DocType: Workflow Document State,Update Field,Оновлення поле DocType: Chat Profile,Enable Chat,Увімкнути чат DocType: LDAP Settings,Base Distinguished Name (DN),Підстава различающееся ім'я (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Залиште цю розмову apps/frappe/frappe/model/base_document.py,Options not set for link field {0},Опції не встановлений галузі зв'язку {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Черга / працівник @@ -2042,12 +2122,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Вхід не дозволяється у цей час DocType: Data Migration Run,Current Mapping Action,Поточний дію карти DocType: Dashboard Chart Source,Source Name,ім'я джерела -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Жоден обліковий запис електронної пошти не пов’язаний з Користувачем. Будь ласка, додайте обліковий запис у розділі Користувач> Вхідні адреси електронної пошти." DocType: Email Account,Email Sync Option,Електронна пошта синхронізації Варіант apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Рядок № DocType: Async Task,Runtime,Тривалість DocType: Post,Is Pinned,Прикріплений DocType: Contact Us Settings,Introduction,Введення +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Потрібна допомога? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Прикріпити глобально apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Слідом за DocType: LDAP Settings,LDAP Email Field,LDAP Email Поле @@ -2057,7 +2137,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Вже у DocType: User Email,Enable Outgoing,Включити вихідні DocType: Address,Fax,Факс apps/frappe/frappe/config/customization.py,Custom Tags,призначені для користувача теги -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не налаштовано обліковий запис електронної пошти. Створіть новий обліковий запис електронної пошти у меню Налаштування> Електронна пошта> Обліковий запис електронної пошти DocType: Comment,Submitted,Проведено DocType: Contact,Pulled from Google Contacts,Знято з контактів Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Невірний запит @@ -2078,9 +2157,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Голов apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Зв'язати мене DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Натисніть клавішу Alt, щоб запустити додаткові ярлики в меню та бічній панелі" +DocType: Dashboard Chart,To Date,По дату DocType: List View Setting,List View Setting,Налаштування перегляду списку apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Показувати не вдалося робочих місць -DocType: Event,Details,Подробиці +DocType: Scheduled Job Log,Details,Подробиці DocType: Property Setter,DocType or Field,DocType або поле apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Ви скасували цей документ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Основний колір @@ -2089,7 +2169,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Здається, до опублікування Key або Секретний ключ не так !!!" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,"Здається, до опублікування Key або Секретний ключ не так !!!" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Швидка довідка з налаштування дозволів -DocType: Tag Doc Category,Doctype to Assign Tags,Doctype Призначення мітки apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Показати Рецидиви apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-mail був переміщений в кошик DocType: Report,Report Builder,Конструктор звітів @@ -2105,6 +2184,7 @@ DocType: Workflow State,Upload,Завантажити DocType: User Permission,Advanced Control,Розширений контроль DocType: System Settings,Date Format,Формат дати apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Чи не Публікується +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Шаблон адреси за замовчуванням не знайдено. Створіть новий із меню Налаштування> Друк та брендинг> Шаблон адреси. apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Дії робочого процесу (наприклад, Затвердити, Скасувати)." DocType: Data Import,Skip rows with errors,Пропустити рядки з помилками DocType: Workflow State,flag,прапор @@ -2114,7 +2194,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Др apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Перейти до поля DocType: Contact Us Settings,Forward To Email Address,Переслати на адресу електронної пошти DocType: Contact Phone,Is Primary Phone,Первинний телефон -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Надішліть електронний лист на {0}, щоб пов’язати його тут." DocType: Auto Email Report,Weekdays,Будні дні apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} записи будуть експортовані apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Назва поля повинно бути дійсним ім'я_поля @@ -2122,7 +2201,7 @@ DocType: Post Comment,Post Comment,Опублікувати коментар apps/frappe/frappe/config/core.py,Documents,Документи apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Журнал активності DocType: Social Login Key,Custom Base URL,Користувацька базова URL-адреса -DocType: Email Flag Queue,Is Completed,завершиться +DocType: Onboarding Slide,Is Completed,завершиться apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Отримати поля apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Редагувати профіль DocType: Kanban Board Column,Archived,Читальний зал @@ -2133,12 +2212,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18","Це поле з'являється тільки в разі, якщо ім'я_поля визначено тут має значення чи правила є істинними (приклади): MyField Eval: doc.myfield == 'My Value' Eval: doc.age> 18" DocType: Social Login Key,Office 365,Офіс 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,сьогодні -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,сьогодні +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,сьогодні +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,сьогодні apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Після того як ви встановили це, користувачі зможуть тільки доступ до документів (наприклад ,. Блог Пост), де існує зв'язок (наприклад, Blogger.)." DocType: Data Import Beta,Submit After Import,Надіслати після імпорту DocType: Error Log,Log of Scheduler Errors,Журнал помилок Scheduler DocType: User,Bio,Біо +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Довідкова посилання на вбудованому слайді DocType: OAuth Client,App Client Secret,App Client Secret apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Проведення apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,"Батько - це назва документу, до якого дані будуть додані." @@ -2146,7 +2226,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,ВЕРХНІЙ РЕГІСТР apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Особливий HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Введіть ім'я теки -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Шаблон адреси за замовчуванням не знайдено. Створіть новий із меню Налаштування> Друк та брендинг> Шаблон адреси. apps/frappe/frappe/auth.py,Unknown User,Невідомий користувач apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Виберіть Роль DocType: Comment,Deleted,Віддалений @@ -2162,7 +2241,7 @@ DocType: Chat Token,Chat Token,Чатовий маркер apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Створення діаграми apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не імпортуйте -DocType: Web Page,Center,Центр +DocType: Onboarding Slide Field,Center,Центр DocType: Notification,Value To Be Set,Значення To Be Set apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Редагувати {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Перший рівень @@ -2170,7 +2249,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Ім'я бази даних apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Оновити Форма DocType: DocField,Select,Вибрати -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Переглянути повний журнал +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Переглянути повний журнал DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Просте вираження Python, приклад: status == 'Open' та введіть == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,Файл не долучено apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Зв'язок втрачений. Деякі функції можуть не працювати. @@ -2202,6 +2281,7 @@ DocType: Web Page,HTML for header section. Optional,HTML для розділу apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Ця функція є новою і досі експериментальна apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Максимум {0} рядків дозволено DocType: Dashboard Chart Link,Chart,Діаграма +DocType: Scheduled Job Type,Cron,Крон DocType: Email Unsubscribe,Global Unsubscribe,Глобальний Відмовитися apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Це дуже загальний пароль. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Вид @@ -2218,6 +2298,7 @@ DocType: Data Migration Connector,Hostname,Ім'я хоста DocType: Data Migration Mapping,Condition Detail,Подробиці умов apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Для валюти {0} мінімальна сума транзакції повинна бути {1} DocType: DocField,Print Hide,Друк Приховати +DocType: System Settings,HH:mm:ss,HH: мм: сс apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Користувачеві apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Введіть значення DocType: Workflow State,tint,відтінок @@ -2285,6 +2366,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-код дл apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Додати в To Do DocType: Footer Item,Company,Компанія apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},В середньому {0} +DocType: Scheduled Job Log,Scheduled,Заплановане DocType: User,Logout from all devices while changing Password,Вийти з усіх пристроїв під час зміни пароля apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Підтвердіть пароль apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Були помилки @@ -2310,7 +2392,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Користувацький дозвіл вже існує apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Зіставлення стовпця {0} до поля {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Переглянути {0} -DocType: User,Hourly,Погодинно +DocType: Scheduled Job Type,Hourly,Погодинно apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Реєстрація OAuth Client App DocType: DocField,Fetch If Empty,"Витягнути, якщо порожньо" DocType: Data Migration Connector,Authentication Credentials,Перевірка автентичності @@ -2321,10 +2403,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бути ""{2}"", а має бути одним з ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},отримано на {0} за допомогою автоматичного правила {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} або {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Ви все налаштовані! DocType: Workflow State,trash,сміття DocType: System Settings,Older backups will be automatically deleted,Більш старі резервні копії будуть автоматично видалені apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Недійсний ідентифікатор ключа доступу чи секретний ключ доступу. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Ви втратили кілька енергетичних очок DocType: Post,Is Globally Pinned,Глобально закріплений apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Остання активність DocType: Workflow Transition,Conditions,Умови @@ -2333,6 +2415,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Підтве DocType: Event,Ends on,Закінчення на DocType: Payment Gateway,Gateway,Шлюз DocType: LDAP Settings,Path to Server Certificate,Шлях до сертифіката сервера +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,У вашому браузері відключений JavaScript apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,"Бракує дозволів, щоб побачити посилання" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,"Бракує дозволів, щоб побачити посилання" apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Назва адреси є обов'язковою. @@ -2352,7 +2435,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-захід-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Якщо це буде позначено, буде імпортовано рядки з дійсними даними, а недійсні рядки будуть скинуті до нового файлу для імпорту пізніше." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ може редагуватись лише користувачами ролі -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,Читає одержувач DocType: Blogger,Short Name,Коротке ім'я @@ -2385,6 +2467,7 @@ DocType: Translation,PR sent,PR відправлено DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Тільки Send Records Оновлене в останніх X годин DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Тільки Send Records Оновлене в останніх X годин DocType: Communication,Feedback,Зворотній зв'язок +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Оновлено до нової версії 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Відкритий переклад apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Цей електронний лист створено автоматично DocType: Workflow State,Icon will appear on the button,Іконка з'явиться на кнопці @@ -2423,6 +2506,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Сторі DocType: DocField,Precision,Точність DocType: Website Slideshow,Slideshow Items,Слайд-шоу товари apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Намагайтеся уникати повторюваних слів і символів +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Повідомлення вимкнено +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,"Ви впевнені, що хочете видалити всі рядки?" DocType: Workflow Action,Workflow State,Стан робочого процесу apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ряди Додано apps/frappe/frappe/www/list.py,My Account,Моя обліковка @@ -2431,6 +2516,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Днів після apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Підключення QZ-лотка активне! DocType: Contact Us Settings,Settings for Contact Us Page,"Налаштування для сторінки ""Контакти""" +DocType: Server Script,Script Type,Тип сценарію DocType: Print Settings,Enable Print Server,Увімкнути сервер друку apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} тижні тому DocType: Email Account,Footer,Підвал @@ -2456,8 +2542,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Попередження apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Це може бути надруковано на кількох сторінках DocType: Data Migration Run,Percent Complete,Відсоток завершено -DocType: Tag Category,Tag Category,Тег Категорія -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для порівняння використовуйте> 5, <10 або = 324. Для діапазонів використовуйте 5:10 (для значень від 5 до 10)." DocType: Google Calendar,Pull from Google Calendar,Витягніть з Google Календар apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Довідка DocType: User,Login Before,Увійти перед @@ -2467,17 +2551,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Сховати вихідні apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматично створює повторювані документи. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Є +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,"Інформація, знак" apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Значення {0} не може бути списком DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Як має бути відформатована валюта? Якщо не встановлено, будуть використовуватись системні значення за замовчуванням" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Надіслати {0} документи? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Ви повинні бути зареєстровані і мати роль адміністратора системи, щоб мати можливість отримати доступ до копії." +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Помилка підключення до програми QZ Tray ... <br><br> Для використання функції Raw Print вам потрібно встановити та запустити додаток QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Натисніть тут, щоб завантажити та встановити QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Клацніть тут, щоб дізнатися більше про сирий друк</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Картографування принтерів apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Будь ласка, збережіть перед установкою." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ви хочете скасувати всі пов'язані документи? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Додано {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType не може бути змінений з {0} до {1} в рядку {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Дозволи ролі DocType: Help Article,Intermediate,проміжний +apps/frappe/frappe/config/settings.py,Email / Notifications,Електронна пошта / повідомлення apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} змінив {1} на {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Скасований документ відновлений як чернетка DocType: Data Migration Run,Start Time,Час початку @@ -2494,6 +2582,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,М apps/frappe/frappe/email/smtp.py,Invalid recipient address,Невірна адреса одержувача DocType: Workflow State,step-forward,крок вперед DocType: System Settings,Allow Login After Fail,Дозволити вхід після помилки +DocType: DocType Link,DocType Link,Посилання DocType DocType: Role Permission for Page and Report,Set Role For,Встановити роль для DocType: GCalendar Account,The name that will appear in Google Calendar,"Назва, яка з'явиться в Календарі Google" apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Пряма кімната з {0} вже існує. @@ -2511,6 +2600,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Ство DocType: Contact,Google Contacts,Контакти Google DocType: GCalendar Account,GCalendar Account,Обліковий запис GCalendar DocType: Email Rule,Is Spam,спам +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Остання apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Повідомити {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Відкрити {0} DocType: Data Import Beta,Import Warnings,Попередження про імпорт @@ -2522,6 +2612,7 @@ DocType: Workflow State,ok-sign,ОК-знак apps/frappe/frappe/config/settings.py,Deleted Documents,Дистанційні документи apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Формат CSV з урахуванням регістру apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon вже існує +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Вкажіть, у яких доменах мають відображатися слайди. Якщо нічого не вказано, слайд відображається у всіх доменах за замовчуванням." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дублювати apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Поле {1} у рядку {2} не може бути прихованим і обов'язковим без замовчування DocType: Newsletter,Create and Send Newsletters,Створення і відправлення розсилки @@ -2532,6 +2623,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Ідентифікатор події Календаря Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Батько"" означає батьківську таблицю, в якій повинен бути доданий цей ряд" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Оглядові бали: +DocType: Scheduled Job Log,Scheduled Job Log,Запланований журнал роботи +DocType: Server Script,Before Delete,Перед видаленням apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Оприлюднено для apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Прикріпіть файли / URL-адреси та додайте до таблиці. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Повідомлення не налаштовано @@ -2555,19 +2648,21 @@ DocType: About Us Settings,Settings for the About Us Page,"Установки д apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Налаштування оплати шлюзу нашивки apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Налаштування оплати шлюзу нашивки apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Друк Надіслано на принтер! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Енергетичні бали +DocType: Notification Settings,Energy Points,Енергетичні бали +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Час {0} повинен бути у форматі: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,наприклад pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Генерувати клавіші apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Це назавжди видалить ваші дані. DocType: DocType,View Settings,Перегляд параметрів +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Нове повідомлення DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Структура запиту +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Відсутній метод контролера get_razorpay_order DocType: Personal Data Deletion Request,Pending Verification,Очікує на підтвердження DocType: Website Meta Tag,Website Meta Tag,Мета-тег веб-сайту DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Якщо нестандартний порт (наприклад, 587). Якщо в Google Cloud спробуйте порт 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Очищення дати завершення, оскільки воно не може бути в минулому для опублікованих сторінок." DocType: User,Send Me A Copy of Outgoing Emails,Надіслати мені копію вихідних повідомлень -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.,"Додати Google Analytics ID. Наприклад, UA-89XXX57-1. Для отримання додаткової інформації звертайтесь, будь ласка, до розділів довідки Google Analytics." apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Пароль не може бути довшим 100 символів DocType: OAuth Client,App Client ID,App ID клієнта @@ -2596,6 +2691,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Новий п apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} оприлюднив цей документ для {1} DocType: Website Settings,Brand Image,Імідж бренду DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Шаблон імпорту повинен містити заголовок і принаймні один рядок. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Календар Google налаштовано. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Налаштування верхної панелі навігації, нижнього колонтитулу і логотипу." DocType: Web Form Field,Max Value,максимальне значення @@ -2605,6 +2701,7 @@ DocType: User Social Login,User Social Login,Логін соціального apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} критикував вашу роботу {1} з пунктом {2} DocType: Contact,All,Всі DocType: Email Queue,Recipient,Одержувач +DocType: Webhook,Webhook Security,Безпека Webhook DocType: Communication,Has Attachment,має Вкладення DocType: Address,Sales User,Продажі Користувач apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop інструмент для створення та налаштування форматів друку. @@ -2671,7 +2768,6 @@ DocType: Data Migration Mapping,Migration ID Field,Поле Ідентифіка DocType: Dashboard Chart,Last Synced On,Востаннє синхронізовано DocType: Comment,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,клієнт OAuth -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} критикував вашу роботу {1} {2} DocType: Assignment Rule,Users,Користувачі DocType: Address,Odisha,Odisha DocType: Report,Report Type,Тип звіту @@ -2697,14 +2793,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Об’єкт слайд- apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Само затвердження не дозволено DocType: GSuite Templates,Template ID,шаблон ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Комбінація типу грантів ( <code>{0}</code> ) та типу відповіді ( <code>{1}</code> ) не допускається -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Нове повідомлення від {0} DocType: Portal Settings,Default Role at Time of Signup,За замовчуванням Роль Час в Signup DocType: DocType,Title Case,Назва справи apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,"Клацніть на посилання нижче, щоб завантажити свої дані" apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Увімкнута електронна пошта електронної пошти для користувача {0} DocType: Data Migration Run,Data Migration Run,Запуск міграції даних DocType: Blog Post,Email Sent,Листа відправлено -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Старіші DocType: DocField,Ignore XSS Filter,Ігнорувати XSS-фільтр apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,видалений apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Налаштування резервного копіювання Dropbox @@ -2759,6 +2853,7 @@ DocType: Async Task,Queued,У черзі DocType: Braintree Settings,Use Sandbox,Використання Пісочниця apps/frappe/frappe/utils/goal.py,This month,Цього місяця apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Новий користувальницький друку Формат +DocType: Server Script,Before Save (Submitted Document),Перед збереженням (поданий документ) DocType: Custom DocPerm,Create,Створити apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Немає більше елементів для показу apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Перейти до попереднього запису @@ -2816,6 +2911,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Перемістити до Кошику DocType: Web Form,Web Form Fields,Поля Веб-форми DocType: Data Import,Amended From,Відновлено з +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Додайте довідкове відео посилання на випадок, якщо користувач не має уявлення про те, що заповнити слайд." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},"Попередження: Не вдалося знайти {0} у жодній таблиці, пов'язаній з {1}" DocType: S3 Backup Settings,eu-north-1,eu-північ-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,Цей документ в даний час в чергу на виконання. Будь ласка спробуйте ще раз @@ -2838,6 +2934,7 @@ DocType: Blog Post,Blog Post,Повідомлення в блозі DocType: Access Log,Export From,Експорт з apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,розширений пошук apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Вам заборонено переглядати інформаційний бюлетень. +DocType: Dashboard Chart,Group By,Групувати за DocType: User,Interests,інтереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Інструкції щодо зміни паролю були відправлені на вашу електронну пошту DocType: Energy Point Rule,Allot Points To Assigned Users,Виділити бали призначеним користувачам @@ -2853,6 +2950,7 @@ DocType: Assignment Rule,Assignment Rule,Правило призначення apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Схожі Ім'я користувача: {0} DocType: Assignment Rule Day,Day,день apps/frappe/frappe/public/js/frappe/desk.js,Modules,модулі +DocType: DocField,Mandatory Depends On,Обов’язковість залежить від apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,оплата успіху apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Ні {0} пошта DocType: OAuth Bearer Token,Revoked,Revoked @@ -2860,6 +2958,7 @@ DocType: Web Page,Sidebar and Comments,Бічна панель і комента apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Коли ви Відновите документ після Скасування і збережете його, він отримає новий номер, який буде версією старого." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Не дозволяється прикріплювати {0} документ, будь ласка, увімкніть параметр Дозволити друк для {0} в налаштуваннях друку" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не налаштовано обліковий запис електронної пошти. Створіть новий обліковий запис електронної пошти у меню Налаштування> Електронна пошта> Обліковий запис електронної пошти apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Переглянути документ у {0} DocType: Stripe Settings,Publishable Key,Ключ до опублікування DocType: Stripe Settings,Publishable Key,Ключ до опублікування @@ -2875,13 +2974,13 @@ DocType: Currency,Fraction,Частка apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Подія синхронізована з Календарем Google. DocType: LDAP Settings,LDAP First Name Field,LDAP Ім'я поля DocType: Contact,Middle Name,батькові +DocType: DocField,Property Depends On,Майно залежить від DocType: Custom Field,Field Description,Поле Опис apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ім'я не встановлено за допомогою Підкажіть apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Вхідні apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Оновлення {0} з {1}, {2}" DocType: Auto Email Report,Filters Display,фільтри Показати apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Щоб внести поправку, повинно бути присутнє поле "Змінено_від"." -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} оцінив вашу роботу {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Збережіть фільтри DocType: Address,Plant,Завод apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Відповісти всім @@ -2922,11 +3021,11 @@ DocType: Workflow State,folder-close,folder-close apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Звіт: DocType: Print Settings,Print taxes with zero amount,Надрукувати податки з нульовою сумою apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} не можуть бути перейменовані +DocType: Server Script,Before Insert,Перед вставкою DocType: Custom Script,Custom Script,Сценарій на замовлення DocType: Address,Address Line 2,Адресний рядок 2 DocType: Address,Reference,Посилання apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Призначено -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Установіть обліковий запис електронної пошти за замовчуванням у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Детальний опис картки міграції даних DocType: Data Import,Action,Дія DocType: GSuite Settings,Script URL,URL Script @@ -2952,11 +3051,13 @@ DocType: User,Api Access,Api Access DocType: DocField,In List View,У вигляді списку DocType: Email Account,Use TLS,Використовувати TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,Невірне ім’я користувача або пароль +DocType: Scheduled Job Type,Weekly Long,Щотижня Довго apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Звантажити шаблон apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Додати замовлення Javascript для форм. ,Role Permissions Manager,Дозволи ролі менеджера apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ім'я нового формату друку apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Переключити бічну панель +DocType: Server Script,After Save (Submitted Document),Після збереження (поданий документ) DocType: Data Migration Run,Pull Insert,Витягніть вставку DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Максимум балів, допущених після множення балів зі значенням множника (Примітка. Для жодного обмеження не залишайте це поле порожнім або встановіть 0)" @@ -2976,6 +3077,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP не встановлено apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Завантажити з даними apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},змінені значення для {0} {1} +DocType: Server Script,Before Cancel,Перед скасуванням DocType: Workflow State,hand-right,ручної право DocType: Website Settings,Subdomain,піддомен DocType: S3 Backup Settings,Region,Область @@ -3022,12 +3124,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Старий парол DocType: S3 Backup Settings,us-east-1,нас-схід-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Записи автора: {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Для стовпців формату, дають імена стовпців в запиті." +DocType: Onboarding Slide,Slide Fields,Поля слайдів DocType: Has Domain,Has Domain,має домен DocType: User,Allowed In Mentions,Дозволено в згадках apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ще не зареєстровані? зареєструватися apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Неможливо видалити поле ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0}: Неможливо встановити Призначити Відновити, якщо не підлягає проведенню" DocType: Address,Bihar,Біхар +DocType: Notification Settings,Subscribed Documents,Підписані документи apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Налаштування користувача DocType: Report,Reference Report,Довідковий звіт DocType: Activity Log,Link DocType,посилання DocType @@ -3045,6 +3149,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Авторизуйте apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Сторінка, яку ви шукаєте, відсутня. Можливо, вона була переміщена або у посиланні є помилка." apps/frappe/frappe/www/404.html,Error Code: {0},Код помилки: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис для перерахування сторінку, у вигляді звичайного тексту, тільки пару рядків. (макс 140 знаків)" +DocType: Server Script,DocType Event,Подія DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} - обов'язкові поля DocType: Workflow,Allow Self Approval,Дозволити самоврядування DocType: Event,Event Category,Категорія події @@ -3061,6 +3166,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ваше ім'я apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успіх підключення DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Вбудований слайд типу "Слайд" продовжувати вже існує. DocType: DocType,Default Sort Field,Поле сортування за замовчуванням DocType: File,Is Folder,є текою DocType: Document Follow,DocType,DocType @@ -3098,8 +3204,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,зна DocType: Workflow State,arrow-up,стрілка вгору DocType: Dynamic Link,Link Document Type,Тип документа посилання apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Має бути принаймні один рядок для таблиці {0} +DocType: Server Script,Server Script,Серверний скрипт apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Щоб налаштувати автоматичне повторення, увімкніть "Дозволити автоматичне повторення" від {0}." DocType: OAuth Bearer Token,Expires In,Завершується В +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Кількість разів, яку ви хочете повторити набір полів (наприклад: якщо ви хочете 3 клієнта на слайді, встановіть це поле на 3. Лише перший слайд відображається як обов'язковий на слайді)" DocType: DocField,Allow on Submit,Дозволити на Надіслати DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Тип винятку @@ -3109,6 +3217,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Заголовки apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Майбутні події apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,"Будь ласка, введіть значення для App Access Key і App Secret Key" +DocType: Email Account,Append Emails to Sent Folder,Додайте електронні листи до надісланої папки DocType: Web Form,Accept Payment,приймати Оплата apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Виберіть пункт списку apps/frappe/frappe/config/core.py,A log of request errors,Журнал помилок запитів @@ -3127,7 +3236,7 @@ DocType: Translation,Contributed,Внесли свій внесок apps/frappe/frappe/config/customization.py,Form Customization,Налаштування форми apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Немає активних сеансів DocType: Web Form,Route to Success Link,Маршрут до посилання на успіх -DocType: Top Bar Item,Right,Право +DocType: Onboarding Slide Field,Right,Право apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Ніяких майбутніх подій немає DocType: User,User Type,Тип користувача DocType: Prepared Report,Ref Report DocType,Доповідь DocType @@ -3145,6 +3254,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Будь лас apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL-адреса повинна починатися з "http: //" або "https: //" apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Варіант 3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Це не може бути скасовано DocType: Workflow State,Edit,Редагувати DocType: Website Settings,Chat Operators,Оператори чату DocType: S3 Backup Settings,ca-central-1,ca-центральний-1 @@ -3156,7 +3266,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Ви не зберегли зміни в цій формі. Будь ласка, збережіть, перш ніж продовжити." DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,За замовчуванням для {0} повинен бути варіант -DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категорія apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Звіт із більш ніж 10 стовпцями виглядає краще в альбомному режимі. apps/frappe/frappe/database/database.py,Invalid field name: {0},Недійсна назва поля: {0} DocType: Milestone,Milestone,Віха @@ -3165,7 +3274,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Перейдіть apps/frappe/frappe/email/queue.py,Emails are muted,Листи приглушені apps/frappe/frappe/config/integrations.py,Google Services,Служби Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + -apps/frappe/frappe/utils/data.py,1 weeks ago,1 тиждень тому +DocType: Onboarding Slide,Slide Description,Опис слайда DocType: Communication,Error,Помилка apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Спочатку налаштуйте повідомлення DocType: Auto Repeat,End Date,Дата закінчення @@ -3186,10 +3295,12 @@ DocType: Footer Item,Group Label,Група Етикетка DocType: Kanban Board,Kanban Board,Kanban рада apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контакти Google налаштовано. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Буде експортовано 1 запис +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Жоден обліковий запис електронної пошти не пов’язаний з Користувачем. Будь ласка, додайте обліковий запис у розділі Користувач> Вхідні адреси електронної пошти." DocType: DocField,Report Hide,Повідомити Приховати apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Подання у вигляді дерева не доступний для {0} DocType: DocType,Restrict To Domain,обмежити домену DocType: Domain,Domain,Галузь +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,Недійсна URL-адреса файлу. Зверніться до системного адміністратора. DocType: Custom Field,Label Help,Довідка з етикеток DocType: Workflow State,star-empty,зірка порожній apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Дати часто легко вгадати. @@ -3214,6 +3325,7 @@ DocType: Workflow State,hand-left,Рука-вліво DocType: Data Import,If you are updating/overwriting already created records.,Якщо ви оновлюєте / перезаписуєте вже створені записи. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Глобальний DocType: Email Account,Use SSL,Використовувати SSL +DocType: Webhook,HOOK-.####,ГУК -. #### DocType: Workflow State,play-circle,гра кола apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документ не може бути правильно призначений apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Недійсний вираз "depends_on" @@ -3230,6 +3342,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Останній оновлений apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Для типу документа DocType: Workflow State,arrow-right,стрілка направо +DocType: Server Script,API Method,Метод API DocType: Workflow State,Workflow state represents the current state of a document.,Стан робочого процесу представляє поточний стан документу. DocType: Letter Head,Letter Head Based On,Заголовок листа на основі apps/frappe/frappe/utils/oauth.py,Token is missing,Маркер відсутній @@ -3269,6 +3382,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,Компактний товару друку DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,перенаправлення URL +DocType: Onboarding Slide Field,Placeholder,Заповнювач DocType: SMS Settings,Enter url parameter for receiver nos,Enter url parameter for receiver nos DocType: Chat Profile,Online,Online DocType: Email Account,Always use Account's Name as Sender's Name,Завжди використовуйте ім'я облікового запису як ім'я відправника @@ -3278,7 +3392,6 @@ DocType: Workflow State,Home,Головна DocType: OAuth Provider Settings,Auto,автоматичний DocType: System Settings,User can login using Email id or User Name,"Користувач може ввійти, використовуючи ідентифікатор електронної пошти або ім'я користувача" DocType: Workflow State,question-sign,Питання-знак -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} вимкнено apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Поле "route" є обов'язковим для Web Views apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вставити колонку до {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Користувач з цього поля отримає бали @@ -3303,6 +3416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Якщо Власн DocType: Data Migration Mapping,Push,Натисніть apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Завантажте файли сюди DocType: OAuth Authorization Code,Expiration time,час закінчення +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Відкрити документи DocType: Web Page,Website Sidebar,Бічна панель Веб-сайт DocType: Web Form,Show Sidebar,Показати бічну панель apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,"Ви повинні бути зареєстровані, щоб отримати доступ до цього {0}." @@ -3318,6 +3432,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобал DocType: Desktop Icon,Page,Сторінка apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Не вдалося знайти {0} в {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Імена та прізвища самі по собі легко вгадати. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Документ перейменований з {0} на {1} apps/frappe/frappe/config/website.py,Knowledge Base,База знань DocType: Workflow State,briefcase,портфель apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Значення не може бути змінене для {0} @@ -3354,6 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Формат друку apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Переключити режим перегляду сітки apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Перейти до наступного запису +DocType: System Settings,Time Format,Формат часу apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Невірні облікові дані для платіжного шлюзу DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Це файл шаблону, згенерований лише з рядками, що мають певну помилку. Ви повинні використовувати цей файл для виправлення та імпорту." apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Встановити дозволу на типами документів і ролі @@ -3397,12 +3513,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Відпо apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Сторінки на стільниці (місцеутримувачі) DocType: DocField,Collapsible Depends On,Складено Залежить від DocType: Print Style,Print Style Name,Назва стилю друку +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Групувати за полем потрібно для створення діаграми інформаційної панелі DocType: Print Settings,Allow page break inside tables,Дозволити розрив сторінки всередині таблиць DocType: Email Account,SMTP Server,SMTP-сервер DocType: Print Format,Print Format Help,Довідка з форматів друку apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Номер {0} повинен мати принаймні одного користувача. DocType: DocType,Beta,бета DocType: Dashboard Chart,Count,Рахувати +DocType: Dashboard Chart,Group By Type,Групувати за видами apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Новий коментар до {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},відновлено {0} як {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Якщо ви оновлюєте, виберіть "Замінити" ще існуючих рядків не будуть видалені." @@ -3413,8 +3531,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Проф DocType: Web Form,Web Form,Веб-форма apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Дата {0} має бути у форматі: {1} DocType: About Us Settings,Org History Heading,Орг Історія Тема +DocType: Scheduled Job Type,Scheduled Job Type,Запланований вид роботи DocType: Print Settings,Allow Print for Cancelled,Дозволити друк для Скасовано DocType: Communication,Integrations can use this field to set email delivery status,Інтеграція може використовувати це поле для установки статусу доставки електронної пошти +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,У вас немає дозволів скасовувати всі пов'язані документи. DocType: Web Form,Web Page Link Text,Текст посилання Веб-сторінки DocType: Page,System Page,система Page DocType: Page,System Page,система Page @@ -3422,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ВИХІД apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Налаштування для <b>{0}</b> експортуються до: <br> {1} DocType: Website Settings,Include Search in Top Bar,Включити пошук у верхній панелі +DocType: Scheduled Job Type,Daily Long,Щодня Довго DocType: GSuite Settings,Allow GSuite access,Дозволити доступ GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Іменування @@ -3514,6 +3635,7 @@ DocType: Notification,Send days before or after the reference date,Відпра DocType: User,Allow user to login only after this hour (0-24),Дозволити користувачеві увійти в систему тільки після цієї години (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Призначають по черзі, послідовно" DocType: Integration Request,Subscription Notification,Сповіщення про підписку +DocType: Customize Form Field, Allow in Quick Entry ,Дозволити в Швидкий запис apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,або прикріпити а DocType: Auto Repeat,Start Date,Дата початку apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Значення @@ -3528,6 +3650,7 @@ DocType: Google Drive,Backup Folder ID,Ідентифікатор резервн apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не в режимі розробника! Встановити в site_config.json або зробити DOCTYPE "Custom". DocType: Workflow State,globe,глобус DocType: System Settings,dd.mm.yyyy,дд.мм.рррр +DocType: Onboarding Slide Help Link,Video,Відео DocType: Assignment Rule,Priority,Пріоритет DocType: Email Queue,Unsubscribe Param,Відмовитися від Param DocType: DocType,Hide Sidebar and Menu,Сховати бічну панель і меню @@ -3539,6 +3662,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Дозволити імпо apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Поплавок DocType: Print Settings,Page Settings,Параметри сторінки +DocType: Notification Settings,Notification Settings,Налаштування сповіщень apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Збереження ... apps/frappe/frappe/www/update-password.html,Invalid Password,неправильний пароль apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Запис {0} імпортовано з {1}. @@ -3554,6 +3678,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Зображення листа лист DocType: Address,Party GSTIN,сторона GSTIN +DocType: Scheduled Job Type,Cron Format,Формат Cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Звіт DocType: SMS Settings,Use POST,Використовуйте POST DocType: Communication,SMS,СМС @@ -3599,18 +3724,20 @@ DocType: Workflow,Allow approval for creator of the document,Дозволити apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Зберегти звіт DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API кінцевої точки Args +DocType: DocType Action,Server Action,Дія сервера apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Адміністратор доступався {0} {1} з IP-адреси {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Поле батьків має бути дійсним іменем поля apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Помилка під час зміни підписки DocType: LDAP Settings,LDAP Group Field,Групове поле LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Повідомлення Підписаний документ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Дорівнює apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Невірний формат CSV -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Помилка підключення до програми QZ Tray ... <br><br> Для використання функції Raw Print вам потрібно встановити та запустити додаток QZ Tray. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Натисніть тут, щоб завантажити та встановити QZ Tray</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Клацніть тут, щоб дізнатися більше про сирий друк</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Встановити кількість резервних копій DocType: DocField,Do not allow user to change after set the first time,Не дозволяйте користувачеві змінювати після встановити в перший раз apps/frappe/frappe/utils/data.py,1 year ago,1 рік тому +DocType: DocType,Links Section,Розділ посилань apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Переглянути журнал усіх подій друку, завантаження та експорту" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 місяць DocType: Contact,Contact,Контакт @@ -3637,16 +3764,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Новий E-mail DocType: Custom DocPerm,Export,Експорт apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Щоб використовувати Google Календар, увімкніть {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Додавання поля залежності від статусу {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Оновлено {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Помилка лотка QZ: DocType: Dropbox Settings,Dropbox Settings,налаштування Dropbox DocType: About Us Settings,More content for the bottom of the page.,Більше контенту для нижній частині сторінки. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Цей документ було повернено apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Резервне копіювання Google Диска вдало. +DocType: Webhook,Naming Series,Іменування серії DocType: Workflow,DocType on which this Workflow is applicable.,"Тип документів, до якого застосовується цей робочий процес." DocType: User,Enabled,Включено apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Не вдалося виконати налаштування apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Нові {0}: {1} -DocType: Tag Category,Category Name,Категорія Ім'я +DocType: Blog Category,Category Name,Категорія Ім'я apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Батько зобов'язаний отримати дані дочірньої таблиці apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Імпорт передплатників DocType: Print Settings,PDF Settings,Параметри PDF @@ -3682,6 +3812,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Календар apps/frappe/frappe/client.py,No document found for given filters,Чи не знайдено документів для заданих фільтрів apps/frappe/frappe/config/website.py,A user who posts blogs.,"Користувач, який публікує блоги." +DocType: DocType Action,DocType Action,Дія DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Ще {0} з ім'ям {1} існує, виберіть інше ім'я" DocType: DocType,Custom?,Користувальницькі? DocType: Website Settings,Website Theme Image,Зображення теми веб-сайту @@ -3691,6 +3822,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Немо apps/frappe/frappe/config/integrations.py,Backup,резервна копія apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Тип документа необхідний для створення діаграми інформаційної панелі DocType: DocField,Read Only,Лише для читання +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Не вдалося створити замовлення на розплату apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Новий бюлетень DocType: Energy Point Log,Energy Point Log,Журнал енергетичних точок DocType: Print Settings,Send Print as PDF,Відправити Друкувати в PDF @@ -3716,16 +3848,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П apps/frappe/frappe/www/login.html,Or login with,Або увійдіть в систему з DocType: Error Snapshot,Locals,Місцеві жителі apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Повідомляється через {0} {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} згадав вас у коментарі в {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Виберіть групу за ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"наприклад, (55 + 434) / 4 = або Math.sin (Math.PI / 2) ..." apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} обов’язковий DocType: Integration Request,Integration Type,Тип інтеграції DocType: Newsletter,Send Attachements,Надіслати від'єднуються +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Не знайдено фільтрів apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Інтеграція контактів Google. DocType: Transaction Log,Transaction Log,Журнал транзакцій apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Статистика на основі результатів минулого місяця (від {0} до {1}) DocType: Contact Us Settings,City,Місто +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Сховати картки для всіх користувачів apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Увімкнути Дозволити автоматичне повторення для вчення {0} у Налаштувати форму DocType: DocField,Perm Level,Перм Рівень apps/frappe/frappe/www/confirm_workflow_action.html,View document,Переглянути документ @@ -3737,6 +3870,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""В глобальному пошуку"" не дозволений тип поля {0} в рядку {1}" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},"""В глобальному пошуку"" не дозволений тип {0} в рядку {1}" DocType: Energy Point Log,Appreciation,Вдячність +DocType: Dashboard Chart,Number of Groups,Кількість груп apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Перегляд списку DocType: Workflow,Don't Override Status,Чи не Перевизначення статусу apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,критерій пошуку @@ -3778,7 +3912,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-північний захід-1 DocType: Dropbox Settings,Limit Number of DB Backups,Обмеження кількості резервних копій БД DocType: Custom DocPerm,Level,Рівень -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,Останні 30 днів DocType: Custom DocPerm,Report,Звіт apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Сума повинна бути більше 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Підключено до лотка QZ! @@ -3795,6 +3928,7 @@ DocType: S3 Backup Settings,us-west-2,нас-захід-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Виберіть дочірню таблицю apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Первинна дія тригера apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Зміна +DocType: Social Login Key,User ID Property,Властивість ідентифікатора користувача DocType: Email Domain,domain name,Доменне ім'я DocType: Contact Email,Contact Email,Контактний Email DocType: Kanban Board Column,Order,замовлення @@ -3817,7 +3951,7 @@ DocType: Contact,Last Name,Прізвище DocType: Event,Private,Приватний apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Немає попереджень на сьогодні DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Відправити E-mail Друк PDF Вкладення в (рекомендовано) -DocType: Web Page,Left,Зліва +DocType: Onboarding Slide Field,Left,Зліва DocType: Event,All Day,Весь день apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,"Схоже, щось не так з конфігурацією платіжного шлюзу цього сайту. Платіж не було досягнуто." DocType: GCalendar Settings,State,Штат @@ -3849,7 +3983,6 @@ DocType: Workflow State,User,Користувач DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Показати назву у вікні переглядача як ""префікс - назва""" DocType: Payment Gateway,Gateway Settings,Параметри шлюзу apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Текст в документі типу -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,виконати тести apps/frappe/frappe/handler.py,Logged Out,вийшов з apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Детальніше ... DocType: System Settings,User can login using Email id or Mobile number,"Користувач може увійти в систему, використовуючи ІД епошти або мобільний номер" @@ -3866,6 +3999,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резюме DocType: Event,Event Participants,Учасники події DocType: Auto Repeat,Frequency,частота +DocType: Onboarding Slide,Slide Order,Замовлення слайдів DocType: Custom Field,Insert After,Вставити після DocType: Event,Sync with Google Calendar,Синхронізуйте з Календарем Google DocType: Access Log,Report Name,Ім'я звіту @@ -3893,6 +4027,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Максимальна ширина для тип валюти 100px в рядку {0} apps/frappe/frappe/config/website.py,Content web page.,Вміст веб-сторінки. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Додати нову роль +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Відвідайте веб-сторінку +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Нове призначення DocType: Google Contacts,Last Sync On,Остання синхронізація включена DocType: Deleted Document,Deleted Document,видаляється документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Нам Щось пішло не так @@ -3903,7 +4039,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пейзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Розширення клієнтський сценарій в Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Записи для наступних типів doctypes будуть відфільтровані -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Планувальник неактивний +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Планувальник неактивний DocType: Blog Settings,Blog Introduction,Вступ блогу DocType: Global Search Settings,Search Priorities,Пріоритети пошуку DocType: Address,Office,Офіс @@ -3913,13 +4049,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Посилання діагр DocType: User,Email Settings,Налаштування електронної пошти apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Скиньте сюди DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Якщо ввімкнено, користувач може входити з будь-якої IP-адреси за допомогою двофакторної автентичності, це також можна встановити для всіх користувачів у системних налаштуваннях" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Налаштування принтера ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Будь ласка, введіть пароль, щоб продовжити" apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,"Будь ласка, введіть пароль, щоб продовжити" apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Я apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} недопустимий статус apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Застосувати до всіх типів документів -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Оновлення енергетичної точки +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Оновлення енергетичної точки +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),"Запускати роботу лише щодня, якщо неактивний (протягом днів)" apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Будь ласка, виберіть інший спосіб оплати. PayPal не підтримує транзакції в валюті «{0}»" DocType: Chat Message,Room Type,Тип кімнати DocType: Data Import Beta,Import Log Preview,Попередній перегляд журналу імпорту @@ -3928,6 +4064,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ОК кола DocType: LDAP Settings,LDAP User Creation and Mapping,Створення та картографування користувачів LDAP apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Ви можете знайти речі, запитуючи ""знайти апельсин серед клієнтів""" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Сьогоднішні події apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Вибачте! Користувач повинен мати повний доступ до свого запису. ,Usage Info,Використання Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Показати комбінації клавіш @@ -3944,6 +4081,7 @@ DocType: DocField,Unique,Унікальний apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} оцінено {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Частковий успіх DocType: Email Account,Service,Сервіс +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач DocType: File,File Name,Файл apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не знайшли {0} {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3957,6 +4095,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Повн DocType: GCalendar Settings,Enable,включити DocType: Google Maps Settings,Home Address,Домашня адреса apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),"Ви можете завантажувати тільки до 5 000 записів за один раз. (може бути менше, в деяких випадках)" +DocType: Report,"output in the form of `data = [columns, result]`","вивести у вигляді `data = [стовпці, результат]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Застосовувані типи документів apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Встановіть правила для призначення користувачів. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостатній Введено в {0} @@ -3974,7 +4113,6 @@ DocType: Communication,To and CC,Щоб і CC DocType: SMS Settings,Static Parameters,Статичні параметри DocType: Chat Message,Room,кімната apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},оновлений до {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Фонові завдання не виконуються. Зверніться до адміністратора DocType: Portal Settings,Custom Menu Items,Призначені для користувача пункти меню apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,"Усі зображення, додані до Слайди веб-сайту, повинні бути загальнодоступними" DocType: Workflow State,chevron-right,шеврона право @@ -3989,11 +4127,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Вибрано значення {0} DocType: DocType,Allow Auto Repeat,Дозволити автоматичне повторення apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Немає значення для показу +DocType: DocType,URL for documentation or help,URL-адреса для документації чи довідки DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Шаблон електронної пошти apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Запис {0} успішно оновлено. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Користувач {0} не має доступу до документу через дозвіл на роль документа {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Треба ввести і ім’я користувача, і пароль" +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Дозволяти\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Будь ласка, поновіть, щоб отримати останню документ." DocType: User,Security Settings,Налаштування безпеки apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Додати стовпець @@ -4003,6 +4143,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Фільтр Meta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Прошу знайти додаток {0}: {1} DocType: Web Page,Set Meta Tags,Встановити мета-теги +DocType: Email Account,Use SSL for Outgoing,Використовуйте SSL для вихідних 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: S3 Backup Settings,Backup Limit,Резервний ліміт DocType: Dashboard Chart,Line,Лінія @@ -4035,4 +4176,3 @@ DocType: DocField,Ignore User Permissions,Ігнорувати дозволів apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Збережено успішно apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,"Будь ласка, зверніться до адміністратора, щоб підтвердити свій знак вгору" DocType: Domain Settings,Active Domains,активні домени -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Show Log diff --git a/frappe/translations/ur.csv b/frappe/translations/ur.csv index 5a6cd748bd..e76f90a80a 100644 --- a/frappe/translations/ur.csv +++ b/frappe/translations/ur.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ایک رقم فیلڈ براہ مہربانی منتخب کریں. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,درآمد فائل لوڈ ہو رہا ہے… DocType: Assignment Rule,Last User,آخری صارف -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",ایک نیا کام، {0}، {1} ذریعہ آپ کو تفویض کیا گیا ہے. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,سیشن ڈیفالٹس محفوظ ہوگیا۔ apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,فائل کو دوبارہ لوڈ کریں۔ DocType: Email Queue,Email Queue records.,ای میل کی قطار ریکارڈز. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} درخت DocType: User,User Emails,صارف ای میلز DocType: User,Username,صارف کا نام apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,زپ درآمد کریں +DocType: Scheduled Job Type,Create Log,لاگ بنائیں apps/frappe/frappe/model/base_document.py,Value too big,بہت بڑی قیمت DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,چلائیں اسکرپٹ ٹیسٹ @@ -72,7 +72,7 @@ DocType: Auto Repeat,Monthly,ماہانہ DocType: Address,Uttarakhand,اتراکھنڈ DocType: Email Account,Enable Incoming,موصولہ فعال apps/frappe/frappe/core/doctype/version/version_view.html,Danger,خطرہ -DocType: Address,Email Address,ای میل اڈریس +apps/frappe/frappe/www/login.py,Email Address,ای میل اڈریس DocType: Workflow State,th-large,TH-بڑے DocType: Communication,Unread Notification Sent,بھیجا بغیر پڑھے ہوئے نوٹیفکیشن apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,برآمد کی اجازت نہیں. آپ برآمد کرنے {0} کردار کی ضرورت ہے. @@ -83,10 +83,10 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,میدان اشاعت DocType: GCalendar Settings,GCalendar Settings,GCalendar ترتیبات DocType: Email Group,Email Group,ای میل گروپ +apps/frappe/frappe/__init__.py,Only for {},صرف کے لئے {} DocType: Event,Pulled from Google Calendar,گوگل کیلنڈر سے نکالا گیا۔ DocType: Note,Seen By,کی طرف سے دیکھا apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ایک سے زیادہ شامل -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,آپ نے کچھ انرجی پوائنٹس حاصل کیے۔ apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,درست صارف کی تصویر نہیں ہے. DocType: Energy Point Log,Reverted,واپس کردی گئی۔ DocType: Success Action,First Success Message,پہلا کامیابی پیغام @@ -94,6 +94,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,پسند نہ apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},غلط قیمت: {0} ہونا ضروری ہے {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",پیج میدان خصوصیات (چھپائیں، صرف پڑھنے، کی اجازت وغیرہ) apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,کی تعریف +DocType: Notification Settings,Document Share,دستاویز بانٹیں DocType: Workflow State,lock,مقفل apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ہم سے رابطہ کریں صفحہ کے لئے ترتیبات. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ایڈمنسٹریٹر ہی میں @@ -107,6 +108,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",اگر فعال ہوجائے تو ، دستاویز کو دیکھا ہوا کے بطور نشان زد کیا گیا ہے ، جب کوئی صارف اسے کھولتا ہے۔ DocType: Auto Repeat,Repeat on Day,دن پر دہرائیں DocType: DocField,Color,رنگین +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,سب کو پڑھا ہوا شمار کریں DocType: Data Migration Run,Log,لاگ DocType: Workflow State,indent-right,پوٹ دائیں DocType: Has Role,Has Role,کردار ہے @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ٹریس بیک دکھائیں۔ DocType: DocType,Default Print Format,پہلے سے طے شدہ پرنٹ کی شکل DocType: Workflow State,Tags,ٹیگز +DocType: Onboarding Slide,Slide Type,سلائیڈ کی قسم apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,: کوئی کام کے فلو کو کے اختتام apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",غیر منفرد موجودہ اقدار موجود ہیں کے طور {0} میدان، {1} میں کے طور پر منفرد مقرر نہیں کیا جا سکتا apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,دستاویز کی اقسام @@ -134,7 +137,6 @@ DocType: Language,Guest,مہمان DocType: DocType,Title Field,عنوان کے خانے DocType: Error Log,Error Log,خرابی دلے apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,غلط URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,آخری 7 دن apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","abcabcabc" "اے بی سی" سے اندازہ لگانا صرف تھوڑا سا مشکل ہیں کی طرح دوہراتا DocType: Notification,Channel,چینل apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",آپ کو اس کی اجازت نہیں ہے لگتا ہے، ایڈمنسٹریٹر پاس ورڈ تبدیل کریں. @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,کلائنٹ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,کالم منتخب کریں apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,آپ یہ بھری ہوئی ہے کے بعد یہ فارم پر نظر ثانی کر دیا گیا ہے DocType: Address,Himachal Pradesh,ہماچل پردیش +DocType: Notification Log,Notification Log,اطلاع لاگ DocType: System Settings,"If not set, the currency precision will depend on number format",سیٹ نہیں ہے تو کرنسی کی صحت سے متعلق نمبر کی شکل پر انحصار کرے گا apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,اچھال بار۔ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",ایسا لگتا ہے کہ سرور کی پٹی ترتیب کے ساتھ ایک مسئلہ ہے. ناکامی کی صورت میں، رقم آپ کے اکاؤنٹ میں واپس کی جائے گی. @@ -162,7 +165,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,و apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,بھیجیں DocType: Workflow Action Master,Workflow Action Name,کام کے فلو کو ایکشن نام apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ضم نہیں کیا جا سکتا -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ایک زپ فائل نہیں DocType: Global Search DocType,Global Search DocType,گلوبل سرچ ڈاک ٹائپ۔ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -175,7 +178,9 @@ DocType: Newsletter,Email Sent?,ای میل بھیجا ہے؟ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,چارٹ ٹوگل کریں apps/frappe/frappe/desk/form/save.py,Did not cancel,منسوخ نہیں کیا DocType: Social Login Key,Client Information,کلائنٹ کی معلومات +DocType: Energy Point Rule,Apply this rule only once per document,اس اصول کو ہر دستاویز میں صرف ایک بار لاگو کریں DocType: Workflow State,plus,علاوہ +DocType: DocField,Read Only Depends On,صرف پڑھنے پر منحصر ہے apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,مہمان یا ایڈمنسٹریٹر کے طور پر لاگ DocType: Email Account,UNSEEN,غیب apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,فائل مینیجر @@ -199,9 +204,11 @@ DocType: Communication,BCC,بی سی سی DocType: Unhandled Email,Reason,وجہ 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,کوئی سرگرمی نہیں ہے۔ +DocType: Server Script,Script Manager,اسکرپٹ مینیجر +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,کوئی سرگرمی نہیں ہے۔ apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,تیسری پارٹی کے اطلاقات apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,سسٹم مینیجر ہو جائے گا سب سے پہلے صارف (آپ بعد میں اس کو تبدیل کر سکتے ہیں). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,آج کوئی واقعات نہیں apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,آپ خود کو جائزہ لینے کے نکات نہیں دے سکتے ہیں۔ apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,منتخب ڈیک ایونٹ کے لئے ڈوکوپائپ سبٹیٹیبل ہونا ضروری ہے DocType: Workflow State,circle-arrow-up,دائرہ تیر اپ @@ -248,6 +255,7 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},اپ ڈیٹ کرنا {0} apps/frappe/frappe/core/doctype/report/report.js,Disable Report,غیر فعال رپورٹ DocType: Translation,Contributed Translation Doctype Name,تعاون یافتہ ترجمہ دستاویز نام۔ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> فارم کو کسٹمائز کریں DocType: PayPal Settings,Redirect To,پر ری ڈائریکٹ DocType: Data Migration Mapping,Pull,ھیںچو DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جاوا کی شکل: frappe.query_reports ['REPORTNAME'] = {} @@ -261,6 +269,7 @@ DocType: DocShare,Internal record of document shares,دستاویز حصص کی DocType: Energy Point Settings,Review Levels,جائزہ لیول DocType: Workflow State,Comment,تبصرہ DocType: Data Migration Plan,Postprocess Method,پوسٹ پروسیسر کا طریقہ +DocType: DocType Action,Action Type,ایکشن کی قسم apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,تصویر لو DocType: Assignment Rule,Round Robin,راؤنڈ رابن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",آپ ان میں ترمیم، اس کے بعد ان کو منسوخ اور کی طرف سے پیش کی دستاویزات کو تبدیل کر سکتے ہیں. @@ -274,6 +283,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ایسے محفوظ کریں DocType: Comment,Seen,دیکھا apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,مزید دکھائیں تفصیلات +DocType: Server Script,Before Submit,جمع کروانے سے پہلے DocType: System Settings,Run scheduled jobs only if checked,جانچ پڑتال کی تو صرف شیڈول کے مطابق روزگار چلائیں apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,سیکشن عنوانات فعال ہیں تو صرف دکھایا جائے گا apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,محفوظ شدہ دستاویزات @@ -286,10 +296,12 @@ DocType: Dropbox Settings,Dropbox Access Key,ڈراپ باکس رسائی کلی apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,غلط فیلڈ نام <b>{0}</b> اپنی مرضی کے اسکرپٹ کی add_fetch ترتیب میں apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,گوگل رابطوں کا انتخاب کریں جس سے رابطہ ہم آہنگ ہونا چاہئے۔ DocType: Web Page,Main Section (HTML),مین سیکشن (ایچ ٹی ایم ایل) +DocType: Scheduled Job Type,Annual,سالانہ DocType: Workflow State,headphones,ہیڈ فون apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,پاس ورڈ مطلوب یا انتظارہے پاس ورڈ منتخب کیا جاتا ہے DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,مثال کے طور پر replies@yourcomany.com. تمام جوابات یہ ان باکس میں آ جائے گا. DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook URL +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",وزرڈ میں سلائیڈ کا آرڈر طے کرتا ہے۔ اگر سلائیڈ ظاہر نہیں کرنا ہے تو ، ترجیح 0 پر رکھی جانی چاہئے۔ DocType: Data Migration Run,Current Mapping,موجودہ نقشہ سازی apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,درست ای میل اور نام کی ضرورت apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,تمام منسلکات کو نجی بنائیں۔ @@ -312,6 +324,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ڈرا apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,ڈیفالٹس پر ری سیٹ کر دیں DocType: Workflow,Transition Rules,منتقلی کے قواعد apps/frappe/frappe/core/doctype/report/report.js,Example:,مثال: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,پابندیاں DocType: Workflow,Defines workflow states and rules for a document.,ایک دستاویز کے لئے کام کے فلو کو امریکہ اور اس کے قوانین کی وضاحت کرتا ہے. DocType: Workflow State,Filter,فلٹر apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},مزید معلومات کے لئے غلطی لاگ کو چیک کریں: {0} @@ -323,6 +336,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,نوکری۔ apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} لاگ آؤٹ: {1} DocType: Address,West Bengal,مغربی بنگال +DocType: Onboarding Slide,Information,معلومات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: مقرر Submittable اگر نہیں جمع کرائیں مقرر نہیں کر سکتے ہیں DocType: Transaction Log,Row Index,قطار انڈیکس DocType: Social Login Key,Facebook,فیس بک @@ -341,7 +355,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,کے بٹن کی مدد DocType: Kanban Board Column,purple,جامنی رنگ DocType: About Us Settings,Team Members,ٹیم کے ارکان +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,غیر فعال سائٹوں کے لئے دن میں صرف ایک بار شیڈول ملازمتیں چلائیں گے۔ پہلے سے طے شدہ 4 دن اگر 0 پر سیٹ کیا گیا ہو۔ DocType: Assignment Rule,System Manager,سسٹم مینیجر +DocType: Scheduled Job Log,Scheduled Job,شیڈول ملازمت DocType: Custom DocPerm,Permissions,اجازتیں apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,اندرونی انضمام کے لئے سلی بیک Webhooks DocType: Dropbox Settings,Allow Dropbox Access,ڈراپ باکس رسائی کی اجازت دیں @@ -394,6 +410,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,با DocType: Email Flag Queue,Email Flag Queue,ای میل پرچم کی قطار DocType: Access Log,Columns / Fields,کالم / فیلڈز apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,پرنٹ کی شکلوں کے لئے طرز شیٹ +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,ڈیش بورڈ چارٹ بنانے کیلئے مجموعی فنکشن فیلڈ درکار ہے apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,کھلی شناخت نہیں کر سکتے {0}. کچھ اور کوشش. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,آپ کی معلومات جمع ہوگئی ہے apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} خارج نہیں کیا جا سکتا @@ -410,11 +427,12 @@ DocType: Property Setter,Field Name,میدان کا نام DocType: Assignment Rule,Assign To Users,صارفین کو تفویض کریں۔ apps/frappe/frappe/public/js/frappe/utils/utils.js,or,یا apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,ماڈیول کا نام ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,آگے +DocType: Onboarding Slide,Continue,آگے apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,گوگل انٹیگریشن غیر فعال ہے۔ DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,سرٹیفکیٹ apps/frappe/frappe/templates/includes/login/login.js,Verifying...,توثیق کرنے سے ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,آپ کی اسائنمنٹ {0} {1} پر ہٹا دی گئی ہے apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,پہلے ڈیٹا کالم خالی ہونا ضروری ہے. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,تمام ورژن دکھائیں apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,تبصرہ دیکھیں۔ @@ -423,12 +441,14 @@ DocType: Energy Point Log,Review,جائزہ DocType: User,Restrict IP,IP محدود apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ڈیش بورڈ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,اس وقت ای میلز بھیجنے سے قاصر ہے +DocType: Notification Log,Email Content,ای میل کا مواد apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,تلاش یا ایک کمانڈ ٹائپ کریں DocType: Activity Log,Timeline Name,ٹائم لائن کا نام apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,صرف ایک {0} کو بطور پرائمری سیٹ کیا جاسکتا ہے۔ DocType: Email Account,e.g. smtp.gmail.com,مثال کے طور پر smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ایک نیا قاعدہ شامل DocType: Contact,Sales Master Manager,سیلز ماسٹر مینیجر +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,اپنی ایپ کو کام کرنے کیلئے آپ کو جاوا اسکرپٹ کو چالو کرنے کی ضرورت ہے۔ DocType: User Permission,For Value,قدر کے لئے DocType: Event,Google Calendar ID,Google کیلنڈر ID apps/frappe/frappe/www/complete_signup.html,One Last Step,ایک آخری مرحلہ @@ -444,6 +464,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,ایل ڈی اے پی مڈل نا apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} میں سے {0} درآمد کرنا DocType: GCalendar Account,Allow GCalendar Access,GCalendar رسائی کی اجازت دیں apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} لازمی میدان ہے +DocType: DocType,Documentation Link,دستاویزی لنک apps/frappe/frappe/templates/includes/login/login.js,Login token required,لاگ ان ٹوکن کی ضرورت ہے apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ماہانہ درجہ بندی: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,متعدد فہرست اشیاء منتخب کریں۔ @@ -465,6 +486,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,فائل یو آر ایل DocType: Version,Table HTML,ٹیبل HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,صارفین کو شامل +DocType: Notification Log,Energy Point,انرجی پوائنٹ apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,آج کے لئے انے والے واقعات DocType: Google Calendar,Push to Google Calendar,گوگل کیلنڈر پر دبائیں۔ DocType: Notification Recipient,Email By Document Field,دستاویز میدان کی طرف سے ای میل @@ -480,7 +502,6 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,دور DocType: Currency,Fraction Units,کسر یونٹس apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} سے {1} کو {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,مکمل کی نشاندہی DocType: Chat Message,Type,قسم DocType: Google Settings,OAuth Client ID,OAuth کلائنٹ کی شناخت DocType: Auto Repeat,Subject,موضوع @@ -508,6 +529,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,تصدیق کے لیے اپنا ای میل چیک کریں براہ مہربانی apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,گنا فارم کے آخر میں نہیں ہو سکتا DocType: Communication,Bounced,واپس +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,کے DocType: Deleted Document,Deleted Name,حذف شدہ نام apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,سسٹم اور ویب سائٹ کے صارفین DocType: Workflow Document State,Doc Status,ڈاکٹر رتبہ @@ -518,6 +540,7 @@ DocType: Language,Language Code,زبان کے کوڈ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,نوٹ: ناکام بیک اپ کے لئے پہلے سے طے شدہ ای میلز بھیجے جاتے ہیں. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,فلٹر شامل apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},ایس ایم ایس مندرجہ ذیل نمبروں کے لئے بھیجا: {0} +DocType: Notification Settings,Assignments,اسائنمنٹس apps/frappe/frappe/utils/data.py,{0} and {1},{0} اور {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,بات چیت شروع کرو. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ہمیشہ پرنٹنگ ڈرافٹ دستاویزات کے لئے سرخی "مسودہ" کا اضافہ @@ -526,6 +549,7 @@ DocType: Data Migration Run,Current Mapping Start,موجودہ نقشہ سازی apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ای میل سپیم کے طور پر نشان زد کیا گیا ہے DocType: Comment,Website Manager,ویب سائٹ کے مینیجر apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,فائل اپ لوڈ منقطع. دوبارہ کوشش کریں. +DocType: Data Import Beta,Show Failed Logs,ناکام لاگ ان دکھائیں apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,ترجمہ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,آپ کے منتخب کردہ ڈرافٹ یا منسوخ دستاویزات apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},دستاویز {0} کو {1} کی حیثیت سے {2} مقرر کیا گیا ہے. @@ -533,7 +557,9 @@ apps/frappe/frappe/model/document.py,Document Queued,دستاویز قطار DocType: GSuite Templates,Destination ID,مقصود ID DocType: Desktop Icon,List,فہرست DocType: Activity Log,Link Name,لنک کا نام +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,آپ کی جگہ \ DocType: System Settings,mm/dd/yyyy,ملی میٹر / DD / YYYY +DocType: Onboarding Slide,Onboarding Slide,آن بورڈنگ سلائڈ apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,غلط پاسورڈ: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,غلط پاسورڈ: DocType: Print Settings,Send document web view link in email,ای میل میں دستاویز ویب قول لنک بھیجیں @@ -595,6 +621,7 @@ DocType: Kanban Board Column,darkgrey,گہرا بھورا apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},کامیاب: {0} سے {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ڈیمو میں صارف کی تفصیلات کو تبدیل نہیں کر سکتے. https://erpnext.com میں ایک نیا اکاؤنٹ کے لئے سائن اپ کریں براہ مہربانی apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,ڈراپ۔ +DocType: Dashboard Chart,Aggregate Function Based On,مجموعی کام پر مبنی apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,تبدیلیاں کرنے کے لئے اس کی نقل کریں apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,بچانے کے لئے درج دبائیں apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF نسل کی وجہ سے ٹوٹا ہوا تصویر لنکس میں ناکام @@ -608,7 +635,9 @@ DocType: Notification,Days Before,دن پہلے apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,روزانہ کی تقریبات اسی دن ختم ہوجائیں۔ apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ترمیم... DocType: Workflow State,volume-down,حجم نیچے +DocType: Onboarding Slide,Help Links,مدد لنکس apps/frappe/frappe/auth.py,Access not allowed from this IP Address,اس IP پتے سے رسائی کی اجازت نہیں ہے۔ +DocType: Notification Settings,Enable Email Notifications,ای میل کی اطلاعات کو فعال کریں apps/frappe/frappe/desk/reportview.py,No Tags,کوئی ٹیگز DocType: Email Account,Send Notification to,کو نوٹیفکیشن بھیجنے کے DocType: DocField,Collapsible,تہ @@ -637,6 +666,7 @@ DocType: Google Drive,Last Backup On,آخری بیک اپ آن۔ DocType: Customize Form Field,Customize Form Field,فارم فیلڈ کی تخصیص کریں DocType: Energy Point Rule,For Document Event,دستاویز ایونٹ کے لئے DocType: Website Settings,Chat Room Name,چیٹ روم کا نام +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,بدلاؤ DocType: OAuth Client,Grant Type,گرانٹ کی قسم apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,ایک صارف کی طرف سے پڑھنے کے قابل ہیں جو دستاویزات کی جانچ پڑتال DocType: Deleted Document,Hub Sync ID,حب ہم آہنگی کی شناخت @@ -644,6 +674,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,وا DocType: Auto Repeat,Quarterly,سہ ماہی apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",ای میل ڈومین، اس اکاؤنٹ کے لئے ترتیب دیا گیا ایک نہیں بنائیں؟ DocType: User,Reset Password Key,پاس ورڈ ری سیٹ کلیدی +DocType: Dashboard Chart,All Time,تمام وقت apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} کیلئے غیر قانونی دستاویز کی حیثیت DocType: Email Account,Enable Auto Reply,آٹو جواب فعال apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,نہیں دیکھا @@ -656,6 +687,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,پی DocType: Email Account,Notify if unreplied,براہ مہربانی انتظار تو مطلع کریں apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR کوڈ کو اسکین کریں اور دکھایا گیا نتیجہ کوڈ درج کریں. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,درجات کو فعال کریں۔ +DocType: Scheduled Job Type,Hourly Long,ہر گھنٹے طویل DocType: System Settings,Minimum Password Score,کم از کم پاس ورڈ اسکور DocType: System Settings,Minimum Password Score,کم از کم پاس ورڈ اسکور DocType: DocType,Fields,قطعات @@ -664,11 +696,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,والدی apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 بیک اپ مکمل! apps/frappe/frappe/config/desktop.py,Developer,ڈیولپر apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,پیدا کیا +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},اس کو اہل بنانے کیلئے درج ذیل لنک میں دی گئی ہدایات پر عمل کریں: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} قطار میں {1} دونوں یو آر ایل اور بچے اشیاء نہیں کر سکتے ہیں apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},مندرجہ ذیل جدولوں کے لئے کم از کم ایک قطار ہونی چاہئے: {0} DocType: Print Format,Default Print Language,ڈیفالٹ پرنٹ زبان۔ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,کے باپ دادا apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} روٹ خارج نہیں کیا جا سکتا +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,کوئی ناکام لاگ ان apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,ابھی تک کوئی تبصرہ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",ایس ایم ایس کی ترتیبات کے ذریعہ، اس کو ایک تصدیق کے طریقہ کار کے طور پر ترتیب دینے سے پہلے ایس ایم ایس سیٹ کریں apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,ضرورت دونوں DOCTYPE اور نام @@ -692,6 +726,7 @@ DocType: Website Settings,Footer Items,فوٹر اشیا apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,مینو DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,ڈیلی +DocType: Onboarding Slide,Max Count,زیادہ سے زیادہ گنتی apps/frappe/frappe/config/users_and_permissions.py,User Roles,صارف کے کردار DocType: Property Setter,Property Setter overrides a standard DocType or Field property,پراپرٹی سیٹر ایک معیاری DOCTYPE یا فیلڈ جائداد کی جگہ لے لیتا apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,تازہ کاری نہیں ہوسکتی: غلط / ختم لنک. @@ -709,6 +744,7 @@ DocType: Footer Item,"target = ""_blank""",ہدف = "_blank" DocType: Workflow State,hdd,کوائف نامہ DocType: Integration Request,Host,میزبان DocType: Data Import Beta,Import File,فائل درآمد کریں۔ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,سانچہ میں خرابی apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,کالم <b>{0}</b> پہلے ہی موجود ہے. DocType: ToDo,High,ہائی apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,نیا واقعہ @@ -724,6 +760,7 @@ DocType: Web Form Field,Show in filter,فلٹر میں دکھائیں DocType: Address,Daman and Diu,دمن اور دیو apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,پروجیکٹ DocType: Address,Personal,ذاتی +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,خام پرنٹنگ کی ترتیبات ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,تفصیلات کے لئے https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region دیکھیں۔ apps/frappe/frappe/config/settings.py,Bulk Rename,بلک کا نام تبدیل DocType: Email Queue,Show as cc,سی سی کے طور پر دکھائیں @@ -733,6 +770,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,ویڈیو لے ل DocType: Contact Us Settings,Introductory information for the Contact Us Page,ہم سے رابطہ کریں صفحہ کے لئے تعارفی معلومات DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,انگوٹھوں نیچے +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,دستاویزات منسوخ کرنا DocType: User,Send Notifications for Email threads,ای میل کے دھاگوں کے لئے اطلاعات بھیجیں۔ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,پروفیسر apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,نہیں ڈیولپر موڈ میں @@ -740,7 +778,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,فائل ب DocType: DocField,In Global Search,گلوبل تلاش میں DocType: System Settings,Brute Force Security,برٹ فورس سیکورٹی DocType: Workflow State,indent-left,پوٹ بائیں -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال (سال پہلے) apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,اس فائل کو حذف کرنا خطرناک ہے: {0}. آپ کے سسٹم مینیجر سے رابطہ کریں. DocType: Currency,Currency Name,کرنسی نام apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,کوئی ای میلز @@ -755,11 +792,13 @@ DocType: Energy Point Rule,User Field,صارف کا فیلڈ DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,حذف کر دیں apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} کے لئے پہلے ہی سبسکرائب {1} {2} +DocType: Scheduled Job Type,Stopped,روک apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,ختم نہیں کیا apps/frappe/frappe/desk/like.py,Liked,پسند apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,اب بھیجیں apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",سٹینڈرڈ DOCTYPE ڈیفالٹ پرنٹ کی شکل کی ضرورت نہیں کر سکتے ہیں، مرضی کے مطابق فارم کا استعمال apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",سٹینڈرڈ DOCTYPE ڈیفالٹ پرنٹ کی شکل کی ضرورت نہیں کر سکتے ہیں، مرضی کے مطابق فارم کا استعمال +DocType: Server Script,Allow Guest,مہمان کی اجازت دیں DocType: Report,Query,سوال DocType: Customize Form,Sort Order,ترتیب apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},'فہرست میں،' صف میں داخل {0} کرنے کی اجازت نہیں {1} @@ -781,10 +820,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,دو فیکٹر کی توثیق کا طریقہ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,سب سے پہلے نام قائم اور ریکارڈ کو بچانے کے. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ریکارڈ +DocType: DocType Link,Link Fieldname,لنک کا نام apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},کے ساتھ مشترکہ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,رکنیت ختم DocType: View Log,Reference Name,حوالہ کا نام apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,صارف کو تبدیل کریں۔ +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,پہلا apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,تازہ ترین ترجمہ DocType: Error Snapshot,Exception,رعایت DocType: Email Account,Use IMAP,استعمال IMAP @@ -799,6 +840,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,کام کے فلو کو میں ریاست کی منتقلی کی وضاحت قواعد. DocType: File,Folder,فولڈر DocType: Website Route Meta,Website Route Meta,ویب سائٹ روٹ میٹا۔ +DocType: Onboarding Slide Field,Onboarding Slide Field,آن بورڈنگ سلائڈ فیلڈ DocType: DocField,Index,انڈیکس DocType: Email Group,Newsletter Manager,نیوز لیٹر منیجر apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,اختیار 1 @@ -825,7 +867,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ل apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,چارٹ تشکیل دیں DocType: User,Last IP,آخری IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,براہ مہربانی اپنے ای میل پر ایک مضمون شامل کریں -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,{1} آپ کے ساتھ ایک نئی دستاویز {0} کا اشتراک کیا گیا ہے. DocType: Data Migration Connector,Data Migration Connector,ڈیٹا منتقلی کنیکٹر apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} کو الٹ دیا {1} DocType: Email Account,Track Email Status,ای میل کی حیثیت کو ٹریک کریں @@ -884,6 +925,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,تلاش DocType: Workflow State,text-width,متن چوڑائی apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,اس ریکارڈ کے لئے زیادہ سے زیادہ منسلکہ کی حد تک پہنچ. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,فائل نام یا توسیع کے ذریعہ تلاش کریں۔ +DocType: Onboarding Slide,Slide Title,سلائیڈ کا عنوان DocType: Notification,View Properties (via Customize Form),(اپنی مرضی کے مطابق فارم کے ذریعے) دیکھیں پراپرٹیز apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,کسی فائل کو منتخب کرنے کے لئے اس پر کلک کریں۔ DocType: Note Seen By,Note Seen By,کی طرف سے دیکھا نوٹ @@ -910,13 +952,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,اشتراک کریں URL DocType: System Settings,Allow Consecutive Login Attempts ,مسلسل لاگ ان کی کوششوں کی اجازت دیں apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,ادائیگی کے عمل کے دوران ایک خرابی ہوئی. براے مہربانی ہم سے رابطہ کریں. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,اگر سلائیڈ کی قسم تشکیل یا ترتیبات کی ہے تو ، سلائیڈ مکمل ہونے کے بعد عملدرآمد کی پابند {ref_doctype py .py فائل میں 'create_onboarding_docs' طریقہ ہونا چاہئے۔ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} دن پھلے DocType: Email Account,Awaiting Password,انتظارہے پاس ورڈ DocType: Address,Address Line 1,پتہ لائن 1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,نہیں DocType: Contact,Company Name,کمپنی کا نام DocType: Custom DocPerm,Role,کردار -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,ترتیبات ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,اپنے براؤزر پر۔ apps/frappe/frappe/utils/data.py,Cent,فیصد ,Recorder,ریکارڈر۔ @@ -975,6 +1017,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",اگر یہ ایرر برقرار رہے تو ہمارے ہیلپ ڈیسک سے رابطہ کریں. <br> نوٹ: اگر آپ ایک سے زیادہ وصول کنندگان کو بھیج رہے ہیں، یہاں تک کہ اگر 1 وصول کنندہ ای میل پڑھتا ہے، تو اسے "کھولی" سمجھا جائے گا. apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,لاپتہ اقدار مطلوب apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,گوگل رابطوں تک رسائی کی اجازت دیں۔ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,محدود ہے DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,اس کے اوپرنشان لگایں کہ پڑھا نیں ہوا DocType: Activity Log,Operation,آپریشن @@ -1028,6 +1071,7 @@ DocType: Web Form,Allow Print,پرنٹ اجازت دیں DocType: Communication,Clicked,کلک apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,غیر مسدود کریں apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},کرنے کی اجازت نہیں '{0} {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے پہلے سے طے شدہ ای میل اکاؤنٹ مرتب کریں apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,بھیجنے کے لئے تخسوچت DocType: DocType,Track Seen,ٹریک دیکھا DocType: Dropbox Settings,File Backup,فائل بیک اپ @@ -1036,12 +1080,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,کوئی {0} apps/frappe/frappe/config/customization.py,Add custom forms.,اپنی مرضی کے مطابق فارم شامل. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} میں {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,اس دستاویز جمع کرائی -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,نظام بہت پہلے سے مقرر کردار فراہم کرتا ہے. آپ finer کی اجازت مقرر کرنے کے لئے نئے کردار شامل کر سکتے ہیں. DocType: Communication,CC,CC DocType: Country,Geo,جیو DocType: Data Migration Run,Trigger Name,ٹرگر کا نام -apps/frappe/frappe/public/js/frappe/desk.js,Domains,ڈومینز +DocType: Onboarding Slide,Domains,ڈومینز DocType: Blog Category,Blog Category,بلاگ زمرہ apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,مندرجہ ذیل کی حالت میں ناکام کیونکہ نقشہ نہیں کر سکتے ہیں: DocType: Role Permission for Page and Report,Roles HTML,کردار ایچ ٹی ایم ایل @@ -1082,7 +1125,6 @@ DocType: Assignment Rule Day,Saturday,ہفتہ DocType: User,Represents a User in the system.,نظام میں ایک صارف کی نمائندگی کرتا ہے. DocType: List View Setting,Disable Auto Refresh,آٹو ریفریش کو غیر فعال کریں۔ DocType: Comment,Label,لیبل -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",کام {0}، آپ {1}، بند کر دیا گیا ہے کے لئے مقرر کیا ہے. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,اس ونڈو کو بند کریں براہ مہربانی DocType: Print Format,Print Format Type,پرنٹ کی شکل قسم DocType: Newsletter,A Lead with this Email Address should exist,یہ ای میل ایڈریس کے ساتھ ایک لیڈ وجود چاہئے @@ -1099,6 +1141,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,سبکدوش ہونے apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ایک کا انتخاب DocType: Data Export,Filter List,فلٹر کی فہرست DocType: Data Export,Excel,ایکسل +DocType: System Settings,HH:mm,HH: ملی میٹر DocType: Email Account,Auto Reply Message,آٹو جواب پیغام DocType: Data Migration Mapping,Condition,حالت apps/frappe/frappe/utils/data.py,{0} hours ago,{0} گھنٹے پہلے @@ -1117,12 +1160,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,سویدی مددگار DocType: Communication,Sent Read Receipt,مرسلہ پڑھیں رسید DocType: Email Queue,Unsubscribe Method,رکنیت ختم طریقہ +DocType: Onboarding Slide,Add More Button,مزید بٹن شامل کریں DocType: GSuite Templates,Related DocType,متعلقہ DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,مواد شامل کرنے کے ترمیم apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,زبانیں منتخب apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,کارڈ کی تفصیلات apps/frappe/frappe/__init__.py,No permission for {0},کے لئے کی اجازت نہیں {0} DocType: DocType,Advanced,اعلی درجے +DocType: Onboarding Slide,Slide Image Source,سلائیڈ امیج ماخذ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API کلید لگتا ہے یا API خفیہ غلط ہے !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},حوالہ: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,مسز @@ -1139,6 +1184,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ماسٹر DocType: DocType,User Cannot Create,صارف نہیں بنا سکتے apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,کامیابی سے ہو گیا۔ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ڈراپ باکس تک رسائی کی منظوری دے دی جاتی ہے! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,کیا آپ واقعی {0} کو {1} کے ساتھ ضم کرنا چاہتے ہیں؟ DocType: Customize Form,Enter Form Type,فارم کی قسم درج DocType: Google Drive,Authorize Google Drive Access,گوگل ڈرائیو تک رسائی کی اجازت دیں۔ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,لاپتہ پیرامیٹر Kanban بورڈ کا نام @@ -1148,7 +1194,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",DOCTYPE، DOCTYPE کی اجازت دیتا ہے. محتاط رہیں! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",پرنٹنگ، ای میل کے لئے اپنی مرضی کے مطابق ترتیب apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} کا جوڑ -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,نئے ورژن پر اپ ڈیٹ DocType: Custom Field,Depends On,منحصرکرتاہے DocType: Kanban Board Column,Green,گرین DocType: Custom DocPerm,Additional Permissions,اضافی اجازت @@ -1175,6 +1220,7 @@ DocType: Address,Is Your Company Address,آپ کی کمپنی ایڈریس ہے DocType: Energy Point Log,Social,سماجی apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,ترمیم صف DocType: Workflow Action Master,Workflow Action Master,کام کے فلو کو ایکشن ماسٹر +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,تمام حذف کریں DocType: Custom Field,Field Type,فیلڈ کی قسم apps/frappe/frappe/utils/data.py,only.,صرف. DocType: Route History,Route History,راستہ کی تاریخ @@ -1209,11 +1255,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,پاسورڈ بھول گے؟ DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,سرور کی خرابی +DocType: Server Script,After Delete,حذف کرنے کے بعد apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,پچھلی تمام رپورٹیں دیکھیں۔ apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,لاگ ان کی شناخت کی ضرورت ہے DocType: Website Slideshow,Website Slideshow,ویب سائٹ سلائیڈ شو apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,کوئی ڈیٹا DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",ویب سائٹ کے ہوم پیج جاتا ہے کہ لنک. معیاری روابط (انڈیکس، لاگ ان، مصنوعات، بلاگ، کے بارے میں، رابطہ) +DocType: Server Script,After Submit,جمع کروانے کے بعد apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ای میل اکاؤنٹ {0} سے ای میلز وصول کرتے ہوئے توثیق ناکام. سرور سے پیغام: {1} DocType: User,Banner Image,بینر کی تصویر DocType: Custom Field,Custom Field,اپنی مرضی کے میدان @@ -1254,15 +1302,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",صارف کی جانچ پڑتال کوئی کردار نہیں ہیں تب صارف ایک "سسٹم یوزر" بن جاتا ہے. "سسٹم یوزر کے" ڈیسک ٹاپ تک رسائی حاصل ہے DocType: System Settings,Date and Number Format,تاریخ اور نمبر کی شکل apps/frappe/frappe/model/document.py,one of,اس میں سے ایک -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> فارم کو کسٹمائز کریں apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,ایک لمحے پڑتال کر رہا ہے apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,دکھائیں ٹیگز DocType: DocField,HTML Editor,ایچ ٹی ایم ایل ایڈیٹر 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,عوامل -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف +DocType: DocType,Actions,عوامل DocType: Workflow State,align-justify,سیدھ-جواز DocType: User,Middle Name (Optional),مشرق نام (اختیاری) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,اجازت نہیں @@ -1276,6 +1322,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,بے نتی DocType: System Settings,Security,سیکورٹی apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} وصول کنندگان کو بھیجنے کے لئے تخسوچت apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,کٹ +DocType: Server Script,After Save,محفوظ کرنے کے بعد apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},سے نام تبدیل کر دیا {0} کو {1} DocType: Currency,**Currency** Master,** ** کرنسی ماسٹر DocType: Email Account,No of emails remaining to be synced,باقی کے ای میلز کی مطابقت پذیر ہونے کیلئے @@ -1299,16 +1346,19 @@ DocType: Prepared Report,Filter Values,فلٹر اقدار DocType: Communication,User Tags,صارف ٹیگز DocType: Data Migration Run,Fail,ناکام DocType: Workflow State,download-alt,ڈاؤن لوڈ، اتارنا-ALT +DocType: Scheduled Job Type,Last Execution,آخری پھانسی DocType: Data Migration Run,Pull Failed,ناک کو ناکام apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,کارڈز دکھائیں / چھپائیں DocType: Communication,Feedback Request,آپ کی رائے گذارش apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,CSV / ایکسل فائلوں سے درآمد ڈیٹا. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,مندرجہ ذیل شعبوں کو یاد کر رہے ہیں: +DocType: Notification Log,From User,صارف سے apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},منسوخ کرنا {0} DocType: Web Page,Main Section,اہم حصے DocType: Page,Icon,آئکن apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",اشارہ: پاس ورڈ میں علامات، اعداد اور بڑے حروف شامل ہیں apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",اشارہ: پاس ورڈ میں علامات، اعداد اور بڑے حروف شامل ہیں +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",تذکروں ، اسائنمنٹس ، انرجی پوائنٹس اور بہت کچھ کے لئے اطلاعات کو تشکیل دیں۔ DocType: DocField,Allow in Quick Entry,فوری اندراج میں اجازت دیں apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,DD / MM / YYYY @@ -1340,7 +1390,6 @@ DocType: Website Theme,Theme URL,تھیم یو آر ایل DocType: Customize Form,Sort Field,ترتیب دیں میدان DocType: Razorpay Settings,Razorpay Settings,Razorpay ترتیبات apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,میں ترمیم کریں فلٹر -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,شامل مزید DocType: System Settings,Session Expiry Mobile,سیشن ختم ہونے موبائل apps/frappe/frappe/utils/password.py,Incorrect User or Password,غلط صارف یا پاس ورڈ apps/frappe/frappe/templates/includes/search_box.html,Search results for,کے لئے تلاش کے نتائج @@ -1356,8 +1405,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,انرجی پوائنٹ رول۔ DocType: Communication,Delayed,تاخیر apps/frappe/frappe/config/settings.py,List of backups available for download,ڈاؤن لوڈ، اتارنا کے لئے دستیاب بیک اپ کی فہرست +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,نیا ڈیٹا امپورٹ آزمائیں apps/frappe/frappe/www/login.html,Sign up,اکاؤنٹ بنانا apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,قطار {0}: معیاری شعبوں کے لئے لازمی طور پر غیر فعال کرنے کی اجازت نہیں ہے +DocType: Webhook,Enable Security,سیکیورٹی کو قابل بنائیں apps/frappe/frappe/config/customization.py,Dashboards,ڈیش بورڈز DocType: Test Runner,Output,پیداوار DocType: Milestone,Track Field,ٹریک فیلڈ @@ -1376,6 +1427,7 @@ DocType: Portal Menu Item,Portal Menu Item,پورٹل مینو اشیاء apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,فلٹرز سیٹ کریں۔ DocType: Contact Us Settings,Email ID,ای میل ID DocType: Energy Point Rule,Multiplier Field,ضرب قطعہ۔ +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,استراپی آرڈر نہیں بناسکے۔ برائے مہربانی ایڈمنسٹریٹر سے رابطہ کریں DocType: Dashboard Chart,Time Interval,وقت وقفہ DocType: Activity Log,Keep track of all update feeds,فیڈ اپ کو اپ ڈیٹ کریں DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,وسائل کی ایک فہرست ہے جس میں کلائنٹ اے پی پی کے بعد صارف کو یہ اجازت دیتا ہے تک رسائی حاصل ہوگی. <br> مثال کے طور پر اس منصوبے @@ -1395,6 +1447,7 @@ DocType: DefaultValue,Key,کلیدی DocType: Address,Contacts,رابطے DocType: System Settings,Setup Complete,مکمل سیٹ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,تمام دستاویز حصص کی رپورٹ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",درآمد ٹیمپلیٹ .csv ، .xlsx یا .xls قسم کا ہونا چاہئے apps/frappe/frappe/www/update-password.html,New Password,نیا پاس ورڈ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,فلٹر {0} لاپتہ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,معاف کیجئے گا! آپ آٹو تخلیق تبصروں کو حذف نہیں کر سکتے ہیں @@ -1410,6 +1463,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara DocType: Website Settings,FavIcon,ویب شبیہ apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,رن DocType: Blog Post,Content (HTML),مواد (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,کے لئے سیٹ اپ DocType: Personal Data Download Request,User Name,صارف کا نام۔ DocType: Workflow State,minus-sign,مائنس نشانی apps/frappe/frappe/public/js/frappe/request.js,Not Found,نہیں ملا @@ -1417,6 +1471,7 @@ apps/frappe/frappe/www/printview.py,No {0} permission,کوئی {0} کی اجاز apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ایکسپورٹ اپنی مرضی کی اجازتیں apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,کوئی چیز نہیں ملی. DocType: Data Export,Fields Multicheck,فیلڈز ملائشک +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,.} مکمل DocType: Activity Log,Login,لاگ ان DocType: Web Form,Payments,ادائیگی apps/frappe/frappe/www/qrcode.html,Hi {0},ہیلو {0} @@ -1444,6 +1499,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,عام apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,اجازت کی خرابی apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},کا نام {0} نہیں ہو سکتا {1} DocType: User Permission,Applicable For,کے لئے قابل اطلاق +DocType: Dashboard Chart,From Date,تاریخ سے apps/frappe/frappe/core/doctype/version/version_view.html,Success,کامیابی apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,مدت ختم ہو گئی apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,مدت ختم ہو گئی @@ -1456,7 +1512,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ک apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,؛ حالت میں اجازت نہیں DocType: Async Task,Async Task,کرنے async ٹاسک DocType: Workflow State,picture,تصویر -apps/frappe/frappe/www/complete_signup.html,Complete,مکمل +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,مکمل DocType: DocType,Image Field,تصویر میدان DocType: Print Format,Custom HTML Help,اپنی مرضی کے HTML مدد DocType: LDAP Settings,Default Role on Creation,تخلیق سے پہلے سے طے شدہ کردار۔ @@ -1464,6 +1520,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,اگلے ریاست DocType: User,Block Modules,بلاک ماڈیول DocType: Print Format,Custom CSS,اپنی مرضی کے مطابق سی ایس ایس +DocType: Energy Point Rule,Apply Only Once,صرف ایک بار درخواست دیں apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ایک تبصرہ شامل کریں DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},نظر انداز: {0} سے {1} @@ -1474,6 +1531,7 @@ DocType: Address,Postal,ڈاک DocType: Email Account,Default Incoming,پہلے سے طے شدہ موصولہ DocType: Workflow State,repeat,دوبارہ DocType: Website Settings,Banner,بینر +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,تمام دستاویزات منسوخ کریں DocType: Role,"If disabled, this role will be removed from all users.",غیر فعال، اس کردار کے تمام صارفین کی طرف سے ہٹا دیا جائے گا. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} فہرست پر جائیں۔ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,تلاش کرنے میں مدد @@ -1482,6 +1540,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,رجسٹر apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,اس دستاویز کے لئے آٹو ریپیٹ کو غیر فعال کردیا گیا ہے۔ DocType: DocType,Hide Copy,کاپی چھپائیں apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,تمام کردار صاف +DocType: Server Script,Before Save,محفوظ کرنے سے پہلے apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} منفرد ہونا ضروری ہے apps/frappe/frappe/model/base_document.py,Row,صف apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template",سی سی، بی سی سی اور ای میل سانچہ @@ -1491,7 +1550,6 @@ DocType: Workflow State,Check,چیک DocType: Chat Profile,Offline,آف لائن DocType: User,API Key,API کلید DocType: Email Account,Send unsubscribe message in email,ای میل میں رکنیت ختم پیغام ارسال کریں -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ترمیم عنوان apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,اس لنک فیلڈ کے لئے DOCTYPE ہو جائے گا جس FIELDNAME. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,آپ کے لئے اور آپ کی طرف سے تفویض کردہ دستاویزات. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,آپ اسے کاپی پیسٹ بھی کرسکتے ہیں۔ @@ -1521,8 +1579,10 @@ DocType: Data Migration Run,Total Pages,کل صفحات DocType: DocField,Attach Image,تصویر منسلک DocType: Workflow State,list-alt,فہرست ALT apps/frappe/frappe/www/update-password.html,Password Updated,پاس ورڈ کو اپ ڈیٹ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت apps/frappe/frappe/www/qrcode.html,Steps to verify your login,اپنے لاگ ان کی تصدیق کے لئے اقدامات apps/frappe/frappe/utils/password.py,Password not found,پاس ورڈ نہیں ملا +DocType: Webhook,Webhook Secret,ویب ہک سیکرٹ DocType: Data Migration Mapping,Page Length,صفحہ کی لمبائی DocType: Email Queue,Expose Recipients,وصول کنندگان کو بے نقاب apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,آنے والے میلز کے لئے لازمی ہے ملائیں @@ -1548,6 +1608,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,سسٹم DocType: Web Form,Max Attachment Size (in MB),میکس منسلکہ سائز (MB میں) apps/frappe/frappe/www/login.html,Have an account? Login,کیا آپ کا اکاؤنٹ ہے؟ لاگ ان +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,پرنٹ کی ترتیبات ... DocType: Workflow State,arrow-down,تیر نیچے apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},قطار {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},صارف کو خارج کرنے کی اجازت نہیں {0}: {1} @@ -1569,6 +1630,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,آپ اپ DocType: Dropbox Settings,Dropbox Access Secret,ڈراپ باکس تک رسائی خفیہ DocType: Tag Link,Document Title,دستاویز کا عنوان apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(لازمی) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پہلے DocType: Social Login Key,Social Login Provider,سوشل لاگ ان فراہم کنندہ apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ایک اور تبصرہ شامل کریں apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,فائل میں کوئی ڈیٹا نہیں ملا. براہ کرم اعداد و شمار کے ساتھ نئی فائل دوبارہ بھیجیں. @@ -1583,11 +1645,12 @@ DocType: Workflow State,hand-down,نیچے ہاتھ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",کوئی کھیت نہیں ملا جس کو کانبن کالم کے طور پر استعمال کیا جا سکے۔ "منتخب کریں" قسم کے کسٹم فیلڈ کو شامل کرنے کے لئے کسٹمائز فارم استعمال کریں۔ DocType: Address,GST State,GST ریاست apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: بغیر جمع کرائیں منسوخ قائم نہیں کر سکتے ہیں +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),صارف ({0}) DocType: Website Theme,Theme,موضوع DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI AUTH کوڈ کرنے کی پابند لوٹایا گیا apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,کھلی مدد DocType: DocType,Is Submittable,Submittable ہے -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,نیا ذکر +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,نیا ذکر apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,کوئی نیا گوگل روابط مطابقت پذیر نہیں ہوا۔ DocType: File,Uploaded To Google Drive,گوگل ڈرائیو پر اپ لوڈ کیا گیا۔ apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,ایک چیک فیلڈ کے لئے قدر 0 یا 1 یا تو ہو سکتا @@ -1597,7 +1660,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,سیریز لازمی DocType: Workflow State,Inbox,انباکس DocType: Kanban Board Column,Red,ریڈ DocType: Workflow State,Tag,ٹیگ -DocType: Custom Script,Script,سکرپٹ +DocType: Report,Script,سکرپٹ apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,دستاویز محفوظ نہیں ہوسکتی ہے. DocType: Energy Point Rule,Maximum Points,زیادہ سے زیادہ پوائنٹس apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,میری ترتیبات @@ -1627,8 +1690,10 @@ DocType: Address,Haryana,ہریانہ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{1} {2} کے لئے {0} تعریفی نکات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,کردار ان کے صارف صفحے سے صارفین کے لئے مقرر کئے جا سکتے. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,تبصرہ شامل کریں +DocType: Dashboard Chart,Select Date Range,تاریخ کی حد منتخب کریں DocType: DocField,Mandatory,لازمی apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,برآمد کرنے ماڈیول +DocType: Scheduled Job Type,Monthly Long,ماہانہ لمبا apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: کوئی بنیادی اجازت مقرر apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",منسوخ، جمع کرانے کا معنی، ترمیم @@ -1637,7 +1702,6 @@ DocType: Test Runner,Module Path,ماڈیول راہ DocType: Milestone Tracker,Track milestones for any document,کسی بھی دستاویز کے لئے سنگ میل کو ٹریک کریں۔ DocType: Social Login Key,Identity Details,شناخت کی تفصیلات apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ڈیش بورڈ دکھائیں۔ -apps/frappe/frappe/desk/form/assign_to.py,New Message,نیا پیغام DocType: File,Preview HTML,ایچ ٹی ایم ایل کا مشاہدہ کریں DocType: Desktop Icon,query-report,استفسار رپورٹ DocType: Data Import Beta,Template Warnings,سانچہ انتباہات۔ @@ -1654,12 +1718,14 @@ apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Scrip apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} نام apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,کوئی اجازت اس معیار کے لئے مقرر کیا. DocType: Auto Email Report,Auto Email Report,آٹو ای میل کی رپورٹ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,نئی دستاویز کا اشتراک apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,تبصرہ حذف کریں؟ DocType: Address Template,This format is used if country specific format is not found,ملک مخصوص شکل نہیں ملا ہے تو یہ فارمیٹ استعمال کیا جاتا ہے DocType: System Settings,Allow Login using Mobile Number,موبائل نمبر کا استعمال کرتے ہوئے لاگ ان کرنے کی اجازت دیں apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,تم اس کے وسائل تک رسائی حاصل کرنے کے لئے کافی اجازتیں نہیں ہیں. تک رسائی حاصل کرنے کے لئے اپنے مینیجر سے رابطہ کریں. DocType: Custom Field,Custom,اپنی مرضی کے مطابق DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",اگر فعال ہو تو، صارفین کو جو پابندی IP ایڈریس سے لاگ ان کرتے ہیں، دو فیکٹر مصنف کے لئے حوصلہ افزائی نہیں کی جائے گی +DocType: Server Script,After Cancel,منسوخ کرنے کے بعد DocType: Auto Repeat,Get Contacts,رابطے حاصل کریں apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},کے تحت دائر پوسٹس {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,بلا عنوان کالم چھوڑنا۔ @@ -1670,6 +1736,7 @@ DocType: User,Login After,لاگ ان کے بعد DocType: Print Format,Monospace,مونو سپیس DocType: Letter Head,Printing,پرنٹنگ DocType: Workflow State,thumbs-up,بہت خوب +DocType: Notification Log,Mention,ذکر کریں DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,فانٹ apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,صحت سے متعلق 1 اور 6 کے درمیان ہونا چاہئے @@ -1677,7 +1744,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,اور apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},یہ رپورٹ {0} DocType: Error Snapshot,Frames,فریم -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,تفویض +DocType: Notification Log,Assignment,تفویض DocType: Notification,Slack Channel,سلیمان چینل DocType: About Us Team Member,Image Link,تصویر کے لنک DocType: Auto Email Report,Report Filters,رپورٹ کے فلٹرز @@ -1694,6 +1761,7 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,ایونٹ کو اپ ڈیٹ کرنے سے قاصر apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,توثیقی کوڈ آپ کے رجسٹرڈ ای میل ایڈریس پر بھیج دیا گیا ہے. apps/frappe/frappe/core/doctype/user/user.py,Throttled,پھینک دیا +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,آپ کا ہدف apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",فلٹر میں 4 اقدار (ڈیوٹائپ، فیلڈ نام، آپریٹر، قدر) ہونا ضروری ہے: {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,تفویض قاعدہ کا اطلاق کریں۔ apps/frappe/frappe/utils/bot.py,show,شو @@ -1703,7 +1771,6 @@ DocType: Workflow State,text-height,متن اونچائی DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ڈیٹا مگراگریشن پلان نقشہ جات apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappé شروع ... DocType: Web Form Field,Max Length,زیادہ سے زیادہ لمبائی -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} کے لئے DocType: Print Format,Jinja,جنجا DocType: Workflow State,map-marker,نقشہ مارکر apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ایک مسئلہ جمع کرائیں @@ -1748,7 +1815,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,ربط کھ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,آپ کی زبان DocType: Dashboard Chart,Average,اوسط apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,قطار شامل کریں -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,پرنٹر۔ apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,کے استفسار میں ایک منتخب کیا جائے چاہئے DocType: Auto Repeat,Completed,مکمل @@ -1807,6 +1873,7 @@ DocType: GCalendar Account,Next Sync Token,اگلا ہم آہنگ ٹوکن DocType: Energy Point Settings,Energy Point Settings,انرجی پوائنٹ کی ترتیبات۔ DocType: Async Task,Succeeded,کامیاب apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},میں ضرورت لازمی شعبوں {0} +DocType: Onboarding Slide Field,Align,سیدھ میں لائیں apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,کے لئے ری سیٹ اجازت {0}؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,صارفین اور اجازت DocType: S3 Backup Settings,S3 Backup Settings,S3 بیک اپ ترتیبات @@ -1823,7 +1890,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,نیا پرنٹ فارمیٹ نام۔ apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,درخواست کو منظور کرنے کے لئے نیچے دیئے گئے لنک پر کلک کریں۔ DocType: Workflow State,align-left,سیدھ بائیں +DocType: Onboarding Slide,Action Settings,ایکشن کی ترتیبات DocType: User,Defaults,ڈیفالٹس +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",موازنہ کے لئے ،> 5 ، <10 یا = 324 استعمال کریں۔ حدود کے ل 5 ، 5:10 (5 اور 10 کے درمیان اقدار کے لئے) استعمال کریں۔ DocType: Energy Point Log,Revert Of,واپس لوٹائیں۔ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,موجودہ کے ساتھ ضم DocType: User,Birth Date,تاریخ پیدائش @@ -1878,6 +1947,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,میں DocType: Notification,Value Change,قدر تبدیل DocType: Google Contacts,Authorize Google Contacts Access,گوگل رابطوں تک رسائی کی اجازت دیں۔ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,رپورٹ سے صرف تعداد کے شعبوں کو دکھا رہا ہے +apps/frappe/frappe/utils/data.py,1 week ago,1 ہفتہ پہلے DocType: Data Import Beta,Import Type,درآمد کی قسم DocType: Access Log,HTML Page,ایچ ٹی ایم ایل پیج DocType: Address,Subsidiary,ماتحت @@ -1887,7 +1957,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,سرنامہ ساتھ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,غلط سبکدوش ہونے والے میل سرور یا پورٹ DocType: Custom DocPerm,Write,لکھیں -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,صرف ایڈمنسٹریٹر استفسار / سکرپٹ رپورٹیں پیدا کرنے کے لئے کی اجازت دے دی apps/frappe/frappe/public/js/frappe/form/save.js,Updating,اپ ڈیٹ DocType: Data Import Beta,Preview,کا مشاہدہ کریں apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",فیلڈ "VALUE" لازمی ہے. اپ ڈیٹ کرنے کی قدر کی وضاحت کریں @@ -1896,6 +1965,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,س apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,صارف کے طور پر مدعو کریں DocType: Data Migration Run,Started,شروع DocType: Data Migration Run,End Time,آخر وقت +DocType: Dashboard Chart,Group By Based On,گروپ بائی بیس آن apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,منتخب ملحقات apps/frappe/frappe/model/naming.py, for {0},کے لئے {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,آپ اس دستاویز کو پرنٹ کرنے کے لئے کی اجازت نہیں کر رہے ہیں @@ -1937,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,تصدیق DocType: Workflow Document State,Update Field,اپ ڈیٹ میدان DocType: Chat Profile,Enable Chat,چیٹ کو فعال کریں DocType: LDAP Settings,Base Distinguished Name (DN),بیس معزز نام (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,اس گفتگو کو چھوڑنا apps/frappe/frappe/model/base_document.py,Options not set for link field {0},اختیارات لنک فیلڈ کے لئے مقرر نہیں {0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,قطار / کارکن۔ @@ -2004,12 +2075,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,اس وقت کی اجازت نہیں لاگ ان DocType: Data Migration Run,Current Mapping Action,موجودہ تعریفیں ایکشن DocType: Dashboard Chart Source,Source Name,ماخذ نام -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,صارف کے ساتھ کوئی ای میل اکاؤنٹ وابستہ نہیں ہے۔ براہ کرم صارف> ای میل ان باکس کے تحت ایک اکاؤنٹ شامل کریں۔ DocType: Email Account,Email Sync Option,ای میل کی مطابقت پذیری اختیار apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,صف نمبر DocType: Async Task,Runtime,رن ٹائم DocType: Post,Is Pinned,کیا ہے DocType: Contact Us Settings,Introduction,تعارف +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,مدد چاہیے؟ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,عالمی سطح پر پن۔ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,اس کے بعد DocType: LDAP Settings,LDAP Email Field,LDAP ای میل فیلڈ @@ -2019,7 +2090,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,پہلے DocType: User Email,Enable Outgoing,سبکدوش ہونے والے فعال DocType: Address,Fax,فیکس apps/frappe/frappe/config/customization.py,Custom Tags,اپنی مرضی کے ٹیگز -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں ہے۔ براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے نیا ای میل اکاؤنٹ بنائیں DocType: Comment,Submitted,پیش DocType: Contact,Pulled from Google Contacts,گوگل رابطوں سے کھینچ لیا گیا۔ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,جائز درخواست میں @@ -2040,9 +2110,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,ہوم / ٹ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,مجھے کو تفویض DocType: DocField,Dynamic Link,متحرک لنک apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,مینو اور سائڈبار میں اضافی شارٹ کٹ کو متحرک کرنے کے لئے Alt کلید دبائیں۔ +DocType: Dashboard Chart,To Date,تاریخ کرنے کے لئے DocType: List View Setting,List View Setting,فہرست دیکھیں ترتیب۔ apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,ملازمتیں ظاہر میں ناکام رہے -DocType: Event,Details,تفصیلات +DocType: Scheduled Job Log,Details,تفصیلات DocType: Property Setter,DocType or Field,DOCTYPE یا میدان apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,آپ نے اس دستاویز کو پیچھے چھوڑ دیا۔ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,بنیادی رنگین۔ @@ -2050,7 +2121,6 @@ DocType: Communication,Soft-Bounced,نرم واپس DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page",اگر فعال ہو تو، تمام صارفین کو دو فیکٹر مصنف کے ذریعے کسی IP ایڈریس سے لاگ ان کرسکتے ہیں. یہ صرف صارف کے صفحے میں مخصوص صارف کے لئے بھی مقرر کیا جا سکتا ہے apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,لگتا Publishable کلید یا خفیہ کلید غلط ہے !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,اجازت مقرر کرنے کے لئے فوری مدد -DocType: Tag Doc Category,Doctype to Assign Tags,ٹیگ تفویض کرنے DOCTYPE apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,دکھائیں رجعت apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,ای میل کو کوڑے دان میں ڈال دیا گیا ہے DocType: Report,Report Builder,رپورٹ بلڈر @@ -2066,6 +2136,7 @@ DocType: Workflow State,Upload,اپ لوڈ کریں DocType: User Permission,Advanced Control,اعلی درجے کی کنٹرول DocType: System Settings,Date Format,تاریخ کی شکل apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,شائع نہیں +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,پتہ کا کوئی طے شدہ سانچہ نہیں ملا۔ براہ کرم سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس ٹیمپلیٹ سے ایک نیا بنائیں۔ apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",کام کے فلو کو کے اعمال (مثال کے طور پر، منسوخ منظور). DocType: Data Import,Skip rows with errors,غلطیوں کے ساتھ قطاروں کو چھوڑ دیں DocType: Workflow State,flag,پرچم @@ -2082,7 +2153,7 @@ DocType: Post Comment,Post Comment,تبصرہ کریں apps/frappe/frappe/config/core.py,Documents,دستاویزات apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,سرگرمی لاگ ان DocType: Social Login Key,Custom Base URL,اپنی مرضی کے بیس یو آر ایل -DocType: Email Flag Queue,Is Completed,مکمل ہو گیا ہے +DocType: Onboarding Slide,Is Completed,مکمل ہو گیا ہے apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,فیلڈز حاصل کریں apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,پروفائل میں ترمیم کریں DocType: Kanban Board Column,Archived,نوٹسز @@ -2093,12 +2164,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",یہ فیلڈ دکھایا جائے گا FIELDNAME یہاں بیان کیا قیمت ہے یا قوانین سچے (مثالیں) ہیں صرف اس صورت: myfield سے Eval: doc.myfield == 'میری قدر' سے Eval: doc.age> 18 DocType: Social Login Key,Office 365,آفس 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,آج -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,آج +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,آج +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,آج apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",آپ کو اس سیٹ ہے ایک بار، صارفین کو صرف قابل رسائی دستاویزات ہو جائے گا (مثال کے طور پر. بلاگ پوسٹ) لنک (مثلا بلاگر) موجود ہے جہاں. DocType: Data Import Beta,Submit After Import,درآمد کے بعد جمع کروائیں۔ DocType: Error Log,Log of Scheduler Errors,تخسوچک نقائص کے لاگ ان DocType: User,Bio,تعارف +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,آن بورڈنگ سلائڈ ہیلپ لنک DocType: OAuth Client,App Client Secret,اپلی کلائنٹ سیکرٹ apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,جمع apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,والدین اس دستاویز کا نام ہے جس پر ڈیٹا شامل ہو جائے گا. @@ -2106,7 +2178,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,اوپری کیس apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,اپنی مرضی کے مطابق ایچ ٹی ایم ایل apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,فولڈر کا نام درج کریں -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,پتہ کا کوئی طے شدہ سانچہ نہیں ملا۔ براہ کرم سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس ٹیمپلیٹ سے ایک نیا بنائیں۔ apps/frappe/frappe/auth.py,Unknown User,نامعلوم صارف apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,منتخب کردار DocType: Comment,Deleted,خارج کر دیا گیا @@ -2122,7 +2193,7 @@ DocType: Chat Token,Chat Token,چیٹ ٹوکن apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,چارٹ بنائیں۔ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,درآمد نہ کریں۔ -DocType: Web Page,Center,سینٹر +DocType: Onboarding Slide Field,Center,سینٹر DocType: Notification,Value To Be Set,ویلیو مقرر کیا جا کرنے کے لئے apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},ترمیم کریں {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,پہلے کی سطح @@ -2130,7 +2201,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,ڈیٹا بیس کا نام apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,تازہ کاری فارم DocType: DocField,Select,منتخب کریں -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,مکمل لاگ دیکھیں۔ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,مکمل لاگ دیکھیں۔ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",سادہ ازگر اظہار ، مثال: حیثیت == 'کھولیں' اور ٹائپ کریں == 'بگ' apps/frappe/frappe/utils/csvutils.py,File not attached,فائل منسلک نہیں apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,کنکشن کھو دیا. کچھ خصوصیات کام نہیں کر سکتے ہیں. @@ -2161,6 +2232,7 @@ DocType: Web Page,HTML for header section. Optional,ہیڈر کے حصے کے ل apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,یہ خصوصیت نئے برانڈ اور اب بھی تجرباتی ہے apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,زیادہ سے زیادہ {0} قطاروں کی اجازت DocType: Dashboard Chart Link,Chart,چارٹ +DocType: Scheduled Job Type,Cron,کرون DocType: Email Unsubscribe,Global Unsubscribe,گلوبل رکنیت ختم apps/frappe/frappe/utils/password_strength.py,This is a very common password.,یہ ایک بہت ہی عام پاسورڈ ہے. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,دیکھیں @@ -2177,6 +2249,7 @@ DocType: Data Migration Connector,Hostname,میزبان کا نام DocType: Data Migration Mapping,Condition Detail,حالت کی تفصیل apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",کرنسی {0} کے لئے، کم سے کم ٹرانزیکشن کی رقم {1} DocType: DocField,Print Hide,پرنٹ چھپائیں +DocType: System Settings,HH:mm:ss,HH: ملی میٹر: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,صارف کو apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,قیمت درج DocType: Workflow State,tint,ٹنٹ @@ -2241,6 +2314,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,لاگ ان ک apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ایسا کرنے کے لئے میں شامل کریں DocType: Footer Item,Company,کمپنی apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},اوسط {0} +DocType: Scheduled Job Log,Scheduled,تخسوچت DocType: User,Logout from all devices while changing Password,پاس ورڈ تبدیل کرنے کے دوران تمام آلات سے لاگ ان کریں apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,پاس ورڈ کی توثیق apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,غلطیاں تھیں @@ -2265,7 +2339,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,صارف کی اجازت پہلے ہی موجود ہے apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},دیکھیں {0} -DocType: User,Hourly,گھنٹہ وار +DocType: Scheduled Job Type,Hourly,گھنٹہ وار apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth کلائنٹ اپلی رجسٹر DocType: DocField,Fetch If Empty,اگر خالی ہو تو بازیافت کریں۔ DocType: Data Migration Connector,Authentication Credentials,توثیقی اعتبار @@ -2275,10 +2349,10 @@ DocType: Energy Point Settings,Point Allocation Periodicity,پوائنٹ الا DocType: SMS Settings,SMS Gateway URL,SMS گیٹ وے یو آر ایل apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} نہیں ہو سکتا "{2}". اس میں سے ایک ہونا چاہئے "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} یا {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,آپ سب تیار ہیں! DocType: Workflow State,trash,ردی کی ٹوکری DocType: System Settings,Older backups will be automatically deleted,پرانے بیک اپ کو خود کار طریقے سے خارج کر دیا جائے گا apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,غلط رسائی کلیدی شناخت یا خفیہ رسائی کی چابی. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,آپ نے توانائی کے کچھ پوائنٹس کھوئے ہیں۔ DocType: Post,Is Globally Pinned,گلوبل طور پر قلم کیا ہے apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,حالیہ سرگرمی DocType: Workflow Transition,Conditions,شرائط @@ -2287,6 +2361,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,اس بات DocType: Event,Ends on,پر ختم ہوتا ہے DocType: Payment Gateway,Gateway,گیٹ وے DocType: LDAP Settings,Path to Server Certificate,سرور سرٹیفکیٹ کا راستہ۔ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,جاوا اسکرپٹ آپ کے براؤزر پر غیر فعال ہے apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,لنکس دیکھنا نہیں کافی اجازت apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,لنکس دیکھنا نہیں کافی اجازت apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,ایڈریس عنوان لازمی ہے. @@ -2305,7 +2380,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created thi DocType: S3 Backup Settings,eu-west-1,eu-West-1۔ DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",اگر یہ جانچ پڑتال کی جاتی ہے تو، درست ڈیٹا کے ساتھ قطار درآمد کی جائیں گی اور بعد میں درآمد کرنے کے لئے قطع قطاروں کو نئی فائل میں ڈمپ کیا جائے گا. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,دستاویز کے کردار کے صارفین کی طرف سے صرف قابل تدوین ہے -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",آپ {1} سے {2} بند کر دیا گیا ہے کے لئے مقرر کیا ہے کہ کام {0}،. DocType: Print Format,Show Line Breaks after Sections,دکھائیں لائن آف سیکشنز بعد توڑتا DocType: Communication,Read by Recipient On,وصول کنندہ پر پڑھیں DocType: Blogger,Short Name,مختصر نام @@ -2338,6 +2412,7 @@ DocType: Translation,PR sent,PR بھیج دیا گیا۔ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,صرف ریکارڈز آخری ایکس گھنٹے میں تازہ کاری بھیجیں DocType: Auto Email Report,Only Send Records Updated in Last X Hours,صرف ریکارڈز آخری ایکس گھنٹے میں تازہ کاری بھیجیں DocType: Communication,Feedback,آپ کی رائے +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,ایک نیا ورژن Updated میں تازہ کاری apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,کھولیں ترجمہ apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,یہ ای میل autogenerated ہے DocType: Workflow State,Icon will appear on the button,آئکن بٹن پر دکھایا جائے گا @@ -2375,6 +2450,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,صفحہ DocType: DocField,Precision,صحت سے متعلق DocType: Website Slideshow,Slideshow Items,سلائیڈ شو اشیا apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,بار بار الفاظ اور حروف سے بچنے کی کوشش +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,اطلاعات غیر فعال ہیں +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,کیا آپ واقعی تمام قطاروں کو حذف کرنا چاہتے ہیں؟ DocType: Workflow Action,Workflow State,کام کے فلو کو ریاست apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,صفیں شامل کر دیا گیا apps/frappe/frappe/www/list.py,My Account,میرا کھاتہ @@ -2383,6 +2460,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,دنوں کے بعد apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,کیو زیڈ ٹرے کنکشن فعال! DocType: Contact Us Settings,Settings for Contact Us Page,ہم سے رابطہ کریں صفحہ کے لئے ترتیبات +DocType: Server Script,Script Type,سکرپٹ کی قسم DocType: Print Settings,Enable Print Server,پرنٹ سرور کو فعال کریں apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} ہفتے پہلے DocType: Email Account,Footer,فوٹر @@ -2407,8 +2485,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,انتباہ apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,یہ متعدد صفحات پر چھاپ سکتا ہے۔ DocType: Data Migration Run,Percent Complete,فی صد مکمل -DocType: Tag Category,Tag Category,ٹیگ زمرہ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",موازنہ کے لئے ،> 5 ، <10 یا = 324 استعمال کریں۔ حدود کے ل 5 ، 5:10 (5 اور 10 کے درمیان اقدار کے لئے) استعمال کریں۔ DocType: Google Calendar,Pull from Google Calendar,گوگل کیلنڈر سے کھینچیں۔ apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,مدد DocType: User,Login Before,لاگ ان سے پہلے @@ -2418,17 +2494,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,اختتام ہفتہ چھپائیں apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,خود کار طریقے سے بار بار چلنے والی دستاویزات تیار کرتا ہے۔ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ہے +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,معلومات نشانی apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} کے لئے قیمت ایک فہرست نہیں ہوسکتی ہے DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",اس کرنسی کے لئے کس طرح فارمیٹ کیا جانا چاہئے؟ مقرر نہیں ہے تو، نظام ڈیفالٹس استعمال کریں گے apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,دستاویزات {0} جمع کروائیں؟ apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,آپ لاگ ان اور بیک اپ تک رسائی حاصل کرنے کے قابل ہو جائے کرنے کے لئے سسٹم مینیجر کردار ہے کرنے کی ضرورت ہے. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","کیو زیڈ ٹرے ایپلیکیشن سے رابطہ کرنے میں خرابی… <br><br> آپ کو را پرنٹ کی خصوصیت استعمال کرنے کے ل Q ، QZ ٹرے ایپلی کیشن انسٹال اور چلانے کی ضرورت ہے۔ <br><br> <a href=""https://qz.io/download/"" target=""_blank"">کیو زیڈ ٹرے کو ڈاؤن لوڈ اور انسٹال کرنے کے لئے یہاں کلک کریں</a> ۔ <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">را پرنٹنگ کے بارے میں مزید معلومات کے لئے یہاں کلک کریں</a> ۔" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,پرنٹر میپنگ۔ apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,منسلک کرنے سے قبل بچا لو. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,کیا آپ تمام منسلک دستاویزات کو منسوخ کرنا چاہتے ہیں؟ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),شامل کر دیا گیا {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype کی طرف سے تبدیل نہیں کیا جا سکتا {0} سے {1} قطار میں {2} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,کردار اجازتیں DocType: Help Article,Intermediate,انٹرمیڈیٹ +apps/frappe/frappe/config/settings.py,Email / Notifications,ای میل / اطلاعات apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,ڈرافٹ کے طور پر منسوخ دستاویز کو بحال کیا گیا ہے DocType: Data Migration Run,Start Time,وقت آغاز apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} سے {2} {3} {4} کے ساتھ منسلک کیا جاسکتا ہے یا منسوخ نہیں کرسکتا ہے @@ -2439,10 +2519,12 @@ DocType: DocField,Geolocation,جغرافیہ DocType: Workflow,Emails will be sent with next possible workflow actions,اگلے ممکنہ کام کے بہاؤ کے اعمال کے ساتھ ای میلز کو بھیجا جائے گا apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,کام کے فلو کو بچانے کے بعد شروع ہو جائے گا. DocType: S3 Backup Settings,ap-northeast-1,اے پی شمال مشرق -1۔ +apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Something went wrong during the token generation. Click on {0} to generate a new one.,ٹوکن نسل کے دوران کچھ غلط ہوا۔ نیا پیدا کرنے کے لئے {0} پر کلک کریں۔ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,اشتراک کر سکتے ہیں apps/frappe/frappe/email/smtp.py,Invalid recipient address,غلط وصول کنندہ کا پتہ DocType: Workflow State,step-forward,قدم آگے DocType: System Settings,Allow Login After Fail,ناکام ہونے کے بعد لاگ ان کی اجازت دیں +DocType: DocType Link,DocType Link,ڈاک ٹائپ لنک DocType: Role Permission for Page and Report,Set Role For,کے لئے کردار متعین کریں DocType: GCalendar Account,The name that will appear in Google Calendar,وہ نام جو Google کیلنڈر میں دکھائے گا apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} کے ساتھ براہ راست کمرے پہلے ہی موجود ہے. @@ -2460,6 +2542,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ایک ن DocType: Contact,Google Contacts,گوگل رابطے۔ DocType: GCalendar Account,GCalendar Account,GCalendar اکاؤنٹ DocType: Email Rule,Is Spam,فضول ہے +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,آخری apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},رپورٹ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},کھولیں {0} DocType: Data Import Beta,Import Warnings,انتباہات درآمد کریں۔ @@ -2471,6 +2554,7 @@ DocType: Workflow State,ok-sign,OK-نشانی apps/frappe/frappe/config/settings.py,Deleted Documents,حذف شدہ دستاویزات apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV کی شکل حساس ہے apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ڈیسک ٹاپ شبیہ پہلے سے موجود ہے +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,بتائیں کہ سلائڈز کون سے ڈومینز میں دکھائ دینی چاہ.۔ اگر کچھ بھی مخصوص نہیں ہے تو سلائڈ کو تمام ڈومینز میں بطور ڈیفالٹ دکھایا جاتا ہے۔ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,نقل apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: قطعہ {2} میں فیلڈ {1} ڈیفالٹ کے بغیر پوشیدہ اور لازمی نہیں ہوسکتا ہے۔ DocType: Newsletter,Create and Send Newsletters,تشکیل دیں اور بھیجیں خبرنامے @@ -2481,6 +2565,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,گوگل کیلنڈر ایونٹ کی شناخت apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","والدین" اس صف میں شامل ہونا ضروری ہے جس میں والدین کی میز ابیوینجک apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,جائزہ لینے کے نکات: +DocType: Scheduled Job Log,Scheduled Job Log,شیڈول ملازمت لاگ +DocType: Server Script,Before Delete,حذف کرنے سے پہلے apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,کے ساتھ اشتراک کیا apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,فائلیں / یو آر ایل منسلک کریں اور میز میں شامل کریں. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,پیغام سیٹ اپ نہیں @@ -2503,19 +2589,20 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,ہمارے بارے میں صفحہ کے لئے ترتیبات apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,پٹی ادائیگی کے گیٹ وے ترتیبات apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,پرنٹ بھیجیں پرنٹر کو! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,توانائی کے پوائنٹس +DocType: Notification Settings,Energy Points,توانائی کے پوائنٹس DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,مثال کے طور پر pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,کلیدیں بنائیں apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,یہ آپ کے ڈیٹا کو مستقل طور پر ختم کردے گا۔ DocType: DocType,View Settings,لنک ترتیبات +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,نئی اطلاع DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,درخواست کی ساخت +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,کنٹرولر کا طریقہ get_razorpay_order غائب ہے DocType: Personal Data Deletion Request,Pending Verification,زیر التواء تصدیق۔ DocType: Website Meta Tag,Website Meta Tag,ویب سائٹ میٹا ٹیگ۔ DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",اگر غیر معیاری پورٹ (مثال کے طور پر 587). اگر Google Cloud پر، بندرگاہ 2525 کی کوشش کریں. apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",آخری تاریخ کو صاف کرنا، جیسا کہ یہ ماضی میں شائع شدہ صفحات کے لئے نہیں ہوسکتا ہے. DocType: User,Send Me A Copy of Outgoing Emails,مجھے جانے والے ای میلز کی ایک کاپی بھیجیں -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.,گوگل کے تجزیات ID شامل کریں: مثال کے طور پر. UA-89XXX57-1. مزید معلومات کے لئے گوگل کے تجزیات پر مدد تلاش کریں. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,پاس ورڈ 100 حروف سے زیادہ طویل نہیں ہو سکتا DocType: OAuth Client,App Client ID,اپلی کلائنٹ ID @@ -2544,6 +2631,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,نئے پاس apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} کے ساتھ اس دستاویز کا اشتراک {1} DocType: Website Settings,Brand Image,برانڈ کی تصویر DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,درآمد ٹیمپلیٹ میں ایک ہیڈر اور کم از کم ایک قطار ہونی چاہئے۔ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,گوگل کیلنڈر تشکیل دیا گیا ہے۔ apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",سب سے اوپر نیویگیشن بار، فوٹر اور علامت (لوگو) کی سیٹ اپ. DocType: Web Form Field,Max Value,زیادہ سے زیادہ قیمت @@ -2552,6 +2640,7 @@ DocType: Auto Repeat,Preview Message,پیش نظارہ پیغام DocType: User Social Login,User Social Login,صارف سوشل لاگ ان DocType: Contact,All,تمام DocType: Email Queue,Recipient,وصول کنندہ +DocType: Webhook,Webhook Security,ویب ہک سیکیورٹی DocType: Communication,Has Attachment,منسلکہ ہے DocType: Address,Sales User,سیلز صارف apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ڈریگ اور ڈراپ کے آلے کی تعمیر اور پرنٹ دونوں فارمیٹس اپنی مرضی کے مطابق. @@ -2641,14 +2730,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,ویب سائٹ شو آئ apps/frappe/frappe/model/workflow.py,Self approval is not allowed,خود کی منظوری کی اجازت نہیں ہے DocType: GSuite Templates,Template ID,سانچہ ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,گرانٹ کی قسم کا مجموعہ ( <code>{0}</code> ) اور جوابی قسم ( <code>{1}</code> ) کی اجازت نہیں ہے -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} سے نیا پیغام DocType: Portal Settings,Default Role at Time of Signup,سائن اپ کے وقت طے شدہ کردار DocType: DocType,Title Case,عنوان کیس apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,اپنا ڈیٹا ڈاؤن لوڈ کرنے کے لئے نیچے دیئے گئے لنک پر کلک کریں۔ apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},صارف کے لئے فعال ای میل ان باکس {0} DocType: Data Migration Run,Data Migration Run,ڈیٹا نقل و حمل چلائیں DocType: Blog Post,Email Sent,ای میل بھیجا -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,پرانا DocType: DocField,Ignore XSS Filter,XSS فلٹر کو نظرانداز کریں apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,ہٹا دیا apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ڈراپ باکس کے بیک اپ کی ترتیبات @@ -2702,6 +2789,7 @@ DocType: Async Task,Queued,قطار میں DocType: Braintree Settings,Use Sandbox,سینڈباکس استعمال apps/frappe/frappe/utils/goal.py,This month,اس مہینے apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,نئے اپنی مرضی کے پرنٹ کی شکل +DocType: Server Script,Before Save (Submitted Document),محفوظ کرنے سے پہلے (جمع شدہ دستاویز) DocType: Custom DocPerm,Create,بنائیں apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,نمائش کیلئے مزید آئٹمز نہیں ہیں۔ apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,پچھلے ریکارڈ پر جائیں۔ @@ -2758,6 +2846,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,ردی میں ڈالیں DocType: Web Form,Web Form Fields,ویب فارم قطعے DocType: Data Import,Amended From,سے ترمیم شدہ +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,صرف اس صورت میں ایک مددگار ویڈیو لنک شامل کریں جب صارف کو سلائڈ میں کیا بھرنا ہے اس بارے میں کچھ پتہ نہیں ہے۔ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},انتباہ: {0} سے متعلق کسی بھی میز میں {0} تلاش کرنے میں ناکام DocType: S3 Backup Settings,eu-north-1,یورو شمال۔ apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,یہ دستاویز فی الحال عملدرآمد کے لئے قطار بند ہے. دوبارہ کوشش کریں @@ -2779,6 +2868,7 @@ DocType: Blog Post,Blog Post,بلاگ پوسٹ DocType: Access Log,Export From,سے برآمد کریں۔ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,برتر تلاش apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,آپ کو نیوز لیٹر کو دیکھنے کی اجازت نہیں ہے. +DocType: Dashboard Chart,Group By,گروپ سے DocType: User,Interests,دلچسپیاں apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,پاس ورڈ دوبارہ ترتیب کی ہدایات آپ کا ای میل کرنے کے لئے بھیج دیا گیا ہے DocType: Energy Point Rule,Allot Points To Assigned Users,تفویض شدہ صارفین کو پوائنٹس الاٹ کریں۔ @@ -2794,6 +2884,7 @@ DocType: Assignment Rule,Assignment Rule,تفویض اصول apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},تجویز کردہ صارف کا نام: {0} DocType: Assignment Rule Day,Day,ڈے apps/frappe/frappe/public/js/frappe/desk.js,Modules,ماڈیول +DocType: DocField,Mandatory Depends On,لازمی پر منحصر ہے apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,ادائیگی کی کامیابی apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,کوئی {0} میل DocType: OAuth Bearer Token,Revoked,منسوخ @@ -2801,6 +2892,7 @@ DocType: Web Page,Sidebar and Comments,سائڈبار اور تبصرے apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",آپ کو ایک دستاویز کے بعد اسے منسوخ اور محفوظ ترمیم جب، یہ پرانے تعداد کا ایک ورژن ہے کہ ایک نیا نمبر مل جائے گا. apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",{0} دستاویز کو منسلک کرنے کی اجازت نہیں ہے، برائے مہربانی پرنٹ کی ترتیب میں {0} کیلئے پرنٹ کی اجازت دیں +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں ہے۔ براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے نیا ای میل اکاؤنٹ بنائیں apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},دستاویز پر {0} ملاحظہ کریں DocType: Stripe Settings,Publishable Key,Publishable کلید DocType: Stripe Settings,Publishable Key,Publishable کلید @@ -2815,6 +2907,7 @@ DocType: Currency,Fraction,کسر apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,گوگل کیلنڈر کے ساتھ مطابقت پذیر واقعہ۔ DocType: LDAP Settings,LDAP First Name Field,LDAP پہلا نام کے خانے DocType: Contact,Middle Name,درمیانی نام +DocType: DocField,Property Depends On,پراپرٹی انحصار کرتی ہے DocType: Custom Field,Field Description,فیلڈ تفصیل apps/frappe/frappe/model/naming.py,Name not set via Prompt,پرامپٹ کے ذریعے مقرر نہیں نام apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ای میل ان باکس @@ -2860,11 +2953,11 @@ DocType: Workflow State,folder-close,فولڈر بند apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,رپورٹ: DocType: Print Settings,Print taxes with zero amount,صفر کے ساتھ ٹیکس پرنٹ کریں apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} نام تبدیل کرنے کی اجازت نہیں +DocType: Server Script,Before Insert,داخل کرنے سے پہلے DocType: Custom Script,Custom Script,اپنی مرضی کے سکرپٹ DocType: Address,Address Line 2,پتہ لائن 2 DocType: Address,Reference,حوالہ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,مقرر کیا، مقرر کرنا -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے پہلے سے طے شدہ ای میل اکاؤنٹ مرتب کریں DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ڈیٹا منتقلی کی تعریفیں کی تفصیل DocType: Data Import,Action,ایکشن DocType: GSuite Settings,Script URL,اسکرپٹ URL @@ -2890,11 +2983,13 @@ DocType: User,Api Access,اے پی اے تک رسائی DocType: DocField,In List View,فہرست ویو میں DocType: Email Account,Use TLS,استعمال TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,غلط لاگ ان یا پاس ورڈ +DocType: Scheduled Job Type,Weekly Long,ہفتہ وار لمبا apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,لوڈ سانچہ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,فارم کے لئے اپنی مرضی کے مطابق جاوا سکرپٹ کو شامل. ,Role Permissions Manager,کردار اجازت مینیجر apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,نئے پرنٹ کی شکل کا نام apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,سائڈبار ٹوگل کریں +DocType: Server Script,After Save (Submitted Document),محفوظ کرنے کے بعد (پیش کردہ دستاویز) DocType: Data Migration Run,Pull Insert,داخل کریں DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",ضرب کی قیمت کے ساتھ ضرب پوائنٹس کے بعد زیادہ سے زیادہ پوائنٹس کی اجازت دی گئی (نوٹ: کسی حد کے لئے اس فیلڈ کو خالی نہیں چھوڑیں یا 0 مرتب کریں) @@ -2912,6 +3007,7 @@ DocType: User Permission,User Permission,صارف کی اجازت apps/frappe/frappe/templates/includes/blog/blog.html,Blog,بلاگ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP نصب نہیں apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,اعداد و شمار کے ڈاؤن لوڈ، اتارنا +DocType: Server Script,Before Cancel,منسوخ کرنے سے پہلے DocType: Workflow State,hand-right,ہاتھ سے دائیں DocType: Website Settings,Subdomain,ذیلی ڈومین DocType: S3 Backup Settings,Region,ریجن @@ -2956,12 +3052,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,پرانا پاسورڈ DocType: S3 Backup Settings,us-east-1,us-مشرق 1۔ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},کی طرف سے پیغامات {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",شکل کالم، سوال میں کالم لیبل دے. +DocType: Onboarding Slide,Slide Fields,سلائیڈ فیلڈز DocType: Has Domain,Has Domain,ڈومین ہے DocType: User,Allowed In Mentions,اجازت میں ذکر apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ایک اکاؤنٹ نہیں ہے؟ سائن اپ کریں apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID فیلڈ کو ہٹا نہیں سکتا apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable نہیں تو مقرر ترمیم مقرر نہیں کر سکتے ہیں DocType: Address,Bihar,بہار +DocType: Notification Settings,Subscribed Documents,خریداری شدہ دستاویزات apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,صارف کی ترتیبات۔ DocType: Report,Reference Report,حوالہ رپورٹ۔ DocType: Activity Log,Link DocType,لنک DOCTYPE @@ -2979,6 +3077,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,گوگل کیلنڈر apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,صفحہ آپ کے لئے تلاش کر رہے ہیں لاپتہ ہے. یہ ہو سکتا ہے کہ یہ منتقل یا لنک میں ٹائپنگ میں کوئی غلطی نہیں ہے. apps/frappe/frappe/www/404.html,Error Code: {0},خرابی کا کوڈ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",، سادہ متن میں، لائنوں کی صرف ایک جوڑے لسٹنگ کے صفحے کے لئے تفصیل. (زیادہ سے زیادہ 140 حروف) +DocType: Server Script,DocType Event,ڈاک ٹائپ واقعہ DocType: Workflow,Allow Self Approval,خود منظور کرنے کی اجازت دیں DocType: Event,Event Category,واقعہ زمرہ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,جان ڈو @@ -2994,6 +3093,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,تمھارا نام apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,کنکشن کامیابی DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,سلائیڈ ٹائپ جاری کا ایک آن بورڈنگ سلائڈ پہلے سے موجود ہے۔ DocType: DocType,Default Sort Field,پہلے سے طے شدہ ترتیب کا فیلڈ۔ DocType: File,Is Folder,فولڈر ہے DocType: Document Follow,DocType,DOCTYPE @@ -3030,7 +3130,9 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,اقد DocType: Workflow State,arrow-up,تیر اپ DocType: Dynamic Link,Link Document Type,لنک دستاویز کی قسم apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} ٹیبل کے ل at کم از کم ایک قطار ہونی چاہئے۔ +DocType: Server Script,Server Script,سرور اسکرپٹ DocType: OAuth Bearer Token,Expires In,میں ختم ہوجاتا ہے +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",آپ کتنے بار کھیتوں کے سیٹ کو دہرانا چاہتے ہیں (جیسے: اگر آپ سلائیڈ میں 3 گاہک چاہتے ہیں تو ، اس فیلڈ کو 3 پر سیٹ کریں) صرف فیلڈز کا پہلا سیٹ سلائیڈ میں لازمی طور پر دکھایا گیا ہے) DocType: DocField,Allow on Submit,جمع کرانے پر کی اجازت دیں DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,رعایت کی قسم @@ -3040,6 +3142,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,ہیڈر apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,انے والی تقریبات apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,اپلی رسائی کلید اور اپلی کیشن خفیہ کلید کے لئے اقدار درج کریں +DocType: Email Account,Append Emails to Sent Folder,بھیجے گئے فولڈر میں ای میلز شامل کریں DocType: Web Form,Accept Payment,ادائیگی قبول کرتے ہیں apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,فہرست آئٹم منتخب کریں۔ apps/frappe/frappe/config/core.py,A log of request errors,درخواست کی غلطیوں کی ایک لاگ ان کریں @@ -3058,7 +3161,7 @@ DocType: Translation,Contributed,تعاون کیا۔ apps/frappe/frappe/config/customization.py,Form Customization,فارم حسب ضرورت۔ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,کوئی فعال سیشن نہیں DocType: Web Form,Route to Success Link,کامیابی کے لنک پر روٹ -DocType: Top Bar Item,Right,دائیں +DocType: Onboarding Slide Field,Right,دائیں apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,کوئی آنے والا واقعات DocType: User,User Type,صارف کی قسم DocType: Prepared Report,Ref Report DocType,ریفری رپورٹ ڈاٹ ٹائپ @@ -3075,6 +3178,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,دوبارہ ک apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL کا آغاز 'http: //' یا 'https: //' سے ہونا چاہئے apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,آپشن 3 DocType: Communication,uid,یو آئی ڈی +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,اسے کالعدم نہیں کیا جاسکتا DocType: Workflow State,Edit,میں ترمیم کریں DocType: Website Settings,Chat Operators,چیٹ آپریٹرز DocType: S3 Backup Settings,ca-central-1,ca-مرکزی -1۔ @@ -3086,7 +3190,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,اگر آپ اس فارم میں غیر محفوظ کردہ تبدیلیاں ہیں. جاری رکھنے سے پہلے بچا لو. DocType: Address,Telangana,تلنگانہ apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} ایک آپشن ہونا ضروری ہے کے لئے پہلے سے طے شدہ -DocType: Tag Doc Category,Tag Doc Category,ٹیگ ڈاکٹر زمرہ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 سے زیادہ کالموں والی رپورٹ منظر نامے کے موڈ میں بہتر دکھائی دیتی ہے۔ apps/frappe/frappe/database/database.py,Invalid field name: {0},غلط فیلڈ کا نام: {0} DocType: Milestone,Milestone,سنگ میل @@ -3095,7 +3198,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} پر جائیں apps/frappe/frappe/email/queue.py,Emails are muted,ای میل خاموش ہیں apps/frappe/frappe/config/integrations.py,Google Services,گوگل سروسز apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,لئے Ctrl + اپ -apps/frappe/frappe/utils/data.py,1 weeks ago,1 ہفتے پہلے +DocType: Onboarding Slide,Slide Description,سلائیڈ کی تفصیل DocType: Communication,Error,خرابی apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,سب سے پہلے ایک پیغام قائم کریں DocType: Auto Repeat,End Date,آخری تاریخ @@ -3116,10 +3219,12 @@ DocType: Footer Item,Group Label,گروپ لیبل DocType: Kanban Board,Kanban Board,Kanban بورڈ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,گوگل رابطے تشکیل دیئے گئے ہیں۔ apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ریکارڈ برآمد کیا جائے گا۔ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,صارف کے ساتھ کوئی ای میل اکاؤنٹ وابستہ نہیں ہے۔ براہ کرم صارف> ای میل ان باکس کے تحت ایک اکاؤنٹ شامل کریں۔ DocType: DocField,Report Hide,رپورٹ چھپائیں apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},کے لئے دستیاب نہیں ہیں درخت قول {0} DocType: DocType,Restrict To Domain,DOMAIN تک محدود DocType: Domain,Domain,ڈومین +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,غلط فائل یو آر ایل۔ براہ کرم سسٹم ایڈمنسٹریٹر سے رابطہ کریں۔ DocType: Custom Field,Label Help,لیبل مدد DocType: Workflow State,star-empty,سٹار خالی apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,تواریخ اکثر اندازہ لگانا آسان ہے. @@ -3143,6 +3248,7 @@ DocType: Workflow State,hand-left,ہاتھ سے بائیں DocType: Data Import,If you are updating/overwriting already created records.,اگر آپ اپ ڈیٹ / زیادہ لکھنا پہلے سے ہی تشکیل شدہ ریکارڈز ہیں. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,گلوبل ہے DocType: Email Account,Use SSL,استعمال کرنا SSL +DocType: Webhook,HOOK-.####,کانٹا-.#### DocType: Workflow State,play-circle,پلے دائرے apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,دستاویز درست طریقے سے تفویض نہیں کیا جا سکا apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",غلط "depends_on" اظہار @@ -3159,6 +3265,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,آخری تازہ دم ہوا۔ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,دستاویز کی قسم کے لئے۔ DocType: Workflow State,arrow-right,تیر دائیں +DocType: Server Script,API Method,API کا طریقہ DocType: Workflow State,Workflow state represents the current state of a document.,کام کے فلو کو ریاست ایک دستاویز کی موجودہ حالت کی نمائندگی کرتا ہے. DocType: Letter Head,Letter Head Based On,خط کی بنیاد پر apps/frappe/frappe/utils/oauth.py,Token is missing,ٹوکن غائب ہے @@ -3196,6 +3303,7 @@ DocType: Comment,Relinked,Relinked DocType: Print Settings,Compact Item Print,کومپیکٹ آئٹم تعداد DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL لوٹایا گیا +DocType: Onboarding Slide Field,Placeholder,پلیس ہولڈر DocType: SMS Settings,Enter url parameter for receiver nos,رسیور تعداد کے لئے یو آر ایل پیرامیٹر درج DocType: Chat Profile,Online,آن لائن DocType: Email Account,Always use Account's Name as Sender's Name,ہمیشہ مرسل کے نام کے بطور اکاؤنٹ کا نام استعمال کریں۔ @@ -3229,6 +3337,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,مالک تو DocType: Data Migration Mapping,Push,پش apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,فائلیں یہاں گرائیں۔ DocType: OAuth Authorization Code,Expiration time,ختم ہونے کا وقت +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,دستاویزات کھولیں DocType: Web Page,Website Sidebar,ویب سائٹ سائڈبار DocType: Web Form,Show Sidebar,سائڈبار دکھائیں apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,آپ کو اس تک رسائی حاصل کرنے میں رکھا جائے کرنے کی ضرورت ہے {0}. @@ -3278,6 +3387,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,پرنٹ کی شکل apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ٹول گرڈ دیکھیں apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,اگلے ریکارڈ پر جائیں۔ +DocType: System Settings,Time Format,وقت کی ترتیب apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,غلط ادائیگی کے گیٹ وے کے اسناد DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,یہ کچھ غلطی رکھنے والی قطاروں کے ساتھ پیدا ٹیمپلیٹ فائل ہے. آپ کو اس فائل کو اصلاح اور درآمد کیلئے استعمال کرنا چاہئے. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,دستاویز کی قسم اور کردار پر اجازت مقرر کریں @@ -3321,21 +3431,26 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,جواب apps/frappe/frappe/config/core.py,Pages in Desk (place holders),ڈیسک میں (صفحات جگہ ہولڈرز) DocType: DocField,Collapsible Depends On,تہ پر انحصار کرتا ہے DocType: Print Style,Print Style Name,پرنٹ کا نام نام +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,گروپ بہ فیلڈ کیلئے ڈیش بورڈ چارٹ تیار کرنا ضروری ہے DocType: Print Settings,Allow page break inside tables,میزیں اندر صفحے وقفے اجازت دیں DocType: Email Account,SMTP Server,SMTP سرور DocType: Print Format,Print Format Help,پرنٹ کی شکل میں مدد DocType: DocType,Beta,بیٹا DocType: Dashboard Chart,Count,شمار +DocType: Dashboard Chart,Group By Type,گروپ بہ قسم apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},بحال کیا {0} کے طور {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",آپ کو اپ ڈیٹ کر رہے ہیں تو، "ادلیکھت" کو منتخب کریں اور موجودہ قطار خارج نہیں کیا جائے گا. DocType: DocField,Translatable,ترجمہ +apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Syncing {0} of {1},{1} میں سے {0} کی ہم آہنگی ہو رہی ہے DocType: Letter Head,Letter Head in HTML,ایچ ٹی ایم ایل میں خط ہیڈ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,صارف پروفائل DocType: Web Form,Web Form,ویب فارم apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},تاریخ {0} ہونا چاہئے شکل میں: {1} DocType: About Us Settings,Org History Heading,سرخی تنظیم تاریخ +DocType: Scheduled Job Type,Scheduled Job Type,شیڈول ملازمت کی قسم DocType: Print Settings,Allow Print for Cancelled,منسوخ لئے پرنٹ اجازت دیں DocType: Communication,Integrations can use this field to set email delivery status,انضمام ای میل کی ترسیل کی حیثیت قائم کرنے کے لئے اس میدان کا استعمال کر سکتے ہیں +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,آپ کو لنک شدہ تمام دستاویزات کو منسوخ کرنے کی اجازت نہیں ہے۔ DocType: Web Form,Web Page Link Text,ویب پیج لنک متن DocType: Page,System Page,سسٹم پیج DocType: Page,System Page,سسٹم پیج @@ -3343,6 +3458,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}</b> کے لئے حسب ضرورت برآمد: <br> {1} DocType: Website Settings,Include Search in Top Bar,اوپر بار میں تلاش شامل +DocType: Scheduled Job Type,Daily Long,ڈیلی لانگ DocType: GSuite Settings,Allow GSuite access,GSuite رسائی کی اجازت دیں DocType: DocType,DESC,DESC DocType: DocType,Naming,نام @@ -3432,6 +3548,7 @@ DocType: Notification,Send days before or after the reference date,پہلے یا DocType: User,Allow user to login only after this hour (0-24),صارف صرف اس گھنٹے کے بعد لاگ ان کرنے کی (0-24) کی اجازت دیں apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",یکے بعد دیگرے تفویض کریں۔ DocType: Integration Request,Subscription Notification,سبسکرپشن کی اطلاع +DocType: Customize Form Field, Allow in Quick Entry ,فوری اندراج میں اجازت دیں apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,یا منسلک a DocType: Auto Repeat,Start Date,شروع کرنے کی تاریخ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,قدر @@ -3446,6 +3563,7 @@ DocType: Google Drive,Backup Folder ID,بیک اپ فولڈر ID۔ apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,نہیں ڈیولپر موڈ میں! site_config.json میں سیٹ یا 'مرضی' DOCTYPE بنانے. DocType: Workflow State,globe,دنیا DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,ویڈیو DocType: Assignment Rule,Priority,ترجیح DocType: Email Queue,Unsubscribe Param,رکنیت ختم پرم DocType: DocType,Hide Sidebar and Menu,سائڈبار اور مینو کو چھپائیں۔ @@ -3457,6 +3575,7 @@ DocType: DocType,Allow Import (via Data Import Tool),درآمد کی اجازت apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,سینئر DocType: DocField,Float,فلوٹ DocType: Print Settings,Page Settings,صفحہ ترتیبات +DocType: Notification Settings,Notification Settings,اطلاع کی ترتیبات apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,بچت ... apps/frappe/frappe/www/update-password.html,Invalid Password,غلط پاسورڈ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,کامیابی کے ساتھ {1} میں سے {0} ریکارڈ درآمد کیا گیا۔ @@ -3464,6 +3583,7 @@ DocType: Contact,Purchase Master Manager,خریداری ماسٹر مینیجر apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,پبلک / پرائیویٹ ٹوگل کرنے کے لئے لاک آئیکون پر کلک کریں۔ DocType: Module Def,Module Name,ماڈیول کا نام DocType: S3 Backup Settings,eu-west-3,EU-West-3 +apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Uploading {0} of {1},{1} میں سے {0} اپ لوڈ ہو رہا ہے DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE درخواست میں ایک میز / فارم ہے. DocType: Social Login Key,Authorize URL,اختیار شدہ یو آر ایل apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not fetch event from Google Calendar, error code {0}.",گوگل کیلنڈر - Google کیلنڈر سے ایونٹ بازیافت نہیں ہوسکا ، غلطی کا کوڈ {0}۔ @@ -3471,6 +3591,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,جی میل DocType: Letter Head,Letter Head Image,خط ہیڈ امیج DocType: Address,Party GSTIN,پارٹی GSTIN +DocType: Scheduled Job Type,Cron Format,کرون فارمیٹ apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} رپورٹ DocType: SMS Settings,Use POST,پوسٹ کا استعمال کریں DocType: Communication,SMS,پیغام @@ -3515,18 +3636,20 @@ DocType: Workflow,Allow approval for creator of the document,دستاویز کے apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,رپورٹ محفوظ کریں۔ DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API اختتام پوائنٹ Args +DocType: DocType Action,Server Action,سرور ایکشن apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,ایڈمنسٹریٹر رسائی {0} پر {1} IP ایڈریس کے ذریعے {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,پیرنٹ فیلڈ ایک درست فیلڈ نام ہونا چاہئے۔ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,رکنیت میں ترمیم کے دوران ناکامی DocType: LDAP Settings,LDAP Group Field,ایل ڈی اے پی گروپ فیلڈ۔ +DocType: Notification Subscribed Document,Notification Subscribed Document,اطلاع سبسکرائب شدہ دستاویز apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,برابر apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,غلط CSV شکل -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","کیو زیڈ ٹرے ایپلیکیشن سے رابطہ کرنے میں خرابی… <br><br> آپ کو را پرنٹ کی خصوصیت استعمال کرنے کے ل Q ، QZ ٹرے ایپلی کیشن انسٹال اور چلانے کی ضرورت ہے۔ <br><br> <a href=""https://qz.io/download/"" target=""_blank"">کیو زیڈ ٹرے کو ڈاؤن لوڈ اور انسٹال کرنے کے لئے یہاں کلک کریں</a> ۔ <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">را پرنٹنگ کے بارے میں مزید معلومات کے لئے یہاں کلک کریں</a> ۔" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,بیک اپ کی تعداد مقرر کریں DocType: DocField,Do not allow user to change after set the first time,پہلی بار صارف کے بعد سیٹ تبدیل کرنے کی اجازت نہ دیں apps/frappe/frappe/utils/data.py,1 year ago,1 سال پہلے +DocType: DocType,Links Section,روابط سیکشن apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",تمام پرنٹ ، ڈاؤن لوڈ اور برآمدی واقعات کا لاگ ان دیکھیں۔ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 مہینہ DocType: Contact,Contact,رابطہ کریں @@ -3552,16 +3675,18 @@ DocType: Auto Email Report,Dynamic Report Filters,متحرک رپورٹ کے ف DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,نیا ای میل DocType: Custom DocPerm,Export,برآمد +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},کامیابی کے ساتھ اپ ڈیٹ {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,کیو زیڈ ٹرے ناکام: DocType: Dropbox Settings,Dropbox Settings,ڈراپ باکس ترتیبات DocType: About Us Settings,More content for the bottom of the page.,صفحے کے نیچے کے بارے میں مزید مواد. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,اس دستاویز کو واپس کردیا گیا ہے۔ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,گوگل ڈرائیو کا بیک اپ کامیاب۔ +DocType: Webhook,Naming Series,نام سیریز DocType: Workflow,DocType on which this Workflow is applicable.,DOCTYPE جس پر اس کام کے فلو کو لاگو ہے. DocType: User,Enabled,فعال apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,سیٹ اپ مکمل کرنے میں ناکام apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},نیا {0}: {1} -DocType: Tag Category,Category Name,قسم کا نام +DocType: Blog Category,Category Name,قسم کا نام apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,چائلڈ ٹیبل ڈیٹا حاصل کرنے کے لئے والدین کی ضرورت ہوتی ہے۔ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,سبسکرائبر درآمد DocType: Print Settings,PDF Settings,پی ڈی ایف کی ترتیبات @@ -3597,6 +3722,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,کیلنڈر apps/frappe/frappe/client.py,No document found for given filters,کوئی دستاویز دی فلٹر کے لئے مل گیا apps/frappe/frappe/config/website.py,A user who posts blogs.,ایسا صارف جو بلاگ شائع کرتا ہے۔ +DocType: DocType Action,DocType Action,ڈاک ٹائپ ایکشن apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",ایک {0} نام {1} موجود کے ساتھ، ایک نام منتخب کریں DocType: DocType,Custom?,اپنی مرضی کے مطابق؟ DocType: Website Settings,Website Theme Image,ویب سائٹ تھیم تصویر @@ -3606,6 +3732,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},لوڈ ک apps/frappe/frappe/config/integrations.py,Backup,بیک اپ apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,ڈیش بورڈ چارٹ بنانے کیلئے دستاویز کی قسم درکار ہے۔ DocType: DocField,Read Only,صرف پڑھو +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,استراپی آرڈر تشکیل نہیں دے سکا apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,نئے نیوز لیٹر DocType: Energy Point Log,Energy Point Log,انرجی پوائنٹ لاگ DocType: Print Settings,Send Print as PDF,پی ڈی ایف کے طور پر پرنٹ بھیجیں @@ -3630,16 +3757,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,آ apps/frappe/frappe/www/login.html,Or login with,یا کے ساتھ لاگ ان کریں DocType: Error Snapshot,Locals,مقامی apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{0} پر {1}: {2} کے ذریعے مواصلات -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} میں ایک تبصرہ میں آپ کا ذکر {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,گروپ منتخب کریں بذریعہ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,مثال کے طور پر (55 + 434) / 4 یا = Math.sin (Math.PI / 2) ... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} کی ضرورت ہے DocType: Integration Request,Integration Type,انٹیگریشن کی قسم DocType: Newsletter,Send Attachements,Attachements ارسال کریں +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,کوئی فلٹر نہیں ملا apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,گوگل رابطے انٹیگریشن۔ DocType: Transaction Log,Transaction Log,ٹرانزیکشن لاگ ان apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),پچھلے مہینے کی کارکردگی پر مبنی اعدادوشمار ({0} سے {1} تک) DocType: Contact Us Settings,City,شہر +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,تمام صارفین کے لئے کارڈ چھپائیں DocType: DocField,Perm Level,پیرم لیول apps/frappe/frappe/www/confirm_workflow_action.html,View document,دستاویز دیکھیں apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,آج کا کیلنڈر میں ہونے والے واقعات @@ -3650,6 +3778,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'گلوبل تلاش میں' قسم کے لئے کی اجازت نہیں {0} قطار میں {1} apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},'گلوبل تلاش میں' قسم کے لئے کی اجازت نہیں {0} قطار میں {1} DocType: Energy Point Log,Appreciation,تعریف +DocType: Dashboard Chart,Number of Groups,گروپوں کی تعداد apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,لنک کی فہرست DocType: Workflow,Don't Override Status,سٹیٹس کی جگہ لے لے نہیں چھوڑیں apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,تلاش کی اصطلاح @@ -3688,7 +3817,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn- شمال مغرب -1 DocType: Dropbox Settings,Limit Number of DB Backups,ڈی بی بیک اپ کی حد کی تعداد DocType: Custom DocPerm,Level,سطح -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,آخری 30 دن DocType: Custom DocPerm,Report,رپورٹ apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,رقم 0 سے زیادہ ہونا چاہیے. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,کیو زیڈ ٹرے سے منسلک! @@ -3705,6 +3833,7 @@ DocType: S3 Backup Settings,us-west-2,us-West-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,چائلڈ ٹیبل منتخب کریں۔ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ٹرگر پرائمری ایکشن۔ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,پیج +DocType: Social Login Key,User ID Property,صارف کی شناخت پراپرٹی DocType: Email Domain,domain name,ڈومین نام DocType: Contact Email,Contact Email,رابطہ ای میل DocType: Kanban Board Column,Order,آرڈر @@ -3726,7 +3855,7 @@ DocType: Contact,Last Name,آخری نام DocType: Event,Private,ذاتی apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,آج کے لئے کوئی انتباہات DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),پی ڈی ایف کے طور پر ای میل پرنٹ اٹیچمنٹ بھیج (تجویز کردہ) -DocType: Web Page,Left,بائیں +DocType: Onboarding Slide Field,Left,بائیں DocType: Event,All Day,تمام دن apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,کچھ کی طرح لگتا ہے اس سائٹ کے ادائیگی کے گیٹ وے ترتیب کے ساتھ غلط ہے. کوئی ادائیگی بنا دیا گیا ہے. DocType: GCalendar Settings,State,ریاست @@ -3757,7 +3886,6 @@ DocType: Workflow State,User,صارف DocType: Website Settings,"Show title in browser window as ""Prefix - title""",براؤزر ونڈو میں شو عنوان "اپسرگ - عنوان" DocType: Payment Gateway,Gateway Settings,گیٹ وے کی ترتیبات apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,دستاویز کی قسم میں متن -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,چلائیں ٹیسٹ apps/frappe/frappe/handler.py,Logged Out,لاگ آؤٹ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,مزید ... DocType: System Settings,User can login using Email id or Mobile number,یوزر کے ای میل ID یا موبائل نمبر کا استعمال کرتے ہوئے میں لاگ ان کر سکتے ہیں @@ -3773,6 +3901,7 @@ DocType: System Settings,Number Format,نمبر کی شکل apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,خلاصہ DocType: Event,Event Participants,واقعہ شرکاء DocType: Auto Repeat,Frequency,ریڈیو فریکوئینسی +DocType: Onboarding Slide,Slide Order,سلائیڈ آرڈر DocType: Custom Field,Insert After,بعد ڈالیں DocType: Event,Sync with Google Calendar,گوگل کیلنڈر کے ساتھ ہم آہنگی بنائیں۔ DocType: Access Log,Report Name,رپورٹ کا نام @@ -3800,6 +3929,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},قسم کرنسی کے لئے زیادہ سے زیادہ چوڑائی قطار میں 100px ہے {0} apps/frappe/frappe/config/website.py,Content web page.,مواد ویب کے صفحے. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ایک نئے کردار میں شامل +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ویب پیج ملاحظہ کریں +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,نئی تفویض DocType: Google Contacts,Last Sync On,آخری مطابقت پذیری DocType: Deleted Document,Deleted Document,حذف شدہ دستاویز apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,افوہ! کچھ غلط ہو گیا @@ -3809,7 +3940,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,زمین کی تزئ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,جاوا سکرپٹ میں کلائنٹ سائڈ سکرپٹ ملانے DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,مندرجہ ذیل نظریات کے لئے ریکارڈ فلٹر کیے جائیں گے -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,شیڈولر غیر فعال +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,شیڈولر غیر فعال DocType: Blog Settings,Blog Introduction,بلاگ کا تعارف DocType: Global Search Settings,Search Priorities,ترجیحات تلاش کریں DocType: Address,Office,آفس @@ -3819,13 +3950,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,ڈیش بورڈ چارٹ لن DocType: User,Email Settings,ای میل کی ترتیبات apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,یہاں گر DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",اگر فعال ہے تو ، صارف دو فیکٹر اوتھ کو استعمال کرتے ہوئے کسی بھی IP ایڈریس سے لاگ ان ہوسکتا ہے ، یہ سسٹم سیٹنگ میں موجود تمام صارفین کے لئے بھی مرتب کیا جاسکتا ہے۔ -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,پرنٹر کی ترتیبات ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,جاری رکھنے کیلئے اپنے پاس ورڈ درج کریں apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,جاری رکھنے کیلئے اپنے پاس ورڈ درج کریں apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,میں apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} ایک درست ریاست apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,تمام دستاویزات کی قسموں پر لگائیں۔ -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,انرجی پوائنٹ کی تازہ کاری۔ +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,انرجی پوائنٹ کی تازہ کاری۔ +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),صرف روزانہ ملازمتیں چلائیں اگر (دنوں) کے لئے غیر فعال ہو apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ایک اور طریقہ ادائیگی کا انتخاب کریں. تعمیل پے پال کرنسی میں لین دین کی حمایت نہیں کرتا '{0}' DocType: Chat Message,Room Type,کمرہ کی قسم DocType: Data Import Beta,Import Log Preview,لاگ کا مشاہدہ درآمد کریں۔ @@ -3834,6 +3965,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ٹھیک دائرے DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP صارف تخلیق اور تعریفیں۔ apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',آپ کے صارفین میں سنتری مل 'پوچھ کر چیزوں کو تلاش کر سکتے ہیں +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,آج کے واقعات apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,معاف کیجئے گا! صارف کو ان کے اپنے ریکارڈ کو مکمل رسائی حاصل کرنا چاہئے. ,Usage Info,استعمال معلومات apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,کی بورڈ شارٹ کٹس دکھائیں۔ @@ -3847,8 +3979,10 @@ DocType: PayPal Settings,API Username,API اسم رکنیت apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Half Day,ادھا دن DocType: Communication,Communication Type,مواصلات کی قسم DocType: DocField,Unique,منفرد +apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} کو {1} پر سراہا گیا apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,جزوی کامیابی DocType: Email Account,Service,سروس +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف DocType: File,File Name,فائل کا نام apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),تلاش نہیں کیا {0} کے لئے {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ریس: {0} @@ -3862,6 +3996,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,مکمل DocType: GCalendar Settings,Enable,فعال DocType: Google Maps Settings,Home Address,گھر کا پتہ apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),آپ کو صرف ایک بار میں 5000 ریکارڈز تک اپ لوڈ کر سکتے. (بعض صورتوں میں کم ہو سکتی ہے) +DocType: Report,"output in the form of `data = [columns, result]`",آؤٹ پٹ `ڈیٹا = [کالم ، نتیجہ]` کی شکل میں apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,قابل اطلاق دستاویز کی اقسام۔ apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,صارف کے اسائنمنٹس کیلئے قواعد مرتب کریں۔ apps/frappe/frappe/model/document.py,Insufficient Permission for {0},کیلئے ناکافی اجازت {0} @@ -3879,7 +4014,6 @@ DocType: Communication,To and CC,کرنے کے لئے اور CC DocType: SMS Settings,Static Parameters,جامد پیرامیٹر DocType: Chat Message,Room,کمرہ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},کے لئے اپ ڈیٹ {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,پس منظر کی نوکریاں نہیں چل رہی ہیں۔ برائے مہربانی ایڈمنسٹریٹر سے رابطہ کریں۔ DocType: Portal Settings,Custom Menu Items,اپنی مرضی کے مینو اشیاء apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,ویب سائٹ سلائیڈ شو سے منسلک تمام تصاویر کو عوامی ہونا چاہئے DocType: Workflow State,chevron-right,شیوران دائیں @@ -3892,10 +4026,12 @@ DocType: Website Settings,Brand HTML,برانڈ ایچ ٹی ایم ایل apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup,بیک اپ لیں۔ DocType: DocType,Allow Auto Repeat,خودکار اعادہ کی اجازت دیں۔ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,کوئی قدر نہیں ظاہر کرنے کے لئے۔ +DocType: DocType,URL for documentation or help,دستاویزات یا مدد کے لئے یو آر ایل DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ای میل سانچہ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,کامیابی کے ساتھ {0} ریکارڈ کو اپ ڈیٹ کیا گیا۔ apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ضرورت دونوں لاگ ان اور پاس ورڈ +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,چلو \ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,تازہ ترین دستاویز حاصل کرنے کے لئے تازہ کریں. DocType: User,Security Settings,سیکورٹی کی ترتیبات apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,کالم کا اضافہ @@ -3904,6 +4040,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Select Filters apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},برآمد رپورٹ: {0} DocType: Auto Email Report,Filter Meta,میٹا فلٹر DocType: Web Page,Set Meta Tags,میٹا ٹیگز مرتب کریں۔ +DocType: Email Account,Use SSL for Outgoing,جانے والے کیلئے SSL استعمال کریں 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: S3 Backup Settings,Backup Limit,بیک اپ کی حد DocType: Dashboard Chart,Line,لائن @@ -3935,4 +4072,3 @@ DocType: DocField,Ignore User Permissions,صارف کی اجازت کو نظر apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,کامیابی کے ساتھ بچایا گیا۔ apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,آپ سائن اپ کی توثیق کرنے کے اپنے منتظم براہ کرم دریافت کریں DocType: Domain Settings,Active Domains,فعال ڈومینز -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,دکھائیں دلے diff --git a/frappe/translations/uz.csv b/frappe/translations/uz.csv index ef52dfdb77..d0c059dd03 100644 --- a/frappe/translations/uz.csv +++ b/frappe/translations/uz.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Miqdor maydoni tanlang. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Import qilingan fayl yuklanmoqda ... DocType: Assignment Rule,Last User,So'nggi foydalanuvchi -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",{1} tomonidan sizga yangi vazifa ({0}) tayinlangan. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Seans birlamchi sozlamalari saqlandi apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Faylni qayta yuklash DocType: Email Queue,Email Queue records.,Email Queue qaydlari. @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} daraxt DocType: User,User Emails,Foydalanuvchi e-pochtalari DocType: User,Username,Foydalanuvchi nomi apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zipni import qilish +DocType: Scheduled Job Type,Create Log,Jurnal yaratish apps/frappe/frappe/model/base_document.py,Value too big,Juda katta qiymat DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Sinov skriptini ishga tushirish @@ -71,7 +71,7 @@ DocType: Auto Repeat,Monthly,Oylik DocType: Address,Uttarakhand,Uttarkand DocType: Email Account,Enable Incoming,Kirishni yoqish apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Xavf -DocType: Address,Email Address,Elektron pochta manzili +apps/frappe/frappe/www/login.py,Email Address,Elektron pochta manzili DocType: Workflow State,th-large,juda katta DocType: Communication,Unread Notification Sent,O'qilmagan xabarnoma yuborildi apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksportga ruxsat berilmaydi. Eksport qilish uchun sizga {0} rol kerak. @@ -82,11 +82,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0} DocType: DocType,Is Published Field,Maydon e'lon qilinadi DocType: GCalendar Settings,GCalendar Settings,GCalendar sozlamalari DocType: Email Group,Email Group,E-pochta guruhi +apps/frappe/frappe/__init__.py,Only for {},Faqat {} uchun apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - {0} hodisasini Google Taqvimidan o'chirib bo'lmadi, xato kodi {1}." DocType: Event,Pulled from Google Calendar,Google Taqvimidan tortib olindi DocType: Note,Seen By,Ko'rilgan apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Bir nechta qo'shish -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Siz bir nechta energiya nuqtalarini qo'lga kiritdingiz apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Foydalanuvchi Foydalanuvchi Foydalanuvchi emas. DocType: Energy Point Log,Reverted,Qaytdi DocType: Success Action,First Success Message,Birinchi muvaffaqiyatli xabar @@ -94,6 +94,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Yo'q apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Noto'g'ri qiymat: {0} {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Joylar xususiyatlarini o'zgartirish (yashirish, o'qish, ruxsatnoma va h.k.)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Qadrlang +DocType: Notification Settings,Document Share,Hujjatlar almashish DocType: Workflow State,lock,qulflang apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Biz bilan bog'lanish uchun sozlamalar. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrator hisobga kiritildi @@ -107,6 +108,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Agar yoqilgan bo'lsa, foydalanuvchi birinchi marta ochganda hujjat ko'rinadigan deb belgilanadi" DocType: Auto Repeat,Repeat on Day,Kunni takrorlang DocType: DocField,Color,Rang +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Barchasini O'qilgan deb belgilang DocType: Data Migration Run,Log,Kundalik DocType: Workflow State,indent-right,indent-o'ng DocType: Has Role,Has Role,Rolu bor @@ -125,6 +127,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Kuzatish rejimini ko'rsatish DocType: DocType,Default Print Format,Standart nashr formati DocType: Workflow State,Tags,Teglar +DocType: Onboarding Slide,Slide Type,Slayd turi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hech kim: Ish xarining oxiri apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} maydonini yagona noyob mavjud qiymatlar bo'lgani uchun {1} da noyob deb belgilash mumkin emas apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Hujjat turlari @@ -134,7 +137,6 @@ DocType: Language,Guest,Mehmon DocType: DocType,Title Field,Sarlavha maydoni DocType: Error Log,Error Log,Xato jurnali apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,Noto‘g‘ri URL -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,So'nggi 7 kun apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" kabi takrorlash faqat "abc" ga qaraganda ancha qiynaladi DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Agar bu ruxsatsiz deb hisoblasangiz, ma'mur parolini o'zgartiring." @@ -153,6 +155,7 @@ DocType: OAuth Authorization Code,Client,Mijoz apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Ustunni tanlang apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ushbu forma siz yuklaganingizdan so'ng o'zgartirildi DocType: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Xabarnomalar jurnali DocType: System Settings,"If not set, the currency precision will depend on number format","Agar belgilanmasa, valyuta aniqligi raqam formatiga bog'liq bo'ladi" apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebar-ni oching apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",Serverning chiziqli konfiguratsiyasi bilan bog'liq muammo mavjud. Muvaffaqiyatsiz bo'lgan taqdirda sizning hisobingizga mablag 'qaytariladi. @@ -162,7 +165,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Ve apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Yuborish DocType: Workflow Action Master,Workflow Action Name,Ish oqimining nomi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType birlashtirilmaydi -DocType: Web Form Field,Fieldtype,Maydon turi +DocType: Onboarding Slide Field,Fieldtype,Maydon turi apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Zip fayli emas DocType: Global Search DocType,Global Search DocType,Global qidirish DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -175,7 +178,9 @@ DocType: Newsletter,Email Sent?,E-pochta yuborildi? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Grafikni almashtirish apps/frappe/frappe/desk/form/save.py,Did not cancel,Bekor qilmadim DocType: Social Login Key,Client Information,Mijoz haqida ma'lumot +DocType: Energy Point Rule,Apply this rule only once per document,Ushbu hujjatni har bir hujjatga faqat bir marta qo'llang DocType: Workflow State,plus,ortiqcha +DocType: DocField,Read Only Depends On,O'qish faqat bog'liq apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Mehmon yoki ma'mur sifatida tizimga kiritildi DocType: Email Account,UNSEEN,UNSEEN apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Fayl menejeri @@ -199,9 +204,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Sabab DocType: Email Unsubscribe,Email Unsubscribe,E - mail obunani bekor qilish DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Eng yaxshi natijalarni olish uchun shaffof fon bilan taxminan 150px kenglikdagi tasvirni tanlang. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Harakat yo'q +DocType: Server Script,Script Manager,Skript menejeri +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Harakat yo'q apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Uchinchi tomon ilovalari apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Birinchi foydalanuvchi tizim boshqaruvchisiga aylanadi (uni keyinroq o'zgartirishingiz mumkin). +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Bugungi kunda voqealar yo'q apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Siz o'zingizga sharh ochib berolmaysiz apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType tanlangan Doc hodisasi uchun Submittable bo'lishi kerak DocType: Workflow State,circle-arrow-up,aylana-o'q-up @@ -233,6 +240,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}: {1} uchun ruxsat berilmagan. Cheklangan maydon: {2} DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sandbox API yordamida to'lovingizni sinovdan o'tkazsangiz buni tekshirib ko'ring apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Siz standart veb-sayt mavzusini o'chirishingiz mumkin emas +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Birinchi {0} yaratish DocType: Data Import,Log Details,Tafsilotlar DocType: Workflow Transition,Example,Misol DocType: Webhook Header,Webhook Header,Webhook Header @@ -247,8 +255,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Chat fon apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,O'qilgan deb belgilash apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} yangilanmoqda +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Xuddi shu slayd buyurtmasi bilan <b>{0}</b> bortli slayd allaqachon mavjud apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Hisobotni o'chirib qo'yish DocType: Translation,Contributed Translation Doctype Name,Hisoblangan tarjima hujjati nomi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sozlash> Formani sozlash DocType: PayPal Settings,Redirect To,Qaytish DocType: Data Migration Mapping,Pull,Torting DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript formati: frappe.query_reports ['REPORTNAME'] = {} @@ -263,6 +273,7 @@ DocType: DocShare,Internal record of document shares,Hujjat aktsiyalarining ichk DocType: Energy Point Settings,Review Levels,Darajalarni ko'rib chiqish DocType: Workflow State,Comment,Fikr DocType: Data Migration Plan,Postprocess Method,Postpesess usuli +DocType: DocType Action,Action Type,Harakat turi apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Rasmga olmoq DocType: Assignment Rule,Round Robin,Dumaloq Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.","Yuborilgan hujjatlarni bekor qilib, keyin ularni o'zgartirish orqali o'zgartirishingiz mumkin." @@ -276,6 +287,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Turli Saqlash DocType: Comment,Seen,Ko'rinadi apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Qo'shimcha ma'lumotni ko'rsatish +DocType: Server Script,Before Submit,Yuborishdan oldin DocType: System Settings,Run scheduled jobs only if checked,Belgilangan bo'lsa faqat rejalashtirilgan ishlarni bajaring apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,"Bo'lim sarlavhalari yoqilgan bo'lsa, faqat ko'rsatiladi" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,Arxiv @@ -288,10 +300,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox kirish uchun kalit apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Maxsus skriptning add_fetch konfiguratsiyasida <b>{0}</b> noto'g'ri maydon nomi apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Kontakt sinxronlashtirilishi kerak bo'lgan Google Contacts-ni tanlang. DocType: Web Page,Main Section (HTML),Asosiy bo'lim (HTML) +DocType: Scheduled Job Type,Annual,Yillik DocType: Workflow State,headphones,minigarnituralar apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Parolni kiritish yoki Parolni kutish-ni tanlang DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,"masalan, replies@yourcomany.com. Barcha javoblar ushbu kiruvchi qutiga keladi." DocType: Slack Webhook URL,Slack Webhook URL,Veb-brauzer URL-ni bo'shating +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Sehrgarda slaydning tartibini aniqlaydi. Agar slayd ko'rsatilmasa, ustuvorlik 0 ga o'rnatilishi kerak." DocType: Data Migration Run,Current Mapping,Joriy xaritalash apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Kerakli elektron pochta va ism kerak apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Barcha biriktirmalarni shaxsiy qilib qo'ying @@ -314,6 +328,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,O'tish qoidalari apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Oldindan ko‘rishda faqat birinchi {0} qator ko‘rsatilmoqda apps/frappe/frappe/core/doctype/report/report.js,Example:,Misol: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Cheklovlar DocType: Workflow,Defines workflow states and rules for a document.,Hujjat uchun ish oqimining qoidalarini va qoidalarini belgilaydi. DocType: Workflow State,Filter,Filtrni tanlang apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Qo'shimcha ma'lumot olish uchun Xato jurnalini tekshiring: {0} @@ -325,6 +340,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Ish apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} tizimdan chiqdi: {1} DocType: Address,West Bengal,G'arbiy Bengal +DocType: Onboarding Slide,Information,Ma `lumot apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Submittable emas, agar Assign Assign ni o'rnatib bo'lmadi" DocType: Transaction Log,Row Index,Row indeks DocType: Social Login Key,Facebook,Facebook @@ -343,7 +359,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,Tugma yordami DocType: Kanban Board Column,purple,binafsha rang DocType: About Us Settings,Team Members,Jamoa a'zolari +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,"Faol bo'lmagan saytlar uchun kuniga bir marta rejalashtirilgan ishlarni bajaradi. 0 belgilangan bo'lsa, standart 4 kun." DocType: Assignment Rule,System Manager,Tizim menejeri +DocType: Scheduled Job Log,Scheduled Job,Rejalashtirilgan ish DocType: Custom DocPerm,Permissions,Ruxsatnomalar apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Ichki integratsiya uchun Webhooks-ni tozalang DocType: Dropbox Settings,Allow Dropbox Access,Dropboxga ruxsat berish @@ -375,6 +393,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull DocType: Notification,Send Alert On,Ogohlantirish yoqilsin DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Yorliqni moslash, bosib chiqarishni yashirish, asl qiymati va h.k." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Fayllar ochilmoqda ... +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} sizning {1} dagi {2} ball bilan ishingizni yuqori baholadi apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Iltimos, ma'lumotnoma aloqa docs aylana bilan bog'liq emasligiga ishonch hosil qiling." DocType: Assignment Rule,Assign Condition,Shartni tayinlang apps/frappe/frappe/website/doctype/personal_data_download_request/personal_data_download_request.py,Download Your Data,Ma'lumotlaringizni yuklab oling @@ -396,6 +415,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Shtri DocType: Email Flag Queue,Email Flag Queue,E-pochtaning bayrog'i DocType: Access Log,Columns / Fields,Ustunlar / maydonlar apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Bosib chiqarish formatlari uchun uslub sahifalar +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Boshqaruv jadvali tuzish uchun Agregat Function maydoni zarur apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,{0} ochiqligini aniqlab bo'lmaydi. Boshqa bir narsani ko'ring. apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Sizning ma'lumotlaringiz yuborildi apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} foydalanuvchisini o'chirib bo'lmaydi @@ -411,11 +431,12 @@ DocType: Property Setter,Field Name,Joy nomi DocType: Assignment Rule,Assign To Users,Foydalanuvchilarga tayinlang apps/frappe/frappe/public/js/frappe/utils/utils.js,or,yoki apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,modul nomi ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Davom etish +DocType: Onboarding Slide,Continue,Davom etish apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google Integration o'chirilgan. DocType: Custom Field,Fieldname,Joy nom DocType: Workflow State,certificate,sertifikat apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Tasdiqlanmoqda ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,{0} {1} dagi sizning topshirig'ingiz olib tashlandi apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Birinchi ma'lumotlar ustuni bo'sh bo'lishi kerak. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Barcha versiyalarni ko'rsatish apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Sharhni ko'rish @@ -425,12 +446,14 @@ DocType: User,Restrict IP,IPni cheklash apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Hozirgi vaqtda elektron pochta xabarlari yuborilmadi apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Taqvimi - Google Taqvimda {0} hodisasini yangilab bo'lmadi, xato kodi {1}." +DocType: Notification Log,Email Content,Elektron pochta tarkibi apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Buyruqni tering yoki yozing DocType: Activity Log,Timeline Name,Vaqt jadvalining nomi apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Faqat bitta {0} asosiy sifatida o'rnatilishi mumkin. DocType: Email Account,e.g. smtp.gmail.com,"masalan, smtp.gmail.com" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Yangi qoidani qo'shing DocType: Contact,Sales Master Manager,Sotuvlar bo'yicha menejer +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Ilovangiz ishlashi uchun JavaScript-ni yoqishingiz kerak. DocType: User Permission,For Value,Qiymat uchun DocType: Event,Google Calendar ID,Google Taqvim ID raqami apps/frappe/frappe/www/complete_signup.html,One Last Step,So'nggi qadam @@ -445,6 +468,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP-familiya maydoni apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} dan {0} ni import qilish DocType: GCalendar Account,Allow GCalendar Access,GCalendarga ruxsat berish apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} - majburiy maydon +DocType: DocType,Documentation Link,Hujjatlar havolasi apps/frappe/frappe/templates/includes/login/login.js,Login token required,Kirish tokenlari talab qilinadi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Oylik reyting: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Bir nechta ro'yxat elementlarini tanlang @@ -466,6 +490,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,URL manzili DocType: Version,Table HTML,Jadval HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Abonentlarni qo'shish +DocType: Notification Log,Energy Point,Energiya nuqtasi apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Bugungi tadbirlar DocType: Google Calendar,Push to Google Calendar,Google Taqvim-ga bosing DocType: Notification Recipient,Email By Document Field,Hujjat sohasiga elektron pochta @@ -481,12 +506,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Yo'q DocType: Currency,Fraction Units,Fraktsiya qitish apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{1} dan {2} gacha {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Bajarildi deb belgilang DocType: Chat Message,Type,Turi DocType: Google Settings,OAuth Client ID,OAuth mijoz identifikatori DocType: Auto Repeat,Subject,Mavzu apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Stolga qayting DocType: Web Form,Amount Based On Field,Maydondagi miqdori +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} hech qanday versiyasini kuzatmaydi. apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Foydalanuvchi ulashish uchun majburiydir DocType: DocField,Hidden,Yashirin DocType: Web Form,Allow Incomplete Forms,Tugatilmagan shakllarga ruxsat berish @@ -509,6 +534,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,Tasdiqlash uchun elektron pochta manzilingizni tekshiring apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,Katak shakl oxirida bo'lishi mumkin emas DocType: Communication,Bounced,Qaytarildi +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,ning DocType: Deleted Document,Deleted Name,O'chirilgan ism apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Tizim va veb-sayt foydalanuvchilari DocType: Workflow Document State,Doc Status,Doc maqomi @@ -519,6 +545,7 @@ DocType: Language,Language Code,Til kodi DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Eslatma: Sukut bo'yicha zaxira nusxalari uchun elektron pochta xabarlari yuboriladi. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Filtrni qo'shish apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},Quyidagi raqamlarga yuborilgan SMS: {0} +DocType: Notification Settings,Assignments,Topshiriqlar apps/frappe/frappe/utils/data.py,{0} and {1},{0} va {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Suhbatni boshlang. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Loyiha hujjatlarini chop etish uchun har doim "Taslak" qo'shing @@ -527,6 +554,7 @@ DocType: Data Migration Run,Current Mapping Start,Joriy xaritalash boshlang apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pochta spam sifatida belgilandi DocType: Comment,Website Manager,Veb-sayt boshqaruvchisi apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,"Faylni yuklash uzilib qoldi. Iltimos, yana bir bor urinib ko'ring." +DocType: Data Import Beta,Show Failed Logs,Muvaffaqiyatsiz jurnallarni ko'rsatish apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Tarjimalar apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Taslak yoki Bekor qilingan hujjatlarni tanladingiz apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},"{0} hujjati {1} tomonidan {2} tomonidan belgilanadi," @@ -534,7 +562,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Document Queued DocType: GSuite Templates,Destination ID,Nishon identifikatori DocType: Desktop Icon,List,Ro'yxat DocType: Activity Log,Link Name,Ulanish nomi +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Sizda yo'q DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy +DocType: Onboarding Slide,Onboarding Slide,Bortli slayd apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Parol noto'g'ri: DocType: Print Settings,Send document web view link in email,Hujjat veb-versiyasini havolani elektron pochta orqali yuboring apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Avvalgi @@ -595,6 +625,7 @@ DocType: Kanban Board Column,darkgrey,Darkgrey apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Muvaffaqiyatli: {0} - {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"Demo-da foydalanuvchi ma'lumotlarini o'zgartirib bo'lmaydi. Iltimos, https://erpnext.com manzili bo'yicha yangi hisob uchun ro'yxatdan o'ting" apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,Damla +DocType: Dashboard Chart,Aggregate Function Based On,Umumiy funktsiyaga asoslangan apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,O'zgarishlarni amalga oshirish uchun buni takrorlang apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Saqlash uchun Enter ni bosing apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF-fayllar buzilgan rasm havolalari tufayli amalga oshmadi @@ -608,7 +639,9 @@ DocType: Notification,Days Before,Avvalgi kunlar apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Kundalik tadbirlar xuddi shu kuni tugashi kerak. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Tahrirlash ... DocType: Workflow State,volume-down,ovoz balandligi pastga +DocType: Onboarding Slide,Help Links,Yordam havolalari apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ushbu IP-manzildan kirish taqiqlangan +DocType: Notification Settings,Enable Email Notifications,E-pochta bildirishnomalarini yoqish apps/frappe/frappe/desk/reportview.py,No Tags,Teglar yo'q DocType: Email Account,Send Notification to,Bildirishnoma yuborish DocType: DocField,Collapsible,Katlanabilir @@ -637,6 +670,7 @@ DocType: Google Drive,Last Backup On,So'nggi zaxira yoqilgan DocType: Customize Form Field,Customize Form Field,Shakl maydonini moslash DocType: Energy Point Rule,For Document Event,Hujjat hodisasi uchun DocType: Website Settings,Chat Room Name,Chat xonasining nomi +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,O'zgarishsiz DocType: OAuth Client,Grant Type,Grant turi apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Hujjatlarni foydalanuvchi tomonidan o'qilishi mumkinligini tekshiring DocType: Deleted Document,Hub Sync ID,Uyadagi sinxronlash identifikatori @@ -644,6 +678,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,% jo DocType: Auto Repeat,Quarterly,Har chorakda apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?","Ushbu hisob uchun konfiguratsiz E-mail domeni, bitta yaratilsinmi?" DocType: User,Reset Password Key,Parol kalitini qayta tiklash +DocType: Dashboard Chart,All Time,Hamma vaqt apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} uchun noqonuniy hujjat holati DocType: Email Account,Enable Auto Reply,Avtomatik javob berish funksiyasini yoqish apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ko'rilmagan @@ -656,6 +691,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Xabar DocType: Email Account,Notify if unreplied,Unreplied yoki yo'qligini bildirish apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,QR kodini skanerlang va natijada ko'rsatilgan kodni kiriting. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Gradients-ni yoqish +DocType: Scheduled Job Type,Hourly Long,Soat uzoq DocType: System Settings,Minimum Password Score,Minimal parol DocType: DocType,Fields,Maydonlar DocType: System Settings,Your organization name and address for the email footer.,E-pochta altbilgisiga tashkilotingiz nomi va manzili. @@ -663,11 +699,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Ota-jadval apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Zaxiralash tugadi! apps/frappe/frappe/config/desktop.py,Developer,Dasturchi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Yaratildi +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},Uni yoqish uchun quyidagi havoladagi ko'rsatmalarga amal qiling: {0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{1} qatoridagi {0} URL va parollar ham bo'lishi mumkin emas apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Quyidagi jadvallar uchun bitta qator atleast bo'lishi kerak: {0} DocType: Print Format,Default Print Language,Standart bosib chiqarish tili apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Otalari apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Ildiz {0} o'chirib bo'lmaydi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Muvaffaqiyatsiz jurnallar yo'q apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Hech qanday izoh yo'q apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",SMS sozlamalari orqali autentifikatsiya usuli sifatida sozlashdan oldin SMS-xabarlarni sozlang apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,DocType va Name ham talab qilinadi @@ -691,6 +729,7 @@ DocType: Website Settings,Footer Items,Olingan ma'lumotlar apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menyu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Kundalik +DocType: Onboarding Slide,Max Count,Maksimal hisoblash apps/frappe/frappe/config/users_and_permissions.py,User Roles,Foydalanuvchi roli DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter standart DocType yoki Field xususiyatini bekor qiladi apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Yangiladimi: noto'g'ri / muddati tugagan havola. @@ -709,6 +748,7 @@ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Xost DocType: Data Import Beta,Import File,Faylni import qilish +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Andoza xatosi apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,<b>{0}</b> ustun allaqachon mavjud. DocType: ToDo,High,Oliy apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Yangi hodisa @@ -724,6 +764,7 @@ DocType: Web Form Field,Show in filter,Filtrda ko'rsatish DocType: Address,Daman and Diu,Daman va Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Loyiha DocType: Address,Personal,Shaxsiy +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Xom chop etish sozlamalari ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Tafsilotlar uchun https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region-ga qarang. apps/frappe/frappe/config/settings.py,Bulk Rename,Ommaviy qayta nomlash DocType: Email Queue,Show as cc,Cc sifatida ko'rsatish @@ -733,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Videoni oling DocType: Contact Us Settings,Introductory information for the Contact Us Page,Biz bilan bog'lanish sahifasiga kirish haqida ma'lumot DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,barmoqlarni pastga tushirish +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Hujjatlarni bekor qilish DocType: User,Send Notifications for Email threads,Elektron pochta xabarlari uchun bildirishnomalarni yuboring apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Uz Top reyting www.uz. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Developer rejimida emas @@ -740,7 +782,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Fayl zahira DocType: DocField,In Global Search,Global izlovchilarda DocType: System Settings,Brute Force Security,Brute Force Xavfsizlik DocType: Workflow State,indent-left,indent-chap -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,"Ushbu faylni o'chirish xavfli: {0}. Iltimos, tizim boshqaruvchisiga murojaat qiling." DocType: Currency,Currency Name,Valyuta nomi apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,E-pochtalar yo'q @@ -755,10 +796,12 @@ DocType: Energy Point Rule,User Field,Foydalanuvchi maydoni DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Yo'q qilish tugmachasini bosing apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} uchun {1} {2} +DocType: Scheduled Job Type,Stopped,To'xtadi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,O'chirmadi apps/frappe/frappe/desk/like.py,Liked,Yoqdi apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Hozir yuboring apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form","Standart DocType formati asl nusxa formatiga ega bo`lmaydi, Shaklni moslashtiring" +DocType: Server Script,Allow Guest,Mehmonga ruxsat berish DocType: Report,Query,So'rov DocType: Customize Form,Sort Order,Tartiblash tartibi apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},{1} qatorida {0} uchun "List View" da ruxsat berilmagan @@ -780,10 +823,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Ikki omil autentifikatsiya usuli apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Avval nomni o'rnating va yozib oling. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 yozuvlar +DocType: DocType Link,Link Fieldname,Fieldname havolasi apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} bilan ulashilgan apps/frappe/frappe/email/queue.py,Unsubscribe,Obunani bekor qilish DocType: View Log,Reference Name,Malumot nomi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Foydalanuvchini o'zgartirish +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Birinchidan apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Tarjimalarni yangilang DocType: Error Snapshot,Exception,Istisno DocType: Email Account,Use IMAP,IMAP-dan foydalaning @@ -797,6 +842,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Ish oqimiga davlatning o'tishini belgilovchi qoidalar. DocType: File,Folder,Folder DocType: Website Route Meta,Website Route Meta,Route Meta veb-sayti +DocType: Onboarding Slide Field,Onboarding Slide Field,Bortli slayd maydoni DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,BB direktori apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,1-variant @@ -823,7 +869,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Jur apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Grafiklarni sozlash DocType: User,Last IP,Oxirgi IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Iltimos, e-pochtangizga mavzu qo'shing" -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,{0} yangi hujjat siz bilan {1} baham ko'rdi. DocType: Data Migration Connector,Data Migration Connector,Ma'lumotlarni uzatish ulagichi apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} qaytarildi {1} DocType: Email Account,Track Email Status,Elektron pochta holatini kuzating @@ -875,6 +920,7 @@ DocType: Email Account,Default Outgoing,Standart Chiqish DocType: Workflow State,play,o'ynash apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Ro'yxatdan o'tishni yakunlash va yangi parolni o'rnatish uchun quyidagi linkni bosing apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Qo'shilmadi +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} {2} {3} uchun {1} ball to'pladi. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,E-pochta hisoblari tayinlangan emas DocType: S3 Backup Settings,eu-west-2,eu-g'arbiy-2 DocType: Contact Us Settings,Contact Us Settings,Biz bilan bog'laning @@ -882,6 +928,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Qidirilmo DocType: Workflow State,text-width,matn kengligi apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Ushbu yozuv uchun maksimal qo'shimcha cheklovga yetdi. apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Fayl nomi yoki kengaytmasi bo'yicha qidirish +DocType: Onboarding Slide,Slide Title,Slayd sarlavhasi DocType: Notification,View Properties (via Customize Form),Xususiyatlarni ko'rish (moslashuv shakli orqali) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Faylni tanlash uchun uni bosing. DocType: Note Seen By,Note Seen By,Eslatmalar @@ -908,13 +955,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URLni ulash DocType: System Settings,Allow Consecutive Login Attempts ,Harakatlarga kirishga ruxsat berish apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,"To'lov jarayonida xatolik yuz berdi. Iltimos, biz bilan bog'laning." +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,"Agar slayd turi yarlansa yoki sozlansa, {ref_doctype} .py faylida 'create_onboarding_docs' usuli bo'lishi kerak, slayd tugagandan so'ng bajarilishi kerak." apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} kun oldin DocType: Email Account,Awaiting Password,Parolni kutish DocType: Address,Address Line 1,Manzil uchun 1-chi qator apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,"Of nasllari emas, balki" DocType: Contact,Company Name,kopmaniya nomi DocType: Custom DocPerm,Role,Rol -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Sozlamalar ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,brauzeringizga apps/frappe/frappe/utils/data.py,Cent,Cent ,Recorder,Yozuvchi @@ -974,6 +1021,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","E-pochtangiz qabul qiluvchi tomonidan ochilgan bo'lsa, uni kuzatib boring. <br> Eslatma: Agar bir nechta alıcıya yuborgan bo'lsangiz, 1 qabul qiluvchi elektron pochtani o'qiysa ham, "Ochilgan"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Missing qiymatlar kerak apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google Kontaktlarga kirishga ruxsat bering +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Cheklangan DocType: Data Migration Connector,Frappe,Frappe apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,O'qilmagan deb belgilash DocType: Activity Log,Operation,Operatsiya @@ -1026,6 +1074,7 @@ DocType: Web Form,Allow Print,Bosib chiqarishga ruxsat berish DocType: Communication,Clicked,Tugatgan apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Bekor qilish apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} uchun ruxsat yo'q +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Iltimos, standart elektron pochta hisob qaydnomasini O'rnatish> Elektron pochta> Elektron pochta hisob qaydnomasini o'rnating" apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Jo'natish rejalashtirilmoqda DocType: DocType,Track Seen,Kuzatib boring DocType: Dropbox Settings,File Backup,Faylni zaxiralash @@ -1034,12 +1083,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Hech qanday { apps/frappe/frappe/config/customization.py,Add custom forms.,Maxsus shakllar qo'shing. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {2} da {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,ushbu hujjatni taqdim etdi -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Tizim oldindan belgilangan ko'plab rollarni ta'minlaydi. Yaxshiroq ruxsatlarni o'rnatish uchun yangi rollarni qo'shishingiz mumkin. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Tetik nomi -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Domenlar +DocType: Onboarding Slide,Domains,Domenlar DocType: Blog Category,Blog Category,Mazkur foydalanuvchiga yozish kategoriyasi apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,"Quyidagi shart bajarilmasa, xaritani topib bo'lmaydi:" DocType: Role Permission for Page and Report,Roles HTML,HTML rollari @@ -1079,7 +1127,6 @@ DocType: Assignment Rule Day,Saturday,Shanba DocType: User,Represents a User in the system.,Tizimda foydalanuvchilarni bildiradi. DocType: List View Setting,Disable Auto Refresh,Avtomatik yangilashni o'chiring DocType: Comment,Label,Yorliq -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",{1} ga tayinlangan {0} vazifasi yopildi. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Iltimos, ushbu oynani yoping" DocType: Print Format,Print Format Type,Chop etish formati turi DocType: Newsletter,A Lead with this Email Address should exist,Ushbu elektron pochta manzili bilan qo'rg'oshin mavjud bo'lishi kerak @@ -1096,6 +1143,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Chiqish e-pochta xabarl apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,tanlang DocType: Data Export,Filter List,Filtr ro'yxati DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Avtomatik javob yozish DocType: Data Migration Mapping,Condition,Vaziyat apps/frappe/frappe/utils/data.py,{0} hours ago,{0} soat oldin @@ -1114,12 +1162,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Ma'lumotlar bazasi ishtirokchisi DocType: Communication,Sent Read Receipt,Qabulnoma o'qildi DocType: Email Queue,Unsubscribe Method,Obunani bekor qilish usuli +DocType: Onboarding Slide,Add More Button,Qo'shimcha tugma qo'shing DocType: GSuite Templates,Related DocType,Bilan bog'liq DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,Kontent qo'shish uchun tahrirlash apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Tillarni tanlang apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Karta ma'lumotlari apps/frappe/frappe/__init__.py,No permission for {0},{0} uchun ruxsat yo'q DocType: DocType,Advanced,Murakkab +DocType: Onboarding Slide,Slide Image Source,Slaydli rasm manbai apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,API kaliti yoki API maxfiyligi noto'g'ri deb o'ylaydi !!! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},Malumot: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Honim @@ -1136,6 +1186,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Ustoz DocType: DocType,User Cannot Create,Foydalanuvchi yaratolmaydi apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Muvaffaqiyatli bajarildi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropboxga ruxsat tasdiqlandi! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Haqiqatan ham {0} ni {1} bilan birlashtirmoqchimisiz? DocType: Customize Form,Enter Form Type,Shakli turini kiriting DocType: Google Drive,Authorize Google Drive Access,Google Drive kirishiga ruxsat bering apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Yo'qotilgan parametr Kanban Kengashi nomi @@ -1145,7 +1196,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType ruxsat berish. Ehtiyot bo'ling!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Chop etish uchun maxsus formatlar, elektron pochta" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jami {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Yangi versiyaga yangilandi DocType: Custom Field,Depends On,Ga bog'liq DocType: Kanban Board Column,Green,Yashil rangda DocType: Custom DocPerm,Additional Permissions,Qo'shimcha ruxsatlar @@ -1173,6 +1223,7 @@ DocType: Energy Point Log,Social,Ijtimoiy apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Google Calendar - {0}, xato kodi {1} uchun taqvim yaratib bo'lmadi." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,Satrni tahrirlash DocType: Workflow Action Master,Workflow Action Master,Ish xarlari bo'yicha master +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Barchasini o'chirish DocType: Custom Field,Field Type,Er turi apps/frappe/frappe/utils/data.py,only.,faqatgina. DocType: Route History,Route History,Marshrut tarixi @@ -1208,11 +1259,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Parolni unutdingizmi? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverda xato +DocType: Server Script,After Delete,Yo'q qilgandan keyin apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,O'tgan barcha hisobotlarni ko'rib chiqing. apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,Kirish identifikatori talab qilinadi DocType: Website Slideshow,Website Slideshow,Sayt Slaydshou apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ma'lumot yo'q DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Ushbu veb-saytning asosiy sahifasi. Foydalanuvchi bilan aloqa (katalog, kirish, mahsulotlar, blog, haqida, aloqa)" +DocType: Server Script,After Submit,Yuborgandan keyin apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},{0} e-pochta qayd yozuvidan e-pochtalarni olishda autentifikatsiya amalga oshmadi. Serverdan xabar: {1} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Maxsus maydon @@ -1253,15 +1306,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Agar foydalanuvchining roli tekshirilsa, foydalanuvchi "tizim foydalanuvchisi" bo'ladi. "Tizim foydalanuvchisi" stolga kirish huquqiga ega" DocType: System Settings,Date and Number Format,Sana va raqam formati apps/frappe/frappe/model/document.py,one of,bittasi -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sozlash> Formani sozlash apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Bir onni tekshirib ko'rish apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Teglarni ko'rsatish DocType: DocField,HTML Editor,HTML tahrirlovchisi 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","Agar qattiq foydalanuvchi ruxsatini qo'llash va foydalanuvchining ruxsatnomasi foydalanuvchi uchun DocType uchun belgilansa, u holda bog'ning qiymati bo'sh bo'lgan barcha hujjatlar ushbu foydalanuvchi uchun ko'rsatilmaydi." DocType: Address,Billing,Billing DocType: Email Queue,Not Sent,Yuborilmadi -DocType: Web Form,Actions,Amallar -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi +DocType: DocType,Actions,Amallar DocType: Workflow State,align-justify,tekislang DocType: User,Middle Name (Optional),O'rtacha nomi (majburiy emas) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Ruxsat berilmadi @@ -1276,6 +1327,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Natija yo&# DocType: System Settings,Security,Xavfsizlik apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,{0} qabul qiluvchilarni yuborish rejalashtirilmoqda apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kesish +DocType: Server Script,After Save,Saqlashdan keyin apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},{0} dan {1} ga o'zgartirilgan apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1} ({2} qatorli bolalar bilan) {0} DocType: Currency,**Currency** Master,** Valyuta ** Magistr @@ -1302,15 +1354,18 @@ DocType: Prepared Report,Filter Values,Filtr qiymatlari DocType: Communication,User Tags,Foydalanuvchi teglari DocType: Data Migration Run,Fail,Muvaffaqiyatsiz DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,So'nggi qatl DocType: Data Migration Run,Pull Failed,Muvaffaqiyatsiz tortish apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Kartalarni ko'rsatish / yashirish DocType: Communication,Feedback Request,Fikr-mulohaza so'rovi apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Ma'lumotlarni CSV / Excel fayllaridan import qilish. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Quyidagi joylar etishmayapti: +DocType: Notification Log,From User,Foydalanuvchi tomonidan apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},{0} bekor qilinmoqda DocType: Web Page,Main Section,Asosiy bo'lim DocType: Page,Icon,Belgini apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Maslahat: Parolga simvollar, raqamlar va bosh harflarni kiriting" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Xabarlar, topshiriqlar, energiya punktlari va boshqalar uchun bildirishnomalarni sozlang." DocType: DocField,Allow in Quick Entry,Tez kirishga ruxsat berish apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy @@ -1342,7 +1397,6 @@ DocType: Website Theme,Theme URL,Mavzu URL manzili DocType: Customize Form,Sort Field,Joyni saralash DocType: Razorpay Settings,Razorpay Settings,Razorpay sozlamalari apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Filtrni tahrirlash -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Qo'shimcha qo'shish DocType: System Settings,Session Expiry Mobile,Kirish muddati mobaynida mobil apps/frappe/frappe/utils/password.py,Incorrect User or Password,Noto'g'ri foydalanuvchi yoki parol apps/frappe/frappe/templates/includes/search_box.html,Search results for,Uchun qidiruv natijalari @@ -1358,8 +1412,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Energiya nuqtasi qoidasi DocType: Communication,Delayed,Geciktirildi apps/frappe/frappe/config/settings.py,List of backups available for download,Yuklash uchun mavjud zaxiralar ro'yxati +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,Yangi ma'lumotlarni import qilib ko'ring apps/frappe/frappe/www/login.html,Sign up,Ro'yxatdan o'tish apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Row {0}: standart maydonlarni to'ldirish majburiy emas +DocType: Webhook,Enable Security,Xavfsizlikni yoqish apps/frappe/frappe/config/customization.py,Dashboards,Asboblar paneli DocType: Test Runner,Output,Chiqish DocType: Milestone,Track Field,Trek maydoni @@ -1367,6 +1423,7 @@ DocType: Notification,Set Property After Alert,Alertdan keyin obyektni sozlash apps/frappe/frappe/config/customization.py,Add fields to forms.,Formalarga joy qo'shing. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Ushbu saytning PayPal konfiguratsiyasida biror narsa noto'g'ri. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Sharh qo'shish +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} sizga {1} {2} yangi vazifani yukladi apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Shrift hajmi (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Faqat Custom DocTypes-ni Customize Form-dan moslashtirish mumkin. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,8 +1435,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menyu elementi apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Filtrlarni o'rnating DocType: Contact Us Settings,Email ID,Email identifikatori DocType: Energy Point Rule,Multiplier Field,Multiplier maydoni +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Razorpay buyurtmasini yaratib bo'lmadi. Ma'mur bilan bog'laning DocType: Dashboard Chart,Time Interval,Vaqt oralig'i DocType: Activity Log,Keep track of all update feeds,Barcha yangilash yangiliklarini kuzatib boring +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} siz bilan {1} {2} hujjatni o'rtoqlashdi DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,"Mijozlar ilovasi foydalanuvchi ruxsat berganidan keyin unga kirish imkoniyatiga ega bo'lgan resurslar ro'yxati. <br> masalan, loyiha" DocType: Translation,Translated Text,Tarjima qilingan matn DocType: Contact Us Settings,Query Options,So'rov parametrlari @@ -1398,6 +1457,7 @@ DocType: DefaultValue,Key,Kalit DocType: Address,Contacts,Kontaktlar DocType: System Settings,Setup Complete,O'rnatish tugallandi apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Hujjatning barcha aktsiyalari haqida hisobot +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Import shablonlari .csv, .xlsx yoki .xls turida bo'lishi kerak" apps/frappe/frappe/www/update-password.html,New Password,Yangi Parol apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtr {0} yo'q apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Kechirasiz! Avtomatik yaratilgan fikrlarni o'chirib bo'lmaydi @@ -1413,6 +1473,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,FavIcon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Yugurish DocType: Blog Post,Content (HTML),Tarkib (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,O'rnatish uchun DocType: Personal Data Download Request,User Name,Foydalanuvchi ismi DocType: Workflow State,minus-sign,manfiy belgisi apps/frappe/frappe/public/js/frappe/request.js,Not Found,Topilmadi @@ -1420,11 +1481,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,{0} ruxsat yo'q apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Maxsus ruxsatnomalarni eksport qilish apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Hech qanday mahsulot topilmadi. DocType: Data Export,Fields Multicheck,Maydonlar Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Tugallandi DocType: Activity Log,Login,Kirish DocType: Web Form,Payments,To'lovlar apps/frappe/frappe/www/qrcode.html,Hi {0},Salom {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google Drive integratsiyasi. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} {1} {2} ga ochkoingizni qaytarib berdi. DocType: System Settings,Enable Scheduled Jobs,Jadvaldagi ishlarni yoqish apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Eslatmalar: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Faol emas @@ -1449,6 +1510,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Umumiy apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Ruxsat usuli apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0} nomi {1} bo'lishi mumkin emas DocType: User Permission,Applicable For,Qo'llaniladigan +DocType: Dashboard Chart,From Date,Sana bo'yicha apps/frappe/frappe/core/doctype/version/version_view.html,Success,Muvaffaqiyat apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Seans muddati tugadi DocType: Kanban Board Column,Kanban Board Column,Kanban boshqaruv ustuni @@ -1460,7 +1522,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Muv apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; holatda ruxsat berilmaydi DocType: Async Task,Async Task,Async vazifasi DocType: Workflow State,picture,rasm -apps/frappe/frappe/www/complete_signup.html,Complete,To'ldiring +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,To'ldiring DocType: DocType,Image Field,Rasm maydoni DocType: Print Format,Custom HTML Help,Maxsus HTML yordami DocType: LDAP Settings,Default Role on Creation,Yaratilishdagi odatiy rol @@ -1468,6 +1530,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,Keyingi davlat DocType: User,Block Modules,Bloklarni bloklash DocType: Print Format,Custom CSS,Maxsus CSS +DocType: Energy Point Rule,Apply Only Once,Faqat bir marta murojaat qiling apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Fikr qo'shish DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},E'tibor berilmadi: {0} dan {1} ga @@ -1479,6 +1542,7 @@ DocType: Email Account,Default Incoming,Standart kirish DocType: Workflow State,repeat,takrorlang DocType: Website Settings,Banner,Banner apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Qiymat {0} dan biri bo‘lishi kerak +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Barcha hujjatlarni bekor qilish DocType: Role,"If disabled, this role will be removed from all users.","Agar o'chirib qo'yilgan bo'lsa, unda barcha foydalanuvchilar o'chiriladi." apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} ro'yxatiga o'ting apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Qidiruv bo'yicha yordam @@ -1487,6 +1551,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Ro'yxa apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ushbu hujjat uchun Avtomatik takrorlash o'chirilgan. DocType: DocType,Hide Copy,Nusxani yashirish apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Barcha rollarni tozalang +DocType: Server Script,Before Save,Saqlashdan oldin apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} noyob bo'lishi kerak apps/frappe/frappe/model/base_document.py,Row,Roy apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","CC, BCC va Email shablonini" @@ -1497,7 +1562,6 @@ DocType: Chat Profile,Offline,Oflayn apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} muvaffaqiyatli import qilindi DocType: User,API Key,API kaliti DocType: Email Account,Send unsubscribe message in email,E-pochtaga obunani bekor qilish xabarini yuboring -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Sarlavha tahrir apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Domen nomi bu bog'lanish uchun DocType bo'ladi. apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,Sizga va siz tomoningizdan tayinlangan hujjatlar. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,"Bundan tashqari, siz nusxa ko'chirishingiz mumkin" @@ -1529,8 +1593,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Rasm qo'shish DocType: Workflow State,list-alt,ro'yxat-alt apps/frappe/frappe/www/update-password.html,Password Updated,Parol yangilandi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kirishingizni tasdiqlash bo'yicha qadamlar apps/frappe/frappe/utils/password.py,Password not found,Parol topilmadi +DocType: Webhook,Webhook Secret,Webhook siri DocType: Data Migration Mapping,Page Length,Sahifa uzunligi DocType: Email Queue,Expose Recipients,Qabul qiluvchilarni namoyish qiling apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Qabul qilish xabarlari uchun majburiydir @@ -1558,6 +1624,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,Tizim DocType: Web Form,Max Attachment Size (in MB),Maksimal qo'shish kattaligi (MB da) apps/frappe/frappe/www/login.html,Have an account? Login,Hisob bormi? Kirish +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Sozlamalarni chop etish ... DocType: Workflow State,arrow-down,pastga-pastga apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} qator apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Foydalanuvchining {0} o'chirib tashlashga ruxsat berilmagan: {1} @@ -1578,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Parolingi DocType: Dropbox Settings,Dropbox Access Secret,Dropboxga kirish maxfiyligi DocType: Tag Link,Document Title,Hujjat nomi apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Majburiy) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin DocType: Social Login Key,Social Login Provider,Ijtimoiy kirish provayder apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Boshqa izoh qo'shing apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Faylda hech qanday ma'lumot topilmadi. Yangi faylni ma'lumotlar bilan qayta joylang. @@ -1592,11 +1660,12 @@ DocType: Workflow State,hand-down,qo'lni pastga tushirish apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Kanban ustuni sifatida ishlatilishi mumkin bo'lgan maydonlar topilmadi. "Tanlash" turidagi maxsus maydonni qo'shish uchun Customize Formasidan foydalaning. DocType: Address,GST State,GST davlati apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0}: Yuborilmasdan Bekor qilishni o'rnatib bo'lmadi +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),Foydalanuvchi ({0}) DocType: Website Theme,Theme,Mavzu DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI kodini tekshirish uchun yo'naltirish apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Yordamni oching DocType: DocType,Is Submittable,Submittable mavjud -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Yangi marosim +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Yangi marosim apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Yangi Google Kontaktlar sinxronlanmadi. DocType: File,Uploaded To Google Drive,Google Drive-ga yuklandi apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,Tekshirish maydonining qiymati 0 yoki 1 bo'lishi mumkin @@ -1607,7 +1676,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,Namunali seriya majbu DocType: Workflow State,Inbox,Kirish qutisi DocType: Kanban Board Column,Red,Qizil rangli DocType: Workflow State,Tag,Yorliq -DocType: Custom Script,Script,Skript +DocType: Report,Script,Skript apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Hujjat saqlab bo'lmaydigan. DocType: Energy Point Rule,Maximum Points,Maksimal ball apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mening sozlamalarim @@ -1637,9 +1706,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} {1} {2} uchun ballar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Foydalanuvchilar uchun foydalanuvchi sahifalari roli belgilanishi mumkin. apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,Izoh qo'shish +DocType: Dashboard Chart,Select Date Range,Sana oralig'ini tanlang DocType: DocField,Mandatory,Majburiy apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moduli eksport qilish +DocType: Scheduled Job Type,Monthly Long,Oylik uzun apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Asosiy ruxsatnomalar o'rnatilmagan +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Bu yerga bog'lash uchun {0} ga elektron pochta xabarini yuboring apps/frappe/frappe/utils/backups.py,Download link for your backup will be emailed on the following email address: {0},Zaxirangiz uchun yuklab olish uchun link quyidagi elektron pochta manziliga yuboriladi: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Meaning of Submit, Cancel, Amend","Yuborishning ma'nosi, Bekor qilish, o'zgartirish" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Qilmoq @@ -1648,7 +1720,6 @@ DocType: Milestone Tracker,Track milestones for any document,Har qanday hujjat u DocType: Social Login Key,Identity Details,Identifikatsiya ma'lumotlari apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},{0} dan {1} ga ish oqimi holatiga o'tish mumkin emas apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Asboblar panelini ko'rsatish -apps/frappe/frappe/desk/form/assign_to.py,New Message,Yangi xabar DocType: File,Preview HTML,HTMLni oldindan ko'rish DocType: Desktop Icon,query-report,so'rov-hisobot DocType: Data Import Beta,Template Warnings,Andoza ogohlantirishlari @@ -1659,18 +1730,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Bilan bog apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Avtomatik E-pochta hisoboti sozlamalarini tahrirlash DocType: Chat Room,Message Count,Xabarlar soni DocType: Workflow State,book,kitob +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} quyidagi hujjatlar bilan bog'langan: {2} DocType: Communication,Read by Recipient,Qabul qiluvchi tomonidan o'qildi DocType: Website Settings,Landing Page,Ochilish sahifasi apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Maxsus skriptda xato apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Ism apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ushbu mezon uchun ruxsat yo'q. DocType: Auto Email Report,Auto Email Report,Avtomatik e-pochta hisoboti +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Yangi hujjat almashildi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Fikr o'chirib tashlansinmi? DocType: Address Template,This format is used if country specific format is not found,"Ushbu format, mamlakatga xos formati topilmasa ishlatiladi" DocType: System Settings,Allow Login using Mobile Number,Mobil raqamdan foydalanib kirishga ruxsat berish apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,Ushbu resursga kirish uchun sizda yetarli huquqlar yo'q. Kirish uchun menejerga murojaat qiling. DocType: Custom Field,Custom,Maxsus DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Agar yoqilgan bo'lsa, cheklangan IP-manzildan kirgan foydalanuvchilar ikkita Factor Auth uchun so'ralmaydi" +DocType: Server Script,After Cancel,Bekor qilishdan keyin DocType: Auto Repeat,Get Contacts,Kontaktlarni oling apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} da berilgan xabarlar apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Nomsiz ustunni o'tkazib yuborish @@ -1681,6 +1755,7 @@ DocType: User,Login After,Keyin kirish DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Bosib chiqarish DocType: Workflow State,thumbs-up,Barakalla +DocType: Notification Log,Mention,Zikr DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Shriftlar apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Precision 1 va 6 orasida bo'lishi kerak @@ -1688,7 +1763,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,va apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Ushbu hisobot {0} da ishlab chiqarilgan DocType: Error Snapshot,Frames,Ramkalar -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tayinlangan +DocType: Notification Log,Assignment,Tayinlangan DocType: Notification,Slack Channel,Slack Channel DocType: About Us Team Member,Image Link,Rasm aloqasi DocType: Auto Email Report,Report Filters,Hisobotlarni filtrlash @@ -1705,7 +1780,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Voqeani yangilab bo'lmadi apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Tasdiqlangan kod sizning ro'yxatdan o'tgan elektron pochta manzilingizga yuborildi. apps/frappe/frappe/core/doctype/user/user.py,Throttled,To'satdan +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Sizning maqsadingiz apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Filtrda 4 ta qiymat bo'lishi kerak (doctype, fieldname, operator, value): {0}" +apps/frappe/frappe/model/naming.py,No Name Specified for {0},{0} uchun hech qanday nom ko'rsatilmagan apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Topshiriq qoidasini qo'llang apps/frappe/frappe/utils/bot.py,show,ko'rsatish apps/frappe/frappe/utils/data.py,Invalid field name {0},Joy nomeri {0} noto'g'ri @@ -1715,7 +1792,6 @@ DocType: Workflow State,text-height,matn balandligi DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Ma'lumotlarni ko'chirish rejasini xaritalash apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Frappe boshlanmoqda ... DocType: Web Form Field,Max Length,Maksimal uzunligi -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},{0} {1} uchun DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,xarita belgisi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Muammo berish @@ -1751,6 +1827,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Sahifa etishmayotgan yoki apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Sharhlar DocType: DocType,Route,Yo'nalish apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay To'lov shlyuzi sozlamalari +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} {2} {3} uchun {1} ball to'pladi apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Belgilangan rasmlarni hujjat bilan qabul qiling DocType: Chat Room,Name,Ism DocType: Contact Us Settings,Skype,Skype @@ -1761,7 +1838,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Linkni ochin apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Tilingiz DocType: Dashboard Chart,Average,O'rtacha apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Roy qo'shish -DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Printer apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,So'rov SELECT bo'lishi kerak DocType: Auto Repeat,Completed,Tugallandi @@ -1821,6 +1897,7 @@ DocType: GCalendar Account,Next Sync Token,Keyingi Sync Token DocType: Energy Point Settings,Energy Point Settings,Energiya nuqtasini sozlash DocType: Async Task,Succeeded,Muvaffaqiyatli bo'ldi apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} da majburiy maydonlar kerak +DocType: Onboarding Slide Field,Align,Hizalang apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} uchun ruxsatni qayta tiklash? apps/frappe/frappe/config/desktop.py,Users and Permissions,Foydalanuvchilar va ruxsatnomalar DocType: S3 Backup Settings,S3 Backup Settings,S3 Zahiralash sozlamalari @@ -1837,7 +1914,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Chop etish formatining yangi nomi apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,So'rovni tasdiqlash uchun quyidagi havolani bosing DocType: Workflow State,align-left,align-left +DocType: Onboarding Slide,Action Settings,Harakat sozlamalari DocType: User,Defaults,Standartlar +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Taqqoslash uchun> 5, <10 yoki = 324 dan foydalaning. Diapazon uchun 5:10 dan foydalaning (5 va 10 orasidagi qiymatlar uchun)." DocType: Energy Point Log,Revert Of,Qaytarish apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mavjud bilan birlashtirilsin DocType: User,Birth Date,Tug'ilgan sana @@ -1892,6 +1971,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,Qiymat o'zgarishi DocType: Google Contacts,Authorize Google Contacts Access,Google Kontaktlarga kirishga ruxsat bering apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hisobotdagi faqat raqamli maydonlarni ko'rsatish +apps/frappe/frappe/utils/data.py,1 week ago,1 hafta oldin DocType: Data Import Beta,Import Type,Import turi DocType: Access Log,HTML Page,HTML sahifasi DocType: Address,Subsidiary,Sho'ba korxonasi @@ -1901,7 +1981,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Antetli harflar bilan apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Chiquvchi pochta-server yoki port noto'g'ri DocType: Custom DocPerm,Write,Yozing -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Faqat Administrator so'rovlar / skriptlar hisobotlarini yaratishga ruxsat berildi apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Yangilanmoqda DocType: Data Import Beta,Preview,Ko'rib chiqish apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Maydoni "qiymat" majburiydir. Yangilanadigan qiymatni ko'rsating @@ -1911,6 +1990,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Foydalanuv DocType: Data Migration Run,Started,Boshlandi apps/frappe/frappe/permissions.py,User {0} does not have access to this document,{0} foydalanuvchisi ushbu hujjatga kirish huquqiga ega emas DocType: Data Migration Run,End Time,Tugash vaqti +DocType: Dashboard Chart,Group By Based On,Asoslangan guruh apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Qo'shilganlar-ni tanlang apps/frappe/frappe/model/naming.py, for {0},{0} uchun apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Ushbu hujjatni chop etishga ruxsat yo'q @@ -1952,6 +2032,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Tasdiqlang DocType: Workflow Document State,Update Field,Yangilash maydonchasi DocType: Chat Profile,Enable Chat,Chatni yoqish DocType: LDAP Settings,Base Distinguished Name (DN),Asosiy ajratuvchi ism (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Ushbu suhbatni qoldiring apps/frappe/frappe/model/base_document.py,Options not set for link field {0},{0} havola maydoniga o'rnatilmagan imkoniyatlar apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,Navbat / ishchi @@ -2018,12 +2099,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Bu vaqtda kirish uchun ruxsat berilmaydi DocType: Data Migration Run,Current Mapping Action,Joriy xaritalash harakati DocType: Dashboard Chart Source,Source Name,Manba nomi -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Foydalanuvchi bilan bog'langan elektron pochta hisobi yo'q. Iltimos, foydalanuvchi> Elektron pochta qutisi ostida hisob qaydnomasini qo'shing." DocType: Email Account,Email Sync Option,Elektron pochtani sinxronlashtirish opsiyasi apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Roy № DocType: Async Task,Runtime,Ish vaqti DocType: Post,Is Pinned,Yig'ilgan DocType: Contact Us Settings,Introduction,Kirish +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Yordam kerak? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Dunyo bo'ylab pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Dan so'ng DocType: LDAP Settings,LDAP Email Field,LDAP elektron pochta manzili @@ -2033,7 +2114,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Siz allaq DocType: User Email,Enable Outgoing,Chiqishni yoqish DocType: Address,Fax,Faks apps/frappe/frappe/config/customization.py,Custom Tags,Maxsus teglar -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Elektron pochta qayd hisobi sozlanmadi. Iltimos, sozlash> Elektron pochta> Elektron pochta qayd hisobi orqali yangi elektron pochta qayd yozuvini yarating" DocType: Comment,Submitted,Taklif qilingan DocType: Contact,Pulled from Google Contacts,Google Contacts-dan tortib olindi apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Qabul qilingan so'rovda @@ -2054,9 +2134,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Bosh sahifa apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Menga topshiring DocType: DocField,Dynamic Link,Dynamic Link apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Menyu va yon panelda qo'shimcha yorliqlarni ishga tushirish uchun Alt tugmachasini bosing +DocType: Dashboard Chart,To Date,Hozirgi kungacha DocType: List View Setting,List View Setting,Ro'yxat ko'rinishini sozlash apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Muvaffaqiyatsiz ishlarni ko'rsatish -DocType: Event,Details,Batafsil +DocType: Scheduled Job Log,Details,Batafsil DocType: Property Setter,DocType or Field,DocType yoki Field apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Siz ushbu hujjatni bekor qildingiz apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Birlamchi rang @@ -2064,7 +2145,6 @@ DocType: Communication,Soft-Bounced,Yumshoq tus oldi DocType: System Settings,"If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page","Agar yoqilsa, barcha foydalanuvchilar ikkita omildan foydalangan holda har qanday IP-manzildan kirishlari mumkin. Bu faqat foydalanuvchi sahifasida muayyan foydalanuvchi (lar) uchun o'rnatilishi mumkin" apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,Nashr etilgan kaliti yoki maxfiy kalit noto'g'ri deb o'ylaydi !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,Ruxsatlar o'rnatish uchun tez yordam -DocType: Tag Doc Category,Doctype to Assign Tags,Teglar tayinlash uchun doctype apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Relapslarni ko'rsating apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,E-pochta zaxiraga o'tkazildi DocType: Report,Report Builder,Report Builder @@ -2079,6 +2159,7 @@ DocType: Workflow State,Upload,Yuklash DocType: User Permission,Advanced Control,Murakkab boshqaruv DocType: System Settings,Date Format,Sana formati apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nashr qilinmadi +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Birlamchi manzil shabloni topilmadi. Iltimos, sozlash> Bosib chiqarish va markalash> Manzil shablonidan yangisini yarating." apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Ish yuritish uchun harakatlar (masalan, Tasdiqlash, Bekor qilish)." DocType: Data Import,Skip rows with errors,Xatlardagi satrlarni o'tkazib yuborish DocType: Workflow State,flag,bayroq @@ -2088,7 +2169,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Hujj apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Maydonga o'ting DocType: Contact Us Settings,Forward To Email Address,E-pochta manziliga yo'naltirish DocType: Contact Phone,Is Primary Phone,Bu asosiy telefon -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Bu yerga bog'lash uchun {0} ga elektron pochta xabarini yuboring. DocType: Auto Email Report,Weekdays,Hafta kunlari apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} yozuvlar eksport qilinadi apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Sarlavha maydoni tegishli maydon nomi bo'lishi kerak @@ -2096,7 +2176,7 @@ DocType: Post Comment,Post Comment,Fikr qoldiring apps/frappe/frappe/config/core.py,Documents,Hujjatlar apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Faoliyat jurnali DocType: Social Login Key,Custom Base URL,Custom Base URL -DocType: Email Flag Queue,Is Completed,Tugallangan +DocType: Onboarding Slide,Is Completed,Tugallangan apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Maydonlarni oling apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Profilni tahrirlash DocType: Kanban Board Column,Archived,Arxivlangan @@ -2107,11 +2187,12 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",Bu maydon faqat bu erda ko'rsatilgan maydon nomiga qiymat yoki qoidalar haqiqiy (misollar) bo'lsa paydo bo'ladi: myfield eval: doc.myfield == 'Mening qiymatim' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Bugun +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Bugun apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Siz buni o'rnatganingizdan so'ng, foydalanuvchilar faqatgina link mavjud bo'lgan hujjatlarga (masalan, Blog Post) kirish imkoniyatiga ega bo'ladi (masalan, Blogger)." DocType: Data Import Beta,Submit After Import,Import qilinganidan keyin yuborish DocType: Error Log,Log of Scheduler Errors,Jadvaldagi xatolar ro'yxati DocType: User,Bio,Bio +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,Bortli slayd yordami havolasi DocType: OAuth Client,App Client Secret,Ilova mijoz sirlari apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Yuborish apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Ota-ona ma'lumotlar kiritiladigan hujjatning nomi. @@ -2119,7 +2200,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,Yuqori holat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Maxsus HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Jildning nomini kiriting -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Birlamchi manzil shabloni topilmadi. Iltimos, sozlash> Bosib chiqarish va markalash> Manzil shablonidan yangisini yarating." apps/frappe/frappe/auth.py,Unknown User,Noma'lum foydalanuvchi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Rolni tanlang DocType: Comment,Deleted,O'chirilgan @@ -2135,7 +2215,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Grafik yarating apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Import qilmang -DocType: Web Page,Center,Markaziy +DocType: Onboarding Slide Field,Center,Markaziy DocType: Notification,Value To Be Set,Qiymati belgilanadi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} tahrirlash apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Birinchi daraja @@ -2143,7 +2223,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Ma'lumotlar bazasi nomi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Yangilash formasini DocType: DocField,Select,Tanlang -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,To'liq jurnalni ko'rish +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,To'liq jurnalni ko'rish DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Oddiy Python iborasi, masalan: status == 'Ochish' va == 'Bug' deb yozing." apps/frappe/frappe/utils/csvutils.py,File not attached,Fayl biriktirilmagan apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Aloqa yo'qoldi. Ba'zi xususiyatlar ishlamasligi mumkin. @@ -2174,6 +2254,7 @@ DocType: Web Page,HTML for header section. Optional,Header bo'limi uchun HTM apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,Bu xususiyat yangi va hali eksperimentaldir apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,Eng ko'p {0} qator ruxsat berilgan DocType: Dashboard Chart Link,Chart,Grafika +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Global obunani bekor qilish apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Bu juda keng tarqalgan parol. apps/frappe/frappe/email/doctype/email_group/email_group.js,View,Ko'rish @@ -2190,6 +2271,7 @@ DocType: Data Migration Connector,Hostname,Hostname DocType: Data Migration Mapping,Condition Detail,Ahvol batafsil apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",Pul uchun {0} uchun eng kam bitim miqdori {1} DocType: DocField,Print Hide,Chop etish uchun yashirish +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Foydalanuvchi uchun apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Qiymatni kiriting DocType: Workflow State,tint,ranglar @@ -2256,6 +2338,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kirishni teksh apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Bunga qo'shish DocType: Footer Item,Company,Kompaniya apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},O'rtacha {0} +DocType: Scheduled Job Log,Scheduled,Rejalashtirilgan DocType: User,Logout from all devices while changing Password,Parol o'zgartirilayotganda barcha qurilmalardan chiqish apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Parolni tasdiqlang apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Xatolar bor edi @@ -2281,7 +2364,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Foydalanuvchi ruxsati allaqachon mavjud apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} ustunini {1} maydoniga solishtirish apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} ko'rinishi -DocType: User,Hourly,Soat +DocType: Scheduled Job Type,Hourly,Soat apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth mijoz ilovasini ro'yxatdan o'tkazing DocType: DocField,Fetch If Empty,"Bo'sh bo'lsa, olish" DocType: Data Migration Connector,Authentication Credentials,Hisobga olish haqiqiyligini tekshirish ma'lumotlari @@ -2292,10 +2375,10 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL manzili apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" bo'lishi mumkin emas. Bu "{3}" dan biri bo'lishi kerak apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{1} avtomatik qoida orqali {0} tomonidan qo'lga kiritildi apps/frappe/frappe/utils/data.py,{0} or {1},{0} yoki {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Hammasi sozlangan! DocType: Workflow State,trash,axlat DocType: System Settings,Older backups will be automatically deleted,Eski zaxiralashlar avtomatik ravishda o'chirib tashlanadi apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Noto'g'ri kirish kalit identifikatori yoki maxfiy kirish tugmachasi. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Siz ba'zi energiya nuqtalarini yo'qotdingiz DocType: Post,Is Globally Pinned,Umuman olqishlar apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,So'nggi faoliyat DocType: Workflow Transition,Conditions,Shartlar @@ -2304,6 +2387,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Tasdiqlangan DocType: Event,Ends on,Tugadi DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Server sertifikatiga yo'l +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Brauzeringizda Javascript o'chirilgan apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Ulanishlarni ko'rish uchun etarli ruxsat yo'q apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Manzil sarlavhasi majburiydir. DocType: Google Contacts,Push to Google Contacts,Google Contacts-ga bosing @@ -2322,7 +2406,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-g'arbiy-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Agar bu belgilansa, joriy ma'lumotlarga ega bo'lgan qatorlar import qilinadi va keyinroq import qilish uchun bekor qilingan qatorlar yangi faylga tashlanadi." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Hujjat faqatgina foydalanuvchilar tomonidan tahrir qilinadi -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.",{1} ga tayinlangan {0} vazifasi {2} tomonidan yopildi. DocType: Print Format,Show Line Breaks after Sections,Bo'limlardan keyin chiziqli signallarni ko'rsatish DocType: Communication,Read by Recipient On,Qabul qiluvchining On tomonidan o'qing DocType: Blogger,Short Name,Qisqa ism @@ -2354,6 +2437,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Assign,Belg DocType: Translation,PR sent,PR yuborildi DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Oxirgi X soatida Yangilangan Records yuborish DocType: Communication,Feedback,Fikr-mulohaza +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Yangi versiyaga yangilandi 🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Tarjimani oching apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Ushbu e-pochta autentifikatsiyalangan DocType: Workflow State,Icon will appear on the button,Icon tugmachada paydo bo'ladi @@ -2392,6 +2476,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,sahifa top DocType: DocField,Precision,Nozik DocType: Website Slideshow,Slideshow Items,Slayd-shou buyumlari apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Takroriy so'zlar va belgilardan qochishga harakat qiling +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Bildirishnomalar o'chirilgan +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Haqiqatan ham barcha qatorlarni yo'q qilmoqchimisiz? DocType: Workflow Action,Workflow State,Ish oqimining holati apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Qatorlar qo'shilgan apps/frappe/frappe/www/list.py,My Account,Mening hisobim @@ -2400,6 +2486,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,Kunlardan keyin apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ laganda ulanishi faol! DocType: Contact Us Settings,Settings for Contact Us Page,Biz bilan bog'lanish uchun sozlamalar +DocType: Server Script,Script Type,Skript turi DocType: Print Settings,Enable Print Server,Chop etish serverini yoqish apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0} hafta oldin DocType: Email Account,Footer,Olmashlar @@ -2425,8 +2512,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Ogohlantirish apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Bu bir nechta sahifada chop etilishi mumkin DocType: Data Migration Run,Percent Complete,Foiz to'liq -DocType: Tag Category,Tag Category,Yorliq kategoriyasi -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Taqqoslash uchun> 5, <10 yoki = 324 dan foydalaning. O'lchovlar uchun 5:10 dan foydalaning (5 va 10 orasidagi qiymatlar uchun)." DocType: Google Calendar,Pull from Google Calendar,Google Calendar-dan tortib oling apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Yordam bering DocType: User,Login Before,Avval kirish @@ -2436,17 +2521,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Haftaning kunlarini yashirish apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Avtomatik ravishda takrorlanadigan hujjatlarni yaratadi. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Bu +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,info-belgisi apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} uchun qiymat bir ro'yxat bo'la olmaydi DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Ushbu pul qanday shakllantirilishi kerak? Agar sozlanmagan bo'lsa, tizimdagi standartlarni ishlatadi" apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} hujjatlarni yuborish kerakmi? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Zaxiraga ega bo'lish uchun siz tizimga kirishingiz va tizim boshqaruvchisi rolini bajarishingiz kerak. +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ Tray dasturiga ulanishda xato ... <br><br> Raw Print xususiyatidan foydalanish uchun sizga QZ Tray ilovasi o'rnatilishi va ishlashi kerak. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ Trayni yuklab olish va o'rnatish uchun shu erni bosing</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Xom bosma haqida ko'proq ma'lumot olish uchun bu erni bosing</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printer xaritasi apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Iltimos, biriktirishdan oldin saqlang." +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Barcha bog'langan hujjatlarni bekor qilmoqchimisiz? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Qo'shilgan {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Maydon turini {2} qatordan {0} dan {1} ga o'zgartirish mumkin emas. apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,Ishtirok huquqi DocType: Help Article,Intermediate,O'rta darajada +apps/frappe/frappe/config/settings.py,Email / Notifications,Elektron pochta / bildirishnomalar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} ni {2} ga o'zgartirdi apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Bekor qilingan hujjat loyiha sifatida qayta tiklandi DocType: Data Migration Run,Start Time,Boshlanish vaqti @@ -2463,6 +2552,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,Is apps/frappe/frappe/email/smtp.py,Invalid recipient address,Qabul qiluvchining manzili noto'g'ri DocType: Workflow State,step-forward,qadam oldinga DocType: System Settings,Allow Login After Fail,Kirishdan so'ng kirishga ruxsat berish +DocType: DocType Link,DocType Link,DocType aloqasi DocType: Role Permission for Page and Report,Set Role For,Rolni o'rnating DocType: GCalendar Account,The name that will appear in Google Calendar,Google Taqvimda ko'rinadigan ism apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} bilan to'g'ridan-to'g'ri xona mavjud. @@ -2479,6 +2569,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Yangi {0} DocType: Contact,Google Contacts,Google Kontaktlari DocType: GCalendar Account,GCalendar Account,GCalendar hisobi DocType: Email Rule,Is Spam,Spammi? +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Oxiri apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Hisobot {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0} oching DocType: Data Import Beta,Import Warnings,Import haqida ogohlantirishlar @@ -2490,6 +2581,7 @@ DocType: Workflow State,ok-sign,OK-belgisi apps/frappe/frappe/config/settings.py,Deleted Documents,O'chirilgan hujjatlar apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formati katta-kichikligi sezgir apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Stol belgisi allaqachon mavjud +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Slaydlar qanday domenlar ko'rsatilishini belgilang. Hech narsa ko'rsatilmagan bo'lsa, slayd barcha domenlarda sukut bo'yicha ko'rsatiladi." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: {2} qatoridagi {1} maydonchasi odatiy holisiz yashirin va majburiy bo'lishi mumkin emas DocType: Newsletter,Create and Send Newsletters,Xabarlarni yaratish va yuborish @@ -2500,6 +2592,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google Calendar Event ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","Ota-ona" ushbu satrni qo'shish kerak bo'lgan ota-jadvalni bildiradi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Ko'rib chiqish nuqtalari: +DocType: Scheduled Job Log,Scheduled Job Log,Rejalashtirilgan ish jurnali +DocType: Server Script,Before Delete,O'chirishdan oldin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Bilan birgalikda apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Fayllarni / urllarni qo'shing va jadvalga qo'shing. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Xabar sozlanmagan @@ -2522,19 +2616,21 @@ apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py DocType: About Us Settings,Settings for the About Us Page,Biz haqimizda haqida sozlamalar apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe to'lov shluzi sozlamalari apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Chop etish uchun printerga yuborildi! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Energiya punktlari +DocType: Notification Settings,Energy Points,Energiya punktlari +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Vaqt {0} formatda bo'lishi kerak: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,"masalan, pop.gmail.com / imap.gmail.com" DocType: User,Generate Keys,Kalitlarni yaratish apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Bu ma'lumotlaringizni butunlay yo'q qiladi. DocType: DocType,View Settings,Sozlamalarni ko'rish +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Yangi bildirishnoma DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Talabning tuzilishi +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Kontroller usuli get_razorpay_order mavjud emas DocType: Personal Data Deletion Request,Pending Verification,Tasdiqlash kutilmoqda DocType: Website Meta Tag,Website Meta Tag,Meta Tag veb-sayti DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Standart bo'lmagan port (masalan, 587). Agar "Google Cloud" xizmatida 2525 portini sinab ko'ring." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",Nashr qilingan sahifalar uchun o'tmishda bo'lishi mumkin bo'lmaganligi uchun tugatish sanasini tozalab turish. DocType: User,Send Me A Copy of Outgoing Emails,Menga yuborilgan elektron pochta xabarlarining nusxasini yuboring -DocType: System Settings,Scheduler Last Event,Vaqtinchalik reja DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google Analytics ID raqamini qo'shing: masalan. UA-89XXX57-1. Qo'shimcha ma'lumot uchun Google Analytics-da yordam so'rang. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Parol 100 belgidan oshmasligi kerak DocType: OAuth Client,App Client ID,Ilova mijoz identifikatori @@ -2563,6 +2659,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Yangi parol k apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ushbu hujjatni {1} DocType: Website Settings,Brand Image,Tovar belgisi DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Import shablonida bitta satr sarlavhasi va atleast bo'lishi kerak. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google taqvimi sozlangan. apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.","Yuqori navigatsiya satrini, altbilgiyi va logotipni sozlash." DocType: Web Form Field,Max Value,Maksimal qiymat @@ -2571,6 +2668,7 @@ DocType: Auto Repeat,Preview Message,Xabarni oldindan ko'rish DocType: User Social Login,User Social Login,Foydalanuvchining ijtimoiy kirish DocType: Contact,All,Hammasi DocType: Email Queue,Recipient,Qabul qiluvchi +DocType: Webhook,Webhook Security,Veb xavfsizligi DocType: Communication,Has Attachment,Attachaga ega DocType: Address,Sales User,Savdo foydalanuvchisi apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Bosib chiqarish formatlarini yaratish va sozlash uchun asbobni sudrab olib tashlash. @@ -2637,7 +2735,6 @@ DocType: Data Migration Mapping,Migration ID Field,Migratsiya ID maydoni DocType: Dashboard Chart,Last Synced On,So‘nggi sinxronlash yoqilgan DocType: Comment,Comment Type,Fikr turi DocType: OAuth Client,OAuth Client,OAuth mijozi -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} {1} {2} dagi ishingizni tanqid qildi DocType: Assignment Rule,Users,Foydalanuvchilar DocType: Address,Odisha,Odisha DocType: Report,Report Type,Hisobot turi @@ -2662,14 +2759,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Sayt Slaydshou Mavzu apps/frappe/frappe/model/workflow.py,Self approval is not allowed,O'z-o'zidan rozilik berilmaydi DocType: GSuite Templates,Template ID,Andoza identifikatori apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Grant turi ( <code>{0}</code> ) va Response Type ( <code>{1}</code> ) ning birikmasiga ruxsat berilmaydi -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},{0} dan yangi xabar DocType: Portal Settings,Default Role at Time of Signup,Ro'yxatdan o'tish vaqtida standart rol DocType: DocType,Title Case,Title Case apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Ma'lumotlaringizni yuklab olish uchun quyidagi havolani bosing apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},{0} foydalanuvchisi uchun elektron pochta xabarlarini yoqish DocType: Data Migration Run,Data Migration Run,Ma'lumotni ko'chirishga o'tish DocType: Blog Post,Email Sent,E-pochta yuborildi -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Keksa DocType: DocField,Ignore XSS Filter,XSS Filtrini e'tiborsiz qoldiring apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,o'chirildi apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox zahiralash sozlamalari @@ -2724,6 +2819,7 @@ DocType: Async Task,Queued,Navbatga qo'yildi DocType: Braintree Settings,Use Sandbox,Sandboxdan foydalaning apps/frappe/frappe/utils/goal.py,This month,Shu oy apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Yangi maxsus chop formati +DocType: Server Script,Before Save (Submitted Document),Saqlashdan oldin (taqdim etilgan hujjat) DocType: Custom DocPerm,Create,Yarating apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Ko‘rsatish uchun boshqa narsalar yo‘q apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Oldingi yozuvga o'ting @@ -2780,6 +2876,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Chiqindilarni olib tashlash DocType: Web Form,Web Form Fields,Veb formasi Maydonlari DocType: Data Import,Amended From,O'zgartirishlar +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,"Agar foydalanuvchi slaydni qanday to'ldirishni bilmasa, yordam video-havolasini qo'shing." apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},Ogohlantirish: {1} bilan bog'liq har qanday jadvalda {0} topilmadi DocType: S3 Backup Settings,eu-north-1,eu-shimol-1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,"Ushbu hujjat hozircha ijro uchun navbatda. Iltimos, yana bir bor urinib ko'ring" @@ -2801,6 +2898,7 @@ DocType: Blog Post,Blog Post,Blog post DocType: Access Log,Export From,Eksport qilish apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Kengaytirilgan qidiruv apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Axborot byulletenlarini ko`rishingiz mumkin emas. +DocType: Dashboard Chart,Group By,Guruh tomonidan DocType: User,Interests,Qiziqishlar apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Parolni tiklash ko'rsatmalari elektron pochtangizga yuborildi DocType: Energy Point Rule,Allot Points To Assigned Users,Belgilangan foydalanuvchilarga ajratish @@ -2816,6 +2914,7 @@ DocType: Assignment Rule,Assignment Rule,Topshirish qoidalari apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Tavsiya etilgan foydalanuvchi nomi: {0} DocType: Assignment Rule Day,Day,Kun apps/frappe/frappe/public/js/frappe/desk.js,Modules,Moduli +DocType: DocField,Mandatory Depends On,Majburiy bog'liq apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,To'lov muvaffaqiyati apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Hech qanday {0} pochta DocType: OAuth Bearer Token,Revoked,Bekor qilindi @@ -2823,6 +2922,7 @@ DocType: Web Page,Sidebar and Comments,Yon panel va sharhlar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Bekor qilgandan keyin hujjatni o'zgartirsangiz va uni saqlasangiz, eski raqam versiyasi bo'lgan yangi raqamni oladi." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","{0} hujjatni biriktirishga ruxsat berilmadi, iltimos Print Settings'da {0} uchun Chop etish uchun ruxsat berishni yoqing" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Elektron pochta qayd hisobi sozlanmadi. Iltimos, sozlash> Elektron pochta> Elektron pochta hisob qaydnomasidan yangi elektron pochta qayd yozuvini yarating" apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} da hujjatni ko'ring DocType: Stripe Settings,Publishable Key,Nashr etilgan kalit apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Importni boshlang @@ -2836,13 +2936,13 @@ DocType: Currency,Fraction,Fraktsiya apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Google Calendar bilan sinxronlangan tadbir. DocType: LDAP Settings,LDAP First Name Field,LDAP Ism maydoni DocType: Contact,Middle Name,Otasini ismi +DocType: DocField,Property Depends On,Mulk bog'liq DocType: Custom Field,Field Description,Yarim ta'rif apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nomi "Tez so'raladigan" orqali o'rnatilmadi apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Elektron pochta qutisi apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} ning {0} yangilanishi" DocType: Auto Email Report,Filters Display,Filtrlar ko'rsatish apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",O'zgartirish kiritish uchun "amended_from" maydoni bo'lishi kerak. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} {1} {2} dagi ishlaringizni baholadi apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filtrlarni saqlang DocType: Address,Plant,O'simlik apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Hammaga javob bering @@ -2883,11 +2983,11 @@ DocType: Workflow State,folder-close,jildni yopish apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Hisobot: DocType: Print Settings,Print taxes with zero amount,Soliqlarni nolga teng miqdorda chop eting apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} nomi o'zgartirilgan +DocType: Server Script,Before Insert,Qo'shishdan oldin DocType: Custom Script,Custom Script,Maxsus skript DocType: Address,Address Line 2,Manzil yo'nalish 2 DocType: Address,Reference,Malumot apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Tayinlangan -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Iltimos, standart elektron pochta hisob qaydnomasini O'rnatish> Elektron pochta> Elektron pochta hisob qaydnomasini o'rnating" DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Ma'lumotlar Migratsiya xaritalash detali DocType: Data Import,Action,Harakat DocType: GSuite Settings,Script URL,Skript URL manzili @@ -2913,11 +3013,13 @@ DocType: User,Api Access,Api Kirish DocType: DocField,In List View,Ro'yxat ko'rinishida DocType: Email Account,Use TLS,TLS dan foydalaning apps/frappe/frappe/email/smtp.py,Invalid login or password,Parol noto'g'ri +DocType: Scheduled Job Type,Weekly Long,Hafta uzoq apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Andoza yuklab oling apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Formalarga maxsus javascript qo'shing. ,Role Permissions Manager,Rollarni boshqarish menejeri apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Yangi Print Formatining nomi apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Yon panelini almashtirish +DocType: Server Script,After Save (Submitted Document),Saqlashdan keyin (Topshirilgan hujjat) DocType: Data Migration Run,Pull Insert,Qo'shing DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",Ballarni multiplikator qiymati bilan ko'paytirgandan so'ng ruxsat etilgan maksimal ballar (Eslatma: Cheklovsiz bu maydonni bo'sh qoldiring yoki 0 o'rnating) @@ -2937,6 +3039,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP o'rnatilmagan apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ma'lumotlarni yuklab olish apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} uchun o'zgargan qiymatlar +DocType: Server Script,Before Cancel,Bekor qilishdan oldin DocType: Workflow State,hand-right,qo'l-o'ng DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Mintaqa @@ -2982,12 +3085,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,eski parol DocType: S3 Backup Settings,us-east-1,us-sharq-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} tomonidan yuborilgan apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",Ustunlarni formatlash uchun so'rovda ustunlar yorlig'ini bering. +DocType: Onboarding Slide,Slide Fields,Slayd maydonchalari DocType: Has Domain,Has Domain,Domenga ega DocType: User,Allowed In Mentions,Mentiylarda ruxsat berilgan apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hisobingiz yo'qmi? Ro'yxatdan o'tish apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,ID maydonini o'chirib bo'lmadi apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,"{0}: Mavjud emas, agar Assign Assign ni o'rnatib bo'lmadi" DocType: Address,Bihar,Bihar +DocType: Notification Settings,Subscribed Documents,Obuna hujjatlari apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Foydalanuvchi sozlamalari DocType: Report,Reference Report,Ma'lumotnoma DocType: Activity Log,Link DocType,DocType bilan bog'laning @@ -3005,6 +3110,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google Calendar Access apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Siz izlayotgan sahifa etishmayotgan. Buning sababi shundaki, u ko'chiriladi yoki havolada typo mavjud." apps/frappe/frappe/www/404.html,Error Code: {0},Xato kodi: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lug'at sahifasining tavsifi, tekis matnda, faqat bir nechta satr. (maksimal 140 belgi)" +DocType: Server Script,DocType Event,DocType voqeasi apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} - majburiy maydonlar DocType: Workflow,Allow Self Approval,O'zingizni tasdiqlang DocType: Event,Event Category,Voqealar kategoriyasi @@ -3021,6 +3127,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ismingiz apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Ulanish muvaffaqiyati DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slayd turidagi bortli slaydni davom ettirish allaqachon mavjud. DocType: DocType,Default Sort Field,Odatiy saralash maydoni DocType: File,Is Folder,Folder DocType: Document Follow,DocType,DocType @@ -3058,8 +3165,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Qadriya DocType: Workflow State,arrow-up,o'q-up DocType: Dynamic Link,Link Document Type,Hujjat turini bog'lash apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} jadval uchun atreast bitta qator bo'lishi kerak +DocType: Server Script,Server Script,Server skript apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Avtomatik takrorlashni sozlash uchun {0} dan "Avtomatik takrorlashga ruxsat berish" ni yoqing. DocType: OAuth Bearer Token,Expires In,Muddati tugaydi +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Maydonlar to'plamini takrorlashni xohlagan vaqtlar soni (masalan: agar slaydda 3 ta mijoz kerak bo'lsa, ushbu maydonni 3 ga o'rnating. Slaydda faqat maydonlarning birinchi to'plami ko'rsatiladi)." DocType: DocField,Allow on Submit,Yuborishga ruxsat berish DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Istisno turi @@ -3069,6 +3178,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Sarlavhalar apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,Kutilayotgan voqealar apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Ilovaga kirish uchun kalit va ilovaning maxfiy kalitini kiriting +DocType: Email Account,Append Emails to Sent Folder,Elektron pochta xabarlarini yuborilgan jildga qo'shish DocType: Web Form,Accept Payment,To'lovni qabul qilish apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Ro‘yxat bandini tanlang apps/frappe/frappe/config/core.py,A log of request errors,So'rov xatolarining logi @@ -3087,7 +3197,7 @@ DocType: Translation,Contributed,Hissa qo'shgan apps/frappe/frappe/config/customization.py,Form Customization,Shaklni sozlash apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Faol sessiyalar yo'q DocType: Web Form,Route to Success Link,Muvaffaqiyatga yo'nalish aloqasi -DocType: Top Bar Item,Right,To'g'ri +DocType: Onboarding Slide Field,Right,To'g'ri apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Hodisalar yo'q DocType: User,User Type,Foydalanuvchi turi DocType: Prepared Report,Ref Report DocType,DocType hisobotini ko'rsatish @@ -3105,6 +3215,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Iltimos, yana b apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL 'http: //' yoki 'https: //' bilan boshlanishi kerak. apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Variant 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Buni ortga qaytarib bo‘lmaydi DocType: Workflow State,Edit,Tahrirlash DocType: Website Settings,Chat Operators,Chat operatorlari DocType: S3 Backup Settings,ca-central-1,ca-markaziy-1 @@ -3116,7 +3227,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Ushbu shaklda saqlanmagan o'zgarishlar mavjud. Davom etishdan oldin saqlab qo'ying. DocType: Address,Telangana,Telangana apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,{0} uchun standart variant bo'lishi kerak -DocType: Tag Doc Category,Tag Doc Category,Tag hujjat kategoriyasi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,10 dan ortiq ustunlar bilan hisobot Landshaft rejimida yaxshiroq ko'rinadi. apps/frappe/frappe/database/database.py,Invalid field name: {0},Noto‘g‘ri maydon nomi: {0} DocType: Milestone,Milestone,Bosqich @@ -3125,7 +3235,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},{0} ga o'tish apps/frappe/frappe/email/queue.py,Emails are muted,E-pochta xabarlari o'chirilgan apps/frappe/frappe/config/integrations.py,Google Services,Google xizmatlari apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 hafta oldin +DocType: Onboarding Slide,Slide Description,Slayd tavsifi DocType: Communication,Error,Xato apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,"Iltimos, avval xabarni sozlang" DocType: Auto Repeat,End Date,Tugash sanasi @@ -3146,10 +3256,12 @@ DocType: Footer Item,Group Label,Guruh yorlig'i DocType: Kanban Board,Kanban Board,Kanban kengashi apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontaktlar sozlandi. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 yozuv eksport qilinadi +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Foydalanuvchi bilan bog'liq elektron pochta hisobi yo'q. Iltimos, foydalanuvchi> Elektron pochta qutisi ostida hisob qaydnomasini qo'shing." DocType: DocField,Report Hide,Hide hisoboti apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0} uchun daraxt ko'rinishi mavjud emas DocType: DocType,Restrict To Domain,Domen uchun cheklov DocType: Domain,Domain,Domen +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,"Noto‘g‘ri fayl URL manzili. Iltimos, tizim ma'muriga murojaat qiling." DocType: Custom Field,Label Help,Yorliqli yordam DocType: Workflow State,star-empty,yulduz-bo'sh apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Vaqtlarni ko'pincha oson topish mumkin. @@ -3174,6 +3286,7 @@ DocType: Workflow State,hand-left,qo'lda-chapda DocType: Data Import,If you are updating/overwriting already created records.,Agar siz allaqachon yaratilgan yozuvlarni yangilab tursangiz / yozsangiz. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Global DocType: Email Account,Use SSL,SSLdan foydalaning +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,o'ynash doirasi apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Hujjat to'g'ri berilmagan apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression","Depend_on" ifodasi noto'g'ri @@ -3190,6 +3303,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,So'nggi yangilandi apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Hujjat turi uchun DocType: Workflow State,arrow-right,o'q-o'ng +DocType: Server Script,API Method,API usuli DocType: Workflow State,Workflow state represents the current state of a document.,Ish oqimining holati hujjatning hozirgi holatini bildiradi. DocType: Letter Head,Letter Head Based On,Bosh harfga asoslangan apps/frappe/frappe/utils/oauth.py,Token is missing,To'xan yo'q @@ -3229,6 +3343,7 @@ DocType: Comment,Relinked,Qaytib ketdi DocType: Print Settings,Compact Item Print,Yilni mahsulot Chop etish DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL manzilini yo'naltirish +DocType: Onboarding Slide Field,Placeholder,To'ldiruvchi DocType: SMS Settings,Enter url parameter for receiver nos,Receiver nos uchun url parametrini kiriting DocType: Chat Profile,Online,Onlaynda DocType: Email Account,Always use Account's Name as Sender's Name,Hisobning nomini har doim yuboruvchining ismi sifatida ishlatish @@ -3238,7 +3353,6 @@ DocType: Workflow State,Home,Bosh sahifa DocType: OAuth Provider Settings,Auto,Avto DocType: System Settings,User can login using Email id or User Name,Foydalanuvchi e-pochta identifikatori yoki foydalanuvchi nomi orqali login qilishi mumkin DocType: Workflow State,question-sign,savol belgisi -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} o‘chirib qo‘yilgan apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Veb-saytlar uchun "marshrut" maydonchasi majburiydir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} dan oldin ustunni kiriting DocType: Energy Point Rule,The user from this field will be rewarded points,Ushbu maydondan foydalanuvchi yutuqli ballarni oladi @@ -3263,6 +3377,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Agar egasi bo'ls DocType: Data Migration Mapping,Push,Durang apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Fayllarni bu yerga tashlang DocType: OAuth Authorization Code,Expiration time,O'tkazish vaqti +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Hujjatlarni oching DocType: Web Page,Website Sidebar,Veb-sayt shkafi DocType: Web Form,Show Sidebar,Yon paneli ko'rsatilsin apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,{0} ga kirish uchun siz tizimga kirgan bo'lishingiz kerak. @@ -3278,6 +3393,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global yorli DocType: Desktop Icon,Page,Sahifa apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},{1} da {0} topilmadi apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Ism va familiyalar o'zlarini taxmin qilish oson. +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Hujjat {0} dan {1} ga o'zgartirildi apps/frappe/frappe/config/website.py,Knowledge Base,Ma'lumotlar bazasi DocType: Workflow State,briefcase,portfel apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} uchun qiymatni o'zgartirish mumkin emas @@ -3314,6 +3430,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Bosib chiqarish formati apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Grid ko'rinishini almashtirish apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Keyingi yozuvga o'ting +DocType: System Settings,Time Format,Vaqt formati apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,To'lov shlyuzi hisob ma'lumotlari noto'g'ri DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Bu faqat ba'zi bir xatolarga ega bo'lgan qatorlar bilan yaratilgan shablon fayli. Ushbu faylni tuzatish va import qilish uchun ishlatishingiz kerak. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Hujjat turlari va rollarda ruxsatlarni o'rnatish @@ -3356,12 +3473,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Javob berin apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Stoldagi sahifalar (egalari) DocType: DocField,Collapsible Depends On,Yig'ilgan bo'ladi DocType: Print Style,Print Style Name,Stil nomini chop etish +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Boshqaruv jadvali tuzish uchun guruh bo'yicha maydonchani to'ldirish shart DocType: Print Settings,Allow page break inside tables,Jadvallar ichidagi sahifa soniga ruxsat berish DocType: Email Account,SMTP Server,SMTP Server DocType: Print Format,Print Format Help,Chop etish uchun yordam apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} xonada atmost bitta foydalanuvchi bo'lishi kerak. DocType: DocType,Beta,Beta DocType: Dashboard Chart,Count,Hisoblash +DocType: Dashboard Chart,Group By Type,Guruh turi bo'yicha apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},{0}: {1} haqida yangi sharh apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{1} sifatida {0} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Yangilashni davom ettirsangiz, iltimos, mavjud satrlarni "Overwrite" -ni tanlang, o'chirilmaydi." @@ -3372,14 +3491,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Foydalanu DocType: Web Form,Web Form,Veb shakl apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Sana {0} formati bo'lishi kerak: {1} DocType: About Us Settings,Org History Heading,Org tarixi sarlavhasi +DocType: Scheduled Job Type,Scheduled Job Type,Rejalashtirilgan ish turi DocType: Print Settings,Allow Print for Cancelled,Chop etish uchun Bekor qilish uchun ruxsat ber DocType: Communication,Integrations can use this field to set email delivery status,Integratsiyalashuvlar ushbu maydondan elektron pochta manzilini o'rnatish uchun foydalanishi mumkin +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Sizda barcha bog'langan hujjatlarni bekor qilishga ruxsat yo'q. DocType: Web Form,Web Page Link Text,Veb-sahifaga bog'langan matn DocType: Page,System Page,Tizim sahifasi apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Standart formatni, sahifa o'lchamini, bosib chiqarish uslubini va boshqalarni o'rnating." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}</b> uchun <b>moslamalar quyidagiga</b> eksport qilinadi: <br> {1} DocType: Website Settings,Include Search in Top Bar,Top barda qidirishni qo'shish +DocType: Scheduled Job Type,Daily Long,Daily Long DocType: GSuite Settings,Allow GSuite access,GSuite xizmatiga ruxsat berish DocType: DocType,DESC,DESC DocType: DocType,Naming,Nomlanishi @@ -3471,6 +3593,7 @@ DocType: Notification,Send days before or after the reference date,Yo'naltir DocType: User,Allow user to login only after this hour (0-24),Foydalanuvchiga faqat shu soatlardan keyin kirishga ruxsat berish (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",Birin-ketin ketma-ket tayinlang DocType: Integration Request,Subscription Notification,Obuna bildirishnomasi +DocType: Customize Form Field, Allow in Quick Entry ,Tez kirishga ruxsat berish apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,yoki qo'shing a DocType: Auto Repeat,Start Date,Boshlanish vaqti apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Qiymat @@ -3485,6 +3608,7 @@ DocType: Google Drive,Backup Folder ID,Zaxira papka identifikatori apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Dasturchi rejimida emas! Site_config.json saytida joylang yoki 'Custom' DocType ni tanlang. DocType: Workflow State,globe,Dunyo DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Birinchi o'ringa DocType: Email Queue,Unsubscribe Param,Paramni bekor qilish DocType: DocType,Hide Sidebar and Menu,Yon panel va menyuni yashirish @@ -3496,6 +3620,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Import qilishni ruxsat beri apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Sr DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sahifa sozlamalari +DocType: Notification Settings,Notification Settings,Xabarnoma sozlamalari apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saqlanmoqda ... apps/frappe/frappe/www/update-password.html,Invalid Password,Parol noto'g'ri apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1} dan {0} yozuv muvaffaqiyatli olib kirildi. @@ -3511,6 +3636,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Bosh harfning tasviri DocType: Address,Party GSTIN,GSTIN partiyasi +DocType: Scheduled Job Type,Cron Format,Cron formati apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} hisoboti DocType: SMS Settings,Use POST,POSTdan foydalaning DocType: Communication,SMS,SMS @@ -3555,18 +3681,20 @@ DocType: Workflow,Allow approval for creator of the document,Hujjatni yaratuvchi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Hisobotni saqlash DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API Endpoint Args +DocType: DocType Action,Server Action,Server harakati apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,Administrator {1} da {0} IP manzilida {2} orqali ruxsat oldi. apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Ota-ona maydoni to'g'ri maydon nomi bo'lishi kerak apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Obunani o'zgartirish vaqtida muvaffaqiyatsiz tugadi DocType: LDAP Settings,LDAP Group Field,LDAP guruh maydoni +DocType: Notification Subscribed Document,Notification Subscribed Document,Xabarnoma obuna hujjati apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Teng apps/frappe/frappe/core/doctype/doctype/doctype.py,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Variantlarning 'Dynamic Link' turi maydonda "DocType" variantlari bilan boshqa bog'lanadigan maydonga ishora qilishi kerak DocType: About Us Settings,Team Members Heading,Jamoa a'zolari apps/frappe/frappe/utils/csvutils.py,Invalid CSV Format,Noto'g'ri CSV formati -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","QZ Tray dasturiga ulanishda xato ... <br><br> Raw Print xususiyatidan foydalanish uchun sizga QZ Tray ilovasi o'rnatilishi va ishlashi kerak. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">QZ Trayni yuklab olish va o'rnatish uchun shu erni bosing</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Xom bosma haqida ko'proq ma'lumot olish uchun bu erni bosing</a> ." apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,Zaxira soni DocType: DocField,Do not allow user to change after set the first time,Birinchi marta o'rnatilgandan keyin foydalanuvchining o'zgarishiga yo'l qo'ymang apps/frappe/frappe/utils/data.py,1 year ago,1 yil oldin +DocType: DocType,Links Section,Havolalar bo'limi apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Barcha bosib chiqarish, yuklab olish va eksport qilish tadbirlarining jurnalini ko'rish" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 oy DocType: Contact,Contact,Aloqa @@ -3593,16 +3721,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Yangi elektron pochta DocType: Custom DocPerm,Export,Eksport apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",Google Calendar-dan foydalanish uchun {0} -ni yoqing. +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Holatga bog'liqlik maydonini qo'shish {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},{0} muvaffaqiyatli yangilandi apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ tarnovi ishlamadi: DocType: Dropbox Settings,Dropbox Settings,Dropbox sozlamalari DocType: About Us Settings,More content for the bottom of the page.,Sahifaning pastki qismi uchun ko'proq tarkib. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Ushbu hujjat qaytarildi apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google Drive-ning zaxira nusxasi muvaffaqiyatli chiqdi. +DocType: Webhook,Naming Series,Namunaviy qator DocType: Workflow,DocType on which this Workflow is applicable.,Ushbu ish oqimining qo'llanilishi mumkin bo'lgan DocType. DocType: User,Enabled,Faol apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,O'rnatishni tugallamadi apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Yangi {0}: {1} -DocType: Tag Category,Category Name,Turkum nomi +DocType: Blog Category,Category Name,Turkum nomi apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Ota-onalar bolalar jadvali ma'lumotlarini olishlari kerak apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Abonentlarni import qilish DocType: Print Settings,PDF Settings,PDF sozlamalari @@ -3638,6 +3769,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Kalendar apps/frappe/frappe/client.py,No document found for given filters,Berilgan filtrlar uchun hech qanday hujjat topilmadi apps/frappe/frappe/config/website.py,A user who posts blogs.,Bloglarni joylashtirgan foydalanuvchi. +DocType: DocType Action,DocType Action,DocType harakati apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","{1} ismli boshqa {0} mavjud, boshqa nomni tanlang" DocType: DocType,Custom?,Maxsusmi? DocType: Website Settings,Website Theme Image,Veb-sayt mavzusi tasvirlari @@ -3647,6 +3779,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Yuklab bo apps/frappe/frappe/config/integrations.py,Backup,Zaxiralash apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Boshqaruv jadvali yaratish uchun hujjat turi talab qilinadi DocType: DocField,Read Only,Faqat o'qish +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Razorpay buyurtmasini yaratib bo‘lmadi apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Yangi xabarnoma DocType: Energy Point Log,Energy Point Log,Energiya nuqtasi jurnali DocType: Print Settings,Send Print as PDF,PDF sifatida chop etish @@ -3672,16 +3805,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,E-p apps/frappe/frappe/www/login.html,Or login with,Yoki bilan kiring DocType: Error Snapshot,Locals,Mahalliy aholi apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{1} da {0} orqali yuborilgan: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0} sizga {1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Guruhni tanlang ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"Masalan, (55 + 434) / 4 yoki = Math.sin (Math.PI / 2) ..." apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} talab qilinadi DocType: Integration Request,Integration Type,Integratsiya turi DocType: Newsletter,Send Attachements,Attektsiyani yuborish +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Hech qanday filtr topilmadi apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Contacts Integration. DocType: Transaction Log,Transaction Log,Jurnal jurnali apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),O'tgan oyning ishlashiga asoslangan statistika ({0} dan {1} gacha) DocType: Contact Us Settings,City,Shahar +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Barcha foydalanuvchilar uchun kartalarni yashirish apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Customize Form-dagi {0} dokip turi uchun avtomatik takrorlashga ruxsat berish DocType: DocField,Perm Level,Perm bosqichi apps/frappe/frappe/www/confirm_workflow_action.html,View document,Hujjatni ko'rish @@ -3692,6 +3826,7 @@ DocType: Blog Category,Blogger,Blogger DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline","Agar yoqilgan bo'lsa, hujjatdagi o'zgarishlar kuzatiladi va vaqt jadvalida ko'rsatiladi" apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},{1} qatorida {0} uchun "Global Search" da ruxsat berilmagan DocType: Energy Point Log,Appreciation,Minnatdorchilik +DocType: Dashboard Chart,Number of Groups,Guruhlar soni apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Ro'yxatni ko'rish DocType: Workflow,Don't Override Status,Holatni bekor qilmang apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Qidiruv so'zi @@ -3733,7 +3868,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-shimoli-g'arbiy-1 DocType: Dropbox Settings,Limit Number of DB Backups,Jadvaldagi zaxiralarni cheklash soni DocType: Custom DocPerm,Level,Darajali -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,So'nggi 30 kun DocType: Custom DocPerm,Report,Hisobot apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Miqdori 0 dan katta bo'lishi kerak. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,QZ trayiga ulandi! @@ -3750,6 +3884,7 @@ DocType: S3 Backup Settings,us-west-2,us-g'arb-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Bolalar jadvalini tanlang apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger asosiy harakati apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,O'zgartirish +DocType: Social Login Key,User ID Property,Foydalanuvchi identifikatori DocType: Email Domain,domain name,domen nomi DocType: Contact Email,Contact Email,E-pochtaga murojaat qiling DocType: Kanban Board Column,Order,Buyurtma @@ -3772,7 +3907,7 @@ DocType: Contact,Last Name,Familiya DocType: Event,Private,Xususiy apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,Bugungi kunda hech qanday ogohlantirish yo'q DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),E-pochta orqali yuboring Qo'shimcha fayllarni PDF sifatida chop etish (tavsiya etiladi) -DocType: Web Page,Left,Chapdan +DocType: Onboarding Slide Field,Left,Chapdan DocType: Event,All Day,Butun kun apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Bu saytning to'lov shluzi sozlamalari bilan bog'liq biror narsa noto'g'ri. Hech qanday to'lov amalga oshirilmadi. DocType: GCalendar Settings,State,Davlat @@ -3804,7 +3939,6 @@ DocType: Workflow State,User,Foydalanuvchi DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Brauzer oynasida "Prefiks - sarlavha" DocType: Payment Gateway,Gateway Settings,Gateway sozlamalari apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,hujjat turidagi matn -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,Sinovlarni ishga tushirish apps/frappe/frappe/handler.py,Logged Out,Chiqdi apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Ko'proq... DocType: System Settings,User can login using Email id or Mobile number,"E-mail identifikatoridan yoki mobil raqamidan foydalanib, foydalanuvchi login qilishi mumkin" @@ -3820,6 +3954,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Xulosa DocType: Event,Event Participants,Tadbir ishtirokchilari DocType: Auto Repeat,Frequency,Chastotani +DocType: Onboarding Slide,Slide Order,Slayd buyurtmasi DocType: Custom Field,Insert After,Keyin qo'shing DocType: Event,Sync with Google Calendar,Google Taqvim bilan sinxronlashtiring DocType: Access Log,Report Name,Hisobot nomi @@ -3847,6 +3982,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Valyuta uchun maksimal kenglik Valyuta ({0} qatorida 100px) apps/frappe/frappe/config/website.py,Content web page.,Kontent veb-sahifasi. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Yangi rolni qo'shing +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Veb-sahifaga tashrif buyuring +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Yangi topshiriq DocType: Google Contacts,Last Sync On,So'nggi sinxronlash yoqilgan DocType: Deleted Document,Deleted Document,O'chirilgan hujjat apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Xato! Nimadir noto'g'ri bajarildi @@ -3857,7 +3994,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landshaft apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Javascriptdagi mijozlar buyrug'i kengaytmalari DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Quyidagi doctype uchun yozuvlar filtri qilinadi -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Rejalashtiruvchi faol emas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Rejalashtiruvchi faol emas DocType: Blog Settings,Blog Introduction,Mazkur foydalanuvchiga yozish Kirish DocType: Global Search Settings,Search Priorities,Ustuvorliklarni qidirish DocType: Address,Office,Ofis @@ -3867,12 +4004,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Boshqaruv panelidagi jadval h DocType: User,Email Settings,Email sozlamalari apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Bu erga tashlang DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Agar bu parametr yoniq bo'lsa, foydalanuvchi Ikki faktorli tasdiqdan foydalangan holda har qanday IP manzilidan tizimga kirishi mumkin, buni tizim sozlamalarida barcha foydalanuvchilar uchun o'rnatish mumkin" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Printer sozlamalari ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Davom etish uchun parolingizni kiriting apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Men apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} haqiqiy davlat emas apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Barcha hujjatlar turlariga murojaat qiling -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiya nuqtasini yangilash +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Energiya nuqtasini yangilash +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Faol bo'lmagan kunlarda ishlarni har kuni ishga tushirish (kunlar) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Boshqa to'lov usulini tanlang. PayPal "{0}" valyutasidagi operatsiyalarni qo'llab-quvvatlamaydi DocType: Chat Message,Room Type,Xona turi DocType: Data Import Beta,Import Log Preview,Jurnalni oldindan ko'rishni import qilish @@ -3881,6 +4018,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-doira DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP foydalanuvchisini yaratish va xaritalash apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',"Xaridorlarda apelsinni topish" +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,Bugungi tadbirlar apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,Kechirasiz! Foydalanuvchiga o'z yozuvlariga to'liq kirish kerak. ,Usage Info,Foydalanish haqida ma'lumot apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Klaviatura yorliqlarini ko'rsatish @@ -3897,6 +4035,7 @@ DocType: DocField,Unique,Noyob apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} {1} da baholandi apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Qisman muvaffaqiyat DocType: Email Account,Service,Xizmat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi DocType: File,File Name,Fayl nomi apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} ({1}) uchun {0} topilmadi apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} @@ -3910,6 +4049,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,To'l DocType: GCalendar Settings,Enable,Yoqish DocType: Google Maps Settings,Home Address,Uy manzili apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Siz faqatgina bitta 5000 ta yozuvni yuklashingiz mumkin. (ayrim hollarda kamroq bo'lishi mumkin) +DocType: Report,"output in the form of `data = [columns, result]`","`ma'lumotlar = [ustunlar, natija]` ko'rinishidagi chiqish" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Qo'llaniladigan hujjatlar turlari apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Foydalanuvchi topshiriqlari uchun qoidalarni sozlang. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} uchun yetarli ruxsat yo'q @@ -3925,7 +4065,6 @@ DocType: Communication,To and CC,Va DocType: SMS Settings,Static Parameters,Statik parametrlar DocType: Chat Message,Room,Xona apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} ga yangilangan -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Fonda ishlamayapti. Ma'mur bilan bog'laning DocType: Portal Settings,Custom Menu Items,Maxsus menyu ma'lumotlar apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Sayt Slaydshouiga biriktirilgan barcha rasmlar ommaviy bo'lishi kerak DocType: Workflow State,chevron-right,chevron-o'ng @@ -3940,11 +4079,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} qiymat tanlandi DocType: DocType,Allow Auto Repeat,Avtomatik takrorlashga ruxsat berish apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ko‘rsatadigan qiymatlar yo‘q +DocType: DocType,URL for documentation or help,Hujjatlar yoki yordam uchun URL manzili DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email shablonni apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} yozuvi muvaffaqiyatli yangilandi. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},{0} foydalanuvchisida {1} hujjat uchun rolga ruxsat berish orqali hujjatlar turiga kirish huquqi yo'q. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Har ikkala login va parol talab qilinadi +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Ruxsat bering apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Iltimos, eng yangi hujjatni olish uchun yangilang." DocType: User,Security Settings,Xavfsizlik sozlamalari apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Ustun qo'shish @@ -3954,6 +4095,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,Filtrni metan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Ilova qilingan {0}: {1} ni toping. DocType: Web Page,Set Meta Tags,Meta teglarini o'rnating +DocType: Email Account,Use SSL for Outgoing,Chiqish uchun SSL-dan foydalaning 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`,"Ushbu forma veb-sahifasi bo'lsa, Veb-sahifaga ulanish uchun ko'rsatiladigan matn. Ulanish yo'nalishi avtomatik ravishda "page_name" va "parent_website_route" asosida yaratiladi" DocType: S3 Backup Settings,Backup Limit,Zaxiralash limiti DocType: Dashboard Chart,Line,Chiziq @@ -3986,4 +4128,3 @@ DocType: DocField,Ignore User Permissions,Foydalanuvchi ruxsatlarini e'tibor apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Muvaffaqiyatli saqlandi apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,Administratordan ro'yxatdan o'tishni tasdiqlashini so'rang DocType: Domain Settings,Active Domains,Faol domenlar -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Jurnalni ko'rsatish diff --git a/frappe/translations/vi.csv b/frappe/translations/vi.csv index 587451f13e..47c9b87bc4 100644 --- a/frappe/translations/vi.csv +++ b/frappe/translations/vi.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vui lòng chọn một Dòng Số tiền. apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Đang tải tệp nhập ... DocType: Assignment Rule,Last User,Người dùng cuối -apps/frappe/frappe/desk/form/assign_to.py,"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" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Mặc định phiên đã lưu apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Tải lại tập tin DocType: Email Queue,Email Queue records.,Hàng chờ bản ghi email @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{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/public/js/frappe/views/file/file_view.js,Import Zip,Nhập Zip +DocType: Scheduled Job Type,Create Log,Tạo nhật ký apps/frappe/frappe/model/base_document.py,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 @@ -73,7 +73,7 @@ DocType: Auto Repeat,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,Danger,Nguy hiểm -DocType: Address,Email Address,Địa chỉ Email +apps/frappe/frappe/www/login.py,Email Address,Địa chỉ Email 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/utils/tools.js,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. @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Hủ DocType: DocType,Is Published Field,Được đăng Dòng DocType: GCalendar Settings,GCalendar Settings,Cài đặt GCalendar DocType: Email Group,Email Group,Email Nhóm +apps/frappe/frappe/__init__.py,Only for {},Chỉ dành cho {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Lịch Google - Không thể xóa Sự kiện {0} khỏi Lịch Google, mã lỗi {1}." DocType: Event,Pulled from Google Calendar,Kéo từ Lịch Google DocType: Note,Seen By,Nhìn thấy bởi apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Thêm Phức Hợp -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,Bạn đã đạt được một số điểm năng lượng apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Không phải hình ảnh người dùng hợp lệ. DocType: Energy Point Log,Reverted,Hoàn nguyên DocType: Success Action,First Success Message,Thông điệp thành công đầu tiên @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Không giốn apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Giá trị không đúng: {0} phải {1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Tính chất thay đổi lĩnh vực (ẩn, chỉ đọc, cho phép vv)" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Đánh giá +DocType: Notification Settings,Document Share,Chia sẻ tài liệu DocType: Workflow State,lock,khóa apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Cài đặt cho Trang Liên hệ. apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Quản trị Logged In @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it","Nếu được bật, tài liệu được đánh dấu là đã thấy, lần đầu tiên người dùng mở nó" DocType: Auto Repeat,Repeat on Day,Lặp lại vào ngày DocType: DocField,Color,Màu +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,Đánh dấu tất cả như đã đọc DocType: Data Migration Run,Log,Đăng nhập DocType: Workflow State,indent-right,thụt lề bên phải DocType: Has Role,Has Role,có vai trò @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Hiển thị Trac trở lại DocType: DocType,Default Print Format,Mặc định In Định dạng DocType: Workflow State,Tags,các lần đánh dấu +DocType: Onboarding Slide,Slide Type,Loại slide apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Không: Kết thúc quy trình làm việc apps/frappe/frappe/database/mariadb/schema.py,"{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,Document Types,Các loại tài liệu @@ -136,7 +139,6 @@ DocType: Language,Guest,Khách DocType: DocType,Title Field,Đoạn tiêu đề DocType: Error Log,Error Log,Lỗi hệ thống apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,URL không hợp lệ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,7 ngày qua apps/frappe/frappe/utils/password_strength.py,"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" DocType: Notification,Channel,Kênh apps/frappe/frappe/templates/emails/administrator_logged_in.html,"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ị." @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,Khách hàng apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,Chọn Cột apps/frappe/frappe/public/js/frappe/form/form.js,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: Address,Himachal Pradesh,Himachal Pradesh +DocType: Notification Log,Notification Log,Nhật ký thông báo 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/public/js/frappe/ui/keyboard.js,Open Awesomebar,Mở Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Tr apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,Gửi DocType: Workflow Action Master,Workflow Action Name,Tên hành động công việc apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType không thể được sáp nhập -DocType: Web Form Field,Fieldtype,Fieldtype +DocType: Onboarding Slide Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Không phải là một tập tin zip DocType: Global Search DocType,Global Search DocType,Tài liệu tìm kiếm toàn cầu DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,Email đã gửi? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Chuyển đổi biểu đồ apps/frappe/frappe/desk/form/save.py,Did not cancel,Không hủy bỏ DocType: Social Login Key,Client Information,Thông tin khách hàng +DocType: Energy Point Rule,Apply this rule only once per document,Chỉ áp dụng quy tắc này một lần cho mỗi tài liệu DocType: Workflow State,plus,thêm +DocType: DocField,Read Only Depends On,Chỉ đọc phụ thuộc vào apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,Đăng nhập như khách hoặc Quản trị viên DocType: Email Account,UNSEEN,không thấy apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Quản lý tập tin @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,Nguyên nhân 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,Không hoạt động +DocType: Server Script,Script Manager,Quản lý tập lệnh +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Không hoạt động apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Ứng dụng của bên thứ ba apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,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/public/js/frappe/ui/notifications/notifications.js,No Events Today,Không có sự kiện hôm nay apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Bạn không thể đưa ra điểm đánh giá cho chính mình apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType phải được Cho phép chuyển tiếp cho sự kiện Doc đã chọn DocType: Workflow State,circle-arrow-up,vòng tròn mũi tên lên @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Không được phép cho {0}: {1}. Trường bị hạn chế: {2} 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,You are not allowed to delete a standard Website Theme,Bạn không được phép xóa Theme mặc định +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Tạo {0} đầu tiên của bạn DocType: Data Import,Log Details,Chi tiết nhật ký DocType: Workflow Transition,Example,Thí dụ DocType: Webhook Header,Webhook Header,Tiêu đề Webhook @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,Nền tảng trò chuyện apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,Đánh dấu là đã đọc apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Đang cập nhật {0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,Một Slide Onboarding <b>{0}</b> với cùng thứ tự slide đã tồn tại apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Báo cáo DocType: Translation,Contributed Translation Doctype Name,Tên tài liệu dịch thuật đóng góp +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu DocType: PayPal Settings,Redirect To,Chuyển đến DocType: Data Migration Mapping,Pull,Kéo DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Định dạng JavaScript: frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,Bản ghi nội bộ cổ p DocType: Energy Point Settings,Review Levels,Xem lại cấp độ DocType: Workflow State,Comment,Bình luận DocType: Data Migration Plan,Postprocess Method,Phương pháp Postprocess +DocType: DocType Action,Action Type,Loại hành động apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Chụp hình DocType: Assignment Rule,Round Robin,Vòng Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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. @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Lưu DocType: Comment,Seen,Đã xem apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,Hiển thị thêm thông tin chi tiết +DocType: Server Script,Before Submit,Trước khi gửi 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,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,Archive,lưu trữ @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,Tên trường sai <b>{0}</b> trong cấu hình add_fetch của tập lệnh tùy chỉnh apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,Chọn Danh bạ Google mà liên hệ sẽ được đồng bộ hóa. DocType: Web Page,Main Section (HTML),Phần chính (HTML) +DocType: Scheduled Job Type,Annual,Hàng năm DocType: Workflow State,headphones,tai nghe apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,Mật khẩu là cần thiết hoặc chọn Đang chờ mật khẩu DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,ví dụ như replies@yourcomany.com. Tất cả trả lời sẽ đến hộp thư này. DocType: Slack Webhook URL,Slack Webhook URL,URL Webhook Slack +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.","Xác định thứ tự của slide trong trình hướng dẫn. Nếu slide không được hiển thị, ưu tiên nên được đặt thành 0." DocType: Data Migration Run,Current Mapping,Lập bản đồ hiện tại apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,Yêu cầu Tên và Email hợp lệ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,Làm cho tất cả các tệp đính kèm riêng tư @@ -317,6 +331,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,Quy định chuyển tiếp apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Chỉ hiển thị các hàng {0} đầu tiên trong bản xem trước apps/frappe/frappe/core/doctype/report/report.js,Example:,Ví dụ: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Những hạn chế DocType: Workflow,Defines workflow states and rules for a document.,Xác định trạng thái công việc và các quy tắc cho một tài liệu. DocType: Workflow State,Filter,bộ lọc apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},Kiểm tra Nhật ký lỗi để biết thêm thông tin: {0} @@ -328,6 +343,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,Việc làm apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} đăng xuất khỏi: {1} DocType: Address,West Bengal,Phía tây Bengal +DocType: Onboarding Slide,Information,Thông tin apps/frappe/frappe/core/doctype/doctype/doctype.py,{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: Transaction Log,Row Index,Chỉ mục Hàng DocType: Social Login Key,Facebook,Facebook @@ -346,7 +362,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid 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,Thành viên nhóm +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,Sẽ chạy các công việc theo lịch trình chỉ một lần một ngày cho các trang web không hoạt động. Mặc định 4 ngày nếu được đặt thành 0. DocType: Assignment Rule,System Manager,Hệ thống quản lý +DocType: Scheduled Job Log,Scheduled Job,Công việc theo lịch trình DocType: Custom DocPerm,Permissions,Quyền apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks cho tích hợp nội bộ DocType: Dropbox Settings,Allow Dropbox Access,Cho phép truy cập Dropbox @@ -400,6 +418,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,Quét DocType: Email Flag Queue,Email Flag Queue,Email Cờ Queue DocType: Access Log,Columns / Fields,Cột / Lĩnh vực apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets cho các định dạng In +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,Trường hàm tổng hợp được yêu cầu để tạo biểu đồ bảng điều khiển apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,Không thể định danh mở {0}. Hãy thử cách khác apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Thông tin của bạn đã được gửi apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Người sử dụng {0} không thể bị xóa @@ -416,11 +435,12 @@ DocType: Property Setter,Field Name,Tên trường DocType: Assignment Rule,Assign To Users,Chỉ định cho người dùng apps/frappe/frappe/public/js/frappe/utils/utils.js,or,hoặc apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,Tên mô-đun ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,Tiếp tục +DocType: Onboarding Slide,Continue,Tiếp tục apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Tích hợp Google bị vô hiệu hóa. DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,Giấy chứng nhận apps/frappe/frappe/templates/includes/login/login.js,Verifying...,Xác minh ... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,Bài tập của bạn trên {0} {1} đã bị xóa apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,Cột dữ liệu đầu tiên phải được để trống. apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,Hiển thị tất cả các phiên bản apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,Xem bình luận @@ -430,12 +450,14 @@ DocType: User,Restrict IP,Hạn chế IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,bảng điều khiển apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Không thể gửi email vào thời điểm này apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Lịch Google - Không thể cập nhật Sự kiện {0} trong Lịch Google, mã lỗi {1}." +DocType: Notification Log,Email Content,Nội dung email apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Tìm kiếm hoặc gõ lệnh DocType: Activity Log,Timeline Name,tên dòng thời gian apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Chỉ một {0} có thể được đặt làm chính. DocType: Email Account,e.g. smtp.gmail.com,ví dụ: smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Thêm một quy tắc mới DocType: Contact,Sales Master Manager,QUản lý bản hàng gốc +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,Bạn cần kích hoạt JavaScript để ứng dụng của bạn hoạt động. DocType: User Permission,For Value,Đối với Giá trị DocType: Event,Google Calendar ID,ID Lịch Google apps/frappe/frappe/www/complete_signup.html,One Last Step,Một Bước cuối @@ -451,6 +473,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,Trường tên đệm LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Nhập {0} trong số {1} DocType: GCalendar Account,Allow GCalendar Access,Cho phép Truy cập GCalendar apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} là một trường bắt buộc +DocType: DocType,Documentation Link,Liên kết tài liệu apps/frappe/frappe/templates/includes/login/login.js,Login token required,Đăng nhập mã thông báo yêu cầu apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Xếp hạng hàng tháng: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Chọn nhiều mục danh sách @@ -472,6 +495,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,Đường dẫn tập tin DocType: Version,Table HTML,bảng HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Thêm Subscribers +DocType: Notification Log,Energy Point,Điểm năng lượng apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,Sự kiện sắp tới cho Hôm nay DocType: Google Calendar,Push to Google Calendar,Đẩy lên Lịch Google DocType: Notification Recipient,Email By Document Field,Email của tài liệu Dòng @@ -487,12 +511,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,Xa DocType: Currency,Fraction Units,Các đơn vị của phần apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} từ {1} đến {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,Đánh dấu là Đã xong DocType: Chat Message,Type,Loại DocType: Google Settings,OAuth Client ID,ID khách hàng OAuth DocType: Auto Repeat,Subject,Chủ đề apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Quay lại Desk DocType: Web Form,Amount Based On Field,Số tiền Dựa Trên Dòng +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0} không có phiên bản nào được theo dõi. apps/frappe/frappe/core/doctype/docshare/docshare.py,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 đủ @@ -515,6 +539,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,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,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 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,của DocType: Deleted Document,Deleted Name,Tên xóa apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Hệ thống và Website Người dùng DocType: Workflow Document State,Doc Status,Doc Trạng thái @@ -525,6 +550,7 @@ DocType: Language,Language Code,Mã ngôn ngữ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Lưu ý: Theo email mặc định cho các bản sao lưu không thành công được gửi. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,Thêm bộ lọc apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},SMS gửi đến số điện thoại sau: {0} +DocType: Notification Settings,Assignments,Bài tập apps/frappe/frappe/utils/data.py,{0} and {1},{0} và {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Bắt đầu một cuộc trò chuyện. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Luôn luôn thêm "Dự thảo" Heading cho dự thảo văn bản in ấn @@ -533,6 +559,7 @@ DocType: Data Migration Run,Current Mapping Start,Bắt đầu lập bản đồ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email đã được đánh dấu là spam DocType: Comment,Website Manager,Quản trị viên Website apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,Tải lên tệp bị ngắt kết nối. Vui lòng thử lại. +DocType: Data Import Beta,Show Failed Logs,Hiển thị nhật ký thất bại apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,Bản dịch apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,Bạn đã chọn Bản nháp hoặc đã hủy các tài liệu apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Tài liệu {0} đã được đặt thành trạng thái {1} theo {2} @@ -540,7 +567,9 @@ apps/frappe/frappe/model/document.py,Document Queued,Tài liệu xếp hàng đ DocType: GSuite Templates,Destination ID,điểm đến ID DocType: Desktop Icon,List,danh sách DocType: Activity Log,Link Name,tên liên kết +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,Bạn thiên đường \ DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy +DocType: Onboarding Slide,Onboarding Slide,Trượt ván apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/slides.js,Previous,Trước @@ -601,6 +630,7 @@ DocType: Kanban Board Column,darkgrey,màu xám đen apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},Thành công: {0} đến {1} apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/dropzone.js,Drop,Rơi vãi +DocType: Dashboard Chart,Aggregate Function Based On,Hàm tổng hợp dựa trên apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,Hãy lặp lại này để thay đổi apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,Nhấn Enter để lưu apps/frappe/frappe/utils/pdf.py,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ỡ @@ -614,7 +644,9 @@ DocType: Notification,Days Before,những ngày trước đó apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Sự kiện hàng ngày sẽ kết thúc vào cùng một ngày. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Chỉnh sửa... DocType: Workflow State,volume-down,giảm âm lượng +DocType: Onboarding Slide,Help Links,Liên kết trợ giúp apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Truy cập không được phép từ Địa chỉ IP này +DocType: Notification Settings,Enable Email Notifications,Bật thông báo email apps/frappe/frappe/desk/reportview.py,No Tags,không Thẻ DocType: Email Account,Send Notification to,Gửi thông báo cho DocType: DocField,Collapsible,Ráp @@ -643,6 +675,7 @@ DocType: Google Drive,Last Backup On,Lần sao lưu cuối cùng DocType: Customize Form Field,Customize Form Field,Tùy chỉnh Field DocType: Energy Point Rule,For Document Event,Đối với sự kiện tài liệu DocType: Website Settings,Chat Room Name,Tên phòng trò chuyện +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,Không thay đổi DocType: OAuth Client,Grant Type,Loại trợ cấp apps/frappe/frappe/config/users_and_permissions.py,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 DocType: Deleted Document,Hub Sync ID,ID đồng bộ hóa của Hub @@ -650,6 +683,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,sử DocType: Auto Repeat,Quarterly,Quý apps/frappe/frappe/email/doctype/email_account/email_account.js,"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: Dashboard Chart,All Time,Mọi lúc apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Trạng thái tài liệu bất hợp pháp cho {0} DocType: Email Account,Enable Auto Reply,Enable Auto Reply apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Không Nhìn Thấy @@ -662,6 +696,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,Tin n DocType: Email Account,Notify if unreplied,Thông báo nếu không trả lời apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,Quét mã QR và nhập mã kết quả được hiển thị. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Cho phép học sinh +DocType: Scheduled Job Type,Hourly Long,Hàng giờ dà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 @@ -670,11 +705,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Bảng tổ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3 Backup hoàn tất! apps/frappe/frappe/config/desktop.py,Developer,Nhà phát triển apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Tạo +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},"Để kích hoạt nó, hãy làm theo các hướng dẫn trong liên kết sau: {0}" apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} trong dãy {1} không thể đồng thời có cả URL và các vật tư nhỏ apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Cần có ít nhất một hàng cho các bảng sau: {0} DocType: Print Format,Default Print Language,Ngôn ngữ in mặc định apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Tổ tiên của apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Gốc {0} không thể bị xóa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,Không có nhật ký thất bại apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,Chưa có bình luận nào apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings","Vui lòng thiết lập SMS trước khi cài đặt nó làm phương pháp xác thực, thông qua Cài đặt SMS" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,Đều phải có cả Dạng văn bản và Tên @@ -698,6 +735,7 @@ DocType: Website Settings,Footer Items,Phần chân của các mẫu hàng apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,Menu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Repeat,Daily,Hàng ngày +DocType: Onboarding Slide,Max Count,Số lượng tối đa apps/frappe/frappe/config/users_and_permissions.py,User Roles,Vai trò người sử 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,Cannot Update: Incorrect / Expired Link.,Không thể Cập nhật: Không đúng / liên kết đã hết hạn @@ -716,6 +754,7 @@ DocType: Footer Item,"target = ""_blank""","mục tiêu = ""_trống""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Chủ DocType: Data Import Beta,Import File,Nhập tệp +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,Lỗi mẫu apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,Cột <b>{0}</b> đã tồn tại. DocType: ToDo,High,Cao apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Sự kiện mới @@ -731,6 +770,7 @@ DocType: Web Form Field,Show in filter,Hiển thị trong bộ lọc DocType: Address,Daman and Diu,Daman and Diu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,Dự Án DocType: Address,Personal,Cá nhân +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,Cài đặt in thô ... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,Xem https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region để biết chi tiết. apps/frappe/frappe/config/settings.py,Bulk Rename,THay tên hàng loạt DocType: Email Queue,Show as cc,Hiển thị như cc @@ -740,6 +780,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,Đi Video DocType: Contact Us Settings,Introductory information for the Contact Us Page,Thông tin giới thiệu cho Trang Liên hệ DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,trỏ xuống +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,Hủy tài liệu DocType: User,Send Notifications for Email threads,Gửi thông báo cho chủ đề email apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Cấp cao apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Không có trong chế độ nhà phát triển @@ -747,7 +788,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Sao lưu t DocType: DocField,In Global Search,Trong Tìm kiếm Toàn cầu DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,thụt lề trái -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,Có rủi ro khi xóa tập tin này: {0}. Vui lòng liên hệ Quản lý Hệ thống của bạn. DocType: Currency,Currency Name,Tên tiền tệ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,không có email @@ -762,11 +802,13 @@ DocType: Energy Point Rule,User Field,Trường người dùng DocType: DocType,MyISAM,MyISAM DocType: Data Migration Run,Push Delete,Đẩy Xóa apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} đã hủy đăng ký cho {1} {2} +DocType: Scheduled Job Type,Stopped,Đã ngưng apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Không loại bỏ apps/frappe/frappe/desk/like.py,Liked,đã thích apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,Bây giờ gửi apps/frappe/frappe/core/doctype/doctype/doctype.py,"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,"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: Server Script,Allow Guest,Cho phép khách DocType: Report,Query,Truy vấn DocType: Customize Form,Sort Order,Thứ tự sắp xếp apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'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}" @@ -788,10 +830,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,Phương pháp xác thực hai yếu tố apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Trước tiên hãy đặt tên và lưu bản ghi. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 hồ sơ +DocType: DocType Link,Link Fieldname,Tên trường liên kết apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Chia sẻ với {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Hủy đăng ký DocType: View Log,Reference Name,Tên tài liệu tham khảo apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Thay đổi người sử dụng +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Đầu tiên apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Cập nhật bản dịch DocType: Error Snapshot,Exception,Exception DocType: Email Account,Use IMAP,Sử dụng IMAP @@ -806,6 +850,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,Quy định việc xác định quá trình chuyển đổi của nhà nước trong các công việc. DocType: File,Folder,Thư mục DocType: Website Route Meta,Website Route Meta,Trang web Tuyến Meta +DocType: Onboarding Slide Field,Onboarding Slide Field,Trường trượt trên tàu 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,Option 1,Lựa Chọn 1 @@ -832,7 +877,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Thi apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Định cấu hình biểu đồ DocType: User,Last IP,IP cuối cùng apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Vui lòng thêm chủ đề vào email của bạn -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,Tài liệu mới {0} đã được chia sẻ với bạn {1}. DocType: Data Migration Connector,Data Migration Connector,Bộ kết nối chuyển dữ liệu apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} hoàn nguyên {1} DocType: Email Account,Track Email Status,Theo dõi trạng thái email @@ -885,6 +929,7 @@ DocType: Email Account,Default Outgoing,Mặc định Outgoing DocType: Workflow State,play,chơi apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,Click vào liên kết dưới đây để hoàn tất đăng ký của bạn và thiết lập một mật khẩu mới apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,Không thêm +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0} đã đạt được {1} điểm cho {2} {3} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Không có tài khoản email được chỉ định DocType: S3 Backup Settings,eu-west-2,eu-tây-2 DocType: Contact Us Settings,Contact Us Settings,Thiết lập Liên hệ @@ -893,6 +938,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,Đang tì DocType: Workflow State,text-width,chiều rộng văn bản apps/frappe/frappe/public/js/frappe/form/form.js,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/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,Tìm kiếm theo tên tệp hoặc phần mở rộng +DocType: Onboarding Slide,Slide Title,Tiêu đề slide DocType: Notification,View Properties (via Customize Form),Xem Tài sản (qua mẫu đặc chế) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Nhấn vào một tập tin để chọn nó. DocType: Note Seen By,Note Seen By,Ghi chú đã xem bởi @@ -919,13 +965,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Chia sẻ URL DocType: System Settings,Allow Consecutive Login Attempts ,Cho phép thử liên tục đăng nhập apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,Đã xảy ra lỗi trong quá trình thanh toán. Xin vui lòng liên hệ với chúng tôi. +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,Nếu Loại Slide là Tạo hoặc Cài đặt thì sẽ có phương thức 'create_onboarding_docs' trong tệp {ref_doctype} .py bị ràng buộc để được thực thi sau khi hoàn thành slide. apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{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 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,Không phải hậu duệ của DocType: Contact,Company Name,Tên công ty DocType: Custom DocPerm,Role,Vai trò -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,Cài đặt ... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,vào trình duyệt của bạn apps/frappe/frappe/utils/data.py,Cent,Phần trăm ,Recorder,Máy ghi âm @@ -985,6 +1031,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""","Theo dõi xem email của bạn đã được người nhận mở chưa. <br> Lưu ý: Nếu bạn đang gửi tới nhiều người nhận, ngay cả khi 1 người nhận đọc email, người đó sẽ được coi là "Đã mở"" apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Giá trị khuyết bắt buộc apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Cho phép truy cập danh bạ Google +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,Hạn chế DocType: Data Migration Connector,Frappe,sinh tố apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,Đánh dấu là chưa đọc DocType: Activity Log,Operation,Hoạt động @@ -1038,6 +1085,7 @@ DocType: Web Form,Allow Print,cho phép In DocType: Communication,Clicked,Clicked apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Hủy theo dõi apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Không có quyền tới '{0}' {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vui lòng thiết lập Tài khoản Email mặc định từ Cài đặt> Email> Tài khoản Email apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Lên lịch gửi DocType: DocType,Track Seen,đã xem theo dõi DocType: Dropbox Settings,File Backup,Sao lưu tập tin @@ -1046,12 +1094,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,Không tìm t apps/frappe/frappe/config/customization.py,Add custom forms.,Thêm các hình thức tùy chỉnh. apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}: {1} trong {2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,gửi tài liệu này -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,Hệ thống cung cấp nhiều vai trò được xác định trước. Bạn có thể thêm vai trò mới để thiết lập quyền tốt hơn. DocType: Communication,CC,CC DocType: Country,Geo,Geo DocType: Data Migration Run,Trigger Name,Tên trình kích hoạt -apps/frappe/frappe/public/js/frappe/desk.js,Domains,Tên miền +DocType: Onboarding Slide,Domains,Tên miền DocType: Blog Category,Blog Category,Mục Blog apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: , DocType: Role Permission for Page and Report,Roles HTML,HTML của các vai trò @@ -1092,7 +1139,6 @@ DocType: Assignment Rule Day,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: List View Setting,Disable Auto Refresh,Vô hiệu hóa Tự động làm mới DocType: Comment,Label,Nhãn -apps/frappe/frappe/desk/form/assign_to.py,"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." apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,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 Tiềm năng với Địa chỉ Email này nên tồn tại @@ -1109,6 +1155,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,Cài đặt SMTP cho em apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,Chọn một DocType: Data Export,Filter List,Danh sách bộ lọc DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,HH: mm DocType: Email Account,Auto Reply Message,Auto Reply tin nhắn DocType: Data Migration Mapping,Condition,Điều kiện apps/frappe/frappe/utils/data.py,{0} hours ago,{0} giờ trước @@ -1127,12 +1174,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,Người đóng góp kiến thức cơ bản DocType: Communication,Sent Read Receipt,Gửi xác nhận đọc DocType: Email Queue,Unsubscribe Method,Hủy đăng ký phương pháp +DocType: Onboarding Slide,Add More Button,Thêm nút khác 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,Edit to add content,Chỉnh sửa để thêm nội dung apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,Chọn Ngôn ngữ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,Chi tiết thẻ apps/frappe/frappe/__init__.py,No permission for {0},Không quyền hạn cho {0} DocType: DocType,Advanced,Nâng cao +DocType: Onboarding Slide,Slide Image Source,Nguồn hình ảnh slide apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,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,Reference: {0} {1},Tham khảo: {0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,Cô @@ -1149,6 +1198,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Tổng DocType: DocType,User Cannot Create,Người sử dụng không thể tạo apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Thực hiện thành công apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,truy cập Dropbox được chấp nhận! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,Bạn có chắc chắn muốn hợp nhất {0} với {1} không? DocType: Customize Form,Enter Form Type,Nhập Loại Mẫu DocType: Google Drive,Authorize Google Drive Access,Cho phép truy cập Google Drive apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Thiếu tham số Tên Kanban Tên @@ -1158,7 +1208,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Cho phép DocType, DocType. Chị cẩn thận đó!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Các định dạng tùy chỉnh cho in ấn, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Tổng của {0} -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Để cập nhật phiên bản mới DocType: Custom Field,Depends On,Phụ thuộc Bật DocType: Kanban Board Column,Green,Xanh DocType: Custom DocPerm,Additional Permissions,Quyền thêm @@ -1186,6 +1235,7 @@ DocType: Energy Point Log,Social,Xã hội apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.","Lịch Google - Không thể tạo Lịch cho {0}, mã lỗi {1}." apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,dòng chỉnh sửa DocType: Workflow Action Master,Workflow Action Master,CHủ hành động công việc +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,Xóa hết DocType: Custom Field,Field Type,Loại lĩnh vực apps/frappe/frappe/utils/data.py,only.,chẵn DocType: Route History,Route History,Lịch sử tuyến đường @@ -1222,11 +1272,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,Quên mật khẩu? DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Lỗi máy chủ +DocType: Server Script,After Delete,Sau khi xóa apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,Xem tất cả các báo cáo trong quá khứ. apps/frappe/frappe/email/doctype/email_account/email_account.py,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/core/page/dashboard/dashboard.js,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 (mục lục, đăng nhập, các sản phẩm, blog, về, liên lạc)" +DocType: Server Script,After Submit,Sau khi gửi apps/frappe/frappe/email/doctype/email_account/email_account.py,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} DocType: User,Banner Image,Banner Image DocType: Custom Field,Custom Field,Trường Tuỳ chỉnh @@ -1267,15 +1319,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, 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/model/document.py,one of,Một trong -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,Kiểm tra một khoảnh khắc apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Hiện tags DocType: DocField,HTML Editor,Trình chỉnh sửa HTML 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 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng +DocType: DocType,Actions,Các thao tác DocType: Workflow State,align-justify,sắp xếp biện minh cho DocType: User,Middle Name (Optional),Tên đệm (bắt buộc) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,Không được phép @@ -1290,6 +1340,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Không có DocType: System Settings,Security,Bảo mật apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,Dự kiến gửi đến {0} người nhận apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cắt tỉa +DocType: Server Script,After Save,Sau khi lưu apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},đổi tên từ {0} đến {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{0} trong số {1} ({2} hàng có trẻ em) DocType: Currency,**Currency** Master,Quản trị ** Tiền tệ** @@ -1316,16 +1367,19 @@ DocType: Prepared Report,Filter Values,Giá trị bộ lọc DocType: Communication,User Tags,Các lần đánh dấu người sử dụng DocType: Data Migration Run,Fail,Thất bại DocType: Workflow State,download-alt,tải-alt +DocType: Scheduled Job Type,Last Execution,Thi hành lần cuối DocType: Data Migration Run,Pull Failed,Kéo không thành công apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,Hiển thị / ẩn thẻ DocType: Communication,Feedback Request,Phản hồi Yêu cầu apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,Nhập dữ liệu từ tệp CSV / Excel. apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,các lĩnh vực sau bị thiếu: +DocType: Notification Log,From User,Từ người dùng apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},Hủy {0} DocType: Web Page,Main Section,Mục chính DocType: Page,Icon,Biểu tượng apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Gợi ý: Bao gồm các ký hiệu, số và chữ hoa trong mật khẩu" apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password","Gợi ý: Bao gồm các ký hiệu, số và chữ hoa trong mật khẩu" +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.","Cấu hình thông báo cho đề cập, bài tập, điểm năng lượng và nhiều hơn nữa." DocType: DocField,Allow in Quick Entry,Cho phép trong mục nhập nhanh apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,ngày/tháng/năm @@ -1357,7 +1411,6 @@ DocType: Website Theme,Theme URL,URL chủ đề DocType: Customize Form,Sort Field,Trường sắp xếp DocType: Razorpay Settings,Razorpay Settings,Cài đặt Razorpay apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Sửa bộ lọc -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,Bổ sung thêm DocType: System Settings,Session Expiry Mobile,Hạn sử dụng phiên Mobile apps/frappe/frappe/utils/password.py,Incorrect User or Password,Người dùng hoặc mật khẩu không chính xác apps/frappe/frappe/templates/includes/search_box.html,Search results for,tìm kiếm kết quả cho @@ -1373,8 +1426,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,Quy tắc điểm năng lượng DocType: Communication,Delayed,Bị hoãn apps/frappe/frappe/config/settings.py,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/core/doctype/data_import/data_import_list.js,Try the new Data Import,Hãy thử nhập dữ liệu mới apps/frappe/frappe/www/login.html,Sign up,Đăng ký apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,Hàng {0}: Không được phép bắt buộc Bắt buộc đối với trường tiêu chuẩn +DocType: Webhook,Enable Security,Kích hoạt bảo mật apps/frappe/frappe/config/customization.py,Dashboards,Bảng điều khiển DocType: Test Runner,Output,Đầu ra DocType: Milestone,Track Field,Linh vực theo doi @@ -1382,6 +1437,7 @@ DocType: Notification,Set Property After Alert,Đặt thuộc tính Sau khi Thô apps/frappe/frappe/config/customization.py,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,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. apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Thêm nhận xét +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0} đã giao một nhiệm vụ mới {1} {2} cho bạn apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Cỡ chữ (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Chỉ các DocTypes tiêu chuẩn mới được phép tùy chỉnh từ Biểu mẫu tùy chỉnh. DocType: Email Account,Sendgrid,Sendgrid @@ -1393,8 +1449,10 @@ DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,Đặt bộ lọc DocType: Contact Us Settings,Email ID,Tài khoản Email DocType: Energy Point Rule,Multiplier Field,Lĩnh vực đa nhân +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,Không thể tạo đơn hàng Razorpay. Vui lòng liên hệ với Quản trị viên DocType: Dashboard Chart,Time Interval,Khoảng thời gian DocType: Activity Log,Keep track of all update feeds,Theo dõi tất cả nguồn cấp dữ liệu cập nhật +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0} đã chia sẻ tài liệu {1} {2} với bạn DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> 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ó. <br> ví dụ như dự án DocType: Translation,Translated Text,văn bản đã được dịch DocType: Contact Us Settings,Query Options,Tùy chọn truy vấn @@ -1413,6 +1471,7 @@ 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/users_and_permissions.py,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/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Mẫu nhập phải là loại .csv, .xlsx hoặc .xls" apps/frappe/frappe/www/update-password.html,New Password,Mật khẩu mới apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Lọc {0} mất tích apps/frappe/frappe/core/doctype/activity_log/activity_log.py,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 @@ -1429,6 +1488,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,Favicon apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,Chạy DocType: Blog Post,Content (HTML),Nội dung (HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,Thiết lập cho DocType: Personal Data Download Request,User Name,Tên người dùng DocType: Workflow State,minus-sign,dấu trừ apps/frappe/frappe/public/js/frappe/request.js,Not Found,Không tìm thấy @@ -1436,11 +1496,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,Không {0} quyền hạn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Xuất Quyền Tuỳ chỉnh apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Không tìm thấy vật nào. DocType: Data Export,Fields Multicheck,Trường Multicheck +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{} Hoàn thành DocType: Activity Log,Login,Đăng nhập DocType: Web Form,Payments,Thanh toán apps/frappe/frappe/www/qrcode.html,Hi {0},Xin chào {0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Tích hợp Google Drive. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0} hoàn nguyên điểm của bạn trên {1} {2} DocType: System Settings,Enable Scheduled Jobs,Việc cho phép theo lịch trình apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Ghi chú: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,Không hoạt động @@ -1465,6 +1525,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Mẫu apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,Lỗi quyền apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},Tên của {0} không thể là {1} DocType: User Permission,Applicable For,Đối với áp dụng +DocType: Dashboard Chart,From Date,Từ ngày apps/frappe/frappe/core/doctype/version/version_view.html,Success,Thành công apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Phiên hết hạn apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Phiên hết hạn @@ -1477,7 +1538,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,S apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; không được cho phép trong điều kiện DocType: Async Task,Async Task,Async Nhiệm vụ DocType: Workflow State,picture,tranh -apps/frappe/frappe/www/complete_signup.html,Complete,Hoàn chỉnh +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Hoàn chỉnh DocType: DocType,Image Field,hình ảnh Dòng DocType: Print Format,Custom HTML Help,Tuỳ chỉnh HTML Help DocType: LDAP Settings,Default Role on Creation,Vai trò mặc định đối với việc tạo @@ -1485,6 +1546,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,TÌnh trạng kế tiếp DocType: User,Block Modules,Khối mô đun DocType: Print Format,Custom CSS,CSS Tuỳ chỉnh +DocType: Energy Point Rule,Apply Only Once,Chỉ áp dụng một lần apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Thêm một lời nhận xét DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},Bỏ qua: {0} đến {1} @@ -1496,6 +1558,7 @@ DocType: Email Account,Default Incoming,Mặc định Incoming DocType: Workflow State,repeat,lặp lại DocType: Website Settings,Banner,Biểu ngữ apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Giá trị phải là một trong {0} +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,Hủy tất cả tài liệu 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/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Chuyển đến Danh sách {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Giúp đỡ về Tìm kiếm @@ -1504,6 +1567,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Đăng ký apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Lặp lại tự động cho tài liệu này đã bị vô hiệu hóa. DocType: DocType,Hide Copy,Ẩn sao chép apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Xóa tất cả các vai trò +DocType: Server Script,Before Save,Trước khi lưu apps/frappe/frappe/model/base_document.py,{0} must be unique,{0} phải là duy nhất apps/frappe/frappe/model/base_document.py,Row,Hàng apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template","Mẫu CC, BCC & Email" @@ -1514,7 +1578,6 @@ DocType: Chat Profile,Offline,ẩn apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Đã nhập thành công {0} DocType: User,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,Edit Title,Sửa Tiêu đề apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,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,Documents assigned to you and by you.,Tài liệu được giao cho bạn và bởi bạn. apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,Bạn cũng có thể sao chép-dán này @@ -1546,8 +1609,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,Hình ảnh đính kèm DocType: Workflow State,list-alt,danh sách-alt apps/frappe/frappe/www/update-password.html,Password Updated,Cập nhật mật khẩu +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Các bước để xác minh đăng nhập của bạn apps/frappe/frappe/utils/password.py,Password not found,Mật khẩu không tìm thấy +DocType: Webhook,Webhook Secret,Bí mật webhook DocType: Data Migration Mapping,Page Length,Độ dài trang DocType: Email Queue,Expose Recipients,Đưa ra nhận apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Nối Để là bắt buộc đối với các thư đến @@ -1575,6 +1640,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col 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,Have an account? Login,Có một tài khoản? Đăng nhập +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,Cài đặt in ... DocType: Workflow State,arrow-down,mũi tên xuống apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Hàng {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Người sử dụng không được phép xóa {0}: {1} @@ -1596,6 +1662,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Nhập m DocType: Dropbox Settings,Dropbox Access Secret,Dropbox truy cập bí mật DocType: Tag Link,Document Title,Tiêu đề tài liệu apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Bắt buộc) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước DocType: Social Login Key,Social Login Provider,Nhà cung cấp đăng nhập xã hội apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Thêm bình luận khác apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Không tìm thấy dữ liệu trong tệp. Vui lòng đóng lại tệp mới bằng dữ liệu. @@ -1610,11 +1677,12 @@ DocType: Workflow State,hand-down,tay xuống apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",Không tìm thấy trường nào có thể được sử dụng làm Cột Kanban. Sử dụng Biểu mẫu tùy chỉnh để thêm Trường tùy chỉnh loại "Chọn". DocType: Address,GST State,bang GST apps/frappe/frappe/core/doctype/doctype/doctype.py,{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/public/js/frappe/views/components/Desktop.vue,User ({0}),Người dùng ({0}) DocType: Website Theme,Theme,Chủ đề DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Chuyển hướng URI hạn chế tới mã AUth apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,Mở Trợ giúp DocType: DocType,Is Submittable,CÓ thể đệ trình -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Đề cập mới +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,Đề cập mới apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Không có Danh bạ Google mới được đồng bộ hóa. DocType: File,Uploaded To Google Drive,Đã tải lên Google Drive apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,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 @@ -1626,7 +1694,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,Hộp thư đến DocType: Kanban Board Column,Red,Đỏ DocType: Workflow State,Tag,Tag -DocType: Custom Script,Script,bản thảo +DocType: Report,Script,bản thảo apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,Tài liệu không thể lưu. DocType: Energy Point Rule,Maximum Points,Điểm tối đa apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Thiết lập của tôi @@ -1656,9 +1724,12 @@ DocType: Address,Haryana,Haryana apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} điểm đánh giá cao cho {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,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,Add Comment,Thêm bình luận +DocType: Dashboard Chart,Select Date Range,Chọn phạm vi ngày DocType: DocField,Mandatory,Bắt buộc apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Mô- đun để xuất khẩu +DocType: Scheduled Job Type,Monthly Long,Hàng tháng dài apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: Không có quyền cơ bản nào được thiết lập +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,Gửi email đến {0} để liên kết nó ở đây apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend","Ý Nghĩa của Gửi, Hủy bỏ, sửa đổi" apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Để làm @@ -1667,7 +1738,6 @@ DocType: Milestone Tracker,Track milestones for any document,Theo dõi các mố DocType: Social Login Key,Identity Details,Thông tin Nhận dạng apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},Chuyển đổi trạng thái dòng công việc không được phép từ {0} sang {1} apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Hiển thị bảng điều khiển -apps/frappe/frappe/desk/form/assign_to.py,New Message,Tin nhắn mới DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,truy vấn báo cáo DocType: Data Import Beta,Template Warnings,Cảnh báo mẫu @@ -1678,18 +1748,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,Liên kết apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,Chỉnh sửa Cài đặt Báo cáo Email tự động DocType: Chat Room,Message Count,Số lượng tin nhắn DocType: Workflow State,book,sách +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1} được liên kết với các tài liệu được gửi sau đây: {2} DocType: Communication,Read by Recipient,Đọc bởi người nhận DocType: Website Settings,Landing Page,Trang hạ cánh apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,Lỗi trong Tuỳ chỉnh Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Tên apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Quyền không thiết lập cho các tiêu chí này. DocType: Auto Email Report,Auto Email Report,Báo cáo Email tự động +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,Tài liệu mới được chia sẻ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,Xóa comment? DocType: Address Template,This format is used if country specific format is not found,Định dạng này được sử dụng nếu định dạng quốc gia cụ thể không được tìm thấy DocType: System Settings,Allow Login using Mobile Number,Cho phép đăng nhập sử dụng số di động apps/frappe/frappe/public/js/frappe/request.js,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 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Nếu được bật, người dùng đăng nhập từ Địa chỉ IP bị hạn chế sẽ không được nhắc về Xác thực hai yếu tố" +DocType: Server Script,After Cancel,Sau khi hủy DocType: Auto Repeat,Get Contacts,Tải danh sách liên hệ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Bài viết đệ dưới {0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Bỏ qua cột không tên @@ -1700,6 +1773,7 @@ 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 +DocType: Notification Log,Mention,Đề cập DocType: DocPerm,DocPerm,DocPerm DocType: Print Settings,Fonts,Phông chữ apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,Chính xác nên được giữa 1 và 6 @@ -1707,7 +1781,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,và apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},Báo cáo này được tạo vào ngày {0} DocType: Error Snapshot,Frames,Khung -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Chuyển nhượng +DocType: Notification Log,Assignment,Chuyển nhượng DocType: Notification,Slack Channel,Slack Channel 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 @@ -1724,7 +1798,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,Không thể cập nhật sự kiện apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,Mã xác minh đã được gửi tới địa chỉ email đã đăng ký của bạn. apps/frappe/frappe/core/doctype/user/user.py,Throttled,Bị hạn chế +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,Mục tiêu của bạn apps/frappe/frappe/utils/data.py,"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/model/naming.py,No Name Specified for {0},Không có tên được chỉ định cho {0} apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,Áp dụng quy tắc chuyển nhượng apps/frappe/frappe/utils/bot.py,show,hiển thị apps/frappe/frappe/utils/data.py,Invalid field name {0},Tên trường không hợp lệ {0} @@ -1734,7 +1810,6 @@ DocType: Workflow State,text-height,chiều cao văn bản DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Lập bản đồ kế hoạch di chuyển dữ liệu apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Bắt đầu Frappé ... DocType: Web Form Field,Max Length,Độ dài tối đa -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},Đối với {0} {1} DocType: Print Format,Jinja,Jinja DocType: Workflow State,map-marker,đánh dấu bản đồ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Nộp cho quản trị @@ -1770,6 +1845,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,Trang bị mất hoặc ch apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,Nhận xét DocType: DocType,Route,tuyến đường apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,thiết lập cổng thanh toán Razorpay +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0} đã đạt được {1} điểm cho {2} {3} apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,Tìm nạp hình ảnh đính kèm từ tài liệu DocType: Chat Room,Name,Tên DocType: Contact Us Settings,Skype,Skype @@ -1780,7 +1856,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,Mở liên k apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,Ngôn ngữ của bạn DocType: Dashboard Chart,Average,Trung bình cộng apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,Thêm dòng -DocType: Tag Category,Doctypes,doctypes apps/frappe/frappe/public/js/frappe/form/print.js,Printer,Máy in apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,Truy vấn phải là một lựa chọn DocType: Auto Repeat,Completed,Hoàn thành @@ -1840,6 +1915,7 @@ DocType: GCalendar Account,Next Sync Token,Mã thông báo đồng bộ hóa ti DocType: Energy Point Settings,Energy Point Settings,Cài đặt điểm năng lượng DocType: Async Task,Succeeded,Thành công apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Trường bắt buộc là cần thiết trong {0} +DocType: Onboarding Slide Field,Align,Căn chỉnh apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Thiết lập lại Quyền cho {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Người sử dụng và Quyền DocType: S3 Backup Settings,S3 Backup Settings,Cài đặt sao lưu S3 @@ -1856,7 +1932,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Tên định dạng in mới apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Nhấp vào liên kết dưới đây để phê duyệt yêu cầu DocType: Workflow State,align-left,sắp xếp bên trái +DocType: Onboarding Slide,Action Settings,Cài đặt hành động DocType: User,Defaults,Mặc định +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)." DocType: Energy Point Log,Revert Of,Hoàn nguyên apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Kết hợp với hiện tại DocType: User,Birth Date,Ngày sinh @@ -1912,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Trong DocType: Notification,Value Change,Thay đổi giá trị DocType: Google Contacts,Authorize Google Contacts Access,Cho phép truy cập danh bạ Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Chỉ hiển thị các trường Số liệu từ Báo cáo +apps/frappe/frappe/utils/data.py,1 week ago,1 tuần trước DocType: Data Import Beta,Import Type,Loại nhập khẩu DocType: Access Log,HTML Page,Trang HTML DocType: Address,Subsidiary,Công ty con @@ -1921,7 +2000,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,Với tiêu đề trang apps/frappe/frappe/email/smtp.py,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 -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Quản trị viên chỉ được phép tạo ra truy vấn / bản thảo báo cáo apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Đang cập nhật DocType: Data Import Beta,Preview,Xem trước apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"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 @@ -1931,6 +2009,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,Mời như DocType: Data Migration Run,Started,Bắt đầu apps/frappe/frappe/permissions.py,User {0} does not have access to this document,Người dùng {0} không có quyền truy cập vào tài liệu này DocType: Data Migration Run,End Time,End Time +DocType: Dashboard Chart,Group By Based On,Nhóm dựa trên apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Chọn File đính kèm apps/frappe/frappe/model/naming.py, for {0},cho {0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Bạn không được phép in tài liệu này @@ -1972,6 +2051,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,Xác nhận DocType: Workflow Document State,Update Field,Cập nhật Dòng DocType: Chat Profile,Enable Chat,Bật Trò chuyện DocType: LDAP Settings,Base Distinguished Name (DN),Cơ sở tên phân biệt (DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Để lại cuộc trò chuyện này apps/frappe/frappe/model/base_document.py,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/core/page/background_jobs/background_jobs.html,Queue / Worker,Hàng đợi / Công nhân @@ -2040,12 +2120,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,Đăng nhập không được phép tại thời điểm này DocType: Data Migration Run,Current Mapping Action,Hành động lập bản đồ hiện tại DocType: Dashboard Chart Source,Source Name,Tên nguồn -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Không có tài khoản email liên kết với Người dùng. Vui lòng thêm một tài khoản trong Người dùng> Hộp thư đến Email. DocType: Email Account,Email Sync Option,Đồng bộ hóa email Tùy chọn apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,Hàng Không DocType: Async Task,Runtime,chạy thời gian DocType: Post,Is Pinned,Được ghim DocType: Contact Us Settings,Introduction,Giới thiệu chung +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,Cần giúp đỡ? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin toàn cầu apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Theo dõi bởi DocType: LDAP Settings,LDAP Email Field,Trường Email LDAP @@ -2055,7 +2135,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Đã đư DocType: User Email,Enable Outgoing,Kích hoạt Outgoing DocType: Address,Fax,Fax apps/frappe/frappe/config/customization.py,Custom Tags,Thẻ tùy chỉnh -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản email không được thiết lập. Vui lòng tạo Tài khoản Email mới từ Cài đặt> Email> Tài khoản Email DocType: Comment,Submitted,Đã lần gửi DocType: Contact,Pulled from Google Contacts,Kéo từ Danh bạ Google apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,Yêu cầu không hợp lệ @@ -2076,9 +2155,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,Trang chủ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,Gán cho tôi DocType: DocField,Dynamic Link,Liên kết động apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Nhấn phím Alt để kích hoạt các phím tắt bổ sung trong Menu và Sidebar +DocType: Dashboard Chart,To Date,Đến ngày DocType: List View Setting,List View Setting,Cài đặt danh sách apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,Hiện những thao tác thất bại -DocType: Event,Details,Chi tiết +DocType: Scheduled Job Log,Details,Chi tiết DocType: Property Setter,DocType or Field,DocType hoặc Dòng apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,Bạn đã bỏ theo dõi tài liệu này apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,Màu chính @@ -2087,7 +2167,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,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,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,Quick Help for Setting Permissions,Trợ giúp nhanh cho việc thiết lập quyền hạn -DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE để Gán khóa apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,Hiện Tái phát apps/frappe/frappe/core/doctype/communication/communication.js,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 @@ -2103,6 +2182,7 @@ DocType: Workflow State,Upload,tải lên DocType: User Permission,Advanced Control,Kiểm soát nâng cao DocType: System Settings,Date Format,Định dạng ngày apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Không đăng +apps/frappe/frappe/contacts/doctype/address/address.py,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 cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ. apps/frappe/frappe/config/settings.py,"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: Data Import,Skip rows with errors,Bỏ qua hàng có lỗi DocType: Workflow State,flag,cờ @@ -2112,7 +2192,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,In t apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Nhảy đến trường DocType: Contact Us Settings,Forward To Email Address,Chuyển tiếp tới địa chỉ email DocType: Contact Phone,Is Primary Phone,Là điện thoại chính -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Gửi email đến {0} để liên kết nó ở đây. DocType: Auto Email Report,Weekdays,Ngày thường apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} hồ sơ sẽ được xuất apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,đoạn tiêu đề phải là một đoạn tên hợp lệ @@ -2120,7 +2199,7 @@ DocType: Post Comment,Post Comment,đăng bình luận apps/frappe/frappe/config/core.py,Documents,Tài liệu apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,Hoạt động Đăng nhập bởi DocType: Social Login Key,Custom Base URL,URL cơ sở tùy chỉnh -DocType: Email Flag Queue,Is Completed,Đã được hoàn thành +DocType: Onboarding Slide,Is Completed,Đã được hoàn thành apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,Nhận trường apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,Sửa hồ sơ DocType: Kanban Board Column,Archived,Lưu trữ @@ -2131,12 +2210,13 @@ 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 DocType: Social Login Key,Office 365,Văn phòng 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hôm nay -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hôm nay +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Hôm nay +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,Hôm nay apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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: Data Import Beta,Submit After Import,Gửi sau khi nhập 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: Onboarding Slide Help Link,Onboarding Slide Help Link,Liên kết trợ giúp trượt DocType: OAuth Client,App Client Secret,App Khách hàng Bí mật apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,Trình apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Cha mẹ là tên của tài liệu mà dữ liệu sẽ được thêm vào. @@ -2144,7 +2224,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,CHỮ HOA apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,Tuỳ chỉnh HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Nhập tên thư mục -apps/frappe/frappe/contacts/doctype/address/address.py,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 cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ. apps/frappe/frappe/auth.py,Unknown User,Người dùng không biết apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,Chọn Vai trò DocType: Comment,Deleted,Đã bị xóa @@ -2160,7 +2239,7 @@ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Tạo biểu đồ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Không nhập -DocType: Web Page,Center,Trung tâm +DocType: Onboarding Slide Field,Center,Trung tâm DocType: Notification,Value To Be Set,Giá trị Để Đặt apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Chỉnh sửa {0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Đầu Cấp @@ -2168,7 +2247,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,Tên cơ sở dữ liệu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Dạng làm mới DocType: DocField,Select,Chọn -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,Xem nhật ký đầy đủ +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Xem nhật ký đầy đủ DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Biểu thức Python đơn giản, Ví dụ: status == 'Open' và gõ == 'Bug'" apps/frappe/frappe/utils/csvutils.py,File not attached,File chưa được đính kèm apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Kết nối bị mất. Một số tính năng có thể không hoạt động. @@ -2200,6 +2279,7 @@ DocType: Web Page,HTML for header section. Optional,HTML cho phần tiêu đề. apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,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,Maximum {0} rows allowed,Tối đa {0} hàng cho phép DocType: Dashboard Chart Link,Chart,Đồ thị +DocType: Scheduled Job Type,Cron,Cron DocType: Email Unsubscribe,Global Unsubscribe,Hủy đăng ký toàn cầu apps/frappe/frappe/utils/password_strength.py,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,View,Xem @@ -2216,6 +2296,7 @@ DocType: Data Migration Connector,Hostname,Tên máy chủ DocType: Data Migration Mapping,Condition Detail,Chi tiết Tình trạng apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}","Đối với đơn vị tiền tệ {0}, số tiền giao dịch tối thiểu phải là {1}" DocType: DocField,Print Hide,In Ẩn +DocType: System Settings,HH:mm:ss,HH: mm: ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,Đến người dùng apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,Giá trị nhập DocType: Workflow State,tint,gạch sọc @@ -2283,6 +2364,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Mã QR để X apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Thêm vào để làm DocType: Footer Item,Company,Giỏ hàng Giá liệt kê apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Trung bình {0} +DocType: Scheduled Job Log,Scheduled,Dự kiến DocType: User,Logout from all devices while changing Password,Đăng xuất khỏi tất cả thiết bị trong khi thay đổi Mật khẩu apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Xác Nhận Mật Khẩu apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Có một số lỗi @@ -2308,7 +2390,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Quyền của người dùng đã tồn tại apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Cột ánh xạ {0} đến trường {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Xem {0} -DocType: User,Hourly,Hàng giờ +DocType: Scheduled Job Type,Hourly,Hàng giờ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Đăng ký OAuth ứng dụng khách hàng DocType: DocField,Fetch If Empty,Tìm nạp nếu trống DocType: Data Migration Connector,Authentication Credentials,Xác thực giấy chứng nhận @@ -2319,10 +2401,10 @@ DocType: SMS Settings,SMS Gateway URL,URL cổng tin nhắn apps/frappe/frappe/model/base_document.py,"{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/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},đạt được {0} thông qua quy tắc tự động {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} hoặc {1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,Bạn đã thiết lập xong! DocType: Workflow State,trash,thùng rác DocType: System Settings,Older backups will be automatically deleted,sao lưu cũ sẽ được tự động xóa apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID truy cập không hợp lệ hoặc khóa truy cập bí mật. -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,Bạn đã mất một số điểm năng lượng DocType: Post,Is Globally Pinned,Được gắn trên toàn cầu apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,Hoạt động gần đây DocType: Workflow Transition,Conditions,Điều kiện @@ -2331,6 +2413,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,Xác nhận DocType: Event,Ends on,Kết thúc vào ngày DocType: Payment Gateway,Gateway,Gateway DocType: LDAP Settings,Path to Server Certificate,Đường dẫn đến chứng chỉ máy chủ +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,Javascript bị vô hiệu hóa trên trình duyệt của bạn apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,Không có đủ quyền để xem liên kết apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,Địa chỉ Tiêu đề là bắt buộc. DocType: Google Contacts,Push to Google Contacts,Nhấn vào Danh bạ Google @@ -2349,7 +2432,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,eu-tây-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Nếu điều này được chọn, các hàng có dữ liệu hợp lệ sẽ được nhập và các hàng không hợp lệ sẽ được bán vào một tệp mới để bạn nhập sau này." apps/frappe/frappe/public/js/frappe/form/workflow.js,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,"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: Communication,Read by Recipient On,Đọc bởi người nhận trên DocType: Blogger,Short Name,Tên viết tắt @@ -2382,6 +2464,7 @@ DocType: Translation,PR sent,Gửi PR DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Chỉ gửi bản ghi được cập nhật trong X giờ trước DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Chỉ gửi bản ghi được cập nhật trong X giờ trước DocType: Communication,Feedback,Thông tin phản hồi +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,Cập nhật lên phiên bản mới apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,Dịch mở apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,Email này được tạo tự động DocType: Workflow State,Icon will appear on the button,Biểu tượng sẽ xuất hiện trên nút @@ -2420,6 +2503,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,Trang khô DocType: DocField,Precision,Độ chính xác DocType: Website Slideshow,Slideshow Items,Slideshow mục apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,Hãy cố gắng tránh những từ và ký tự lặp đi lặp lại +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,Thông báo bị vô hiệu hóa +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,Bạn có chắc chắn muốn xóa tất cả các hàng? DocType: Workflow Action,Workflow State,Công việc nhà nước apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,hàng thêm apps/frappe/frappe/www/list.py,My Account,Tài Khoản Của Tôi @@ -2428,6 +2513,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,những ngày sau đó apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,Kết nối khay QZ đang hoạt động! DocType: Contact Us Settings,Settings for Contact Us Page,Cài đặt cho Trang Liên hệ +DocType: Server Script,Script Type,Loại kịch bản DocType: Print Settings,Enable Print Server,Bật máy chủ in apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,Cách đây {0} tuần DocType: Email Account,Footer,Phần chân @@ -2453,8 +2539,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,Cảnh báo apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,Điều này có thể được in trên nhiều trang DocType: Data Migration Run,Percent Complete,Phần trăm hoàn thành -DocType: Tag Category,Tag Category,Tag Thể loại -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)." DocType: Google Calendar,Pull from Google Calendar,Kéo từ Lịch Google apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,Trợ giúp DocType: User,Login Before,Trước khi đăng nhập @@ -2464,17 +2548,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ẩn các ngày cuối tuần apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Tự động tạo tài liệu định kỳ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Là +DocType: Onboarding Slide,ERPNext,ERPNext DocType: Workflow State,info-sign,thông tin-dấu apps/frappe/frappe/model/base_document.py,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","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/public/js/frappe/list/list_view.js,Submit {0} documents?,Gửi {0} tài liệu? apps/frappe/frappe/utils/response.py,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/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Lỗi kết nối với Ứng dụng Khay QZ ... <br><br> Bạn cần cài đặt và chạy ứng dụng QZ Khay để sử dụng tính năng In thô. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Nhấn vào đây để tải xuống và cài đặt QZ Khay</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Nhấn vào đây để tìm hiểu thêm về In thô</a> ." apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Bản đồ máy in apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Hãy lưu trước khi đính kèm. +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Bạn có muốn hủy bỏ tất cả các tài liệu liên kết? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Thêm {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,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,Role Permissions,Quyền hạn vai trò DocType: Help Article,Intermediate,Trung gian +apps/frappe/frappe/config/settings.py,Email / Notifications,Thông báo thư điện tử apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} đã thay đổi {1} thành {2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,Đã hủy Phục hồi Tài liệu dưới dạng Bản nháp DocType: Data Migration Run,Start Time,Thời gian bắt đầu @@ -2491,6 +2579,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share,C apps/frappe/frappe/email/smtp.py,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 DocType: System Settings,Allow Login After Fail,Cho phép đăng nhập sau khi thất bại +DocType: DocType Link,DocType Link,Liên kết tài liệu DocType: Role Permission for Page and Report,Set Role For,Đặt Vai trò Đối với DocType: GCalendar Account,The name that will appear in Google Calendar,Tên sẽ xuất hiện trong Lịch Google apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Phòng trực tiếp với {0} đã tồn tại. @@ -2508,6 +2597,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Tạo m DocType: Contact,Google Contacts,Danh bạ Google DocType: GCalendar Account,GCalendar Account,Tài khoản GCalendar DocType: Email Rule,Is Spam,là Spam +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,Cuối cùng apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Báo cáo {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Mở {0} DocType: Data Import Beta,Import Warnings,Cảnh báo nhập khẩu @@ -2519,6 +2609,7 @@ DocType: Workflow State,ok-sign,ok-dấu apps/frappe/frappe/config/settings.py,Deleted Documents,hồ sơ đã xóa apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Định dạng CSV phân biệt chữ hoa chữ thường apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,biểu tượng màn hình chờ tồn tại sẵn +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Chỉ định trong những gì tất cả các tên miền sẽ hiển thị. Nếu không có gì được chỉ định, slide được hiển thị trong tất cả các miền theo mặc định." apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Bản sao apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Trường {1} trong hàng {2} không thể bị ẩn và bắt buộc mà không có mặc định DocType: Newsletter,Create and Send Newsletters,Tạo và Gửi Tin @@ -2529,6 +2620,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,ID sự kiện lịch Google apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added","""Gốc"" biểu thị một bảng gốc nơi mà dãy này phải được thêm vào" apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,Điểm đánh giá: +DocType: Scheduled Job Log,Scheduled Job Log,Nhật ký công việc theo lịch trình +DocType: Server Script,Before Delete,Trước khi xóa apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,Với chia sẻ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Đính kèm tệp / url và thêm vào bảng. apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,Tin nhắn không được thiết lập @@ -2552,19 +2645,21 @@ DocType: About Us Settings,Settings for the About Us Page,Cài đặt cho các G apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Cài đặt cổng thanh toán sọc apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Cài đặt cổng thanh toán sọc apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,In Gửi đến máy in! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,Điểm năng lượng +DocType: Notification Settings,Energy Points,Điểm năng lượng +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Thời gian {0} phải ở định dạng: {1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ví dụ: pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,Tạo khóa apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Điều này sẽ xóa vĩnh viễn dữ liệu của bạn. DocType: DocType,View Settings,Xem Cài đặt +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,Thông báo mới DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,Cấu trúc yêu cầu +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,Phương thức điều khiển get_razorpay_order bị thiếu DocType: Personal Data Deletion Request,Pending Verification,Đang chờ xác minh DocType: Website Meta Tag,Website Meta Tag,Thẻ meta trang web DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.","Nếu cổng không chuẩn (ví dụ 587). Nếu trên Google Cloud, hãy thử cổng 2525." apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.","Xóa ngày kết thúc, vì nó không thể trong quá khứ cho các trang đã xuất bản." DocType: User,Send Me A Copy of Outgoing Emails,Gửi cho tôi một bản sao của email gửi đi -DocType: System Settings,Scheduler Last Event,Scheduler Event cuối DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Thêm Google Analytics ID: ví dụ. UA-89XXX57-1. Hãy tìm kiếm sự giúp đỡ về Google Analytics để biết thêm thông tin. apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,Mật khẩu không thể dài hơn 100 ký tự DocType: OAuth Client,App Client ID,App Client ID @@ -2593,6 +2688,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,Mật khẩu apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} đã chia sẻ tài liệu này với {1} DocType: Website Settings,Brand Image,Hình ảnh của nhãn hàng DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,Mẫu nhập phải chứa một Tiêu đề và ít nhất một hàng. apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Lịch Google đã được định cấu hình. apps/frappe/frappe/config/website.py,"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 @@ -2602,6 +2698,7 @@ DocType: User Social Login,User Social Login,User Social Login apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0} đã chỉ trích công việc của bạn trên {1} với {2} điểm DocType: Contact,All,Tất cả DocType: Email Queue,Recipient,Người nhận +DocType: Webhook,Webhook Security,Bảo mật webhook DocType: Communication,Has Attachment,có tập tin đính kèm DocType: Address,Sales User,Bán tài khoản apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Kéo và thả công cụ để xây dựng và tùy dạng Print. @@ -2668,7 +2765,6 @@ DocType: Data Migration Mapping,Migration ID Field,Trường ID di chuyển DocType: Dashboard Chart,Last Synced On,Đã đồng bộ hóa lần cuối DocType: Comment,Comment Type,Comment Loại DocType: OAuth Client,OAuth Client,OAuth khách hàng -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} đã chỉ trích công việc của bạn trên {1} {2} DocType: Assignment Rule,Users,Người sử dụng DocType: Address,Odisha,Odhisha DocType: Report,Report Type,Loại báo cáo @@ -2694,14 +2790,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,Mục trình diễn websi apps/frappe/frappe/model/workflow.py,Self approval is not allowed,Tự phê duyệt không được phép DocType: GSuite Templates,Template ID,Mẫu ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,Kết hợp Loại khoản tài trợ ( <code>{0}</code> ) và Loại phản hồi ( <code>{1}</code> ) không được phép -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Bài viết mới từ {0} 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,Đề mục của trường hợp apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,Nhấp vào liên kết dưới đây để tải xuống dữ liệu của bạn apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},Hộp thư email đã bật cho người dùng {0} DocType: Data Migration Run,Data Migration Run,Chạy di chuyển dữ liệu DocType: Blog Post,Email Sent,Email đã gửi -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,Lớn hơn DocType: DocField,Ignore XSS Filter,Bỏ qua bộ lọc apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,loại bỏ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,thiết lập Dropbox sao lưu @@ -2756,6 +2850,7 @@ DocType: Async Task,Queued,Xếp hàng DocType: Braintree Settings,Use Sandbox,sử dụng Sandbox apps/frappe/frappe/utils/goal.py,This month,Tháng này apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Định dạng in mặc định mới +DocType: Server Script,Before Save (Submitted Document),Trước khi lưu (Tài liệu đã gửi) DocType: Custom DocPerm,Create,Tạo apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,Không còn mục nào để hiển thị apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,Tới bản ghi trước @@ -2813,6 +2908,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,Di chuyển vào thùng rác DocType: Web Form,Web Form Fields,Các đoạn mẫu web DocType: Data Import,Amended From,Sửa đổi Từ +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,Thêm một liên kết video trợ giúp chỉ trong trường hợp người dùng không biết phải điền gì vào slide. apps/frappe/frappe/public/js/frappe/model/meta.js,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} DocType: S3 Backup Settings,eu-north-1,eu-bắc-1 apps/frappe/frappe/model/document.py,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 @@ -2835,6 +2931,7 @@ DocType: Blog Post,Blog Post,Bài Blog DocType: Access Log,Export From,Xuất khẩu từ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Tìm kiếm nâng cao apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Bạn không được phép xem bản tin. +DocType: Dashboard Chart,Group By,Nhóm theo DocType: User,Interests,Sở thích apps/frappe/frappe/core/doctype/user/user.py,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 DocType: Energy Point Rule,Allot Points To Assigned Users,Phân bổ điểm cho người dùng được chỉ định @@ -2850,6 +2947,7 @@ DocType: Assignment Rule,Assignment Rule,Quy tắc chuyển nhượng apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},Tên đăng nhập đề nghị: {0} DocType: Assignment Rule Day,Day,ngày apps/frappe/frappe/public/js/frappe/desk.js,Modules,các mô đun +DocType: DocField,Mandatory Depends On,Bắt buộc phụ thuộc vào apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,thanh toán thành công apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,Không {0} mail DocType: OAuth Bearer Token,Revoked,bị thu hồi @@ -2857,6 +2955,7 @@ DocType: Web Page,Sidebar and Comments,sidebar và Bình luận apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"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ũ." apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Không được phép đính kèm tài liệu {0}, vui lòng bật Cho phép in cho {0} trong Cài đặt in" +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản email không được thiết lập. Vui lòng tạo Tài khoản Email mới từ Cài đặt> Email> Tài khoản Email apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Xem tài liệu tại {0} 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 @@ -2872,13 +2971,13 @@ DocType: Currency,Fraction,Phần apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,Sự kiện được đồng bộ hóa với Lịch Google. DocType: LDAP Settings,LDAP First Name Field,Tên trường LDAP đầu tiên DocType: Contact,Middle Name,Tên đệm +DocType: DocField,Property Depends On,Tài sản phụ thuộc vào DocType: Custom Field,Field Description,Dòng Mô tả apps/frappe/frappe/model/naming.py,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,Email Inbox,Hộp thư đến email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Cập nhật {0} trong số {1}, {2}" DocType: Auto Email Report,Filters Display,Bộ lọc hiển thị apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Trường "đã sửa đổi" phải có mặt để thực hiện sửa đổi. -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} đánh giá cao công việc của bạn trên {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Lưu bộ lọc DocType: Address,Plant,Cây apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Trả lời tất cả @@ -2919,11 +3018,11 @@ DocType: Workflow State,folder-close,thư mục đóng apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,Bài báo cáo: DocType: Print Settings,Print taxes with zero amount,In thuế với số tiền bằng không apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} không được phép đổi tên +DocType: Server Script,Before Insert,Trước khi chèn DocType: Custom Script,Custom Script,Tùy chỉnh Script DocType: Address,Address Line 2,Địa chỉ Dòng 2 DocType: Address,Reference,Tham chiếu apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,Để giao -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vui lòng thiết lập Tài khoản Email mặc định từ Cài đặt> Email> Tài khoản Email DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Chi tiết bản đồ chuyển đổi dữ liệu DocType: Data Import,Action,thao tác DocType: GSuite Settings,Script URL,URL bản thảo @@ -2949,11 +3048,13 @@ DocType: User,Api Access,Truy cập Api 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,Invalid login or password,Đăng nhập hoặc mật khẩu không hợp lệ +DocType: Scheduled Job Type,Weekly Long,Hàng tuần dài apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,Tải mẫu apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Thêm tùy chỉnh với các hình thức javascript. ,Role Permissions Manager,Quản lý vai trò apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Tên của Format In mới apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Chuyển đổi Sidebar +DocType: Server Script,After Save (Submitted Document),Sau khi lưu (Tài liệu đã gửi) DocType: Data Migration Run,Pull Insert,Kéo chèn DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)","Điểm tối đa được phép sau khi nhân điểm với giá trị số nhân (Lưu ý: Không giới hạn, hãy để trống trường này hoặc đặt 0)" @@ -2973,6 +3074,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP không được cài đặt apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Tải dữ liệu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},thay đổi giá trị cho {0} {1} +DocType: Server Script,Before Cancel,Trước khi hủy DocType: Workflow State,hand-right,tay phải DocType: Website Settings,Subdomain,Tên miền phụ DocType: S3 Backup Settings,Region,Vùng @@ -3019,12 +3121,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,Mật khẩu cũ DocType: S3 Backup Settings,us-east-1,chúng tôi-đông-1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Bài viết bởi {0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.","Để định dạng cột, cho nhãn cột trong truy vấn." +DocType: Onboarding Slide,Slide Fields,Trường trượt DocType: Has Domain,Has Domain,Có miền DocType: User,Allowed In Mentions,Được phép trong Mentions apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Không có tài khoản rồi? Đăng ký apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,Không thể xóa trường ID apps/frappe/frappe/core/doctype/doctype/doctype.py,{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 +DocType: Notification Settings,Subscribed Documents,Tài liệu đăng ký apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,Thiết lập người dùng DocType: Report,Reference Report,Báo cáo tham khảo DocType: Activity Log,Link DocType,liên kết kiểu văn bản @@ -3042,6 +3146,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Cho phép truy cập l apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Các trang web mà bạn đang tìm kiếm là mất tích. Đây có thể là vì nó được di chuyển hoặc có một lỗi đánh máy trong liên kết. apps/frappe/frappe/www/404.html,Error Code: {0},Mã lỗi: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Mô tả cho trang danh sách, trong văn bản đơn giản, chỉ có một vài dòng. (Tối đa 140 ký tự)" +DocType: Server Script,DocType Event,Sự kiện DocType apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} là các trường bắt buộc DocType: Workflow,Allow Self Approval,Cho phép tự phê duyệt DocType: Event,Event Category,Danh mục sự kiện @@ -3058,6 +3163,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tên của bạn apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Kết nối thành công DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Một Slide Slide trên tàu Loại tiếp tục đã tồn tại. DocType: DocType,Default Sort Field,Trường sắp xếp mặc định DocType: File,Is Folder,Là thư mục DocType: Document Follow,DocType,DocType @@ -3096,8 +3202,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,giá tr DocType: Workflow State,arrow-up,mũi tên lên DocType: Dynamic Link,Link Document Type,Loại tài liệu liên kết apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Cần có ít nhất một hàng cho bảng {0} +DocType: Server Script,Server Script,Tập lệnh máy chủ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Để định cấu hình Lặp lại tự động, bật "Cho phép lặp lại tự động" từ {0}." DocType: OAuth Bearer Token,Expires In,hết hạn trong +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)","Số lần bạn muốn lặp lại bộ trường (ví dụ: nếu bạn muốn có 3 khách hàng trong trang chiếu, hãy đặt trường này thành 3. Chỉ bộ trường đầu tiên được hiển thị là bắt buộc trong trang chiếu)" DocType: DocField,Allow on Submit,Cho phép khi Đệ trình DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,Loại ngoại lệ @@ -3107,6 +3215,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,Tiêu đề apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,sự kiện sắp tới apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,Vui lòng nhập giá trị cho các ứng dụng Access Key và App bí mật chính +DocType: Email Account,Append Emails to Sent Folder,Nối các email vào thư mục đã gửi DocType: Web Form,Accept Payment,Chấp nhận thanh toán apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Chọn mục danh sách apps/frappe/frappe/config/core.py,A log of request errors,Một bản ghi báo lỗi @@ -3125,7 +3234,7 @@ DocType: Translation,Contributed,Đóng góp apps/frappe/frappe/config/customization.py,Form Customization,Tùy chỉnh mẫu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Không có Phiên tích cực DocType: Web Form,Route to Success Link,Hướng đến liên kết thành công -DocType: Top Bar Item,Right,Được rồi. +DocType: Onboarding Slide Field,Right,Được rồi. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,Không có sự kiện sắp tới DocType: User,User Type,Loại người sử dụng DocType: Prepared Report,Ref Report DocType,Ref Report DocType @@ -3143,6 +3252,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,Vui lòng thử apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',URL phải bắt đầu bằng 'http: //' hoặc 'https: //' apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Lựa chọn 3 DocType: Communication,uid,uid +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,Điều này không thể được hoàn tác DocType: Workflow State,Edit,Sửa DocType: Website Settings,Chat Operators,Nhà điều hành trò chuyện DocType: S3 Backup Settings,ca-central-1,ca-trung-1 @@ -3154,7 +3264,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,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,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 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,Báo cáo với hơn 10 cột trông tốt hơn trong chế độ Phong cảnh. apps/frappe/frappe/database/database.py,Invalid field name: {0},Tên trường không hợp lệ: {0} DocType: Milestone,Milestone,Sự kiện quan trọng @@ -3163,7 +3272,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},Chuyển đến {0} apps/frappe/frappe/email/queue.py,Emails are muted,Email là tắt tiếng apps/frappe/frappe/config/integrations.py,Google Services,Dịch vụ của Google apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Up -apps/frappe/frappe/utils/data.py,1 weeks ago,1 tuần trước +DocType: Onboarding Slide,Slide Description,Mô tả slide DocType: Communication,Error,Lỗi apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,Vui lòng thiết lập thông báo trước DocType: Auto Repeat,End Date,Ngày kết thúc @@ -3184,10 +3293,12 @@ DocType: Footer Item,Group Label,nhóm Label DocType: Kanban Board,Kanban Board,Kanban Board apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Danh bạ Google đã được định cấu hình. apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 bản ghi sẽ được xuất +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Không có tài khoản email liên quan đến Người dùng. Vui lòng thêm một tài khoản trong Người dùng> Hộp thư đến Email. DocType: DocField,Report Hide,Báo cáo Ẩn apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},cây không có sẵn cho {0} DocType: DocType,Restrict To Domain,Hạn chế miền DocType: Domain,Domain,Tên miền +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,URL tệp không hợp lệ. Vui lòng liên hệ với Quản trị viên hệ thống. DocType: Custom Field,Label Help,Nhãn Trợ giúp DocType: Workflow State,star-empty,sao - rỗng apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Ngày thường dễ đoán. @@ -3212,6 +3323,7 @@ DocType: Workflow State,hand-left,tay trái DocType: Data Import,If you are updating/overwriting already created records.,Nếu bạn đang cập nhật / ghi đè hồ sơ đã tạo. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,Là toàn cầu DocType: Email Account,Use SSL,Sử dụng SSL +DocType: Webhook,HOOK-.####,HOOK -. #### DocType: Workflow State,play-circle,chơi vòng tròn apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Không thể gán đúng tài liệu apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",Biểu thức "depends_on" không hợp lệ @@ -3228,6 +3340,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,Làm mới lần cuối apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Đối với loại tài liệu DocType: Workflow State,arrow-right,mũi tên bên phải +DocType: Server Script,API Method,Phương pháp API 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 DocType: Letter Head,Letter Head Based On,Đầu thư dựa trên apps/frappe/frappe/utils/oauth.py,Token is missing,Thông báo bị mất @@ -3267,6 +3380,7 @@ DocType: Comment,Relinked,liên kết lại DocType: Print Settings,Compact Item Print,Nhỏ gọn mục Print DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,CHuyển hướng URL +DocType: Onboarding Slide Field,Placeholder,Giữ chỗ DocType: SMS Settings,Enter url parameter for receiver nos,Nhập tham số url cho người nhận nos DocType: Chat Profile,Online,Trực tuyến DocType: Email Account,Always use Account's Name as Sender's Name,Luôn sử dụng Tên tài khoản làm Tên người gửi @@ -3276,7 +3390,6 @@ DocType: Workflow State,Home,Trang chủ DocType: OAuth Provider Settings,Auto,Tự động DocType: System Settings,User can login using Email id or User Name,Người dùng có thể đăng nhập bằng cách sử dụng Email id hoặc User Name DocType: Workflow State,question-sign,câu hỏi-dấu -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} bị vô hiệu hóa apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Trường "tuyến đường" là bắt buộc đối với Lượt xem web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Chèn Cột Trước {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Người dùng từ lĩnh vực này sẽ được thưởng điểm @@ -3301,6 +3414,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Nếu chủ DocType: Data Migration Mapping,Push,Đẩy apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,Thả tập tin ở đây DocType: OAuth Authorization Code,Expiration time,thời gian hết hạn +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,Tài liệu mở 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,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. @@ -3316,6 +3430,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Phím tắt DocType: Desktop Icon,Page,Trang apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},Không tìm thấy {0} trong {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Họ và tên dễ đoán +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},Tài liệu được đổi tên từ {0} thành {1} apps/frappe/frappe/config/website.py,Knowledge Base,Kiến thức cơ bản DocType: Workflow State,briefcase,cặp tài liệu apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Giá trị không thể thay đổi cho {0} @@ -3352,6 +3467,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,Định dạng in apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Chuyển đổi Chế độ Xem Lưới apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Tới bản ghi tiếp theo +DocType: System Settings,Time Format,Định dạng thời gian apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,chứng thư cổng thanh toán không hợp lệ DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Đây là tệp mẫu được tạo chỉ với các hàng có lỗi. Bạn nên sử dụng tệp này để chỉnh sửa và nhập. apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Set Quyền trên các loại tài liệu và vai trò @@ -3395,12 +3511,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,Đáp lại apps/frappe/frappe/config/core.py,Pages in Desk (place holders),Các trang trong bàn (giữ chỗ) DocType: DocField,Collapsible Depends On,Phụ thuộc ráp On DocType: Print Style,Print Style Name,Tên Kiểu In +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,Nhóm theo trường là bắt buộc để tạo biểu đồ bảng điều khiển DocType: Print Settings,Allow page break inside tables,Cho phép trang phá vỡ bên trong bảng 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/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} phòng phải có tối đa một người dùng. DocType: DocType,Beta,thử nghiệm DocType: Dashboard Chart,Count,Đếm +DocType: Dashboard Chart,Group By Type,Nhóm theo loại apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},Nhận xét mới về {0}: {1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},phục hồi {0} là {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Nếu bạn đang chờ cập nhật, vui lòng chọn ""Overwrite"" hàng khác hiện tại sẽ không bị xóa." @@ -3411,8 +3529,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,Thông ti DocType: Web Form,Web Form,mẫu web apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Ngày {0} phải ở định dạng: {1} DocType: About Us Settings,Org History Heading,Org Lịch sử nhóm +DocType: Scheduled Job Type,Scheduled Job Type,Loại công việc theo lịch trình 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 +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,Bạn không có quyền hủy tất cả các tài liệu được liên kết. 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 @@ -3420,6 +3540,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,ESC apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},Tùy chỉnh cho <b>{0}</b> xuất ra: <br> {1} DocType: Website Settings,Include Search in Top Bar,Bao gồm tìm kiếm trong thanh trên cùng +DocType: Scheduled Job Type,Daily Long,Hàng ngày dài DocType: GSuite Settings,Allow GSuite access,Cho phép truy cập GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Đặt tên @@ -3523,6 +3644,7 @@ DocType: Notification,Send days before or after the reference date,Gửi ngày t DocType: User,Allow user to login only after this hour (0-24),Cho phép người dùng đăng nhập chỉ sau giờ này (0-24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence","Chỉ định từng cái một, theo thứ tự" DocType: Integration Request,Subscription Notification,Thông báo đăng ký +DocType: Customize Form Field, Allow in Quick Entry ,Cho phép nhập nhanh apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,hoặc đính kèm một DocType: Auto Repeat,Start Date,Ngày bắt đầu apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,Giá trị @@ -3537,6 +3659,7 @@ DocType: Google Drive,Backup Folder ID,ID thư mục sao lưu apps/frappe/frappe/core/doctype/doctype/doctype.py,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 +DocType: Onboarding Slide Help Link,Video,Video DocType: Assignment Rule,Priority,Ưu tiên DocType: Email Queue,Unsubscribe Param,Hủy đăng ký Param DocType: DocType,Hide Sidebar and Menu,Ẩn Thanh bên và Menu @@ -3548,6 +3671,7 @@ DocType: DocType,Allow Import (via Data Import Tool),Cho phép nhập khẩu (th apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,sr DocType: DocField,Float,Phao DocType: Print Settings,Page Settings,Cài đặt trang +DocType: Notification Settings,Notification Settings,Thiết lập thông báo apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Tiết kiệm... apps/frappe/frappe/www/update-password.html,Invalid Password,Mật khẩu không hợp lệ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Đã nhập thành công bản ghi {0} trong số {1}. @@ -3563,6 +3687,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,Hình ảnh đầu thư DocType: Address,Party GSTIN,Mã số GST cuả đối tác +DocType: Scheduled Job Type,Cron Format,Định dạng cron apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0} Báo cáo DocType: SMS Settings,Use POST,Sử dụng POST DocType: Communication,SMS,tin nhắn @@ -3608,18 +3733,20 @@ DocType: Workflow,Allow approval for creator of the document,Cho phép phê duy apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Lưu lại báo cáo DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,API đối tượng điểm cuối +DocType: DocType Action,Server Action,Hành động máy chủ apps/frappe/frappe/core/doctype/user/user.py,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/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,Trường mẹ phải là tên trường hợp lệ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,Không thành công khi đang sửa đổi đăng ký DocType: LDAP Settings,LDAP Group Field,Lĩnh vực nhóm LDAP +DocType: Notification Subscribed Document,Notification Subscribed Document,Tài liệu đăng ký thông báo apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,Bằng apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,Định dạng CSV không hợp lệ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","Lỗi kết nối với Ứng dụng Khay QZ ... <br><br> Bạn cần cài đặt và chạy ứng dụng QZ Khay, để sử dụng tính năng In thô. <br><br> <a href=""https://qz.io/download/"" target=""_blank"">Nhấn vào đây để tải xuống và cài đặt QZ Khay</a> . <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Nhấn vào đây để tìm hiểu thêm về In thô</a> ." apps/frappe/frappe/desk/page/backups/backups.js,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 apps/frappe/frappe/utils/data.py,1 year ago,1 năm trước +DocType: DocType,Links Section,Phần liên kết apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events","Xem Nhật ký của tất cả các sự kiện in, tải xuống và xuất" apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 tháng DocType: Contact,Contact,Liên hệ @@ -3646,16 +3773,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,Email mới DocType: Custom DocPerm,Export,Xuất apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.","Để sử dụng Lịch Google, bật {0}." +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},Đồng thời thêm trường phụ thuộc trạng thái {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},Đã cập nhật thành công {0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,Khay QZ không thành công: DocType: Dropbox Settings,Dropbox Settings,Cài đặt Dropbox DocType: About Us Settings,More content for the bottom of the page.,Nhiều nội dung cho dưới cùng của trang. apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,Tài liệu này đã được hoàn nguyên apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Sao lưu Google Drive thành công. +DocType: Webhook,Naming Series,Đặt tên series DocType: Workflow,DocType on which this Workflow is applicable.,DocType mà Workflow này được áp dụng. DocType: User,Enabled,Đã bật apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,Không thể hoàn tất thiết lập apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},Mới {0}: {1} -DocType: Tag Category,Category Name,Category Name +DocType: Blog Category,Category Name,Category Name apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,Cần chọn cha để lấy bảng dữ liệu con apps/frappe/frappe/email/doctype/email_group/email_group.js,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 @@ -3691,6 +3821,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,Lịch apps/frappe/frappe/client.py,No document found for given filters,Không có tài liệu nào được tìm thấy cho bộ lọc có sẵn apps/frappe/frappe/config/website.py,A user who posts blogs.,Một người dùng đăng blog. +DocType: DocType Action,DocType Action,Hành động DocType apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name","Khác {0} với tên {1} tồn tại, chọn tên khác" DocType: DocType,Custom?,Tùy chỉnh? DocType: Website Settings,Website Theme Image,Ảnh giao diện website @@ -3700,6 +3831,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},Không th apps/frappe/frappe/config/integrations.py,Backup,Sao lưu apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,Loại tài liệu là cần thiết để tạo một biểu đồ bảng điều khiển DocType: DocField,Read Only,Chỉ đọc +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,Không thể tạo đơn hàng razorpay apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,Bản tin DocType: Energy Point Log,Energy Point Log,Nhật ký năng lượng DocType: Print Settings,Send Print as PDF,Gửi In PDF @@ -3725,16 +3857,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Xá apps/frappe/frappe/www/login.html,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,Communicated via {0} on {1}: {2},Thông qua {0} trên {1}: {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{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/group_by/group_by.html,Select Group By...,Chọn nhóm theo ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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/utils/csvutils.py,{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 +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,Không tìm thấy bộ lọc apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Tích hợp danh bạ Google. DocType: Transaction Log,Transaction Log,Nhật ký giao dịch apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),Số liệu thống kê dựa trên hiệu suất của tháng trước (từ {0} đến {1}) DocType: Contact Us Settings,City,Thành phố +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,Ẩn thẻ cho tất cả người dùng apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,Bật Cho phép Tự động lặp lại cho loại tài liệu {0} trong Tùy chỉnh biểu mẫu DocType: DocField,Perm Level,Cấp độ cho phép apps/frappe/frappe/www/confirm_workflow_action.html,View document,Xem tài liệu @@ -3746,6 +3879,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'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,'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}" DocType: Energy Point Log,Appreciation,Sự đánh giá +DocType: Dashboard Chart,Number of Groups,Số lượng nhóm apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,Xem danh sách DocType: Workflow,Don't Override Status,Đừng Override Status apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Thuật ngữ tìm kiếm @@ -3787,7 +3921,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,cn-tây bắc-1 DocType: Dropbox Settings,Limit Number of DB Backups,Giới hạn số lượng bản sao lưu DB DocType: Custom DocPerm,Level,Mức độ -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,30 ngày trước DocType: Custom DocPerm,Report,Báo cáo apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,Số tiền phải lớn hơn 0. apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,Đã kết nối với Khay QZ! @@ -3804,6 +3937,7 @@ DocType: S3 Backup Settings,us-west-2,chúng tôi-tây-2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,Chọn bảng con apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Hành động chính kích hoạt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,Thay đổi +DocType: Social Login Key,User ID Property,Tài sản ID người dùng DocType: Email Domain,domain name,tên miền DocType: Contact Email,Contact Email,Email Liên hệ DocType: Kanban Board Column,Order,Yêu cầu @@ -3826,7 +3960,7 @@ DocType: Contact,Last Name,Tên DocType: Event,Private,Riêng apps/frappe/frappe/email/doctype/notification/notification.js,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: Onboarding Slide Field,Left,Trái DocType: Event,All Day,Tất cả các ngày apps/frappe/frappe/integrations/utils.py,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: GCalendar Settings,State,Báo cáo @@ -3858,7 +3992,6 @@ 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" DocType: Payment Gateway,Gateway Settings,Cài đặt gateway apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,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,Run Tests,Chạy thử nghiệm apps/frappe/frappe/handler.py,Logged Out,Đăng suất apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Hơn... DocType: System Settings,User can login using Email id or Mobile number,Người dùng có thể đăng nhập bằng cách sử dụng Email id hoặc Mobile number @@ -3875,6 +4008,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Tóm lược DocType: Event,Event Participants,Người tham gia sự kiện DocType: Auto Repeat,Frequency,Tần số +DocType: Onboarding Slide,Slide Order,Trình tự trượt DocType: Custom Field,Insert After,Chèn sau DocType: Event,Sync with Google Calendar,Đồng bộ hóa với Lịch Google DocType: Access Log,Report Name,Tên báo cáo @@ -3902,6 +4036,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,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/config/website.py,Content web page.,Trang web nội dung. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Thêm một vai trò mới +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Truy cập trang web +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nhiệm vụ mới DocType: Google Contacts,Last Sync On,Đồng bộ lần cuối cùng DocType: Deleted Document,Deleted Document,Tài liệu bị xóa apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Rất tiếc! Có gì đó không đúng @@ -3912,7 +4048,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Phong cảnh apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Phần mở rộng phía khách hàng script trong Javascript DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,Các bản ghi cho các doctypes sau sẽ được lọc -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,Bộ lập lịch không hoạt động +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,Bộ lập lịch không hoạt động DocType: Blog Settings,Blog Introduction,Blog Giới thiệu DocType: Global Search Settings,Search Priorities,Ưu tiên tìm kiếm DocType: Address,Office,Văn phòng @@ -3922,13 +4058,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,Bảng điều khiển liên DocType: User,Email Settings,Thiết lập email apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,Thả ở đây DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings","Nếu được bật, người dùng có thể đăng nhập từ bất kỳ Địa chỉ IP nào bằng Xác thực hai yếu tố, điều này cũng có thể được đặt cho tất cả người dùng trong Cài đặt hệ thống" -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,Cài đặt máy in ... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vui lòng nhập mật khẩu của bạn để tiếp tục apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,Vui lòng nhập mật khẩu của bạn để tiếp tục apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,Tôi apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0} tình trạng ko hợp lệ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,Áp dụng cho tất cả các loại tài liệu -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Cập nhật điểm năng lượng +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,Cập nhật điểm năng lượng +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),Chỉ chạy công việc hàng ngày nếu không hoạt động trong (ngày) apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,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}' DocType: Chat Message,Room Type,Loại phòng DocType: Data Import Beta,Import Log Preview,Nhập nhật ký xem trước @@ -3937,6 +4073,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-vòng tròn DocType: LDAP Settings,LDAP User Creation and Mapping,Lập bản đồ và tạo người dùng LDAP apps/frappe/frappe/utils/bot.py,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/public/js/frappe/ui/notifications/notifications.js,Today's Events,Sự kiện hôm nay apps/frappe/frappe/core/doctype/user/user.py,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/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Hiển thị phím tắt @@ -3953,6 +4090,7 @@ DocType: DocField,Unique,Độc nhất apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} được đánh giá cao trên {1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Một phần thành công DocType: Email Account,Service,Dịch vụ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng DocType: File,File Name,Tên tệp tin apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Không tìm thấy {0} cho {0} ({1}) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Độ phân giải: {0} @@ -3966,6 +4104,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Hoàn t DocType: GCalendar Settings,Enable,K.hoạt DocType: Google Maps Settings,Home Address,Địa chỉ nhà apps/frappe/frappe/core/doctype/data_export/exporter.py,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) +DocType: Report,"output in the form of `data = [columns, result]`","đầu ra ở dạng `data = [cột, kết quả]`" apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Các loại tài liệu áp dụng apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Thiết lập quy tắc cho bài tập của người dùng. apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Không đủ quyền cho {0} @@ -3983,7 +4122,6 @@ DocType: Communication,To and CC,To và CC DocType: SMS Settings,Static Parameters,Các tham số tĩnh DocType: Chat Message,Room,Phòng apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},cập nhật để {0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,Công việc nền không chạy. Vui lòng liên hệ với Quản trị viên DocType: Portal Settings,Custom Menu Items,Custom Menu Items apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,Tất cả hình ảnh đính kèm với Website Slideshow phải là công khai DocType: Workflow State,chevron-right,Chevron phải @@ -3998,11 +4136,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} giá trị được chọn DocType: DocType,Allow Auto Repeat,Cho phép tự động lặp lại apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Không có giá trị để hiển thị +DocType: DocType,URL for documentation or help,URL cho tài liệu hoặc trợ giúp DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Mẫu email apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Cập nhật thành công bản ghi {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Người dùng {0} không có quyền truy cập doctype thông qua quyền vai trò cho tài liệu {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Phải có cả tên đăng nhập và mật khẩu +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,Để cho\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Xin vui lòng làm mới để có được những tài liệu mới nhất. DocType: User,Security Settings,Security Settings apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,Thêm cột @@ -4012,6 +4152,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,lọc bản thử apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},Vui lòng tìm đính kèm {0}: {1} DocType: Web Page,Set Meta Tags,Đặt thẻ Meta +DocType: Email Account,Use SSL for Outgoing,Sử dụng SSL cho đi 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: S3 Backup Settings,Backup Limit,Giới hạn sao lưu DocType: Dashboard Chart,Line,Hàng @@ -4044,4 +4185,3 @@ DocType: DocField,Ignore User Permissions,Bỏ qua tài Quyền apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Đã lưu thành công apps/frappe/frappe/core/doctype/user/user.py,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 -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,Hiện thị nhật ký diff --git a/frappe/translations/zh.csv b/frappe/translations/zh.csv index 46faf24089..30a4a673cd 100644 --- a/frappe/translations/zh.csv +++ b/frappe/translations/zh.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,请选择一个金额字段。 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,正在载入汇入档案... DocType: Assignment Rule,Last User,最后用户 -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",一个新的任务,{0},已分配给您{1}。 {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,会话默认值已保存 apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,重新载入档案 DocType: Email Queue,Email Queue records.,电子邮件队列记录。 @@ -28,6 +27,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} 树 DocType: User,User Emails,用户电子邮件 DocType: User,Username,用户名 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,导入邮编 +DocType: Scheduled Job Type,Create Log,创建日志 apps/frappe/frappe/model/base_document.py,Value too big,值过大 DocType: DocField,DocField,文档字段 DocType: GSuite Settings,Run Script Test,运行脚本测试 @@ -73,7 +73,7 @@ DocType: Auto Repeat,Monthly,每月 DocType: Address,Uttarakhand,北阿坎德邦 DocType: Email Account,Enable Incoming,通过该邮箱接收邮件 apps/frappe/frappe/core/doctype/version/version_view.html,Danger,危险 -DocType: Address,Email Address,电子邮件地址 +apps/frappe/frappe/www/login.py,Email Address,电子邮件地址 DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,未读发送通知 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,不允许导出,您没有{0}的角色。 @@ -84,11 +84,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,取 DocType: DocType,Is Published Field,发布现场 DocType: GCalendar Settings,GCalendar Settings,GCalendar设置 DocType: Email Group,Email Group,电子邮件组 +apps/frappe/frappe/__init__.py,Only for {},仅适用于 {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google日历 - 无法从Google日历中删除事件{0},错误代码为{1}。 DocType: Event,Pulled from Google Calendar,从Google日历中拉出 DocType: Note,Seen By,看到通过 apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,添加多个 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,你获得了一些能量点 apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,不是有效的用户映像。 DocType: Energy Point Log,Reverted,回复 DocType: Success Action,First Success Message,第一个成功消息 @@ -96,6 +96,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,不类似 apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},值有错误,{0}必须是{1} {2} apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",更改字段属性(隐藏,只读,权限等) apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,欣赏 +DocType: Notification Settings,Document Share,文件共享 DocType: Workflow State,lock,锁定 apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,联系我们页面的设置。 apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,已登录管理员 @@ -109,6 +110,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",如果启用,则在用户第一次打开文档时将文档标记为已显示 DocType: Auto Repeat,Repeat on Day,一天重复 DocType: DocField,Color,颜色 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,标记为已读 DocType: Data Migration Run,Log,日志 DocType: Workflow State,indent-right,靠右缩进 DocType: Has Role,Has Role,有角色 @@ -127,6 +129,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,显示回溯 DocType: DocType,Default Print Format,默认打印格式 DocType: Workflow State,Tags,标签 +DocType: Onboarding Slide,Slide Type,幻灯片类型 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,无:结束的工作流程 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能在{1}中设置为唯一,因为这里存在非唯一的数值 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,文档类型 @@ -136,7 +139,6 @@ DocType: Language,Guest,访客 DocType: DocType,Title Field,标题字段 DocType: Error Log,Error Log,错误日志 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,无效的网址 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,过去7天 apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",重复像“ABCABCABC”只比“ABC”较难猜测一点 DocType: Notification,Channel,渠道 apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",如果你认为这是未经授权的,请更改管理员密码。 @@ -155,6 +157,7 @@ DocType: OAuth Authorization Code,Client,客户 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,选择列 apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,这个表单在你加载后已被修改 DocType: Address,Himachal Pradesh,喜马偕尔邦 +DocType: Notification Log,Notification Log,通知日志 DocType: System Settings,"If not set, the currency precision will depend on number format",如果未设置,则货币精度将取决于数字格式 DocType: System Settings,"If not set, the currency precision will depend on number format",如果未设置,则货币精度将取决于数字格式 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,打开Awesomebar @@ -165,7 +168,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,发送 DocType: Workflow Action Master,Workflow Action Name,工作流操作名称 apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,文档类型不能合并 -DocType: Web Form Field,Fieldtype,字段类型 +DocType: Onboarding Slide Field,Fieldtype,字段类型 apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,没有一个zip文件 DocType: Global Search DocType,Global Search DocType,全局搜索DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -178,7 +181,9 @@ DocType: Newsletter,Email Sent?,邮件已发送? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,切换图表 apps/frappe/frappe/desk/form/save.py,Did not cancel,没有取消 DocType: Social Login Key,Client Information,客户信息 +DocType: Energy Point Rule,Apply this rule only once per document,每个文档仅应用一次此规则 DocType: Workflow State,plus,加 +DocType: DocField,Read Only Depends On,只读取决于 apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,登录为来宾或管理员 DocType: Email Account,UNSEEN,反转已查看 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,文件管理器 @@ -202,9 +207,11 @@ DocType: Communication,BCC,BCC DocType: Unhandled Email,Reason,原因 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,没有活动 +DocType: Server Script,Script Manager,脚本管理器 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,没有活动 apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,第三方应用 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,第一个用户将成为系统管理员,您以后可以更改。 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,今天没有活动 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,你不能给自己提供评论点 apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType必须为所选Doc事件提交 DocType: Workflow State,circle-arrow-up,圆圈箭头向上 @@ -236,6 +243,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},不允许{0}:{1}。受限制的字段:{2} 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,You are not allowed to delete a standard Website Theme,你不允许删除标准的网站主题 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},创建您的第一个{0} DocType: Data Import,Log Details,日志详情 DocType: Workflow Transition,Example,例如 DocType: Webhook Header,Webhook Header,Webhook标题 @@ -250,8 +258,10 @@ apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for DocType: Chat Profile,Chat Background,聊天背景 apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,标记为已读 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},更新{0} +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,具有相同幻灯片顺序的入门幻灯片<b>{0}</b>已存在 apps/frappe/frappe/core/doctype/report/report.js,Disable Report,禁用报告 DocType: Translation,Contributed Translation Doctype Name,贡献翻译文档类型名称 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表格 DocType: PayPal Settings,Redirect To,重定向到 DocType: Data Migration Mapping,Pull,下拉 DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript格式:frappe.query_reports ['REPORTNAME'] = {} @@ -266,6 +276,7 @@ DocType: DocShare,Internal record of document shares,文件分享的内部记录 DocType: Energy Point Settings,Review Levels,评论级别 DocType: Workflow State,Comment,评论 DocType: Data Migration Plan,Postprocess Method,后处理方法 +DocType: DocType Action,Action Type,动作类型 apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,拍照 DocType: Assignment Rule,Round Robin,Round Robin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",您可以通过撤销已提交的文件,然后来修改文档。 @@ -279,6 +290,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,另存为 DocType: Comment,Seen,可见 apps/frappe/frappe/public/js/frappe/form/layout.js,Show more details,显示更多详情 +DocType: Server Script,Before Submit,提交之前 DocType: System Settings,Run scheduled jobs only if checked,只有勾选后,才会运行计划任务 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Will only be shown if section headings are enabled,如果章节标题启用才会显示 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html,Archive,档案 @@ -291,10 +303,12 @@ DocType: Dropbox Settings,Dropbox Access Key,Dropbox的Key apps/frappe/frappe/desk/form/utils.py,Wrong fieldname <b>{0}</b> in add_fetch configuration of custom script,自定义脚本的add_fetch配置中的字段名为<b>{0}</b> apps/frappe/frappe/contacts/doctype/contact/contact.py,Select Google Contacts to which contact should be synced.,选择要同步联系人的Google通讯录。 DocType: Web Page,Main Section (HTML),主要部分(HTML) +DocType: Scheduled Job Type,Annual,全年 DocType: Workflow State,headphones,头戴耳机 apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,需要密码,或者选择等待密码 DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,例如如replies@yourcomany.com。所有的回复将被发送到这个收件箱。 DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook网址 +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",确定向导中幻灯片的顺序。如果不显示幻灯片,则应将优先级设置为0。 DocType: Data Migration Run,Current Mapping,当前映射 apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,需要有效的电子邮件和姓名 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,将所有附件设为私有 @@ -318,6 +332,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss DocType: Workflow,Transition Rules,迁移规则 apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,在预览中仅显示前{0}行 apps/frappe/frappe/core/doctype/report/report.js,Example:,例如: +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,限制条件 DocType: Workflow,Defines workflow states and rules for a document.,定义文档工作流状态和规则。 DocType: Workflow State,Filter,过滤器 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},检查错误日志以获取更多信息:{0} @@ -329,6 +344,7 @@ apps/frappe/frappe/model/document.py,Error: Document has been modified after you apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Job,工作 apps/frappe/frappe/core/doctype/activity_log/feed.py,{0} logged out: {1},{0} 登出: {1} DocType: Address,West Bengal,西孟加拉邦 +DocType: Onboarding Slide,Information,信息 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} :没有“提交”的情况下不能分配“提交” DocType: Transaction Log,Row Index,行索引 DocType: Social Login Key,Facebook,脸书 @@ -347,7 +363,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: Web Form,Button Help,按钮帮助 DocType: Kanban Board Column,purple,紫色 DocType: About Us Settings,Team Members,团队成员 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,对于非活动站点,每天仅运行一次计划的作业。如果设置为0,则默认为4天。 DocType: Assignment Rule,System Manager,系统管理员 +DocType: Scheduled Job Log,Scheduled Job,预定工作 DocType: Custom DocPerm,Permissions,权限 apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks用于内部集成 DocType: Dropbox Settings,Allow Dropbox Access,允许访问Dropbox @@ -401,6 +419,7 @@ apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,扫 DocType: Email Flag Queue,Email Flag Queue,电子邮件标志队列 DocType: Access Log,Columns / Fields,列/字段 apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,打印格式样式表 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,创建仪表盘图需要“汇总功能”字段 apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,无法识别开{0}。尝试别的东西。 apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,您的信息已提交 apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,用户{0}不能被删除 @@ -417,11 +436,12 @@ DocType: Property Setter,Field Name,字段名称 DocType: Assignment Rule,Assign To Users,分配给用户 apps/frappe/frappe/public/js/frappe/utils/utils.js,or,或 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,模块的名称... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,继续 +DocType: Onboarding Slide,Continue,继续 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Integration is disabled.,Google集成已停用。 DocType: Custom Field,Fieldname,字段名 DocType: Workflow State,certificate,证书 apps/frappe/frappe/templates/includes/login/login.js,Verifying...,验证中... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,您在{0} {1}上的分配已被删除 apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,第一个数据列必须为空。 apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,显示所有版本 apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,查看评论 @@ -431,12 +451,14 @@ DocType: User,Restrict IP,限制IP apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,仪表板 apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,暂时无法发送电子邮件 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google日历 - 无法更新Google日历中的活动{0},错误代码为{1}。 +DocType: Notification Log,Email Content,邮件内容 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,搜索或输入命令 DocType: Activity Log,Timeline Name,时间轴名称 apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,只能将一个{0}设置为主。 DocType: Email Account,e.g. smtp.gmail.com,例如smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,新建规则 DocType: Contact,Sales Master Manager,销售经理大师 +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,您需要为应用程序启用JavaScript。 DocType: User Permission,For Value,为价值 DocType: Event,Google Calendar ID,Google日历ID apps/frappe/frappe/www/complete_signup.html,One Last Step,最后一步 @@ -452,6 +474,7 @@ DocType: LDAP Settings,LDAP Middle Name Field,LDAP中间名字段 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},导入{1}的{0} DocType: GCalendar Account,Allow GCalendar Access,允许GCalendar访问 apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0}是必填字段 +DocType: DocType,Documentation Link,文档链接 apps/frappe/frappe/templates/includes/login/login.js,Login token required,需要登录令牌 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,月度排名: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,选择多个列表项 @@ -473,6 +496,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: File,File URL,文件的URL DocType: Version,Table HTML,表HTML apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,添加订阅 +DocType: Notification Log,Energy Point,能量点 apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,今日活动 DocType: Google Calendar,Push to Google Calendar,推送到Google日历 DocType: Notification Recipient,Email By Document Field,通过文档字段发送邮件 @@ -488,12 +512,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,远 DocType: Currency,Fraction Units,部分单位 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} 从 {1} 到 {2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,标为已完成 DocType: Chat Message,Type,类型 DocType: Google Settings,OAuth Client ID,OAuth客户端ID DocType: Auto Repeat,Subject,主题 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,返回主页 DocType: Web Form,Amount Based On Field,用量以现场 +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0}没有跟踪版本。 apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,请选择要分享的用户 DocType: DocField,Hidden,已隐藏 DocType: Web Form,Allow Incomplete Forms,允许不完整的表格 @@ -516,6 +540,7 @@ DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py,Please check your email for verification,请检查您的电子邮件验证 apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,不能在表单的末端折叠 DocType: Communication,Bounced,退回 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,of,的 DocType: Deleted Document,Deleted Name,删除名称 apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,系统和网站用户 DocType: Workflow Document State,Doc Status,文档状态 @@ -526,6 +551,7 @@ DocType: Language,Language Code,语言代码 DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,注意:默认情况下,会发送失败备份的电子邮件。 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,添加过滤器 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},短信发送至以下号码:{0} +DocType: Notification Settings,Assignments,作业 apps/frappe/frappe/utils/data.py,{0} and {1},{0}和{1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,开始对话。 DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",随时添加“草案”标题打印文件草案 @@ -534,6 +560,7 @@ DocType: Data Migration Run,Current Mapping Start,当前映射开始 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,电子邮件已被标记为垃圾邮件 DocType: Comment,Website Manager,网站管理员 apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,文件上传已断开连接。请再试一次。 +DocType: Data Import Beta,Show Failed Logs,显示失败的日志 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,翻译 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,您选择了草稿或已取消的文档 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},文档{0}已被{2}设置为状态{1} @@ -541,7 +568,9 @@ apps/frappe/frappe/model/document.py,Document Queued,文档排队 DocType: GSuite Templates,Destination ID,目的地ID DocType: Desktop Icon,List,列表 DocType: Activity Log,Link Name,链接名称 +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,你没有 DocType: System Settings,mm/dd/yyyy,月/日/年 +DocType: Onboarding Slide,Onboarding Slide,入门幻灯片 apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,无效的密码: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,无效的密码: DocType: Print Settings,Send document web view link in email,发送电子邮件文件Web视图链接 @@ -603,6 +632,7 @@ DocType: Kanban Board Column,darkgrey,深灰色 apps/frappe/frappe/model/rename_doc.py,Successful: {0} to {1},成功:{0} {1} apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,演示中无法更改用户详细信息。请在https://erpnext.com注册一个新帐户 apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop,下降 +DocType: Dashboard Chart,Aggregate Function Based On,基于的聚合函数 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,请复制此做出改变 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,按Enter键保存 apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF生成,因为破碎的图像链接失败 @@ -616,7 +646,9 @@ DocType: Notification,Days Before,前几天 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,每日活动应在同一天结束。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,编辑... DocType: Workflow State,volume-down,降低音量 +DocType: Onboarding Slide,Help Links,帮助链接 apps/frappe/frappe/auth.py,Access not allowed from this IP Address,不允许从该IP地址访问 +DocType: Notification Settings,Enable Email Notifications,启用电子邮件通知 apps/frappe/frappe/desk/reportview.py,No Tags,没有标签 DocType: Email Account,Send Notification to,通知发送到 DocType: DocField,Collapsible,可折叠 @@ -645,6 +677,7 @@ DocType: Google Drive,Last Backup On,上次备份 DocType: Customize Form Field,Customize Form Field,自定义表单域 DocType: Energy Point Rule,For Document Event,对于文件活动 DocType: Website Settings,Chat Room Name,聊天室名称 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,不变的 DocType: OAuth Client,Grant Type,准予类型 apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,查看哪些文件用户可读到 DocType: Deleted Document,Hub Sync ID,集线器同步ID @@ -652,6 +685,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,use % as wildcard,使 DocType: Auto Repeat,Quarterly,季度 apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain not configured for this account, Create one?",电子邮件域名未配置此帐户,创建一个吗? DocType: User,Reset Password Key,重设密码钥匙 +DocType: Dashboard Chart,All Time,整天 apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}的非法文档状态 DocType: Email Account,Enable Auto Reply,启用自动回复 apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,未阅读 @@ -664,6 +698,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,消 DocType: Email Account,Notify if unreplied,如果没有回复则通知 apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,扫描QR码并输入显示的结果代码。 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,启用渐变 +DocType: Scheduled Job Type,Hourly Long,每小时长 DocType: System Settings,Minimum Password Score,最低密码分数 DocType: System Settings,Minimum Password Score,最低密码分数 DocType: DocType,Fields,字段 @@ -672,11 +707,13 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,上级表 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3备份完成! apps/frappe/frappe/config/desktop.py,Developer,开发者 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,创建 +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},要启用它,请遵循以下链接中的说明:{0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,行{1}中的{0}不能同时有URL和子项 apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},下表至少应有一行:{0} DocType: Print Format,Default Print Language,默认打印语言 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,祖先 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,根{0}无法删除 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,没有失败的日志 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,暂无评论 apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",请先通过SMS设置将其设置为身份验证方式,然后设置短信 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,文档类型和名称是必须项 @@ -700,6 +737,7 @@ DocType: Website Settings,Footer Items,页脚项目 apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,菜单 DocType: DefaultValue,DefaultValue,默认值 DocType: Auto Repeat,Daily,每日 +DocType: Onboarding Slide,Max Count,最大计数 apps/frappe/frappe/config/users_and_permissions.py,User Roles,用户角色 DocType: Property Setter,Property Setter overrides a standard DocType or Field property,属性设置者覆盖标准的文件类型或字段属性 apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,无法更新:不正确的/过期的链接。 @@ -718,6 +756,7 @@ DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,主办 DocType: Data Import Beta,Import File,导入文件 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,模板错误 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,列<b>{0}</b>已经存在。 DocType: ToDo,High,高 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,新事件 @@ -733,6 +772,7 @@ DocType: Web Form Field,Show in filter,在过滤器中显示 DocType: Address,Daman and Diu,达曼和迪乌 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,项目 DocType: Address,Personal,个人 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,原始打印设置... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,有关详细信息,请参阅https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region。 apps/frappe/frappe/config/settings.py,Bulk Rename,批量重命名 DocType: Email Queue,Show as cc,显示为抄送 @@ -742,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Video,录制视频 DocType: Contact Us Settings,Introductory information for the Contact Us Page,联系我们页面的介绍信息 DocType: Print Style,CSS,CSS DocType: Workflow State,thumbs-down,拇指向下 +apps/frappe/frappe/desk/form/linked_with.py,Cancelling documents,取消文件 DocType: User,Send Notifications for Email threads,发送电子邮件主题通知 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,教授 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,不在开发模式 @@ -749,7 +790,6 @@ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,文件备 DocType: DocField,In Global Search,在全局搜索 DocType: System Settings,Brute Force Security,蛮力安全 DocType: Workflow State,indent-left,靠左缩进 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年之前 apps/frappe/frappe/utils/file_manager.py,It is risky to delete this file: {0}. Please contact your System Manager.,删除这个文件是有风险的:{0}。请联系您的系统管理员。 DocType: Currency,Currency Name,货币名称 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,没有电子邮件 @@ -764,11 +804,13 @@ DocType: Energy Point Rule,User Field,用户字段 DocType: DocType,MyISAM,MyISAM数据 DocType: Data Migration Run,Push Delete,推删除 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0}已经退订了{1} {2} +DocType: Scheduled Job Type,Stopped,已停止 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,没有移除 apps/frappe/frappe/desk/like.py,Liked,喜欢 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,立即发送 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",不能为标准文件类型设置默认打印格式,请使用自定义表单 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",不能为标准文件类型设置默认打印格式,请使用自定义表单 +DocType: Server Script,Allow Guest,允许访客 DocType: Report,Query,查询 DocType: Customize Form,Sort Order,排序 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},行{1}中的类型{0}不允许选择“显示在列表视图中” @@ -790,10 +832,12 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,双因素认证方法 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,首先设置名称并保存记录。 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5条记录 +DocType: DocType Link,Link Fieldname,链接字段名称 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},共享{0} apps/frappe/frappe/email/queue.py,Unsubscribe,退订 DocType: View Log,Reference Name,参考名称 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,改变用户 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,第一 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,更新翻译 DocType: Error Snapshot,Exception,例外 DocType: Email Account,Use IMAP,使用IMAP @@ -808,6 +852,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,规则定义的工作流状态的过渡。 DocType: File,Folder,文件夹 DocType: Website Route Meta,Website Route Meta,网站路线元 +DocType: Onboarding Slide Field,Onboarding Slide Field,入职幻灯片字段 DocType: DocField,Index,索引 DocType: Email Group,Newsletter Manager,通讯经理 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,选项1 @@ -834,7 +879,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,为 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,配置图表 DocType: User,Last IP,最后登录IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,请在您的电子邮件中添加主题 -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,已与您{1}分享了一个新文档{0}。 DocType: Data Migration Connector,Data Migration Connector,数据迁移连接器 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}还原{1} DocType: Email Account,Track Email Status,跟踪电子邮件状态 @@ -887,6 +931,7 @@ DocType: Email Account,Default Outgoing,默认支出 DocType: Workflow State,play,玩 apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,点击下面的链接完成注册,并设置新密码 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,没有添加 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0}的{2} {3}获得了{1}分 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,没有电子邮件帐户分配 DocType: S3 Backup Settings,eu-west-2,欧盟 - 西2 DocType: Contact Us Settings,Contact Us Settings,联系我们设置 @@ -894,6 +939,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,正在搜 DocType: Workflow State,text-width,文字宽度 apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,已达此记录最大附件限制。 apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,按文件名或扩展名搜索 +DocType: Onboarding Slide,Slide Title,幻灯片标题 DocType: Notification,View Properties (via Customize Form),视图属性(通过自定义窗体) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,单击文件以选择它。 DocType: Note Seen By,Note Seen By,注意 已阅 @@ -920,13 +966,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,分享网址 DocType: System Settings,Allow Consecutive Login Attempts ,允许连续登录尝试 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,付款过程中发生错误。请联系我们。 +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,如果“幻灯片类型”是“创建”或“设置”,则{ref_doctype} .py文件中应有一个“ create_onboarding_docs”方法,该方法必须在幻灯片完成后执行。 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0}天前 DocType: Email Account,Awaiting Password,等待密码 DocType: Address,Address Line 1,地址行1 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,不是后代 DocType: Contact,Company Name,公司名称 DocType: Custom DocPerm,Role,角色 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,设置... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,到你的浏览器 apps/frappe/frappe/utils/data.py,Cent,一分钱 ,Recorder,录音机 @@ -986,6 +1032,7 @@ DocType: Email Account,"Track if your email has been opened by the recipient. Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered ""Opened""",跟踪收件人是否已打开您的电子邮件。 <br>注意:如果您要向多个收件人发送邮件,即使有1个收件人阅读该邮件,也会被视为“已打开” apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,缺少需要的值 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,允许Google通讯录访问 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restricted,受限制的 DocType: Data Migration Connector,Frappe,果汁刨冰 apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Unread,标记为未读 DocType: Activity Log,Operation,操作 @@ -1039,6 +1086,7 @@ DocType: Web Form,Allow Print,允许打印 DocType: Communication,Clicked,已点击 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,取消关注 apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},没有权限“{0}” {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认的电子邮件帐户 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,已计划发送 DocType: DocType,Track Seen,让系统记录谁查看过 DocType: Dropbox Settings,File Backup,文件备份 @@ -1047,12 +1095,11 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,没有找到{ apps/frappe/frappe/config/customization.py,Add custom forms.,添加自定义表单。 apps/frappe/frappe/desk/like.py,{0}: {1} in {2},{0}:{1}在{2} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,提交这份文件 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,该系统提供了许多预先定义的角色。您可以添加新的角色设定更精细的权限。 DocType: Communication,CC,抄送 DocType: Country,Geo,GEO DocType: Data Migration Run,Trigger Name,触发器名称 -apps/frappe/frappe/public/js/frappe/desk.js,Domains,域 +DocType: Onboarding Slide,Domains,域 DocType: Blog Category,Blog Category,博客分类 apps/frappe/frappe/model/mapper.py,Cannot map because following condition fails: ,无法对应,因为以下条件失败: DocType: Role Permission for Page and Report,Roles HTML,角色的HTML @@ -1093,7 +1140,6 @@ DocType: Assignment Rule Day,Saturday,星期六 DocType: User,Represents a User in the system.,表示系统中一个用户。 DocType: List View Setting,Disable Auto Refresh,禁用自动刷新 DocType: Comment,Label,标签 -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",任务{0},您分配给{1},已关闭。 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,请关闭此窗口 DocType: Print Format,Print Format Type,打印格式类型 DocType: Newsletter,A Lead with this Email Address should exist,与此电子邮件地址相关的商机应存在 @@ -1110,6 +1156,7 @@ DocType: Email Account,SMTP Settings for outgoing emails,外发邮件的SMTP设 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,选择一个 DocType: Data Export,Filter List,过滤器列表 DocType: Data Export,Excel,Excel +DocType: System Settings,HH:mm,高度:毫米 DocType: Email Account,Auto Reply Message,自动回复留言 DocType: Data Migration Mapping,Condition,条件 apps/frappe/frappe/utils/data.py,{0} hours ago,{0} 小时前 @@ -1128,12 +1175,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,知识库贡献者 DocType: Communication,Sent Read Receipt,发送阅读回执 DocType: Email Queue,Unsubscribe Method,退订方法 +DocType: Onboarding Slide,Add More Button,添加更多按钮 DocType: GSuite Templates,Related DocType,相关文件类型 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,编辑以添加内容 apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,选择语言 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,卡详情 apps/frappe/frappe/__init__.py,No permission for {0},对于无许可{0} DocType: DocType,Advanced,高级 +DocType: Onboarding Slide,Slide Image Source,幻灯片图像源 apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,似乎API密钥或API的秘密是错误的! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},参考:{0} {1} apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mrs,太太 @@ -1150,6 +1199,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,大师 DocType: DocType,User Cannot Create,用户无法创建 apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,成功完成 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox的访问被批准! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,您确定要将{0}与{1}合并吗? DocType: Customize Form,Enter Form Type,输入表单类型 DocType: Google Drive,Authorize Google Drive Access,授权Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,缺少参数看板名称 @@ -1159,7 +1209,6 @@ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",允许的DOCTYPE,的DocType 。要小心! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",自定义打印格式,电子邮件 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}的总和 -apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,更新到新版本 DocType: Custom Field,Depends On,取决于 DocType: Kanban Board Column,Green,绿 DocType: Custom DocPerm,Additional Permissions,额外的权限 @@ -1187,6 +1236,7 @@ DocType: Energy Point Log,Social,社会 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",Google日历 - 无法为{0}创建日历,错误代码为{1}。 apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,编辑行 DocType: Workflow Action Master,Workflow Action Master,工作流操作主表 +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,删除所有 DocType: Custom Field,Field Type,字段类型 apps/frappe/frappe/utils/data.py,only.,而已。 DocType: Route History,Route History,路线历史 @@ -1223,11 +1273,13 @@ apps/frappe/frappe/www/login.html,Forgot Password?,忘了密码? DocType: System Settings,yyyy-mm-dd,年-月-日 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,服务器错误 +DocType: Server Script,After Delete,删除后 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,查看所有过去的报告。 apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,登录ID是必需的 DocType: Website Slideshow,Website Slideshow,网站幻灯片 apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,无数据 DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","网站主页的链接。标准链接如(目录, 登录, 产品, 博客, 关于, 联系人)" +DocType: Server Script,After Submit,提交后 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},同时接收来自电子邮件帐户{0}电子邮件身份验证失败。从服务器消息:{1} DocType: User,Banner Image,横幅图片 DocType: Custom Field,Custom Field,自定义字段 @@ -1268,15 +1320,13 @@ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address, DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",如果用户有任何检查的作用,那么用户就变成了“系统用户”。 “系统用户”访问桌面 DocType: System Settings,Date and Number Format,日期和数字格式 apps/frappe/frappe/model/document.py,one of,其中 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表格 apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,检查一个时刻 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,显示标签 DocType: DocField,HTML Editor,HTML编辑器 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,操作 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户 +DocType: DocType,Actions,操作 DocType: Workflow State,align-justify,段落两端对齐 DocType: User,Middle Name (Optional),中间名(可选) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,不允许 @@ -1291,6 +1341,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,没有结 DocType: System Settings,Security,安全 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,计划发送到{0}个收件人 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,剪切 +DocType: Server Script,After Save,保存后 apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},从更名{0}到{1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1}的{0}(有子项的{2}行) DocType: Currency,**Currency** Master,** 货币**管理 @@ -1317,16 +1368,19 @@ DocType: Prepared Report,Filter Values,过滤值 DocType: Communication,User Tags,用户标签 DocType: Data Migration Run,Fail,失败 DocType: Workflow State,download-alt,download-alt +DocType: Scheduled Job Type,Last Execution,最后执行 DocType: Data Migration Run,Pull Failed,下拉失败 apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,显示/隐藏卡片 DocType: Communication,Feedback Request,反馈请求 apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,从CSV / Excel文件导入数据。 apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,以下字段缺失: +DocType: Notification Log,From User,来自用户 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Cancelling {0},取消{0} DocType: Web Page,Main Section,主要部分 DocType: Page,Icon,图标 apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",提示:在密码中加入符号,数字和大写字母 apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",提示:在密码中加入符号,数字和大写字母 +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",配置有关提及,任务,能量点等的通知。 DocType: DocField,Allow in Quick Entry,允许快速输入 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF DocType: System Settings,dd/mm/yyyy,日/月/年 @@ -1358,7 +1412,6 @@ DocType: Website Theme,Theme URL,主题网址 DocType: Customize Form,Sort Field,字段排序 DocType: Razorpay Settings,Razorpay Settings,Razorpay设置 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,编辑过滤器 -apps/frappe/frappe/public/js/frappe/ui/slides.js,Add More,添加更多 DocType: System Settings,Session Expiry Mobile,会话过期移动 apps/frappe/frappe/utils/password.py,Incorrect User or Password,不正确的用户或密码 apps/frappe/frappe/templates/includes/search_box.html,Search results for,为。。。。寻找结果 @@ -1374,8 +1427,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,能量点规则 DocType: Communication,Delayed,延迟 apps/frappe/frappe/config/settings.py,List of backups available for download,可供下载的备份目录 +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,尝试新的数据导入 apps/frappe/frappe/www/login.html,Sign up,报名 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,行{0}:不允许禁用标准域的强制性 +DocType: Webhook,Enable Security,启用安全性 apps/frappe/frappe/config/customization.py,Dashboards,仪表板 DocType: Test Runner,Output,产量 DocType: Milestone,Track Field,田径场 @@ -1383,6 +1438,7 @@ DocType: Notification,Set Property After Alert,警报后设置属性 apps/frappe/frappe/config/customization.py,Add fields to forms.,为表单添加字段。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,看起来这个网站的Paypal配置有问题。 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,添加评论 +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0}为您分配了新任务{1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),字体大小(px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,只允许从“自定义表单”自定义标准DocType。 DocType: Email Account,Sendgrid,Sendgrid @@ -1394,8 +1450,10 @@ DocType: Portal Menu Item,Portal Menu Item,门户菜单项 apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,设置过滤器 DocType: Contact Us Settings,Email ID,电子邮件ID DocType: Energy Point Rule,Multiplier Field,乘数场 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,无法创建Razorpay订单。请联系管理员 DocType: Dashboard Chart,Time Interval,时间间隔 DocType: Activity Log,Keep track of all update feeds,跟踪所有更新提要 +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0}与您共享了一个文档{1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,资源的列表,它的客户端应用程序必须将用户允许后访问。 <br>如项目 DocType: Translation,Translated Text,翻译文本 DocType: Contact Us Settings,Query Options,查询选项 @@ -1414,6 +1472,7 @@ DocType: DefaultValue,Key,键值 DocType: Address,Contacts,往来 DocType: System Settings,Setup Complete,设置完成 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,所有的文件共享报告 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",导入模板的类型应为.csv,.xlsx或.xls apps/frappe/frappe/www/update-password.html,New Password,新密码 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,过滤器{0}丢失 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,抱歉!不能删除自动生成的注释 @@ -1430,6 +1489,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o DocType: Website Settings,FavIcon,网站图标 apps/frappe/frappe/data_migration/doctype/data_migration_plan/data_migration_plan.js,Run,跑 DocType: Blog Post,Content (HTML),内容(HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,设置 DocType: Personal Data Download Request,User Name,用户名 DocType: Workflow State,minus-sign,减号-标记 apps/frappe/frappe/public/js/frappe/request.js,Not Found,未找到 @@ -1437,11 +1497,11 @@ apps/frappe/frappe/www/printview.py,No {0} permission,无{0}权限 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,导出客户许可 apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,未找到任何项目。 DocType: Data Export,Fields Multicheck,字段多重检查 +apps/frappe/frappe/public/js/frappe/form/form.js,{} Complete,{}完成 DocType: Activity Log,Login,登录 DocType: Web Form,Payments,付款 apps/frappe/frappe/www/qrcode.html,Hi {0},你好{0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google云端硬盘集成。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0}在{1} {2}上恢复了您的积分 DocType: System Settings,Enable Scheduled Jobs,启用计划任务 apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,注意事项: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,非活动的 @@ -1466,6 +1526,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,常见 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,权限错误 apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0}的名称不能为{1} DocType: User Permission,Applicable For,适用于 +DocType: Dashboard Chart,From Date,起始日期 apps/frappe/frappe/core/doctype/version/version_view.html,Success,成功 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,会话已过期 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,会话已过期 @@ -1478,7 +1539,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,成 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,不满足条件 DocType: Async Task,Async Task,异步任务 DocType: Workflow State,picture,图片 -apps/frappe/frappe/www/complete_signup.html,Complete,完成 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,完成 DocType: DocType,Image Field,图像字段 DocType: Print Format,Custom HTML Help,自定义HTML帮助 DocType: LDAP Settings,Default Role on Creation,创建时的默认角色 @@ -1486,6 +1547,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,下一状态 DocType: User,Block Modules,封锁模块 DocType: Print Format,Custom CSS,自定义CSS +DocType: Energy Point Rule,Apply Only Once,仅申请一次 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,添加评论 DocType: Webhook,on_update,on_update apps/frappe/frappe/model/rename_doc.py,Ignored: {0} to {1},忽略:{0} {1} @@ -1497,6 +1559,7 @@ DocType: Email Account,Default Incoming,默认收入 DocType: Workflow State,repeat,重复 DocType: Website Settings,Banner,横幅 apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},值必须为{0}之一 +apps/frappe/frappe/public/js/frappe/form/form.js,Cancel All Documents,取消所有文件 DocType: Role,"If disabled, this role will be removed from all users.",如果禁用了,这个角色将会从所有用户中删除。 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,转到{0}列表 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,搜索帮助 @@ -1505,6 +1568,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,注册但 apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,此文档的自动重复已被禁用。 DocType: DocType,Hide Copy,隐藏副本 apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,清除所有角色 +DocType: Server Script,Before Save,保存之前 apps/frappe/frappe/model/base_document.py,{0} must be unique,{0}必须是唯一的 apps/frappe/frappe/model/base_document.py,Row,行 apps/frappe/frappe/public/js/frappe/views/communication.js,"CC, BCC & Email Template",抄送,密件抄送&电子邮件模板 @@ -1515,7 +1579,6 @@ DocType: Chat Profile,Offline,离线 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},成功导入{0} DocType: User,API Key,应用程序界面密钥 DocType: Email Account,Send unsubscribe message in email,发送电子邮件退订消息 -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,编辑标题 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,字段名将作为这个文档类型的链接字段。 apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,分配给您和您的文档。 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,您也可以复制粘贴它 @@ -1547,8 +1610,10 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,附加图片 DocType: Workflow State,list-alt,备选清单 apps/frappe/frappe/www/update-password.html,Password Updated,密码更新 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限 apps/frappe/frappe/www/qrcode.html,Steps to verify your login,验证您的登录的步骤 apps/frappe/frappe/utils/password.py,Password not found,密码未找到 +DocType: Webhook,Webhook Secret,Webhook的秘密 DocType: Data Migration Mapping,Page Length,页面长度 DocType: Email Queue,Expose Recipients,揭露收件人 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,传入邮件加到追加到是强制性的 @@ -1576,6 +1641,7 @@ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Col DocType: DocType,System,系统 DocType: Web Form,Max Attachment Size (in MB),最大附件大小(MB) apps/frappe/frappe/www/login.html,Have an account? Login,有账户?登录 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,打印设置... DocType: Workflow State,arrow-down,向下箭头 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},第{0}行 apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},用户不能删除{0}:{1} @@ -1597,6 +1663,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,输入密 DocType: Dropbox Settings,Dropbox Access Secret,Dropbox的密码 DocType: Tag Link,Document Title,文件名 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必须) +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年之前 DocType: Social Login Key,Social Login Provider,社交登录提供商 apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,添加另一个评论 apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,在文件中找不到数据。请用数据重新附加新文件。 @@ -1611,11 +1678,12 @@ DocType: Workflow State,hand-down,传下来的 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",找不到可用作看板列的字段。使用“自定义表单”添加“选择”类型的自定义字段。 DocType: Address,GST State,消费税状态 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} :没有“提交”的情况下不能分配“取消” +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),用户({0}) DocType: Website Theme,Theme,主题 DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,重定向URI势必授权码 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,打开帮助 DocType: DocType,Is Submittable,是否可以提交 -apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,新的提及 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Mention,新的提及 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,没有新的Google通讯录同步。 DocType: File,Uploaded To Google Drive,已上传到Google云端硬盘 apps/frappe/frappe/custom/doctype/property_setter/property_setter.js,Value for a check field can be either 0 or 1,选项的值可以是0或1 @@ -1627,7 +1695,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti DocType: Workflow State,Inbox,收件箱 DocType: Kanban Board Column,Red,红 DocType: Workflow State,Tag,标签 -DocType: Custom Script,Script,脚本 +DocType: Report,Script,脚本 apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,文件无法保存。 DocType: Energy Point Rule,Maximum Points,最高积分 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,个人设置 @@ -1657,9 +1725,12 @@ DocType: Address,Haryana,哈里亚纳邦 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} {1} {2}的升值点 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,角色可以从他们的用户页面的用户进行设置。 apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,添加评论 +DocType: Dashboard Chart,Select Date Range,选择日期范围 DocType: DocField,Mandatory,强制性 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,模块导出 +DocType: Scheduled Job Type,Monthly Long,每月长 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} :基本权限未设置 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,发送电子邮件至{0}以在此处链接 apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",提交,取消,修订的含义 apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,待办事项 @@ -1668,7 +1739,6 @@ DocType: Milestone Tracker,Track milestones for any document,跟踪任何文档 DocType: Social Login Key,Identity Details,身份信息 apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},不允许从{0}到{1}的工作流状态转换 apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,显示仪表板 -apps/frappe/frappe/desk/form/assign_to.py,New Message,新消息 DocType: File,Preview HTML,预览HTML DocType: Desktop Icon,query-report,查询的报告 DocType: Data Import Beta,Template Warnings,模板警告 @@ -1679,18 +1749,21 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,挂具 apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,修改电子邮件报告设置 DocType: Chat Room,Message Count,消息计数 DocType: Workflow State,book,书 +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1}与以下提交的文档链接:{2} DocType: Communication,Read by Recipient,由收件人阅读 DocType: Website Settings,Landing Page,着陆页 apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,错误自定义脚本 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0}名称 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,没有符合条件的权限。 DocType: Auto Email Report,Auto Email Report,自动邮件报告 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Document Shared,共享新文件 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Delete comment?,删除评论? DocType: Address Template,This format is used if country specific format is not found,如果找不到国家特定格式将采用此格式 DocType: System Settings,Allow Login using Mobile Number,允许使用手机号登录 apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,您没有足够的权限来访问该资源。请联系您的经理,以获得访问权。 DocType: Custom Field,Custom,自定义 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",如果启用,从限制IP地址登录的用户将不会被提示输入双因素身份验证 +DocType: Server Script,After Cancel,取消后 DocType: Auto Repeat,Get Contacts,获取联系人 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},帖子下提出{0} apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,跳过无标题列 @@ -1701,6 +1774,7 @@ DocType: User,Login After,登录后 DocType: Print Format,Monospace,等宽 DocType: Letter Head,Printing,打印 DocType: Workflow State,thumbs-up,竖起大拇指 +DocType: Notification Log,Mention,提到 DocType: DocPerm,DocPerm,文档权限 DocType: Print Settings,Fonts,字体 apps/frappe/frappe/core/doctype/doctype/doctype.py,Precision should be between 1 and 6,精度应为1和6之间 @@ -1708,7 +1782,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Fw: {0},FW:{0} apps/frappe/frappe/public/js/frappe/utils/utils.js,and,和 apps/frappe/frappe/templates/emails/auto_email_report.html,This report was generated on {0},此报告是在{0}上生成的 DocType: Error Snapshot,Frames,框架 -apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,分配 +DocType: Notification Log,Assignment,分配 DocType: Notification,Slack Channel,松弛频道 DocType: About Us Team Member,Image Link,图片链接 DocType: Auto Email Report,Report Filters,报告过滤器 @@ -1725,7 +1799,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,无法更新事件 apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,验证码已发送到您注册的电子邮件地址。 apps/frappe/frappe/core/doctype/user/user.py,Throttled,节流 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,您的目标 apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",过滤器必须有4个值(文件类型,字段名,操作者,值):{0} +apps/frappe/frappe/model/naming.py,No Name Specified for {0},没有为{0}指定名称 apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,应用分配规则 apps/frappe/frappe/utils/bot.py,show,显示 apps/frappe/frappe/utils/data.py,Invalid field name {0},字段名称{0}无效 @@ -1735,7 +1811,6 @@ DocType: Workflow State,text-height,文字高度 DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,数据迁移计划映射 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,开始Frappé... DocType: Web Form Field,Max Length,最长长度 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},对于{0} {1} DocType: Print Format,Jinja,神社 DocType: Workflow State,map-marker,映射-记号 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,提交问题 @@ -1771,6 +1846,7 @@ apps/frappe/frappe/www/404.html,Page missing or moved,页面丢失或已被移 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,评测 DocType: DocType,Route,路线 apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay支付网关设置 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0}为{2} {3}赢得了{1}点 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,从文档中获取附加图像 DocType: Chat Room,Name,名称 DocType: Contact Us Settings,Skype,Skype @@ -1781,7 +1857,6 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,打开链接 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,你的语言 DocType: Dashboard Chart,Average,平均 apps/frappe/frappe/public/js/frappe/form/grid.js,Add Row,添加行 -DocType: Tag Category,Doctypes,文档类型 apps/frappe/frappe/public/js/frappe/form/print.js,Printer,打印机 apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,查询必须是一个SELECT语句 DocType: Auto Repeat,Completed,已完成 @@ -1841,6 +1916,7 @@ DocType: GCalendar Account,Next Sync Token,下一个同步令牌 DocType: Energy Point Settings,Energy Point Settings,能量点设置 DocType: Async Task,Succeeded,成功 apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},在需要的必填字段{0} +DocType: Onboarding Slide Field,Align,对齐 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,重置权限{0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,用户和权限 DocType: S3 Backup Settings,S3 Backup Settings,S3备份设置 @@ -1857,7 +1933,9 @@ DocType: DocType,ASC,ASC码 apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,新的打印格式名称 apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,单击下面的链接批准该请求 DocType: Workflow State,align-left,左对齐 +DocType: Onboarding Slide,Action Settings,动作设定 DocType: User,Defaults,默认 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",为了进行比较,请使用> 5,<10或= 324。对于范围,请使用5:10(对于5到10之间的值)。 DocType: Energy Point Log,Revert Of,还原 apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,与现有合并 DocType: User,Birth Date,出生日期 @@ -1912,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,在 DocType: Notification,Value Change,更改值 DocType: Google Contacts,Authorize Google Contacts Access,授权Google通讯录访问权限 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,仅显示来自报告的数字字段 +apps/frappe/frappe/utils/data.py,1 week ago,1周前 DocType: Data Import Beta,Import Type,导入类型 DocType: Access Log,HTML Page,HTML页面 DocType: Address,Subsidiary,子机构 @@ -1921,7 +2000,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,带信头 apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,无效的邮件发送服务器或端口 DocType: Custom DocPerm,Write,写 -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,只有管理员可以创建查询/报告的脚本 apps/frappe/frappe/public/js/frappe/form/save.js,Updating,更新 DocType: Data Import Beta,Preview,预览 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",字段“值”是强制性的。请指定值进行更新 @@ -1931,6 +2009,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,邀请成 DocType: Data Migration Run,Started,入门 apps/frappe/frappe/permissions.py,User {0} does not have access to this document,用户{0}无权访问此文档 DocType: Data Migration Run,End Time,结束时间 +DocType: Dashboard Chart,Group By Based On,分组依据 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,选择附件 apps/frappe/frappe/model/naming.py, for {0},{0} apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,你不允许打印此文档 @@ -1972,6 +2051,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,确认 DocType: Workflow Document State,Update Field,更新字段 DocType: Chat Profile,Enable Chat,启用聊天 DocType: LDAP Settings,Base Distinguished Name (DN),基本专有名称(DN) +DocType: Server Script,API,应用程序界面 apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,离开这个谈话 apps/frappe/frappe/model/base_document.py,Options not set for link field {0},对于链接字段没有设置选项{0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,队列/工人 @@ -2040,12 +2120,12 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,不允许在这个时候登录 DocType: Data Migration Run,Current Mapping Action,当前映射行为 DocType: Dashboard Chart Source,Source Name,源名称 -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,没有与该用户关联的电子邮件帐户。请在“用户”>“电子邮件收件箱”下添加一个帐户。 DocType: Email Account,Email Sync Option,电子邮件同步选项 apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,行号 DocType: Async Task,Runtime,运行 DocType: Post,Is Pinned,固定 DocType: Contact Us Settings,Introduction,介绍 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,需要帮忙? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,全球销 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,其次是 DocType: LDAP Settings,LDAP Email Field,LDAP电子邮件字段 @@ -2055,7 +2135,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,已经在 DocType: User Email,Enable Outgoing,通过该邮箱发送邮件 DocType: Address,Fax,传真 apps/frappe/frappe/config/customization.py,Custom Tags,自定义标记 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建一个新的电子邮件帐户 DocType: Comment,Submitted,已提交 DocType: Contact,Pulled from Google Contacts,来自Google通讯录 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,非法请求 @@ -2076,9 +2155,10 @@ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 1,主页/测 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assign to me,分配给我 DocType: DocField,Dynamic Link,动态链接 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,按Alt键可在菜单和侧栏中触发其他快捷方式 +DocType: Dashboard Chart,To Date,至今 DocType: List View Setting,List View Setting,列表视图设置 apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,显示失败的作业 -DocType: Event,Details,详细信息 +DocType: Scheduled Job Log,Details,详细信息 DocType: Property Setter,DocType or Field,文档类型或字段 apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,你取消了这份文件 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Primary Color,原色 @@ -2087,7 +2167,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,似乎可发布的密钥或秘密密钥错误! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,似乎可发布的密钥或秘密密钥错误! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,权限设置的快速帮助 -DocType: Tag Doc Category,Doctype to Assign Tags,文档类型来分配标签 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,显示复发 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,电子邮件已被移至垃圾桶 DocType: Report,Report Builder,报表生成器 @@ -2103,6 +2182,7 @@ DocType: Workflow State,Upload,上传 DocType: User Permission,Advanced Control,高级控制 DocType: System Settings,Date Format,日期格式 apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,未发布 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默认的地址模板。请从设置>打印和品牌>地址模板中创建一个新地址。 apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",工作流操作(例如审批,取消) 。 DocType: Data Import,Skip rows with errors,跳过有错误的行 DocType: Workflow State,flag,标志 @@ -2112,7 +2192,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,打 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,跳到现场 DocType: Contact Us Settings,Forward To Email Address,转发到邮件地址 DocType: Contact Phone,Is Primary Phone,是主要电话 -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,发送电子邮件至{0}以将其链接到此处。 DocType: Auto Email Report,Weekdays,工作日 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0}条记录将被导出 apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,标题字段必须是有效的字段名 @@ -2120,7 +2199,7 @@ DocType: Post Comment,Post Comment,发表评论 apps/frappe/frappe/config/core.py,Documents,文档 apps/frappe/frappe/config/users_and_permissions.py,Activity Log by ,活动记录 DocType: Social Login Key,Custom Base URL,自定义基准网址 -DocType: Email Flag Queue,Is Completed,完成了 +DocType: Onboarding Slide,Is Completed,完成了 apps/frappe/frappe/website/doctype/web_form/web_form.js,Get Fields,获得领域 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Edit Profile,编辑个人资料 DocType: Kanban Board Column,Archived,已存档 @@ -2131,12 +2210,13 @@ myfield eval:doc.myfield=='My Value' eval:doc.age>18",该字段只有在此处定义的字段名具有值或规则是真时才显示(例子):myfield eval:doc.myfield=='My Value' eval:doc.age>18 DocType: Social Login Key,Office 365,Office 365 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,今天 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,今天 +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,今天 +apps/frappe/frappe/public/js/frappe/form/controls/date.js,Today,今天 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",一旦你设置这个,用户将只能访问在其链路存在时(如博主的)文档(如博客文章) 。 DocType: Data Import Beta,Submit After Import,导入后提交 DocType: Error Log,Log of Scheduler Errors,日程安排程序错误日志 DocType: User,Bio,个人简历 +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,入门幻灯片帮助链接 DocType: OAuth Client,App Client Secret,应用程序客户端密钥 apps/frappe/frappe/public/js/frappe/form/save.js,Submitting,提交 apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parent是将数据添加到的文档的名称。 @@ -2144,7 +2224,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv DocType: DocType,UPPER CASE,大写字母 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,自定义HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,输入文件夹名称 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默认的地址模板。请从设置>打印和品牌>地址模板中创建一个新地址。 apps/frappe/frappe/auth.py,Unknown User,未知用户 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,选择角色 DocType: Comment,Deleted,已删除 @@ -2160,7 +2239,7 @@ DocType: Chat Token,Chat Token,聊天令牌 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,创建图表 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,不导入 -DocType: Web Page,Center,中心 +DocType: Onboarding Slide Field,Center,中心 DocType: Notification,Value To Be Set,价值待定 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},编辑{0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,第一级 @@ -2168,7 +2247,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,数据库名称 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,刷新表格 DocType: DocField,Select,选择 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,查看完整日志 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,查看完整日志 DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",简单的Python表达式,例如:status =='Open'并输入=='Bug' apps/frappe/frappe/utils/csvutils.py,File not attached,文件未附加 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,连接丢失。某些功能可能无法使用。 @@ -2200,6 +2279,7 @@ DocType: Web Page,HTML for header section. Optional,HTML的标题部分。可选 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This feature is brand new and still experimental,此功能是全新的,仍处于试验阶段 apps/frappe/frappe/model/rename_doc.py,Maximum {0} rows allowed,仅允许最多{0}行 DocType: Dashboard Chart Link,Chart,图表 +DocType: Scheduled Job Type,Cron,克朗 DocType: Email Unsubscribe,Global Unsubscribe,全局退订 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,这是一个非常普遍的密码。 apps/frappe/frappe/email/doctype/email_group/email_group.js,View,查看 @@ -2216,6 +2296,7 @@ DocType: Data Migration Connector,Hostname,主机名 DocType: Data Migration Mapping,Condition Detail,状况细节 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,"For currency {0}, the minimum transaction amount should be {1}",对于货币{0},最小交易金额应为{1} DocType: DocField,Print Hide,打印隐藏 +DocType: System Settings,HH:mm:ss,HH:mm:ss apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,To User,给用户 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter Value,输入值 DocType: Workflow State,tint,色彩 @@ -2283,6 +2364,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,用于登录 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,添加到待办事项 DocType: Footer Item,Company,公司 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},平均值{0} +DocType: Scheduled Job Log,Scheduled,已计划 DocType: User,Logout from all devices while changing Password,更改密码时从所有设备注销 apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,确认密码 apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,曾有些错误发生 @@ -2308,7 +2390,7 @@ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,用户权限已经存在 apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},将列{0}映射到字段{1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},查看{0} -DocType: User,Hourly,每小时 +DocType: Scheduled Job Type,Hourly,每小时 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,注册开放式验证客户端应用程序 DocType: DocField,Fetch If Empty,获取如果为空 DocType: Data Migration Connector,Authentication Credentials,认证凭据 @@ -2319,10 +2401,10 @@ DocType: SMS Settings,SMS Gateway URL,短信网关的URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1}不能为“{2}”。它应该是一个“{3}” apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},由{0}通过自动规则{1}获得 apps/frappe/frappe/utils/data.py,{0} or {1},{0}或{1} +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,你们都准备好了! DocType: Workflow State,trash,垃圾 DocType: System Settings,Older backups will be automatically deleted,旧的备份将被自动删除 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,无效的访问密钥ID或秘密访问密钥。 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,你失去了一些能量点 DocType: Post,Is Globally Pinned,是全局固定的 apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,近期活动 DocType: Workflow Transition,Conditions,条件 @@ -2331,6 +2413,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,确认 DocType: Event,Ends on,结束于 DocType: Payment Gateway,Gateway,网关 DocType: LDAP Settings,Path to Server Certificate,服务器证书的路径 +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,您的浏览器禁用了Javascript apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,没有足够的权限查看链接 apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,没有足够的权限查看链接 apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,地址标题是必须项。 @@ -2350,7 +2433,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,欧盟 - 西1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",如果选中此选项,将导入包含有效数据的行,并将无效行转储到新文件中以供稍后导入。 apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,文件只有通过编辑角色的用户 -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,由收件人阅读 DocType: Blogger,Short Name,简称 @@ -2383,6 +2465,7 @@ DocType: Translation,PR sent,PR发送 DocType: Auto Email Report,Only Send Records Updated in Last X Hours,只发送记录在最后X小时更新 DocType: Auto Email Report,Only Send Records Updated in Last X Hours,只发送记录在最后X小时更新 DocType: Communication,Feedback,反馈 +apps/frappe/frappe/public/js/frappe/desk.js,Updated To A New Version 🎉,更新到新版本🎉 apps/frappe/frappe/public/js/frappe/form/controls/base_control.js,Open Translation,打开翻译 apps/frappe/frappe/templates/emails/auto_repeat_fail.html,This email is autogenerated,此电子邮件是自动生成的 DocType: Workflow State,Icon will appear on the button,图标将显示在按钮上 @@ -2421,6 +2504,8 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,找不到 DocType: DocField,Precision,精确 DocType: Website Slideshow,Slideshow Items,幻灯片项目 apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,尽量避免重复的单词和字符 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Notifications Disabled,通知已禁用 +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,您确定要删除所有行吗? DocType: Workflow Action,Workflow State,工作流状态 apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,行新增 apps/frappe/frappe/www/list.py,My Account,我的账户 @@ -2429,6 +2514,7 @@ apps/frappe/frappe/templates/emails/password_reset.html,Please click on the foll DocType: Notification,Days After,天后 apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ托盘连接有效! DocType: Contact Us Settings,Settings for Contact Us Page,联系我们页面的设置 +DocType: Server Script,Script Type,脚本类型 DocType: Print Settings,Enable Print Server,启用打印服务器 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0}周前 DocType: Email Account,Footer,页脚 @@ -2454,8 +2540,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per DocType: Workflow State,Warning,警告 apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,这可能会打印在多个页面上 DocType: Data Migration Run,Percent Complete,完成百分比 -DocType: Tag Category,Tag Category,标签类别 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",为了进行比较,请使用> 5,<10或= 324。对于范围,请使用5:10(对于5到10之间的值)。 DocType: Google Calendar,Pull from Google Calendar,从Google日历中提取 apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,帮助 DocType: User,Login Before,登录前 @@ -2465,17 +2549,21 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,隐藏周末 apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,自动生成定期文档。 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,是 +DocType: Onboarding Slide,ERPNext,企业资源计划 DocType: Workflow State,info-sign,info-sign apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0}不能是列表值 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",货币应该如何格式化?未设置将使用系统默认 apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,提交{0}文件? apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,您需要先登录,并具有系统管理员角色才能够访问备份。 +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","连接到QZ托盘应用程序时出错... <br><br>您需要安装并运行QZ Tray应用程序,才能使用Raw Print功能。 <br><br> <a href=""https://qz.io/download/"" target=""_blank"">单击此处下载并安装QZ托盘</a> 。 <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">单击此处以了解有关原始印刷的更多信息</a> 。" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,打印机映射 apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,请加附件前保存。 +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,您要取消所有链接的文档吗? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),已添加{0}({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},排{2}中的字段类型不能从{0}更改为{1} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,角色权限 DocType: Help Article,Intermediate,中间 +apps/frappe/frappe/config/settings.py,Email / Notifications,邮件通知 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0}已将{1}更改为{2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,已取消的文档已恢复为草稿 DocType: Data Migration Run,Start Time,开始时间 @@ -2492,6 +2580,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Share, apps/frappe/frappe/email/smtp.py,Invalid recipient address,无效的收件人地址 DocType: Workflow State,step-forward,step-forward DocType: System Settings,Allow Login After Fail,允许在失败后登录 +DocType: DocType Link,DocType Link,DocType链接 DocType: Role Permission for Page and Report,Set Role For,为...设置角色 DocType: GCalendar Account,The name that will appear in Google Calendar,将显示在Google日历中的名称 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,已存在{0}的直接房间。 @@ -2509,6 +2598,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},创建一 DocType: Contact,Google Contacts,Google通讯录 DocType: GCalendar Account,GCalendar Account,GCalendar帐户 DocType: Email Rule,Is Spam,是垃圾邮件 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,持续 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},报告{0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},打开{0} DocType: Data Import Beta,Import Warnings,导入警告 @@ -2520,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-sign apps/frappe/frappe/config/settings.py,Deleted Documents,已删除的文件 apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV格式区分大小写 apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,桌面图标已经存在 +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,指定幻灯片应显示在所有域中。如果未指定任何内容,则默认情况下,幻灯片会显示在所有域中。 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,复制 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}中的字段{1}无法隐藏,并且在没有默认情况下是必需的 DocType: Newsletter,Create and Send Newsletters,创建和发送新闻邮件 @@ -2530,6 +2621,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google日历活动ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",“上级”表示本条记录必须依赖添加的父表 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,评论点: +DocType: Scheduled Job Log,Scheduled Job Log,计划作业日志 +DocType: Server Script,Before Delete,删除之前 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,共享 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,附加文件/网址并添加到表格中。 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,消息未设置 @@ -2553,19 +2646,21 @@ DocType: About Us Settings,Settings for the About Us Page,关于我们页面的 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,条纹支付网关设置 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,条纹支付网关设置 apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,打印发送到打印机! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,能量点 +DocType: Notification Settings,Energy Points,能量点 +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},时间{0}必须采用以下格式:{1} DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,例如pop.gmail.com / imap.gmail.com DocType: User,Generate Keys,生成密钥 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,这将永久删除您的数据。 DocType: DocType,View Settings,视图设置 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Notification,新通知 DocType: Email Account,Outlook.com,Outlook.com DocType: Webhook,Request Structure,请求结构 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,控制器方法get_razorpay_order丢失 DocType: Personal Data Deletion Request,Pending Verification,待验证 DocType: Website Meta Tag,Website Meta Tag,网站元标记 DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",如果非标准端口(例如587)。如果在Google Cloud上,请尝试使用端口2525。 apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",清除结束日期,因为发布的页面不能在过去。 DocType: User,Send Me A Copy of Outgoing Emails,给我发送外发电子邮件的副本 -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.,添加谷歌Analytics ID:例如 UA-89XXX57-1。请查看Analytics帮助以获取更多信息。 apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,密码不能超过100个字符长 DocType: OAuth Client,App Client ID,应用程序客户端ID @@ -2594,6 +2689,7 @@ apps/frappe/frappe/www/update-password.html,New Password Required.,需要新密 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}向{1}共享了这个文件 DocType: Website Settings,Brand Image,品牌形象 DocType: Print Settings,A4,A4 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,导入模板应包含标题和至少一行。 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google日历已配置完毕。 apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",顶部导航栏,页脚和Logo的设置。 DocType: Web Form Field,Max Value,最大值 @@ -2603,6 +2699,7 @@ DocType: User Social Login,User Social Login,用户社交登录 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0}以{2}点批评了您在{1}上的工作 DocType: Contact,All,所有 DocType: Email Queue,Recipient,收件人 +DocType: Webhook,Webhook Security,Webhook安全 DocType: Communication,Has Attachment,有附件 DocType: Address,Sales User,销售用户 apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,拖放工具可以用来创建和定制打印格式。 @@ -2669,7 +2766,6 @@ DocType: Data Migration Mapping,Migration ID Field,迁移ID字段 DocType: Dashboard Chart,Last Synced On,最后同步 DocType: Comment,Comment Type,评论类型 DocType: OAuth Client,OAuth Client,开放式验证客户端 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0}批评了您在{1} {2}上的工作 DocType: Assignment Rule,Users,用户 DocType: Address,Odisha,奥里萨邦 DocType: Report,Report Type,报告类型 @@ -2695,14 +2791,12 @@ DocType: Website Slideshow Item,Website Slideshow Item,网站幻灯片项目 apps/frappe/frappe/model/workflow.py,Self approval is not allowed,不允许自我批准 DocType: GSuite Templates,Template ID,模板ID apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,授予类型( <code>{0}</code> )和响应类型( <code>{1}</code> )的组合不允许 -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},来自{0}的新讯息 DocType: Portal Settings,Default Role at Time of Signup,在注册时间默认角色 DocType: DocType,Title Case,标题案例 apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,点击下面的链接下载您的数据 apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},已为用户{0}启用电子邮件收件箱 DocType: Data Migration Run,Data Migration Run,数据迁移运行 DocType: Blog Post,Email Sent,邮件已发送 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,年长 DocType: DocField,Ignore XSS Filter,忽略XSS过滤器 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,removed,去除 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox的备份设置 @@ -2757,6 +2851,7 @@ DocType: Async Task,Queued,排队 DocType: Braintree Settings,Use Sandbox,使用沙盒 apps/frappe/frappe/utils/goal.py,This month,这个月 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新的自定义打印格式 +DocType: Server Script,Before Save (Submitted Document),保存之前(提交的文档) DocType: Custom DocPerm,Create,创建 apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,没有更多要显示的项目 apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,转到上一条记录 @@ -2814,6 +2909,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,移到废纸篓 DocType: Web Form,Web Form Fields,Web表单字段 DocType: Data Import,Amended From,修订源 +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,添加帮助视频链接,以防万一用户不知道要在幻灯片中填写什么内容。 apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},警告:无法找到{0}与任何表{1} DocType: S3 Backup Settings,eu-north-1,欧盟 - 北 - 1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,这份文件目前正在排队等待执行。请再试一次 @@ -2836,6 +2932,7 @@ DocType: Blog Post,Blog Post,博客文章 DocType: Access Log,Export From,从中导出 apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,高级搜索 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,您不能查看简报。 +DocType: Dashboard Chart,Group By,分组基于 DocType: User,Interests,兴趣 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,密码重置说明已发送到您的电子邮件 DocType: Energy Point Rule,Allot Points To Assigned Users,向分配的用户分配点 @@ -2851,6 +2948,7 @@ DocType: Assignment Rule,Assignment Rule,作业规则 apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},建议用户名:{0} DocType: Assignment Rule Day,Day,天 apps/frappe/frappe/public/js/frappe/desk.js,Modules,模块 +DocType: DocField,Mandatory Depends On,强制取决于 apps/frappe/frappe/templates/pages/integrations/payment-success.html,Payment Success,支付成功 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,没有{0}邮件 DocType: OAuth Bearer Token,Revoked,撤销 @@ -2858,6 +2956,7 @@ DocType: Web Page,Sidebar and Comments,边栏和评论 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",当你修订一个已取消和保存的文档时,文档会复制为一个副本。 apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",不允许附加{0}文档,请在打印设置中启用允许打印{0} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建一个新的电子邮件帐户 apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},请参阅{0}处的文档 DocType: Stripe Settings,Publishable Key,可发布密钥 DocType: Stripe Settings,Publishable Key,可发布密钥 @@ -2873,13 +2972,13 @@ DocType: Currency,Fraction,分数 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,活动与Google日历同步。 DocType: LDAP Settings,LDAP First Name Field,LDAP名现场 DocType: Contact,Middle Name,中间名 +DocType: DocField,Property Depends On,属性取决于 DocType: Custom Field,Field Description,字段说明 apps/frappe/frappe/model/naming.py,Name not set via Prompt,名称未通过提示符设置 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,收件箱 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",更新{1},{2}中的{0} DocType: Auto Email Report,Filters Display,显示过滤器 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",必须出现“modified_from”字段才能进行修改。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0}感谢您对{1} {2}的工作 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,保存过滤器 DocType: Address,Plant,厂 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,全部回复 @@ -2920,11 +3019,11 @@ DocType: Workflow State,folder-close,文件夹-关闭 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report:,报告: DocType: Print Settings,Print taxes with zero amount,打印零金额的税 apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0}不允许改名 +DocType: Server Script,Before Insert,插入之前 DocType: Custom Script,Custom Script,自定义脚本 DocType: Address,Address Line 2,地址行2 DocType: Address,Reference,参考 apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,已分配给 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认的电子邮件帐户 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,数据迁移映射细节 DocType: Data Import,Action,行动 DocType: GSuite Settings,Script URL,脚本网址 @@ -2950,11 +3049,13 @@ DocType: User,Api Access,应用程序界面访问 DocType: DocField,In List View,在列表视图 DocType: Email Account,Use TLS,使用TLS apps/frappe/frappe/email/smtp.py,Invalid login or password,无效的登录名或密码 +DocType: Scheduled Job Type,Weekly Long,每周长 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,下载模板 apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,为表单添加自定义的Java Script。 ,Role Permissions Manager,角色权限管理 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,新打印格式的名称 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,切换边栏 +DocType: Server Script,After Save (Submitted Document),保存后(提交的文档) DocType: Data Migration Run,Pull Insert,下拉插入 DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",将点乘以乘数值后允许的最大点(注意:无限制,将此字段留空或设置为0) @@ -2974,6 +3075,7 @@ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,博客 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP未安装 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,下载数据 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1}的值已更改 +DocType: Server Script,Before Cancel,取消之前 DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,子域名 DocType: S3 Backup Settings,Region,区域 @@ -3020,12 +3122,14 @@ apps/frappe/frappe/www/update-password.html,Old Password,旧密码 DocType: S3 Backup Settings,us-east-1,美国 - 东 - 1 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},帖子{0} apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",要格式化列,给列标签在查询中。 +DocType: Onboarding Slide,Slide Fields,滑动场 DocType: Has Domain,Has Domain,有域名 DocType: User,Allowed In Mentions,允许被“提到” apps/frappe/frappe/www/login.html,Don't have an account? Sign up,还没有账号?注册 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,无法删除ID字段 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} :没有“提交”的情况下不能分配“修订” DocType: Address,Bihar,比哈尔邦 +DocType: Notification Settings,Subscribed Documents,订阅文件 apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,用户设置 DocType: Report,Reference Report,参考报告 DocType: Activity Log,Link DocType,链接的文件类型 @@ -3043,6 +3147,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,授权Google日历访 apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,您正在访问的网页不存在。可能是网页被移到别处了或您输入的网址不正确。 apps/frappe/frappe/www/404.html,Error Code: {0},错误代码:{0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",列表页面说明,使用纯文本(最多140个字符)。 +DocType: Server Script,DocType Event,DocType事件 apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0}是必填字段 DocType: Workflow,Allow Self Approval,允许自我批准 DocType: Event,Event Category,活动类别 @@ -3059,6 +3164,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,您的姓名 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,连接成功 DocType: DocType,InnoDB,InnoDB +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,幻灯片类型继续的上载幻灯片已存在。 DocType: DocType,Default Sort Field,默认排序字段 DocType: File,Is Folder,在文件夹 DocType: Document Follow,DocType,文档类型 @@ -3097,8 +3203,10 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,值已 DocType: Workflow State,arrow-up,向上箭头 DocType: Dynamic Link,Link Document Type,链接文件类型 apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0}表至少应有一行 +DocType: Server Script,Server Script,服务器脚本 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",要配置自动重复,请从{0}启用“允许自动重复”。 DocType: OAuth Bearer Token,Expires In,过期日期在 +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",您要重复一组字段的次数(例如:如果幻灯片中需要3个客户,请将此字段设置为3。幻灯片中仅第一组字段显示为必填项) DocType: DocField,Allow on Submit,允许提交 DocType: DocField,HTML,HTML DocType: Error Snapshot,Exception Type,异常类型 @@ -3108,6 +3216,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,头 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,即将举行的活动 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,为App访问键和App保密密钥请输入值 +DocType: Email Account,Append Emails to Sent Folder,将电子邮件追加到已发送文件夹 DocType: Web Form,Accept Payment,接受支付 apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,选择列表项 apps/frappe/frappe/config/core.py,A log of request errors,错误请求的日志 @@ -3126,7 +3235,7 @@ DocType: Translation,Contributed,供稿 apps/frappe/frappe/config/customization.py,Form Customization,表单自定义 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,没有活动会话 DocType: Web Form,Route to Success Link,通往成功链接的路线 -DocType: Top Bar Item,Right,右边 +DocType: Onboarding Slide Field,Right,右边 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,没有即将发生的事件 DocType: User,User Type,用户类型 DocType: Prepared Report,Ref Report DocType,参考报告DocType @@ -3144,6 +3253,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Please try again,请再试一次 apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',网址必须以“http://”或“https://”开头 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,选项3 DocType: Communication,uid,UID +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,这不能被撤消 DocType: Workflow State,Edit,编辑 DocType: Website Settings,Chat Operators,聊天运营商 DocType: S3 Backup Settings,ca-central-1,CA-中央-1 @@ -3155,7 +3265,6 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,本表单中存在未保存的修改,请先保存后继续使用。 DocType: Address,Telangana,特兰伽纳 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,默认为{0}必须是一种选择 -DocType: Tag Doc Category,Tag Doc Category,标记文档类别 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,在横向模式下,超过10列的报告看起来更好。 apps/frappe/frappe/database/database.py,Invalid field name: {0},字段名称无效:{0} DocType: Milestone,Milestone,里程碑 @@ -3164,7 +3273,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},转到{0} apps/frappe/frappe/email/queue.py,Emails are muted,邮件已被静音 apps/frappe/frappe/config/integrations.py,Google Services,Google服务 apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,按Ctrl +向上 -apps/frappe/frappe/utils/data.py,1 weeks ago,一周前 +DocType: Onboarding Slide,Slide Description,幻灯片说明 DocType: Communication,Error,错误 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,请先设置一条消息 DocType: Auto Repeat,End Date,结束日期 @@ -3185,10 +3294,12 @@ DocType: Footer Item,Group Label,组标签 DocType: Kanban Board,Kanban Board,看板 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,已配置Google通讯录。 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,将导出1条记录 +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,没有与该用户关联的电子邮件帐户。请在“用户”>“电子邮件收件箱”下添加一个帐户。 DocType: DocField,Report Hide,报告隐藏 apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},不适用于树视图{0} DocType: DocType,Restrict To Domain,限制域名 DocType: Domain,Domain,领域 +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,无效的文件URL。请联系系统管理员。 DocType: Custom Field,Label Help,标签帮助 DocType: Workflow State,star-empty,star-empty apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,日期往往容易被猜中。 @@ -3213,6 +3324,7 @@ DocType: Workflow State,hand-left,hand-left DocType: Data Import,If you are updating/overwriting already created records.,如果您正在更新/覆盖已经创建的记录。 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,是全局性的 DocType: Email Account,Use SSL,使用SSL +DocType: Webhook,HOOK-.####,钩-。#### DocType: Workflow State,play-circle,玩圈 apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,无法正确分配文档 apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",“depends_on”表达式无效 @@ -3229,6 +3341,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Please enter a vali apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Last refreshed,最后刷新了 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,对于文档类型 DocType: Workflow State,arrow-right,向右箭头 +DocType: Server Script,API Method,API方法 DocType: Workflow State,Workflow state represents the current state of a document.,工作流状态表明文档目前的状态。 DocType: Letter Head,Letter Head Based On,基于的信头 apps/frappe/frappe/utils/oauth.py,Token is missing,令牌丢失 @@ -3268,6 +3381,7 @@ DocType: Comment,Relinked,重新链接 DocType: Print Settings,Compact Item Print,紧凑型项目打印 DocType: Email Account,uidnext,uidnext DocType: User,Redirect URL,URL重定向 +DocType: Onboarding Slide Field,Placeholder,占位符 DocType: SMS Settings,Enter url parameter for receiver nos,请输入收件人编号的URL参数 DocType: Chat Profile,Online,线上 DocType: Email Account,Always use Account's Name as Sender's Name,始终使用帐户名称作为发件人姓名 @@ -3277,7 +3391,6 @@ DocType: Workflow State,Home,主页 DocType: OAuth Provider Settings,Auto,自动 DocType: System Settings,User can login using Email id or User Name,用户可以使用电子邮件ID或用户名登录 DocType: Workflow State,question-sign,问题-签名 -apps/frappe/frappe/model/base_document.py,{0} is disabled,{0}被禁用 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Web视图必须使用字段“路由” apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},在{0}之前插入列 DocType: Energy Point Rule,The user from this field will be rewarded points,来自此字段的用户将获得奖励积分 @@ -3302,6 +3415,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,如果业主 DocType: Data Migration Mapping,Push,推送 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,删除文件 DocType: OAuth Authorization Code,Expiration time,到期时间 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,打开文件 DocType: Web Page,Website Sidebar,网站边栏 DocType: Web Form,Show Sidebar,显示侧边栏 apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,您需要登录才能访问此{0}。 @@ -3317,6 +3431,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,全球捷径 DocType: Desktop Icon,Page,页面 apps/frappe/frappe/utils/bot.py,Could not find {0} in {1},找不到{0} {1} apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,自己名字和姓氏很容易被猜到。 +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},文档从{0}重命名为{1} apps/frappe/frappe/config/website.py,Knowledge Base,知识库 DocType: Workflow State,briefcase,公文包 apps/frappe/frappe/model/document.py,Value cannot be changed for {0},值不能被改变为{0} @@ -3353,6 +3468,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,打印格式 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,切换网格视图 apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,转到下一条记录 +DocType: System Settings,Time Format,时间格式 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,无效的支付网关凭据 DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,这是只是行有一些错误而生成的模板文件。您应该使用此文件进行更正和导入。 apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,为文件类型和角色设置权限 @@ -3396,12 +3512,14 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Reply,回复 apps/frappe/frappe/config/core.py,Pages in Desk (place holders),主页(桌面)中的网页(占位符) DocType: DocField,Collapsible Depends On,可折叠取决于 DocType: Print Style,Print Style Name,打印样式名称 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,“分组依据”字段是创建仪表盘图表所必需的 DocType: Print Settings,Allow page break inside tables,允许在表格分页符 DocType: Email Account,SMTP Server,SMTP服务器 DocType: Print Format,Print Format Help,打印格式帮助 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0}教室必须最多容纳一个用户。 DocType: DocType,Beta,Beta版 DocType: Dashboard Chart,Count,计数 +DocType: Dashboard Chart,Group By Type,按类型分组 apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},对{0}的新评论:{1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},恢复{0}为{1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",如果你的操作是更新,请选择“覆盖”否则现有的行不会删除。 @@ -3412,8 +3530,10 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,用户资 DocType: Web Form,Web Form,Web表单 apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},日期{0}必须采用格式:{1} DocType: About Us Settings,Org History Heading,组织历史航向 +DocType: Scheduled Job Type,Scheduled Job Type,预定作业类型 DocType: Print Settings,Allow Print for Cancelled,允许打印为已取消 DocType: Communication,Integrations can use this field to set email delivery status,集成可以使用此字段来设置邮件发送状态 +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,您无权取消所有链接的文档。 DocType: Web Form,Web Page Link Text,网页链接文本 DocType: Page,System Page,系统页面 DocType: Page,System Page,系统页面 @@ -3421,6 +3541,7 @@ apps/frappe/frappe/config/settings.py,"Set default format, page size, print styl apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,ESC,退出 apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}的</b>自定义已导出到: <br> {1} DocType: Website Settings,Include Search in Top Bar,包括在顶栏搜索 +DocType: Scheduled Job Type,Daily Long,每日长 DocType: GSuite Settings,Allow GSuite access,允许GSuite访问 DocType: DocType,DESC,DESC DocType: DocType,Naming,命名 @@ -3524,6 +3645,7 @@ DocType: Notification,Send days before or after the reference date,之前或基 DocType: User,Allow user to login only after this hour (0-24),仅允许用户在此时后登录(0-24时) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",按顺序逐个分配 DocType: Integration Request,Subscription Notification,订阅通知 +DocType: Customize Form Field, Allow in Quick Entry ,允许快速输入 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,或附上一个 DocType: Auto Repeat,Start Date,开始日期 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Value,值 @@ -3538,6 +3660,7 @@ DocType: Google Drive,Backup Folder ID,备份文件夹ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,未开启开发模式!请在site_config.json中设置或创建一个自定义文档类型 DocType: Workflow State,globe,全局 DocType: System Settings,dd.mm.yyyy,日.月.年 +DocType: Onboarding Slide Help Link,Video,视频 DocType: Assignment Rule,Priority,优先 DocType: Email Queue,Unsubscribe Param,退订参数 DocType: DocType,Hide Sidebar and Menu,隐藏补充工具栏和菜单 @@ -3549,6 +3672,7 @@ DocType: DocType,Allow Import (via Data Import Tool),允许导入(通过数据 apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,锶 DocType: DocField,Float,浮点数 DocType: Print Settings,Page Settings,页面设置 +DocType: Notification Settings,Notification Settings,通知设置 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,保存... apps/frappe/frappe/www/update-password.html,Invalid Password,无效的密码 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,已成功导入{1}中的{0}条记录。 @@ -3564,6 +3688,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Auto Repeat Doc DocType: Email Account,GMail,GMail DocType: Letter Head,Letter Head Image,信头图像 DocType: Address,Party GSTIN,往来单位纳税登记号 +DocType: Scheduled Job Type,Cron Format,Cron格式 apps/frappe/frappe/public/js/frappe/utils/utils.js,{0} Report,{0}报告 DocType: SMS Settings,Use POST,使用POST DocType: Communication,SMS,短信 @@ -3609,18 +3734,20 @@ DocType: Workflow,Allow approval for creator of the document,允许批准文档 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,保存报告 DocType: Webhook,on_cancel,on_cancel DocType: Social Login Key,API Endpoint Args,应用程序界面端点参数 +DocType: DocType Action,Server Action,服务器动作 apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,通过{0}在{1}通过IP地址{2}访问的管理员。 apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,父字段必须是有效的字段名称 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,修改订阅时失败 DocType: LDAP Settings,LDAP Group Field,LDAP组字段 +DocType: Notification Subscribed Document,Notification Subscribed Document,通知订阅文件 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,等号 apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,CSV格式无效 -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","连接到QZ托盘应用程序时出错... <br><br>您需要安装并运行QZ Tray应用程序才能使用“原始打印”功能。 <br><br> <a href=""https://qz.io/download/"" target=""_blank"">单击此处下载并安装QZ托盘</a> 。 <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">单击此处以了解有关原始印刷的更多信息</a> 。" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,设置备份数量 DocType: DocField,Do not allow user to change after set the first time,不允许用户首次设置后再更改 apps/frappe/frappe/utils/data.py,1 year ago,一年前 +DocType: DocType,Links Section,链接部分 apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",查看所有打印,下载和导出事件的日志 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1个月 DocType: Contact,Contact,联系人 @@ -3647,16 +3774,19 @@ DocType: Email Account,UIDVALIDITY,UIDVALIDITY apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,新的电子邮件 DocType: Custom DocPerm,Export,导出 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",要使用Google日历,请启用{0}。 +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},还添加状态依赖项字段{0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0},已成功更新{0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ托盘失败: DocType: Dropbox Settings,Dropbox Settings,Dropbox的设置 DocType: About Us Settings,More content for the bottom of the page.,页面底部的更多内容。 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,该文件已被还原 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google云端硬盘备份成功。 +DocType: Webhook,Naming Series,名录 DocType: Workflow,DocType on which this Workflow is applicable.,此工作流适用的文档类型。 DocType: User,Enabled,已启用 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,无法完成设置 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,New {0}: {1},新{0}:{1} -DocType: Tag Category,Category Name,分类名称 +DocType: Blog Category,Category Name,分类名称 apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,上级表需要获取子表数据 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,进口认购 DocType: Print Settings,PDF Settings,PDF设置 @@ -3692,6 +3822,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,No DocType: Workflow State,Calendar,日历 apps/frappe/frappe/client.py,No document found for given filters,没有找到给定过滤器的文档 apps/frappe/frappe/config/website.py,A user who posts blogs.,发布博客的用户。 +DocType: DocType Action,DocType Action,DocType操作 apps/frappe/frappe/model/rename_doc.py,"Another {0} with name {1} exists, select another name",具有相同名称{1}的{0}已存在,请更名。 DocType: DocType,Custom?,自定义? DocType: Website Settings,Website Theme Image,网站主题图片 @@ -3701,6 +3832,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},无法加 apps/frappe/frappe/config/integrations.py,Backup,备份 apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,创建仪表板图表需要文档类型 DocType: DocField,Read Only,只读 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,无法创建razorpay订单 apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,新的通讯 DocType: Energy Point Log,Energy Point Log,能量点日志 DocType: Print Settings,Send Print as PDF,使用PDF格式发送打印 @@ -3726,16 +3858,17 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,确 apps/frappe/frappe/www/login.html,Or login with,或用...登录 DocType: Error Snapshot,Locals,当地人 apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},通过传达{0}在{1} {2} -apps/frappe/frappe/core/doctype/comment/comment.py,{0} mentioned you in a comment in {1},{0}在留言中提到你{1} apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,选择分组依据... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例如:(55 + 434)/ 4 =或Math.sin(Math.PI / 2)... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}是必填项 DocType: Integration Request,Integration Type,整合型 DocType: Newsletter,Send Attachements,发送附着物 +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,找不到过滤器 apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google通讯录集成。 DocType: Transaction Log,Transaction Log,交易日志 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),基于上个月表现的统计数据(从{0}到{1}) DocType: Contact Us Settings,City,城市 +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,隐藏所有用户的卡片 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,在“自定义表单”中为doctype {0}启用“允许自动重复” DocType: DocField,Perm Level,权限等级 apps/frappe/frappe/www/confirm_workflow_action.html,View document,查看文档 @@ -3747,6 +3880,7 @@ DocType: DocType,"If enabled, changes to the document are tracked and shown in t apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},行{1}中的类型{0}不允许“全局搜索” apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},行{1}中的类型{0}不允许“全局搜索” DocType: Energy Point Log,Appreciation,升值 +DocType: Dashboard Chart,Number of Groups,组数 apps/frappe/frappe/public/js/frappe/views/treeview.js,View List,查看列表 DocType: Workflow,Don't Override Status,不要覆盖状态 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,搜索词 @@ -3788,7 +3922,6 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation poin DocType: S3 Backup Settings,cn-northwest-1,CN-西北-1 DocType: Dropbox Settings,Limit Number of DB Backups,限制数据库备份数量 DocType: Custom DocPerm,Level,级别 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,过去30天 DocType: Custom DocPerm,Report,报告 apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,量必须大于0。 apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,连接到QZ托盘! @@ -3805,6 +3938,7 @@ DocType: S3 Backup Settings,us-west-2,美西2 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,选择子表 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,触发主要操作 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,变化 +DocType: Social Login Key,User ID Property,用户ID属性 DocType: Email Domain,domain name,域名 DocType: Contact Email,Contact Email,联络人电邮 DocType: Kanban Board Column,Order,订购 @@ -3827,7 +3961,7 @@ DocType: Contact,Last Name,姓 DocType: Event,Private,私人 apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,没有警报今天 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),使用PDF格式发送打印附件(推荐) -DocType: Web Page,Left,左边 +DocType: Onboarding Slide Field,Left,左边 DocType: Event,All Day,全日 apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,看来该网站的支付网关配置不正确,无法付款。 DocType: GCalendar Settings,State,状态 @@ -3859,7 +3993,6 @@ DocType: Workflow State,User,用户 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",标题显示在浏览器窗口中的“前缀 - 标题” DocType: Payment Gateway,Gateway Settings,网关设置 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,文件类型的文本 -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,运行测试 apps/frappe/frappe/handler.py,Logged Out,登出 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,更多... DocType: System Settings,User can login using Email id or Mobile number,用户可以使用电子邮件ID或手机号登录 @@ -3876,6 +4009,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfull apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,概要 DocType: Event,Event Participants,活动参与者 DocType: Auto Repeat,Frequency,频率 +DocType: Onboarding Slide,Slide Order,幻灯片订单 DocType: Custom Field,Insert After,在后边插入 DocType: Event,Sync with Google Calendar,与Google日历同步 DocType: Access Log,Report Name,报告名称 @@ -3903,6 +4037,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},行{0}中,货币类型的最大宽度是100像素 apps/frappe/frappe/config/website.py,Content web page.,内容的网页。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,新建角色 +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,访问网页 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,新作业 DocType: Google Contacts,Last Sync On,上次同步开启 DocType: Deleted Document,Deleted Document,删除的文档 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,糟糕!出错了 @@ -3913,7 +4049,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景观 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,在JavaScript客户端脚本扩展 DocType: Webhook,on_trash,on_trash apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,以下文档类型的记录将被过滤 -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,调度程序无效 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,调度程序无效 DocType: Blog Settings,Blog Introduction,博客介绍 DocType: Global Search Settings,Search Priorities,搜索优先级 DocType: Address,Office,办公室 @@ -3923,13 +4059,13 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,仪表板图表链接 DocType: User,Email Settings,邮件设置 apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,放在这里 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",如果启用,用户可以使用双因素身份验证从任何IP地址登录,也可以在系统设置中为所有用户设置 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,打印机设置...... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,请输入您的密码以继续 apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,请输入您的密码以继续 apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Me,我 apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0}不是有效的国家 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,适用于所有文档类型 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,能量点更新 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,能量点更新 +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),仅在(天)不活动的情况下每天运行作业 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',请选择其他付款方式。贝宝不支持货币交易“{0}” DocType: Chat Message,Room Type,房型 DocType: Data Import Beta,Import Log Preview,导入日志预览 @@ -3938,6 +4074,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,ok-circle DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP用户创建和映射 apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',你可以通过问“找到橙客户找东西 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,今日活动 apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,抱歉,用户必须对自己的记录拥有完全的访问权。 ,Usage Info,使用信息 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,显示键盘快捷键 @@ -3954,6 +4091,7 @@ DocType: DocField,Unique,唯一 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0}赞赏{1} apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,部分成功 DocType: Email Account,Service,服务 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户 DocType: File,File Name,文件名 apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),没有为{0} 找到{0}( {1} ) apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},分辨率:{0} @@ -3967,6 +4105,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,完成 DocType: GCalendar Settings,Enable,启用 DocType: Google Maps Settings,Home Address,主页地址 apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),一次最多只能上传5000条记录(某些情况下可能更少) +DocType: Report,"output in the form of `data = [columns, result]`",以data = [columns,result]的形式输出 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,适用的文件类型 apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,为用户分配设置规则。 apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}的权限不足 @@ -3984,7 +4123,6 @@ DocType: Communication,To and CC,收件人和抄送 DocType: SMS Settings,Static Parameters,静态参数 DocType: Chat Message,Room,房间 apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},更新{0} -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,后台作业未运行。请联系管理员 DocType: Portal Settings,Custom Menu Items,自定义菜单项 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,所有连接到网站幻灯片的图片应该是公开的 DocType: Workflow State,chevron-right,V形向右 @@ -3999,11 +4137,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,已选择{0}个值 DocType: DocType,Allow Auto Repeat,允许自动重复 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,没有要显示的值 +DocType: DocType,URL for documentation or help,文档或帮助的URL DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,电子邮件模板 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,成功更新了{0}条记录。 apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},用户{0}没有通过文档{1}的角色权限访问doctype apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,登录名和密码是必须项 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,让\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,请刷新以获得最新的文档。 DocType: User,Security Settings,安全设置 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,添加列 @@ -4013,6 +4153,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,过滤元 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},请查找附件{0}:{1} DocType: Web Page,Set Meta Tags,设置元标记 +DocType: Email Account,Use SSL for Outgoing,使用SSL进行传出 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: S3 Backup Settings,Backup Limit,备份限制 DocType: Dashboard Chart,Line,线 @@ -4045,6 +4186,3 @@ DocType: DocField,Ignore User Permissions,忽略用户权限 apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,保存成功 apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,请向管理员询问,以确认您的注册 DocType: Domain Settings,Active Domains,活动域 -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,显示日志 -apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Leaderboard,排行榜 -apps/frappe/frappe/config/desktop.py,Leaderboard,排行榜 diff --git a/frappe/translations/zh_tw.csv b/frappe/translations/zh_tw.csv index a280533817..3ddce180d7 100644 --- a/frappe/translations/zh_tw.csv +++ b/frappe/translations/zh_tw.csv @@ -2,7 +2,6 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps ar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,請選擇一個金額字段。 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,正在載入匯入檔案... DocType: Assignment Rule,Last User,最後用戶 -apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",一個新的任務,{0},已分配給您{1}。 {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,會話默認值已保存 apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,重新載入檔案 DocType: Email Queue,Email Queue records.,電子郵件隊列記錄。 @@ -26,6 +25,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0}樹 DocType: User,User Emails,用戶電子郵件 DocType: User,Username,用戶名 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,導入郵編 +DocType: Scheduled Job Type,Create Log,創建日誌 apps/frappe/frappe/model/base_document.py,Value too big,值過大 DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,運行腳本測試 @@ -66,7 +66,7 @@ DocType: Test Runner,Test Runner,測試運行 DocType: Auto Repeat,Monthly,每月一次 DocType: Email Account,Enable Incoming,啟用傳入 apps/frappe/frappe/core/doctype/version/version_view.html,Danger,危險 -DocType: Address,Email Address,電子郵件地址 +apps/frappe/frappe/www/login.py,Email Address,電子郵件地址 DocType: Workflow State,th-large,TH-大 DocType: Communication,Unread Notification Sent,未讀發送通知 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,不允許導出。您需要{0}的角色。 @@ -74,11 +74,11 @@ DocType: Assignment Rule,Automatically Assign Documents to Users,自動為用戶 DocType: DocType,Is Published Field,發布現場 DocType: GCalendar Settings,GCalendar Settings,GCalendar設置 DocType: Email Group,Email Group,電子郵件組 +apps/frappe/frappe/__init__.py,Only for {},僅適用於 {} apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google日曆 - 無法從Google日曆中刪除事件{0},錯誤代碼為{1}。 DocType: Event,Pulled from Google Calendar,從Google日曆中拉出 DocType: Note,Seen By,看到通過 apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,添加多個 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained some energy points,你獲得了一些能量點 apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,不是有效的用戶映像。 DocType: Success Action,First Success Message,第一個成功消息 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,不喜歡 @@ -96,6 +96,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple DocType: DocType,"If enabled, the document is marked as seen, the first time a user opens it",如果啟用,則在用戶第一次打開文檔時將文檔標記為已顯示 DocType: Auto Repeat,Repeat on Day,一天重複 DocType: DocField,Color,顏色 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all as Read,標記為已讀 DocType: Data Migration Run,Log,日誌 DocType: Workflow State,indent-right,右邊縮排 DocType: Has Role,Has Role,有作用 @@ -114,6 +115,7 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,顯示回溯 DocType: DocType,Default Print Format,預設列印格式 DocType: Workflow State,Tags,標籤 +DocType: Onboarding Slide,Slide Type,幻燈片類型 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,無:結束的工作流程 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能設置在{1}是獨一無二的,因為有非唯一存在的價值 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,文檔類型 @@ -123,7 +125,6 @@ DocType: Language,Guest,客人 DocType: DocType,Title Field,標題字段 DocType: Error Log,Error Log,錯誤日誌 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL,無效的網址 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,過去7天 apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",重複像“ABCABCABC”只稍硬比“ABC”猜測 apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",如果你認為這是未經授權的,請更改管理員密碼。 DocType: Data Import Beta,Data Import Beta,數據導入Beta @@ -139,6 +140,7 @@ DocType: OAuth Authorization Code,Client,客戶 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select Column,選擇列 apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,這種形式已被修改,你已經裝好了之後, DocType: Address,Himachal Pradesh,喜馬偕爾邦 +DocType: Notification Log,Notification Log,通知日誌 DocType: System Settings,"If not set, the currency precision will depend on number format",如果未設置,則貨幣精度將取決於數字格式 DocType: System Settings,"If not set, the currency precision will depend on number format",如果未設置,則貨幣精度將取決於數字格式 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,打開Awesomebar @@ -149,7 +151,7 @@ apps/frappe/frappe/config/website.py,Embed image slideshows in website pages., apps/frappe/frappe/email/doctype/newsletter/newsletter.js,Send,發送 DocType: Workflow Action Master,Workflow Action Name,工作流程執行名稱 apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType文檔類型不能合併 -DocType: Web Form Field,Fieldtype,FIELDTYPE +DocType: Onboarding Slide Field,Fieldtype,FIELDTYPE apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,沒有一個zip文件 DocType: Auto Repeat,"To add dynamic subject, use jinja tags like @@ -161,6 +163,8 @@ DocType: Newsletter,Email Sent?,郵件發送? apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,切換圖表 apps/frappe/frappe/desk/form/save.py,Did not cancel,沒有取消 DocType: Social Login Key,Client Information,客戶信息 +DocType: Energy Point Rule,Apply this rule only once per document,每個文檔僅應用一次此規則 +DocType: DocField,Read Only Depends On,只讀取決於 apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,登錄為來賓或管理員 DocType: Email Account,UNSEEN,看不見 DocType: Website Settings,"HTML Header, Robots and Redirects",HTML標頭,機器人和重定向 @@ -176,9 +180,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter has already apps/frappe/frappe/twofactor.py,"Login session expired, refresh page to retry",登錄會話過期,刷新頁面重試 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/public/js/frappe/ui/toolbar/energy_points_notifications.js,No activity,沒有活動 +DocType: Server Script,Script Manager,腳本管理器 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,沒有活動 apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,第三方應用 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,第一個用戶將成為系統管理器(你可以改變這個版本)。 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,今天沒有活動 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,你不能給自己提供評論點 apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType必須為所選Doc事件提交 DocType: Workflow State,circle-arrow-up,圓圈箭頭向上 @@ -208,6 +214,7 @@ apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},不允許{0}:{1}。受限制的字段:{2} 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,You are not allowed to delete a standard Website Theme,你不允許刪除標準的網站主題 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},創建您的第一個{0} DocType: Data Import,Log Details,日誌詳情 DocType: Workflow Transition,Example,例 DocType: Webhook Header,Webhook Header,Webhook標題 @@ -219,8 +226,10 @@ DocType: Workflow Action,Completed By,完成 apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,無法刪除 apps/frappe/frappe/public/js/frappe/request.js,The resource you are looking for is not available,您正在查找的資源不可用 apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read,標記為已讀 +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide <b>{0}</b> with the same slide order already exists,具有相同幻燈片順序的入門幻燈片<b>{0}</b>已存在 apps/frappe/frappe/core/doctype/report/report.js,Disable Report,禁用報告 DocType: Translation,Contributed Translation Doctype Name,貢獻翻譯文檔類型名稱 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表格 DocType: Data Migration Mapping,Pull,拉 DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript的格式:frappe.query_reports ['REPORTNAME'] = {} DocType: Workflow State,chevron-up,人字形-上 @@ -232,6 +241,7 @@ DocType: DocShare,Internal record of document shares,文件股內部記錄 DocType: Energy Point Settings,Review Levels,評論級別 DocType: Workflow State,Comment,評論 DocType: Data Migration Plan,Postprocess Method,後處理方法 +DocType: DocType Action,Action Type,動作類型 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"You can change Submitted documents by cancelling them and then, amending them.",您可以通過取消他們,然後,對其進行修正更改已提交的文件。 DocType: Data Import,Update records,更新記錄 apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Invalid module path,無效的模塊路徑 @@ -257,6 +267,7 @@ DocType: Workflow State,headphones,頭戴耳機 apps/frappe/frappe/email/doctype/email_account/email_account.py,Password is required or select Awaiting Password,需要密碼,或者選擇等待密碼 DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,如replies@yourcomany.com。所有答复將得出這樣的收件箱。 DocType: Slack Webhook URL,Slack Webhook URL,Slack Webhook網址 +DocType: Onboarding Slide,"Determines the order of the slide in the wizard. If the slide is not to be displayed, priority should be set to 0.",確定嚮導中幻燈片的順序。如果不顯示幻燈片,則應將優先級設置為0。 DocType: Data Migration Run,Current Mapping,當前映射 apps/frappe/frappe/templates/includes/login/login.js,Valid email and name required,需要有效的電子郵件和姓名 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Make all attachments private,將所有附件設為私有 @@ -277,6 +288,7 @@ apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,不允 apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,重置為預設值 DocType: Workflow,Transition Rules,過渡規則 apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,在預覽中僅顯示前{0}行 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,限制條件 DocType: Workflow,Defines workflow states and rules for a document.,定義文檔工作流狀態和規則。 DocType: Workflow State,Filter,過濾器 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},檢查錯誤日誌以獲取更多信息:{0} @@ -300,7 +312,9 @@ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,不能使 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType for field {1} in row {2},{0}:選項必須是行{2}中字段{1}的有效DocType DocType: Web Form,Button Help,按鈕幫助 DocType: About Us Settings,Team Members,團隊成員 +DocType: System Settings,Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0.,對於非活動站點,每天僅運行一次計劃的作業。如果設置為0,則默認為4天。 DocType: Assignment Rule,System Manager,系統管理器 +DocType: Scheduled Job Log,Scheduled Job,預定工作 DocType: Custom DocPerm,Permissions,權限 apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks用於內部集成 DocType: Dropbox Settings,Allow Dropbox Access,讓Dropbox的訪問 @@ -347,6 +361,7 @@ apps/frappe/frappe/core/doctype/success_action/success_action.js,Select atleast apps/frappe/frappe/public/js/frappe/barcode_scanner/quagga.js,Scan Barcode,掃描條形碼 DocType: Email Flag Queue,Email Flag Queue,電子郵件標誌隊列 apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,打印格式樣式表 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Aggregate Function field is required to create a dashboard chart,創建儀錶盤圖需要“匯總功能”字段 apps/frappe/frappe/utils/bot.py,Can't identify open {0}. Try something else.,無法識別開{0}。嘗試別的東西。 apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,用戶{0}無法刪除 DocType: System Settings,Currency Precision,貨幣精確度 @@ -358,10 +373,11 @@ apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could n DocType: Property Setter,Field Name,欄位名稱 DocType: Assignment Rule,Assign To Users,分配給用戶 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,module name...,模塊的名稱... -apps/frappe/frappe/templates/pages/integrations/payment-success.html,Continue,繼續 +DocType: Onboarding Slide,Continue,繼續 DocType: Custom Field,Fieldname,欄位名稱 DocType: Workflow State,certificate,證書 apps/frappe/frappe/templates/includes/login/login.js,Verifying...,驗證中... +apps/frappe/frappe/desk/form/assign_to.py,Your assignment on {0} {1} has been removed,您在{0} {1}上的分配已被刪除 apps/frappe/frappe/core/doctype/data_export/exporter.py,First data column must be blank.,第一個數據列必須為空。 apps/frappe/frappe/core/doctype/version/version.js,Show all Versions,顯示所有版本 apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,查看評論 @@ -370,11 +386,13 @@ DocType: Energy Point Log,Review,評論 apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,儀表板 apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,無法在這個時候發送電子郵件 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google日曆 - 無法更新Google日曆中的活動{0},錯誤代碼為{1}。 +DocType: Notification Log,Email Content,郵件內容 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,搜索或輸入命令 DocType: Activity Log,Timeline Name,時間軸名稱 apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,只能將一個{0}設置為主。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,添加新的規則 DocType: Contact,Sales Master Manager,銷售主檔經理 +apps/frappe/frappe/www/login.html,You need to enable JavaScript for your app to work.,您需要為應用程序啟用JavaScript。 DocType: User Permission,For Value,為價值 DocType: Event,Google Calendar ID,Google日曆ID apps/frappe/frappe/www/complete_signup.html,One Last Step,最後一步 @@ -389,6 +407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP中間名字段 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},導入{1}的{0} DocType: GCalendar Account,Allow GCalendar Access,允許GCalendar訪問 +DocType: DocType,Documentation Link,文檔鏈接 apps/frappe/frappe/templates/includes/login/login.js,Login token required,需要登錄令牌 apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,選擇多個列表項 DocType: Event,Repeat Till,重複直到 @@ -406,6 +425,7 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Set as Default apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload in Progress. Please try again in a few moments.,文件上傳正在進行中。請稍後重試。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,編輯標題 apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,添加訂閱 +DocType: Notification Log,Energy Point,能量點 apps/frappe/frappe/desk/doctype/event/event.py,Upcoming Events for Today,近期活動今日 DocType: Google Calendar,Push to Google Calendar,推送到Google日曆 DocType: Notification Recipient,Email By Document Field,電子郵件通過文檔欄位 @@ -419,12 +439,12 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Chat Profile,Away,遠 DocType: Currency,Fraction Units,部分單位 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0}從{1}到{2} -apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,標為已完成 DocType: Chat Message,Type,類型 DocType: Google Settings,OAuth Client ID,OAuth客戶端ID DocType: Auto Repeat,Subject,主題 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,回到辦公桌 DocType: Web Form,Amount Based On Field,用量以現場 +apps/frappe/frappe/__init__.py,{0} has no versions tracked.,{0}沒有跟踪版本。 apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,用戶是強制性的分享 DocType: DocField,Hidden,隱藏 DocType: Web Form,Allow Incomplete Forms,允許不完整的表格 @@ -453,6 +473,7 @@ DocType: Language,Language Code,語言代碼 DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,注意:默認情況下,會發送失敗備份的電子郵件。 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Add Filter,新增過濾器 apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,SMS sent to following numbers: {0},短信發送至以下號碼:{0} +DocType: Notification Settings,Assignments,作業 apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,開始對話。 DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",隨時添加“草案”標題打印文件草案 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},通知錯誤:{} @@ -460,13 +481,16 @@ DocType: Data Migration Run,Current Mapping Start,當前映射開始 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,電子郵件已被標記為垃圾郵件 DocType: Comment,Website Manager,網站管理 apps/frappe/frappe/public/js/frappe/socketio_client.js,File Upload Disconnected. Please try again.,文件上傳已斷開連接。請再試一次。 +DocType: Data Import Beta,Show Failed Logs,顯示失敗的日誌 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Translations,翻譯 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,您選擇了草稿或已取消的文檔 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},文檔{0}已被{2}設置為狀態{1} apps/frappe/frappe/model/document.py,Document Queued,文檔排隊 DocType: Desktop Icon,List,名單 DocType: Activity Log,Link Name,鏈接名稱 +apps/frappe/frappe/public/js/frappe/list/list_view.js,You haven\,你沒有 DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy +DocType: Onboarding Slide,Onboarding Slide,入門幻燈片 apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,無效的密碼: apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,無效的密碼: DocType: Print Settings,Send document web view link in email,發送電子郵件文件Web視圖鏈接 @@ -514,6 +538,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Toggle Public/ DocType: Data Migration Mapping Detail,Remote Fieldname,遠程字段名稱 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,查看參考 apps/frappe/frappe/core/doctype/user/user.py,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,演示中無法更改用戶詳細信息。請在https://erpnext.com註冊一個新帳戶 +DocType: Dashboard Chart,Aggregate Function Based On,基於的聚合函數 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Please duplicate this to make changes,請複製此做出改變 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Press Enter to save,按Enter鍵保存 apps/frappe/frappe/utils/pdf.py,PDF generation failed because of broken image links,PDF生成,因為破碎的圖像鏈接失敗 @@ -527,7 +552,9 @@ DocType: Notification,Days Before,前幾天 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,每日活動應在同一天結束。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,編輯... DocType: Workflow State,volume-down,容積式 +DocType: Onboarding Slide,Help Links,幫助鏈接 apps/frappe/frappe/auth.py,Access not allowed from this IP Address,不允許從該IP地址訪問 +DocType: Notification Settings,Enable Email Notifications,啟用電子郵件通知 apps/frappe/frappe/desk/reportview.py,No Tags,沒有標籤 DocType: Email Account,Send Notification to,通知發送到 DocType: DocField,Collapsible,可折疊 @@ -552,6 +579,7 @@ DocType: Google Drive,Last Backup On,上次備份 DocType: Customize Form Field,Customize Form Field,自定義表單域 DocType: Energy Point Rule,For Document Event,對於文件活動 DocType: Website Settings,Chat Room Name,聊天室名稱 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Unchanged,不變的 DocType: OAuth Client,Grant Type,格蘭特類型 apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,勾選那些文件是用戶可讀取的 DocType: Deleted Document,Hub Sync ID,集線器同步ID @@ -570,6 +598,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Message clipped,郵 DocType: Email Account,Notify if unreplied,如果沒有回复的通知 apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,掃描QR碼並輸入顯示的結果代碼。 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,啟用漸變 +DocType: Scheduled Job Type,Hourly Long,每小時長 DocType: System Settings,Minimum Password Score,最低密碼分數 DocType: System Settings,Minimum Password Score,最低密碼分數 DocType: DocType,Fields,欄位 @@ -578,10 +607,12 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,父表 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,S3備份完成! apps/frappe/frappe/config/desktop.py,Developer,開發者 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,創建 +apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},要啟用它,請遵循以下鏈接中的說明:{0} apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,第{1}行的{0}不能同時有URL和子項 apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},下表至少應有一行:{0} DocType: Print Format,Default Print Language,默認打印語言 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,root{0}無法刪除 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,No failed logs,沒有失敗的日誌 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,還沒有評論 apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup SMS before setting it as an authentication method, via SMS Settings",請通過SMS設置將其設置為身份驗證方式之前設置短信 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Both DocType and Name required,既需要的DocType和名稱 @@ -603,6 +634,7 @@ DocType: Address,Address Title,地址名稱 DocType: Website Settings,Footer Items,頁腳項目 apps/frappe/frappe/public/js/frappe/ui/page.html,Menu,選單 DocType: DefaultValue,DefaultValue,預設值 +DocType: Onboarding Slide,Max Count,最大計數 apps/frappe/frappe/config/users_and_permissions.py,User Roles,用戶角色 DocType: Property Setter,Property Setter overrides a standard DocType or Field property,物業二傳手覆蓋標準的DocType或實地房產 apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,無法更新:不正確的/過期的鏈接。 @@ -620,6 +652,7 @@ DocType: Footer Item,"target = ""_blank""",目標=“_blank” DocType: Workflow State,hdd,硬盤 DocType: Integration Request,Host,主辦 DocType: Data Import Beta,Import File,導入文件 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Template Error,模板錯誤 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column <b>{0}</b> already exist.,列<b>{0}</b>已經存在。 DocType: S3 Backup Settings,Secret Access Key,秘密訪問密鑰 apps/frappe/frappe/core/doctype/user/user.py,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret已被重置。下次登錄時需要重新註冊。 @@ -632,6 +665,7 @@ DocType: Web Form Field,Show in filter,在過濾器中顯示 DocType: Address,Daman and Diu,達曼和迪烏 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,專案 DocType: Address,Personal,個人 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Raw Printing Settings...,原始打印設置... DocType: S3 Backup Settings,See https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region for details.,有關詳細信息,請參閱https://docs.aws.amazon.com/de_de/general/latest/gr/rande.html#s3_region。 apps/frappe/frappe/config/settings.py,Bulk Rename,批次重命名 DocType: Email Queue,Show as cc,顯示為CC @@ -658,11 +692,13 @@ DocType: Energy Point Rule,User Field,用戶字段 DocType: DocType,MyISAM,MyISAM數據 DocType: Data Migration Run,Push Delete,推刪除 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0}已經退訂給{1} {2} +DocType: Scheduled Job Type,Stopped,停止 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,沒有刪除 apps/frappe/frappe/desk/like.py,Liked,喜歡 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Send Now,立即發送 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",標準DocType不能具有默認打印格式,請使用自定義表單 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Standard DocType cannot have default print format, use Customize Form",標準DocType不能具有默認打印格式,請使用自定義表單 +DocType: Server Script,Allow Guest,允許訪客 DocType: Report,Query,查詢 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,'In List View' not allowed for type {0} in row {1},“在列表視圖中”第{1}行的類型{0}不允許 DocType: Letter Head,Footer HTML,頁腳HTML @@ -683,6 +719,7 @@ apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the DocType: System Settings,Two Factor Authentication method,雙因素認證方法 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,首先設置名稱並保存記錄。 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5條記錄 +DocType: DocType Link,Link Fieldname,鏈接字段名稱 apps/frappe/frappe/email/queue.py,Unsubscribe,退訂 DocType: View Log,Reference Name,參考名稱 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,改變用戶 @@ -697,6 +734,7 @@ apps/frappe/frappe/custom/doctype/property_setter/property_setter.py,Field type DocType: Workflow,Rules defining transition of state in the workflow.,規則乃定義作業流程內狀態的轉變 DocType: File,Folder,文件夾 DocType: Website Route Meta,Website Route Meta,網站路線元 +DocType: Onboarding Slide Field,Onboarding Slide Field,入職幻燈片字段 DocType: Email Group,Newsletter Manager,通訊經理 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,選項1 apps/frappe/frappe/config/settings.py,Log of error during requests.,錯誤的過程中請求日誌。 @@ -717,7 +755,6 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,設 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,配置圖表 DocType: User,Last IP,最後一個IP apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,請在您的電子郵件中添加主題 -apps/frappe/frappe/share.py,A new document {0} has been shared by with you {1}.,與您分享了新的文檔{0} {1}。 DocType: Data Migration Connector,Data Migration Connector,數據遷移連接器 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}還原{1} DocType: Email Account,Track Email Status,跟踪電子郵件狀態 @@ -764,6 +801,7 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js,Archived Column DocType: Email Account,Default Outgoing,預設傳出 apps/frappe/frappe/templates/emails/new_user.html,Click on the link below to complete your registration and set a new password,點擊下面的鏈接完成註冊,並設定新密碼 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not add,沒有添加 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} points for {2} {3},{0}的{2} {3}獲得了{1}分 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,沒有電子郵件帳戶分配 DocType: S3 Backup Settings,eu-west-2,歐盟 - 西2 DocType: Contact Us Settings,Contact Us Settings,聯絡我們的設定 @@ -772,6 +810,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Searching ...,正在搜 DocType: Workflow State,text-width,文字寬度 apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,此記錄最大附件限制到達。 apps/frappe/frappe/public/js/frappe/file_uploader/FileBrowser.vue,Search by filename or extension,按文件名或擴展名搜索 +DocType: Onboarding Slide,Slide Title,幻燈片標題 DocType: Notification,View Properties (via Customize Form),視圖屬性(通過自定義窗體) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,單擊文件以選擇它。 DocType: Note Seen By,Note Seen By,注意看通過 @@ -795,10 +834,10 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Report cannot be set for Sing apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,分享網址 DocType: System Settings,Allow Consecutive Login Attempts ,允許連續登錄嘗試 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,An error occured during the payment process. Please contact us.,付款過程中發生錯誤。請聯繫我們。 +DocType: Onboarding Slide,If Slide Type is Create or Settings there should be a 'create_onboarding_docs' method in the {ref_doctype}.py file bound to be executed after the slide is completed.,如果“幻燈片類型”是“創建”或“設置”,則{ref_doctype} .py文件中應有一個“ create_onboarding_docs”方法,該方法必須在幻燈片完成後執行。 DocType: Email Account,Awaiting Password,等待密碼 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Descendants Of,不是後代 DocType: Contact,Company Name,公司名稱 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,設置... apps/frappe/frappe/templates/emails/delete_data_confirmation.html, to your browser,到你的瀏覽器 apps/frappe/frappe/utils/data.py,Cent,一分錢 ,Recorder,錄音機 @@ -896,13 +935,13 @@ DocType: Web Form,Allow Print,允許打印 DocType: Communication,Clicked,點擊 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,取消關注 apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},沒有權限“{0}” {1} +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認的電子郵件帳戶 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,計劃送 DocType: DocType,Track Seen,軌道看 DocType: Dropbox Settings,File Backup,文件備份 apps/frappe/frappe/public/js/frappe/list/list_view.js,No {0} found,沒有找到{0} apps/frappe/frappe/config/customization.py,Add custom forms.,添加自定義表單。 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document,提交這份文件 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,The system provides many pre-defined roles. You can add new roles to set finer permissions.,該系統提供了許多預先定義的角色。您可以添加新的角色設定更精細的權限。 DocType: Communication,CC,CC DocType: Data Migration Run,Trigger Name,觸發器名稱 @@ -944,7 +983,6 @@ DocType: User Email,User Email,用戶電子郵件 DocType: User,Represents a User in the system.,表示系統中一個用戶。 DocType: List View Setting,Disable Auto Refresh,禁用自動刷新 DocType: Comment,Label,標籤 -apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.",任務{0},您分配給{1},已關閉。 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,請關閉此窗口 DocType: Print Format,Print Format Type,列印格式類型 DocType: Newsletter,A Lead with this Email Address should exist,與此電子郵件地址的鉛應存在 @@ -977,12 +1015,14 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction ( DocType: Help Article,Knowledge Base Contributor,知識庫貢獻者 DocType: Communication,Sent Read Receipt,發送閱讀回執 DocType: Email Queue,Unsubscribe Method,退訂方法 +DocType: Onboarding Slide,Add More Button,添加更多按鈕 DocType: GSuite Templates,Related DocType,相關DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,編輯添加內容 apps/frappe/frappe/public/js/frappe/views/communication.js,Select Languages,選擇語言 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Card Details,卡詳情 apps/frappe/frappe/__init__.py,No permission for {0},對於無許可{0} DocType: DocType,Advanced,先進 +DocType: Onboarding Slide,Slide Image Source,幻燈片圖像源 apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Seems API Key or API Secret is wrong !!!,似乎API密鑰或API的秘密是錯誤的! apps/frappe/frappe/templates/emails/auto_reply.html,Reference: {0} {1},參考:{0} {1} DocType: File,Attached To Name,單身者姓名 @@ -995,6 +1035,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Criticize,批評 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,主 DocType: DocType,User Cannot Create,無法建立使用者 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox的訪問被批准! +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Are you sure you want to merge {0} with {1}?,您確定要將{0}與{1}合併嗎? DocType: Customize Form,Enter Form Type,輸入表單類型 DocType: Google Drive,Authorize Google Drive Access,授權Google Drive Access apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,缺少參數看板名稱 @@ -1029,6 +1070,7 @@ DocType: Energy Point Log,Social,社會 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not create Calendar for {0}, error code {1}.",Google日曆 - 無法為{0}創建日曆,錯誤代碼為{1}。 apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Editing Row,編輯行 DocType: Workflow Action Master,Workflow Action Master,工作流操作主 +apps/frappe/frappe/public/js/frappe/form/grid.js,Delete All,刪除所有 DocType: Custom Field,Field Type,欄位類型 apps/frappe/frappe/utils/data.py,only.,整 DocType: Route History,Route History,路線歷史 @@ -1062,11 +1104,13 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All, apps/frappe/frappe/www/login.html,Forgot Password?,忘了密碼? DocType: System Settings,yyyy-mm-dd,年 - 月 - 日 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,服務器錯誤 +DocType: Server Script,After Delete,刪除後 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,See all past reports.,查看所有過去的報告。 apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,登錄ID是必需的 DocType: Website Slideshow,Website Slideshow,網站連續播放 apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,無數據 DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)",鏈接是網站的主頁。標準鏈接(索引,登錄,產品,博客,約,接觸) +DocType: Server Script,After Submit,提交後 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},當接收來自帳戶{0}的電子郵件時,身份驗證失敗。從伺服器消息:{1} DocType: User,Banner Image,橫幅圖片 DocType: Custom Field,Custom Field,自定義欄位 @@ -1104,14 +1148,12 @@ DocType: Transaction Log,Chaining Hash,鏈接哈希 apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,請設置電子郵件地址 DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop",如果用戶有任何檢查的作用,那麼用戶就變成了“系統用戶”。 “系統用戶”訪問桌面 DocType: System Settings,Date and Number Format,日期和數字格式 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表格 apps/frappe/frappe/public/js/frappe/desk.js,Checking one moment,檢查一個時刻 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,顯示標籤 DocType: DocField,HTML Editor,HTML編輯器 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,未發送 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶 DocType: Workflow State,align-justify,對齊對齊 DocType: User,Middle Name (Optional),中間名(可選) apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,不允許 @@ -1124,6 +1166,7 @@ DocType: User,Document Follow,文件關注 apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,沒有結果 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,原定發送到{0}受助人 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,切 +DocType: Server Script,After Save,保存後 apps/frappe/frappe/model/rename_doc.py,renamed from {0} to {1},從更名{0}到{1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1} ({2} rows with children),{1}的{0}(有子項的{2}行) DocType: Currency,**Currency** Master,** 主要貨幣 ** @@ -1147,14 +1190,17 @@ DocType: Prepared Report,Filter Values,過濾值 DocType: Communication,User Tags,用戶標籤 DocType: Data Migration Run,Fail,失敗 DocType: Workflow State,download-alt,下載的Alt +DocType: Scheduled Job Type,Last Execution,最後執行 DocType: Data Migration Run,Pull Failed,拉失敗 apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Show / Hide Cards,顯示/隱藏卡片 DocType: Communication,Feedback Request,反饋請求 apps/frappe/frappe/config/settings.py,Import Data from CSV / Excel files.,從CSV / Excel文件導入數據。 +DocType: Notification Log,From User,來自用戶 DocType: Web Page,Main Section,主區塊 DocType: Page,Icon,圖標 apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",提示:在密碼中加入符號,數字和大寫字母 apps/frappe/frappe/www/update-password.html,"Hint: Include symbols, numbers and capital letters in the password",提示:在密碼中加入符號,數字和大寫字母 +apps/frappe/frappe/config/settings.py,"Configure notifications for mentions, assignments, energy points and more.",配置有關提及,任務,能量點等的通知。 DocType: DocField,Allow in Quick Entry,允許快速輸入 DocType: System Settings,dd/mm/yyyy,dd/mm/yyyy DocType: System Settings,Backups,備份 @@ -1192,8 +1238,10 @@ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and cha DocType: Energy Point Rule,Energy Point Rule,能量點規則 DocType: Communication,Delayed,延遲 apps/frappe/frappe/config/settings.py,List of backups available for download,可供下載的備份目錄 +apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Try the new Data Import,嘗試新的數據導入 apps/frappe/frappe/www/login.html,Sign up,報名 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,行{0}:不允許禁用標準域的強制性 +DocType: Webhook,Enable Security,啟用安全性 apps/frappe/frappe/config/customization.py,Dashboards,儀表板 DocType: Test Runner,Output,產量 DocType: Milestone,Track Field,田徑場 @@ -1201,6 +1249,7 @@ DocType: Notification,Set Property After Alert,警報後設置屬性 apps/frappe/frappe/config/customization.py,Add fields to forms.,將欄位添加到表單。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,看起來這個網站的Paypal配置有問題。 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,添加評論 +apps/frappe/frappe/desk/form/assign_to.py,{0} assigned a new task {1} {2} to you,{0}為您分配了新任務{1} {2} apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),字體大小(px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,只允許從“自定義表單”自定義標準DocType。 DocType: Access Log,File Type,文件類型 @@ -1210,7 +1259,9 @@ DocType: Portal Menu Item,Portal Menu Item,門戶菜單項 apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.js,Set Filters,設置過濾器 DocType: Contact Us Settings,Email ID,電子郵件ID DocType: Energy Point Rule,Multiplier Field,乘數場 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create Razorpay order. Please contact Administrator,無法創建Razorpay訂單。請聯繫管理員 DocType: Dashboard Chart,Time Interval,時間間隔 +apps/frappe/frappe/share.py,{0} shared a document {1} {2} with you,{0}與您共享了一個文檔{1} {2} DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.<br> e.g. project,資源的列表,它的客戶端應用程序必須將用戶允許後訪問。 <br>如項目 DocType: Translation,Translated Text,翻譯文本 DocType: Contact Us Settings,Query Options,查詢選項 @@ -1228,6 +1279,7 @@ DocType: DefaultValue,Key,關鍵 DocType: Address,Contacts,往來 DocType: System Settings,Setup Complete,安裝完成 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,所有的文件共享報告 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",導入模板的類型應為.csv,.xlsx或.xls apps/frappe/frappe/www/update-password.html,New Password,新密碼 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,過濾器{0}丟失 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,抱歉!不能刪除自動生成的註釋 @@ -1242,6 +1294,7 @@ DocType: DocField,"Don't HTML Encode HTML tags like <script> or just chara apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized on {1},{0}批評{1} DocType: Website Settings,FavIcon,網站圖標 DocType: Blog Post,Content (HTML),內容(HTML) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Setup for,設置 DocType: Personal Data Download Request,User Name,用戶名 DocType: Workflow State,minus-sign,減號 apps/frappe/frappe/www/printview.py,No {0} permission,無{0}的權限 @@ -1251,7 +1304,6 @@ DocType: Data Export,Fields Multicheck,字段Multicheck DocType: Activity Log,Login,登入 apps/frappe/frappe/www/qrcode.html,Hi {0},{0} apps/frappe/frappe/config/integrations.py,Google Drive Integration.,Google雲端硬盤集成。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} reverted your points on {1} {2},{0}在{1} {2}上恢復了您的積分 DocType: System Settings,Enable Scheduled Jobs,啟用預定作業 apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,注意事項: apps/frappe/frappe/core/page/background_jobs/background_jobs.py,Inactive,待用 @@ -1274,6 +1326,7 @@ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,常見 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Permission Error,權限錯誤 apps/frappe/frappe/model/naming.py,Name of {0} cannot be {1},{0}的名稱不能為{1} DocType: User Permission,Applicable For,適用 +DocType: Dashboard Chart,From Date,從日期 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,會話已過期 apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,會話已過期 apps/frappe/frappe/utils/password_strength.py,Straight rows of keys are easy to guess,鍵的直排容易被猜中 @@ -1290,6 +1343,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js,Se DocType: Workflow Transition,Next State,下一狀態 DocType: User,Block Modules,封鎖模組 DocType: Print Format,Custom CSS,自定義CSS +DocType: Energy Point Rule,Apply Only Once,僅申請一次 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,新增評論 apps/frappe/frappe/config/settings.py,Log of error on automated events (scheduler).,登錄自動化事件(調度)的錯誤。 apps/frappe/frappe/utils/csvutils.py,Not a valid Comma Separated Value (CSV File),不是一個有效的逗號分隔值( CSV文件) @@ -1314,7 +1368,6 @@ DocType: Chat Profile,Offline,離線 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},成功導入{0} DocType: User,API Key,API密鑰 DocType: Email Account,Send unsubscribe message in email,發送電子郵件退訂消息 -apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,編輯標題 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,字段名這將是在DOCTYPE這個鏈接字段。 apps/frappe/frappe/config/desk.py,Documents assigned to you and by you.,分配給您和您的文檔。 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,You can also copy-paste this ,您也可以復制粘貼它 @@ -1342,6 +1395,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea DocType: DocField,Attach Image,附上圖片 DocType: Workflow State,list-alt,列表ALT apps/frappe/frappe/www/update-password.html,Password Updated,密碼更新 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限 apps/frappe/frappe/www/qrcode.html,Steps to verify your login,驗證您的登錄的步驟 apps/frappe/frappe/utils/password.py,Password not found,密碼未找到 DocType: Data Migration Mapping,Page Length,頁面長度 @@ -1367,6 +1421,7 @@ DocType: DocType,Is Tree,是樹 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),對於一個場的列在網格數(在網格總列應小於11) DocType: DocType,System,系統 apps/frappe/frappe/www/login.html,Have an account? Login,有一個賬戶?登錄 +apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Print Settings...,打印設置... DocType: Workflow State,arrow-down,箭頭向下 apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},用戶不得刪除{0}:{1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1}的{0} @@ -1398,6 +1453,7 @@ DocType: Workflow State,hand-down,手向下 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,"No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type ""Select"".",找不到可用作看板列的字段。使用“自定義表單”添加“選擇”類型的自定義字段。 DocType: Address,GST State,消費稅狀態 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Cancel without Submit,{0} :沒有提交便無法設為取消 +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,User ({0}),用戶({0}) DocType: Website Theme,Theme,主題 DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,重定向URI勢必授權碼 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Help,打開幫助 @@ -1411,7 +1467,7 @@ apps/frappe/frappe/model/naming.py,Naming Series mandatory,命名系列強制性 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} points,{0}以{2}分批評你在{1}上的工作 DocType: Kanban Board Column,Red,紅 DocType: Workflow State,Tag,標籤 -DocType: Custom Script,Script,腳本 +DocType: Report,Script,腳本 apps/frappe/frappe/core/doctype/data_import/log_details.html,Document can't saved.,文件無法保存。 DocType: Energy Point Rule,Maximum Points,最高積分 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,我的設定 @@ -1437,9 +1493,12 @@ DocType: Address,Haryana,哈里亞納邦 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation points for {1} {2},{0} {1} {2}的升值點 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,角色可以從他們的用戶頁面的用戶進行設置。 apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,添加評論 +DocType: Dashboard Chart,Select Date Range,選擇日期範圍 DocType: DocField,Mandatory,強制性 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,模塊導出 +DocType: Scheduled Job Type,Monthly Long,每月長 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0} :無基本權限設定 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Send an email to {0} to link it here,發送電子郵件至{0}以在此處鏈接 apps/frappe/frappe/utils/backups.py,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,"Meaning of Submit, Cancel, Amend",的含義提交,取消,修改 apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,待辦事項 @@ -1456,6 +1515,7 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Linked With,連結到 apps/frappe/frappe/templates/emails/auto_email_report.html,Edit Auto Email Report Settings,修改電子郵件報告設置 DocType: Chat Room,Message Count,消息計數 DocType: Workflow State,book,書 +apps/frappe/frappe/public/js/frappe/form/form.js,{0} {1} is linked with the following submitted documents: {2},{0} {1}與以下提交的文檔鏈接:{2} DocType: Communication,Read by Recipient,由收件人閱讀 DocType: Website Settings,Landing Page,著陸頁 apps/frappe/frappe/public/js/frappe/form/script_manager.js,Error in Custom Script,錯誤自定義腳本 @@ -1468,6 +1528,7 @@ DocType: System Settings,Allow Login using Mobile Number,允許使用手機號 apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permissions to access this resource. Please contact your manager to get access.,您沒有足夠的權限來訪問該資源。請聯繫您的經理,以獲得訪問權。 DocType: Custom Field,Custom,自訂 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",如果啟用,從限制IP地址登錄的用戶將不會被提示輸入雙因素身份驗證 +DocType: Server Script,After Cancel,取消後 DocType: Auto Repeat,Get Contacts,獲取聯繫人 apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,跳過無標題列 DocType: Notification,Send alert if date matches this field's value,發送警示,如果日期匹配該欄位的值 @@ -1496,7 +1557,9 @@ apps/frappe/frappe/templates/includes/login/login.js,Enter Code displayed in OTP apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Unable to update event,無法更新事件 apps/frappe/frappe/twofactor.py,Verification code has been sent to your registered email address.,驗證碼已發送到您註冊的電子郵件地址。 apps/frappe/frappe/core/doctype/user/user.py,Throttled,節流 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Your Target,您的目標 apps/frappe/frappe/utils/data.py,"Filter must have 4 values (doctype, fieldname, operator, value): {0}",過濾器必須有4個值(doctype,fieldname,operator,value):{0} +apps/frappe/frappe/model/naming.py,No Name Specified for {0},沒有為{0}指定名稱 apps/frappe/frappe/public/js/frappe/list/list_view.js,Apply Assignment Rule,應用分配規則 apps/frappe/frappe/utils/bot.py,show,顯示 apps/frappe/frappe/utils/data.py,Invalid field name {0},字段名稱{0}無效 @@ -1504,7 +1567,6 @@ apps/frappe/frappe/model/document.py,{0} must be after {1},{0}必須在{1}之後 DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,數據遷移計劃映射 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,開始Frappé... DocType: Web Form Field,Max Length,最長長度 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,For {0} {1},對於{0} {1} DocType: Workflow State,map-marker,地圖標記 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,提交問題 DocType: Event,Repeat this Event,重複此事件 @@ -1534,13 +1596,13 @@ apps/frappe/frappe/www/404.html,Page missing or moved,頁面丟失或移動 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Reviews,評測 DocType: DocType,Route,路線 apps/frappe/frappe/config/integrations.py,Razorpay Payment gateway settings,Razorpay支付網關設置 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} gained {1} point for {2} {3},{0}為{2} {3}贏得了{1}點 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Fetch attached images from document,從文檔中獲取附加圖像 DocType: Chat Room,Name,名稱 DocType: Contact Us Settings,Skype,Skype的 DocType: Assignment Rule,Load Balancing,負載均衡 apps/frappe/frappe/public/js/frappe/form/controls/link.js,Open Link,打開鏈接 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Language,你的語言 -DocType: Tag Category,Doctypes,文檔類型 apps/frappe/frappe/public/js/frappe/form/print.js,Printer,打印機 apps/frappe/frappe/desk/query_report.py,Query must be a SELECT,查詢必須是一個SELECT DocType: Data Export,Select DocType,選擇DocType @@ -1591,6 +1653,7 @@ apps/frappe/frappe/permissions.py,You are not allowed to export {} doctype,您 apps/frappe/frappe/desk/form/assign_to.py,Shared with user {0} with read access,與用戶{0}共享讀取權限 DocType: GCalendar Account,Next Sync Token,下一個同步令牌 DocType: Energy Point Settings,Energy Point Settings,能量點設置 +DocType: Onboarding Slide Field,Align,對齊 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,對{0}重置權限? apps/frappe/frappe/config/desktop.py,Users and Permissions,用戶和權限 DocType: S3 Backup Settings,S3 Backup Settings,S3備份設置 @@ -1606,7 +1669,9 @@ DocType: DocType,ASC,ASC apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,新的打印格式名稱 apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,單擊下面的鏈接批准該請求 DocType: Workflow State,align-left,靠左對齊 +DocType: Onboarding Slide,Action Settings,動作設定 DocType: User,Defaults,預設 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了進行比較,請使用> 5,<10或= 324。對於範圍,請使用5:10(對於5到10之間的值)。 DocType: Energy Point Log,Revert Of,還原 apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,合併與現有的 DocType: Communication Link,Link Title,鏈接標題 @@ -1653,6 +1718,7 @@ DocType: Data Migration Mapping,Remote Primary Key,遠程主鍵 DocType: Notification,Value Change,值變動 DocType: Google Contacts,Authorize Google Contacts Access,授權Google通訊錄訪問權限 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,僅顯示報告中的數字字段 +apps/frappe/frappe/utils/data.py,1 week ago,1週前 DocType: Data Import Beta,Import Type,導入類型 DocType: Access Log,HTML Page,HTML頁面 DocType: Address,Subsidiary,副 @@ -1662,7 +1728,6 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Driv apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,與信 apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,無效的發送郵件服務器或端口 DocType: Custom DocPerm,Write,寫 -apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,只有管理員可以創建查詢/腳本的報告 DocType: Data Import Beta,Preview,預覽 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",場“價值”是強制性的。請指定值進行更新 DocType: Customize Form,Use this fieldname to generate title,使用該字段名來生成標題 @@ -1671,6 +1736,7 @@ apps/frappe/frappe/contacts/doctype/contact/contact.js,Invite as User,邀請成 DocType: Data Migration Run,Started,入門 apps/frappe/frappe/permissions.py,User {0} does not have access to this document,用戶{0}無權訪問此文檔 DocType: Data Migration Run,End Time,結束時間 +DocType: Dashboard Chart,Group By Based On,分組依據 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,選擇附件 apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,你不允許列印此文件 apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js,Currently updating {0},當前正在更新{0} @@ -1702,6 +1768,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,確認 DocType: Workflow Document State,Update Field,更新欄位 DocType: Chat Profile,Enable Chat,啟用聊天 DocType: LDAP Settings,Base Distinguished Name (DN),基本專有名稱(DN) +DocType: Server Script,API,API apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,離開這個談話 apps/frappe/frappe/model/base_document.py,Options not set for link field {0},對於鏈接欄位沒有設置選項{0} apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Queue / Worker,隊列/工人 @@ -1762,11 +1829,11 @@ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_ apps/frappe/frappe/auth.py,Login not allowed at this time,在這個時候不允許登錄 DocType: Data Migration Run,Current Mapping Action,當前映射行為 DocType: Dashboard Chart Source,Source Name,源名稱 -apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,沒有與該用戶關聯的電子郵件帳戶。請在“用戶”>“電子郵件收件箱”下添加一個帳戶。 DocType: Email Account,Email Sync Option,電子郵件同步選項 apps/frappe/frappe/core/doctype/data_import/log_details.html,Row No,行號 DocType: Async Task,Runtime,運行時 DocType: Contact Us Settings,Introduction,介紹 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Need Help?,需要幫忙? apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,全球銷 DocType: LDAP Settings,LDAP Email Field,LDAP電子郵件字段 apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0}目錄 @@ -1775,7 +1842,6 @@ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,已經在 DocType: User Email,Enable Outgoing,啟用外 DocType: Address,Fax,傳真 apps/frappe/frappe/config/customization.py,Custom Tags,自定義標記 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶 DocType: Comment,Submitted,提交 DocType: Contact,Pulled from Google Contacts,來自Google通訊錄 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,In Valid Request,非法請求 @@ -1795,7 +1861,7 @@ DocType: DocField,Dynamic Link,動態鏈接 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,按Alt鍵可在菜單和側欄中觸發其他快捷方式 DocType: List View Setting,List View Setting,列表視圖設置 apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html,Show failed jobs,顯示失敗的作業 -DocType: Event,Details,詳細資訊 +DocType: Scheduled Job Log,Details,詳細資訊 DocType: Property Setter,DocType or Field,DocType或欄位 apps/frappe/frappe/public/js/frappe/form/sidebar/document_follow.js,You unfollowed this document,你取消了這份文件 DocType: Communication,Soft-Bounced,軟退回 @@ -1803,7 +1869,6 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,似乎可發布的密鑰或秘密密鑰錯誤! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Seems Publishable Key or Secret Key is wrong !!!,似乎可發布的密鑰或秘密密鑰錯誤! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Quick Help for Setting Permissions,設定權限快速求助 -DocType: Tag Doc Category,Doctype to Assign Tags,文檔類型來分配標籤 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js,Show Relapses,顯示復發 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been moved to trash,電子郵件已被移至垃圾桶 DocType: Report,Report Builder,報表生成器 @@ -1817,6 +1882,7 @@ DocType: Webhook,Webhook Headers,Webhook標題 DocType: Workflow State,Upload,上載 DocType: User Permission,Advanced Control,高級控制 apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,未發布 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認的地址模板。請從設置>打印和商標>地址模板中創建一個新地址。 apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",流程的操作(如批准、取消)。 DocType: Data Import,Skip rows with errors,跳過有錯誤的行 DocType: Workflow State,flag,旗標 @@ -1824,7 +1890,6 @@ DocType: Web Page,Text Align,文本對齊 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,跳到現場 DocType: Contact Us Settings,Forward To Email Address,轉發到郵件地址 DocType: Contact Phone,Is Primary Phone,是主要電話 -apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,發送電子郵件至{0}以將其鏈接到此處。 DocType: Auto Email Report,Weekdays,平日 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0}條記錄將被導出 apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,標題字段必須是有效的字段名 @@ -1845,13 +1910,13 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"On DocType: Data Import Beta,Submit After Import,導入後提交 DocType: Error Log,Log of Scheduler Errors,日程安排程序錯誤日誌 DocType: User,Bio,生物 +DocType: Onboarding Slide Help Link,Onboarding Slide Help Link,入門幻燈片幫助鏈接 DocType: OAuth Client,App Client Secret,應用程序客戶端密鑰 apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,Parent是將數據添加到的文檔的名稱。 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive - Could not create folder in Google Drive - Error Code {0},Google雲端硬盤 - 無法在Google雲端硬盤中創建文件夾 - 錯誤代碼{0} DocType: DocType,UPPER CASE,大寫字母 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,自定義HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,輸入文件夾名稱 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認的地址模板。請從設置>打印和品牌>地址模板中創建一個新地址。 apps/frappe/frappe/auth.py,Unknown User,未知用戶 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Role,選擇角色 DocType: Comment,Deleted,刪除 @@ -1871,7 +1936,7 @@ DocType: Workflow Document State,Represents the states allowed in one document a DocType: Data Migration Connector,Database Name,數據庫名稱 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,更新表格 DocType: DocField,Select,選擇 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,View Full Log,查看完整日誌 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,查看完整日誌 DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",簡單的Python表達式,例如:status =='Open'並輸入=='Bug' apps/frappe/frappe/utils/csvutils.py,File not attached,文件未附 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,連接丟失。某些功能可能無法使用。 @@ -1972,6 +2037,7 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Navigate Home,導航回家 DocType: GSuite Settings,Google Credentials,Google憑據 apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,用於登錄驗證的QR碼 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,添加到待辦事項 +DocType: Scheduled Job Log,Scheduled,預定 DocType: User,Logout from all devices while changing Password,更改密碼時從所有設備註銷 apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,確認密碼 apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,有錯誤 @@ -1994,7 +2060,7 @@ DocType: Data Import,In Progress,進行中 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,排隊等待備份。這可能需要幾分鐘到一個小時。 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,用戶權限已經存在 apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},將列{0}映射到字段{1} -DocType: User,Hourly,每小時 +DocType: Scheduled Job Type,Hourly,每小時 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,註冊OAuth客戶端應用程序 DocType: DocField,Fetch If Empty,獲取如果為空 DocType: Data Migration Connector,Authentication Credentials,身份驗證憑據 @@ -2004,9 +2070,9 @@ DocType: Energy Point Settings,Point Allocation Periodicity,點分配週期 DocType: SMS Settings,SMS Gateway URL,短信閘道的URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} 不能為“{2}”。它應該是“{3}”的其中一個 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},由{0}通過自動規則{1}獲得 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,You are all set up!,你們都準備好了! DocType: System Settings,Older backups will be automatically deleted,舊的備份將被自動刪除 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,無效的訪問密鑰ID或秘密訪問密鑰。 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,你失去了一些能量點 DocType: Post,Is Globally Pinned,是全球固定的 apps/frappe/frappe/desk/page/user_profile/user_profile.html,Recent Activity,近期活動 DocType: Workflow Transition,Conditions,條件 @@ -2015,6 +2081,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirmed,確認 DocType: Event,Ends on,結束於 DocType: Payment Gateway,Gateway,網關 DocType: LDAP Settings,Path to Server Certificate,服務器證書的路徑 +apps/frappe/frappe/www/login.html,Javascript is disabled on your browser,您的瀏覽器禁用了Javascript apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,沒有足夠的權限查看鏈接 apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to see links,沒有足夠的權限查看鏈接 apps/frappe/frappe/contacts/doctype/address/address.py,Address Title is mandatory.,地址標題是強制性的。 @@ -2034,7 +2101,6 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricte DocType: S3 Backup Settings,eu-west-1,歐盟 - 西1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",如果選中此選項,將導入包含有效數據的行,並將無效行轉儲到新文件中以供稍後導入。 apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,文件只有通過編輯角色的用戶 -apps/frappe/frappe/desk/form/assign_to.py,"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: Communication,Read by Recipient On,由收件人閱讀 DocType: Blogger,Short Name,簡稱 @@ -2099,12 +2165,14 @@ apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,找不到 DocType: DocField,Precision,精確 DocType: Website Slideshow,Slideshow Items,幻燈片項目 apps/frappe/frappe/utils/password_strength.py,Try to avoid repeated words and characters,盡量避免重複的單詞和字符 +apps/frappe/frappe/public/js/frappe/form/grid.js,Are you sure you want to delete all rows?,您確定要刪除所有行嗎? DocType: Workflow Action,Workflow State,工作流程狀態 apps/frappe/frappe/www/list.py,My Account,我的帳戶 DocType: ToDo,Allocated To,為了分配 apps/frappe/frappe/templates/emails/password_reset.html,Please click on the following link to set your new password,請點擊以下鏈接來設置新密碼 apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Connection Active!,QZ托盤連接有效! DocType: Contact Us Settings,Settings for Contact Us Page,設定「聯絡我們」的頁面 +DocType: Server Script,Script Type,腳本類型 DocType: Print Settings,Enable Print Server,啟用打印服務器 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} weeks ago,{0}週前 DocType: Email Account,Footer,頁腳 @@ -2126,8 +2194,6 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import, DocType: Deleted Document,Deleted DocType,刪除的DocType apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permission Levels,權限級別 apps/frappe/frappe/public/js/frappe/form/print.js,This may get printed on multiple pages,這可能會打印在多個頁面上 -DocType: Tag Category,Tag Category,標籤分類 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了進行比較,請使用> 5,<10或= 324。對於範圍,請使用5:10(對於5到10之間的值)。 DocType: Google Calendar,Pull from Google Calendar,從Google日曆中提取 apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,幫助 DocType: User,Login Before,登錄前 @@ -2136,15 +2202,19 @@ DocType: Prepared Report,Error Message,錯誤信息 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新的報告名稱 apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,隱藏週末 apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,自動生成定期文檔。 +DocType: Onboarding Slide,ERPNext,企業資源計劃 DocType: Workflow State,info-sign,資訊符號 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",此貨幣使用何種格式?如果沒有設定,將使用系統預設值。 apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,您需要先登錄,並具有系統管理員角色才能夠訪問備份。 +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","連接到QZ托盤應用程序時出錯... <br><br>您需要安裝並運行QZ Tray應用程序才能使用Raw Print功能。 <br><br> <a href=""https://qz.io/download/"" target=""_blank"">單擊此處下載並安裝QZ托盤</a> 。 <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">單擊此處以了解有關原始印刷的更多信息</a> 。" apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,打印機映射 apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,請安裝前儲存。 +apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,您要取消所有鏈接的文檔嗎? apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),添加{0}({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},列{2}的欄位類型不能從{0}改變為{1} apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,角色權限 DocType: Help Article,Intermediate,中間 +apps/frappe/frappe/config/settings.py,Email / Notifications,郵件通知 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0}已將{1}更改為{2} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled Document restored as Draft,已取消的文檔已恢復為草稿 DocType: Data Migration Run,Start Time,開始時間 @@ -2159,6 +2229,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Something w apps/frappe/frappe/email/smtp.py,Invalid recipient address,無效的收件人地址 DocType: Workflow State,step-forward,往前進 DocType: System Settings,Allow Login After Fail,允許在失敗後登錄 +DocType: DocType Link,DocType Link,DocType鏈接 DocType: Role Permission for Page and Report,Set Role For,集角色 DocType: GCalendar Account,The name that will appear in Google Calendar,將顯示在Google日曆中的名稱 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,已存在{0}的直接房間。 @@ -2176,6 +2247,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},建立一 DocType: Contact,Google Contacts,Google通訊錄 DocType: GCalendar Account,GCalendar Account,GCalendar帳戶 DocType: Email Rule,Is Spam,是垃圾郵件 +apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,Last,持續 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},報告{0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},打開{0} DocType: Data Import Beta,Import Warnings,導入警告 @@ -2186,6 +2258,7 @@ DocType: Workflow State,ok-sign,OK符號 apps/frappe/frappe/config/settings.py,Deleted Documents,已刪除的文件 apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV格式區分大小寫 apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,桌面圖標已經存在 +DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,指定幻燈片應顯示在所有域中。如果未指定任何內容,則默認情況下,幻燈片會顯示在所有域中。 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,複製 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}中的字段{1}無法隱藏,並且在沒有默認情況下是必需的 DocType: Newsletter,Create and Send Newsletters,建立和發送簡訊 @@ -2196,6 +2269,8 @@ apps/frappe/frappe/email/doctype/notification/notification.py,Please specify whi DocType: Event,Google Calendar Event ID,Google日曆活動ID apps/frappe/frappe/core/doctype/data_export/exporter.py,"""Parent"" signifies the parent table in which this row must be added",“父項”表示在該行必須增加父表 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Review Points: ,評論點: +DocType: Scheduled Job Log,Scheduled Job Log,計劃作業日誌 +DocType: Server Script,Before Delete,刪除之前 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Shared With,隨著共享 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,附加文件/網址並添加到表格中。 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not setup,消息未設置 @@ -2217,17 +2292,18 @@ DocType: About Us Settings,Settings for the About Us Page,設置關於我們頁 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,條紋支付網關設置 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,條紋支付網關設置 apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,打印發送到打印機! -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Energy Points,能量點 +DocType: Notification Settings,Energy Points,能量點 +apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},時間{0}必須採用以下格式:{1} DocType: User,Generate Keys,生成密鑰 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,這將永久刪除您的數據。 DocType: DocType,View Settings,視圖設置 DocType: Webhook,Request Structure,請求結構 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Controller method get_razorpay_order missing,控制器方法get_razorpay_order丟失 DocType: Personal Data Deletion Request,Pending Verification,待驗證 DocType: Website Meta Tag,Website Meta Tag,網站元標記 DocType: Email Account,"If non standard port (e.g. 587). If on Google Cloud, try port 2525.",如果非標準端口(例如587)。如果在Google Cloud上,請嘗試使用端口2525。 apps/frappe/frappe/website/doctype/web_page/web_page.py,"Clearing end date, as it cannot be in the past for published pages.",清除結束日期,因為發布的頁面不能在過去。 DocType: User,Send Me A Copy of Outgoing Emails,給我發送電子郵件的副本 -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.,新增 Google Analytics ID:如UA-89XXX57-1。請搜尋Google Analytics相關文件以獲取更多訊息。 apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,密碼不能超過100個字符長 DocType: OAuth Client,App Client ID,應用程序客戶端ID @@ -2253,6 +2329,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 2,選項2 apps/frappe/frappe/utils/print_format.py,Printing failed,打印失敗 apps/frappe/frappe/www/update-password.html,New Password Required.,需要新密碼 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}與{1}共享這個文件 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Import template should contain a Header and atleast one row.,導入模板應包含標題和至少一行。 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Google Calendar has been configured.,Google日曆已配置完畢。 apps/frappe/frappe/config/website.py,"Setup of top navigation bar, footer and logo.",安裝程序的頂部導航欄,頁腳和徽標。 apps/frappe/frappe/core/doctype/doctype/doctype.py,For {0} at level {1} in {2} in row {3},{0}在水平{1}的{2}行{3} @@ -2321,7 +2398,6 @@ DocType: Data Migration Mapping,Migration ID Field,遷移ID字段 DocType: Dashboard Chart,Last Synced On,最後同步 DocType: Comment,Comment Type,註釋類型 DocType: OAuth Client,OAuth Client,OAuth客戶端 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0}批評了您在{1} {2}上的工作 DocType: Assignment Rule,Users,用戶 DocType: Address,Odisha,奧里薩邦 DocType: Report,Report Type,報告類型 @@ -2344,14 +2420,12 @@ apps/frappe/frappe/templates/includes/contact.js,"You seem to have written your DocType: Website Slideshow Item,Website Slideshow Item,網站幻燈片項目 apps/frappe/frappe/model/workflow.py,Self approval is not allowed,不允許自我批准 apps/frappe/frappe/integrations/doctype/oauth_client/oauth_client.py,Combination of Grant Type (<code>{0}</code>) and Response Type (<code>{1}</code>) not allowed,授予類型( <code>{0}</code> )和響應類型( <code>{1}</code> )的組合不允許 -apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},來自{0}的新訊息 DocType: Portal Settings,Default Role at Time of Signup,在註冊時間默認角色 DocType: DocType,Title Case,標題案例 apps/frappe/frappe/templates/emails/download_data.html,Click on the link below to download your data,點擊下面的鏈接下載您的數據 apps/frappe/frappe/core/doctype/user/user.py,Enabled email inbox for user {0},已為用戶{0}啟用電子郵件收件箱 DocType: Data Migration Run,Data Migration Run,數據遷移運行 DocType: Blog Post,Email Sent,郵件發送 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Older,年長 DocType: DocField,Ignore XSS Filter,忽略XSS過濾器 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox的備份設置 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,{0} Google Calendar Events synced.,已同步{0} Google日曆活動。 @@ -2392,6 +2466,7 @@ DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,排隊 apps/frappe/frappe/utils/goal.py,This month,這個月 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新自定義列印格式 +DocType: Server Script,Before Save (Submitted Document),保存之前(提交的文檔) DocType: Custom DocPerm,Create,建立 apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,No more items to display,沒有更多要顯示的項目 apps/frappe/frappe/public/js/frappe/form/form.js,Go to previous record,轉到上一條記錄 @@ -2445,6 +2520,7 @@ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Pleas apps/frappe/frappe/core/doctype/communication/communication.js,Move To Trash,移到廢紙簍 DocType: Web Form,Web Form Fields,網頁表單欄位 DocType: Data Import,Amended From,從修訂 +DocType: Onboarding Slide,Add a help video link just in case user has no idea about what to fill in the slide.,添加幫助視頻鏈接,以防萬一用戶不知道要在幻燈片中填寫什麼內容。 apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},警告:無法找到{0}與任何表{1} DocType: S3 Backup Settings,eu-north-1,歐盟 - 北 - 1 apps/frappe/frappe/model/document.py,This document is currently queued for execution. Please try again,這份文件目前正在排隊等待執行。請再試一次 @@ -2463,6 +2539,7 @@ DocType: Blog Post,Blog Post,網誌文章 DocType: Access Log,Export From,從中導出 apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,高級搜索 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,您不能查看簡報。 +DocType: Dashboard Chart,Group By,集團通過 DocType: User,Interests,興趣 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,密碼重置說明已發送到您的電子郵件 DocType: Energy Point Rule,Allot Points To Assigned Users,向分配的用戶分配點 @@ -2476,12 +2553,14 @@ DocType: Notification,Attach Print,附加列印 DocType: Assignment Rule,Assignment Rule,作業規則 apps/frappe/frappe/core/doctype/user/user.py,Suggested Username: {0},建議用戶名:{0} apps/frappe/frappe/public/js/frappe/desk.js,Modules,模塊 +DocType: DocField,Mandatory Depends On,強制取決於 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,沒有{0}郵件 DocType: OAuth Bearer Token,Revoked,撤銷 DocType: Web Page,Sidebar and Comments,邊欄和評論 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",當您修改一個文件後,取消和保存,它會得到一個新的數字,是一個版本的舊號碼。 apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings",不允許附加{0}文檔,請在打印設置中啟用允許打印{0} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶 apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},請參閱{0}處的文檔 DocType: Stripe Settings,Publishable Key,可發布密鑰 DocType: Stripe Settings,Publishable Key,可發布密鑰 @@ -2495,12 +2574,12 @@ DocType: Currency,Fraction,分數 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Event Synced with Google Calendar.,活動與Google日曆同步。 DocType: LDAP Settings,LDAP First Name Field,LDAP名現場 DocType: Contact,Middle Name,中間名字 +DocType: DocField,Property Depends On,屬性取決於 DocType: Custom Field,Field Description,欄位說明 apps/frappe/frappe/model/naming.py,Name not set via Prompt,名稱未通過設置提示 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,電子郵件收件箱 DocType: Auto Email Report,Filters Display,顯示過濾器 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",必須出現“modified_from”字段才能進行修改。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0}感謝您對{1} {2}的工作 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,保存過濾器 DocType: Address,Plant,廠 DocType: DocType,Setup,設定 @@ -2539,7 +2618,6 @@ apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0}不允 DocType: Custom Script,Custom Script,自定義腳本 DocType: Address,Reference,參考 apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Assigned To,指派給 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認的電子郵件帳戶 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,數據遷移映射細節 DocType: Data Import,Action,行動 DocType: GSuite Settings,Script URL,腳本網址 @@ -2564,11 +2642,13 @@ DocType: Website Settings,Website Theme,網站主題 DocType: User,Api Access,Api訪問 DocType: DocField,In List View,在列表視圖 apps/frappe/frappe/email/smtp.py,Invalid login or password,無效的登錄名或密碼 +DocType: Scheduled Job Type,Weekly Long,每周長 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download Template,下載模板 apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,添加自定義的JavaScript到表單內。 ,Role Permissions Manager,角色權限管理 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,新列印格式的名稱 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,切換邊欄 +DocType: Server Script,After Save (Submitted Document),保存後(提交的文檔) DocType: Data Migration Run,Pull Insert,拉插入 DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value (Note: For no limit leave this field empty or set 0)",將點乘以乘數值後允許的最大點(注意:無限制,將此字段留空或設置為0) @@ -2626,11 +2706,13 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Al apps/frappe/frappe/www/update-password.html,Old Password,舊密碼 DocType: S3 Backup Settings,us-east-1,美國 - 東 - 1 apps/frappe/frappe/core/doctype/report/report.js,"To format columns, give column labels in the query.",要格式化列,給列標籤在查詢中。 +DocType: Onboarding Slide,Slide Fields,滑動場 DocType: User,Allowed In Mentions,允許提及 apps/frappe/frappe/www/login.html,Don't have an account? Sign up,還沒有帳號?註冊 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Cannot remove ID field,無法刪除ID字段 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend if not Submittable,{0} :如果不可提交的話,便無法設為指定修改 DocType: Address,Bihar,比哈爾邦 +DocType: Notification Settings,Subscribed Documents,訂閱文件 apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,User Settings,用戶設置 DocType: Report,Reference Report,參考報告 DocType: Activity Log,Link DocType,連接 DocType @@ -2656,6 +2738,7 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},強制字段:{0} apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,你的名字 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,連接成功 +apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,幻燈片類型繼續的上載幻燈片已存在。 DocType: DocType,Default Sort Field,默認排序字段 DocType: File,Is Folder,在文件夾 DocType: Document Follow,DocType,DocType @@ -2688,8 +2771,10 @@ apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py DocType: Workflow State,arrow-up,向上箭頭 DocType: Dynamic Link,Link Document Type,鏈接文件類型 apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0}表至少應有一行 +DocType: Server Script,Server Script,服務器腳本 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",要配置自動重複,請從{0}啟用“允許自動重複”。 DocType: OAuth Bearer Token,Expires In,過期日期在 +DocType: Onboarding Slide,"The amount of times you want to repeat the set of fields (eg: if you want 3 customers in the slide, set this field to 3. Only the first set of fields is shown as mandatory in the slide)",您要重複一組字段的次數(例如:如果幻燈片中需要3個客戶,請將此字段設置為3。幻燈片中僅第一組字段顯示為必填項) DocType: DocField,Allow on Submit,允許在提交 DocType: Error Snapshot,Exception Type,異常類型 DocType: Web Page,Add code as <script>,添加源碼為<script> @@ -2697,6 +2782,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Clear Us DocType: Webhook,Headers,頭 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Upcoming Events,活動預告 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js,Please enter values for App Access Key and App Secret Key,為App訪問鍵和App保密密鑰請輸入值 +DocType: Email Account,Append Emails to Sent Folder,將電子郵件追加到已發送文件夾 apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,選擇列表項 apps/frappe/frappe/config/core.py,A log of request errors,日誌請求錯誤的 DocType: Report,Letter Head,信頭 @@ -2713,7 +2799,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communicat apps/frappe/frappe/config/customization.py,Form Customization,表單自定義 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,沒有活動會話 DocType: Web Form,Route to Success Link,通往成功鏈接的路線 -DocType: Top Bar Item,Right,右邊 +DocType: Onboarding Slide Field,Right,右邊 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,No Upcoming Events,沒有即將發生的事件 DocType: User,User Type,用戶類型 DocType: Prepared Report,Ref Report DocType,參考報告DocType @@ -2729,6 +2815,7 @@ apps/frappe/frappe/utils/password_strength.py,Avoid sequences like abc or 6543 a apps/frappe/frappe/public/js/frappe/request.js,Please try again,請再試一次 apps/frappe/frappe/core/doctype/file/file.py,URL must start with 'http://' or 'https://',網址必須以“http://”或“https://”開頭 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,選項3 +apps/frappe/frappe/public/js/frappe/model/model.js,This cannot be undone,這不能被撤消 DocType: Workflow State,Edit,編輯 DocType: Website Settings,Chat Operators,聊天運營商 DocType: Contact Us Settings,Pincode,PIN代碼 @@ -2739,14 +2826,13 @@ apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email a apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,你在本表格未保存的更改。 DocType: Address,Telangana,特蘭伽納 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for {0} must be an option,預設為{0}必須是一種選項 -DocType: Tag Doc Category,Tag Doc Category,標籤單據類別 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Report with more than 10 columns looks better in Landscape mode.,在橫向模式下,超過10列的報告看起來更好。 apps/frappe/frappe/database/database.py,Invalid field name: {0},字段名稱無效:{0} DocType: User,User Image,使用者圖片 apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0},轉到{0} apps/frappe/frappe/email/queue.py,Emails are muted,電子郵件是靜音模式 apps/frappe/frappe/config/integrations.py,Google Services,Google服務 -apps/frappe/frappe/utils/data.py,1 weeks ago,1週前 +DocType: Onboarding Slide,Slide Description,幻燈片說明 DocType: Communication,Error,錯誤 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Please setup a message first,請先設置一條消息 DocType: Auto Repeat,End Date,結束日期 @@ -2763,9 +2849,11 @@ DocType: Custom Field,Options Help,選項幫助 DocType: Footer Item,Group Label,組標籤 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,已配置Google通訊錄。 apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,將導出1條記錄 +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,沒有與該用戶關聯的電子郵件帳戶。請在“用戶”>“電子郵件收件箱”下添加一個帳戶。 DocType: DocField,Report Hide,報告隱藏 apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},不適用於樹視圖{0} DocType: Domain,Domain,網域 +apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact System Administrator.,無效的文件URL。請聯繫系統管理員。 DocType: Custom Field,Label Help,標籤說明 DocType: Workflow State,star-empty,明星空 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}.",Google通訊錄 - 無法同步Google通訊錄{0}中的聯繫人,錯誤代碼{1}。 @@ -2788,6 +2876,7 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset Password,重設密碼 DocType: Workflow State,hand-left,手向左 DocType: Data Import,If you are updating/overwriting already created records.,如果您正在更新/覆蓋已經創建的記錄。 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Is Global,是全球性的 +DocType: Webhook,HOOK-.####,鉤-。#### apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,無法正確分配文檔 apps/frappe/frappe/public/js/frappe/form/layout.js,"Invalid ""depends_on"" expression",“depends_on”表達式無效 apps/frappe/frappe/public/js/frappe/chat.js,Group Name,團隊名字 @@ -2833,6 +2922,7 @@ DocType: System Settings,Time Zone,時區 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Special Characters are not allowed,特殊字符是不允許 DocType: Comment,Relinked,重新鏈接 DocType: Print Settings,Compact Item Print,緊湊型項目打印 +DocType: Onboarding Slide Field,Placeholder,佔位符 DocType: SMS Settings,Enter url parameter for receiver nos,輸入URL參數的接收器號 DocType: Chat Profile,Online,線上 DocType: Email Account,Always use Account's Name as Sender's Name,始終使用帳戶名稱作為發件人姓名 @@ -2862,6 +2952,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,如果業主 DocType: Data Migration Mapping,Push,推 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Drop files here,刪除文件 DocType: OAuth Authorization Code,Expiration time,到期時間 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Open Documents,打開文件 DocType: Web Page,Website Sidebar,網站邊欄 DocType: Web Form,Show Sidebar,顯示側邊欄 apps/frappe/frappe/website/doctype/web_form/web_form.py,You need to be logged in to access this {0}.,您需要登錄才能訪問此{0}。 @@ -2874,6 +2965,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} s DocType: Calendar View,End Date Field,結束日期字段 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,全球捷徑 DocType: Desktop Icon,Page,頁面 +apps/frappe/frappe/model/rename_doc.py,Document renamed from {0} to {1},文檔從{0}重命名為{1} apps/frappe/frappe/config/website.py,Knowledge Base,知識庫 apps/frappe/frappe/model/document.py,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",風格代表按鈕的顏色:成功 - 綠色,危險 - 紅,逆 - 黑色,主要 - 深藍色,資訊 - 淺藍,警告 - 橙 @@ -2903,6 +2995,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe DocType: Auto Repeat,Print Format,列印格式 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,切換網格視圖 apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,轉到下一條記錄 +DocType: System Settings,Time Format,時間格式 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,無效的支付網關憑據 DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,這是只有有一些錯誤的行生成的模板文件。您應該使用此文件進行更正和導入。 apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,在文件類型和角色設置權限 @@ -2940,11 +3033,13 @@ DocType: Data Migration Plan,Data Migration Plan,數據遷移計劃 apps/frappe/frappe/config/core.py,Pages in Desk (place holders),在台頁面(佔位符) DocType: DocField,Collapsible Depends On,可折疊取決於 DocType: Print Style,Print Style Name,打印樣式名稱 +apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Group By field is required to create a dashboard chart,“分組依據”字段是創建儀錶盤圖表所必需的 DocType: Print Settings,Allow page break inside tables,允許在表格分頁符 DocType: Email Account,SMTP Server,SMTP服務器 DocType: Print Format,Print Format Help,列印格式求助 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0}會議室必須至少有一個用戶。 DocType: Dashboard Chart,Count,計數 +DocType: Dashboard Chart,Group By Type,按類型分組 apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: {1},對{0}的新評論:{1} apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},恢復{0}為{1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",如果要更新,請選擇“覆蓋”其他現有行不會被刪除。 @@ -2954,14 +3049,17 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,用戶資 DocType: Web Form,Web Form,網頁表單 apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},日期{0}必須採用格式:{1} DocType: About Us Settings,Org History Heading,組織歷史航向 +DocType: Scheduled Job Type,Scheduled Job Type,預定作業類型 DocType: Print Settings,Allow Print for Cancelled,允許打印為已取消 DocType: Communication,Integrations can use this field to set email delivery status,整合可以使用此欄位來設定郵件發送狀態 +apps/frappe/frappe/public/js/frappe/form/form.js,You do not have permissions to cancel all linked documents.,您無權取消所有鏈接的文檔。 DocType: Web Form,Web Page Link Text,網頁鏈接文本 DocType: Page,System Page,系統頁面 DocType: Page,System Page,系統頁面 apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",設置預設格式,頁面大小,列印樣式等。 apps/frappe/frappe/modules/utils.py,Customizations for <b>{0}</b> exported to:<br>{1},<b>{0}的</b>自定義已導出到: <br> {1} DocType: Website Settings,Include Search in Top Bar,包括在頂欄搜索 +DocType: Scheduled Job Type,Daily Long,每日長 DocType: GSuite Settings,Allow GSuite access,允許GSuite訪問 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,全選 apps/frappe/frappe/config/customization.py,Custom Translations,翻譯定制 @@ -3054,6 +3152,7 @@ DocType: Notification,Send days before or after the reference date,之前或基 DocType: User,Allow user to login only after this hour (0-24),允許用戶在幾小時後登入(0 - 24) apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,"Assign one by one, in sequence",按順序逐個分配 DocType: Integration Request,Subscription Notification,訂閱通知 +DocType: Customize Form Field, Allow in Quick Entry ,允許快速輸入 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,or attach a,或附上一個 DocType: Auto Repeat,Start Date,開始日期 DocType: Dashboard Chart,Filters JSON,過濾JSON @@ -3066,6 +3165,7 @@ DocType: Google Drive,Backup Folder ID,備份文件夾ID apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,不是在開發模式!坐落在site_config.json或進行“自定義”的DocType。 DocType: Workflow State,globe,地球 DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy +DocType: Onboarding Slide Help Link,Video,視頻 DocType: Assignment Rule,Priority,優先 DocType: Email Queue,Unsubscribe Param,退訂參數 DocType: DocType,Hide Sidebar and Menu,隱藏補充工具欄和菜單 @@ -3075,6 +3175,7 @@ DocType: DocType,Allow Import (via Data Import Tool),允許導入(通過數據 apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,序號 DocType: DocField,Float,浮動 DocType: Print Settings,Page Settings,頁面設置 +DocType: Notification Settings,Notification Settings,通知設置 apps/frappe/frappe/www/update-password.html,Invalid Password,無效的密碼 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,已成功導入{1}中的{0}條記錄。 DocType: Contact,Purchase Master Manager,採購主檔經理 @@ -3127,18 +3228,20 @@ DocType: DocField,Small Text,小文 DocType: Workflow,Allow approval for creator of the document,允許批准文檔的創建者 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,保存報告 DocType: Social Login Key,API Endpoint Args,API端點參數 +DocType: DocType Action,Server Action,服務器動作 apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,管理員訪問{0}在{1}通過IP地址{2}。 apps/frappe/frappe/core/doctype/doctype/doctype.py,Parent Field must be a valid fieldname,父字段必須是有效的字段名稱 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,修改訂閱時失敗 DocType: LDAP Settings,LDAP Group Field,LDAP組字段 +DocType: Notification Subscribed Document,Notification Subscribed Document,通知訂閱文件 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Equals,等號 apps/frappe/frappe/core/doctype/doctype/doctype.py,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,Invalid CSV Format,CSV格式無效。 -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...<br><br> You need to have QZ Tray application installed and running, to use the Raw Print feature.<br><br><a href=""https://qz.io/download/"" target=""_blank"">Click here to Download and install QZ Tray</a>.<br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">Click here to learn more about Raw Printing</a>.","連接到QZ托盤應用程序時出錯... <br><br>您需要安裝並運行QZ Tray應用程序才能使用Raw Print功能。 <br><br> <a href=""https://qz.io/download/"" target=""_blank"">單擊此處下載並安裝QZ托盤</a> 。 <br> <a href=""https://erpnext.com/docs/user/manual/en/setting-up/print/raw-printing"" target=""_blank"">單擊此處以了解有關原始印刷的更多信息</a> 。" apps/frappe/frappe/desk/page/backups/backups.js,Set Number of Backups,設置備份數量 DocType: DocField,Do not allow user to change after set the first time,在首次設定後不允許用戶更改 apps/frappe/frappe/utils/data.py,1 year ago,1年以前 +DocType: DocType,Links Section,鏈接部分 apps/frappe/frappe/config/users_and_permissions.py,"View Log of all print, download and export events",查看所有打印,下載和導出事件的日誌 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1個月 DocType: Contact,Contact,聯絡人 @@ -3161,15 +3264,17 @@ DocType: Auto Email Report,Dynamic Report Filters,動態報告過濾器 apps/frappe/frappe/public/js/frappe/views/communication.js,New Email,新的電子郵件 DocType: Custom DocPerm,Export,出口 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,"To use Google Calendar, enable {0}.",要使用Google日曆,請啟用{0}。 +apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Also adding the status dependency field {0},還添加狀態依賴項字段{0} apps/frappe/frappe/public/js/frappe/form/print.js,QZ Tray Failed: ,QZ托盤失敗: DocType: Dropbox Settings,Dropbox Settings,Dropbox的設置 DocType: About Us Settings,More content for the bottom of the page.,更多的內容的頁面的底部。 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.js,This document has been reverted,該文件已被還原 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive Backup Successful.,Google雲端硬盤備份成功。 +DocType: Webhook,Naming Series,命名系列 DocType: Workflow,DocType on which this Workflow is applicable.,DocType文檔類型上這個工作流是適用的。 DocType: User,Enabled,啟用 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Failed to complete setup,無法完成設置 -DocType: Tag Category,Category Name,分類名稱 +DocType: Blog Category,Category Name,分類名稱 apps/frappe/frappe/model/db_query.py,Parent is required to get child table data,父需要獲取子表數據 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,進口認購 DocType: Print Settings,PDF Settings,PDF設置 @@ -3210,6 +3315,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Unable to load: {0},無法載 apps/frappe/frappe/config/integrations.py,Backup,備用 apps/frappe/frappe/desk/doctype/dashboard_chart/dashboard_chart.py,Document type is required to create a dashboard chart,創建儀表板圖表需要文檔類型 DocType: DocField,Read Only,只讀 +apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,Could not create razorpay order,無法創建razorpay訂單 apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,新的通訊 DocType: Energy Point Log,Energy Point Log,能量點日誌 DocType: Print Settings,Send Print as PDF,發送列印為PDF @@ -3238,9 +3344,11 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,選擇分組依據... apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}是必需的 DocType: Newsletter,Send Attachements,發送附著物 +apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,No filters found,找不到過濾器 apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google通訊錄集成。 DocType: Transaction Log,Transaction Log,事務日誌 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last month's performance (from {0} to {1}),基於上個月表現的統計數據(從{0}到{1}) +apps/frappe/frappe/public/js/frappe/views/components/Desktop.vue,Hide cards for all users,隱藏所有用戶的卡片 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Enable Allow Auto Repeat for the doctype {0} in Customize Form,在“自定義表單”中為doctype {0}啟用“允許自動重複” DocType: DocField,Perm Level,權限等級 apps/frappe/frappe/www/confirm_workflow_action.html,View document,查看文檔 @@ -3251,6 +3359,7 @@ DocType: Blog Category,Blogger,部落格 DocType: DocType,"If enabled, changes to the document are tracked and shown in timeline",如果啟用,則會跟踪對文檔的更改並在時間軸中顯示 apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},行{1}中的類型{0}不允許“全局搜索” apps/frappe/frappe/core/doctype/doctype/doctype.py,'In Global Search' not allowed for type {0} in row {1},在行 {1} 中不允許類型 {0} 的全域搜索中 +DocType: Dashboard Chart,Number of Groups,組數 DocType: Workflow,Don't Override Status,不要覆蓋狀態 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,搜索詞 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,第一個用戶:您 @@ -3286,7 +3395,6 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Select Your Region,選 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,{0} appreciation point for {1} {2},{0} {1} {2}的升值點 DocType: Dropbox Settings,Limit Number of DB Backups,限制數據庫備份數量 DocType: Custom DocPerm,Level,級別 -apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 30 days,過去30天 DocType: Custom DocPerm,Report,報告 apps/frappe/frappe/website/doctype/web_form/web_form.py,Amount must be greater than 0.,量必須大於0。 apps/frappe/frappe/public/js/frappe/form/print.js,Connected to QZ Tray!,連接到QZ托盤! @@ -3301,6 +3409,7 @@ DocType: Web Form,Allow saving if mandatory fields are not filled,允許保存 apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Select Child Table,選擇子表 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,觸發主要操作 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Change,更改 +DocType: Social Login Key,User ID Property,用戶ID屬性 DocType: Contact Email,Contact Email,聯絡電郵 DocType: Kanban Board Column,Order,訂購 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No results found for {0} in Global Search,在全局搜索中找不到與{0}相關的結果 @@ -3320,7 +3429,7 @@ DocType: Communication,Sending,發出 DocType: Website Slideshow,This goes above the slideshow.,這正好幻燈片上面。 apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,沒有警報今天 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),發送郵件列印附件為PDF格式(推薦) -DocType: Web Page,Left,左 +DocType: Onboarding Slide Field,Left,左 apps/frappe/frappe/integrations/utils.py,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,看起來像是不對這個網站的支付網關的配置。沒有已經付款。 DocType: GCalendar Settings,State,狀態 DocType: Workflow Action,Workflow Action,工作流程執行 @@ -3350,7 +3459,6 @@ DocType: Workflow State,User,使用者 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",標題顯示在瀏覽器窗口中的“前綴 - 標題” DocType: Payment Gateway,Gateway Settings,網關設置 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,在文件類型的文本 -apps/frappe/frappe/core/doctype/test_runner/test_runner.js,Run Tests,運行測試 DocType: System Settings,User can login using Email id or Mobile number,用戶可以使用電子郵件ID或手機號登錄 apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},標記為{0} apps/frappe/frappe/model/rename_doc.py,Please select a new name to rename,請選擇一個新名稱進行重命名 @@ -3363,6 +3471,7 @@ DocType: System Settings,Number Format,數字格式 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,已成功導入{0}記錄。 DocType: Event,Event Participants,活動參與者 DocType: Auto Repeat,Frequency,頻率 +DocType: Onboarding Slide,Slide Order,幻燈片訂單 DocType: Custom Field,Insert After,於後方插入 DocType: Event,Sync with Google Calendar,與Google日曆同步 DocType: Access Log,Report Name,報告名稱 @@ -3387,6 +3496,8 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},{0}列內的貨幣類型的最大寬度為100px apps/frappe/frappe/config/website.py,Content web page.,內容的網頁。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,添加新角色 +apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,訪問網頁 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,新作業 DocType: Google Contacts,Last Sync On,上次同步開啟 DocType: Deleted Document,Deleted Document,刪除的文檔 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,糟糕!出事了 @@ -3395,7 +3506,7 @@ apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,添加聯繫人 apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景觀 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,在JavaScript客戶端腳本擴展 apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Records for following doctypes will be filtered,以下文檔類型的記錄將被過濾 -apps/frappe/frappe/public/js/frappe/desk.js,Scheduler Inactive,調度程序無效 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler Inactive,調度程序無效 DocType: Blog Settings,Blog Introduction,部落格簡介 DocType: Global Search Settings,Search Priorities,搜索優先級 DocType: Address,Office,辦公室 @@ -3405,12 +3516,12 @@ DocType: Dashboard Chart Link,Dashboard Chart Link,儀表板圖錶鍊接 DocType: User,Email Settings,電子郵件設定 apps/frappe/frappe/public/js/frappe/ui/dropzone.js,Drop Here,放在這裡 DocType: User,"If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings",如果啟用,用戶可以使用雙因素身份驗證從任何IP地址登錄,也可以在系統設置中為所有用戶設置 -apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Printer Settings...,打印機設置...... apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,請輸入您的密碼以繼續 apps/frappe/frappe/public/js/frappe/desk.js,Please Enter Your Password to Continue,請輸入您的密碼以繼續 apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{0}不是有效的國家 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,適用於所有文檔類型 -apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,能量點更新 +apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,Energy point update,能量點更新 +DocType: System Settings,Run Jobs only Daily if Inactive For (Days),僅在(天)不活動的情況下每天運行作業 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',請選擇其他付款方式。貝寶不支持貨幣交易“{0}” DocType: Data Import Beta,Import Log Preview,導入日誌預覽 apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,搜索欄{0}無效 @@ -3418,6 +3529,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file DocType: Workflow State,ok-circle,OK-圈 DocType: LDAP Settings,LDAP User Creation and Mapping,LDAP用戶創建和映射 apps/frappe/frappe/utils/bot.py,You can find things by asking 'find orange in customers',你可以通過問“找到橙客戶找東西 +apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Today's Events,今日活動 apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete access to their own record.,對不起!用戶應該擁有完全訪問他們自己的紀錄。 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,顯示鍵盤快捷鍵 apps/frappe/frappe/utils/oauth.py,Invalid Token,令牌無效 @@ -3431,6 +3543,7 @@ DocType: Communication,Communication Type,通信類型 DocType: DocField,Unique,獨特 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0}讚賞{1} DocType: Email Account,Service,服務 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶 apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),沒有找到{0} {0} ( {1} ) apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that",哎呀,你不能知道 apps/frappe/frappe/public/js/frappe/ui/slides.js,Next,下一個 @@ -3442,6 +3555,7 @@ apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,完成 DocType: GCalendar Settings,Enable,啟用 DocType: Google Maps Settings,Home Address,家庭地址 apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),你一次只能上最多5000條記錄。 (在某些情況下可能更少) +DocType: Report,"output in the form of `data = [columns, result]`",以data = [columns,result]的形式輸出 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,適用的文件類型 apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,為用戶分配設置規則。 apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}的權限不足 @@ -3457,7 +3571,6 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,標準的角色不能被重命名 DocType: SMS Settings,Static Parameters,靜態參數 DocType: Chat Message,Room,房間 -apps/frappe/frappe/public/js/frappe/desk.js,Background jobs are not running. Please contact Administrator,後台作業未運行。請聯繫管理員 DocType: Portal Settings,Custom Menu Items,自定義菜單項 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.py,All Images attached to Website Slideshow should be public,所有連接到網站幻燈片的圖片應該是公開的 DocType: Workflow State,chevron-right,人字形-右 @@ -3472,11 +3585,13 @@ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Take Backup apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,已選擇{0}個值 DocType: DocType,Allow Auto Repeat,允許自動重複 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,沒有要顯示的值 +DocType: DocType,URL for documentation or help,文檔或幫助的URL DocType: Desktop Icon,_doctype,_文件格式 DocType: Communication,Email Template,電子郵件模板 apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,成功更新了{0}條記錄。 apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},用戶{0}沒有通過文檔{1}的角色權限訪問doctype apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,需要登錄名稱和密碼 +apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Let\,讓\ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,請更新以取得最新的文檔。 DocType: User,Security Settings,安全設置 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Add Column,添加欄 @@ -3485,6 +3600,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: DocType: Auto Email Report,Filter Meta,過濾元 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please find attached {0}: {1},請查找附件{0}:{1} DocType: Web Page,Set Meta Tags,設置元標記 +DocType: Email Account,Use SSL for Outgoing,使用SSL進行傳出 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: S3 Backup Settings,Backup Limit,備份限制 DocType: Dashboard Chart,Line,線 @@ -3516,4 +3632,3 @@ apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you expor DocType: DocField,Ignore User Permissions,忽略用戶權限 apps/frappe/frappe/core/doctype/user/user.py,Please ask your administrator to verify your sign-up,請向管理員詢問,以確認您的註冊 DocType: Domain Settings,Active Domains,活動域 -apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,顯示日誌 From 526527a95815617ebf29ba396401485cd01ebd3d Mon Sep 17 00:00:00 2001 From: Prssanna Desai <prssud@gmail.com> Date: Sun, 2 Feb 2020 21:45:02 +0530 Subject: [PATCH 17/22] fix: increase chat message alert time to 15 seconds (#9398) --- frappe/public/js/frappe/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/chat.js b/frappe/public/js/frappe/chat.js index d15f2183a9..810de89874 100644 --- a/frappe/public/js/frappe/chat.js +++ b/frappe/public/js/frappe/chat.js @@ -1569,7 +1569,7 @@ class extends Component { <span class="indicator yellow"/> <b>${frappe.user.first_name(r.user)}</b>: ${r.content} </span> ` - frappe.show_alert(alert, 3, { + frappe.show_alert(alert, 15, { "show-message": function (r) { this.room.select(r.room) this.base.firstChild._component.toggle() From dc13938667921d8777f478cc417feee78c33df24 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal <ruchamahabal2@gmail.com> Date: Mon, 3 Feb 2020 13:00:28 +0530 Subject: [PATCH 18/22] fix: auto repeat test --- frappe/automation/doctype/auto_repeat/auto_repeat.py | 2 +- .../doctype/auto_repeat/test_auto_repeat.py | 11 +++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 48a556bb55..63d3cfc4f8 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -274,7 +274,7 @@ def get_next_schedule_date(schedule_date, frequency, start_date, repeat_on_day=N else: month_count = 0 - day_count = 31 + day_count = 0 if month_count and repeat_on_last_day: day_count = 31 next_date = get_next_date(start_date, month_count, day_count) diff --git a/frappe/automation/doctype/auto_repeat/test_auto_repeat.py b/frappe/automation/doctype/auto_repeat/test_auto_repeat.py index 95f95f3e7d..769c77b67c 100644 --- a/frappe/automation/doctype/auto_repeat/test_auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/test_auto_repeat.py @@ -102,14 +102,9 @@ class TestAutoRepeat(unittest.TestCase): dict(doctype='ToDo', description='test next schedule date todo', assigned_by='Administrator')).insert() doc = make_auto_repeat(frequency='Monthly', reference_document=todo.name, start_date=add_months(today(), -2)) - #check next_schedule_date is set as per current date - #it should not be a previous month's date - self.assertEqual(doc.next_schedule_date, current_date) - data = get_auto_repeat_entries(current_date) - create_repeated_entries(data) - docnames = frappe.get_all(doc.reference_doctype, {'auto_repeat': doc.name}) - #the original doc + the repeated doc - self.assertEqual(len(docnames), 2) + # next_schedule_date is set as on or after current date + # it should not be a previous month's date + self.assertTrue((doc.next_schedule_date >= current_date)) def make_auto_repeat(**args): From d1942838d123d483d2721b9b6fd2a309f88eb192 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal <ruchamahabal2@gmail.com> Date: Mon, 3 Feb 2020 14:51:29 +0530 Subject: [PATCH 19/22] fix: handle PermissionError for auto repeat email notifications --- .../doctype/auto_repeat/auto_repeat.py | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 63d3cfc4f8..79ea11ed6e 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -212,16 +212,27 @@ class AutoRepeat(Document): elif "{" in self.subject: subject = frappe.render_template(self.subject, {'doc': new_doc}) - if not self.message: + print_format = self.print_format or 'Standard' + error_string = None + + try: + attachments = [frappe.attach_print(new_doc.doctype, new_doc.name, + file_name=new_doc.name, print_format=print_format)] + + except frappe.PermissionError: + error_string = _('''A recurring {0} {1} has been created for you via Auto Repeat {2}. + <br><br><b>Note</b>: Failed to attach new recurring document. + To enable attaching document in the auto repeat notification email, + enable <b>Allow Print for Draft</b> in Print Settings''').format(new_doc.doctype, new_doc.name, self.name) + attachments = '[]' + + if error_string: + message = error_string + elif not self.message: message = _("Please find attached {0}: {1}").format(new_doc.doctype, new_doc.name) elif "{" in self.message: message = frappe.render_template(self.message, {'doc': new_doc}) - print_format = self.print_format or 'Standard' - - attachments = [frappe.attach_print(new_doc.doctype, new_doc.name, - file_name=new_doc.name, print_format=print_format)] - recipients = self.recipients.split('\n') make(doctype=new_doc.doctype, name=new_doc.name, recipients=recipients, From 70bf6f3bc89f09b36d10880176a72f69b34f9405 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal <ruchamahabal2@gmail.com> Date: Mon, 3 Feb 2020 15:39:32 +0530 Subject: [PATCH 20/22] fix: change mutliline error message to single line for translations --- frappe/automation/doctype/auto_repeat/auto_repeat.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 79ea11ed6e..0ab7773bf2 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -220,10 +220,7 @@ class AutoRepeat(Document): file_name=new_doc.name, print_format=print_format)] except frappe.PermissionError: - error_string = _('''A recurring {0} {1} has been created for you via Auto Repeat {2}. - <br><br><b>Note</b>: Failed to attach new recurring document. - To enable attaching document in the auto repeat notification email, - enable <b>Allow Print for Draft</b> in Print Settings''').format(new_doc.doctype, new_doc.name, self.name) + error_string = _("A recurring {0} {1} has been created for you via Auto Repeat {2}. <br><br><b>Note</b>: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable <b>Allow Print for Draft</b> in Print Settings").format(new_doc.doctype, new_doc.name, self.name) attachments = '[]' if error_string: From 7a4ee06acfd2c445af528c00951f737c50a5f9ce Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Mon, 3 Feb 2020 15:58:26 +0530 Subject: [PATCH 21/22] fix: Translatable string for error --- frappe/automation/doctype/auto_repeat/auto_repeat.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 0ab7773bf2..513c0ad2cc 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -220,7 +220,14 @@ class AutoRepeat(Document): file_name=new_doc.name, print_format=print_format)] except frappe.PermissionError: - error_string = _("A recurring {0} {1} has been created for you via Auto Repeat {2}. <br><br><b>Note</b>: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable <b>Allow Print for Draft</b> in Print Settings").format(new_doc.doctype, new_doc.name, self.name) + error_string = _("A recurring {0} {1} has been created for you via Auto Repeat {2}.").format(new_doc.doctype, new_doc.name, self.name) + error_string += "<br><br>" + + error_string += _("{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings") + .format( + frappe.bold(_('Note')), + frappe.bold(_('Allow Print for Draft')) + ) attachments = '[]' if error_string: From 8d496c70553a1e29e2580149f0bc9af38bc8726f Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Mon, 3 Feb 2020 16:03:13 +0530 Subject: [PATCH 22/22] fix: Invalid syntax --- frappe/automation/doctype/auto_repeat/auto_repeat.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index 513c0ad2cc..bfcaf684d6 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -223,11 +223,10 @@ class AutoRepeat(Document): error_string = _("A recurring {0} {1} has been created for you via Auto Repeat {2}.").format(new_doc.doctype, new_doc.name, self.name) error_string += "<br><br>" - error_string += _("{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings") - .format( - frappe.bold(_('Note')), - frappe.bold(_('Allow Print for Draft')) - ) + error_string += _("{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings").format( + frappe.bold(_('Note')), + frappe.bold(_('Allow Print for Draft')) + ) attachments = '[]' if error_string: